diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2022-04-21 18:26:11 -0700 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2022-04-21 18:26:11 -0700 |
commit | ea178470d4b213e7fc969420bf0fb8591df86ee2 (patch) | |
tree | 0c312c2fa621fb07fd5dfc37ba81959e9c19a1bf /blog/entry/apr22emacs.mdwn | |
parent | dc56cb2cbbb326e3d53347ab91047f0e4917f4f9 (diff) | |
download | wiki-ea178470d4b213e7fc969420bf0fb8591df86ee2.tar.gz |
defmacro! description: fix plural
Diffstat (limited to 'blog/entry/apr22emacs.mdwn')
-rw-r--r-- | blog/entry/apr22emacs.mdwn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/entry/apr22emacs.mdwn b/blog/entry/apr22emacs.mdwn index 8f8b9e0..6e1d48e 100644 --- a/blog/entry/apr22emacs.mdwn +++ b/blog/entry/apr22emacs.mdwn @@ -56,7 +56,7 @@ macro-writing macros are either project- or programmer-specific. In his book on Lisp macros [Doug Hoyte proposes](https://letoverlambda.com/index.cl/guest/chap3.html) an alternative to `defmacro`, `defmacro!`, which is just the same as `defmacro` except that -it builds in a facilty equivalent to `cl-with-gensyms` and `cl-once-only`. +it builds in facilities equivalent to `cl-with-gensyms` and `cl-once-only`. I've long wanted to have these macros available in core Emacs Lisp, too, and now they are. |