Mercurial > emacs
changeset 100486:1043d1f4aa3e
(comment-style): Default to `indent'. (Bug#1589)
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 18 Dec 2008 09:23:05 +0000 |
parents | fd10c7ef5447 |
children | c41038815099 |
files | lisp/ChangeLog lisp/newcomment.el |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Dec 18 08:48:26 2008 +0000 +++ b/lisp/ChangeLog Thu Dec 18 09:23:05 2008 +0000 @@ -1,5 +1,7 @@ 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu> + * newcomment.el (comment-style): Default to `indent'. (Bug#1589) + * startup.el (command-line): Do not mention the server name in case the user has not mentioned it, print a more explicit message.
--- a/lisp/newcomment.el Thu Dec 18 08:48:26 2008 +0000 +++ b/lisp/newcomment.el Thu Dec 18 09:23:05 2008 +0000 @@ -207,13 +207,14 @@ 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