emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/vc-cvs.el,v


From: Chong Yidong
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-cvs.el,v
Date: Sat, 25 Oct 2008 20:59:39 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      08/10/25 20:59:38

Index: vc-cvs.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/vc-cvs.el,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -b -r1.153 -r1.154
--- vc-cvs.el   13 Oct 2008 01:16:55 -0000      1.153
+++ vc-cvs.el   25 Oct 2008 20:59:38 -0000      1.154
@@ -1000,8 +1000,8 @@
             (with-temp-buffer
               (insert-file-contents "CVS/Repository")
               (goto-char (point-min))
-              (re-search-forward "[^/\n]*" nil t)
-              (concat (match-string 0) "\n"))
+              (skip-chars-forward "^\n")
+              (concat (buffer-substring (point-min) (point)) "\n"))
           (file-error nil))))
     (concat
      (cond (module




reply via email to

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