diff options
| author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-12-14 16:55:34 +0000 |
|---|---|---|
| committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-12-14 16:55:34 +0000 |
| commit | 86b5e14c2d5e62d26fae6b0796e4e3c73769d2c5 (patch) | |
| tree | 780cbce4b4973bb71dcaa3e9b30d5a992126b006 /lisp | |
| parent | 8cffbb7542aeb3b798ae12fb01e4e4c508eb7cd0 (diff) | |
| download | emacs-86b5e14c2d5e62d26fae6b0796e4e3c73769d2c5.tar.gz | |
(vc-hg-print-log): Fix argument order.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-hg.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d0fe2e86fdd..149cb6c7b22 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-12-14 Dan Nicolaescu <dann@ics.uci.edu> + + * vc-hg.el (vc-hg-print-log): Fix argument order. + 2009-12-14 Chong Yidong <cyd@stupidchicken.com> * progmodes/python.el (python-symbol-completions): Remove text diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 1e01d50a670..5a90b66e8b5 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -223,7 +223,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." (repeat :tag "Argument List" :value ("") string)) :group 'vc-hg) -(defun vc-hg-print-log (files buffer &optional shortlog limit start-revision) +(defun vc-hg-print-log (files buffer &optional shortlog start-revision limit) "Get change log associated with FILES." ;; `vc-do-command' creates the buffer, but we need it before running ;; the command. |
