CVS update by aidan xemacs/man/xemacs ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Wed Nov 14 13:06:53 EST 2007


  User: aidan   
  Date: 07/11/14 19:06:53

  Modified:    xemacs/man/xemacs keystrokes.texi
Log:
Correct some documentation on character representation and display.

Revision  Changes    Path
1.363     +7 -0      XEmacs/xemacs/man/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/ChangeLog,v
retrieving revision 1.362
retrieving revision 1.363
diff -u -p -r1.362 -r1.363
--- ChangeLog	2007/10/15 06:54:20	1.362
+++ ChangeLog	2007/11/14 18:06:47	1.363
@@ -1,3 +1,10 @@
+2007-11-14  Aidan Kehoe  <kehoea at parhasard.net>
+
+	* xemacs/keystrokes.texi (Character Representation):
+	Clarify the description of which characters are displayed as
+	themselves and which as octal escapes bzw. "control" characters
+	with an initial caret. 
+
 2007-10-15  Adrian Aichner  <adrian at xemacs.org>
 
 	* Makefile (info_files): Sync nt/xemacs.mak and man/Makefile.



1.6       +15 -10    XEmacs/xemacs/man/xemacs/keystrokes.texi

Index: keystrokes.texi
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/xemacs/keystrokes.texi,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- keystrokes.texi	2005/12/24 19:53:58	1.5
+++ keystrokes.texi	2007/11/14 18:06:52	1.6
@@ -444,18 +444,23 @@ This section briefly discusses how chara
 buffers.  @xref{Key Sequences}, for information on representing key
 sequences to create key bindings. 
 
-  ASCII graphic characters in Emacs buffers are displayed with their
-graphics.  @key{LFD} is the same as a newline character; it is displayed
-by starting a new line.  @key{TAB} is displayed by moving to the next
-tab stop column (usually every 8 spaces).  Other control characters are
-displayed as a caret (@samp{^}) followed by the non-control version of
-the character; thus, @kbd{C-a} is displayed as @samp{^A}.  Non-ASCII
-characters 128 and up are displayed with octal escape sequences; thus,
-character code 243 (octal), also called @kbd{M-#} when used as an input
-character, is displayed as @samp{\243}.
+  Printable characters (letters, numbers, punctuation and so on) in
+XEmacs buffers are displayed as such. @key{LFD} (line feed, character
+code @samp{\012} (octal)) is the same as a newline character; it is
+displayed by starting a new line.  @key{TAB} is displayed by moving to
+the next tab stop column (usually every 8 spaces).  Other control
+characters below #x20 (hexadecimal) are displayed as a caret (@samp{^})
+followed by the non-control version of the character; thus, @kbd{C-a} is
+displayed as @samp{^A}.  Characters between (hexadecimal) #x80 and #xA0
+are displayed with octal escape sequences; thus, character code 243
+(octal), also called @kbd{M-#} when used as an input character, is
+displayed as @samp{\243}.
 
 The variable @code{ctl-arrow} may be used to alter this behavior.
- at xref{Display Vars}.
+ at xref{Display Vars}. As a rule, its value limits octal display to those
+characters in the range just mentioned, and otherwise characters are
+treated as printable, and will be displayed as themselves when the
+relevant fonts are available. 
 
 @node Commands, Non-Latin keyboards, Character Representation, Keystrokes
 @section Keys and Commands





More information about the XEmacs-CVS mailing list