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-svn.el,v


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-svn.el,v
Date: Mon, 03 Sep 2007 06:19:17 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       07/09/03 06:19:17

Index: vc-svn.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/vc-svn.el,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -b -r1.41 -r1.42
--- vc-svn.el   31 Aug 2007 14:07:49 -0000      1.41
+++ vc-svn.el   3 Sep 2007 06:19:16 -0000       1.42
@@ -382,7 +382,14 @@
     (let ((inhibit-read-only t))
       (goto-char (point-min))
       ;; Add a line to tell log-view-mode what file this is.
-      (insert "Working file(s): " (vc-delistify (mapcar 'file-relative-name 
files)) "\n"))
+      ;; FIXME as far as I can tell, this function at present can only
+      ;; be called with a single file argument.  Therefore I changed
+      ;; the prompt back to singular, "file(s)" -> "file", since
+      ;; otherwise log-view-current-file breaks.  It's trivial to
+      ;; adapt log-view-file-re for the new prefix, but less trivial
+      ;; to make log-view-current-file actually do the right thing in
+      ;; the multiple file case.
+      (insert "Working file: " (vc-delistify (mapcar 'file-relative-name 
files)) "\n"))
     (vc-svn-command
      buffer
      (if (and (= (length files) 1) (vc-stay-local-p (car files)) (fboundp 
'start-process)) 'async 0)




reply via email to

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