2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
+ * 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.
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