diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-05-30 18:02:40 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-05-30 18:02:40 -0700 |
commit | 067fa9c725e8afd1ce2e07264a900703fb30dba9 (patch) | |
tree | a092dbecd72ac527f7899be707fe73fd460fe1c6 /editor | |
parent | 961ce67569ae5b0285f7e12d15652f98ef17d9b4 (diff) | |
download | mu-067fa9c725e8afd1ce2e07264a900703fb30dba9.tar.gz |
bugfix: unbound variables were not raising error
Since we switched error trace semantics from a designated label to a designated depth (commit 9831a8cef9 on May 19).
Diffstat (limited to 'editor')
-rw-r--r-- | editor/mu.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/mu.vim b/editor/mu.vim index ba93a196..374d6e5d 100644 --- a/editor/mu.vim +++ b/editor/mu.vim @@ -49,7 +49,7 @@ highlight link muError Error " sources of action at a distance syntax match muAssign "<-" highlight link muAssign SpecialChar -syntax keyword muAssign error +syntax keyword muAssign error error-stream highlight link muAssign Special " common keywords |