comparison lispref/objects.texi @ 37418:1c8b0cb32917

Fully document \d.
author Richard M. Stallman <rms@gnu.org>
date Sun, 22 Apr 2001 14:51:21 +0000
parents 3a9bdf46b7db
children 0f05936702f1
comparison
equal deleted inserted replaced
37417:bc508b45796a 37418:1c8b0cb32917
278 @cindex return 278 @cindex return
279 @cindex @samp{\r} 279 @cindex @samp{\r}
280 @cindex escape 280 @cindex escape
281 @cindex @samp{\e} 281 @cindex @samp{\e}
282 You can express the characters Control-g, backspace, tab, newline, 282 You can express the characters Control-g, backspace, tab, newline,
283 vertical tab, formfeed, return, and escape as @samp{?\a}, @samp{?\b}, 283 vertical tab, formfeed, return, del, and escape as @samp{?\a},
284 @samp{?\t}, @samp{?\n}, @samp{?\v}, @samp{?\f}, @samp{?\r}, @samp{?\e}, 284 @samp{?\b}, @samp{?\t}, @samp{?\n}, @samp{?\v}, @samp{?\f},
285 respectively. Thus, 285 @samp{?\r}, @samp{?\d}, and @samp{?\e}, respectively. Thus,
286 286
287 @example 287 @example
288 ?\a @result{} 7 ; @r{@kbd{C-g}} 288 ?\a @result{} 7 ; @r{@kbd{C-g}}
289 ?\b @result{} 8 ; @r{backspace, @key{BS}, @kbd{C-h}} 289 ?\b @result{} 8 ; @r{backspace, @key{BS}, @kbd{C-h}}
290 ?\t @result{} 9 ; @r{tab, @key{TAB}, @kbd{C-i}} 290 ?\t @result{} 9 ; @r{tab, @key{TAB}, @kbd{C-i}}