Browse Source

Fix bm var

master
10sr 6 years ago
parent
commit
2a2cba7fe9
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      emacs.el

+ 5
- 4
emacs.el View File

@@ -698,11 +698,12 @@ found, otherwise returns nil."
(add-hook 'after-save-hook
'executable-make-buffer-file-executable-if-script-p)

(set (defvar bookmark-default-file)
(expand-file-name (concat user-emacs-directory
"bmk")))
(set-variable 'bookmark-default-file
(expand-file-name (concat user-emacs-directory
"bmk")))
(with-eval-after-load 'recentf
(defvar recentf-exclude nil)
(defvar recentf-exclude)
(defvar bookmark-default-file)
(add-to-list 'recentf-exclude
(regexp-quote bookmark-default-file)))



Loading…
Cancel
Save