From: Richard M. Stallman Date: Tue, 3 May 1994 23:59:48 +0000 (+0000) Subject: (lisp-mode-variables): Added missing backslash to outline-regexp. X-Git-Tag: emacs-19.34~8552 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=30ff174e24a97579d3f98baab26464e654a65f82;p=emacs.git (lisp-mode-variables): Added missing backslash to outline-regexp. Removed dublicate ";;; Code: " section separator. --- diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index a488b954422..0cc5c91032c 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -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)