From 3fe9d865353d0b93130b2546b07337ea8d9e353f Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 29 Nov 2019 11:34:07 +0200 Subject: [PATCH] Minor fix in 'vc-print-root-log's prompt for revision ID * lisp/vc/vc.el (vc-print-root-log): Remove text properties from the default revision suggestion. --- lisp/vc/vc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 5ac07e78891..132278e8230 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -2492,7 +2492,7 @@ with its diffs (if the underlying VCS supports that)." (interactive (cond ((eq current-prefix-arg 1) - (let* ((default (thing-at-point 'word)) + (let* ((default (thing-at-point 'word t)) (revision (read-string (if default (format "Revision to show (default %s): " default) -- 2.39.5