aboutsummaryrefslogtreecommitdiff
path: root/Emacs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-09-08 03:00:21 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-09-08 03:00:21 +0100
commita8fe7c09c43bfb62c9ddcdfadd510a1b4f21a905 (patch)
tree45338529c78bb93f41b34be70d99fca590e63fab /Emacs
parent6145df8c49291a764d44b1a4580d7e25dcbf9129 (diff)
downloaddotfiles-a8fe7c09c43bfb62c9ddcdfadd510a1b4f21a905.tar.gz
dotfiles-a8fe7c09c43bfb62c9ddcdfadd510a1b4f21a905.tar.bz2
dotfiles-a8fe7c09c43bfb62c9ddcdfadd510a1b4f21a905.zip
(Emcas/config)~quote -> function in proc macro
Diffstat (limited to 'Emacs')
-rw-r--r--Emacs/.config/emacs/config.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index c02e7be..7b1327d 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -108,7 +108,7 @@ form, as that is the most common use of this macro.
(defmacro proc (&rest BODY)
"For a given list of forms BODY, return a quoted 0 argument
lambda."
- `(quote (lambda nil ,@BODY)))
+ `(function (lambda nil ,@BODY)))
#+end_src
** Automatically run a command on saving
Define a macro which creates hooks into ~after-save-hook~. On certain