summaryrefslogtreecommitdiff
path: root/lisp/textmodes/tildify.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2001-05-25 21:43:21 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2001-05-25 21:43:21 +0000
commit1a6af6a22163e6f62b579458d9dec1d480cac7a5 (patch)
tree87708f00ab7be8625541f738686bcaae08c9901f /lisp/textmodes/tildify.el
parentfd22e6cab6035fa27de79e056532c8c3b79117ef (diff)
downloademacs-1a6af6a22163e6f62b579458d9dec1d480cac7a5.tar.gz
(tildify-ignored-environments-alist): Recognize \verb* right.
Diffstat (limited to 'lisp/textmodes/tildify.el')
-rw-r--r--lisp/textmodes/tildify.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/tildify.el b/lisp/textmodes/tildify.el
index 4854ad05448..0b5934c1a36 100644
--- a/lisp/textmodes/tildify.el
+++ b/lisp/textmodes/tildify.el
@@ -111,7 +111,7 @@ mode, the item for the mode SYMBOL is looked up in the alist instead."
'((latex-mode
("\\\\\\\\" . "") ; do not remove this
("\\\\begin{verbatim}" . "\\\\end{verbatim}")
- ("\\\\verb*?\\(.\\)" . (1))
+ ("\\\\verb\\*?\\(.\\)" . (1))
("\\$\\$" . "\\$\\$")
("\\$" . "\\$")
("\\\\(" . "\\\\)")