]> git.eshelyaron.com Git - emacs.git/commitdiff
(comment-normalize-vars): Handle a nil comment-padding.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 13 Nov 2001 20:16:38 +0000 (20:16 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 13 Nov 2001 20:16:38 +0000 (20:16 +0000)
lisp/ChangeLog
lisp/newcomment.el

index 79e99a4907328d399a08ac29ae3c4ef0d9e35eec..eb705578db127ce79c1f00af305a6db2ae89f6b6 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-13  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
+
 2001-11-12  Richard M. Stallman  <rms@gnu.org>
 
        * calendar/todo-mode.el (todo-save): Add save-excursion
@@ -22,7 +26,7 @@
 
        * vc.el (vc-clear-context): Fill obarray with 0, not nil.
        (vc-annotate-color-map): Doc fix.
-       
+
 2001-11-08  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * international/mule.el (make-translation-table): Doc fix.
index 0ed7bb412a9faf7b74d6873a79ee76520ea8102d..98b02a6bfb099208645ac597abaa85f18c3e44fc 100644 (file)
@@ -5,7 +5,7 @@
 ;; Author: code extracted from Emacs-20's simple.el
 ;; Maintainer: Stefan Monnier <monnier@cs.yale.edu>
 ;; Keywords: comment uncomment
-;; Revision: $Id: newcomment.el,v 1.34 2001/09/01 21:23:17 monnier Exp $
+;; Revision: $Id: newcomment.el,v 1.35 2001/09/27 21:13:44 monnier Exp $
 
 ;; This file is part of GNU Emacs.
 
@@ -219,6 +219,7 @@ This is obsolete because you might as well use \\[newline-and-indent]."
               (goto-char (point-min))
               (and (forward-comment 1) (eobp))))))
     ;; comment-padding
+    (unless comment-padding (setq comment-padding 0))
     (when (integerp comment-padding)
       (setq comment-padding (make-string comment-padding ? )))
     ;; comment markers