diff options
author | Glenn Morris <rgm@gnu.org> | 2007-09-03 06:18:58 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-09-03 06:18:58 +0000 |
commit | f4f6d1ed132982f55b2ec96ae552aa37156bddb0 (patch) | |
tree | ca5173d8834c7fb9fce3c47ea6b58d808c964918 /lisp | |
parent | e7dcc5a2d118a6a93d9f10aa12ae3b20c750a7f2 (diff) | |
download | emacs-f4f6d1ed132982f55b2ec96ae552aa37156bddb0.tar.gz |
Remove CVS $Id$ header. Comment.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/vc.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 14dddab6752..e8b339fd1a3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-09-03 Glenn Morris <rgm@gnu.org> + + * vc-svn.el (vc-svn-print-log): Change the "Working file" prefix + back to singular, for the sake of log-view. + 2007-09-02 Dan Nicolaescu <dann@ics.uci.edu> * term/xterm.el (xterm-modify-other-keys-terminal-list): New diff --git a/lisp/vc.el b/lisp/vc.el index 7d8c78c24a8..f04bdcc475c 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -7,8 +7,6 @@ ;; Maintainer: Andre Spiegel <spiegel@gnu.org> ;; Keywords: tools -;; $Id$ - ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify @@ -1013,6 +1011,7 @@ Else, add CODE to the process' sentinel." Each function is called inside the buffer in which the command was run and is passed 3 arguments: the COMMAND, the FILE and the FLAGS.") +;; FIXME what about file names with spaces? (defun vc-delistify (filelist) "Smash a FILELIST into a file list string suitable for info messages." (if (not filelist) "." (mapconcat 'identity filelist " "))) |