From: Stefan Monnier Date: Mon, 19 Nov 2001 20:36:28 +0000 (+0000) Subject: (comment-padding): Add :type and :group. X-Git-Tag: emacs-21.2~287 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d106b6d492d70b0c5a73ae5bb3b039ef0a154c16;p=emacs.git (comment-padding): Add :type and :group. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b57f20d6141..8bdc5505e92 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2001-11-19 Stefan Monnier + + * newcomment.el (comment-padding): Add :type and :group. + 2001-11-18 Stefan Monnier * newcomment.el (comment-indent): diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 65da3bea78f..c8ed9df29e8 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.35.4.1 2001/11/13 20:16:06 monnier Exp $ +;; Revision: $Id: newcomment.el,v 1.35.4.2 2001/11/19 04:59:10 monnier Exp $ ;; This file is part of GNU Emacs. @@ -179,7 +179,9 @@ Can also be an integer which will be automatically turned into a string of the corresponding number of spaces. Extra spacing between the comment characters and the comment text -makes the comment easier to read. Default is 1. nil means 0.") +makes the comment easier to read. Default is \" \". nil means 0." + :group 'comment + :type '(choice string integer (const nil))) ;;;###autoload (defcustom comment-multi-line nil