aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2023-09-06 15:49:11 +0300
committerEli Zaretskii2023-09-06 15:49:11 +0300
commit9e9f61866e7dab6f805fac0e2fb03e786e32f6b3 (patch)
treec3e865948b5514bdf7d16549442d50ed1f80bc94
parent7427efa033b344202e4a917a1c22b6a9e927ce74 (diff)
downloademacs-9e9f61866e7dab6f805fac0e2fb03e786e32f6b3.tar.gz
emacs-9e9f61866e7dab6f805fac0e2fb03e786e32f6b3.zip
Improve wording in ELisp manual
* doc/lispref/objects.texi (Printed Representation): Improve wording. Suggested by Xie Shynur <one.last.kiss@outlook.com>. (Bug# 60639)
-rw-r--r--doc/lispref/objects.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index ad079e0d63a..3cca892826e 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -82,7 +82,9 @@ it does not make sense to enter objects of these types as constants in
82a Lisp program. These objects are printed in @dfn{hash notation}, 82a Lisp program. These objects are printed in @dfn{hash notation},
83which consists of the characters @samp{#<}, a descriptive string 83which consists of the characters @samp{#<}, a descriptive string
84(typically the type name followed by the name of the object), and a 84(typically the type name followed by the name of the object), and a
85closing @samp{>}. For example: 85closing @samp{>}. (This is called ``hash notation'' because it begins
86with the @samp{#} character, known as ``hash'' or ``number sign'').
87For example:
86 88
87@example 89@example
88(current-buffer) 90(current-buffer)