aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-09-03 06:18:58 +0000
committerGlenn Morris2007-09-03 06:18:58 +0000
commitf4f6d1ed132982f55b2ec96ae552aa37156bddb0 (patch)
treeca5173d8834c7fb9fce3c47ea6b58d808c964918
parente7dcc5a2d118a6a93d9f10aa12ae3b20c750a7f2 (diff)
downloademacs-f4f6d1ed132982f55b2ec96ae552aa37156bddb0.tar.gz
emacs-f4f6d1ed132982f55b2ec96ae552aa37156bddb0.zip
Remove CVS $Id$ header. Comment.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc.el3
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 @@
12007-09-03 Glenn Morris <rgm@gnu.org>
2
3 * vc-svn.el (vc-svn-print-log): Change the "Working file" prefix
4 back to singular, for the sake of log-view.
5
12007-09-02 Dan Nicolaescu <dann@ics.uci.edu> 62007-09-02 Dan Nicolaescu <dann@ics.uci.edu>
2 7
3 * term/xterm.el (xterm-modify-other-keys-terminal-list): New 8 * 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 @@
7;; Maintainer: Andre Spiegel <spiegel@gnu.org> 7;; Maintainer: Andre Spiegel <spiegel@gnu.org>
8;; Keywords: tools 8;; Keywords: tools
9 9
10;; $Id$
11
12;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
13 11
14;; GNU Emacs is free software; you can redistribute it and/or modify 12;; GNU Emacs is free software; you can redistribute it and/or modify
@@ -1013,6 +1011,7 @@ Else, add CODE to the process' sentinel."
1013Each function is called inside the buffer in which the command was run 1011Each function is called inside the buffer in which the command was run
1014and is passed 3 arguments: the COMMAND, the FILE and the FLAGS.") 1012and is passed 3 arguments: the COMMAND, the FILE and the FLAGS.")
1015 1013
1014;; FIXME what about file names with spaces?
1016(defun vc-delistify (filelist) 1015(defun vc-delistify (filelist)
1017 "Smash a FILELIST into a file list string suitable for info messages." 1016 "Smash a FILELIST into a file list string suitable for info messages."
1018 (if (not filelist) "." (mapconcat 'identity filelist " "))) 1017 (if (not filelist) "." (mapconcat 'identity filelist " ")))