# HG changeset patch # User Stefan Monnier # Date 958772174 0 # Node ID 0388cb68963308440eb058589cc7730c449c96e9 # Parent 48c4612cf753c73b1ed0b59aec5e0679a78a7af8 (lisp-mode-variables): Set comment-add. diff -r 48c4612cf753 -r 0388cb689633 lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Fri May 19 20:37:34 2000 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Fri May 19 21:36:14 2000 +0000 @@ -130,6 +130,8 @@ ;; Look within the line for a ; following an even number of backslashes ;; after either a non-backslash or the line beginning. (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *") + (make-local-variable 'comment-add) + (setq comment-add 1) ;default to `;;' in comment-region (make-local-variable 'comment-column) (setq comment-column 40) (make-local-variable 'comment-indent-function)