]> git.eshelyaron.com Git - emacs.git/commitdiff
(tex-common-initialization):
authorRichard M. Stallman <rms@gnu.org>
Fri, 4 Jul 1997 04:41:46 +0000 (04:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 4 Jul 1997 04:41:46 +0000 (04:41 +0000)
Set search-whitespace-regexp locally.

lisp/textmodes/tex-mode.el

index 6ca1447a9f9b124ae13938525593d68619365c08..606205404e9a52a45ad8eacdae1df7ce99338a92 100644 (file)
@@ -666,6 +666,9 @@ Entering SliTeX mode runs the hook `text-mode-hook', then the hook
        (modify-syntax-entry ?~ " ")
        (modify-syntax-entry ?' "w"))
     (set-syntax-table tex-mode-syntax-table))
+  ;; Regexp isearch should accept newline and formfeed as whitespace.
+  (make-local-variable 'search-whitespace-regexp)
+  (setq search-whitespace-regexp "[ \t\r\n\f]+")
   (make-local-variable 'paragraph-start)
   ;; A line containing just $$ is treated as a paragraph separator.
   (setq paragraph-start "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$")