From: Dan Nicolaescu Date: Thu, 18 Dec 2008 09:24:20 +0000 (+0000) Subject: (comment-style): Default to `indent'. (Bug#1589) X-Git-Tag: emacs-pretest-23.0.90~1038 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3976387b54c5367c160cb329a83fa26784ea37f9;p=emacs.git (comment-style): Default to `indent'. (Bug#1589) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0c06b012fd6..05b299e2fa8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2008-12-18 Dan Nicolaescu + * newcomment.el (comment-style): Default to `indent'. (Bug#1153) + * startup.el (command-line): Do not mention the server name in case the user has not mentioned it, print a more explicit message. diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 91ece5aa2fa..4750676caf3 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -207,13 +207,14 @@ If INDENT is `multi-char', that means indent multi-character comment starters, but not one-character comment starters.") ;;;###autoload -(defcustom comment-style 'indent-or-triple +(defcustom comment-style 'indent "Style to be used for `comment-region'. See `comment-styles' for a list of available styles." :type (if (boundp 'comment-styles) `(choice ,@(mapcar (lambda (s) `(const ,(car s))) comment-styles)) 'symbol) + :version "23.1" :group 'comment) ;;;###autoload