diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2016-05-29 20:32:32 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2016-05-29 20:32:32 -0400 |
commit | ee28b4cd46487ca8ff3d587a5d0ada436aa3b955 (patch) | |
tree | fd4f8238cf51410df77f78b37d3e747143a70f54 /lisp/recentf.el | |
parent | 01c3cd1c0dbf87332a1de88540d37bfab88b2a6e (diff) | |
download | emacs-ee28b4cd46487ca8ff3d587a5d0ada436aa3b955.tar.gz emacs-ee28b4cd46487ca8ff3d587a5d0ada436aa3b955.tar.bz2 emacs-ee28b4cd46487ca8ff3d587a5d0ada436aa3b955.zip |
* lisp/recentf.el (recentf-open-files-item): Quick fix for (bug#22434).
Diffstat (limited to 'lisp/recentf.el')
-rw-r--r-- | lisp/recentf.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/recentf.el b/lisp/recentf.el index df7f3e2e565..6d6ad48ea1f 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el @@ -1187,6 +1187,9 @@ IGNORE other arguments." :format "%[%t\n%]" :help-echo ,(concat "Open " (cdr menu-element)) :action recentf-open-files-action + ;; Override the (problematic) follow-link property of the + ;; `link' widget (bug#22434). + :follow-link nil ,(cdr menu-element)))) (defun recentf-open-files-items (files) |