summaryrefslogtreecommitdiff
path: root/crates/typst-eval/src/math.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/typst-eval/src/math.rs')
-rw-r--r--crates/typst-eval/src/math.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/crates/typst-eval/src/math.rs b/crates/typst-eval/src/math.rs
index 23b293f2..0e271a08 100644
--- a/crates/typst-eval/src/math.rs
+++ b/crates/typst-eval/src/math.rs
@@ -35,7 +35,13 @@ impl Eval for ast::MathIdent<'_> {
type Output = Value;
fn eval(self, vm: &mut Vm) -> SourceResult<Self::Output> {
- Ok(vm.scopes.get_in_math(&self).at(self.span())?.read().clone())
+ let span = self.span();
+ Ok(vm
+ .scopes
+ .get_in_math(&self)
+ .at(span)?
+ .read_checked((&mut vm.engine, span))
+ .clone())
}
}