]> code.delx.au - gnu-emacs/blob - lispref/elisp.texi
(Defining Faces): Add `customized-face'.
[gnu-emacs] / lispref / elisp.texi
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
6
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.7
10 @set EMACSVER 22.0.50
11
12 @dircategory Emacs
13 @direntry
14 * Elisp: (elisp). The Emacs Lisp Reference Manual.
15 @end direntry
16
17 @smallbook
18 @setchapternewpage odd
19 @finalout
20
21 @c Combine indices.
22 @synindex cp fn
23 @syncodeindex vr fn
24 @syncodeindex ky fn
25 @syncodeindex pg fn
26 @c We use the "type index" to index new functions and variables.
27 @c @syncodeindex tp fn
28
29 @ifnottex
30 This Info file contains edition @value{VERSION} of the GNU Emacs Lisp
31 Reference Manual, corresponding to Emacs version @value{EMACSVER}.
32
33 Published by the Free Software Foundation
34 59 Temple Place, Suite 330
35 Boston, MA 02111-1307 USA
36
37 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, @*
38 2000, 2002, 2003, 2004, 2005, Free Software Foundation, Inc.
39
40 Permission is granted to copy, distribute and/or modify this document
41 under the terms of the GNU Free Documentation License, Version 1.1 or
42 any later version published by the Free Software Foundation; with the
43 Invariant Sections being ``GNU General Public License'', with the Front-Cover texts being
44 ``A GNU Manual'', and with the Back-Cover Texts as in (a) below. A copy
45 of the license is included in the section entitled ``GNU Free
46 Documentation License''.
47
48 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
49 this GNU Manual, like GNU software. Copies published by the Free
50 Software Foundation raise funds for GNU development.''
51 @end ifnottex
52
53 @titlepage
54 @title GNU Emacs Lisp Reference Manual
55 @subtitle For Emacs Version @value{EMACSVER}
56 @subtitle Revision @value{VERSION}, January 2002
57
58 @author by Bil Lewis, Dan LaLiberte, Richard Stallman
59 @author and the GNU Manual Group
60 @page
61 @vskip 0pt plus 1filll
62 Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,@*
63 1999, 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
64
65 @sp 2
66 Edition @value{VERSION} @*
67 Revised for Emacs Version @value{EMACSVER},@*
68 January 2002.@*
69 @sp 2
70 ISBN 1-882114-73-6
71
72 @sp 2
73 Published by the Free Software Foundation @*
74 59 Temple Place, Suite 330@*
75 Boston, MA 02111-1307 USA
76
77 Permission is granted to copy, distribute and/or modify this document
78 under the terms of the GNU Free Documentation License, Version 1.1 or
79 any later version published by the Free Software Foundation; with the
80 Invariant Sections being ``Copying'', with the Front-Cover texts being
81 ``A GNU Manual'', and with the Back-Cover Texts as in (a) below. A copy
82 of the license is included in the section entitled ``GNU Free
83 Documentation License''.
84
85 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
86 this GNU Manual, like GNU software. Copies published by the Free
87 Software Foundation raise funds for GNU development.''
88
89 Cover art by Etienne Suvasa.
90 @end titlepage
91 @page
92
93 @ifnottex
94 @node Top, Introduction, (dir), (dir)
95 @top Emacs Lisp
96
97 This Info file contains edition @value{VERSION} of the GNU Emacs Lisp
98 Reference Manual, corresponding to GNU Emacs version @value{EMACSVER}.
99 @end ifnottex
100
101 @menu
102 * Introduction:: Introduction and conventions used.
103
104 * Lisp Data Types:: Data types of objects in Emacs Lisp.
105 * Numbers:: Numbers and arithmetic functions.
106 * Strings and Characters:: Strings, and functions that work on them.
107 * Lists:: Lists, cons cells, and related functions.
108 * Sequences Arrays Vectors:: Lists, strings and vectors are called sequences.
109 Certain functions act on any kind of sequence.
110 The description of vectors is here as well.
111 * Hash Tables:: Very fast lookup-tables.
112 * Symbols:: Symbols represent names, uniquely.
113
114 * Evaluation:: How Lisp expressions are evaluated.
115 * Control Structures:: Conditionals, loops, nonlocal exits.
116 * Variables:: Using symbols in programs to stand for values.
117 * Functions:: A function is a Lisp program
118 that can be invoked from other functions.
119 * Macros:: Macros are a way to extend the Lisp language.
120 * Customization:: Writing customization declarations.
121
122 * Loading:: Reading files of Lisp code into Lisp.
123 * Byte Compilation:: Compilation makes programs run faster.
124 * Advising Functions:: Adding to the definition of a function.
125 * Debugging:: Tools and tips for debugging Lisp programs.
126
127 * Read and Print:: Converting Lisp objects to text and back.
128 * Minibuffers:: Using the minibuffer to read input.
129 * Command Loop:: How the editor command loop works,
130 and how you can call its subroutines.
131 * Keymaps:: Defining the bindings from keys to commands.
132 * Modes:: Defining major and minor modes.
133 * Documentation:: Writing and using documentation strings.
134
135 * Files:: Accessing files.
136 * Backups and Auto-Saving:: Controlling how backups and auto-save
137 files are made.
138 * Buffers:: Creating and using buffer objects.
139 * Windows:: Manipulating windows and displaying buffers.
140 * Frames:: Making multiple X windows.
141 * Positions:: Buffer positions and motion functions.
142 * Markers:: Markers represent positions and update
143 automatically when the text is changed.
144
145 * Text:: Examining and changing text in buffers.
146 * Non-ASCII Characters:: Non-ASCII text in buffers and strings.
147 * Searching and Matching:: Searching buffers for strings or regexps.
148 * Syntax Tables:: The syntax table controls word and list parsing.
149 * Abbrevs:: How Abbrev mode works, and its data structures.
150
151 * Processes:: Running and communicating with subprocesses.
152 * Display:: Features for controlling the screen display.
153 * System Interface:: Getting the user id, system type, environment
154 variables, and other such things.
155
156 Appendices
157
158 * Antinews:: Info for users downgrading to Emacs 21.
159 * GNU Free Documentation License:: The license for this documentation
160 * GPL:: Conditions for copying and changing GNU Emacs.
161 * Tips:: Advice and coding conventions for Emacs Lisp.
162 * GNU Emacs Internals:: Building and dumping Emacs;
163 internal data structures.
164 * Standard Errors:: List of all error symbols.
165 * Standard Buffer-Local Variables::
166 List of variables buffer-local in all buffers.
167 * Standard Keymaps:: List of standard keymaps.
168 * Standard Hooks:: List of standard hook variables.
169
170 * Index:: Index including concepts, functions, variables,
171 and other terms.
172
173 * New Symbols:: New functions and variables in Emacs @value{EMACSVER}.
174
175 Detailed Node Listing
176 ---------------------
177
178 Here are other nodes that are inferiors of those already listed,
179 mentioned here so you can get to them in one step:
180
181 Introduction
182
183 * Caveats:: Flaws and a request for help.
184 * Lisp History:: Emacs Lisp is descended from Maclisp.
185 * Conventions:: How the manual is formatted.
186 * Version Info:: Which Emacs version is running?
187 * Acknowledgements:: The authors, editors, and sponsors of this manual.
188
189 Conventions
190
191 * Some Terms:: Explanation of terms we use in this manual.
192 * nil and t:: How the symbols @code{nil} and @code{t} are used.
193 * Evaluation Notation:: The format we use for examples of evaluation.
194 * Printing Notation:: The format we use for examples that print output.
195 * Error Messages:: The format we use for examples of errors.
196 * Buffer Text Notation:: The format we use for buffer contents in examples.
197 * Format of Descriptions:: Notation for describing functions, variables, etc.
198
199 Format of Descriptions
200
201 * A Sample Function Description::
202 * A Sample Variable Description::
203
204 Lisp Data Types
205
206 * Printed Representation:: How Lisp objects are represented as text.
207 * Comments:: Comments and their formatting conventions.
208 * Programming Types:: Types found in all Lisp systems.
209 * Editing Types:: Types specific to Emacs.
210 * Circular Objects:: Read syntax for circular structure.
211 * Type Predicates:: Tests related to types.
212 * Equality Predicates:: Tests of equality between any two objects.
213
214 Programming Types
215
216 * Integer Type:: Numbers without fractional parts.
217 * Floating Point Type:: Numbers with fractional parts and with a large range.
218 * Character Type:: The representation of letters, numbers and
219 control characters.
220 * Symbol Type:: A multi-use object that refers to a function,
221 variable, property list, or itself.
222 * Sequence Type:: Both lists and arrays are classified as sequences.
223 * Cons Cell Type:: Cons cells, and lists (which are made from cons cells).
224 * Array Type:: Arrays include strings and vectors.
225 * String Type:: An (efficient) array of characters.
226 * Vector Type:: One-dimensional arrays.
227 * Char-Table Type:: One-dimensional sparse arrays indexed by characters.
228 * Bool-Vector Type:: One-dimensional arrays of @code{t} or @code{nil}.
229 * Hash Table Type:: Super-fast lookup tables.
230 * Function Type:: A piece of executable code you can call from elsewhere.
231 * Macro Type:: A method of expanding an expression into another
232 expression, more fundamental but less pretty.
233 * Primitive Function Type:: A function written in C, callable from Lisp.
234 * Byte-Code Type:: A function written in Lisp, then compiled.
235 * Autoload Type:: A type used for automatically loading seldom-used
236 functions.
237
238 Cons Cell and List Types
239
240 * Box Diagrams:: Drawing pictures of lists.
241 * Dotted Pair Notation:: An alternative syntax for lists.
242 * Association List Type:: A specially constructed list.
243
244 Editing Types
245
246 * Buffer Type:: The basic object of editing.
247 * Marker Type:: A position in a buffer.
248 * Window Type:: What makes buffers visible.
249 * Frame Type:: Windows subdivide frames.
250 * Window Configuration Type::Save what the screen looks like.
251 * Frame Configuration Type::Recording the status of all frames.
252 * Process Type:: A process running on the underlying OS.
253 * Stream Type:: Receive or send characters.
254 * Keymap Type:: What function a keystroke invokes.
255 * Overlay Type:: How an overlay is represented.
256
257 Numbers
258
259 * Integer Basics:: Representation and range of integers.
260 * Float Basics:: Representation and range of floating point.
261 * Predicates on Numbers:: Testing for numbers.
262 * Comparison of Numbers:: Equality and inequality predicates.
263 * Numeric Conversions:: Converting float to integer and vice versa.
264 * Arithmetic Operations:: How to add, subtract, multiply and divide.
265 * Rounding Operations:: Explicitly rounding floating point numbers.
266 * Bitwise Operations:: Logical and, or, not, shifting.
267 * Math Functions:: Trig, exponential and logarithmic functions.
268 * Random Numbers:: Obtaining random integers, predictable or not.
269
270 Strings and Characters
271
272 * String Basics:: Basic properties of strings and characters.
273 * Predicates for Strings:: Testing whether an object is a string or char.
274 * Creating Strings:: Functions to allocate new strings.
275 * Modifying Strings:: Altering the contents of an existing string.
276 * Text Comparison:: Comparing characters or strings.
277 * String Conversion:: Converting characters or strings and vice versa.
278 * Formatting Strings:: @code{format}: Emacs's analogue of @code{printf}.
279 * Case Conversion:: Case conversion functions.
280 * Case Tables:: Customizing case conversion.
281
282 Lists
283
284 * Cons Cells:: How lists are made out of cons cells.
285 * List-related Predicates:: Is this object a list? Comparing two lists.
286 * List Elements:: Extracting the pieces of a list.
287 * Building Lists:: Creating list structure.
288 * Modifying Lists:: Storing new pieces into an existing list.
289 * Sets And Lists:: A list can represent a finite mathematical set.
290 * Association Lists:: A list can represent a finite relation or mapping.
291 * Rings:: Managing a fixed-size ring of objects.
292
293 Modifying Existing List Structure
294
295 * Setcar:: Replacing an element in a list.
296 * Setcdr:: Replacing part of the list backbone.
297 This can be used to remove or add elements.
298 * Rearrangement:: Reordering the elements in a list; combining lists.
299
300 Sequences, Arrays, and Vectors
301
302 * Sequence Functions:: Functions that accept any kind of sequence.
303 * Arrays:: Characteristics of arrays in Emacs Lisp.
304 * Array Functions:: Functions specifically for arrays.
305 * Vectors:: Functions specifically for vectors.
306 * Vector Functions:: Functions specifically for vectors.
307 * Char-Tables:: How to work with char-tables.
308 * Bool-Vectors:: How to work with bool-vectors.
309
310 Hash Tables
311
312 * Creating Hash:: Functions to create hash tables.
313 * Hash Access:: Reading and writing the hash table contents.
314 * Defining Hash:: Defining new comparison methods
315 * Other Hash:: Miscellaneous.
316
317 Symbols
318
319 * Symbol Components:: Symbols have names, values, function definitions
320 and property lists.
321 * Definitions:: A definition says how a symbol will be used.
322 * Creating Symbols:: How symbols are kept unique.
323 * Property Lists:: Each symbol has a property list
324 for recording miscellaneous information.
325
326 Evaluation
327
328 * Intro Eval:: Evaluation in the scheme of things.
329 * Forms:: How various sorts of objects are evaluated.
330 * Quoting:: Avoiding evaluation (to put constants in
331 the program).
332 * Eval:: How to invoke the Lisp interpreter explicitly.
333
334 Kinds of Forms
335
336 * Self-Evaluating Forms:: Forms that evaluate to themselves.
337 * Symbol Forms:: Symbols evaluate as variables.
338 * Classifying Lists:: How to distinguish various sorts of list forms.
339 * Function Indirection:: When a symbol appears as the car of a list,
340 we find the real function via the symbol.
341 * Function Forms:: Forms that call functions.
342 * Macro Forms:: Forms that call macros.
343 * Special Forms:: ``Special forms'' are idiosyncratic primitives,
344 most of them extremely important.
345 * Autoloading:: Functions set up to load files
346 containing their real definitions.
347
348 Control Structures
349
350 * Sequencing:: Evaluation in textual order.
351 * Conditionals:: @code{if}, @code{cond}, @code{when}, @code{unless}.
352 * Combining Conditions:: @code{and}, @code{or}, @code{not}.
353 * Iteration:: @code{while} loops.
354 * Nonlocal Exits:: Jumping out of a sequence.
355
356 Nonlocal Exits
357
358 * Catch and Throw:: Nonlocal exits for the program's own purposes.
359 * Examples of Catch:: Showing how such nonlocal exits can be written.
360 * Errors:: How errors are signaled and handled.
361 * Cleanups:: Arranging to run a cleanup form if an
362 error happens.
363
364 Errors
365
366 * Signaling Errors:: How to report an error.
367 * Processing of Errors:: What Emacs does when you report an error.
368 * Handling Errors:: How you can trap errors and continue execution.
369 * Error Symbols:: How errors are classified for trapping them.
370
371 Variables
372
373 * Global Variables:: Variable values that exist permanently, everywhere.
374 * Constant Variables:: Certain "variables" have values that never change.
375 * Local Variables:: Variable values that exist only temporarily.
376 * Void Variables:: Symbols that lack values.
377 * Defining Variables:: A definition says a symbol is used as a variable.
378 * Tips for Defining:: Things you should think about when you
379 define a variable.
380 * Accessing Variables:: Examining values of variables whose names
381 are known only at run time.
382 * Setting Variables:: Storing new values in variables.
383 * Variable Scoping:: How Lisp chooses among local and global values.
384 * Buffer-Local Variables:: Variable values in effect only in one buffer.
385 * Frame-Local Variables:: Variable values in effect only in one frame.
386 * Future Local Variables:: New kinds of local values we might add some day.
387 * File Local Variables:: Handling local variable lists in files.
388 * Variable Aliases:: Variables that are aliases for other variables.
389 * Variables with Restricted Values:: Non-constant variables whose value can
390 @emph{not} be an arbitrary Lisp object.
391
392 Scoping Rules for Variable Bindings
393
394 * Scope:: Scope means where in the program a value
395 is visible. Comparison with other languages.
396 * Extent:: Extent means how long in time a value exists.
397 * Impl of Scope:: Two ways to implement dynamic scoping.
398 * Using Scoping:: How to use dynamic scoping carefully and
399 avoid problems.
400
401 Buffer-Local Variables
402
403 * Intro to Buffer-Local:: Introduction and concepts.
404 * Creating Buffer-Local:: Creating and destroying buffer-local bindings.
405 * Default Value:: The default value is seen in buffers
406 that don't have their own buffer-local values.
407
408 Functions
409
410 * What Is a Function:: Lisp functions vs primitives; terminology.
411 * Lambda Expressions:: How functions are expressed as Lisp objects.
412 * Function Names:: A symbol can serve as the name of a function.
413 * Defining Functions:: Lisp expressions for defining functions.
414 * Calling Functions:: How to use an existing function.
415 * Mapping Functions:: Applying a function to each element of a list, etc.
416 * Anonymous Functions:: Lambda-expressions are functions with no names.
417 * Function Cells:: Accessing or setting the function definition
418 of a symbol.
419 * Obsolete Functions:: Declaring functions obsolete.
420 * Inline Functions:: Defining functions that the compiler will open code.
421 * Function Safety:: Determining whether a function is safe to call.
422 * Related Topics:: Cross-references to specific Lisp primitives
423 that have a special bearing on how
424 functions work.
425
426 Lambda Expressions
427
428 * Lambda Components:: The parts of a lambda expression.
429 * Simple Lambda:: A simple example.
430 * Argument List:: Details and special features of argument lists.
431 * Function Documentation:: How to put documentation in a function.
432
433 Macros
434
435 * Simple Macro:: A basic example.
436 * Expansion:: How, when and why macros are expanded.
437 * Compiling Macros:: How macros are expanded by the compiler.
438 * Defining Macros:: How to write a macro definition.
439 * Backquote:: Easier construction of list structure.
440 * Problems with Macros:: Don't evaluate the macro arguments too many times.
441 Don't hide the user's variables.
442 * Indenting Macros:: Specifying how to indent macro calls.
443
444 Writing Customization Definitions
445
446 * Common Keywords:: Common keyword arguments for all kinds of
447 customization declarations.
448 * Group Definitions:: Writing customization group definitions.
449 * Variable Definitions:: Declaring user options.
450 * Customization Types:: Specifying the type of a user option.
451
452 Loading
453
454 * How Programs Do Loading:: The @code{load} function and others.
455 * Library Search:: Finding a library to load.
456 * Loading Non-ASCII:: Non-@acronym{ASCII} characters in Emacs Lisp files.
457 * Autoload:: Setting up a function to autoload.
458 * Repeated Loading:: Precautions about loading a file twice.
459 * Named Features:: Loading a library if it isn't already loaded.
460 * Where Defined:: Finding which file defined a certain symbol.
461 * Unloading:: How to ``unload'' a library that was loaded.
462 * Hooks for Loading:: Providing code to be run when
463 particular libraries are loaded.
464
465 Byte Compilation
466
467 * Speed of Byte-Code:: An example of speedup from byte compilation.
468 * Compilation Functions:: Byte compilation functions.
469 * Docs and Compilation:: Dynamic loading of documentation strings.
470 * Dynamic Loading:: Dynamic loading of individual functions.
471 * Eval During Compile:: Code to be evaluated when you compile.
472 * Compiler Errors:: Handling compiler error messages.
473 * Byte-Code Objects:: The data type used for byte-compiled functions.
474 * Disassembly:: Disassembling byte-code; how to read byte-code.
475
476 Advising Emacs Lisp Functions
477
478 * Simple Advice:: A simple example to explain the basics of advice.
479 * Defining Advice:: Detailed description of @code{defadvice}.
480 * Around-Advice:: Wrapping advice around a function's definition.
481 * Computed Advice:: ...is to @code{defadvice} as @code{fset} is to @code{defun}.
482 * Activation of Advice:: Advice doesn't do anything until you activate it.
483 * Enabling Advice:: You can enable or disable each piece of advice.
484 * Preactivation:: Preactivation is a way of speeding up the
485 loading of compiled advice.
486 * Argument Access in Advice:: How advice can access the function's arguments.
487 * Advising Primitives:: Accessing arguments when advising a primitive.
488 * Combined Definition:: How advice is implemented.
489
490 Debugging Lisp Programs
491
492 * Debugger:: How the Emacs Lisp debugger is implemented.
493 * Edebug:: A source-level Emacs Lisp debugger.
494 * Syntax Errors:: How to find syntax errors.
495 * Test Coverage:: Ensuring you have tested all branches in your code.
496 * Compilation Errors:: How to find errors that show up in
497 byte compilation.
498
499 The Lisp Debugger
500
501 * Error Debugging:: Entering the debugger when an error happens.
502 * Infinite Loops:: Stopping and debugging a program that doesn't exit.
503 * Function Debugging:: Entering it when a certain function is called.
504 * Explicit Debug:: Entering it at a certain point in the program.
505 * Using Debugger:: What the debugger does; what you see while in it.
506 * Debugger Commands:: Commands used while in the debugger.
507 * Invoking the Debugger:: How to call the function @code{debug}.
508 * Internals of Debugger:: Subroutines of the debugger, and global variables.
509
510 Edebug
511
512 * Using Edebug:: Introduction to use of Edebug.
513 * Instrumenting:: You must instrument your code
514 in order to debug it with Edebug.
515 * Edebug Execution Modes:: Execution modes, stopping more or less often.
516 * Jumping:: Commands to jump to a specified place.
517 * Edebug Misc:: Miscellaneous commands.
518 * Breaks:: Setting breakpoints to make the program stop.
519 * Trapping Errors:: Trapping errors with Edebug.
520 * Edebug Views:: Views inside and outside of Edebug.
521 * Edebug Eval:: Evaluating expressions within Edebug.
522 * Eval List:: Expressions whose values are displayed
523 each time you enter Edebug.
524 * Printing in Edebug:: Customization of printing.
525 * Trace Buffer:: How to produce trace output in a buffer.
526 * Coverage Testing:: How to test evaluation coverage.
527 * The Outside Context:: Data that Edebug saves and restores.
528 * Edebug and Macros:: Specifying how to handle macro calls.
529 * Edebug Options:: Option variables for customizing Edebug.
530
531 Debugging Invalid Lisp Syntax
532
533 * Excess Open:: How to find a spurious open paren or missing close.
534 * Excess Close:: How to find a spurious close paren or missing open.
535
536 Reading and Printing Lisp Objects
537
538 * Streams Intro:: Overview of streams, reading and printing.
539 * Input Streams:: Various data types that can be used as
540 input streams.
541 * Input Functions:: Functions to read Lisp objects from text.
542 * Output Streams:: Various data types that can be used as
543 output streams.
544 * Output Functions:: Functions to print Lisp objects as text.
545 * Output Variables:: Variables that control what the printing
546 functions do.
547
548 Minibuffers
549
550 * Intro to Minibuffers:: Basic information about minibuffers.
551 * Text from Minibuffer:: How to read a straight text string.
552 * Object from Minibuffer:: How to read a Lisp object or expression.
553 * Minibuffer History:: Recording previous minibuffer inputs
554 so the user can reuse them.
555 * Initial Input:: Specifying initial contents for the minibuffer.
556 * Completion:: How to invoke and customize completion.
557 * Yes-or-No Queries:: Asking a question with a simple answer.
558 * Multiple Queries:: Asking a series of similar questions.
559 * Reading a Password:: Reading a password from the terminal.
560 * Minibuffer Misc:: Various customization hooks and variables.
561
562 Completion
563
564 * Basic Completion:: Low-level functions for completing strings.
565 (These are too low level to use the minibuffer.)
566 * Minibuffer Completion:: Invoking the minibuffer with completion.
567 * Completion Commands:: Minibuffer commands that do completion.
568 * High-Level Completion:: Convenient special cases of completion
569 (reading buffer name, file name, etc.)
570 * Reading File Names:: Using completion to read file names.
571 * Programmed Completion:: Finding the completions for a given file name.
572
573 Command Loop
574
575 * Command Overview:: How the command loop reads commands.
576 * Defining Commands:: Specifying how a function should read arguments.
577 * Interactive Call:: Calling a command, so that it will read arguments.
578 * Command Loop Info:: Variables set by the command loop for you to examine.
579 * Adjusting Point:: Adjustment of point after a command.
580 * Input Events:: What input looks like when you read it.
581 * Reading Input:: How to read input events from the keyboard or mouse.
582 * Special Events:: Events processed immediately and individually.
583 * Waiting:: Waiting for user input or elapsed time.
584 * Quitting:: How @kbd{C-g} works. How to catch or defer quitting.
585 * Prefix Command Arguments:: How the commands to set prefix args work.
586 * Recursive Editing:: Entering a recursive edit,
587 and why you usually shouldn't.
588 * Disabling Commands:: How the command loop handles disabled commands.
589 * Command History:: How the command history is set up, and how accessed.
590 * Keyboard Macros:: How keyboard macros are implemented.
591
592 Defining Commands
593
594 * Using Interactive:: General rules for @code{interactive}.
595 * Interactive Codes:: The standard letter-codes for reading arguments
596 in various ways.
597 * Interactive Examples:: Examples of how to read interactive arguments.
598
599 Keymaps
600
601 * Keymap Terminology:: Definitions of terms pertaining to keymaps.
602 * Format of Keymaps:: What a keymap looks like as a Lisp object.
603 * Creating Keymaps:: Functions to create and copy keymaps.
604 * Inheritance and Keymaps:: How one keymap can inherit the bindings
605 of another keymap.
606 * Prefix Keys:: Defining a key with a keymap as its definition.
607 * Active Keymaps:: Each buffer has a local keymap
608 to override the standard (global) bindings.
609 Each minor mode can also override them.
610 * Key Lookup:: How extracting elements from keymaps works.
611 * Functions for Key Lookup:: How to request key lookup.
612 * Changing Key Bindings:: Redefining a key in a keymap.
613 * Remapping Commands:: Bindings that translate one command to another.
614 * Key Binding Commands:: Interactive interfaces for redefining keys.
615 * Scanning Keymaps:: Looking through all keymaps, for printing help.
616 * Menu Keymaps:: A keymap can define a menu for X
617 or for use from the terminal.
618
619 Major and Minor Modes
620
621 * Hooks:: How to use hooks; how to write code that
622 provides hooks.
623 * Major Modes:: Defining major modes.
624 * Minor Modes:: Defining minor modes.
625 * Mode Line Format:: Customizing the text that appears in the mode line.
626 * Imenu:: How a mode can provide a menu
627 of definitions in the buffer.
628 * Font Lock Mode:: How modes can highlight text according to syntax.
629 * Desktop Save Mode:: How modes can have buffer state saved between
630 Emacs sessions.
631
632 Major Modes
633
634 * Major Mode Basics::
635 * Major Mode Conventions:: Coding conventions for keymaps, etc.
636 * Example Major Modes:: Text mode and Lisp modes.
637 * Auto Major Mode:: How Emacs chooses the major mode automatically.
638 * Mode Help:: Finding out how to use a mode.
639 * Derived Modes:: Defining a new major mode based on another major
640 mode.
641 * Generic Modes:: Defining a simple major mode that supports
642 comment syntax and Font Lock mode.
643 * Mode Hooks:: Hooks run at the end of major mode functions.
644
645 Minor Modes
646
647 * Minor Mode Conventions:: Tips for writing a minor mode.
648 * Keymaps and Minor Modes:: How a minor mode can have its own keymap.
649 * Defining Minor Modes:: A convenient facility for defining minor modes.
650
651 Mode Line Format
652
653 * Mode Line Basics::
654 * Mode Line Data:: The data structure that controls the mode line.
655 * Mode Line Variables:: Variables used in that data structure.
656 * %-Constructs:: Putting information into a mode line.
657 * Properties in Mode:: Using text properties in the mode line.
658 * Header Lines:: Like a mode line, but at the top.
659 * Emulating Mode Line:: Formatting text as the mode line would.
660
661 Documentation
662
663 * Documentation Basics:: Good style for doc strings.
664 Where to put them. How Emacs stores them.
665 * Accessing Documentation:: How Lisp programs can access doc strings.
666 * Keys in Documentation:: Substituting current key bindings.
667 * Describing Characters:: Making printable descriptions of
668 non-printing characters and key sequences.
669 * Help Functions:: Subroutines used by Emacs help facilities.
670
671 Files
672
673 * Visiting Files:: Reading files into Emacs buffers for editing.
674 * Saving Buffers:: Writing changed buffers back into files.
675 * Reading from Files:: Reading files into other buffers.
676 * Writing to Files:: Writing new files from parts of buffers.
677 * File Locks:: Locking and unlocking files, to prevent
678 simultaneous editing by two people.
679 * Information about Files:: Testing existence, accessibility, size of files.
680 * Changing Files:: Renaming files, changing protection, etc.
681 * File Names:: Decomposing and expanding file names.
682 * Contents of Directories:: Getting a list of the files in a directory.
683 * Create/Delete Dirs:: Creating and Deleting Directories.
684 * Magic File Names:: Defining "magic" special handling
685 for certain file names.
686 * Format Conversion:: Conversion to and from various file formats.
687
688 Visiting Files
689
690 * Visiting Functions:: The usual interface functions for visiting.
691 * Subroutines of Visiting:: Lower-level subroutines that they use.
692
693 Information about Files
694
695 * Testing Accessibility:: Is a given file readable? Writable?
696 * Kinds of Files:: Is it a directory? A symbolic link?
697 * Truenames:: Eliminating symbolic links from a file name.
698 * File Attributes:: How large is it? Any other names? Etc.
699
700 File Names
701
702 * File Name Components:: The directory part of a file name, and the rest.
703 * Relative File Names:: Some file names are relative to a
704 current directory.
705 * Directory Names:: A directory's name as a directory
706 is different from its name as a file.
707 * File Name Expansion:: Converting relative file names to absolute ones.
708 * Unique File Names:: Generating names for temporary files.
709 * File Name Completion:: Finding the completions for a given file name.
710 * Standard File Names:: If your package uses a fixed file name,
711 how to handle various operating systems simply.
712
713 Backups and Auto-Saving
714
715 * Backup Files:: How backup files are made; how their names
716 are chosen.
717 * Auto-Saving:: How auto-save files are made; how their
718 names are chosen.
719 * Reverting:: @code{revert-buffer}, and how to customize
720 what it does.
721
722 Backup Files
723
724 * Making Backups:: How Emacs makes backup files, and when.
725 * Rename or Copy:: Two alternatives: renaming the old file
726 or copying it.
727 * Numbered Backups:: Keeping multiple backups for each source file.
728 * Backup Names:: How backup file names are computed; customization.
729
730 Buffers
731
732 * Buffer Basics:: What is a buffer?
733 * Current Buffer:: Designating a buffer as current
734 so primitives will access its contents.
735 * Buffer Names:: Accessing and changing buffer names.
736 * Buffer File Name:: The buffer file name indicates which file
737 is visited.
738 * Buffer Modification:: A buffer is @dfn{modified} if it needs to be saved.
739 * Modification Time:: Determining whether the visited file was changed
740 ``behind Emacs's back''.
741 * Read Only Buffers:: Modifying text is not allowed in a
742 read-only buffer.
743 * The Buffer List:: How to look at all the existing buffers.
744 * Creating Buffers:: Functions that create buffers.
745 * Killing Buffers:: Buffers exist until explicitly killed.
746 * Indirect Buffers:: An indirect buffer shares text with some
747 other buffer.
748 * Buffer Gap:: The gap in the buffer.
749
750 Windows
751
752 * Basic Windows:: Basic information on using windows.
753 * Splitting Windows:: Splitting one window into two windows.
754 * Deleting Windows:: Deleting a window gives its space to other windows.
755 * Selecting Windows:: The selected window is the one that you edit in.
756 * Cyclic Window Ordering:: Moving around the existing windows.
757 * Buffers and Windows:: Each window displays the contents of a buffer.
758 * Displaying Buffers:: Higher-lever functions for displaying a buffer
759 and choosing a window for it.
760 * Choosing Window:: How to choose a window for displaying a buffer.
761 * Window Point:: Each window has its own location of point.
762 * Window Start:: The display-start position controls which text
763 is on-screen in the window.
764 * Textual Scrolling:: Moving text up and down through the window.
765 * Vertical Scrolling:: Moving the contents up and down on the window.
766 * Horizontal Scrolling:: Moving the contents sideways on the window.
767 * Size of Window:: Accessing the size of a window.
768 * Resizing Windows:: Changing the size of a window.
769 * Coordinates and Windows:: Converting coordinates to windows.
770 * Window Configurations:: Saving and restoring the state of the screen.
771 * Window Hooks:: Hooks for scrolling, window size changes,
772 redisplay going past a certain point,
773 or window configuration changes.
774
775 Frames
776
777 * Creating Frames:: Creating additional frames.
778 * Multiple Displays:: Creating frames on other X displays.
779 * Frame Parameters:: Controlling frame size, position, font, etc.
780 * Frame Titles:: Automatic updating of frame titles.
781 * Deleting Frames:: Frames last until explicitly deleted.
782 * Finding All Frames:: How to examine all existing frames.
783 * Frames and Windows:: A frame contains windows;
784 display of text always works through windows.
785 * Minibuffers and Frames:: How a frame finds the minibuffer to use.
786 * Input Focus:: Specifying the selected frame.
787 * Visibility of Frames:: Frames may be visible or invisible, or icons.
788 * Raising and Lowering:: Raising a frame makes it hide other X windows;
789 lowering it puts it underneath the others.
790 * Frame Configurations:: Saving the state of all frames.
791 * Mouse Tracking:: Getting events that say when the mouse moves.
792 * Mouse Position:: Asking where the mouse is, or moving it.
793 * Pop-Up Menus:: Displaying a menu for the user to select from.
794 * Dialog Boxes:: Displaying a box to ask yes or no.
795 * Pointer Shapes:: Specifying the shape of the mouse pointer.
796 * Window System Selections::Transferring text to and from other windows.
797 * Color Names:: Getting the definitions of color names.
798 * Text Terminal Colors:: Defining colors for text-only terminals.
799 * Resources:: Getting resource values from the server.
800 * Display Feature Testing:: Determining the features of a terminal.
801
802 Positions
803
804 * Point:: The special position where editing takes place.
805 * Motion:: Changing point.
806 * Excursions:: Temporary motion and buffer changes.
807 * Narrowing:: Restricting editing to a portion of the buffer.
808
809 Motion
810
811 * Character Motion:: Moving in terms of characters.
812 * Word Motion:: Moving in terms of words.
813 * Buffer End Motion:: Moving to the beginning or end of the buffer.
814 * Text Lines:: Moving in terms of lines of text.
815 * Screen Lines:: Moving in terms of lines as displayed.
816 * List Motion:: Moving by parsing lists and sexps.
817 * Skipping Characters:: Skipping characters belonging to a certain set.
818
819 Markers
820
821 * Overview of Markers:: The components of a marker, and how it relocates.
822 * Predicates on Markers:: Testing whether an object is a marker.
823 * Creating Markers:: Making empty markers or markers at certain places.
824 * Information from Markers::Finding the marker's buffer or character
825 position.
826 * Marker Insertion Types:: Two ways a marker can relocate when you
827 insert where it points.
828 * Moving Markers:: Moving the marker to a new buffer or position.
829 * The Mark:: How ``the mark'' is implemented with a marker.
830 * The Region:: How to access ``the region''.
831
832 Text
833
834 * Near Point:: Examining text in the vicinity of point.
835 * Buffer Contents:: Examining text in a general fashion.
836 * Comparing Text:: Comparing substrings of buffers.
837 * Insertion:: Adding new text to a buffer.
838 * Commands for Insertion:: User-level commands to insert text.
839 * Deletion:: Removing text from a buffer.
840 * User-Level Deletion:: User-level commands to delete text.
841 * The Kill Ring:: Where removed text sometimes is saved for
842 later use.
843 * Undo:: Undoing changes to the text of a buffer.
844 * Maintaining Undo:: How to enable and disable undo information.
845 How to control how much information is kept.
846 * Filling:: Functions for explicit filling.
847 * Margins:: How to specify margins for filling commands.
848 * Adaptive Fill:: Adaptive Fill mode chooses a fill prefix
849 from context.
850 * Auto Filling:: How auto-fill mode is implemented to break lines.
851 * Sorting:: Functions for sorting parts of the buffer.
852 * Columns:: Computing horizontal positions, and using them.
853 * Indentation:: Functions to insert or adjust indentation.
854 * Case Changes:: Case conversion of parts of the buffer.
855 * Text Properties:: Assigning Lisp property lists to text characters.
856 * Substitution:: Replacing a given character wherever it appears.
857 * Transposition:: Swapping two portions of a buffer.
858 * Registers:: How registers are implemented. Accessing
859 the text or position stored in a register.
860 * Base 64:: Conversion to or from base 64 encoding.
861 * MD5 Checksum:: Compute the MD5 ``message digest''/``checksum''.
862 * Atomic Changes:: Installing several buffer changes ``atomically''.
863 * Change Hooks:: Supplying functions to be run when text is changed.
864
865 The Kill Ring
866
867 * Kill Ring Concepts:: What text looks like in the kill ring.
868 * Kill Functions:: Functions that kill text.
869 * Yanking:: How yanking is done.
870 * Yank Commands:: Commands that access the kill ring.
871 * Low-Level Kill Ring:: Functions and variables for kill ring access.
872 * Internals of Kill Ring:: Variables that hold kill-ring data.
873
874 Indentation
875
876 * Primitive Indent:: Functions used to count and insert indentation.
877 * Mode-Specific Indent:: Customize indentation for different modes.
878 * Region Indent:: Indent all the lines in a region.
879 * Relative Indent:: Indent the current line based on previous lines.
880 * Indent Tabs:: Adjustable, typewriter-like tab stops.
881 * Motion by Indent:: Move to first non-blank character.
882
883 Text Properties
884
885 * Examining Properties:: Looking at the properties of one character.
886 * Changing Properties:: Setting the properties of a range of text.
887 * Property Search:: Searching for where a property changes value.
888 * Special Properties:: Particular properties with special meanings.
889 * Format Properties:: Properties for representing formatting of text.
890 * Sticky Properties:: How inserted text gets properties from
891 neighboring text.
892 * Saving Properties:: Saving text properties in files, and reading
893 them back.
894 * Lazy Properties:: Computing text properties in a lazy fashion
895 only when text is examined.
896 * Clickable Text:: Using text properties to make regions of text
897 do something when you click on them.
898 * Links and Mouse-1:: How to make @key{Mouse-1} follow a link.
899 * Fields:: The @code{field} property defines
900 fields within the buffer.
901 * Not Intervals:: Why text properties do not use
902 Lisp-visible text intervals.
903
904 Non-ASCII Characters
905
906 * Text Representations:: Unibyte and multibyte representations
907 * Converting Representations:: Converting unibyte to multibyte and vice versa.
908 * Selecting a Representation:: Treating a byte sequence as unibyte or multi.
909 * Character Codes:: How unibyte and multibyte relate to
910 codes of individual characters.
911 * Character Sets:: The space of possible characters codes
912 is divided into various character sets.
913 * Chars and Bytes:: More information about multibyte encodings.
914 * Splitting Characters:: Converting a character to its byte sequence.
915 * Scanning Charsets:: Which character sets are used in a buffer?
916 * Translation of Characters:: Translation tables are used for conversion.
917 * Coding Systems:: Coding systems are conversions for saving files.
918 * Input Methods:: Input methods allow users to enter various
919 non-ASCII characters without special keyboards.
920 * Locales:: Interacting with the POSIX locale.
921
922 Searching and Matching
923
924 * String Search:: Search for an exact match.
925 * Regular Expressions:: Describing classes of strings.
926 * Regexp Search:: Searching for a match for a regexp.
927 * POSIX Regexps:: Searching POSIX-style for the longest match.
928 * Search and Replace:: Internals of @code{query-replace}.
929 * Match Data:: Finding out which part of the text matched
930 various parts of a regexp, after regexp search.
931 * Searching and Case:: Case-independent or case-significant searching.
932 * Standard Regexps:: Useful regexps for finding sentences, pages,...
933
934 Regular Expressions
935
936 * Syntax of Regexps:: Rules for writing regular expressions.
937 * Regexp Example:: Illustrates regular expression syntax.
938 * Regexp Functions:: Functions for operating on regular expressions.
939
940 Syntax Tables
941
942 * Syntax Basics:: Basic concepts of syntax tables.
943 * Syntax Descriptors:: How characters are classified.
944 * Syntax Table Functions:: How to create, examine and alter syntax tables.
945 * Syntax Properties:: Overriding syntax with text properties.
946 * Motion and Syntax:: Moving over characters with certain syntaxes.
947 * Parsing Expressions:: Parsing balanced expressions
948 using the syntax table.
949 * Standard Syntax Tables:: Syntax tables used by various major modes.
950 * Syntax Table Internals:: How syntax table information is stored.
951 * Categories:: Another way of classifying character syntax.
952
953 Syntax Descriptors
954
955 * Syntax Class Table:: Table of syntax classes.
956 * Syntax Flags:: Additional flags each character can have.
957
958 Abbrevs And Abbrev Expansion
959
960 * Abbrev Mode:: Setting up Emacs for abbreviation.
961 * Abbrev Tables:: Creating and working with abbrev tables.
962 * Defining Abbrevs:: Specifying abbreviations and their expansions.
963 * Abbrev Files:: Saving abbrevs in files.
964 * Abbrev Expansion:: Controlling expansion; expansion subroutines.
965 * Standard Abbrev Tables:: Abbrev tables used by various major modes.
966
967 Processes
968
969 * Subprocess Creation:: Functions that start subprocesses.
970 * Shell Arguments:: Quoting an argument to pass it to a shell.
971 * Synchronous Processes:: Details of using synchronous subprocesses.
972 * Asynchronous Processes:: Starting up an asynchronous subprocess.
973 * Deleting Processes:: Eliminating an asynchronous subprocess.
974 * Process Information:: Accessing run-status and other attributes.
975 * Input to Processes:: Sending input to an asynchronous subprocess.
976 * Signals to Processes:: Stopping, continuing or interrupting
977 an asynchronous subprocess.
978 * Output from Processes:: Collecting output from an asynchronous subprocess.
979 * Sentinels:: Sentinels run when process run-status changes.
980 * Query Before Exit:: Whether to query if exiting will kill a process.
981 * Transaction Queues:: Transaction-based communication with subprocesses.
982 * Network:: Opening network connections.
983 * Network Servers:: Network servers let Emacs accept net connections.
984 * Datagrams:: UDP network connections.
985 * Low-Level Network:: Lower-level but more general function
986 to create connections and servers.
987 * Byte Packing:: Using bindat to pack and unpack binary data.
988
989 Receiving Output from Processes
990
991 * Process Buffers:: If no filter, output is put in a buffer.
992 * Filter Functions:: Filter functions accept output from the process.
993 * Decoding Output:: Filters can get unibyte or multibyte strings.
994 * Accepting Output:: How to wait until process output arrives.
995
996 Emacs Display
997
998 * Refresh Screen:: Clearing the screen and redrawing everything on it.
999 * Forcing Redisplay:: Forcing redisplay.
1000 * Truncation:: Folding or wrapping long text lines.
1001 * The Echo Area:: Where messages are displayed.
1002 * Warnings:: Displaying warning messages for the user.
1003 * Progress:: Informing user about progress of a long operation.
1004 * Invisible Text:: Hiding part of the buffer text.
1005 * Selective Display:: Hiding part of the buffer text.
1006 * Temporary Displays:: Displays that go away automatically.
1007 * Overlays:: Use overlays to highlight parts of the buffer.
1008 * Width:: How wide a character or string is on the screen.
1009 * Line Height:: Controlling the height of lines.
1010 * Faces:: A face defines a graphics style
1011 for text characters: font, colors, etc.
1012 * Fringes:: Controlling window fringes.
1013 * Scroll Bars:: Controlling vertical scroll bars.
1014 * Pointer Shape:: Controlling the mouse pointer shape.
1015 * Display Property:: Enabling special display features.
1016 * Images:: Displaying images in Emacs buffers.
1017 * Buttons:: Adding clickable buttons to Emacs buffers.
1018 * Blinking:: How Emacs shows the matching open parenthesis.
1019 * Inverse Video:: Specifying how the screen looks.
1020 * Usual Display:: The usual conventions for displaying nonprinting chars.
1021 * Display Tables:: How to specify other conventions.
1022 * Beeping:: Audible signal to the user.
1023 * Window Systems:: Which window system is being used.
1024
1025 Operating System Interface
1026
1027 * Starting Up:: Customizing Emacs start-up processing.
1028 * Getting Out:: How exiting works (permanent or temporary).
1029 * System Environment:: Distinguish the name and kind of system.
1030 * User Identification:: Finding the name and user id of the user.
1031 * Time of Day:: Getting the current time.
1032 * Time Conversion:: Converting a time from numeric form to a string, or
1033 to calendrical data (or vice versa).
1034 * Processor Run Time:: Getting the run time used by Emacs.
1035 * Time Calculations:: Adding, subtracting, comparing times, etc.
1036 * Timers:: Setting a timer to call a function at a certain time.
1037 * Terminal Input:: Recording terminal input for debugging.
1038 * Terminal Output:: Recording terminal output for debugging.
1039 * Sound Output:: Playing sounds on the computer's speaker.
1040 * X11 Keysyms:: Operating on key symbols for X Windows
1041 * Batch Mode:: Running Emacs without terminal interaction.
1042 * Session Management:: Saving and restoring state with X Session Management.
1043
1044 Starting Up Emacs
1045
1046 * Startup Summary:: Sequence of actions Emacs performs at start-up.
1047 * Init File:: Details on reading the init file (@file{.emacs}).
1048 * Terminal-Specific:: How the terminal-specific Lisp file is read.
1049 * Command-Line Arguments:: How command line arguments are processed,
1050 and how you can customize them.
1051
1052 Getting out of Emacs
1053
1054 * Killing Emacs:: Exiting Emacs irreversibly.
1055 * Suspending Emacs:: Exiting Emacs reversibly.
1056
1057 Tips and Conventions
1058
1059 * Coding Conventions:: Conventions for clean and robust programs.
1060 * Compilation Tips:: Making compiled code run fast.
1061 * Documentation Tips:: Writing readable documentation strings.
1062 * Comment Tips:: Conventions for writing comments.
1063 * Library Headers:: Standard headers for library packages.
1064
1065 GNU Emacs Internals
1066
1067 * Building Emacs:: How to preload Lisp libraries into Emacs.
1068 * Pure Storage:: A kludge to make preloaded Lisp functions sharable.
1069 * Garbage Collection:: Reclaiming space for Lisp objects no longer used.
1070 * Memory Usage:: Info about total size of Lisp objects made so far.
1071 * Writing Emacs Primitives:: Writing C code for Emacs.
1072 * Object Internals:: Data formats of buffers, windows, processes.
1073
1074 Object Internals
1075
1076 * Buffer Internals:: Components of a buffer structure.
1077 * Window Internals:: Components of a window structure.
1078 * Process Internals:: Components of a process structure.
1079 @end menu
1080
1081 @include intro.texi
1082 @include objects.texi
1083 @include numbers.texi
1084 @include strings.texi
1085
1086 @include lists.texi
1087 @include sequences.texi
1088 @include hash.texi
1089 @include symbols.texi
1090 @include eval.texi
1091
1092 @include control.texi
1093 @include variables.texi
1094 @include functions.texi
1095 @include macros.texi
1096
1097 @include customize.texi
1098 @include loading.texi
1099 @include compile.texi
1100 @include advice.texi
1101
1102 @include debugging.texi
1103 @include streams.texi
1104 @include minibuf.texi
1105 @include commands.texi
1106
1107 @include keymaps.texi
1108 @include modes.texi
1109 @include help.texi
1110 @include files.texi
1111
1112 @include backups.texi
1113 @include buffers.texi
1114 @include windows.texi
1115 @include frames.texi
1116
1117 @include positions.texi
1118 @include markers.texi
1119 @include text.texi
1120 @include nonascii.texi
1121
1122 @include searching.texi
1123 @include syntax.texi
1124 @include abbrevs.texi
1125 @include processes.texi
1126
1127 @include display.texi
1128 @include os.texi
1129
1130 @c MOVE to Emacs Manual: include misc-modes.texi
1131
1132 @c appendices
1133
1134 @c REMOVE this: include non-hacker.texi
1135
1136 @include anti.texi
1137 @include doclicense.texi
1138 @include gpl.texi
1139 @include tips.texi
1140 @include internals.texi
1141 @include errors.texi
1142 @include locals.texi
1143 @include maps.texi
1144 @include hooks.texi
1145
1146 @include index.texi
1147
1148 @node New Symbols, , Index, Top
1149 @unnumbered New Symbols Since the Previous Edition
1150
1151 @printindex tp
1152
1153 @c Print the tables of contents
1154 @summarycontents
1155 @contents
1156 @c That's all
1157
1158 @bye
1159
1160 \f
1161 These words prevent "local variables" above from confusing Emacs.
1162
1163 @ignore
1164 arch-tag: f7e9a219-a0e1-4776-b631-08eaa1d49b34
1165 @end ignore