summaryrefslogtreecommitdiff
path: root/lisp/hilit19.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-04-22 21:53:27 +0000
committerKarl Heuer <kwzh@gnu.org>1994-04-22 21:53:27 +0000
commit5452aee2259e09fccb0edecb975ce3b8885f0ca3 (patch)
treed9300e63d8aa699919a6b4f0563f0e3d6647b6fb /lisp/hilit19.el
parentd88d4f00992b5786e59fb2517aeafcce95af00e4 (diff)
downloademacs-5452aee2259e09fccb0edecb975ce3b8885f0ca3.tar.gz
Don't treat $ as special if escaped.
Diffstat (limited to 'lisp/hilit19.el')
-rw-r--r--lisp/hilit19.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hilit19.el b/lisp/hilit19.el
index eca6d350f2e..348b6c55a36 100644
--- a/lisp/hilit19.el
+++ b/lisp/hilit19.el
@@ -1257,7 +1257,7 @@ number of backslashes."
;; formulas
("[^\\]\\\\(" "\\\\)" formula) ; \( \)
("[^\\]\\\\\\[" "\\\\\\]" formula) ; \[ \]
- ("[^$]\\($\\($[^$]*\\$\\|[^$]*\\)\\$\\)" 1 formula) ; '$...$' or '$$...$$'
+ ("[^\\$]\\($\\($[^$]*\\$\\|[^$]*\\)\\$\\)" 1 formula) ; '$...$' or '$$...$$'
;; things that bring in external files
("\\\\\\(include\\|input\\|bibliography\\){" "}" include)