aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-03 23:59:48 +0000
committerRichard M. Stallman1994-05-03 23:59:48 +0000
commit30ff174e24a97579d3f98baab26464e654a65f82 (patch)
treef2489a1e75aae40ceb401d4edb59e7b35c0fa168
parent8f1204db34c0e8380f1eb81c9202520511744be3 (diff)
downloademacs-30ff174e24a97579d3f98baab26464e654a65f82.tar.gz
emacs-30ff174e24a97579d3f98baab26464e654a65f82.zip
(lisp-mode-variables): Added missing backslash to outline-regexp.
Removed dublicate ";;; Code: " section separator.
-rw-r--r--lisp/emacs-lisp/lisp-mode.el4
1 files changed, 1 insertions, 3 deletions
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 @@
21;; along with GNU Emacs; see the file COPYING. If not, write to 21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 23
24;;; Code:
25
26;;; Commentary: 24;;; Commentary:
27 25
28;; The base major mode for editing Lisp code (used also for Emacs Lisp). 26;; The base major mode for editing Lisp code (used also for Emacs Lisp).
@@ -96,7 +94,7 @@
96 (make-local-variable 'parse-sexp-ignore-comments) 94 (make-local-variable 'parse-sexp-ignore-comments)
97 (setq parse-sexp-ignore-comments t) 95 (setq parse-sexp-ignore-comments t)
98 (make-local-variable 'outline-regexp) 96 (make-local-variable 'outline-regexp)
99 (setq outline-regexp ";;; \|(....") 97 (setq outline-regexp ";;; \\|(....")
100 (make-local-variable 'comment-start) 98 (make-local-variable 'comment-start)
101 (setq comment-start ";") 99 (setq comment-start ";")
102 (make-local-variable 'comment-start-skip) 100 (make-local-variable 'comment-start-skip)