diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-25 21:41:44 +0000 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-25 21:41:44 +0000 |
| commit | fd22e6cab6035fa27de79e056532c8c3b79117ef (patch) | |
| tree | 29d83db3d8d85bfe35e0f511f02c3c15abbfe0d9 /lisp/textmodes/tildify.el | |
| parent | 4b8dfb4345dbcd6d2bd4f454d0b615011376d27f (diff) | |
| download | emacs-fd22e6cab6035fa27de79e056532c8c3b79117ef.tar.gz | |
(tildify-ignored-environments-alist):
Recognize \verb* as well.
Diffstat (limited to 'lisp/textmodes/tildify.el')
| -rw-r--r-- | lisp/textmodes/tildify.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/tildify.el b/lisp/textmodes/tildify.el index fb17e4c3f68..4854ad05448 100644 --- a/lisp/textmodes/tildify.el +++ b/lisp/textmodes/tildify.el @@ -62,7 +62,7 @@ "Alist specifying where to insert hard spaces. Each alist item is of the form (MAJOR-MODE REGEXP NUMBER) or -(MAJOR-MODE . SYMBOL). +\(MAJOR-MODE . SYMBOL). MAJOR-MODE defines major mode, for which the item applies. It can be either: - a symbol equal to the major mode of the buffer to be fixed @@ -91,7 +91,7 @@ mode, the item for the mode SYMBOL is looked up in the alist instead." "Alist specifying what is a hard space in the current major mode. Each alist item is of the form (MAJOR-MODE . STRING) or -(MAJOR-MODE . SYMBOL). +\(MAJOR-MODE . SYMBOL). MAJOR-MODE defines major mode, for which the item applies. It can be either: - a symbol equal to the major mode of the buffer to be fixed @@ -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)) ("\\$\\$" . "\\$\\$") ("\\$" . "\\$") ("\\\\(" . "\\\\)") |
