Browse Source

fix magit-filenotify error

The error was due to unnecessary in add-to-list.
custom
Aleksey Kladov 11 years ago
parent
commit
c09871bf36
  1. 2
      core/prelude-packages.el

2
core/prelude-packages.el

@ -75,7 +75,7 @@
"A list of packages to ensure are installed at launch.")
(when (version<= "24.4" emacs-version)
(add-to-list 'prelude-packages '(magit-filenotify)))
(add-to-list 'prelude-packages 'magit-filenotify))
(defun prelude-packages-installed-p ()
"Check if all packages in `prelude-packages' are installed."

Loading…
Cancel
Save