From: Richard M. Stallman Date: Thu, 24 Feb 1994 22:36:24 +0000 (+0000) Subject: (lisp-mode-variables): Set outline-regexp. X-Git-Tag: emacs-19.34~9776 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5847f86195f37dc2710d0873e9a5318f69938a34;p=emacs.git (lisp-mode-variables): Set outline-regexp. --- diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 590de3d0523..a488b954422 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -95,6 +95,8 @@ (setq indent-region-function 'lisp-indent-region) (make-local-variable 'parse-sexp-ignore-comments) (setq parse-sexp-ignore-comments t) + (make-local-variable 'outline-regexp) + (setq outline-regexp ";;; \|(....") (make-local-variable 'comment-start) (setq comment-start ";") (make-local-variable 'comment-start-skip)