aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/objects.texi
diff options
context:
space:
mode:
authorKaroly Lorentey2005-12-11 22:42:40 +0000
committerKaroly Lorentey2005-12-11 22:42:40 +0000
commitbe3d2d66d2dff979604134c5dc5fb506ded4aa54 (patch)
tree683fc7324392d0023e995b593a627c294375aba1 /lispref/objects.texi
parent16986fcfcca94e88e620c38775e15f758aa44935 (diff)
parentac8fcf0f17ab5d81f3b30db5599337d000ad12d9 (diff)
downloademacs-be3d2d66d2dff979604134c5dc5fb506ded4aa54.tar.gz
emacs-be3d2d66d2dff979604134c5dc5fb506ded4aa54.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-667 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-668 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-669 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-670 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-157 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-158 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-159 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-160 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-161 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-162 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-163 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-164 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-165 Update from CVS: texi/message.texi: Fix default values. * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-166 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-167 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-168 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-448
Diffstat (limited to 'lispref/objects.texi')
-rw-r--r--lispref/objects.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi
index fcfad022dd0..f8a093656b9 100644
--- a/lispref/objects.texi
+++ b/lispref/objects.texi
@@ -291,7 +291,8 @@ you @emph{must} use a second @samp{\} to quote it: @samp{?\\}.
291vertical tab, formfeed, space, return, del, and escape as @samp{?\a}, 291vertical tab, formfeed, space, return, del, and escape as @samp{?\a},
292@samp{?\b}, @samp{?\t}, @samp{?\n}, @samp{?\v}, @samp{?\f}, 292@samp{?\b}, @samp{?\t}, @samp{?\n}, @samp{?\v}, @samp{?\f},
293@samp{?\s}, @samp{?\r}, @samp{?\d}, and @samp{?\e}, respectively. 293@samp{?\s}, @samp{?\r}, @samp{?\d}, and @samp{?\e}, respectively.
294Thus, 294(@samp{?\s} followed by a dash has a different meaning---it applies
295the ``super'' modifier to the following character.) Thus,
295 296
296@example 297@example
297?\a @result{} 7 ; @r{control-g, @kbd{C-g}} 298?\a @result{} 7 ; @r{control-g, @kbd{C-g}}
@@ -311,7 +312,7 @@ Thus,
311 These sequences which start with backslash are also known as 312 These sequences which start with backslash are also known as
312@dfn{escape sequences}, because backslash plays the role of an 313@dfn{escape sequences}, because backslash plays the role of an
313``escape character''; this terminology has nothing to do with the 314``escape character''; this terminology has nothing to do with the
314character @key{ESC}. @samp{\s} is meant for use only in character 315character @key{ESC}. @samp{\s} is meant for use in character
315constants; in string constants, just write the space. 316constants; in string constants, just write the space.
316 317
317@cindex control characters 318@cindex control characters