aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2008-05-26 12:08:23 +0000
committerAndreas Schwab2008-05-26 12:08:23 +0000
commit9b06a6bdfeab9920e6ba85e6a8351f609a0a05e6 (patch)
treedc579b41d2ddca92705487e3b5a7e89678fe69f3
parent5a9c35e5009f2cee18f4baa57736f604d215f7a9 (diff)
downloademacs-9b06a6bdfeab9920e6ba85e6a8351f609a0a05e6.tar.gz
emacs-9b06a6bdfeab9920e6ba85e6a8351f609a0a05e6.zip
(vc-default-prettify-state-info): Fix formatting of an
unknown state.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/vc.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d4ced9ceea3..fe4d01360b7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12008-05-26 Andreas Schwab <schwab@suse.de> 12008-05-26 Andreas Schwab <schwab@suse.de>
2 2
3 * vc.el (vc-default-prettify-state-info): Fix formatting of an
4 unknown state.
5
3 * tar-mode.el (tar-summarize-buffer): Comment fix. 6 * tar-mode.el (tar-summarize-buffer): Comment fix.
4 7
52008-05-26 Stefan Monnier <monnier@iro.umontreal.ca> 82008-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
diff --git a/lisp/vc.el b/lisp/vc.el
index f5e332cd782..ef4aa2b7a05 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -2670,7 +2670,7 @@ to provide the `find-revision' operation instead."
2670 ((eq state 'ignored) "(ignored)") 2670 ((eq state 'ignored) "(ignored)")
2671 ((eq state 'unregistered) "(unregistered)") 2671 ((eq state 'unregistered) "(unregistered)")
2672 ((eq state 'unlocked-changes) "(stale)") 2672 ((eq state 'unlocked-changes) "(stale)")
2673 (t (concat "(unknown:" state ")")))) 2673 (t (format "(unknown:%s)" state))))
2674 (buffer 2674 (buffer
2675 (get-file-buffer file)) 2675 (get-file-buffer file))
2676 (modflag 2676 (modflag