Mercurial > emacs
changeset 29409:be22934d32af
(comment-indent): Ignore comment-indent-hook.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 04 Jun 2000 22:02:11 +0000 |
parents | da3eec3be04b |
children | 935f96194020 |
files | lisp/newcomment.el |
diffstat | 1 files changed, 9 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/newcomment.el Sun Jun 04 22:01:03 2000 +0000 +++ b/lisp/newcomment.el Sun Jun 04 22:02:11 2000 +0000 @@ -6,7 +6,7 @@ ;; Maintainer: Stefan Monnier <monnier@cs.yale.edu> ;; Keywords: comment uncomment ;; Version: $Name: $ -;; Revision: $Id: newcomment.el,v 1.14 2000/05/23 20:06:10 monnier Exp $ +;; Revision: $Id: newcomment.el,v 1.15 2000/05/25 19:05:46 monnier Exp $ ;; This file is part of GNU Emacs. @@ -414,9 +414,7 @@ (goto-char begpos)) ;; Compute desired indent. (if (= (current-column) - (setq indent (funcall (or (and (boundp 'comment-indent-hook) - comment-indent-hook) - comment-indent-function)))) + (setq indent (funcall comment-indent-function))) (goto-char begpos) ;; If that's different from current, change it. (skip-chars-backward " \t") @@ -963,6 +961,13 @@ ;;; Change Log: ;; $Log: newcomment.el,v $ +;; Revision 1.15 2000/05/25 19:05:46 monnier +;; Add abundant autoload cookies. +;; (comment-style): Be careful not to depend on runtime data at compile-time. +;; (comment-indent-hook): Remove. +;; (comment-indent): Check if comment-indent-hook is bound. +;; (comment-region): Docstring fix. +;; ;; Revision 1.14 2000/05/23 20:06:10 monnier ;; (comment-make-extra-lines): Don't use `assert'. ;;