From: Matthias Meulien Date: Wed, 16 Feb 2022 07:49:07 +0000 (+0100) Subject: Don't prefix bookmark name with VC backend name X-Git-Tag: emacs-29.0.90~2271 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a1617f070baf64de4c0b10e56a3c3659f224690e;p=emacs.git Don't prefix bookmark name with VC backend name * lisp/vc/vc-dir.el (vc-dir-bookmark-make-record): Remove prefix from bookmark name. --- diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el index 944b409ea28..0d750515c3d 100644 --- a/lisp/vc/vc-dir.el +++ b/lisp/vc/vc-dir.el @@ -1538,9 +1538,8 @@ These are the commands available for use in the file status buffer: This implements the `bookmark-make-record-function' type for `vc-dir' buffers." (let* ((bookmark-name - (concat "(" (symbol-name vc-dir-backend) ") " - (file-name-nondirectory - (directory-file-name default-directory)))) + (file-name-nondirectory + (directory-file-name default-directory))) (defaults (list bookmark-name default-directory))) `(,bookmark-name ,@(bookmark-make-record-default 'no-file)