# HG changeset patch # User Richard M. Stallman # Date 768009588 0 # Node ID edad1db699ab2953e024cdbc3f8822d940a71885 # Parent cc7cd83ccf3f0ee2b86e378a3e8c07fd43bd8f9c (lisp-mode-variables): Added missing backslash to outline-regexp. Removed dublicate ";;; Code: " section separator. diff -r cc7cd83ccf3f -r edad1db699ab lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Tue May 03 23:47:06 1994 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Tue May 03 23:59:48 1994 +0000 @@ -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)