Skip to content

Commit

Permalink
[emacs-mode] force ∀ and ∃ to be syntax class "punctuation"
Browse files Browse the repository at this point in the history
This happened by default in earlier versions of emacs, but changed
somewhere between versions 27 and 29.
  • Loading branch information
mn200 committed Oct 2, 2024
1 parent f109565 commit b8219c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/holscript-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ ignoring fact that it should really only occur at the beginning of the line.")
;; terms such as \(x,y). x + y
(mapc (lambda (c) (modify-syntax-entry c "w" st)) "'")
(mapc (lambda (c) (modify-syntax-entry c "_" st)) "$_")
(mapc (lambda (c) (modify-syntax-entry c "." st)) ".%&+-/:<=>?@`^|!~#,;")
(mapc (lambda (c) (modify-syntax-entry c "." st)) ".%&+-/:<=>?@`^|!~#,;∀∃")
st)
"The syntax table used in `holscript-mode'.")

Expand Down

0 comments on commit b8219c4

Please sign in to comment.