diff options
author | Alan Pearce | 2013-10-08 21:32:48 +0100 |
---|---|---|
committer | Alan Pearce | 2013-10-08 21:32:48 +0100 |
commit | e3acf5d644cb1137db38e66cddbdfa87e6aa7f88 (patch) | |
tree | 19fa7ebb1377b7fbaea9d1c8c32bc4f01e0515ed /emacs | |
parent | 1848881661a8271891e6806af061764fb0fb7a12 (diff) | |
download | dotfiles-e3acf5d644cb1137db38e66cddbdfa87e6aa7f88.tar.lz dotfiles-e3acf5d644cb1137db38e66cddbdfa87e6aa7f88.tar.zst dotfiles-e3acf5d644cb1137db38e66cddbdfa87e6aa7f88.zip |
Emacs: silence compiler warning about unused variable
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 6d2dafe..6844502 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -577,7 +577,7 @@ Values: `desktop', `server', `laptop'") :config (progn (setq smex-key-advice-ignore-menu-bar t smex-auto-update nil) - (defun smex-update-after-load (unused) + (defun smex-update-after-load (_unused) (if (boundp 'smex-cache) (smex-update))) (add-hook 'after-load-functions 'smex-update-after-load)) |