Mercurial > emacs
diff lisp/emacs-lisp/lisp-mode.el @ 2307:10e417efb12a
Added or corrected Commentary sections
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Mon, 22 Mar 1993 03:27:18 +0000 |
parents | 4f9d60f7de9d |
children | 17d258d8e8e4 |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el Mon Mar 22 03:00:23 1993 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Mon Mar 22 03:27:18 1993 +0000 @@ -23,6 +23,13 @@ ;;; Code: +;;; Commentary: + +;; The base major mode for editing Lisp code (used also for Emacs Lisp). +;; This mode is documented in the Emacs manual + +;;; Code: + (defvar lisp-mode-syntax-table nil "") (defvar emacs-lisp-mode-syntax-table nil "") (defvar lisp-mode-abbrev-table nil "") @@ -94,8 +101,8 @@ (setq comment-start-skip ";+ *") (make-local-variable 'comment-column) (setq comment-column 40) - (make-local-variable 'comment-indent-hook) - (setq comment-indent-hook 'lisp-comment-indent)) + (make-local-variable 'comment-indent-function) + (setq comment-indent-function 'lisp-comment-indent)) (defvar shared-lisp-mode-map () "Keymap for commands shared by all sorts of Lisp modes.")