From ea0dfb173c66b546b8ab39569dc731d061be9ad5 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Fri, 23 Sep 2022 16:07:07 +0200 Subject: [PATCH] * lisp/bookmark.el (bookmark-make-record): Fix thinko. --- lisp/bookmark.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 0384812d3fd..a4d42371511 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -607,8 +607,8 @@ context strings from the current buffer." ;; don't include any context in the bookmark file, because ;; that would leak (possibly secret) data. (if (and buffer-file-name - (not (run-hook-with-args-until-success - 'bookmark-inhibit-context-functions buffer-file-name))) + (run-hook-with-args-until-success + 'bookmark-inhibit-context-functions buffer-file-name)) 0 bookmark-search-size)) (record (funcall bookmark-make-record-function))) -- 2.39.2