Make a start on a Profiling section in the lispref
[emacs.git] / doc / lispref / elisp.texi
blobcb00b5e9889a5af217932c45223f16701aee7d7c
1 \input texinfo  @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename elisp
5 @ifset VOL1
6 @set volflag
7 @set voltitle Volume 1
8 @end ifset
10 @ifset VOL2
11 @set volflag
12 @set voltitle Volume 2
13 @end ifset
15 @ifset volflag
16 @settitle GNU Emacs Lisp Reference Manual: @value{voltitle}
17 @end ifset
18 @ifclear volflag
19 @settitle GNU Emacs Lisp Reference Manual
20 @end ifclear
22 @c %**end of header
24 @c See two-volume-cross-refs.txt.
25 @tex
26 @ifset VOL1
27 \message{Formatting for two volume edition...Volume 1...}
29 % Read special toc file, set up in two-volume.make.
30 \gdef\tocreadfilename{elisp1-toc-ready.toc}
32 % Don't make outlines, they're not needed and \readdatafile can't pay
33 % attention to the special definition above.
34 \global\let\pdfmakeoutlines=\relax
36 % Start volume 1 chapter numbering at 1; this must be listed as chapno0.
37 \global\chapno=0
38 @end ifset
39 @ifset VOL2
40 \message{Formatting for two volume edition...Volume 2...}
42 % Read special toc file, set up in two-volume.make.
43 \gdef\tocreadfilename{elisp2-toc-ready.toc}
45 % Don't make outlines, they're not needed and \readdatafile can't pay
46 % attention to the special definition above.
47 \global\let\pdfmakeoutlines=\relax
49 % Start volume 2 chapter numbering at 27; this must be listed as chapno26
50 \global\chapno=26
51 @end ifset
52 @end tex
55 @c Version of the manual and of Emacs.
56 @c (See comments for EDITION in emacs.texi)
57 @set VERSION  3.1
58 @include emacsver.texi
59 @set DATE May 2012
61 @c in general, keep the following line commented out, unless doing a
62 @c copy of this manual that will be published.  The manual should go
63 @c onto the distribution in the full, 8.5 x 11" size.
64 @c @set smallbook
66 @ifset volflag
67 @smallbook
68 @end ifset
70 @ifset smallbook
71 @smallbook
72 @end ifset
74 @c per rms and peterb, use 10pt fonts for the main text, mostly to
75 @c save on paper cost.
76 @c Do this inside @tex for now, so current makeinfo does not complain.
77 @tex
78 @ifset smallbook
79 @fonttextsize 10
80 @end ifset
81 \global\hbadness=6666 % don't worry about not-too-underfull boxes
82 @end tex
84 @c Combine indices.
85 @synindex cp fn
86 @syncodeindex vr fn
87 @syncodeindex ky fn
88 @syncodeindex pg fn
89 @c We use the "type index" to index new functions and variables.
90 @c @syncodeindex tp fn
92 @copying
93 @iftex
94 This is edition @value{VERSION} of the @cite{GNU Emacs Lisp Reference Manual},@*
95 @end iftex
96 @ifnottex
97 This is the @cite{GNU Emacs Lisp Reference Manual}
98 @end ifnottex
99 corresponding to Emacs version @value{EMACSVER}.
101 Copyright @copyright{} 1990-1996, 1998-2012 Free Software Foundation, Inc.
103 @quotation
104 Permission is granted to copy, distribute and/or modify this document
105 under the terms of the GNU Free Documentation License, Version 1.3 or
106 any later version published by the Free Software Foundation; with the
107 Invariant Sections being ``GNU General Public License,'' with the
108 Front-Cover texts being ``A GNU Manual,'' and with the Back-Cover
109 Texts as in (a) below.  A copy of the license is included in the
110 section entitled ``GNU Free Documentation License.''
112 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
113 modify this GNU manual.  Buying copies from the FSF supports it in
114 developing GNU and promoting software freedom.''
115 @end quotation
116 @end copying
118 @documentencoding ISO-8859-1
120 @dircategory GNU Emacs Lisp
121 @direntry
122 * Elisp: (elisp).       The Emacs Lisp Reference Manual.
123 @end direntry
125 @titlepage
126 @title GNU Emacs Lisp Reference Manual
127 @ifset volflag
128 @subtitle @value{voltitle}
129 @end ifset
130 @subtitle For Emacs Version @value{EMACSVER}
131 @subtitle Revision @value{VERSION}, @value{DATE}
133 @author by Bil Lewis, Dan LaLiberte, Richard Stallman,
134 @author the GNU Manual Group, et al.
135 @page
136 @vskip 0pt plus 1filll
137 @insertcopying
139 @sp 2
140 Published by the Free Software Foundation @*
141 51 Franklin St, Fifth Floor @*
142 Boston, MA 02110-1301 @*
143 USA @*
144 ISBN 1-882114-74-4
146 @sp 2
147 Cover art by Etienne Suvasa.
148 @end titlepage
151 @c Print the tables of contents
152 @summarycontents
153 @contents
156 @ifnottex
157 @node Top
158 @top Emacs Lisp
160 @insertcopying
161 @end ifnottex
163 @menu
164 * Introduction::            Introduction and conventions used.
166 * Lisp Data Types::         Data types of objects in Emacs Lisp.
167 * Numbers::                 Numbers and arithmetic functions.
168 * Strings and Characters::  Strings, and functions that work on them.
169 * Lists::                   Lists, cons cells, and related functions.
170 * Sequences Arrays Vectors::  Lists, strings and vectors are called sequences.
171                                 Certain functions act on any kind of sequence.
172                                 The description of vectors is here as well.
173 * Hash Tables::             Very fast lookup-tables.
174 * Symbols::                 Symbols represent names, uniquely.
176 * Evaluation::              How Lisp expressions are evaluated.
177 * Control Structures::      Conditionals, loops, nonlocal exits.
178 * Variables::               Using symbols in programs to stand for values.
179 * Functions::               A function is a Lisp program
180                               that can be invoked from other functions.
181 * Macros::                  Macros are a way to extend the Lisp language.
182 * Customization::           Making variables and faces customizable.
184 * Loading::                 Reading files of Lisp code into Lisp.
185 * Byte Compilation::        Compilation makes programs run faster.
186 * Advising Functions::      Adding to the definition of a function.
187 * Debugging::               Tools and tips for debugging Lisp programs.
189 * Read and Print::          Converting Lisp objects to text and back.
190 * Minibuffers::             Using the minibuffer to read input.
191 * Command Loop::            How the editor command loop works,
192                               and how you can call its subroutines.
193 * Keymaps::                 Defining the bindings from keys to commands.
194 * Modes::                   Defining major and minor modes.
195 * Documentation::           Writing and using documentation strings.
197 * Files::                   Accessing files.
198 * Backups and Auto-Saving:: Controlling how backups and auto-save
199                               files are made.
200 * Buffers::                 Creating and using buffer objects.
201 * Windows::                 Manipulating windows and displaying buffers.
202 * Frames::                  Making multiple system-level windows.
203 * Positions::               Buffer positions and motion functions.
204 * Markers::                 Markers represent positions and update
205                               automatically when the text is changed.
207 * Text::                    Examining and changing text in buffers.
208 * Non-ASCII Characters::    Non-ASCII text in buffers and strings.
209 * Searching and Matching::  Searching buffers for strings or regexps.
210 * Syntax Tables::           The syntax table controls word and list parsing.
211 * Abbrevs::                 How Abbrev mode works, and its data structures.
213 * Processes::               Running and communicating with subprocesses.
214 * Display::                 Features for controlling the screen display.
215 * System Interface::        Getting the user id, system type, environment
216                               variables, and other such things.
218 * Packaging::               Preparing Lisp code for distribution.
220 Appendices
222 * Antinews::                Info for users downgrading to Emacs 23.
223 * GNU Free Documentation License:: The license for this documentation.
224 * GPL::                     Conditions for copying and changing GNU Emacs.
225 * Tips::                    Advice and coding conventions for Emacs Lisp.
226 * GNU Emacs Internals::     Building and dumping Emacs;
227                               internal data structures.
228 * Standard Errors::         List of some standard error symbols.
229 * Standard Keymaps::        List of some standard keymaps.
230 * Standard Hooks::          List of some standard hook variables.
232 * Index::                   Index including concepts, functions, variables,
233                               and other terms.
235 @ignore
236 * New Symbols::             New functions and variables in Emacs @value{EMACSVER}.
237 @end ignore
239 @c Do NOT modify the following 3 lines!  They must have this form to
240 @c be correctly identified by `texinfo-multiple-files-update'.  In
241 @c particular, the detailed menu header line MUST be identical to the
242 @c value of `texinfo-master-menu-header'.  See texnfo-upd.el.
244 @detailmenu
245  --- The Detailed Node Listing ---
246  ---------------------------------
248 Here are other nodes that are subnodes of those already listed,
249 mentioned here so you can get to them in one step:
251 Introduction
253 * Caveats::                 Flaws and a request for help.
254 * Lisp History::            Emacs Lisp is descended from Maclisp.
255 * Conventions::             How the manual is formatted.
256 * Version Info::            Which Emacs version is running?
257 * Acknowledgments::         The authors, editors, and sponsors of this manual.
259 Conventions
261 * Some Terms::              Explanation of terms we use in this manual.
262 * nil and t::               How the symbols @code{nil} and @code{t} are used.
263 * Evaluation Notation::     The format we use for examples of evaluation.
264 * Printing Notation::       The format we use when examples print text.
265 * Error Messages::          The format we use for examples of errors.
266 * Buffer Text Notation::    The format we use for buffer contents in examples.
267 * Format of Descriptions::  Notation for describing functions, variables, etc.
269 Format of Descriptions
271 * A Sample Function Description::  A description of an imaginary
272                                      function, @code{foo}.
273 * A Sample Variable Description::  A description of an imaginary
274                                      variable, @code{electric-future-map}.
276 Lisp Data Types
278 * Printed Representation::  How Lisp objects are represented as text.
279 * Comments::                Comments and their formatting conventions.
280 * Programming Types::       Types found in all Lisp systems.
281 * Editing Types::           Types specific to Emacs.
282 * Circular Objects::        Read syntax for circular structure.
283 * Type Predicates::         Tests related to types.
284 * Equality Predicates::     Tests of equality between any two objects.
286 Programming Types
288 * Integer Type::        Numbers without fractional parts.
289 * Floating Point Type:: Numbers with fractional parts and with a large range.
290 * Character Type::      The representation of letters, numbers and
291                           control characters.
292 * Symbol Type::         A multi-use object that refers to a function,
293                         variable, or property list, and has a unique identity.
294 * Sequence Type::       Both lists and arrays are classified as sequences.
295 * Cons Cell Type::      Cons cells, and lists (which are made from cons cells).
296 * Array Type::          Arrays include strings and vectors.
297 * String Type::         An (efficient) array of characters.
298 * Vector Type::         One-dimensional arrays.
299 * Char-Table Type::     One-dimensional sparse arrays indexed by characters.
300 * Bool-Vector Type::    One-dimensional arrays of @code{t} or @code{nil}.
301 * Hash Table Type::     Super-fast lookup tables.
302 * Function Type::       A piece of executable code you can call from elsewhere.
303 * Macro Type::          A method of expanding an expression into another
304                           expression, more fundamental but less pretty.
305 * Primitive Function Type::     A function written in C, callable from Lisp.
306 * Byte-Code Type::      A function written in Lisp, then compiled.
307 * Autoload Type::       A type used for automatically loading seldom-used
308                           functions.
310 Character Type
312 * Basic Char Syntax::       Syntax for regular characters.
313 * General Escape Syntax::   How to specify characters by their codes.
314 * Ctl-Char Syntax::         Syntax for control characters.
315 * Meta-Char Syntax::        Syntax for meta-characters.
316 * Other Char Bits::         Syntax for hyper-, super-, and alt-characters.
318 Cons Cell and List Types
320 * Box Diagrams::            Drawing pictures of lists.
321 * Dotted Pair Notation::    A general syntax for cons cells.
322 * Association List Type::   A specially constructed list.
324 String Type
326 * Syntax for Strings::      How to specify Lisp strings.
327 * Non-ASCII in Strings::    International characters in strings.
328 * Nonprinting Characters::  Literal unprintable characters in strings.
329 * Text Props and Strings::  Strings with text properties.
331 Editing Types
333 * Buffer Type::             The basic object of editing.
334 * Marker Type::             A position in a buffer.
335 * Window Type::             Buffers are displayed in windows.
336 * Frame Type::              Windows subdivide frames.
337 * Terminal Type::           A terminal device displays frames.
338 * Window Configuration Type::  Recording the way a frame is subdivided.
339 * Frame Configuration Type::   Recording the status of all frames.
340 * Process Type::            A subprocess of Emacs running on the underlying OS.
341 * Stream Type::             Receive or send characters.
342 * Keymap Type::             What function a keystroke invokes.
343 * Overlay Type::            How an overlay is represented.
344 * Font Type::               Fonts for displaying text.
346 Numbers
348 * Integer Basics::          Representation and range of integers.
349 * Float Basics::            Representation and range of floating point.
350 * Predicates on Numbers::   Testing for numbers.
351 * Comparison of Numbers::   Equality and inequality predicates.
352 * Numeric Conversions::     Converting float to integer and vice versa.
353 * Arithmetic Operations::   How to add, subtract, multiply and divide.
354 * Rounding Operations::     Explicitly rounding floating point numbers.
355 * Bitwise Operations::      Logical and, or, not, shifting.
356 * Math Functions::          Trig, exponential and logarithmic functions.
357 * Random Numbers::          Obtaining random integers, predictable or not.
359 Strings and Characters
361 * String Basics::           Basic properties of strings and characters.
362 * Predicates for Strings::  Testing whether an object is a string or char.
363 * Creating Strings::        Functions to allocate new strings.
364 * Modifying Strings::       Altering the contents of an existing string.
365 * Text Comparison::         Comparing characters or strings.
366 * String Conversion::       Converting to and from characters and strings.
367 * Formatting Strings::      @code{format}: Emacs's analogue of @code{printf}.
368 * Case Conversion::         Case conversion functions.
369 * Case Tables::             Customizing case conversion.
371 Lists
373 * Cons Cells::              How lists are made out of cons cells.
374 * List-related Predicates:: Is this object a list?  Comparing two lists.
375 * List Elements::           Extracting the pieces of a list.
376 * Building Lists::          Creating list structure.
377 * List Variables::          Modifying lists stored in variables.
378 * Modifying Lists::         Storing new pieces into an existing list.
379 * Sets And Lists::          A list can represent a finite mathematical set.
380 * Association Lists::       A list can represent a finite relation or mapping.
382 Modifying Existing List Structure
384 * Setcar::                  Replacing an element in a list.
385 * Setcdr::                  Replacing part of the list backbone.
386                               This can be used to remove or add elements.
387 * Rearrangement::           Reordering the elements in a list; combining lists.
389 Sequences, Arrays, and Vectors
391 * Sequence Functions::      Functions that accept any kind of sequence.
392 * Arrays::                  Characteristics of arrays in Emacs Lisp.
393 * Array Functions::         Functions specifically for arrays.
394 * Vectors::                 Special characteristics of Emacs Lisp vectors.
395 * Vector Functions::        Functions specifically for vectors.
396 * Char-Tables::             How to work with char-tables.
397 * Bool-Vectors::            How to work with bool-vectors.
398 * Rings::                   Managing a fixed-size ring of objects.
400 Hash Tables
402 * Creating Hash::           Functions to create hash tables.
403 * Hash Access::             Reading and writing the hash table contents.
404 * Defining Hash::           Defining new comparison methods.
405 * Other Hash::              Miscellaneous.
407 Symbols
409 * Symbol Components::       Symbols have names, values, function definitions
410                               and property lists.
411 * Definitions::             A definition says how a symbol will be used.
412 * Creating Symbols::        How symbols are kept unique.
413 * Property Lists::          Each symbol has a property list
414                               for recording miscellaneous information.
416 Property Lists
418 * Plists and Alists::       Comparison of the advantages of property
419                               lists and association lists.
420 * Symbol Plists::           Functions to access symbols' property lists.
421 * Other Plists::            Accessing property lists stored elsewhere.
423 Evaluation
425 * Intro Eval::              Evaluation in the scheme of things.
426 * Forms::                   How various sorts of objects are evaluated.
427 * Quoting::                 Avoiding evaluation (to put constants in
428                               the program).
429 * Backquote::               Easier construction of list structure.
430 * Eval::                    How to invoke the Lisp interpreter explicitly.
432 Kinds of Forms
434 * Self-Evaluating Forms::   Forms that evaluate to themselves.
435 * Symbol Forms::            Symbols evaluate as variables.
436 * Classifying Lists::       How to distinguish various sorts of list forms.
437 * Function Indirection::    When a symbol appears as the car of a list,
438                               we find the real function via the symbol.
439 * Function Forms::          Forms that call functions.
440 * Macro Forms::             Forms that call macros.
441 * Special Forms::           "Special forms" are idiosyncratic primitives,
442                               most of them extremely important.
443 * Autoloading::             Functions set up to load files
444                               containing their real definitions.
446 Control Structures
448 * Sequencing::              Evaluation in textual order.
449 * Conditionals::            @code{if}, @code{cond}, @code{when}, @code{unless}.
450 * Combining Conditions::    @code{and}, @code{or}, @code{not}.
451 * Iteration::               @code{while} loops.
452 * Nonlocal Exits::          Jumping out of a sequence.
454 Nonlocal Exits
456 * Catch and Throw::         Nonlocal exits for the program's own purposes.
457 * Examples of Catch::       Showing how such nonlocal exits can be written.
458 * Errors::                  How errors are signaled and handled.
459 * Cleanups::                Arranging to run a cleanup form if an
460                               error happens.
462 Errors
464 * Signaling Errors::        How to report an error.
465 * Processing of Errors::    What Emacs does when you report an error.
466 * Handling Errors::         How you can trap errors and continue execution.
467 * Error Symbols::           How errors are classified for trapping them.
469 Variables
471 * Global Variables::        Variable values that exist permanently, everywhere.
472 * Constant Variables::      Certain "variables" have values that never change.
473 * Local Variables::         Variable values that exist only temporarily.
474 * Void Variables::          Symbols that lack values.
475 * Defining Variables::      A definition says a symbol is used as a variable.
476 * Tips for Defining::       Things you should think about when you
477                               define a variable.
478 * Accessing Variables::     Examining values of variables whose names
479                               are known only at run time.
480 * Setting Variables::       Storing new values in variables.
481 * Variable Scoping::        How Lisp chooses among local and global values.
482 * Buffer-Local Variables::  Variable values in effect only in one buffer.
483 * File Local Variables::    Handling local variable lists in files.
484 * Directory Local Variables:: Local variables common to all files in a
485                                 directory.
486 * Variable Aliases::        Variables that are aliases for other variables.
487 * Variables with Restricted Values::  Non-constant variables whose value can
488                                         @emph{not} be an arbitrary Lisp object.
489 * Generalized Variables::   Extending the concept of variables.
491 Scoping Rules for Variable Bindings
493 * Dynamic Binding::         The default for binding local variables in Emacs.
494 * Dynamic Binding Tips::    Avoiding problems with dynamic binding.
495 * Lexical Binding::         A different type of local variable binding.
496 * Using Lexical Binding::   How to enable lexical binding.
498 Buffer-Local Variables
500 * Intro to Buffer-Local::   Introduction and concepts.
501 * Creating Buffer-Local::   Creating and destroying buffer-local bindings.
502 * Default Value::           The default value is seen in buffers
503                               that don't have their own buffer-local values.
505 Generalized Variables
507 * Setting Generalized Variables::   The @code{setf} macro.
508 * Adding Generalized Variables::    Defining new @code{setf} forms.
510 Functions
512 * What Is a Function::      Lisp functions vs. primitives; terminology.
513 * Lambda Expressions::      How functions are expressed as Lisp objects.
514 * Function Names::          A symbol can serve as the name of a function.
515 * Defining Functions::      Lisp expressions for defining functions.
516 * Calling Functions::       How to use an existing function.
517 * Mapping Functions::       Applying a function to each element of a list, etc.
518 * Anonymous Functions::     Lambda expressions are functions with no names.
519 * Function Cells::          Accessing or setting the function definition
520                               of a symbol.
521 * Closures::                Functions that enclose a lexical environment.
522 * Obsolete Functions::      Declaring functions obsolete.
523 * Inline Functions::        Defining functions that the compiler
524                               will expand inline.
525 * Declare Form::          Adding additional information about a function.
526 * Declaring Functions::     Telling the compiler that a function is defined.
527 * Function Safety::         Determining whether a function is safe to call.
528 * Related Topics::          Cross-references to specific Lisp primitives
529                               that have a special bearing on how
530                               functions work.
532 Lambda Expressions
534 * Lambda Components::       The parts of a lambda expression.
535 * Simple Lambda::           A simple example.
536 * Argument List::           Details and special features of argument lists.
537 * Function Documentation::  How to put documentation in a function.
539 Macros
541 * Simple Macro::            A basic example.
542 * Expansion::               How, when and why macros are expanded.
543 * Compiling Macros::        How macros are expanded by the compiler.
544 * Defining Macros::         How to write a macro definition.
545 * Problems with Macros::    Don't evaluate the macro arguments too many times.
546                               Don't hide the user's variables.
547 * Indenting Macros::        Specifying how to indent macro calls.
549 Common Problems Using Macros
551 * Wrong Time::             Do the work in the expansion, not in the macro.
552 * Argument Evaluation::    The expansion should evaluate each macro arg once.
553 * Surprising Local Vars::  Local variable bindings in the expansion
554                               require special care.
555 * Eval During Expansion::  Don't evaluate them; put them in the expansion.
556 * Repeated Expansion::     Avoid depending on how many times expansion is done.
558 Customization Settings
560 * Common Keywords::         Common keyword arguments for all kinds of
561                               customization declarations.
562 * Group Definitions::       Writing customization group definitions.
563 * Variable Definitions::    Declaring user options.
564 * Customization Types::     Specifying the type of a user option.
565 * Applying Customizations:: Functions to apply customization settings.
566 * Custom Themes::           Writing Custom themes.
568 Customization Types
570 * Simple Types::            Simple customization types: sexp, integer, etc.
571 * Composite Types::         Build new types from other types or data.
572 * Splicing into Lists::     Splice elements into list with @code{:inline}.
573 * Type Keywords::           Keyword-argument pairs in a customization type.
574 * Defining New Types::      Give your type a name.
576 Loading
578 * How Programs Do Loading:: The @code{load} function and others.
579 * Load Suffixes::           Details about the suffixes that @code{load} tries.
580 * Library Search::          Finding a library to load.
581 * Loading Non-ASCII::       Non-@acronym{ASCII} characters in Emacs Lisp files.
582 * Autoload::                Setting up a function to autoload.
583 * Repeated Loading::        Precautions about loading a file twice.
584 * Named Features::          Loading a library if it isn't already loaded.
585 * Where Defined::           Finding which file defined a certain symbol.
586 * Unloading::               How to "unload" a library that was loaded.
587 * Hooks for Loading::       Providing code to be run when
588                               particular libraries are loaded.
590 Byte Compilation
592 * Speed of Byte-Code::      An example of speedup from byte compilation.
593 * Compilation Functions::   Byte compilation functions.
594 * Docs and Compilation::    Dynamic loading of documentation strings.
595 * Dynamic Loading::         Dynamic loading of individual functions.
596 * Eval During Compile::     Code to be evaluated when you compile.
597 * Compiler Errors::         Handling compiler error messages.
598 * Byte-Code Objects::       The data type used for byte-compiled functions.
599 * Disassembly::             Disassembling byte-code; how to read byte-code.
601 Advising Emacs Lisp Functions
603 * Simple Advice::           A simple example to explain the basics of advice.
604 * Defining Advice::         Detailed description of @code{defadvice}.
605 * Around-Advice::           Wrapping advice around a function's definition.
606 * Computed Advice::         ...is to @code{defadvice} as @code{fset} is to @code{defun}.
607 * Activation of Advice::    Advice doesn't do anything until you activate it.
608 * Enabling Advice::         You can enable or disable each piece of advice.
609 * Preactivation::           Preactivation is a way of speeding up the
610                               loading of compiled advice.
611 * Argument Access in Advice:: How advice can access the function's arguments.
612 * Combined Definition::     How advice is implemented.
614 Debugging Lisp Programs
616 * Debugger::                A debugger for the Emacs Lisp evaluator.
617 * Edebug::                  A source-level Emacs Lisp debugger.
618 * Syntax Errors::           How to find syntax errors.
619 * Test Coverage::           Ensuring you have tested all branches in your code.
620 * Profiling::               Measuring the resources that your code uses.
622 The Lisp Debugger
624 * Error Debugging::         Entering the debugger when an error happens.
625 * Infinite Loops::          Stopping and debugging a program that doesn't exit.
626 * Function Debugging::      Entering it when a certain function is called.
627 * Explicit Debug::          Entering it at a certain point in the program.
628 * Using Debugger::          What the debugger does; what you see while in it.
629 * Debugger Commands::       Commands used while in the debugger.
630 * Invoking the Debugger::   How to call the function @code{debug}.
631 * Internals of Debugger::   Subroutines of the debugger, and global variables.
633 Edebug
635 * Using Edebug::            Introduction to use of Edebug.
636 * Instrumenting::           You must instrument your code
637                               in order to debug it with Edebug.
638 * Edebug Execution Modes::  Execution modes, stopping more or less often.
639 * Jumping::                 Commands to jump to a specified place.
640 * Edebug Misc::             Miscellaneous commands.
641 * Breaks::                  Setting breakpoints to make the program stop.
642 * Trapping Errors::         Trapping errors with Edebug.
643 * Edebug Views::            Views inside and outside of Edebug.
644 * Edebug Eval::             Evaluating expressions within Edebug.
645 * Eval List::               Expressions whose values are displayed
646                               each time you enter Edebug.
647 * Printing in Edebug::      Customization of printing.
648 * Trace Buffer::            How to produce trace output in a buffer.
649 * Coverage Testing::        How to test evaluation coverage.
650 * The Outside Context::     Data that Edebug saves and restores.
651 * Edebug and Macros::       Specifying how to handle macro calls.
652 * Edebug Options::          Option variables for customizing Edebug.
654 Breaks
656 * Breakpoints::             Breakpoints at stop points.
657 * Global Break Condition::  Breaking on an event.
658 * Source Breakpoints::      Embedding breakpoints in source code.
660 The Outside Context
662 * Checking Whether to Stop::When Edebug decides what to do.
663 * Edebug Display Update::   When Edebug updates the display.
664 * Edebug Recursive Edit::   When Edebug stops execution.
666 Edebug and Macros
668 * Instrumenting Macro Calls::The basic problem.
669 * Specification List::      How to specify complex patterns of evaluation.
670 * Backtracking::            What Edebug does when matching fails.
671 * Specification Examples::  To help understand specifications.
673 Debugging Invalid Lisp Syntax
675 * Excess Open::             How to find a spurious open paren or missing close.
676 * Excess Close::            How to find a spurious close paren or missing open.
678 Reading and Printing Lisp Objects
680 * Streams Intro::           Overview of streams, reading and printing.
681 * Input Streams::           Various data types that can be used as
682                               input streams.
683 * Input Functions::         Functions to read Lisp objects from text.
684 * Output Streams::          Various data types that can be used as
685                               output streams.
686 * Output Functions::        Functions to print Lisp objects as text.
687 * Output Variables::        Variables that control what the printing
688                               functions do.
690 Minibuffers
692 * Intro to Minibuffers::    Basic information about minibuffers.
693 * Text from Minibuffer::    How to read a straight text string.
694 * Object from Minibuffer::  How to read a Lisp object or expression.
695 * Minibuffer History::      Recording previous minibuffer inputs
696                               so the user can reuse them.
697 * Initial Input::           Specifying initial contents for the minibuffer.
698 * Completion::              How to invoke and customize completion.
699 * Yes-or-No Queries::       Asking a question with a simple answer.
700 * Multiple Queries::        Asking a series of similar questions.
701 * Reading a Password::      Reading a password from the terminal.
702 * Minibuffer Commands::     Commands used as key bindings in minibuffers.
703 * Minibuffer Windows::      Operating on the special minibuffer windows.
704 * Minibuffer Contents::     How such commands access the minibuffer text.
705 * Recursive Mini::          Whether recursive entry to minibuffer is allowed.
706 * Minibuffer Misc::         Various customization hooks and variables.
708 Completion
710 * Basic Completion::        Low-level functions for completing strings.
711 * Minibuffer Completion::   Invoking the minibuffer with completion.
712 * Completion Commands::     Minibuffer commands that do completion.
713 * High-Level Completion::   Convenient special cases of completion
714                               (reading buffer names, variable names, etc.).
715 * Reading File Names::      Using completion to read file names and
716                               shell commands.
717 * Completion Variables::    Variables controlling completion behavior.
718 * Programmed Completion::   Writing your own completion function.
719 * Completion in Buffers::   Completing text in ordinary buffers.
721 Command Loop
723 * Command Overview::    How the command loop reads commands.
724 * Defining Commands::   Specifying how a function should read arguments.
725 * Interactive Call::    Calling a command, so that it will read arguments.
726 * Distinguish Interactive::     Making a command distinguish interactive calls.
727 * Command Loop Info::   Variables set by the command loop for you to examine.
728 * Adjusting Point::     Adjustment of point after a command.
729 * Input Events::        What input looks like when you read it.
730 * Reading Input::       How to read input events from the keyboard or mouse.
731 * Special Events::      Events processed immediately and individually.
732 * Waiting::             Waiting for user input or elapsed time.
733 * Quitting::            How @kbd{C-g} works.  How to catch or defer quitting.
734 * Prefix Command Arguments::    How the commands to set prefix args work.
735 * Recursive Editing::   Entering a recursive edit,
736                           and why you usually shouldn't.
737 * Disabling Commands::  How the command loop handles disabled commands.
738 * Command History::     How the command history is set up, and how accessed.
739 * Keyboard Macros::     How keyboard macros are implemented.
741 Defining Commands
743 * Using Interactive::       General rules for @code{interactive}.
744 * Interactive Codes::       The standard letter-codes for reading arguments
745                               in various ways.
746 * Interactive Examples::    Examples of how to read interactive arguments.
748 Input Events
750 * Keyboard Events::         Ordinary characters--keys with symbols on them.
751 * Function Keys::           Function keys--keys with names, not symbols.
752 * Mouse Events::            Overview of mouse events.
753 * Click Events::            Pushing and releasing a mouse button.
754 * Drag Events::             Moving the mouse before releasing the button.
755 * Button-Down Events::      A button was pushed and not yet released.
756 * Repeat Events::           Double and triple click (or drag, or down).
757 * Motion Events::           Just moving the mouse, not pushing a button.
758 * Focus Events::            Moving the mouse between frames.
759 * Misc Events::             Other events the system can generate.
760 * Event Examples::          Examples of the lists for mouse events.
761 * Classifying Events::      Finding the modifier keys in an event symbol.
762                               Event types.
763 * Accessing Mouse::         Functions to extract info from mouse events.
764 * Accessing Scroll::        Functions to get info from scroll bar events.
765 * Strings of Events::       Special considerations for putting
766                               keyboard character events in a string.
768 Reading Input
770 * Key Sequence Input::      How to read one key sequence.
771 * Reading One Event::       How to read just one event.
772 * Event Mod::               How Emacs modifies events as they are read.
773 * Invoking the Input Method::   How reading an event uses the input method.
774 * Quoted Character Input::  Asking the user to specify a character.
775 * Event Input Misc::        How to reread or throw away input events.
777 Keymaps
779 * Key Sequences::           Key sequences as Lisp objects.
780 * Keymap Basics::           Basic concepts of keymaps.
781 * Format of Keymaps::       What a keymap looks like as a Lisp object.
782 * Creating Keymaps::        Functions to create and copy keymaps.
783 * Inheritance and Keymaps:: How one keymap can inherit the bindings
784                               of another keymap.
785 * Prefix Keys::             Defining a key with a keymap as its definition.
786 * Active Keymaps::          How Emacs searches the active keymaps
787                               for a key binding.
788 * Searching Keymaps::       A pseudo-Lisp summary of searching active maps.
789 * Controlling Active Maps:: Each buffer has a local keymap
790                                to override the standard (global) bindings.
791                                A minor mode can also override them.
792 * Key Lookup::              Finding a key's binding in one keymap.
793 * Functions for Key Lookup::    How to request key lookup.
794 * Changing Key Bindings::   Redefining a key in a keymap.
795 * Remapping Commands::      A keymap can translate one command to another.
796 * Translation Keymaps::     Keymaps for translating sequences of events.
797 * Key Binding Commands::    Interactive interfaces for redefining keys.
798 * Scanning Keymaps::        Looking through all keymaps, for printing help.
799 * Menu Keymaps::            Defining a menu as a keymap.
801 Menu Keymaps
803 * Defining Menus::          How to make a keymap that defines a menu.
804 * Mouse Menus::             How users actuate the menu with the mouse.
805 * Keyboard Menus::          How users actuate the menu with the keyboard.
806 * Menu Example::            Making a simple menu.
807 * Menu Bar::                How to customize the menu bar.
808 * Tool Bar::                A tool bar is a row of images.
809 * Modifying Menus::         How to add new items to a menu.
810 * Easy Menu::               A convenience macro for defining menus.
812 Defining Menus
814 * Simple Menu Items::       A simple kind of menu key binding.
815 * Extended Menu Items::     More complex menu item definitions.
816 * Menu Separators::         Drawing a horizontal line through a menu.
817 * Alias Menu Items::        Using command aliases in menu items.
819 Major and Minor Modes
821 * Hooks::              How to use hooks; how to write code that provides hooks.
822 * Major Modes::        Defining major modes.
823 * Minor Modes::        Defining minor modes.
824 * Mode Line Format::   Customizing the text that appears in the mode line.
825 * Imenu::              Providing a menu of definitions made in a buffer.
826 * Font Lock Mode::     How modes can highlight text according to syntax.
827 * Auto-Indentation::   How to teach Emacs to indent for a major mode.
828 * Desktop Save Mode::  How modes can have buffer state saved between
829                          Emacs sessions.
831 Hooks
833 * Running Hooks::      How to run a hook.
834 * Setting Hooks::      How to put functions on a hook, or remove them.
836 Major Modes
838 * Major Mode Conventions::  Coding conventions for keymaps, etc.
839 * Auto Major Mode::         How Emacs chooses the major mode automatically.
840 * Mode Help::               Finding out how to use a mode.
841 * Derived Modes::           Defining a new major mode based on another major
842                               mode.
843 * Basic Major Modes::       Modes that other modes are often derived from.
844 * Mode Hooks::              Hooks run at the end of major mode functions.
845 * Tabulated List Mode::     Parent mode for buffers containing tabulated data.
846 * Generic Modes::           Defining a simple major mode that supports
847                               comment syntax and Font Lock mode.
848 * Example Major Modes::     Text mode and Lisp modes.
850 Minor Modes
852 * Minor Mode Conventions::  Tips for writing a minor mode.
853 * Keymaps and Minor Modes:: How a minor mode can have its own keymap.
854 * Defining Minor Modes::    A convenient facility for defining minor modes.
856 Mode Line Format
858 * Mode Line Basics::        Basic ideas of mode line control.
859 * Mode Line Data::          The data structure that controls the mode line.
860 * Mode Line Top::           The top level variable, mode-line-format.
861 * Mode Line Variables::     Variables used in that data structure.
862 * %-Constructs::            Putting information into a mode line.
863 * Properties in Mode::      Using text properties in the mode line.
864 * Header Lines::            Like a mode line, but at the top.
865 * Emulating Mode Line::     Formatting text as the mode line would.
867 Font Lock Mode
869 * Font Lock Basics::        Overview of customizing Font Lock.
870 * Search-based Fontification::  Fontification based on regexps.
871 * Customizing Keywords::    Customizing search-based fontification.
872 * Other Font Lock Variables::   Additional customization facilities.
873 * Levels of Font Lock::     Each mode can define alternative levels
874                               so that the user can select more or less.
875 * Precalculated Fontification:: How Lisp programs that produce the buffer
876                                   contents can also specify how to fontify it.
877 * Faces for Font Lock::     Special faces specifically for Font Lock.
878 * Syntactic Font Lock::     Fontification based on syntax tables.
879 * Multiline Font Lock::     How to coerce Font Lock into properly
880                               highlighting multiline constructs.
882 Multiline Font Lock Constructs
884 * Font Lock Multiline::     Marking multiline chunks with a text property.
885 * Region to Refontify::     Controlling which region gets refontified
886                               after a buffer change.
888 Automatic Indentation of code
890 * SMIE::                    A simple minded indentation engine.
892 Simple Minded Indentation Engine
894 * SMIE setup::              SMIE setup and features.
895 * Operator Precedence Grammars:: A very simple parsing technique.
896 * SMIE Grammar::            Defining the grammar of a language.
897 * SMIE Lexer::              Defining tokens.
898 * SMIE Tricks::             Working around the parser's limitations.
899 * SMIE Indentation::        Specifying indentation rules.
900 * SMIE Indentation Helpers:: Helper functions for indentation rules.
901 * SMIE Indentation Example:: Sample indentation rules.
903 Documentation
905 * Documentation Basics::    Where doc strings are defined and stored.
906 * Accessing Documentation:: How Lisp programs can access doc strings.
907 * Keys in Documentation::   Substituting current key bindings.
908 * Describing Characters::   Making printable descriptions of
909                               non-printing characters and key sequences.
910 * Help Functions::          Subroutines used by Emacs help facilities.
912 Files
914 * Visiting Files::          Reading files into Emacs buffers for editing.
915 * Saving Buffers::          Writing changed buffers back into files.
916 * Reading from Files::      Reading files into buffers without visiting.
917 * Writing to Files::        Writing new files from parts of buffers.
918 * File Locks::              Locking and unlocking files, to prevent
919                               simultaneous editing by two people.
920 * Information about Files:: Testing existence, accessibility, size of files.
921 * Changing Files::          Renaming files, changing permissions, etc.
922 * File Names::              Decomposing and expanding file names.
923 * Contents of Directories:: Getting a list of the files in a directory.
924 * Create/Delete Dirs::      Creating and Deleting Directories.
925 * Magic File Names::        Special handling for certain file names.
926 * Format Conversion::       Conversion to and from various file formats.
928 Visiting Files
930 * Visiting Functions::      The usual interface functions for visiting.
931 * Subroutines of Visiting:: Lower-level subroutines that they use.
933 Information about Files
935 * Testing Accessibility::   Is a given file readable?  Writable?
936 * Kinds of Files::          Is it a directory?  A symbolic link?
937 * Truenames::               Eliminating symbolic links from a file name.
938 * File Attributes::         How large is it?  Any other names?  Etc.
939 * Locating Files::          How to find a file in standard places.
941 File Names
943 * File Name Components::    The directory part of a file name, and the rest.
944 * Relative File Names::     Some file names are relative to a current directory.
945 * Directory Names::         A directory's name as a directory
946                               is different from its name as a file.
947 * File Name Expansion::     Converting relative file names to absolute ones.
948 * Unique File Names::       Generating names for temporary files.
949 * File Name Completion::    Finding the completions for a given file name.
950 * Standard File Names::     If your package uses a fixed file name,
951                               how to handle various operating systems simply.
953 File Format Conversion
955 * Format Conversion Overview::   @code{insert-file-contents} and @code{write-region}.
956 * Format Conversion Round-Trip:: Using @code{format-alist}.
957 * Format Conversion Piecemeal::  Specifying non-paired conversion.
959 Backups and Auto-Saving
961 * Backup Files::            How backup files are made; how their names
962                               are chosen.
963 * Auto-Saving::             How auto-save files are made; how their
964                               names are chosen.
965 * Reverting::               @code{revert-buffer}, and how to customize
966                               what it does.
968 Backup Files
970 * Making Backups::          How Emacs makes backup files, and when.
971 * Rename or Copy::          Two alternatives: renaming the old file
972                               or copying it.
973 * Numbered Backups::        Keeping multiple backups for each source file.
974 * Backup Names::            How backup file names are computed; customization.
976 Buffers
978 * Buffer Basics::           What is a buffer?
979 * Current Buffer::          Designating a buffer as current
980                               so that primitives will access its contents.
981 * Buffer Names::            Accessing and changing buffer names.
982 * Buffer File Name::        The buffer file name indicates which file
983                               is visited.
984 * Buffer Modification::     A buffer is @dfn{modified} if it needs to be saved.
985 * Modification Time::       Determining whether the visited file was changed
986                               "behind Emacs's back".
987 * Read Only Buffers::       Modifying text is not allowed in a
988                               read-only buffer.
989 * The Buffer List::         How to look at all the existing buffers.
990 * Creating Buffers::        Functions that create buffers.
991 * Killing Buffers::         Buffers exist until explicitly killed.
992 * Indirect Buffers::        An indirect buffer shares text with some
993                               other buffer.
994 * Swapping Text::           Swapping text between two buffers.
995 * Buffer Gap::              The gap in the buffer.
997 Windows
999 * Basic Windows::           Basic information on using windows.
1000 * Windows and Frames::      Relating windows to the frame they appear on.
1001 * Window Sizes::            Accessing a window's size.
1002 * Resizing Windows::        Changing the sizes of windows.
1003 * Splitting Windows::       Splitting one window into two windows.
1004 * Deleting Windows::        Deleting a window gives its space to other windows.
1005 * Recombining Windows::     Preserving the frame layout when splitting and
1006                               deleting windows.
1007 * Selecting Windows::       The selected window is the one that you edit in.
1008 * Cyclic Window Ordering::  Moving around the existing windows.
1009 * Buffers and Windows::     Each window displays the contents of a buffer.
1010 * Switching Buffers::       Higher-level functions for switching to a buffer.
1011 * Choosing Window::         How to choose a window for displaying a buffer.
1012 * Display Action Functions:: Subroutines for @code{display-buffer}.
1013 * Choosing Window Options:: Extra options affecting how buffers are displayed.
1014 * Window History::          Each window remembers the buffers displayed in it.
1015 * Dedicated Windows::       How to avoid displaying another buffer in
1016                               a specific window.
1017 * Quitting Windows::        How to restore the state prior to displaying a
1018                               buffer.
1019 * Window Point::            Each window has its own location of point.
1020 * Window Start and End::    Buffer positions indicating which text is
1021                               on-screen in a window.
1022 * Textual Scrolling::       Moving text up and down through the window.
1023 * Vertical Scrolling::      Moving the contents up and down on the window.
1024 * Horizontal Scrolling::    Moving the contents sideways on the window.
1025 * Coordinates and Windows:: Converting coordinates to windows.
1026 * Window Configurations::   Saving and restoring the state of the screen.
1027 * Window Parameters::       Associating additional information with windows.
1028 * Window Hooks::            Hooks for scrolling, window size changes,
1029                               redisplay going past a certain point,
1030                               or window configuration changes.
1032 Frames
1034 * Creating Frames::         Creating additional frames.
1035 * Multiple Terminals::      Displaying on several different devices.
1036 * Frame Parameters::        Controlling frame size, position, font, etc.
1037 * Terminal Parameters::     Parameters common for all frames on terminal.
1038 * Frame Titles::            Automatic updating of frame titles.
1039 * Deleting Frames::         Frames last until explicitly deleted.
1040 * Finding All Frames::      How to examine all existing frames.
1041 * Minibuffers and Frames::  How a frame finds the minibuffer to use.
1042 * Input Focus::             Specifying the selected frame.
1043 * Visibility of Frames::    Frames may be visible or invisible, or icons.
1044 * Raising and Lowering::    Raising a frame makes it hide other windows;
1045                               lowering it makes the others hide it.
1046 * Frame Configurations::    Saving the state of all frames.
1047 * Mouse Tracking::          Getting events that say when the mouse moves.
1048 * Mouse Position::          Asking where the mouse is, or moving it.
1049 * Pop-Up Menus::            Displaying a menu for the user to select from.
1050 * Dialog Boxes::            Displaying a box to ask yes or no.
1051 * Pointer Shape::           Specifying the shape of the mouse pointer.
1052 * Window System Selections::Transferring text to and from other X clients.
1053 * Drag and Drop::               Internals of Drag-and-Drop implementation.
1054 * Color Names::             Getting the definitions of color names.
1055 * Text Terminal Colors::    Defining colors for text terminals.
1056 * Resources::               Getting resource values from the server.
1057 * Display Feature Testing:: Determining the features of a terminal.
1059 Frame Parameters
1061 * Parameter Access::        How to change a frame's parameters.
1062 * Initial Parameters::      Specifying frame parameters when you make a frame.
1063 * Window Frame Parameters:: List of frame parameters for window systems.
1064 * Size and Position::       Changing the size and position of a frame.
1065 * Geometry::                Parsing geometry specifications.
1067 Window Frame Parameters
1069 * Basic Parameters::        Parameters that are fundamental.
1070 * Position Parameters::     The position of the frame on the screen.
1071 * Size Parameters::         Frame's size.
1072 * Layout Parameters::       Size of parts of the frame, and
1073                               enabling or disabling some parts.
1074 * Buffer Parameters::       Which buffers have been or should be shown.
1075 * Management Parameters::   Communicating with the window manager.
1076 * Cursor Parameters::       Controlling the cursor appearance.
1077 * Font and Color Parameters:: Fonts and colors for the frame text.
1079 Positions
1081 * Point::                   The special position where editing takes place.
1082 * Motion::                  Changing point.
1083 * Excursions::              Temporary motion and buffer changes.
1084 * Narrowing::               Restricting editing to a portion of the buffer.
1086 Motion
1088 * Character Motion::        Moving in terms of characters.
1089 * Word Motion::             Moving in terms of words.
1090 * Buffer End Motion::       Moving to the beginning or end of the buffer.
1091 * Text Lines::              Moving in terms of lines of text.
1092 * Screen Lines::            Moving in terms of lines as displayed.
1093 * List Motion::             Moving by parsing lists and sexps.
1094 * Skipping Characters::     Skipping characters belonging to a certain set.
1096 Markers
1098 * Overview of Markers::     The components of a marker, and how it relocates.
1099 * Predicates on Markers::   Testing whether an object is a marker.
1100 * Creating Markers::        Making empty markers or markers at certain places.
1101 * Information from Markers::Finding the marker's buffer or character position.
1102 * Marker Insertion Types::  Two ways a marker can relocate when you
1103                               insert where it points.
1104 * Moving Markers::          Moving the marker to a new buffer or position.
1105 * The Mark::                How "the mark" is implemented with a marker.
1106 * The Region::              How to access "the region".
1108 Text
1110 * Near Point::              Examining text in the vicinity of point.
1111 * Buffer Contents::         Examining text in a general fashion.
1112 * Comparing Text::          Comparing substrings of buffers.
1113 * Insertion::               Adding new text to a buffer.
1114 * Commands for Insertion::  User-level commands to insert text.
1115 * Deletion::                Removing text from a buffer.
1116 * User-Level Deletion::     User-level commands to delete text.
1117 * The Kill Ring::           Where removed text sometimes is saved for
1118                               later use.
1119 * Undo::                    Undoing changes to the text of a buffer.
1120 * Maintaining Undo::        How to enable and disable undo information.
1121                               How to control how much information is kept.
1122 * Filling::                 Functions for explicit filling.
1123 * Margins::                 How to specify margins for filling commands.
1124 * Adaptive Fill::           Adaptive Fill mode chooses a fill prefix
1125                               from context.
1126 * Auto Filling::            How auto-fill mode is implemented to break lines.
1127 * Sorting::                 Functions for sorting parts of the buffer.
1128 * Columns::                 Computing horizontal positions, and using them.
1129 * Indentation::             Functions to insert or adjust indentation.
1130 * Case Changes::            Case conversion of parts of the buffer.
1131 * Text Properties::         Assigning Lisp property lists to text characters.
1132 * Substitution::            Replacing a given character wherever it appears.
1133 * Registers::               How registers are implemented.  Accessing
1134                               the text or position stored in a register.
1135 * Transposition::           Swapping two portions of a buffer.
1136 * Base 64::                 Conversion to or from base 64 encoding.
1137 * Checksum/Hash::           Computing cryptographic hashes.
1138 * Parsing HTML/XML::        Parsing HTML and XML.
1139 * Atomic Changes::          Installing several buffer changes "atomically".
1140 * Change Hooks::            Supplying functions to be run when text is changed.
1142 The Kill Ring
1144 * Kill Ring Concepts::      What text looks like in the kill ring.
1145 * Kill Functions::          Functions that kill text.
1146 * Yanking::                 How yanking is done.
1147 * Yank Commands::           Commands that access the kill ring.
1148 * Low-Level Kill Ring::     Functions and variables for kill ring access.
1149 * Internals of Kill Ring::  Variables that hold kill ring data.
1151 Indentation
1153 * Primitive Indent::        Functions used to count and insert indentation.
1154 * Mode-Specific Indent::    Customize indentation for different modes.
1155 * Region Indent::           Indent all the lines in a region.
1156 * Relative Indent::         Indent the current line based on previous lines.
1157 * Indent Tabs::             Adjustable, typewriter-like tab stops.
1158 * Motion by Indent::        Move to first non-blank character.
1160 Text Properties
1162 * Examining Properties::    Looking at the properties of one character.
1163 * Changing Properties::     Setting the properties of a range of text.
1164 * Property Search::         Searching for where a property changes value.
1165 * Special Properties::      Particular properties with special meanings.
1166 * Format Properties::       Properties for representing formatting of text.
1167 * Sticky Properties::       How inserted text gets properties from
1168                               neighboring text.
1169 * Lazy Properties::         Computing text properties in a lazy fashion
1170                               only when text is examined.
1171 * Clickable Text::          Using text properties to make regions of text
1172                               do something when you click on them.
1173 * Fields::                  The @code{field} property defines
1174                               fields within the buffer.
1175 * Not Intervals::           Why text properties do not use
1176                               Lisp-visible text intervals.
1178 Non-@acronym{ASCII} Characters
1180 * Text Representations::    How Emacs represents text.
1181 * Converting Representations::  Converting unibyte to multibyte and vice versa.
1182 * Selecting a Representation::  Treating a byte sequence as unibyte or multi.
1183 * Character Codes::         How unibyte and multibyte relate to
1184                                 codes of individual characters.
1185 * Character Properties::    Character attributes that define their
1186                                 behavior and handling.
1187 * Character Sets::          The space of possible character codes
1188                                 is divided into various character sets.
1189 * Scanning Charsets::       Which character sets are used in a buffer?
1190 * Translation of Characters::   Translation tables are used for conversion.
1191 * Coding Systems::          Coding systems are conversions for saving files.
1192 * Input Methods::           Input methods allow users to enter various
1193                                 non-ASCII characters without special keyboards.
1194 * Locales::                 Interacting with the POSIX locale.
1196 Coding Systems
1198 * Coding System Basics::    Basic concepts.
1199 * Encoding and I/O::        How file I/O functions handle coding systems.
1200 * Lisp and Coding Systems:: Functions to operate on coding system names.
1201 * User-Chosen Coding Systems::  Asking the user to choose a coding system.
1202 * Default Coding Systems::  Controlling the default choices.
1203 * Specifying Coding Systems::   Requesting a particular coding system
1204                                     for a single file operation.
1205 * Explicit Encoding::       Encoding or decoding text without doing I/O.
1206 * Terminal I/O Encoding::   Use of encoding for terminal I/O.
1207 * MS-DOS File Types::       How DOS "text" and "binary" files
1208                                 relate to coding systems.
1210 Searching and Matching
1212 * String Search::           Search for an exact match.
1213 * Searching and Case::      Case-independent or case-significant searching.
1214 * Regular Expressions::     Describing classes of strings.
1215 * Regexp Search::           Searching for a match for a regexp.
1216 * POSIX Regexps::           Searching POSIX-style for the longest match.
1217 * Match Data::              Finding out which part of the text matched,
1218                               after a string or regexp search.
1219 * Search and Replace::      Commands that loop, searching and replacing.
1220 * Standard Regexps::        Useful regexps for finding sentences, pages,...
1222 Regular Expressions
1224 * Syntax of Regexps::       Rules for writing regular expressions.
1225 * Regexp Example::          Illustrates regular expression syntax.
1226 * Regexp Functions::        Functions for operating on regular expressions.
1228 Syntax of Regular Expressions
1230 * Regexp Special::          Special characters in regular expressions.
1231 * Char Classes::            Character classes used in regular expressions.
1232 * Regexp Backslash::        Backslash-sequences in regular expressions.
1234 The Match Data
1236 * Replacing Match::         Replacing a substring that was matched.
1237 * Simple Match Data::       Accessing single items of match data,
1238                               such as where a particular subexpression started.
1239 * Entire Match Data::       Accessing the entire match data at once, as a list.
1240 * Saving Match Data::       Saving and restoring the match data.
1242 Syntax Tables
1244 * Syntax Basics::           Basic concepts of syntax tables.
1245 * Syntax Descriptors::      How characters are classified.
1246 * Syntax Table Functions::  How to create, examine and alter syntax tables.
1247 * Syntax Properties::       Overriding syntax with text properties.
1248 * Motion and Syntax::       Moving over characters with certain syntaxes.
1249 * Parsing Expressions::     Parsing balanced expressions
1250                               using the syntax table.
1251 * Syntax Table Internals::  How syntax table information is stored.
1252 * Categories::              Another way of classifying character syntax.
1254 Syntax Descriptors
1256 * Syntax Class Table::      Table of syntax classes.
1257 * Syntax Flags::            Additional flags each character can have.
1259 Parsing Expressions
1261 * Motion via Parsing::      Motion functions that work by parsing.
1262 * Position Parse::          Determining the syntactic state of a position.
1263 * Parser State::            How Emacs represents a syntactic state.
1264 * Low-Level Parsing::       Parsing across a specified region.
1265 * Control Parsing::         Parameters that affect parsing.
1267 Abbrevs and Abbrev Expansion
1269 * Abbrev Tables::           Creating and working with abbrev tables.
1270 * Defining Abbrevs::        Specifying abbreviations and their expansions.
1271 * Abbrev Files::            Saving abbrevs in files.
1272 * Abbrev Expansion::        Controlling expansion; expansion subroutines.
1273 * Standard Abbrev Tables::  Abbrev tables used by various major modes.
1274 * Abbrev Properties::       How to read and set abbrev properties.
1275                             Which properties have which effect.
1276 * Abbrev Table Properties:: How to read and set abbrev table properties.
1277                             Which properties have which effect.
1279 Processes
1281 * Subprocess Creation::     Functions that start subprocesses.
1282 * Shell Arguments::         Quoting an argument to pass it to a shell.
1283 * Synchronous Processes::   Details of using synchronous subprocesses.
1284 * Asynchronous Processes::  Starting up an asynchronous subprocess.
1285 * Deleting Processes::      Eliminating an asynchronous subprocess.
1286 * Process Information::     Accessing run-status and other attributes.
1287 * Input to Processes::      Sending input to an asynchronous subprocess.
1288 * Signals to Processes::    Stopping, continuing or interrupting
1289                               an asynchronous subprocess.
1290 * Output from Processes::   Collecting output from an asynchronous subprocess.
1291 * Sentinels::               Sentinels run when process run-status changes.
1292 * Query Before Exit::       Whether to query if exiting will kill a process.
1293 * System Processes::        Accessing other processes running on your system.
1294 * Transaction Queues::      Transaction-based communication with subprocesses.
1295 * Network::                 Opening network connections.
1296 * Network Servers::         Network servers let Emacs accept net connections.
1297 * Datagrams::               UDP network connections.
1298 * Low-Level Network::       Lower-level but more general function
1299                               to create connections and servers.
1300 * Misc Network::            Additional relevant functions for net connections.
1301 * Serial Ports::            Communicating with serial ports.
1302 * Byte Packing::            Using bindat to pack and unpack binary data.
1304 Receiving Output from Processes
1306 * Process Buffers::         If no filter, output is put in a buffer.
1307 * Filter Functions::        Filter functions accept output from the process.
1308 * Decoding Output::         Filters can get unibyte or multibyte strings.
1309 * Accepting Output::        How to wait until process output arrives.
1311 Low-Level Network Access
1313 * Network Processes::       Using @code{make-network-process}.
1314 * Network Options::         Further control over network connections.
1315 * Network Feature Testing:: Determining which network features work on
1316                               the machine you are using.
1318 Packing and Unpacking Byte Arrays
1320 * Bindat Spec::             Describing data layout.
1321 * Bindat Functions::        Doing the unpacking and packing.
1322 * Bindat Examples::         Samples of what bindat.el can do for you!
1324 Emacs Display
1326 * Refresh Screen::          Clearing the screen and redrawing everything on it.
1327 * Forcing Redisplay::       Forcing redisplay.
1328 * Truncation::              Folding or wrapping long text lines.
1329 * The Echo Area::           Displaying messages at the bottom of the screen.
1330 * Warnings::                Displaying warning messages for the user.
1331 * Invisible Text::          Hiding part of the buffer text.
1332 * Selective Display::       Hiding part of the buffer text (the old way).
1333 * Temporary Displays::      Displays that go away automatically.
1334 * Overlays::                Use overlays to highlight parts of the buffer.
1335 * Width::                   How wide a character or string is on the screen.
1336 * Line Height::             Controlling the height of lines.
1337 * Faces::                   A face defines a graphics style
1338                               for text characters: font, colors, etc.
1339 * Fringes::                 Controlling window fringes.
1340 * Scroll Bars::             Controlling vertical scroll bars.
1341 * Display Property::        Enabling special display features.
1342 * Images::                  Displaying images in Emacs buffers.
1343 * Buttons::                 Adding clickable buttons to Emacs buffers.
1344 * Abstract Display::        Emacs's Widget for Object Collections.
1345 * Blinking::                How Emacs shows the matching open parenthesis.
1346 * Character Display::   How Emacs displays individual characters.
1347 * Beeping::                 Audible signal to the user.
1348 * Window Systems::          Which window system is being used.
1349 * Bidirectional Display::   Display of bidirectional scripts, such as
1350                               Arabic and Farsi.
1352 The Echo Area
1354 * Displaying Messages::     Explicitly displaying text in the echo area.
1355 * Progress::                Informing user about progress of a long operation.
1356 * Logging Messages::        Echo area messages are logged for the user.
1357 * Echo Area Customization:: Controlling the echo area.
1359 Reporting Warnings
1361 * Warning Basics::          Warnings concepts and functions to report them.
1362 * Warning Variables::       Variables programs bind to customize
1363                               their warnings.
1364 * Warning Options::         Variables users set to control display of warnings.
1365 * Delayed Warnings::        Deferring a warning until the end of a command.
1367 Overlays
1369 * Managing Overlays::       Creating and moving overlays.
1370 * Overlay Properties::      How to read and set properties.
1371                               What properties do to the screen display.
1372 * Finding Overlays::        Searching for overlays.
1374 Faces
1376 * Face Attributes::         What is in a face?
1377 * Defining Faces::          How to define a face.
1378 * Attribute Functions::     Functions to examine and set face attributes.
1379 * Displaying Faces::        How Emacs combines the faces specified for
1380                               a character.
1381 * Face Remapping::         Remapping faces to alternative definitions.
1382 * Face Functions::          How to define and examine faces.
1383 * Auto Faces::              Hook for automatic face assignment.
1384 * Basic Faces::         Faces that are defined by default.
1385 * Font Selection::          Finding the best available font for a face.
1386 * Font Lookup::             Looking up the names of available fonts
1387                               and information about them.
1388 * Fontsets::                A fontset is a collection of fonts
1389                               that handle a range of character sets.
1390 * Low-Level Font::          Lisp representation for character display fonts.
1392 Fringes
1394 * Fringe Size/Pos::         Specifying where to put the window fringes.
1395 * Fringe Indicators::       Displaying indicator icons in the window fringes.
1396 * Fringe Cursors::          Displaying cursors in the right fringe.
1397 * Fringe Bitmaps::          Specifying bitmaps for fringe indicators.
1398 * Customizing Bitmaps::     Specifying your own bitmaps to use in the fringes.
1399 * Overlay Arrow::           Display of an arrow to indicate position.
1401 The @code{display} Property
1403 * Replacing Specs::         Display specs that replace the text.
1404 * Specified Space::         Displaying one space with a specified width.
1405 * Pixel Specification::     Specifying space width or height in pixels.
1406 * Other Display Specs::     Displaying an image; adjusting the height,
1407                               spacing, and other properties of text.
1408 * Display Margins::         Displaying text or images to the side of
1409                               the main text.
1411 Images
1413 * Image Formats::           Supported image formats.
1414 * Image Descriptors::       How to specify an image for use in @code{:display}.
1415 * XBM Images::              Special features for XBM format.
1416 * XPM Images::              Special features for XPM format.
1417 * GIF Images::              Special features for GIF format.
1418 * TIFF Images::             Special features for TIFF format.
1419 * PostScript Images::       Special features for PostScript format.
1420 * ImageMagick Images::      Special features available through ImageMagick.
1421 * Other Image Types::       Various other formats are supported.
1422 * Defining Images::         Convenient ways to define an image for later use.
1423 * Showing Images::          Convenient ways to display an image once
1424                               it is defined.
1425 * Animated Images::         Some image formats can be animated.
1426 * Image Cache::             Internal mechanisms of image display.
1428 Buttons
1430 * Button Properties::       Button properties with special meanings.
1431 * Button Types::            Defining common properties for classes of buttons.
1432 * Making Buttons::          Adding buttons to Emacs buffers.
1433 * Manipulating Buttons::    Getting and setting properties of buttons.
1434 * Button Buffer Commands::  Buffer-wide commands and bindings for buttons.
1436 Abstract Display
1438 * Abstract Display Functions::  Functions in the Ewoc package.
1439 * Abstract Display Example::    Example of using Ewoc.
1441 Character Display
1443 * Usual Display::       The usual conventions for displaying characters.
1444 * Display Tables::      What a display table consists of.
1445 * Active Display Table::  How Emacs selects a display table to use.
1446 * Glyphs::              How to define a glyph, and what glyphs mean.
1447 * Glyphless Chars::     How glyphless characters are drawn.
1449 Operating System Interface
1451 * Starting Up::             Customizing Emacs startup processing.
1452 * Getting Out::             How exiting works (permanent or temporary).
1453 * System Environment::      Distinguish the name and kind of system.
1454 * User Identification::     Finding the name and user id of the user.
1455 * Time of Day::             Getting the current time.
1456 * Time Conversion::         Converting a time from numeric form to
1457                               calendrical data and vice versa.
1458 * Time Parsing::            Converting a time from numeric form to text
1459                               and vice versa.
1460 * Processor Run Time::      Getting the run time used by Emacs.
1461 * Time Calculations::       Adding, subtracting, comparing times, etc.
1462 * Timers::                  Setting a timer to call a function at a
1463                               certain time.
1464 * Idle Timers::             Setting a timer to call a function when Emacs has
1465                               been idle for a certain length of time.
1466 * Terminal Input::          Accessing and recording terminal input.
1467 * Terminal Output::         Controlling and recording terminal output.
1468 * Sound Output::            Playing sounds on the computer's speaker.
1469 * X11 Keysyms::             Operating on key symbols for X Windows.
1470 * Batch Mode::              Running Emacs without terminal interaction.
1471 * Session Management::      Saving and restoring state with
1472                               X Session Management.
1473 * Notifications::           Desktop notifications.
1474 * Dynamic Libraries::       On-demand loading of support libraries.
1476 Starting Up Emacs
1478 * Startup Summary::         Sequence of actions Emacs performs at startup.
1479 * Init File::               Details on reading the init file.
1480 * Terminal-Specific::       How the terminal-specific Lisp file is read.
1481 * Command-Line Arguments::  How command-line arguments are processed,
1482                               and how you can customize them.
1484 Getting Out of Emacs
1486 * Killing Emacs::           Exiting Emacs irreversibly.
1487 * Suspending Emacs::        Exiting Emacs reversibly.
1489 Terminal Input
1491 * Input Modes::             Options for how input is processed.
1492 * Recording Input::         Saving histories of recent or all input events.
1494 Preparing Lisp code for distribution
1496 * Packaging Basics::        The basic concepts of Emacs Lisp packages.
1497 * Simple Packages::         How to package a single .el file.
1498 * Multi-file Packages::     How to package multiple files.
1499 * Package Archives::        Maintaining package archives.
1501 Tips and Conventions
1503 * Coding Conventions::      Conventions for clean and robust programs.
1504 * Key Binding Conventions:: Which keys should be bound by which programs.
1505 * Programming Tips::        Making Emacs code fit smoothly in Emacs.
1506 * Compilation Tips::        Making compiled code run fast.
1507 * Warning Tips::            Turning off compiler warnings.
1508 * Documentation Tips::      Writing readable documentation strings.
1509 * Comment Tips::            Conventions for writing comments.
1510 * Library Headers::         Standard headers for library packages.
1512 GNU Emacs Internals
1514 * Building Emacs::          How the dumped Emacs is made.
1515 * Pure Storage::            Kludge to make preloaded Lisp functions shareable.
1516 * Garbage Collection::      Reclaiming space for Lisp objects no longer used.
1517 * Memory Usage::            Info about total size of Lisp objects made so far.
1518 * Writing Emacs Primitives::  Writing C code for Emacs.
1519 * Object Internals::        Data formats of buffers, windows, processes.
1521 Object Internals
1523 * Buffer Internals::        Components of a buffer structure.
1524 * Window Internals::        Components of a window structure.
1525 * Process Internals::       Components of a process structure.
1526 @end detailmenu
1527 @end menu
1529 @ifclear VOL2
1530 @include intro.texi
1531 @include objects.texi
1532 @include numbers.texi
1533 @include strings.texi
1535 @include lists.texi
1536 @include sequences.texi
1537 @include hash.texi
1538 @include symbols.texi
1539 @include eval.texi
1541 @include control.texi
1542 @include variables.texi
1543 @include functions.texi
1544 @include macros.texi
1546 @include customize.texi
1547 @include loading.texi
1548 @include compile.texi
1549 @include advice.texi
1551 @c This includes edebug.texi.
1552 @include debugging.texi
1553 @include streams.texi
1554 @include minibuf.texi
1555 @include commands.texi
1557 @include keymaps.texi
1558 @include modes.texi
1559 @include help.texi
1560 @include files.texi
1562 @include backups.texi
1564 @end ifclear
1566 @c ================ Beginning of Volume 2 ================
1567 @ifclear VOL1
1569 @include buffers.texi
1570 @include windows.texi
1571 @include frames.texi
1573 @include positions.texi
1574 @include markers.texi
1575 @include text.texi
1576 @include nonascii.texi
1578 @include searching.texi
1579 @include syntax.texi
1580 @include abbrevs.texi
1581 @include processes.texi
1583 @include display.texi
1584 @include os.texi
1586 @include package.texi
1588 @c appendices
1590 @include anti.texi
1591 @include doclicense.texi
1592 @include gpl.texi
1593 @include tips.texi
1594 @include internals.texi
1595 @include errors.texi
1596 @include maps.texi
1597 @include hooks.texi
1599 @include index.texi
1601 @end ifclear
1603 @ignore
1604 @node New Symbols
1605 @unnumbered New Symbols Since the Previous Edition
1607 @printindex tp
1608 @end ignore
1610 @bye
1613 These words prevent "local variables" above from confusing Emacs.