]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/vc/add-log.el (add-change-log-entry): Don't use whitespace
authorJason Merrill <jason@redhat.com>
Wed, 30 Mar 2011 21:56:04 +0000 (17:56 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 30 Mar 2011 21:56:04 +0000 (17:56 -0400)
syntax class to search for whitespace on a single line
(Message-ID: <4D938140.4030905@redhat.com>).

lisp/ChangeLog
lisp/vc/add-log.el

index 7ce8b62b333bdc144c7167a39ea7d098b635ae47..3c9e81f0b8aee9f6778a007fa45884bf29bd7664 100644 (file)
@@ -1,3 +1,9 @@
+2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
+
+       * vc/add-log.el (add-change-log-entry): Don't use whitespace
+       syntax class to search for whitespace on a single line
+       (Message-ID: <4D938140.4030905@redhat.com>).
+
 2011-03-30  Leo Liu  <sdl.web@gmail.com>
 
        * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
index d75fcb5f4f1cb6a7571122218444394684851ba4..e9fbdb91e97d2b32e8c2a4f8edf88cb9d23e3d0b 100644 (file)
@@ -886,7 +886,7 @@ non-nil, otherwise in local time."
              (point))))
 
       ;; Now insert the new line for this item.
-      (cond ((re-search-forward "^\\s *\\*\\s *$" bound t)
+      (cond ((re-search-forward "^\\s *\\* *$" bound t)
              ;; Put this file name into the existing empty item.
              (if item
                  (insert item)))
@@ -928,7 +928,7 @@ non-nil, otherwise in local time."
        ;; No function name, so put in a colon unless we have just a star.
        (unless (save-excursion
                  (beginning-of-line 1)
-                 (looking-at "\\s *\\(\\*\\s *\\)?$"))
+                 (looking-at "\\s *\\(\\* *\\)?$"))
          (insert ": ")
          (if version (insert version ?\s)))
       ;; Make it easy to get rid of the function name.