mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
Fix respecting vc-log-show-limit with new -change-log commands
* lisp/vc/vc.el (vc-print-change-log, vc-print-root-change-log): Respect vc-log-show-limit when there is no prefix argument (bug#80532).
This commit is contained in:
parent
2bdf15f6d8
commit
7059bb160e
|
|
@ -4303,7 +4303,7 @@ some users might prefer for interactive usage."
|
|||
(vc--read-limit)
|
||||
(prefix-numeric-value current-prefix-arg))))
|
||||
(vc-print-fileset-branch-log branch))
|
||||
(vc-print-log)))
|
||||
(vc-print-log (and (plusp vc-log-show-limit) vc-log-show-limit))))
|
||||
|
||||
;;;###autoload
|
||||
(defun vc-print-root-log (&optional limit revision)
|
||||
|
|
@ -4359,7 +4359,7 @@ that some users might prefer for interactive usage."
|
|||
(vc--read-limit)
|
||||
(prefix-numeric-value current-prefix-arg))))
|
||||
(vc-print-root-branch-log branch))
|
||||
(vc-print-root-log)))
|
||||
(vc-print-root-log (and (plusp vc-log-show-limit) vc-log-show-limit))))
|
||||
|
||||
(defun vc--read-branch-to-log (&optional fileset)
|
||||
"Read the name of a branch to log.
|
||||
|
|
|
|||
Loading…
Reference in a new issue