1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

Document #$ in the overview

* doc/lispref/objects.texi (Special Read Syntax): Add #$.
This commit is contained in:
Lars Ingebrigtsen 2019-10-12 21:14:42 +02:00
parent 981f1358f0
commit 0ba0af06e2

View File

@ -144,9 +144,6 @@ starting list count:
object, so when reading back the object, they will be the same object
instead of copies (@pxref{Circular Objects}).
@item @samp{#@@N}
Skip the next @samp{N} characters (@pxref{Comments}).
@item @samp{#xN}
@samp{N} represented as a hexadecimal number (@samp{#x2a}).
@ -167,6 +164,16 @@ A hash table (@pxref{Hash Table Type}).
@item @samp{?C}
A character (@pxref{Basic Char Syntax}).
@item @samp{#$}
The current file name in byte-compiled files (@pxref{Docs and
Compilation}). This is not meant to be used in Emacs Lisp source
files.
@item @samp{#@@N}
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.
@end table