diff options
author | shynur <one.last.kiss@outlook.com> | 2023-09-11 22:56:39 +0800 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2023-09-11 17:16:23 +0200 |
commit | d11d81dfcc6b50a8e889789e2d4696af1a544f7f (patch) | |
tree | 3d748ab1196856b5607688c0c0b93e329d484a89 /doc/lispref/compile.texi | |
parent | 6554ec224654186c9c87f4f0ee48b7353da84a7b (diff) | |
download | emacs-d11d81dfcc6b50a8e889789e2d4696af1a544f7f.tar.gz emacs-d11d81dfcc6b50a8e889789e2d4696af1a544f7f.tar.bz2 emacs-d11d81dfcc6b50a8e889789e2d4696af1a544f7f.zip |
; Fix doc typos (Bug#65868)
Diffstat (limited to 'doc/lispref/compile.texi')
-rw-r--r-- | doc/lispref/compile.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi index 25b897125dd..96d66445360 100644 --- a/doc/lispref/compile.texi +++ b/doc/lispref/compile.texi @@ -422,7 +422,7 @@ execution of the compiled file. For example, @lisp (eval-when-compile (unless (fboundp 'some-new-thing) - (defmacro 'some-new-thing () + (defmacro some-new-thing () (compatibility code)))) @end lisp |