summaryrefslogtreecommitdiff
path: root/helm-bookmark.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2020-07-20 17:10:19 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2020-07-20 17:10:19 +0200
commite2e8dabadbf067a2ecd68aca041a4431bea586ff (patch)
tree20022bfc114cb11dc5ef045973e41e4c57029135 /helm-bookmark.el
parent0fc8554494dd2ca9f57295cf467377cc583644a1 (diff)
Revert ee0630fe "Provide an alias for non-essential and use it"
Diffstat (limited to 'helm-bookmark.el')
-rw-r--r--helm-bookmark.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/helm-bookmark.el b/helm-bookmark.el
index 8e7a4595..6954f256 100644
--- a/helm-bookmark.el
+++ b/helm-bookmark.el
@@ -167,18 +167,18 @@
(defun helm-bookmark-jump (candidate)
"Jump to bookmark action."
(let ((current-prefix-arg helm-current-prefix-arg)
- helm-use-tramp-handlers)
+ non-essential)
(bookmark-jump candidate)))
(defun helm-bookmark-jump-other-frame (candidate)
"Jump to bookmark in other frame action."
(let ((current-prefix-arg helm-current-prefix-arg)
- helm-use-tramp-handlers)
+ non-essential)
(bookmark-jump candidate 'switch-to-buffer-other-frame)))
(defun helm-bookmark-jump-other-window (candidate)
"Jump to bookmark in other window action."
- (let (helm-use-tramp-handlers)
+ (let (non-essential)
(bookmark-jump-other-window candidate)))
@@ -507,7 +507,7 @@ If `browse-url-browser-function' is set to something else than
(defun helm-highlight-bookmark (bookmarks _source)
"Used as `filtered-candidate-transformer' to colorize bookmarks."
- (let ((helm-use-tramp-handlers t))
+ (let ((non-essential t))
(cl-loop for i in bookmarks
for isfile = (bookmark-get-filename i)
for hff = (helm-bookmark-helm-find-files-p i)