diff options
| author | Andreas Schwab | 2008-05-26 12:08:23 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2008-05-26 12:08:23 +0000 |
| commit | 9b06a6bdfeab9920e6ba85e6a8351f609a0a05e6 (patch) | |
| tree | dc579b41d2ddca92705487e3b5a7e89678fe69f3 | |
| parent | 5a9c35e5009f2cee18f4baa57736f604d215f7a9 (diff) | |
| download | emacs-9b06a6bdfeab9920e6ba85e6a8351f609a0a05e6.tar.gz emacs-9b06a6bdfeab9920e6ba85e6a8351f609a0a05e6.zip | |
(vc-default-prettify-state-info): Fix formatting of an
unknown state.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc.el | 2 |
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 @@ | |||
| 1 | 2008-05-26 Andreas Schwab <schwab@suse.de> | 1 | 2008-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 | ||
| 5 | 2008-05-26 Stefan Monnier <monnier@iro.umontreal.ca> | 8 | 2008-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 |