aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2009-12-14 16:55:34 +0000
committerDan Nicolaescu2009-12-14 16:55:34 +0000
commit86b5e14c2d5e62d26fae6b0796e4e3c73769d2c5 (patch)
tree780cbce4b4973bb71dcaa3e9b30d5a992126b006
parent8cffbb7542aeb3b798ae12fb01e4e4c508eb7cd0 (diff)
downloademacs-86b5e14c2d5e62d26fae6b0796e4e3c73769d2c5.tar.gz
emacs-86b5e14c2d5e62d26fae6b0796e4e3c73769d2c5.zip
(vc-hg-print-log): Fix argument order.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-hg.el2
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 @@
12009-12-14 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc-hg.el (vc-hg-print-log): Fix argument order.
4
12009-12-14 Chong Yidong <cyd@stupidchicken.com> 52009-12-14 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * progmodes/python.el (python-symbol-completions): Remove text 7 * 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."
223 (repeat :tag "Argument List" :value ("") string)) 223 (repeat :tag "Argument List" :value ("") string))
224 :group 'vc-hg) 224 :group 'vc-hg)
225 225
226(defun vc-hg-print-log (files buffer &optional shortlog limit start-revision) 226(defun vc-hg-print-log (files buffer &optional shortlog start-revision limit)
227 "Get change log associated with FILES." 227 "Get change log associated with FILES."
228 ;; `vc-do-command' creates the buffer, but we need it before running 228 ;; `vc-do-command' creates the buffer, but we need it before running
229 ;; the command. 229 ;; the command.