From 9145f1c236625f8fab15e7ea032c11e666487d66 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 13 Nov 2001 20:19:22 +0000 Subject: [PATCH] (comment-normalize-vars): Handle a nil comment-padding. --- lisp/ChangeLog | 2 ++ lisp/newcomment.el | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8d928502e28..b9ae96a0d8e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -5,6 +5,8 @@ 2001-11-13 Stefan Monnier + * newcomment.el (comment-normalize-vars): Handle a nil comment-padding. + * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces. From Emmanuel Briot . diff --git a/lisp/newcomment.el b/lisp/newcomment.el index ecef1c7b182..fe43618ba73 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -5,7 +5,7 @@ ;; Author: code extracted from Emacs-20's simple.el ;; Maintainer: Stefan Monnier ;; Keywords: comment uncomment -;; Revision: $Id: newcomment.el,v 1.36 2001/10/11 01:44:48 monnier Exp $ +;; Revision: $Id: newcomment.el,v 1.37 2001/10/12 22:37:51 monnier Exp $ ;; This file is part of GNU Emacs. @@ -220,6 +220,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 -- 2.39.5