diff options
author | shipmints <shipmints@gmail.com> | 2025-03-19 16:58:55 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2025-03-19 16:58:55 +0100 |
commit | cf5aaae90bd3961171e9edef6ee1f97b98c266a6 (patch) | |
tree | 4ec58b4acc6e9d6e3d9f4a485ae722c4baa90326 /lisp/shell.el | |
parent | f6632114fe661930c45b5e9c1bf66644be095ff9 (diff) | |
download | emacs-cf5aaae90bd3961171e9edef6ee1f97b98c266a6.tar.gz emacs-cf5aaae90bd3961171e9edef6ee1f97b98c266a6.tar.bz2 emacs-cf5aaae90bd3961171e9edef6ee1f97b98c266a6.zip |
Promote bookmark-handler prop 'bookmark-inhibit to list (bug#65039)
* lisp/bookmark.el (bookmark-insert):
* lisp/shell.el (#'shell-bookmark-jump): The bookmark-handler
property 'bookmark-inhibit is now a list.
Diffstat (limited to 'lisp/shell.el')
-rw-r--r-- | lisp/shell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index a35a0840651..09d4161ba7a 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -1985,7 +1985,7 @@ be created if necessary, and new remote connections are inhibited." (delq (assoc "7" ansi-osc-handlers) ; ansi-osc-directory-tracker ansi-osc-handlers)))))) (put #'shell-bookmark-jump 'bookmark-handler-type "Shell") -(put #'shell-bookmark-jump 'bookmark-inhibit 'insert) +(put #'shell-bookmark-jump 'bookmark-inhibit '(insert)) (provide 'shell) |