diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-09 15:22:11 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-09 15:22:21 +0200 |
commit | 22a832ad82ed7d099e6ee3a947a5841d84e475c4 (patch) | |
tree | 5b4fe19ddc06393c250b3f52aaf4bcb3532d8c48 /doc/lispref/objects.texi | |
parent | 3fd08543782d0d417eaa2dda0727ea16b3271710 (diff) | |
download | emacs-22a832ad82ed7d099e6ee3a947a5841d84e475c4.tar.gz emacs-22a832ad82ed7d099e6ee3a947a5841d84e475c4.tar.bz2 emacs-22a832ad82ed7d099e6ee3a947a5841d84e475c4.zip |
Mention the #f syntax from cl-prin1
* doc/lispref/objects.texi (Special Read Syntax): Mention #f,
which is in cl-prin1 output (bug#55853).
Diffstat (limited to 'doc/lispref/objects.texi')
-rw-r--r-- | doc/lispref/objects.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index b8e2dc5ab95..a715b45a6c2 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi @@ -178,6 +178,12 @@ files. Skip the next @samp{N} characters (@pxref{Comments}). This is used in byte-compiled files, and is not meant to be used in Emacs Lisp source files. + +@item #f +Indicates that the following form isn't readable by the Emacs Lisp +reader. This is only in text for display purposes (when that would +look prettier than alternative ways of indicating an unreadable form) +and will never appear in any Lisp file. @end table |