]> git.eshelyaron.com Git - emacs.git/commitdiff
(comment-indent): Ignore comment-indent-hook.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 4 Jun 2000 22:02:11 +0000 (22:02 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 4 Jun 2000 22:02:11 +0000 (22:02 +0000)
lisp/newcomment.el

index 889f888b595ba9e63034a26a39ce78ddc5f9ce28..00c751a1c3a3b507f0e8b8bdb51ad3aaf21d6d57 100644 (file)
@@ -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 @@ If CONTINUE is non-nil, use the `comment-continuation' markers if any."
            (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 @@ unless optional argument SOFT is non-nil."
 
 ;;; 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'.
 ;;