From 3976387b54c5367c160cb329a83fa26784ea37f9 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Thu, 18 Dec 2008 09:24:20 +0000 Subject: [PATCH] (comment-style): Default to `indent'. (Bug#1589) --- lisp/ChangeLog | 2 ++ lisp/newcomment.el | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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 -- 2.39.2