summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2013-10-08 21:32:48 +0100
committerAlan Pearce2013-10-08 21:32:48 +0100
commite3acf5d644cb1137db38e66cddbdfa87e6aa7f88 (patch)
tree19fa7ebb1377b7fbaea9d1c8c32bc4f01e0515ed /emacs
parent1848881661a8271891e6806af061764fb0fb7a12 (diff)
downloaddotfiles-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.el2
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))