From c244133073cf053ba36a708f19076c54ab4c62e9 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 28 Jun 2016 20:35:12 -0700 Subject: [PATCH] Fix defvar-setq again --- dotfiles/emacs.d/README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index da925009..da94d03c 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -909,7 +909,7 @@ For composing functions with an apply so that they can be used with the ~:around (org-entry-get (get-text-property 1 'org-marker agenda-entry) "CREATED"))) (defmacro defvar-setq (name value) - `(if (boundp ,name) + `(if (boundp (quote ,name)) (setq ,name ,value) (defvar ,name ,value)))