comparison doc/lispref/objects.texi @ 103823:84a4c82c2b71

(Character Type, String Type): Merge in some menu descriptions from elisp.texi.
author Glenn Morris <rgm@gnu.org>
date Fri, 10 Jul 2009 05:05:47 +0000
parents 4f4172a4f087
children bcbe3f3a3c5e
comparison
equal deleted inserted replaced
103822:d4b0e49916d2 103823:84a4c82c2b71
1 @c -*-texinfo-*- 1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual. 2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001, 3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001,
4 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 4 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 @c Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions. 6 @c See the file elisp.texi for copying conditions.
6 @setfilename ../../info/objects 7 @setfilename ../../info/objects
7 @node Lisp Data Types, Numbers, Introduction, Top 8 @node Lisp Data Types, Numbers, Introduction, Top
8 @chapter Lisp Data Types 9 @chapter Lisp Data Types
9 @cindex object 10 @cindex object
241 There are special functions for producing a human-readable textual 242 There are special functions for producing a human-readable textual
242 description of a character for the sake of messages. @xref{Describing 243 description of a character for the sake of messages. @xref{Describing
243 Characters}. 244 Characters}.
244 245
245 @menu 246 @menu
246 * Basic Char Syntax:: 247 * Basic Char Syntax:: Syntax for regular characters.
247 * General Escape Syntax:: 248 * General Escape Syntax:: How to specify characters by their codes.
248 * Ctl-Char Syntax:: 249 * Ctl-Char Syntax:: Syntax for control characters.
249 * Meta-Char Syntax:: 250 * Meta-Char Syntax:: Syntax for meta-characters.
250 * Other Char Bits:: 251 * Other Char Bits:: Syntax for hyper-, super-, and alt-characters.
251 @end menu 252 @end menu
252 253
253 @node Basic Char Syntax 254 @node Basic Char Syntax
254 @subsubsection Basic Char Syntax 255 @subsubsection Basic Char Syntax
255 @cindex read syntax for characters 256 @cindex read syntax for characters
973 of a string returns the same string. 974 of a string returns the same string.
974 975
975 @xref{Strings and Characters}, for functions that operate on strings. 976 @xref{Strings and Characters}, for functions that operate on strings.
976 977
977 @menu 978 @menu
978 * Syntax for Strings:: 979 * Syntax for Strings:: How to specify Lisp strings.
979 * Non-ASCII in Strings:: 980 * Non-ASCII in Strings:: International characters in strings.
980 * Nonprinting Characters:: 981 * Nonprinting Characters:: Literal unprintable characters in strings.
981 * Text Props and Strings:: 982 * Text Props and Strings:: Strings with text properties.
982 @end menu 983 @end menu
983 984
984 @node Syntax for Strings 985 @node Syntax for Strings
985 @subsubsection Syntax for Strings 986 @subsubsection Syntax for Strings
986 987