diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-25 21:43:21 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-25 21:43:21 +0000 |
commit | 1a6af6a22163e6f62b579458d9dec1d480cac7a5 (patch) | |
tree | 87708f00ab7be8625541f738686bcaae08c9901f /lisp/textmodes/tildify.el | |
parent | fd22e6cab6035fa27de79e056532c8c3b79117ef (diff) | |
download | emacs-1a6af6a22163e6f62b579458d9dec1d480cac7a5.tar.gz |
(tildify-ignored-environments-alist): Recognize \verb* right.
Diffstat (limited to 'lisp/textmodes/tildify.el')
-rw-r--r-- | lisp/textmodes/tildify.el | 2 |
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)) ("\\$\\$" . "\\$\\$") ("\\$" . "\\$") ("\\\\(" . "\\\\)") |