emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog newcomment.el


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs/lisp ChangeLog newcomment.el
Date: Thu, 18 Dec 2008 09:23:10 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   08/12/18 09:23:10

Modified files:
        lisp           : ChangeLog newcomment.el 

Log message:
        (comment-style): Default to `indent'.  (Bug#1589)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.14959&r2=1.14960
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/newcomment.el?cvsroot=emacs&r1=1.114&r2=1.115

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.14959
retrieving revision 1.14960
diff -u -b -r1.14959 -r1.14960
--- ChangeLog   18 Dec 2008 08:48:27 -0000      1.14959
+++ ChangeLog   18 Dec 2008 09:23:05 -0000      1.14960
@@ -1,5 +1,7 @@
 2008-12-18  Dan Nicolaescu  <address@hidden>
 
+       * 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.
 

Index: newcomment.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/newcomment.el,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -b -r1.114 -r1.115
--- newcomment.el       6 May 2008 07:57:45 -0000       1.114
+++ newcomment.el       18 Dec 2008 09:23:10 -0000      1.115
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]