diff options
| author | Stefan Monnier | 2009-11-25 03:28:24 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-11-25 03:28:24 +0000 |
| commit | eb708e66249e7b9760b5fb9ce8e047f49191d972 (patch) | |
| tree | 3857851df19da7f3782ff47194a54dd16cd4798f | |
| parent | f69c67b6f700116815462edfb1f8ad204aead25e (diff) | |
| download | emacs-eb708e66249e7b9760b5fb9ce8e047f49191d972.tar.gz emacs-eb708e66249e7b9760b5fb9ce8e047f49191d972.zip | |
(vc-print-log-internal): Make `limit' optional for better
compatibility (e.g. with vc-annotate.el).
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/vc.el | 3 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 04cbca0e721..b11127c7a7b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,12 @@ | |||
| 1 | 2009-11-25 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * vc.el (vc-print-log-internal): Make `limit' optional for better | ||
| 4 | compatibility (e.g. with vc-annotate.el). | ||
| 5 | |||
| 1 | 2009-11-24 Kevin Ryde <user42@zip.com.au> | 6 | 2009-11-24 Kevin Ryde <user42@zip.com.au> |
| 2 | 7 | ||
| 3 | * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Build | 8 | * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): |
| 4 | value with regexp-opt instead of explicit joining loop. (My | 9 | Build value with regexp-opt instead of explicit joining loop. (My |
| 5 | Bug#4927.) | 10 | Bug#4927.) |
| 6 | 11 | ||
| 7 | * emacs-lisp/elint.el (elint-add-required-env): Better error message | 12 | * emacs-lisp/elint.el (elint-add-required-env): Better error message |
diff --git a/lisp/vc.el b/lisp/vc.el index 7c4cfbd28af..a866431a57b 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -1859,7 +1859,8 @@ If it contains `directory' then if the fileset contains a directory show a short | |||
| 1859 | If it contains `file' then show short logs for files. | 1859 | If it contains `file' then show short logs for files. |
| 1860 | Not all VC backends support short logs!") | 1860 | Not all VC backends support short logs!") |
| 1861 | 1861 | ||
| 1862 | (defun vc-print-log-internal (backend files working-revision limit) | 1862 | (defun vc-print-log-internal (backend files working-revision |
| 1863 | &optional limit) | ||
| 1863 | ;; Don't switch to the output buffer before running the command, | 1864 | ;; Don't switch to the output buffer before running the command, |
| 1864 | ;; so that any buffer-local settings in the vc-controlled | 1865 | ;; so that any buffer-local settings in the vc-controlled |
| 1865 | ;; buffer can be accessed by the command. | 1866 | ;; buffer can be accessed by the command. |