]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-mode-variables): Added missing backslash to outline-regexp.
authorRichard M. Stallman <rms@gnu.org>
Tue, 3 May 1994 23:59:48 +0000 (23:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 3 May 1994 23:59:48 +0000 (23:59 +0000)
Removed dublicate ";;; Code: " section separator.

lisp/emacs-lisp/lisp-mode.el

index a488b954422b75e9a87cd7ec5aa7ceab551f468a..0cc5c91032c020aea12940371f602e5a17c761a5 100644 (file)
@@ -21,8 +21,6 @@
 ;; along with GNU Emacs; see the file COPYING.  If not, write to
 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
-;;; Code:
-
 ;;; Commentary:
 
 ;; The base major mode for editing Lisp code (used also for Emacs Lisp).
@@ -96,7 +94,7 @@
   (make-local-variable 'parse-sexp-ignore-comments)
   (setq parse-sexp-ignore-comments t)
   (make-local-variable 'outline-regexp)
-  (setq outline-regexp ";;; \|(....")
+  (setq outline-regexp ";;; \\|(....")
   (make-local-variable 'comment-start)
   (setq comment-start ";")
   (make-local-variable 'comment-start-skip)