[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lispref/objects.texi
From: |
Kim F. Storm |
Subject: |
[Emacs-diffs] Changes to emacs/lispref/objects.texi |
Date: |
Thu, 13 Feb 2003 08:15:46 -0500 |
Index: emacs/lispref/objects.texi
diff -c emacs/lispref/objects.texi:1.32 emacs/lispref/objects.texi:1.33
*** emacs/lispref/objects.texi:1.32 Tue Feb 4 09:47:54 2003
--- emacs/lispref/objects.texi Thu Feb 13 08:15:45 2003
***************
*** 279,288 ****
@cindex @samp{\r}
@cindex escape
@cindex @samp{\e}
You can express the characters Control-g, backspace, tab, newline,
! vertical tab, formfeed, return, del, and escape as @samp{?\a},
@samp{?\b}, @samp{?\t}, @samp{?\n}, @samp{?\v}, @samp{?\f},
! @samp{?\r}, @samp{?\d}, and @samp{?\e}, respectively. Thus,
@example
?\a @result{} 7 ; @address@hidden
--- 279,290 ----
@cindex @samp{\r}
@cindex escape
@cindex @samp{\e}
+ @cindex space
+ @cindex @samp{\s}
You can express the characters Control-g, backspace, tab, newline,
! vertical tab, formfeed, space, return, del, and escape as @samp{?\a},
@samp{?\b}, @samp{?\t}, @samp{?\n}, @samp{?\v}, @samp{?\f},
! @samp{?\r}, @samp{?\d}, @samp{?\e}, and @samp{?\s}, respectively. Thus,
@example
?\a @result{} 7 ; @address@hidden
***************
*** 293,298 ****
--- 295,301 ----
?\f @result{} 12 ; @r{formfeed character, @kbd{C-l}}
?\r @result{} 13 ; @r{carriage return, @key{RET}, @kbd{C-m}}
?\e @result{} 27 ; @r{escape character, @key{ESC}, @kbd{C-[}}
+ ?\s @result{} 32 ; @r{space character, @key{SPC}}
?\\ @result{} 92 ; @r{backslash character, @kbd{\}}
?\d @result{} 127 ; @r{delete character, @key{DEL}}
@end example
***************
*** 407,413 ****
in a character: @dfn{hyper}, @dfn{super} and @dfn{alt}. The syntaxes
for these bits are @samp{\H-}, @samp{\s-} and @samp{\A-}. (Case is
significant in these prefixes.) Thus, @samp{?\H-\M-\A-x} represents
! @kbd{Alt-Hyper-Meta-x}.
@tex
Numerically, the
bit values are @math{2^{22}} for alt, @math{2^{23}} for super and
@math{2^{24}} for hyper.
--- 410,417 ----
in a character: @dfn{hyper}, @dfn{super} and @dfn{alt}. The syntaxes
for these bits are @samp{\H-}, @samp{\s-} and @samp{\A-}. (Case is
significant in these prefixes.) Thus, @samp{?\H-\M-\A-x} represents
! @kbd{Alt-Hyper-Meta-x}. Note that @samp{\s} (without the @samp{-})
! represents the space character.
@tex
Numerically, the
bit values are @math{2^{22}} for alt, @math{2^{23}} for super and
@math{2^{24}} for hyper.
***************
*** 455,462 ****
@samp{()\|;'`"#.,} to avoid confusing the Emacs commands for editing
Lisp code. Also add a backslash before whitespace characters such as
space, tab, newline and formfeed. However, it is cleaner to use one of
! the easily readable escape sequences, such as @samp{\t}, instead of an
! actual whitespace character such as a tab.
@node Symbol Type
@subsection Symbol Type
--- 459,466 ----
@samp{()\|;'`"#.,} to avoid confusing the Emacs commands for editing
Lisp code. Also add a backslash before whitespace characters such as
space, tab, newline and formfeed. However, it is cleaner to use one of
! the easily readable escape sequences, such as @samp{\t} or @samp{\s},
! instead of an actual whitespace character such as a tab or a space.
@node Symbol Type
@subsection Symbol Type