From: Glenn Morris Date: Sat, 17 Feb 2018 15:50:28 +0000 (-0800) Subject: Merge from origin/emacs-26 X-Git-Tag: emacs-27.0.90~5667 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4fa90ff8f5fda54fc42049c990c52d3e5236fbe6;p=emacs.git Merge from origin/emacs-26 e5a2933 (origin/emacs-26) lisp/vc/: documentation fixes f21f8e6 Document 'desktop-files-not-to-save' d8917eb Improve documentation of Profiling features b228839 Improve indexing of "performance" in ELisp manual ab67b3e Minor change in Emacs manual's VC chapter c352434 Avoid memory corruption with specpdl overflow + edebug (Bug#3... 593bbda Document comment-fill-column in the manual (Bug#11636) bd4cc8d * doc/emacs/dired.texi (Marks vs Flags): Copyedits. 69107f3 ; Fix doc typos related to indefinite articles aaad1e6 Merge branch 'emacs-26' of git.savannah.gnu.org:/srv/git/emac... 5906418 More fixes for the Emacs manual 9ab3df1 ; Fix doc typos related to indefinite articles 66a4e65 ; Fix doc typos related to indefinite articles 35e5c57 ; Fix doc typos related to indefinite articles --- 4fa90ff8f5fda54fc42049c990c52d3e5236fbe6 diff --cc lisp/vc/vc.el index b87701536f8,93e9c25cbfd..01dc47e8089 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@@ -2415,10 -2415,13 +2415,13 @@@ When called interactively with a prefi ;;;###autoload (defun vc-region-history (from to) - "Show the history of the region FROM..TO." + "Show the history of the region between FROM and TO. + + If called interactively, show the history between point and + mark." (interactive "r") - (let* ((lfrom (line-number-at-pos from)) - (lto (line-number-at-pos (1- to))) + (let* ((lfrom (line-number-at-pos from t)) + (lto (line-number-at-pos (1- to) t)) (file buffer-file-name) (backend (vc-backend file)) (buf (get-buffer-create "*VC-history*")))