# HG changeset patch # User Stefan Monnier # Date 990826904 0 # Node ID 504c274ec49b96008f500c6313664246e9c37feb # Parent e0beb50b7def298eca894f92a92ab12848de0208 (tildify-ignored-environments-alist): Recognize \verb* as well. diff -r e0beb50b7def -r 504c274ec49b lisp/textmodes/tildify.el --- a/lisp/textmodes/tildify.el Fri May 25 21:16:05 2001 +0000 +++ b/lisp/textmodes/tildify.el Fri May 25 21:41:44 2001 +0000 @@ -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 @@ "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 @@ '((latex-mode ("\\\\\\\\" . "") ; do not remove this ("\\\\begin{verbatim}" . "\\\\end{verbatim}") - ("\\\\verb\\(.\\)" . (1)) + ("\\\\verb*?\\(.\\)" . (1)) ("\\$\\$" . "\\$\\$") ("\\$" . "\\$") ("\\\\(" . "\\\\)")