comparison doc/lispref/syntax.texi @ 109267:71353caf35e3

Untabify doc/lispref/*.texi. * abbrevs.texi, commands.texi, compile.texi, debugging.texi: * display.texi, edebug.texi, elisp.texi, eval.texi, files.texi: * frames.texi, functions.texi, internals.texi, keymaps.texi: * loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi: * searching.texi, sequences.texi, strings.texi, syntax.texi: * text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi: Untabify Texinfo files.
author Glenn Morris <rgm@gnu.org>
date Tue, 22 Jun 2010 20:36:56 -0700
parents 1d1d5d9bd884
children 9b5623e06689 376148b31b5e
comparison
equal deleted inserted replaced
109266:9df40307a957 109267:71353caf35e3
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, 2010 Free Software Foundation, Inc. 4 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
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/syntax 7 @setfilename ../../info/syntax
7 @node Syntax Tables, Abbrevs, Searching and Matching, Top 8 @node Syntax Tables, Abbrevs, Searching and Matching, Top
8 @chapter Syntax Tables 9 @chapter Syntax Tables
9 @cindex parsing buffer text 10 @cindex parsing buffer text
21 @menu 22 @menu
22 * Basics: Syntax Basics. Basic concepts of syntax tables. 23 * Basics: Syntax Basics. Basic concepts of syntax tables.
23 * Desc: Syntax Descriptors. How characters are classified. 24 * Desc: Syntax Descriptors. How characters are classified.
24 * Syntax Table Functions:: How to create, examine and alter syntax tables. 25 * Syntax Table Functions:: How to create, examine and alter syntax tables.
25 * Syntax Properties:: Overriding syntax with text properties. 26 * Syntax Properties:: Overriding syntax with text properties.
26 * Motion and Syntax:: Moving over characters with certain syntaxes. 27 * Motion and Syntax:: Moving over characters with certain syntaxes.
27 * Parsing Expressions:: Parsing balanced expressions 28 * Parsing Expressions:: Parsing balanced expressions
28 using the syntax table. 29 using the syntax table.
29 * Standard Syntax Tables:: Syntax tables used by various major modes. 30 * Standard Syntax Tables:: Syntax tables used by various major modes.
30 * Syntax Table Internals:: How syntax table information is stored. 31 * Syntax Table Internals:: How syntax table information is stored.
31 * Categories:: Another way of classifying character syntax. 32 * Categories:: Another way of classifying character syntax.