(Top): Update Windows entries in @detailmenu section.
[emacs.git] / doc / lispref / elisp.texi
blob8ccc8e8de76a724cc1ec62fb53f8a3515460ea4f
1 \input texinfo  @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename elisp
4 @settitle GNU Emacs Lisp Reference Manual
5 @c %**end of header
7 @c Version of the manual and of Emacs.
8 @c Please remember to update the edition number in README as well.
9 @set VERSION  2.9
10 @set EMACSVER 23.0.60
12 @c in general, keep the following line commented out, unless doing a
13 @c copy of this manual that will be published.  The manual should go
14 @c onto the distribution in the full, 8.5 x 11" size.
15 @c set smallbook
17 @ifset smallbook
18 @smallbook
19 @end ifset
21 @c per rms and peterb, use 10pt fonts for the main text, mostly to
22 @c save on paper cost.  
23 @c Do this inside @tex for now, so current makeinfo does not complain.
24 @tex
25 @ifset smallbook
26 @fonttextsize 10
27 \global\let\urlcolor=\Black % don't print links in grayscale
28 \global\let\linkcolor=\Black
29 @end ifset
30 \global\hbadness=6666 % don't worry about not-too-underfull boxes
31 @end tex
33 @c Combine indices.
34 @synindex cp fn
35 @syncodeindex vr fn
36 @syncodeindex ky fn
37 @syncodeindex pg fn
38 @c We use the "type index" to index new functions and variables.
39 @c @syncodeindex tp fn
41 @copying
42 This is edition @value{VERSION} of the GNU Emacs Lisp Reference Manual,@*
43 corresponding to Emacs version @value{EMACSVER}.
45 Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,
46 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008  Free Software
47 Foundation, Inc.
49 @quotation
50 Permission is granted to copy, distribute and/or modify this document
51 under the terms of the GNU Free Documentation License, Version 1.2 or
52 any later version published by the Free Software Foundation; with the
53 Invariant Sections being ``GNU General Public License,'' with the
54 Front-Cover texts being ``A GNU Manual,'' and with the Back-Cover
55 Texts as in (a) below.  A copy of the license is included in the
56 section entitled ``GNU Free Documentation License.''
58 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
59 modify this GNU manual.  Buying copies from the FSF supports it in
60 developing GNU and promoting software freedom.''
61 @end quotation
62 @end copying
64 @dircategory Emacs
65 @direntry
66 * Elisp: (elisp).       The Emacs Lisp Reference Manual.
67 @end direntry
69 @titlepage
70 @title GNU Emacs Lisp Reference Manual
71 @subtitle For Emacs Version @value{EMACSVER}
72 @subtitle Revision @value{VERSION}, April 2007
74 @author by Bil Lewis, Dan LaLiberte, Richard Stallman
75 @author and the GNU Manual Group
76 @page
77 @vskip 0pt plus 1filll
78 @insertcopying
80 @sp 2
81 Published by the Free Software Foundation @*
82 51 Franklin St, Fifth Floor @*
83 Boston, MA 02110-1301 @*
84 USA @*
85 ISBN 1-882114-74-4
87 @sp 2
88 Cover art by Etienne Suvasa.
89 @end titlepage
92 @c Print the tables of contents
93 @summarycontents
94 @contents
97 @ifnottex
98 @node Top, Introduction, (dir), (dir)
99 @top Emacs Lisp
101 This Info file contains edition @value{VERSION} of the GNU Emacs Lisp
102 Reference Manual, corresponding to GNU Emacs version @value{EMACSVER}.
103 @end ifnottex
105 @menu
106 * Introduction::            Introduction and conventions used.
108 * Lisp Data Types::         Data types of objects in Emacs Lisp.
109 * Numbers::                 Numbers and arithmetic functions.
110 * Strings and Characters::  Strings, and functions that work on them.
111 * Lists::                   Lists, cons cells, and related functions.
112 * Sequences Arrays Vectors::  Lists, strings and vectors are called sequences.
113                                 Certain functions act on any kind of sequence.
114                                 The description of vectors is here as well.
115 * Hash Tables::             Very fast lookup-tables.
116 * Symbols::                 Symbols represent names, uniquely.
118 * Evaluation::              How Lisp expressions are evaluated.
119 * Control Structures::      Conditionals, loops, nonlocal exits.
120 * Variables::               Using symbols in programs to stand for values.
121 * Functions::               A function is a Lisp program
122                               that can be invoked from other functions.
123 * Macros::                  Macros are a way to extend the Lisp language.
124 * Customization::           Writing customization declarations.
126 * Loading::                 Reading files of Lisp code into Lisp.
127 * Byte Compilation::        Compilation makes programs run faster.
128 * Advising Functions::      Adding to the definition of a function.
129 * Debugging::               Tools and tips for debugging Lisp programs.
131 * Read and Print::          Converting Lisp objects to text and back.
132 * Minibuffers::             Using the minibuffer to read input.
133 * Command Loop::            How the editor command loop works,
134                               and how you can call its subroutines.
135 * Keymaps::                 Defining the bindings from keys to commands.
136 * Modes::                   Defining major and minor modes.
137 * Documentation::           Writing and using documentation strings.
139 * Files::                   Accessing files.
140 * Backups and Auto-Saving:: Controlling how backups and auto-save
141                               files are made.
142 * Buffers::                 Creating and using buffer objects.
143 * Windows::                 Manipulating windows and displaying buffers.
144 * Frames::                  Making multiple system-level windows.
145 * Positions::               Buffer positions and motion functions.
146 * Markers::                 Markers represent positions and update
147                               automatically when the text is changed.
149 * Text::                    Examining and changing text in buffers.
150 * Non-ASCII Characters::    Non-ASCII text in buffers and strings.
151 * Searching and Matching::  Searching buffers for strings or regexps.
152 * Syntax Tables::           The syntax table controls word and list parsing.
153 * Abbrevs::                 How Abbrev mode works, and its data structures.
155 * Processes::               Running and communicating with subprocesses.
156 * Display::                 Features for controlling the screen display.
157 * System Interface::        Getting the user id, system type, environment
158                               variables, and other such things.
160 Appendices
162 * Antinews::                Info for users downgrading to Emacs 21.
163 * GNU Free Documentation License:: The license for this documentation
164 * GPL::                     Conditions for copying and changing GNU Emacs.
165 * Tips::                    Advice and coding conventions for Emacs Lisp.
166 * GNU Emacs Internals::     Building and dumping Emacs;
167                               internal data structures.
168 * Standard Errors::         List of all error symbols.
169 * Standard Buffer-Local Variables::
170                             List of variables buffer-local in all buffers.
171 * Standard Keymaps::        List of standard keymaps.
172 * Standard Hooks::          List of standard hook variables.
174 * Index::                   Index including concepts, functions, variables,
175                               and other terms.
177 @ignore
178 * New Symbols::             New functions and variables in Emacs @value{EMACSVER}.
179 @end ignore
181 @c Do NOT modify the following 3 lines!  They must have this form to
182 @c be correctly identified by `texinfo-multiple-files-update'.  In
183 @c particular, the detailed menu header line MUST be identical to the
184 @c value of `texinfo-master-menu-header'.  See texnfo-upd.el.
186 @detailmenu
187  --- The Detailed Node Listing ---
188  ---------------------------------
190 Here are other nodes that are inferiors of those already listed,
191 mentioned here so you can get to them in one step:
193 Introduction
195 * Caveats::                 Flaws and a request for help.
196 * Lisp History::            Emacs Lisp is descended from Maclisp.
197 * Conventions::             How the manual is formatted.
198 * Version Info::            Which Emacs version is running?
199 * Acknowledgements::        The authors, editors, and sponsors of this manual.
201 Conventions
203 * Some Terms::              Explanation of terms we use in this manual.
204 * nil and t::               How the symbols @code{nil} and @code{t} are used.
205 * Evaluation Notation::     The format we use for examples of evaluation.
206 * Printing Notation::       The format we use for examples that print output.
207 * Error Messages::          The format we use for examples of errors.
208 * Buffer Text Notation::    The format we use for buffer contents in examples.
209 * Format of Descriptions::  Notation for describing functions, variables, etc.
211 Format of Descriptions
213 * A Sample Function Description::  A description of an imaginary
214                                      function, @code{foo}.
215 * A Sample Variable Description::  A description of an imaginary
216                                      variable, @code{electric-future-map}.
218 Lisp Data Types
220 * Printed Representation::  How Lisp objects are represented as text.
221 * Comments::                Comments and their formatting conventions.
222 * Programming Types::       Types found in all Lisp systems.
223 * Editing Types::           Types specific to Emacs.
224 * Circular Objects::            Read syntax for circular structure.
225 * Type Predicates::         Tests related to types.
226 * Equality Predicates::     Tests of equality between any two objects.
228 Programming Types
230 * Integer Type::        Numbers without fractional parts.
231 * Floating Point Type:: Numbers with fractional parts and with a large range.
232 * Character Type::      The representation of letters, numbers and
233                           control characters.
234 * Symbol Type::         A multi-use object that refers to a function,
235                         variable, property list, or itself.
236 * Sequence Type::       Both lists and arrays are classified as sequences.
237 * Cons Cell Type::      Cons cells, and lists (which are made from cons cells).
238 * Array Type::          Arrays include strings and vectors.
239 * String Type::         An (efficient) array of characters.
240 * Vector Type::         One-dimensional arrays.
241 * Char-Table Type::     One-dimensional sparse arrays indexed by characters.
242 * Bool-Vector Type::    One-dimensional arrays of @code{t} or @code{nil}.
243 * Hash Table Type::     Super-fast lookup tables.
244 * Function Type::       A piece of executable code you can call from elsewhere.
245 * Macro Type::          A method of expanding an expression into another
246                           expression, more fundamental but less pretty.
247 * Primitive Function Type::     A function written in C, callable from Lisp.
248 * Byte-Code Type::      A function written in Lisp, then compiled.
249 * Autoload Type::       A type used for automatically loading seldom-used
250                           functions.
252 Character Type
254 * Basic Char Syntax::       Syntax for regular characters.
255 * General Escape Syntax::   How to specify characters by their codes.
256 * Ctl-Char Syntax::         Syntax for control characters.
257 * Meta-Char Syntax::        Syntax for meta-characters.
258 * Other Char Bits::         Syntax for hyper-, super-, and alt-characters.
260 Cons Cell and List Types
262 * Box Diagrams::            Drawing pictures of lists.
263 * Dotted Pair Notation::    An alternative syntax for lists.
264 * Association List Type::   A specially constructed list.
266 String Type
268 * Syntax for Strings::      How to specify Lisp strings.
269 * Non-ASCII in Strings::    International characters in strings.
270 * Nonprinting Characters::  Literal unprintable characters in strings.
271 * Text Props and Strings::  Strings with text properties.
273 Editing Types
275 * Buffer Type::             The basic object of editing.
276 * Marker Type::             A position in a buffer.
277 * Window Type::             What makes buffers visible.
278 * Frame Type::              Windows subdivide frames.
279 * Window Configuration Type::  Recording the way a frame is subdivided.
280 * Frame Configuration Type::   Recording the status of all frames.
281 * Process Type::            A subprocess of Emacs running on the underlying OS.
282 * Stream Type::             Receive or send characters.
283 * Keymap Type::             What function a keystroke invokes.
284 * Overlay Type::            How an overlay is represented.
286 Numbers
288 * Integer Basics::          Representation and range of integers.
289 * Float Basics::            Representation and range of floating point.
290 * Predicates on Numbers::   Testing for numbers.
291 * Comparison of Numbers::   Equality and inequality predicates.
292 * Numeric Conversions::     Converting float to integer and vice versa.
293 * Arithmetic Operations::   How to add, subtract, multiply and divide.
294 * Rounding Operations::     Explicitly rounding floating point numbers.
295 * Bitwise Operations::      Logical and, or, not, shifting.
296 * Math Functions::          Trig, exponential and logarithmic functions.
297 * Random Numbers::          Obtaining random integers, predictable or not.
299 Strings and Characters
301 * String Basics::           Basic properties of strings and characters.
302 * Predicates for Strings::  Testing whether an object is a string or char.
303 * Creating Strings::        Functions to allocate new strings.
304 * Modifying Strings::         Altering the contents of an existing string.
305 * Text Comparison::         Comparing characters or strings.
306 * String Conversion::       Converting characters to strings and vice versa.
307 * Formatting Strings::      @code{format}: Emacs's analogue of @code{printf}.
308 * Case Conversion::         Case conversion functions.
309 * Case Tables::             Customizing case conversion.
311 Lists
313 * Cons Cells::              How lists are made out of cons cells.
314 * List-related Predicates:: Is this object a list?  Comparing two lists.
315 * List Elements::           Extracting the pieces of a list.
316 * Building Lists::          Creating list structure.
317 * List Variables::          Modifying lists stored in variables.
318 * Modifying Lists::         Storing new pieces into an existing list.
319 * Sets And Lists::          A list can represent a finite mathematical set.
320 * Association Lists::       A list can represent a finite relation or mapping.
321 * Rings::                   Managing a fixed-size ring of objects.
323 Modifying Existing List Structure
325 * Setcar::                  Replacing an element in a list.
326 * Setcdr::                  Replacing part of the list backbone.
327                               This can be used to remove or add elements.
328 * Rearrangement::           Reordering the elements in a list; combining lists.
330 Sequences, Arrays, and Vectors
332 * Sequence Functions::      Functions that accept any kind of sequence.
333 * Arrays::                  Characteristics of arrays in Emacs Lisp.
334 * Array Functions::         Functions specifically for arrays.
335 * Vectors::                 Special characteristics of Emacs Lisp vectors.
336 * Vector Functions::        Functions specifically for vectors.
337 * Char-Tables::             How to work with char-tables.
338 * Bool-Vectors::            How to work with bool-vectors.
340 Hash Tables
342 * Creating Hash::           Functions to create hash tables.
343 * Hash Access::             Reading and writing the hash table contents.
344 * Defining Hash::           Defining new comparison methods
345 * Other Hash::              Miscellaneous.
347 Symbols
349 * Symbol Components::       Symbols have names, values, function definitions
350                               and property lists.
351 * Definitions::             A definition says how a symbol will be used.
352 * Creating Symbols::        How symbols are kept unique.
353 * Property Lists::          Each symbol has a property list
354                               for recording miscellaneous information.
356 Property Lists
358 * Plists and Alists::       Comparison of the advantages of property
359                               lists and association lists.
360 * Symbol Plists::           Functions to access symbols' property lists.
361 * Other Plists::            Accessing property lists stored elsewhere.
363 Evaluation
365 * Intro Eval::              Evaluation in the scheme of things.
366 * Forms::                   How various sorts of objects are evaluated.
367 * Quoting::                 Avoiding evaluation (to put constants in
368                               the program).
369 * Eval::                    How to invoke the Lisp interpreter explicitly.
371 Kinds of Forms
373 * Self-Evaluating Forms::   Forms that evaluate to themselves.
374 * Symbol Forms::            Symbols evaluate as variables.
375 * Classifying Lists::       How to distinguish various sorts of list forms.
376 * Function Indirection::    When a symbol appears as the car of a list,
377                               we find the real function via the symbol.
378 * Function Forms::          Forms that call functions.
379 * Macro Forms::             Forms that call macros.
380 * Special Forms::           "Special forms" are idiosyncratic primitives,
381                               most of them extremely important.
382 * Autoloading::             Functions set up to load files
383                               containing their real definitions.
385 Control Structures
387 * Sequencing::              Evaluation in textual order.
388 * Conditionals::            @code{if}, @code{cond}, @code{when}, @code{unless}.
389 * Combining Conditions::    @code{and}, @code{or}, @code{not}.
390 * Iteration::               @code{while} loops.
391 * Nonlocal Exits::          Jumping out of a sequence.
393 Nonlocal Exits
395 * Catch and Throw::         Nonlocal exits for the program's own purposes.
396 * Examples of Catch::       Showing how such nonlocal exits can be written.
397 * Errors::                  How errors are signaled and handled.
398 * Cleanups::                Arranging to run a cleanup form if an
399                               error happens.
401 Errors
403 * Signaling Errors::        How to report an error.
404 * Processing of Errors::    What Emacs does when you report an error.
405 * Handling Errors::         How you can trap errors and continue execution.
406 * Error Symbols::           How errors are classified for trapping them.
407 * Standard Errors::         List of all error symbols.
409 Variables
411 * Global Variables::        Variable values that exist permanently, everywhere.
412 * Constant Variables::      Certain "variables" have values that never change.
413 * Local Variables::         Variable values that exist only temporarily.
414 * Void Variables::          Symbols that lack values.
415 * Defining Variables::      A definition says a symbol is used as a variable.
416 * Tips for Defining::       Things you should think about when you
417                               define a variable.
418 * Accessing Variables::     Examining values of variables whose names
419                               are known only at run time.
420 * Setting Variables::       Storing new values in variables.
421 * Variable Scoping::        How Lisp chooses among local and global values.
422 * Buffer-Local Variables::  Variable values in effect only in one buffer.
423 * Future Local Variables::  New kinds of local values we might add some day.
424 * File Local Variables::    Handling local variable lists in files.
425 * Frame-Local Variables::   Frame-local bindings for variables.
426 * Variable Aliases::        Variables that are aliases for other variables.
427 * Variables with Restricted Values::  Non-constant variables whose value can
428                                         @emph{not} be an arbitrary Lisp object.
429 * Standard Buffer-Local Variables::
430                             List of variables buffer-local in all buffers.
432 Scoping Rules for Variable Bindings
434 * Scope::                   Scope means where in the program a value
435                               is visible.  Comparison with other languages.
436 * Extent::                  Extent means how long in time a value exists.
437 * Impl of Scope::           Two ways to implement dynamic scoping.
438 * Using Scoping::           How to use dynamic scoping carefully and
439                               avoid problems.
441 Buffer-Local Variables
443 * Intro to Buffer-Local::   Introduction and concepts.
444 * Creating Buffer-Local::   Creating and destroying buffer-local bindings.
445 * Default Value::           The default value is seen in buffers
446                               that don't have their own buffer-local values.
448 Functions
450 * What Is a Function::      Lisp functions vs primitives; terminology.
451 * Lambda Expressions::      How functions are expressed as Lisp objects.
452 * Function Names::          A symbol can serve as the name of a function.
453 * Defining Functions::      Lisp expressions for defining functions.
454 * Calling Functions::       How to use an existing function.
455 * Mapping Functions::       Applying a function to each element of a list, etc.
456 * Anonymous Functions::     Lambda-expressions are functions with no names.
457 * Function Cells::          Accessing or setting the function definition
458                               of a symbol.
459 * Obsolete Functions::      Declaring functions obsolete.
460 * Inline Functions::        Defining functions that the compiler will open code.
461 * Function Safety::         Determining whether a function is safe to call.
462 * Related Topics::          Cross-references to specific Lisp primitives
463                               that have a special bearing on how
464                               functions work.
466 Lambda Expressions
468 * Lambda Components::       The parts of a lambda expression.
469 * Simple Lambda::           A simple example.
470 * Argument List::           Details and special features of argument lists.
471 * Function Documentation::  How to put documentation in a function.
473 Macros
475 * Simple Macro::            A basic example.
476 * Expansion::               How, when and why macros are expanded.
477 * Compiling Macros::        How macros are expanded by the compiler.
478 * Defining Macros::         How to write a macro definition.
479 * Backquote::               Easier construction of list structure.
480 * Problems with Macros::    Don't evaluate the macro arguments too many times.
481                               Don't hide the user's variables.
482 * Indenting Macros::        Specifying how to indent macro calls.
484 Common Problems Using Macros
486 * Wrong Time::             Do the work in the expansion, not in the macro.
487 * Argument Evaluation::    The expansion should evaluate each macro arg once.
488 * Surprising Local Vars::  Local variable bindings in the expansion
489                               require special care.
490 * Eval During Expansion::  Don't evaluate them; put them in the expansion.
491 * Repeated Expansion::     Avoid depending on how many times expansion is done.
493 Writing Customization Definitions
495 * Common Keywords::         Common keyword arguments for all kinds of
496                               customization declarations.
497 * Group Definitions::       Writing customization group definitions.
498 * Variable Definitions::    Declaring user options.
499 * Customization Types::     Specifying the type of a user option.
501 Customization Types
503 * Simple Types::            Simple customization types: sexp, integer, number,
504                               string, file, directory, alist.
505 * Composite Types::         Build new types from other types or data.
506 * Splicing into Lists::     Splice elements into list with @code{:inline}.
507 * Type Keywords::           Keyword-argument pairs in a customization type.
508 * Defining New Types::      Give your type a name.
510 Loading
512 * How Programs Do Loading:: The @code{load} function and others.
513 * Load Suffixes::           Details about the suffixes that @code{load} tries.
514 * Library Search::          Finding a library to load.
515 * Loading Non-ASCII::       Non-@acronym{ASCII} characters in Emacs Lisp files.
516 * Autoload::                Setting up a function to autoload.
517 * Repeated Loading::        Precautions about loading a file twice.
518 * Named Features::          Loading a library if it isn't already loaded.
519 * Where Defined::           Finding which file defined a certain symbol.
520 * Unloading::               How to "unload" a library that was loaded.
521 * Hooks for Loading::       Providing code to be run when
522                               particular libraries are loaded.
524 Byte Compilation
526 * Speed of Byte-Code::      An example of speedup from byte compilation.
527 * Compilation Functions::   Byte compilation functions.
528 * Docs and Compilation::    Dynamic loading of documentation strings.
529 * Dynamic Loading::         Dynamic loading of individual functions.
530 * Eval During Compile::     Code to be evaluated when you compile.
531 * Compiler Errors::         Handling compiler error messages.
532 * Byte-Code Objects::       The data type used for byte-compiled functions.
533 * Disassembly::             Disassembling byte-code; how to read byte-code.
535 Advising Emacs Lisp Functions
537 * Simple Advice::           A simple example to explain the basics of advice.
538 * Defining Advice::         Detailed description of @code{defadvice}.
539 * Around-Advice::           Wrapping advice around a function's definition.
540 * Computed Advice::         ...is to @code{defadvice} as @code{fset} is to @code{defun}.
541 * Activation of Advice::    Advice doesn't do anything until you activate it.
542 * Enabling Advice::         You can enable or disable each piece of advice.
543 * Preactivation::           Preactivation is a way of speeding up the
544                               loading of compiled advice.
545 * Argument Access in Advice:: How advice can access the function's arguments.
546 * Advising Primitives::     Accessing arguments when advising a primitive.
547 * Combined Definition::     How advice is implemented.
549 Debugging Lisp Programs
551 * Debugger::                How the Emacs Lisp debugger is implemented.
552 * Edebug::                  A source-level Emacs Lisp debugger.
553 * Syntax Errors::           How to find syntax errors.
554 * Test Coverage::           Ensuring you have tested all branches in your code.
555 * Compilation Errors::      How to find errors that show up in
556                               byte compilation.
558 The Lisp Debugger
560 * Error Debugging::         Entering the debugger when an error happens.
561 * Infinite Loops::          Stopping and debugging a program that doesn't exit.
562 * Function Debugging::      Entering it when a certain function is called.
563 * Explicit Debug::          Entering it at a certain point in the program.
564 * Using Debugger::          What the debugger does; what you see while in it.
565 * Debugger Commands::       Commands used while in the debugger.
566 * Invoking the Debugger::   How to call the function @code{debug}.
567 * Internals of Debugger::   Subroutines of the debugger, and global variables.
569 Edebug
571 * Using Edebug::            Introduction to use of Edebug.
572 * Instrumenting::           You must instrument your code
573                               in order to debug it with Edebug.
574 * Edebug Execution Modes::  Execution modes, stopping more or less often.
575 * Jumping::                 Commands to jump to a specified place.
576 * Edebug Misc::             Miscellaneous commands.
577 * Breaks::                  Setting breakpoints to make the program stop.
578 * Trapping Errors::         Trapping errors with Edebug.
579 * Edebug Views::            Views inside and outside of Edebug.
580 * Edebug Eval::             Evaluating expressions within Edebug.
581 * Eval List::               Expressions whose values are displayed
582                               each time you enter Edebug.
583 * Printing in Edebug::      Customization of printing.
584 * Trace Buffer::            How to produce trace output in a buffer.
585 * Coverage Testing::        How to test evaluation coverage.
586 * The Outside Context::     Data that Edebug saves and restores.
587 * Edebug and Macros::       Specifying how to handle macro calls.
588 * Edebug Options::          Option variables for customizing Edebug.
590 Debugging Invalid Lisp Syntax
592 * Excess Open::             How to find a spurious open paren or missing close.
593 * Excess Close::            How to find a spurious close paren or missing open.
595 Reading and Printing Lisp Objects
597 * Streams Intro::           Overview of streams, reading and printing.
598 * Input Streams::           Various data types that can be used as
599                               input streams.
600 * Input Functions::         Functions to read Lisp objects from text.
601 * Output Streams::          Various data types that can be used as
602                               output streams.
603 * Output Functions::        Functions to print Lisp objects as text.
604 * Output Variables::        Variables that control what the printing
605                               functions do.
607 Minibuffers
609 * Intro to Minibuffers::    Basic information about minibuffers.
610 * Text from Minibuffer::    How to read a straight text string.
611 * Object from Minibuffer::  How to read a Lisp object or expression.
612 * Minibuffer History::      Recording previous minibuffer inputs
613                               so the user can reuse them.
614 * Initial Input::           Specifying initial contents for the minibuffer.
615 * Completion::              How to invoke and customize completion.
616 * Yes-or-No Queries::       Asking a question with a simple answer.
617 * Multiple Queries::        Asking a series of similar questions.
618 * Reading a Password::      Reading a password from the terminal.
619 * Minibuffer Commands::     Commands used as key bindings in minibuffers.
620 * Minibuffer Contents::     How such commands access the minibuffer text.
621 * Minibuffer Windows::      Operating on the special minibuffer windows.
622 * Recursive Mini::          Whether recursive entry to minibuffer is allowed.
623 * Minibuffer Misc::         Various customization hooks and variables.
625 Completion
627 * Basic Completion::        Low-level functions for completing strings.
628                               (These are too low level to use the minibuffer.)
629 * Minibuffer Completion::   Invoking the minibuffer with completion.
630 * Completion Commands::     Minibuffer commands that do completion.
631 * High-Level Completion::   Convenient special cases of completion
632                               (reading buffer name, file name, etc.)
633 * Reading File Names::      Using completion to read file names and
634                               shell commands.
635 * Programmed Completion::   Finding the completions for a given file name.
637 Command Loop
639 * Command Overview::    How the command loop reads commands.
640 * Defining Commands::   Specifying how a function should read arguments.
641 * Interactive Call::    Calling a command, so that it will read arguments.
642 * Distinguish Interactive::     Making a command distinguish interactive calls.
643 * Command Loop Info::   Variables set by the command loop for you to examine.
644 * Adjusting Point::     Adjustment of point after a command.
645 * Input Events::        What input looks like when you read it.
646 * Reading Input::       How to read input events from the keyboard or mouse.
647 * Special Events::      Events processed immediately and individually.
648 * Waiting::             Waiting for user input or elapsed time.
649 * Quitting::            How @kbd{C-g} works.  How to catch or defer quitting.
650 * Prefix Command Arguments::    How the commands to set prefix args work.
651 * Recursive Editing::   Entering a recursive edit,
652                           and why you usually shouldn't.
653 * Disabling Commands::  How the command loop handles disabled commands.
654 * Command History::     How the command history is set up, and how accessed.
655 * Keyboard Macros::     How keyboard macros are implemented.
657 Defining Commands
659 * Using Interactive::       General rules for @code{interactive}.
660 * Interactive Codes::       The standard letter-codes for reading arguments
661                               in various ways.
662 * Interactive Examples::    Examples of how to read interactive arguments.
664 Input Events
666 * Keyboard Events::         Ordinary characters--keys with symbols on them.
667 * Function Keys::           Function keys--keys with names, not symbols.
668 * Mouse Events::            Overview of mouse events.
669 * Click Events::            Pushing and releasing a mouse button.
670 * Drag Events::             Moving the mouse before releasing the button.
671 * Button-Down Events::      A button was pushed and not yet released.
672 * Repeat Events::           Double and triple click (or drag, or down).
673 * Motion Events::           Just moving the mouse, not pushing a button.
674 * Focus Events::            Moving the mouse between frames.
675 * Misc Events::             Other events the system can generate.
676 * Event Examples::          Examples of the lists for mouse events.
677 * Classifying Events::      Finding the modifier keys in an event symbol.
678 * Accessing Mouse::         Functions to extract info from mouse events.
679 * Accessing Scroll::        Functions to get info from scroll bar events.
680 * Strings of Events::       Special considerations for putting
681                               keyboard character events in a string.
683 Reading Input
685 * Key Sequence Input::      How to read one key sequence.
686 * Reading One Event::       How to read just one event.
687 * Event Mod::               How Emacs modifies events as they are read.
688 * Invoking the Input Method::   How reading an event uses the input method.
689 * Quoted Character Input::  Asking the user to specify a character.
690 * Event Input Misc::        How to reread or throw away input events.
692 Keymaps
694 * Key Sequences::           Key sequences as Lisp objects.
695 * Keymap Basics::           Basic concepts of keymaps.
696 * Format of Keymaps::       What a keymap looks like as a Lisp object.
697 * Creating Keymaps::        Functions to create and copy keymaps.
698 * Inheritance and Keymaps:: How one keymap can inherit the bindings
699                               of another keymap.
700 * Prefix Keys::             Defining a key with a keymap as its definition.
701 * Active Keymaps::          How Emacs searches the active keymaps
702                               for a key binding.
703 * Searching Keymaps::       A pseudo-Lisp summary of searching active maps.
704 * Controlling Active Maps:: Each buffer has a local keymap
705                                to override the standard (global) bindings.
706                                A minor mode can also override them.
707 * Key Lookup::              How extracting elements from keymaps works.
708 * Functions for Key Lookup::    How to request key lookup.
709 * Changing Key Bindings::   Redefining a key in a keymap.
710 * Remapping Commands::      A keymap can translate one command to another.
711 * Translation Keymaps::     Keymaps for translating sequences of events.
712 * Key Binding Commands::    Interactive interfaces for redefining keys.
713 * Scanning Keymaps::        Looking through all keymaps, for printing help.
714 * Menu Keymaps::            A keymap can define a menu for X
715                               or for use from the terminal.
716 * Standard Keymaps::        List of standard keymaps.
718 Major and Minor Modes
720 * Hooks::                   How to use hooks; how to write code that
721                               provides hooks.
722 * Major Modes::             Defining major modes.
723 * Minor Modes::             Defining minor modes.
724 * Mode Line Format::        Customizing the text that appears in the mode line.
725 * Imenu::                   How a mode can provide a menu
726                               of definitions in the buffer.
727 * Font Lock Mode::          How modes can highlight text according to syntax.
728 * Desktop Save Mode::       How modes can have buffer state saved between
729                               Emacs sessions.
731 Menu Keymaps
733 * Defining Menus::          How to make a keymap that defines a menu.
734 * Mouse Menus::             How users actuate the menu with the mouse.
735 * Keyboard Menus::          How users actuate the menu with the keyboard.
736 * Menu Example::            Making a simple menu.
737 * Menu Bar::                How to customize the menu bar.
738 * Tool Bar::                A tool bar is a row of images.
739 * Modifying Menus::         How to add new items to a menu.
741 Defining Menus
743 * Simple Menu Items::       A simple kind of menu key binding,
744                               limited in capabilities.
745 * Extended Menu Items::     More powerful menu item definitions
746                               let you specify keywords to enable
747                               various features.
748 * Menu Separators::         Drawing a horizontal line through a menu.
749 * Alias Menu Items::        Using command aliases in menu items.
751 Major and Minor Modes
753 * Hooks::              How to use hooks; how to write code that provides hooks.
754 * Major Modes::        Defining major modes.
755 * Minor Modes::        Defining minor modes.
756 * Mode Line Format::   Customizing the text that appears in the mode line.
757 * Imenu::              How a mode can provide a menu
758                          of definitions in the buffer.
759 * Font Lock Mode::     How modes can highlight text according to syntax.
760 * Desktop Save Mode::  How modes can have buffer state saved between
761                          Emacs sessions.
763 Major Modes
765 * Major Mode Basics::
766 * Major Mode Conventions::  Coding conventions for keymaps, etc.
767 * Example Major Modes::     Text mode and Lisp modes.
768 * Auto Major Mode::         How Emacs chooses the major mode automatically.
769 * Mode Help::               Finding out how to use a mode.
770 * Derived Modes::           Defining a new major mode based on another major
771                               mode.
772 * Generic Modes::           Defining a simple major mode that supports
773                               comment syntax and Font Lock mode.
774 * Mode Hooks::              Hooks run at the end of major mode functions.
776 Minor Modes
778 * Minor Mode Conventions::  Tips for writing a minor mode.
779 * Keymaps and Minor Modes:: How a minor mode can have its own keymap.
780 * Defining Minor Modes::    A convenient facility for defining minor modes.
782 Mode Line Format
784 * Mode Line Basics::
785 * Mode Line Data::          The data structure that controls the mode line.
786 * Mode Line Variables::     Variables used in that data structure.
787 * %-Constructs::            Putting information into a mode line.
788 * Properties in Mode::      Using text properties in the mode line.
789 * Header Lines::            Like a mode line, but at the top.
790 * Emulating Mode Line::     Formatting text as the mode line would.
792 Font Lock Mode
794 * Font Lock Basics::        Overview of customizing Font Lock.
795 * Search-based Fontification::  Fontification based on regexps.
796 * Customizing Keywords::    Customizing search-based fontification.
797 * Other Font Lock Variables::   Additional customization facilities.
798 * Levels of Font Lock::     Each mode can define alternative levels
799                               so that the user can select more or less.
800 * Precalculated Fontification:: How Lisp programs that produce the buffer
801                                   contents can also specify how to fontify it.
802 * Faces for Font Lock::     Special faces specifically for Font Lock.
803 * Syntactic Font Lock::     Fontification based on syntax tables.
804 * Setting Syntax Properties::   Defining character syntax based on context
805                                   using the Font Lock mechanism.
806 * Multiline Font Lock::     How to coerce Font Lock into properly
807                               highlighting multiline constructs.
809 Multiline Font Lock Constructs
811 * Font Lock Multiline::     Marking multiline chunks with a text property
812 * Region to Fontify::       Controlling which region gets refontified
813                               after a buffer change.
815 Documentation
817 * Documentation Basics::    Good style for doc strings.
818                               Where to put them.  How Emacs stores them.
819 * Accessing Documentation:: How Lisp programs can access doc strings.
820 * Keys in Documentation::   Substituting current key bindings.
821 * Describing Characters::   Making printable descriptions of
822                               non-printing characters and key sequences.
823 * Help Functions::          Subroutines used by Emacs help facilities.
825 Files
827 * Visiting Files::          Reading files into Emacs buffers for editing.
828 * Saving Buffers::          Writing changed buffers back into files.
829 * Reading from Files::      Reading files into other buffers.
830 * Writing to Files::        Writing new files from parts of buffers.
831 * File Locks::              Locking and unlocking files, to prevent
832                               simultaneous editing by two people.
833 * Information about Files:: Testing existence, accessibility, size of files.
834 * Changing Files::          Renaming files, changing protection, etc.
835 * File Names::              Decomposing and expanding file names.
836 * Contents of Directories:: Getting a list of the files in a directory.
837 * Create/Delete Dirs::      Creating and Deleting Directories.
838 * Magic File Names::        Defining "magic" special handling
839                               for certain file names.
840 * Format Conversion::       Conversion to and from various file formats.
842 Visiting Files
844 * Visiting Functions::      The usual interface functions for visiting.
845 * Subroutines of Visiting:: Lower-level subroutines that they use.
847 Information about Files
849 * Testing Accessibility::   Is a given file readable?  Writable?
850 * Kinds of Files::          Is it a directory?  A symbolic link?
851 * Truenames::               Eliminating symbolic links from a file name.
852 * File Attributes::         How large is it?  Any other names?  Etc.
853 * Locating Files::          How to find a file in standard places.
855 File Names
857 * File Name Components::    The directory part of a file name, and the rest.
858 * Relative File Names::     Some file names are relative to a
859                               current directory.
860 * Directory Names::         A directory's name as a directory
861                               is different from its name as a file.
862 * File Name Expansion::     Converting relative file names to absolute ones.
863 * Unique File Names::       Generating names for temporary files.
864 * File Name Completion::    Finding the completions for a given file name.
865 * Standard File Names::     If your package uses a fixed file name,
866                               how to handle various operating systems simply.
868 Backups and Auto-Saving
870 * Backup Files::            How backup files are made; how their names
871                               are chosen.
872 * Auto-Saving::             How auto-save files are made; how their
873                               names are chosen.
874 * Reverting::               @code{revert-buffer}, and how to customize
875                               what it does.
877 Backup Files
879 * Making Backups::          How Emacs makes backup files, and when.
880 * Rename or Copy::          Two alternatives: renaming the old file
881                               or copying it.
882 * Numbered Backups::        Keeping multiple backups for each source file.
883 * Backup Names::            How backup file names are computed; customization.
885 Buffers
887 * Buffer Basics::           What is a buffer?
888 * Current Buffer::          Designating a buffer as current
889                               so primitives will access its contents.
890 * Buffer Names::            Accessing and changing buffer names.
891 * Buffer File Name::        The buffer file name indicates which file
892                               is visited.
893 * Buffer Modification::     A buffer is @dfn{modified} if it needs to be saved.
894 * Modification Time::       Determining whether the visited file was changed
895                               ``behind Emacs's back''.
896 * Read Only Buffers::       Modifying text is not allowed in a
897                               read-only buffer.
898 * The Buffer List::         How to look at all the existing buffers.
899 * Creating Buffers::        Functions that create buffers.
900 * Killing Buffers::         Buffers exist until explicitly killed.
901 * Indirect Buffers::        An indirect buffer shares text with some
902                               other buffer.
903 * Swapping Text::           Swapping text between two buffers.
904 * Buffer Gap::              The gap in the buffer.
906 Windows
908 * Basic Windows::           Basic information on using windows.
909 * Splitting Windows::       Splitting one window into two windows.
910 * Deleting Windows::        Deleting a window gives its space to other windows.
911 * Selecting Windows::       The selected window is the one that you edit in.
912 * Cyclic Window Ordering::  Moving around the existing windows.
913 * Buffers and Windows::     Each window displays the contents of a buffer.
914 * Displaying Buffers::      Higher-level functions for displaying a buffer
915                               and choosing a window for it.
916 * Choosing Window::         How to choose a window for displaying a buffer.
917 * Dedicated Windows::       How to avoid displaying another buffer in
918                               a specific window.          
919 * Window Point::            Each window has its own location of point.
920 * Window Start and End::    Buffer positions indicating which text is
921                               on-screen in a window.
922 * Textual Scrolling::       Moving text up and down through the window.
923 * Vertical Scrolling::      Moving the contents up and down on the window.
924 * Horizontal Scrolling::    Moving the contents sideways on the window.
925 * Size of Window::          Accessing the size of a window.
926 * Resizing Windows::        Changing the size of a window.
927 * Coordinates and Windows:: Converting coordinates to windows.
928 * Window Tree::             The layout and sizes of all windows in a frame.
929 * Window Configurations::   Saving and restoring the state of the screen.
930 * Window Parameters::       Associating additional information with windows.
931 * Window Hooks::            Hooks for scrolling, window size changes,
932                               redisplay going past a certain point,
933                               or window configuration changes.
935 Frames
937 * Creating Frames::         Creating additional frames.
938 * Multiple Displays::       Creating frames on other displays.
939 * Frame Parameters::        Controlling frame size, position, font, etc.
940 * Frame Titles::            Automatic updating of frame titles.
941 * Deleting Frames::         Frames last until explicitly deleted.
942 * Finding All Frames::      How to examine all existing frames.
943 * Frames and Windows::      A frame contains windows;
944                               display of text always works through windows.
945 * Minibuffers and Frames::  How a frame finds the minibuffer to use.
946 * Input Focus::             Specifying the selected frame.
947 * Visibility of Frames::    Frames may be visible or invisible, or icons.
948 * Raising and Lowering::    Raising a frame makes it hide other windows;
949                               lowering it puts it underneath the others.
950 * Frame Configurations::    Saving the state of all frames.
951 * Mouse Tracking::          Getting events that say when the mouse moves.
952 * Mouse Position::          Asking where the mouse is, or moving it.
953 * Pop-Up Menus::            Displaying a menu for the user to select from.
954 * Dialog Boxes::            Displaying a box to ask yes or no.
955 * Pointer Shape::           Specifying the shape of the mouse pointer.
956 * Window System Selections::Transferring text to and from other windows.
957 * Drag and Drop::               Internals of Drag-and-Drop implementation.
958 * Color Names::             Getting the definitions of color names.
959 * Text Terminal Colors::    Defining colors for text-only terminals.
960 * Resources::               Getting resource values from the server.
961 * Display Feature Testing:: Determining the features of a terminal.
963 Frame Parameters
965 * Parameter Access::        How to change a frame's parameters.
966 * Initial Parameters::      Specifying frame parameters when you make a frame.
967 * Window Frame Parameters:: List of frame parameters for window systems.
968 * Size and Position::       Changing the size and position of a frame.
969 * Geometry::                Parsing geometry specifications.
971 Window Frame Parameters
973 * Basic Parameters::        Parameters that are fundamental.
974 * Position Parameters::     The position of the frame on the screen.
975 * Size Parameters::         Frame's size.
976 * Layout Parameters::       Size of parts of the frame, and
977                               enabling or disabling some parts.
978 * Buffer Parameters::       Which buffers have been or should be shown.
979 * Management Parameters::   Communicating with the window manager.
980 * Cursor Parameters::       Controlling the cursor appearance.
981 * Color Parameters::        Colors of various parts of the frame.
983 Positions
985 * Point::                   The special position where editing takes place.
986 * Motion::                  Changing point.
987 * Excursions::              Temporary motion and buffer changes.
988 * Narrowing::               Restricting editing to a portion of the buffer.
990 Motion
992 * Character Motion::        Moving in terms of characters.
993 * Word Motion::             Moving in terms of words.
994 * Buffer End Motion::       Moving to the beginning or end of the buffer.
995 * Text Lines::              Moving in terms of lines of text.
996 * Screen Lines::            Moving in terms of lines as displayed.
997 * List Motion::             Moving by parsing lists and sexps.
998 * Skipping Characters::     Skipping characters belonging to a certain set.
1000 Markers
1002 * Overview of Markers::     The components of a marker, and how it relocates.
1003 * Predicates on Markers::   Testing whether an object is a marker.
1004 * Creating Markers::        Making empty markers or markers at certain places.
1005 * Information from Markers::Finding the marker's buffer or character
1006                               position.
1007 * Marker Insertion Types::  Two ways a marker can relocate when you
1008                               insert where it points.
1009 * Moving Markers::          Moving the marker to a new buffer or position.
1010 * The Mark::                How "the mark" is implemented with a marker.
1011 * The Region::              How to access "the region".
1013 Text
1015 * Near Point::              Examining text in the vicinity of point.
1016 * Buffer Contents::         Examining text in a general fashion.
1017 * Comparing Text::          Comparing substrings of buffers.
1018 * Insertion::               Adding new text to a buffer.
1019 * Commands for Insertion::  User-level commands to insert text.
1020 * Deletion::                Removing text from a buffer.
1021 * User-Level Deletion::     User-level commands to delete text.
1022 * The Kill Ring::           Where removed text sometimes is saved for
1023                               later use.
1024 * Undo::                    Undoing changes to the text of a buffer.
1025 * Maintaining Undo::        How to enable and disable undo information.
1026                               How to control how much information is kept.
1027 * Filling::                 Functions for explicit filling.
1028 * Margins::                 How to specify margins for filling commands.
1029 * Adaptive Fill::           Adaptive Fill mode chooses a fill prefix
1030                               from context.
1031 * Auto Filling::            How auto-fill mode is implemented to break lines.
1032 * Sorting::                 Functions for sorting parts of the buffer.
1033 * Columns::                 Computing horizontal positions, and using them.
1034 * Indentation::             Functions to insert or adjust indentation.
1035 * Case Changes::            Case conversion of parts of the buffer.
1036 * Text Properties::         Assigning Lisp property lists to text characters.
1037 * Substitution::            Replacing a given character wherever it appears.
1038 * Transposition::           Swapping two portions of a buffer.
1039 * Registers::               How registers are implemented.  Accessing
1040                               the text or position stored in a register.
1041 * Base 64::                 Conversion to or from base 64 encoding.
1042 * MD5 Checksum::            Compute the MD5 "message digest"/"checksum".
1043 * Atomic Changes::          Installing several buffer changes "atomically".
1044 * Change Hooks::            Supplying functions to be run when text is changed.
1046 The Kill Ring
1048 * Kill Ring Concepts::      What text looks like in the kill ring.
1049 * Kill Functions::          Functions that kill text.
1050 * Yanking::                 How yanking is done.
1051 * Yank Commands::           Commands that access the kill ring.
1052 * Low-Level Kill Ring::     Functions and variables for kill ring access.
1053 * Internals of Kill Ring::  Variables that hold kill-ring data.
1055 Indentation
1057 * Primitive Indent::        Functions used to count and insert indentation.
1058 * Mode-Specific Indent::    Customize indentation for different modes.
1059 * Region Indent::           Indent all the lines in a region.
1060 * Relative Indent::         Indent the current line based on previous lines.
1061 * Indent Tabs::             Adjustable, typewriter-like tab stops.
1062 * Motion by Indent::        Move to first non-blank character.
1064 Text Properties
1066 * Examining Properties::    Looking at the properties of one character.
1067 * Changing Properties::     Setting the properties of a range of text.
1068 * Property Search::         Searching for where a property changes value.
1069 * Special Properties::      Particular properties with special meanings.
1070 * Format Properties::       Properties for representing formatting of text.
1071 * Sticky Properties::       How inserted text gets properties from
1072                               neighboring text.
1073 * Lazy Properties::         Computing text properties in a lazy fashion
1074                               only when text is examined.
1075 * Clickable Text::          Using text properties to make regions of text
1076                               do something when you click on them.
1077 * Links and Mouse-1::       How to make @key{Mouse-1} follow a link.
1078 * Fields::                  The @code{field} property defines
1079                               fields within the buffer.
1080 * Not Intervals::           Why text properties do not use
1081                               Lisp-visible text intervals.
1083 Non-ASCII Characters
1085 * Text Representations::    Unibyte and multibyte representations
1086 * Converting Representations::  Converting unibyte to multibyte and vice versa.
1087 * Selecting a Representation::  Treating a byte sequence as unibyte or multi.
1088 * Character Codes::         How unibyte and multibyte relate to
1089                                 codes of individual characters.
1090 * Character Sets::          The space of possible character codes
1091                                 is divided into various character sets.
1092 * Chars and Bytes::         More information about multibyte encodings.
1093 * Splitting Characters::    Converting a character to its byte sequence.
1094 * Scanning Charsets::       Which character sets are used in a buffer?
1095 * Translation of Characters::   Translation tables are used for conversion.
1096 * Coding Systems::          Coding systems are conversions for saving files.
1097 * Input Methods::           Input methods allow users to enter various
1098                                 non-ASCII characters without special keyboards.
1099 * Locales::                 Interacting with the POSIX locale.
1101 Coding Systems
1103 * Coding System Basics::    Basic concepts.
1104 * Encoding and I/O::        How file I/O functions handle coding systems.
1105 * Lisp and Coding Systems:: Functions to operate on coding system names.
1106 * User-Chosen Coding Systems::  Asking the user to choose a coding system.
1107 * Default Coding Systems::  Controlling the default choices.
1108 * Specifying Coding Systems::   Requesting a particular coding system
1109                                     for a single file operation.
1110 * Explicit Encoding::       Encoding or decoding text without doing I/O.
1111 * Terminal I/O Encoding::   Use of encoding for terminal I/O.
1112 * MS-DOS File Types::       How DOS "text" and "binary" files
1113                                 relate to coding systems.
1115 Searching and Matching
1117 * String Search::           Search for an exact match.
1118 * Searching and Case::      Case-independent or case-significant searching.
1119 * Regular Expressions::     Describing classes of strings.
1120 * Regexp Search::           Searching for a match for a regexp.
1121 * POSIX Regexps::           Searching POSIX-style for the longest match.
1122 * Match Data::              Finding out which part of the text matched,
1123                               after a string or regexp search.
1124 * Search and Replace::      Commands that loop, searching and replacing.
1125 * Standard Regexps::        Useful regexps for finding sentences, pages,...
1127 Regular Expressions
1129 * Syntax of Regexps::       Rules for writing regular expressions.
1130 * Regexp Example::          Illustrates regular expression syntax.
1131 * Regexp Functions::        Functions for operating on regular expressions.
1133 Syntax of Regular Expressions
1135 * Regexp Special::          Special characters in regular expressions.
1136 * Char Classes::            Character classes used in regular expressions.
1137 * Regexp Backslash::        Backslash-sequences in regular expressions.
1139 The Match Data
1141 * Replacing Match::         Replacing a substring that was matched.
1142 * Simple Match Data::       Accessing single items of match data,
1143                               such as where a particular subexpression started.
1144 * Entire Match Data::       Accessing the entire match data at once, as a list.
1145 * Saving Match Data::       Saving and restoring the match data.
1147 Syntax Tables
1149 * Syntax Basics::           Basic concepts of syntax tables.
1150 * Syntax Descriptors::      How characters are classified.
1151 * Syntax Table Functions::  How to create, examine and alter syntax tables.
1152 * Syntax Properties::       Overriding syntax with text properties.
1153 * Motion and Syntax::       Moving over characters with certain syntaxes.
1154 * Parsing Expressions::     Parsing balanced expressions
1155                               using the syntax table.
1156 * Standard Syntax Tables::  Syntax tables used by various major modes.
1157 * Syntax Table Internals::  How syntax table information is stored.
1158 * Categories::              Another way of classifying character syntax.
1160 Syntax Descriptors
1162 * Syntax Class Table::      Table of syntax classes.
1163 * Syntax Flags::            Additional flags each character can have.
1165 Parsing Expressions
1167 * Motion via Parsing::      Motion functions that work by parsing.
1168 * Position Parse::          Determining the syntactic state of a position.
1169 * Parser State::            How Emacs represents a syntactic state.
1170 * Low-Level Parsing::       Parsing across a specified region.
1171 * Control Parsing::         Parameters that affect parsing.
1173 Abbrevs And Abbrev Expansion
1175 * Abbrev Mode::             Setting up Emacs for abbreviation.
1176 * Abbrev Tables::           Creating and working with abbrev tables.
1177 * Defining Abbrevs::        Specifying abbreviations and their expansions.
1178 * Abbrev Files::            Saving abbrevs in files.
1179 * Abbrev Expansion::        Controlling expansion; expansion subroutines.
1180 * Standard Abbrev Tables::  Abbrev tables used by various major modes.
1182 Processes
1184 * Subprocess Creation::     Functions that start subprocesses.
1185 * Shell Arguments::         Quoting an argument to pass it to a shell.
1186 * Synchronous Processes::   Details of using synchronous subprocesses.
1187 * Asynchronous Processes::  Starting up an asynchronous subprocess.
1188 * Deleting Processes::      Eliminating an asynchronous subprocess.
1189 * Process Information::     Accessing run-status and other attributes.
1190 * Input to Processes::      Sending input to an asynchronous subprocess.
1191 * Signals to Processes::    Stopping, continuing or interrupting
1192                               an asynchronous subprocess.
1193 * Output from Processes::   Collecting output from an asynchronous subprocess.
1194 * Sentinels::               Sentinels run when process run-status changes.
1195 * Query Before Exit::       Whether to query if exiting will kill a process.
1196 * System Processes::        Accessing other processes running on your system.
1197 * Transaction Queues::      Transaction-based communication with subprocesses.
1198 * Network::                 Opening network connections.
1199 * Network Servers::         Network servers let Emacs accept net connections.
1200 * Datagrams::               UDP network connections.
1201 * Low-Level Network::       Lower-level but more general function
1202                               to create connections and servers.
1203 * Misc Network::            Additional relevant functions for network connections.
1204 * Serial Ports::            Communicating with serial ports.
1205 * Byte Packing::            Using bindat to pack and unpack binary data.
1207 Receiving Output from Processes
1209 * Process Buffers::         If no filter, output is put in a buffer.
1210 * Filter Functions::        Filter functions accept output from the process.
1211 * Decoding Output::         Filters can get unibyte or multibyte strings.
1212 * Accepting Output::        How to wait until process output arrives.
1214 Low-Level Network Access
1216 * Proc: Network Processes.  Using @code{make-network-process}.
1217 * Options: Network Options.  Further control over network connections.
1218 * Features: Network Feature Testing.
1219                             Determining which network features work on
1220                               the machine you are using.
1222 Packing and Unpacking Byte Arrays
1224 * Bindat Spec::             Describing data layout.
1225 * Bindat Functions::        Doing the unpacking and packing.
1226 * Bindat Examples::         Samples of what bindat.el can do for you!
1228 Emacs Display
1230 * Refresh Screen::          Clearing the screen and redrawing everything on it.
1231 * Forcing Redisplay::       Forcing redisplay.
1232 * Truncation::              Folding or wrapping long text lines.
1233 * The Echo Area::           Displaying messages at the bottom of the screen.
1234 * Warnings::                Displaying warning messages for the user.
1235 * Invisible Text::          Hiding part of the buffer text.
1236 * Selective Display::       Hiding part of the buffer text (the old way).
1237 * Temporary Displays::      Displays that go away automatically.
1238 * Overlays::                Use overlays to highlight parts of the buffer.
1239 * Width::                   How wide a character or string is on the screen.
1240 * Line Height::             Controlling the height of lines.
1241 * Faces::                   A face defines a graphics style
1242                               for text characters: font, colors, etc.
1243 * Fringes::                 Controlling window fringes.
1244 * Scroll Bars::             Controlling vertical scroll bars.
1245 * Display Property::        Enabling special display features.
1246 * Images::                  Displaying images in Emacs buffers.
1247 * Buttons::                 Adding clickable buttons to Emacs buffers.
1248 * Abstract Display::        Emacs' Widget for Object Collections.
1249 * Blinking::                How Emacs shows the matching open parenthesis.
1250 * Usual Display::           The usual conventions for displaying nonprinting chars.
1251 * Display Tables::          How to specify other conventions.
1252 * Beeping::                 Audible signal to the user.
1253 * Window Systems::          Which window system is being used.
1255 The Echo Area
1257 * Displaying Messages::     Explicitly displaying text in the echo area.
1258 * Progress::                Informing user about progress of a long operation.
1259 * Logging Messages::        Echo area messages are logged for the user.
1260 * Echo Area Customization:: Controlling the echo area.
1262 Reporting Warnings
1264 * Warning Basics::          Warnings concepts and functions to report them.
1265 * Warning Variables::       Variables programs bind to customize their warnings.
1266 * Warning Options::         Variables users set to control display of warnings.
1268 Overlays
1270 * Managing Overlays::       Creating and moving overlays.
1271 * Overlay Properties::      How to read and set properties.
1272                             What properties do to the screen display.
1273 * Finding Overlays::        Searching for overlays.
1275 Faces
1277 * Defining Faces::          How to define a face with @code{defface}.
1278 * Face Attributes::         What is in a face?
1279 * Attribute Functions::     Functions to examine and set face attributes.
1280 * Displaying Faces::        How Emacs combines the faces specified for
1281                               a character.
1282 * Font Selection::          Finding the best available font for a face.
1283 * Face Functions::          How to define and examine faces.
1284 * Auto Faces::              Hook for automatic face assignment.
1285 * Font Lookup::             Looking up the names of available fonts
1286                               and information about them.
1287 * Fontsets::                A fontset is a collection of fonts
1288                               that handle a range of character sets.
1290 Fringes
1292 * Fringe Size/Pos::         Specifying where to put the window fringes.
1293 * Fringe Indicators::       Displaying indicator icons in the window fringes.
1294 * Fringe Cursors::          Displaying cursors in the right fringe.
1295 * Fringe Bitmaps::          Specifying bitmaps for fringe indicators.
1296 * Customizing Bitmaps::     Specifying your own bitmaps to use in the fringes.
1297 * Overlay Arrow::           Display of an arrow to indicate position.
1299 The @code{display} Property
1301 * Specified Space::         Displaying one space with a specified width.
1302 * Pixel Specification::     Specifying space width or height in pixels.
1303 * Other Display Specs::     Displaying an image; magnifying text; moving it
1304                               up or down on the page; adjusting the width
1305                               of spaces within text.
1306 * Display Margins::         Displaying text or images to the side of
1307                               the main text.
1309 Images
1311 * Image Descriptors::       How to specify an image for use in @code{:display}.
1312 * XBM Images::              Special features for XBM format.
1313 * XPM Images::              Special features for XPM format.
1314 * GIF Images::              Special features for GIF format.
1315 * PostScript Images::       Special features for PostScript format.
1316 * Other Image Types::       Various other formats are supported.
1317 * Defining Images::         Convenient ways to define an image for later use.
1318 * Showing Images::          Convenient ways to display an image once
1319                               it is defined.
1320 * Image Cache::             Internal mechanisms of image display.
1322 Buttons
1324 * Button Properties::       Button properties with special meanings.
1325 * Button Types::            Defining common properties for classes of buttons.
1326 * Making Buttons::          Adding buttons to Emacs buffers.
1327 * Manipulating Buttons::    Getting and setting properties of buttons.
1328 * Button Buffer Commands::  Buffer-wide commands and bindings for buttons.
1330 Abstract Display
1332 * Abstract Display Functions::  Functions in the Ewoc package.
1333 * Abstract Display Example::    Example of using Ewoc.
1335 Display Tables
1337 * Display Table Format::    What a display table consists of.
1338 * Active Display Table::    How Emacs selects a display table to use.
1339 * Glyphs::                  How to define a glyph, and what glyphs mean.
1341 Operating System Interface
1343 * Starting Up::             Customizing Emacs start-up processing.
1344 * Getting Out::             How exiting works (permanent or temporary).
1345 * System Environment::      Distinguish the name and kind of system.
1346 * User Identification::     Finding the name and user id of the user.
1347 * Time of Day::             Getting the current time.
1348 * Time Conversion::         Converting a time from numeric form to a string, or
1349                               to calendrical data (or vice versa).
1350 * Time Parsing::            Converting a time from numeric form to text
1351                               and vice versa.
1352 * Processor Run Time::      Getting the run time used by Emacs.
1353 * Time Calculations::       Adding, subtracting, comparing times, etc.
1354 * Timers::                  Setting a timer to call a function at a certain time.
1355 * Idle Timers::             Setting a timer to call a function when Emacs has
1356                               been idle for a certain length of time.
1357 * Terminal Input::          Accessing and recording terminal input.
1358 * Terminal Output::         Controlling and recording terminal output.
1359 * Sound Output::            Playing sounds on the computer's speaker.
1360 * X11 Keysyms::             Operating on key symbols for X Windows
1361 * Batch Mode::              Running Emacs without terminal interaction.
1362 * Session Management::      Saving and restoring state with X Session Management.
1364 Starting Up Emacs
1366 * Startup Summary::         Sequence of actions Emacs performs at start-up.
1367 * Init File::               Details on reading the init file (@file{.emacs}).
1368 * Terminal-Specific::       How the terminal-specific Lisp file is read.
1369 * Command-Line Arguments::  How command-line arguments are processed,
1370                               and how you can customize them.
1372 Getting Out of Emacs
1374 * Killing Emacs::           Exiting Emacs irreversibly.
1375 * Suspending Emacs::        Exiting Emacs reversibly.
1377 Terminal Input
1379 * Input Modes::             Options for how input is processed.
1380 * Recording Input::         Saving histories of recent or all input events.
1382 Tips and Conventions
1384 * Coding Conventions::      Conventions for clean and robust programs.
1385 * Key Binding Conventions:: Which keys should be bound by which programs.
1386 * Programming Tips::        Making Emacs code fit smoothly in Emacs.
1387 * Compilation Tips::        Making compiled code run fast.
1388 * Warning Tips::            Turning off compiler warnings.
1389 * Documentation Tips::      Writing readable documentation strings.
1390 * Comment Tips::            Conventions for writing comments.
1391 * Library Headers::         Standard headers for library packages.
1393 GNU Emacs Internals
1395 * Building Emacs::          How the dumped Emacs is made.
1396 * Pure Storage::            A kludge to make preloaded Lisp functions sharable.
1397 * Garbage Collection::      Reclaiming space for Lisp objects no longer used.
1398 * Memory Usage::            Info about total size of Lisp objects made so far.
1399 * Writing Emacs Primitives::  Writing C code for Emacs.
1400 * Object Internals::        Data formats of buffers, windows, processes.
1402 Object Internals
1404 * Buffer Internals::        Components of a buffer structure.
1405 * Window Internals::        Components of a window structure.
1406 * Process Internals::       Components of a process structure.
1407 @end detailmenu
1408 @end menu
1410 @include intro.texi
1411 @include objects.texi
1412 @include numbers.texi
1413 @include strings.texi
1415 @include lists.texi
1416 @include sequences.texi
1417 @include hash.texi
1418 @include symbols.texi
1419 @include eval.texi
1421 @include control.texi
1422 @include variables.texi
1423 @include functions.texi
1424 @include macros.texi
1426 @include customize.texi
1427 @include loading.texi
1428 @include compile.texi
1429 @include advice.texi
1431 @include debugging.texi
1432 @include streams.texi
1433 @include minibuf.texi
1434 @include commands.texi
1436 @include keymaps.texi
1437 @include modes.texi
1438 @include help.texi
1439 @include files.texi
1441 @include backups.texi
1442 @include buffers.texi
1443 @include windows.texi
1444 @include frames.texi
1446 @include positions.texi
1447 @include markers.texi
1448 @include text.texi
1449 @include nonascii.texi
1451 @include searching.texi
1452 @include syntax.texi
1453 @include abbrevs.texi
1454 @include processes.texi
1456 @include display.texi
1457 @include os.texi
1459 @c MOVE to Emacs Manual:  include misc-modes.texi
1461 @c appendices
1463 @c  REMOVE this:  include non-hacker.texi
1465 @include anti.texi
1466 @include doclicense.texi
1467 @include gpl.texi
1468 @include tips.texi
1469 @include internals.texi
1470 @include errors.texi
1471 @include locals.texi
1472 @include maps.texi
1473 @include hooks.texi
1475 @include index.texi
1477 @ignore
1478 @node New Symbols, , Index, Top
1479 @unnumbered New Symbols Since the Previous Edition
1481 @printindex tp
1482 @end ignore
1484 @bye
1487 These words prevent "local variables" above from confusing Emacs.
1489 @ignore
1490    arch-tag: f7e9a219-a0e1-4776-b631-08eaa1d49b34
1491 @end ignore