(rmail-msg-restore-non-pruned-header): New
[emacs.git] / man / programs.texi
blob7ea7960177be6646b7f6f812f6290a61f01bc443
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985,86,87,93,94,95,97,99,2000 Free Software Foundation, Inc.
3 @c See file emacs.texi for copying conditions.
4 @node Programs, Building, Text, Top
5 @chapter Editing Programs
6 @cindex Lisp editing
7 @cindex C editing
8 @cindex program editing
10   Emacs provides many features to facilitate editing programs.  These
11 features can:
13 @itemize @bullet
14 @item
15 Move over or kill balanced expressions (@pxref{Lists}).
16 @item
17 Move over or mark top-level expressions, such as @dfn{defuns} in
18 Lisp, or function definitions in C (@pxref{Defuns}).
19 @item
20 Show how parentheses balance (@pxref{Matching}).
21 @item
22 Insert, kill or align comments (@pxref{Comments}).
23 @item
24 Follow the usual indentation conventions of the language
25 (@pxref{Program Indent}).
26 @item
27 Highlight program syntax (@pxref{Font Lock}).
28 @item
29 Compile and debug programs (@pxref{Building}).
30 @end itemize
32 @menu
33 * Misc for Programs::   Other Emacs features useful for editing programs.
34 * Program Modes::       Major modes for editing programs.
35 * Lists::               Expressions with balanced parentheses.
36 * List Commands::       The commands for working with list and sexps.
37 * Defuns::              Each program is made up of separate functions.
38                           There are editing commands to operate on them.
39 * Program Indent::      Adjusting indentation to show the nesting.
40 * Matching::            Insertion of a close-delimiter flashes matching open.
41 * Comments::            Inserting, killing, and aligning comments.
42 * Balanced Editing::    Inserting two matching parentheses at once, etc.
43 * Symbol Completion::   Completion on symbol names of your program or language.
44 * Which Function::      Which Function mode shows which function you are in.
45 * Hideshow::            Displaying blocks selectively.
46 * Glasses::             Making identifiersLikeThis more readable.
47 * Documentation::       Getting documentation of functions you plan to call.
48 * Change Log::          Maintaining a change history for your program.
49 * Authors::             Maintaining an @file{AUTHORS} file.
50 * Tags::                Go direct to any function in your program in one
51                           command.  Tags remembers which file it is in.
52 * Imenu::               Making buffer indexes as menus.
53 * Emerge::              A convenient way of merging two versions of a program.
54 * C Modes::             Special commands of C, C++, Objective-C,
55                           Java, and Pike modes.
56 * Fortran::             Fortran mode and its special features.
57 * Asm Mode::            Asm mode and its special features.
58 @end menu
60 @node Misc for Programs
61 @section Other Features Useful for Editing Programs
63   A number of Emacs commands that aren't designed specifically for
64 editing programs are useful for it nonetheless.
66   The Emacs commands that operate on words, sentences and paragraphs
67 are useful for editing code.  Most symbols names contain words
68 (@pxref{Words}); sentences can be found in strings and comments
69 (@pxref{Sentences}).  Paragraphs in the strict sense may be found in
70 program code (in long comments), but the paragraph commands are useful
71 in other places too, because programming language major modes define
72 paragraphs to begin and end at blank lines (@pxref{Paragraphs}).
73 Judicious use of blank lines to make the program clearer will also
74 provide useful chunks of text for the paragraph commands to work on.
76   The selective display feature is useful for looking at the overall
77 structure of a function (@pxref{Selective Display}).  This feature
78 hides the lines that are indented more than a specified amount.
79 Programming modes often support Outline minor mode (@pxref{Outline
80 Mode}).  The Foldout package provides folding-editor features
81 (@pxref{Foldout}).
83   The ``automatic typing'' features may be useful for writing programs.
84 @xref{Top,,Autotyping, autotype, Autotyping}.
86 @node Program Modes
87 @section Major Modes for Programming Languages
88 @cindex modes for programming languages
90   Emacs has specialized major modes for various programming languages.
91 @xref{Major Modes}.  A programming language major mode typically
92 specifies the syntax of expressions, the customary rules for
93 indentation, how to do syntax highlighting for the language, and how
94 to find the beginning of a function definition.  They often provide
95 facilities for compiling and debugging programs as well.
97   Ideally, Emacs should provide a major mode for each programming
98 language that you might want to edit; if it doesn't have a mode for
99 your favorite language, you can contribute one.  But often the mode
100 for one language can serve for other syntactically similar languages.
101 The major mode for language @var{l} is called @code{@var{l}-mode},
102 and you can enable it by typing @kbd{M-x @var{l}-mode @key{RET}}.
103 @xref{Choosing Modes}.
105 @cindex Perl mode
106 @cindex Icon mode
107 @cindex Awk mode
108 @cindex Makefile mode
109 @cindex Tcl mode
110 @cindex CPerl mode
111 @cindex DSSSL mode
112 @cindex Octave mode
113 @cindex Metafont mode
114 @cindex Modula2 mode
115 @cindex Prolog mode
116 @cindex Simula mode
117 @cindex VHDL mode
118 @cindex M4 mode
119 @cindex Shell-script mode
120 @cindex Delphi mode
121 @cindex PostScript mode
122   The existing programming language major modes include Lisp, Scheme (a
123 variant of Lisp) and the Scheme-based DSSSL expression language, Ada,
124 Awk, C, C++, Delphi (Object Pascal), Fortran (free format and fixed
125 format), Icon, IDL (CORBA), IDLWAVE, Java, Metafont (@TeX{}'s
126 companion for font creation), Modula2, Objective-C, Octave, Pascal,
127 Perl, Pike, PostScript, Prolog, Simula, and Tcl, and VHDL.  There is
128 also a major mode for makefiles, called Makefile mode.  An alternative
129 mode for Perl is called CPerl mode.  Modes are available for the
130 scripting languages of the common Unix shells, VMS DCL, and
131 MS-DOS/MS-Windows @samp{BAT} files.  There are also major modes for
132 editing various sorts of configuration files.
134 @kindex DEL @r{(programming modes)}
135 @findex c-electric-backspace
136   In most programming languages, indentation is likely to vary from
137 line to line.  So the major modes for those languages rebind @key{DEL}
138 to treat a tab as if it were the equivalent number of spaces.  This
139 makes it possible to reduce indentation one column at a time without
140 worrying whether it is made up of spaces or tabs.  Use @kbd{C-b C-d}
141 to delete a tab character before point, in these modes.
143   Programming language modes define paragraphs to be separated only by
144 blank lines, so that the paragraph commands remain useful.  Auto Fill mode,
145 if enabled in a programming language major mode, indents the new lines
146 which it creates.
148   Separate manuals are available for the modes for Ada (@pxref{Top, , Ada
149 Mode, ada-mode, Ada Mode}), C/C++/Objective C/Java/Corba IDL
150 (@pxref{Top, , CC Mode, ccmode, CC Mode}) and the IDLWAVE modes
151 (@pxref{Top, , IDLWAVE, idlwave, IDLWAVE User Manual}).
153 @cindex mode hook
154 @vindex c-mode-hook
155 @vindex lisp-mode-hook
156 @vindex emacs-lisp-mode-hook
157 @vindex lisp-interaction-mode-hook
158 @vindex scheme-mode-hook
159   Turning on a major mode runs a normal hook called the @dfn{mode hook},
160 which is the value of a Lisp variable.  Each major mode has a mode hook,
161 and the hook's name is always made from the mode command's name by
162 adding @samp{-hook}.  For example, turning on C mode runs the hook
163 @code{c-mode-hook}, while turning on Lisp mode runs the hook
164 @code{lisp-mode-hook}.  @xref{Hooks}.
166 @node Lists
167 @section Lists and Sexps
169 @cindex Control-Meta
170   By convention, Emacs keys for dealing with balanced expressions are
171 Control-Meta characters.  They act like the corresponding Control and
172 Meta equivalents, except that they operate on balanced expressions
173 instead of on characters or words.  For instance, the command
174 @kbd{C-M-b} moves backward over a balanced expression, just as
175 @kbd{C-b} moves back over a character and @kbd{M-b} moves back over a
176 word.  These commands are intended for expressions in programming
177 languages, but can be useful for editing any text that has
178 parentheses.
180 @cindex list
181 @cindex sexp
182 @cindex expression
183   These commands fall into two classes.  Some deal only with @dfn{lists}
184 (parenthetical groupings).  They see nothing except parentheses, brackets,
185 braces (whichever ones must balance in the language you are working with),
186 and escape characters that might be used to quote those.
188   The other commands deal with expressions or @dfn{sexps}.  The word ``sexp''
189 is derived from @dfn{s-expression}, the ancient term for an expression in
190 Lisp.  But in Emacs, the notion of ``sexp'' is not limited to Lisp.  It
191 refers to an expression in whatever language your program is written in.
192 Each programming language has its own major mode, which customizes the
193 syntax tables so that expressions in that language count as sexps.
195   Sexps typically include symbols, numbers, and string constants, as well
196 as anything contained in parentheses, brackets or braces.
198   In languages that use prefix and infix operators, such as C, it is not
199 possible for all expressions to be sexps.  For example, C mode does not
200 recognize @samp{foo + bar} as a sexp, even though it @emph{is} a C expression;
201 it recognizes @samp{foo} as one sexp and @samp{bar} as another, with the
202 @samp{+} as punctuation between them.  This is a fundamental ambiguity:
203 both @samp{foo + bar} and @samp{foo} are legitimate choices for the sexp to
204 move over if point is at the @samp{f}.  Note that @samp{(foo + bar)} is a
205 single sexp in C mode.
207   Some languages have obscure forms of expression syntax that nobody
208 has bothered to make Emacs understand properly.
210 @node List Commands
211 @section List And Sexp Commands
213 @c doublewidecommands
214 @table @kbd
215 @item C-M-f
216 Move forward over a sexp (@code{forward-sexp}).
217 @item C-M-b
218 Move backward over a sexp (@code{backward-sexp}).
219 @item C-M-k
220 Kill sexp forward (@code{kill-sexp}).
221 @item C-M-@key{DEL}
222 Kill sexp backward (@code{backward-kill-sexp}).
223 @item C-M-u
224 Move up and backward in list structure (@code{backward-up-list}).
225 @item C-M-d
226 Move down and forward in list structure (@code{down-list}).
227 @item C-M-n
228 Move forward over a list (@code{forward-list}).
229 @item C-M-p
230 Move backward over a list (@code{backward-list}).
231 @item C-M-t
232 Transpose expressions (@code{transpose-sexps}).
233 @item C-M-@@
234 Put mark after following expression (@code{mark-sexp}).
235 @end table
237 @cindex parentheses, moving across
238 @cindex matching parenthesis and braces, moving to
239 @cindex braces, moving across
240 @kindex C-M-f
241 @kindex C-M-b
242 @findex forward-sexp
243 @findex backward-sexp
244   To move forward over a sexp, use @kbd{C-M-f} (@code{forward-sexp}).  If
245 the first significant character after point is an opening delimiter
246 (@samp{(} in Lisp; @samp{(}, @samp{[} or @samp{@{} in C), @kbd{C-M-f}
247 moves past the matching closing delimiter.  If the character begins a
248 symbol, string, or number, @kbd{C-M-f} moves over that.
250   The command @kbd{C-M-b} (@code{backward-sexp}) moves backward over a
251 sexp.  The detailed rules are like those above for @kbd{C-M-f}, but with
252 directions reversed.  If there are any prefix characters (single-quote,
253 backquote and comma, in Lisp) preceding the sexp, @kbd{C-M-b} moves back
254 over them as well.  The sexp commands move across comments as if they
255 were whitespace in most modes.
257   @kbd{C-M-f} or @kbd{C-M-b} with an argument repeats that operation the
258 specified number of times; with a negative argument, it moves in the
259 opposite direction.
261 @cindex deleting parenthesized expressions
262 @kindex C-M-k
263 @findex kill-sexp
264 @kindex C-M-DEL
265 @findex backward-kill-sexp
266   Killing a whole sexp can be done with @kbd{C-M-k} (@code{kill-sexp})
267 or @kbd{C-M-@key{DEL}} (@code{backward-kill-sexp}).  @kbd{C-M-k} kills
268 the characters that @kbd{C-M-f} would move over, and @kbd{C-M-@key{DEL}}
269 kills the characters that @kbd{C-M-b} would move over.
271 @kindex C-M-n
272 @kindex C-M-p
273 @findex forward-list
274 @findex backward-list
275   The @dfn{list commands} move over lists, as the sexp commands do, but skip
276 blithely over any number of other kinds of sexps (symbols, strings, etc.).
277 They are @kbd{C-M-n} (@code{forward-list}) and @kbd{C-M-p}
278 (@code{backward-list}).  The main reason they are useful is that they
279 usually ignore comments (since the comments usually do not contain any
280 lists).@refill
282 @kindex C-M-u
283 @kindex C-M-d
284 @findex backward-up-list
285 @findex down-list
286   @kbd{C-M-n} and @kbd{C-M-p} stay at the same level in parentheses, when
287 that's possible.  To move @emph{up} one (or @var{n}) levels, use @kbd{C-M-u}
288 (@code{backward-up-list}).
289 @kbd{C-M-u} moves backward up past one unmatched opening delimiter.  A
290 positive argument serves as a repeat count; a negative argument reverses
291 direction of motion and also requests repetition, so it moves forward and
292 up one or more levels.@refill
294   To move @emph{down} in list structure, use @kbd{C-M-d}
295 (@code{down-list}).  In Lisp mode, where @samp{(} is the only opening
296 delimiter, this is nearly the same as searching for a @samp{(}.  An
297 argument specifies the number of levels of parentheses to go down.
299 @cindex transposition of parenthesized expressions
300 @kindex C-M-t
301 @findex transpose-sexps
302   A somewhat random-sounding command which is nevertheless handy is
303 @kbd{C-M-t} (@code{transpose-sexps}), which drags the previous sexp
304 across the next one.  An argument serves as a repeat count, and a
305 negative argument drags backwards (thus canceling out the effect of
306 @kbd{C-M-t} with a positive argument).  An argument of zero, rather than
307 doing nothing, transposes the sexps ending after point and the mark.
309 @kindex C-M-@@
310 @findex mark-sexp
311   To set the region around the next sexp in the buffer, use @kbd{C-M-@@}
312 (@code{mark-sexp}), which sets mark at the same place that @kbd{C-M-f}
313 would move to.  @kbd{C-M-@@} takes arguments like @kbd{C-M-f}.  In
314 particular, a negative argument is useful for putting the mark at the
315 beginning of the previous sexp.
317   The list and sexp commands' understanding of syntax is completely
318 controlled by the syntax table.  Any character can, for example, be
319 declared to be an opening delimiter and act like an open parenthesis.
320 @xref{Syntax}.
322 @node Defuns
323 @section Defuns
324 @cindex defuns
326   In Emacs, a parenthetical grouping at the top level in the buffer is
327 called a @dfn{defun}.  The name derives from the fact that most top-level
328 lists in a Lisp file are instances of the special form @code{defun}, but
329 any top-level parenthetical grouping counts as a defun in Emacs parlance
330 regardless of what its contents are, and regardless of the programming
331 language in use.  For example, in C, the body of a function definition is a
332 defun.
335 @cindex move to beginning or end of function
336 @cindex function, move to beginning or end
337 @kindex C-M-a
338 @kindex C-M-e
339 @kindex C-M-h
340 @findex beginning-of-defun
341 @findex end-of-defun
342 @findex mark-defun
343 @c doublewidecommands
344 @table @kbd
345 @item C-M-a
346 Move to beginning of current or preceding defun
347 (@code{beginning-of-defun}).
348 @item C-M-e
349 Move to end of current or following defun (@code{end-of-defun}).
350 @item C-M-h
351 Put region around whole current or following defun (@code{mark-defun}).
352 @end table
354 @cindex move to beginning or end of function
355 @cindex function, move to beginning or end
356 @kindex C-M-a
357 @kindex C-M-e
358 @kindex C-M-h
359 @findex beginning-of-defun
360 @findex end-of-defun
361 @findex mark-defun
362   The commands to move to the beginning and end of the current defun
363 are @kbd{C-M-a} (@code{beginning-of-defun}) and @kbd{C-M-e}
364 (@code{end-of-defun}).  If you repeat one of these commands, or use a
365 positive numeric argument, each repetition moves to the next defun in
366 the direction of motion.
368   @kbd{C-M-a} with a negative argument @minus{}@var{n} moves forward
369 @var{n} times to the next beginning of a defun.  This is not exactly
370 the same place that @kbd{C-M-e} with argument @var{n} would move to;
371 the end of this defun is not usually exactly the same place as the
372 beginning of the following defun.  (Typically whitespace or comments
373 separate them.)  Likewise, @kbd{C-M-e} with a negative argument moves
374 back to an end of a defun, which is not quite the same as @kbd{C-M-a}
375 with a positive argument.
377 @kindex C-M-h @r{(C mode)}
378 @findex c-mark-function
379   If you wish to operate on the current defun, use @kbd{C-M-h}
380 (@code{mark-defun}) which puts point at the beginning and mark at the end
381 of the current or next defun.  For example, this is the easiest way to get
382 ready to move the defun to a different place in the text.  In C mode,
383 @kbd{C-M-h} runs the function @code{c-mark-function}, which is almost the
384 same as @code{mark-defun}; the difference is that it backs up over the
385 argument declarations, function name and returned data type so that the
386 entire C function is inside the region.  @xref{Marking Objects}.
388 @cindex open-parenthesis in leftmost column
389 @cindex ( in leftmost column
390   Emacs assumes that any open-parenthesis found in the leftmost column
391 is the start of a defun.  Therefore, @strong{never put an
392 open-parenthesis at the left margin in a Lisp file unless it is the
393 start of a top-level list.  Never put an open-brace or other opening
394 delimiter at the beginning of a line of C code unless it starts the body
395 of a function.}  The most likely problem case is when you want an
396 opening delimiter at the start of a line inside a string.  To avoid
397 trouble, put an escape character (@samp{\}, in C and Emacs Lisp,
398 @samp{/} in some other Lisp dialects) before the opening delimiter.  It
399 will not affect the contents of the string.
401   In the remotest past, the original Emacs found defuns by moving upward a
402 level of parentheses until there were no more levels to go up.  This always
403 required scanning all the way back to the beginning of the buffer, even for
404 a small function.  To speed up the operation, Emacs was changed to assume
405 that any @samp{(} (or other character assigned the syntactic class of
406 opening-delimiter) at the left margin is the start of a defun.  This
407 heuristic is nearly always right and avoids the costly scan; however,
408 it mandates the convention described above.
410 @node Program Indent
411 @section Indentation for Programs
412 @cindex indentation for programs
414   The best way to keep a program properly indented is to use Emacs to
415 reindent it as you change it.  Emacs has commands to indent properly
416 either a single line, a specified number of lines, or all of the lines
417 inside a single parenthetical grouping.
419 @menu
420 * Basic Indent::        Indenting a single line.
421 * Multi-line Indent::   Commands to reindent many lines at once.
422 * Lisp Indent::         Specifying how each Lisp function should be indented.
423 * C Indent::            Extra features for indenting C and related modes.
424 * Custom C Indent::     Controlling indentation style for C and related modes.
425 @end menu
427   Emacs also provides a Lisp pretty-printer in the library @code{pp}.
428 This program reformats a Lisp object with indentation chosen to look nice.
430 @node Basic Indent
431 @subsection Basic Program Indentation Commands
433    Programming language major modes define the @key{TAB} key to indent
434 according to the usual conventions of the language you are editing.
435 @kbd{C-j} is normally defined to do @key{RET} followed by @key{TAB};
436 thus, it too indents in a mode-specific fashion.
438 @c WideCommands
439 @table @kbd
440 @item @key{TAB}
441 Adjust indentation of current line.
442 @item C-j
443 Equivalent to @key{RET} followed by @key{TAB} (@code{newline-and-indent}).
444 @end table
446 @kindex TAB @r{(programming modes)}
447 @findex c-indent-command
448 @findex indent-line-function
449 @findex indent-for-tab-command
450   The basic indentation command is @key{TAB}, which gives the current line
451 the correct indentation as determined from the previous lines.  The
452 function that @key{TAB} runs depends on the major mode; it is
453 @code{indent-for-tab-command}
454 in Lisp mode, @code{c-indent-command} in C mode, etc.  These functions
455 understand the syntax and conventions of different languages, but they all do
456 conceptually the same job: @key{TAB} in any programming-language major mode
457 inserts or deletes whitespace at the beginning of the current line,
458 independent of where point is in the line.  If point was inside the
459 whitespace at the beginning of the line, @key{TAB} puts it at the end of
460 that whitespace; otherwise, @key{TAB} keeps point fixed with respect to
461 the characters around it.
463   Use @kbd{C-q @key{TAB}} to insert a tab at point.
465 @kindex C-j
466 @findex newline-and-indent
467   When entering lines of new code, use @kbd{C-j}
468 (@code{newline-and-indent}), which is equivalent to a @key{RET}
469 followed by a @key{TAB}.  @kbd{C-j} at the end of a line creates a
470 blank line and then gives it the appropriate indentation.
472   @key{TAB} indents lines that start within a parenthetical grouping
473 each under the preceding line (or the text after the parenthesis).
474 Therefore, if you manually give one of these lines a nonstandard
475 indentation, the lines below will tend to follow it.  This behavior is
476 convenient in cases where you have overridden the standard result of
477 @key{TAB} because you find it unaesthetic for a particular line.
479   Remember that an open-parenthesis, open-brace or other opening delimiter
480 at the left margin is assumed by Emacs (including the indentation routines)
481 to be the start of a function.  Therefore, you must never have an opening
482 delimiter in column zero that is not the beginning of a function, not even
483 inside a string.  This restriction is vital for making the indentation
484 commands fast; you must simply accept it.  @xref{Defuns}, for more
485 information on this.
487   Normally, lines are indented with tabs and spaces.  If you want Emacs
488 to use spaces only, see @ref{Just Spaces}.
490 @node Multi-line Indent
491 @subsection Indenting Several Lines
493   When you wish to reindent several lines of code which have been altered
494 or moved to a different level in the list structure, you have several
495 commands available.
497 @table @kbd
498 @item C-M-q
499 Reindent all the lines within one list (@code{indent-sexp}).
500 @item C-u @key{TAB}
501 Shift an entire list rigidly sideways so that its first line
502 is properly indented.
503 @item C-M-\
504 Reindent all lines in the region (@code{indent-region}).
505 @item M-x indent-code-rigidly
506 Shift all the lines in the region rigidly sideways, but do not alter
507 lines that start inside comments and strings.
508 @end table
510 @kindex C-M-q
511 @findex indent-sexp
512   You can reindent the contents of a single list by positioning point
513 before the beginning of it and typing @kbd{C-M-q} (@code{indent-sexp} in
514 Lisp mode, @code{c-indent-exp} in C mode; also bound to other suitable
515 commands in other modes).  The indentation of the line the sexp starts on
516 is not changed; therefore, only the relative indentation within the list,
517 and not its position, is changed.  To correct the position as well, type a
518 @key{TAB} before the @kbd{C-M-q}.
520 @kindex C-u TAB
521   If the relative indentation within a list is correct but the
522 indentation of its first line is not, go to that line and type @kbd{C-u
523 @key{TAB}}.  @key{TAB} with a numeric argument reindents the current
524 line as usual, then reindents by the same amount all the lines in the
525 grouping starting on the current line.  In other words, it reindents the
526 whole grouping rigidly as a unit.  It is clever, though, and does not
527 alter lines that start inside strings, or C preprocessor lines when in C
528 mode.
530 @findex indent-code-rigidly
531   Another way to specify the range to be reindented is with the region.
532 The command @kbd{C-M-\} (@code{indent-region}) applies @key{TAB} to
533 every line whose first character is between point and mark.  The command
534 @kbd{M-x indent-code-rigidly} rigidly shifts all the lines in the region
535 sideways, like @code{indent-rigidly} does (@pxref{Indentation
536 Commands}), except that it doesn't alter the indentation of lines that
537 start inside comments and strings, unless the region starts inside that
538 comment or string.
540 @node Lisp Indent
541 @subsection Customizing Lisp Indentation
542 @cindex customizing Lisp indentation
544   The indentation pattern for a Lisp expression can depend on the function
545 called by the expression.  For each Lisp function, you can choose among
546 several predefined patterns of indentation, or define an arbitrary one with
547 a Lisp program.
549   The standard pattern of indentation is as follows: the second line of the
550 expression is indented under the first argument, if that is on the same
551 line as the beginning of the expression; otherwise, the second line is
552 indented underneath the function name.  Each following line is indented
553 under the previous line whose nesting depth is the same.
555 @vindex lisp-indent-offset
556   If the variable @code{lisp-indent-offset} is non-@code{nil}, it overrides
557 the usual indentation pattern for the second line of an expression, so that
558 such lines are always indented @code{lisp-indent-offset} more columns than
559 the containing list.
561 @vindex lisp-body-indent
562   The standard pattern is overridden for certain functions.  Functions
563 whose names start with @code{def} always indent the second line by
564 @code{lisp-body-indent} extra columns beyond the open-parenthesis
565 starting the expression.
567   The standard pattern can be overridden in various ways for individual
568 functions, according to the @code{lisp-indent-function} property of the
569 function name.  There are four possibilities for this property:
571 @table @asis
572 @item @code{nil}
573 This is the same as no property; the standard indentation pattern is used.
574 @item @code{defun}
575 The pattern used for function names that start with @code{def} is used for
576 this function also.
577 @item a number, @var{number}
578 The first @var{number} arguments of the function are
579 @dfn{distinguished} arguments; the rest are considered the @dfn{body}
580 of the expression.  A line in the expression is indented according to
581 whether the first argument on it is distinguished or not.  If the
582 argument is part of the body, the line is indented @code{lisp-body-indent}
583 more columns than the open-parenthesis starting the containing
584 expression.  If the argument is distinguished and is either the first
585 or second argument, it is indented @emph{twice} that many extra columns.
586 If the argument is distinguished and not the first or second argument,
587 the standard pattern is followed for that line.
588 @item a symbol, @var{symbol}
589 @var{symbol} should be a function name; that function is called to
590 calculate the indentation of a line within this expression.  The
591 function receives two arguments:
592 @table @asis
593 @item @var{state}
594 The value returned by @code{parse-partial-sexp} (a Lisp primitive for
595 indentation and nesting computation) when it parses up to the
596 beginning of this line.
597 @item @var{pos}
598 The position at which the line being indented begins.
599 @end table
600 @noindent
601 It should return either a number, which is the number of columns of
602 indentation for that line, or a list whose car is such a number.  The
603 difference between returning a number and returning a list is that a
604 number says that all following lines at the same nesting level should
605 be indented just like this one; a list says that following lines might
606 call for different indentations.  This makes a difference when the
607 indentation is being computed by @kbd{C-M-q}; if the value is a
608 number, @kbd{C-M-q} need not recalculate indentation for the following
609 lines until the end of the list.
610 @end table
612 @node C Indent
613 @subsection Commands for C Indentation
615   Here are the commands for indentation in C mode and related modes:
617 @table @code
618 @item C-c C-q
619 @kindex C-c C-q @r{(C mode)}
620 @findex c-indent-defun
621 Reindent the current top-level function definition or aggregate type
622 declaration (@code{c-indent-defun}).
624 @item C-M-q
625 @kindex C-M-q @r{(C mode)}
626 @findex c-indent-exp
627 Reindent each line in the balanced expression that follows point
628 (@code{c-indent-exp}).  A prefix argument inhibits error checking and
629 warning messages about invalid syntax.
631 @item @key{TAB}
632 @findex c-indent-command
633 Reindent the current line, and/or in some cases insert a tab character
634 (@code{c-indent-command}).
636 If @code{c-tab-always-indent} is @code{t}, this command always reindents
637 the current line and does nothing else.  This is the default.
639 If that variable is @code{nil}, this command reindents the current line
640 only if point is at the left margin or in the line's indentation;
641 otherwise, it inserts a tab (or the equivalent number of spaces,
642 if @code{indent-tabs-mode} is @code{nil}).
644 Any other value (not @code{nil} or @code{t}) means always reindent the
645 line, and also insert a tab if within a comment, a string, or a
646 preprocessor directive.
648 @item C-u @key{TAB}
649 Reindent the current line according to its syntax; also rigidly reindent
650 any other lines of the expression that starts on the current line.
651 @xref{Multi-line Indent}.
652 @end table
654   To reindent the whole current buffer, type @kbd{C-x h C-M-\}.  This
655 first selects the whole buffer as the region, then reindents that
656 region.
658   To reindent the current block, use @kbd{C-M-u C-M-q}.  This moves
659 to the front of the block and then reindents it all.
661 @node Custom C Indent
662 @subsection Customizing C Indentation
664   C mode and related modes use a simple yet flexible mechanism for
665 customizing indentation.  The mechanism works in two steps: first it
666 classifies the line syntactically according to its contents and context;
667 second, it associates each kind of syntactic construct with an
668 indentation offset which you can customize.
670 @menu
671 * Syntactic Analysis::
672 * Indentation Calculation::
673 * Changing Indent Style::
674 * Syntactic Symbols::
675 * Variables for C Indent::
676 * C Indent Styles::
677 @end menu
679 @node Syntactic Analysis
680 @subsubsection Step 1---Syntactic Analysis
681 @cindex syntactic analysis
683   In the first step, the C indentation mechanism looks at the line
684 before the one you are currently indenting and determines the syntactic
685 components of the construct on that line.  It builds a list of these
686 syntactic components, each of which contains a @dfn{syntactic symbol}
687 and sometimes also a buffer position.  Some syntactic symbols describe
688 grammatical elements, for example @code{statement} and
689 @code{substatement}; others describe locations amidst grammatical
690 elements, for example @code{class-open} and @code{knr-argdecl}.
692   Conceptually, a line of C code is always indented relative to the
693 indentation of some line higher up in the buffer.  This is represented
694 by the buffer positions in the syntactic component list.
696   Here is an example.  Suppose we have the following code in a C++ mode
697 buffer (the line numbers don't actually appear in the buffer):
699 @example
700 1: void swap (int& a, int& b)
701 2: @{
702 3:   int tmp = a;
703 4:   a = b;
704 5:   b = tmp;
705 6: @}
706 @end example
708   If you type @kbd{C-c C-s} (which runs the command
709 @code{c-show-syntactic-information}) on line 4, it shows the result of
710 the indentation mechanism for that line:
712 @example
713 syntactic analysis: ((statement . 32))
714 @end example
716   This indicates that the line is a statement and it is indented
717 relative to buffer position 32, which happens to be the @samp{i} in
718 @code{int} on line 3.  If you move the cursor to line 3 and type
719 @kbd{C-c C-s}, it displays this:
721 @example
722 syntactic analysis: ((defun-block-intro . 28))
723 @end example
725   This indicates that the @code{int} line is the first statement in a
726 block, and is indented relative to buffer position 28, which is the
727 brace just after the function header.
729 @noindent
730 Here is another example:
732 @example
733 1: int add (int val, int incr, int doit)
734 2: @{
735 3:   if (doit)
736 4:     @{
737 5:       return (val + incr);
738 6:     @}
739 7:   return (val);
740 8: @}
741 @end example
743 @noindent
744 Typing @kbd{C-c C-s} on line 4 displays this:
746 @example
747 syntactic analysis: ((substatement-open . 43))
748 @end example
750   This says that the brace @emph{opens} a substatement block.  By the
751 way, a @dfn{substatement} indicates the line after an @code{if},
752 @code{else}, @code{while}, @code{do}, @code{switch}, @code{for},
753 @code{try}, @code{catch}, @code{finally}, or @code{synchronized}
754 statement.
756 @cindex syntactic component
757 @cindex syntactic symbol
758 @vindex c-syntactic-context
759   Within the C indentation commands, after a line has been analyzed
760 syntactically for indentation, the variable @code{c-syntactic-context}
761 contains a list that describes the results.  Each element in this list
762 is a @dfn{syntactic component}: a cons cell containing a syntactic
763 symbol and (optionally) its corresponding buffer position.  There may be
764 several elements in a component list; typically only one element has a
765 buffer position.
767 @node Indentation Calculation
768 @subsubsection  Step 2---Indentation Calculation
769 @cindex Indentation Calculation
771   The C indentation mechanism calculates the indentation for the current
772 line using the list of syntactic components, @code{c-syntactic-context},
773 derived from syntactic analysis.  Each component is a cons cell that
774 contains a syntactic symbol and may also contain a buffer position.
776   Each component contributes to the final total indentation of the line
777 in two ways.  First, the syntactic symbol identifies an element of
778 @code{c-offsets-alist}, which is an association list mapping syntactic
779 symbols into indentation offsets.  Each syntactic symbol's offset adds
780 to the total indentation.  Second, if the component includes a buffer
781 position, the column number of that position adds to the indentation.
782 All these offsets and column numbers, added together, give the total
783 indentation.
785   The following examples demonstrate the workings of the C indentation
786 mechanism:
788 @example
789 1: void swap (int& a, int& b)
790 2: @{
791 3:   int tmp = a;
792 4:   a = b;
793 5:   b = tmp;
794 6: @}
795 @end example
797   Suppose that point is on line 3 and you type @key{TAB} to reindent the
798 line.  As explained above (@pxref{Syntactic Analysis}), the syntactic
799 component list for that line is:
801 @example
802 ((defun-block-intro . 28))
803 @end example
805   In this case, the indentation calculation first looks up
806 @code{defun-block-intro} in the @code{c-offsets-alist} alist.  Suppose
807 that it finds the integer 2; it adds this to the running total
808 (initialized to zero), yielding a updated total indentation of 2 spaces.
810   The next step is to find the column number of buffer position 28.
811 Since the brace at buffer position 28 is in column zero, this adds 0 to
812 the running total.  Since this line has only one syntactic component,
813 the total indentation for the line is 2 spaces.
815 @example
816 1: int add (int val, int incr, int doit)
817 2: @{
818 3:   if (doit)
819 4:     @{
820 5:       return(val + incr);
821 6:     @}
822 7:   return(val);
823 8: @}
824 @end example
826   If you type @key{TAB} on line 4, the same process is performed, but
827 with different data.  The syntactic component list for this line is:
829 @example
830 ((substatement-open . 43))
831 @end example
833    Here, the indentation calculation's first job is to look up the
834 symbol @code{substatement-open} in @code{c-offsets-alist}.  Let's assume
835 that the offset for this symbol is 2.  At this point the running total
836 is 2 (0 + 2 = 2).  Then it adds the column number of buffer position 43,
837 which is the @samp{i} in @code{if} on line 3.  This character is in
838 column 2 on that line.  Adding this yields a total indentation of 4
839 spaces.
841 @vindex c-strict-syntax-p
842    If a syntactic symbol in the analysis of a line does not appear in
843 @code{c-offsets-alist}, it is ignored.
845 @node Changing Indent Style
846 @subsubsection Changing Indentation Style
848    There are two ways to customize the indentation style for the C-like
849 modes.  First, you can select one of several predefined styles, each of
850 which specifies offsets for all the syntactic symbols.  For more
851 flexibility, you can customize the handling of individual syntactic
852 symbols.  @xref{Syntactic Symbols}, for a list of all defined syntactic
853 symbols.
855 @table @kbd
856 @item M-x c-set-style @key{RET} @var{style} @key{RET}
857 Select predefined indentation style @var{style}.  Type @kbd{?} when
858 entering @var{style} to see a list of supported styles; to find out what
859 a style looks like, select it and reindent some C code, e.g., by typing
860 @key{TAB} at the leftmost column of a few lines.  @xref{C Indent
861 Styles}, for more details about available styles and their
862 customizations.
864 @item C-c C-o @var{symbol} @key{RET} @var{offset} @key{RET}
865 Set the indentation offset for syntactic symbol @var{symbol}
866 (@code{c-set-offset}).  The second argument @var{offset} specifies the
867 new indentation offset.
868 @end table
870    The @code{c-offsets-alist} variable controls the amount of
871 indentation to give to each syntactic symbol.  Its value is an
872 association list, and each element of the list has the form
873 @code{(@var{syntactic-symbol} . @var{offset})}.  By changing the offsets
874 for various syntactic symbols, you can customize indentation in fine
875 detail.  To change this alist, use @code{c-set-offset} (see below).
877    Each offset value in @code{c-offsets-alist} can be an integer, a
878 function or variable name, a list, or one of the following symbols: @code{+},
879 @code{-}, @code{++}, @code{--}, @code{*}, or @code{/}, indicating positive or negative
880 multiples of the variable @code{c-basic-offset}.  Thus, if you want to
881 change the levels of indentation to be 3 spaces instead of 2 spaces, set
882 @code{c-basic-offset} to 3.
884    Using a function as the offset value provides the ultimate flexibility
885 in customizing indentation.  The function is called with a single
886 argument containing the @code{cons} of the syntactic symbol and
887 the buffer position, if any.  The function should return an integer
888 offset.
890    If the offset value is a list, its elements are processed according
891 to the rules above until a non-@code{nil} value is found.  That value is
892 then added to the total indentation in the normal manner.  The primary
893 use for this is to combine the results of several functions.
895 @kindex C-c C-o @r{(C mode)}
896 @findex c-set-offset
897    The command @kbd{C-c C-o} (@code{c-set-offset}) is the easiest way to
898 set offsets, both interactively or in your @file{~/.emacs} file.  First
899 specify the syntactic symbol, then the offset you want.  @xref{Syntactic
900 Symbols}, for a list of valid syntactic symbols and their meanings.
902 @node Syntactic Symbols
903 @subsubsection Syntactic Symbols
905    Here is a table of valid syntactic symbols for indentation in C and
906 related modes, with their syntactic meanings.  Normally, most of these
907 symbols are assigned offsets in @code{c-offsets-alist}.
909 @table @code
910 @item string
911 Inside a multi-line string.
913 @item c
914 Inside a multi-line C style block comment.
916 @item defun-open
917 On a brace that opens a function definition.
919 @item defun-close
920 On a brace that closes a function definition.
922 @item defun-block-intro
923 In the first line in a top-level defun.
925 @item class-open
926 On a brace that opens a class definition.
928 @item class-close
929 On a brace that closes a class definition.
931 @item inline-open
932 On a brace that opens an in-class inline method.
934 @item inline-close
935 On a brace that closes an in-class inline method.
937 @item extern-lang-open
938 On a brace that opens an external language block.
940 @item extern-lang-close
941 On a brace that closes an external language block.
943 @item func-decl-cont
944 The region between a function definition's argument list and the defun
945 opening brace (excluding K&R function definitions).  In C, you cannot
946 put anything but whitespace and comments between them; in C++ and Java,
947 @code{throws} declarations and other things can appear in this context.
949 @item knr-argdecl-intro
950 On the first line of a K&R C argument declaration.
952 @item knr-argdecl
953 In one of the subsequent lines in a K&R C argument declaration.
955 @item topmost-intro
956 On the first line in a topmost construct definition.
958 @item topmost-intro-cont
959 On the topmost definition continuation lines.
961 @item member-init-intro
962 On the first line in a member initialization list.
964 @item member-init-cont
965 On one of the subsequent member initialization list lines.
967 @item inher-intro
968 On the first line of a multiple inheritance list.
970 @item inher-cont
971 On one of the subsequent multiple inheritance lines.
973 @item block-open
974 On a statement block open brace.
976 @item block-close
977 On a statement block close brace.
979 @item brace-list-open
980 On the opening brace of an @code{enum} or @code{static} array list.
982 @item brace-list-close
983 On the closing brace of an @code{enum} or @code{static} array list.
985 @item brace-list-intro
986 On the first line in an @code{enum} or @code{static} array list.
988 @item brace-list-entry
989 On one of the subsequent lines in an @code{enum} or @code{static} array
990 list.
992 @item brace-entry-open
993 On one of the subsequent lines in an @code{enum} or @code{static} array
994 list, when the line begins with an open brace.
996 @item statement
997 On an ordinary statement.
999 @item statement-cont
1000 On a continuation line of a statement.
1002 @item statement-block-intro
1003 On the first line in a new statement block.
1005 @item statement-case-intro
1006 On the first line in a @code{case} ``block.''
1008 @item statement-case-open
1009 On the first line in a @code{case} block starting with brace.
1011 @item inexpr-statement
1012 On a statement block inside an expression.  This is used for a GNU
1013 extension to the C language, and for Pike special functions that take a
1014 statement block as an argument.
1016 @item inexpr-class
1017 On a class definition inside an expression.  This is used for anonymous
1018 classes and anonymous array initializers in Java.
1020 @item substatement
1021 On the first line after an @code{if}, @code{while}, @code{for},
1022 @code{do}, or @code{else}.
1024 @item substatement-open
1025 On the brace that opens a substatement block.
1027 @item case-label
1028 On a @code{case} or @code{default} label.
1030 @item access-label
1031 On a C++ @code{private}, @code{protected}, or @code{public} access label.
1033 @item label
1034 On any ordinary label.
1036 @item do-while-closure
1037 On the @code{while} that ends a @code{do}-@code{while} construct.
1039 @item else-clause
1040 On the @code{else} of an @code{if}-@code{else} construct.
1042 @item catch-clause
1043 On the @code{catch} and @code{finally} lines in
1044 @code{try}@dots{}@code{catch} constructs in C++ and Java.
1046 @item comment-intro
1047 On a line containing only a comment introduction.
1049 @item arglist-intro
1050 On the first line in an argument list.
1052 @item arglist-cont
1053 On one of the subsequent argument list lines when no arguments follow on
1054 the same line as the arglist opening parenthesis.
1056 @item arglist-cont-nonempty
1057 On one of the subsequent argument list lines when at least one argument
1058 follows on the same line as the arglist opening parenthesis.
1060 @item arglist-close
1061 On the closing parenthesis of an argument list.
1063 @item stream-op
1064 On one of the lines continuing a stream operator construct.
1066 @item inclass
1067 On a construct that is nested inside a class definition.  The
1068 indentation is relative to the open brace of the class definition.
1070 @item inextern-lang
1071 On a construct that is nested inside an external language block.
1073 @item inexpr-statement
1074 On the first line of statement block inside an expression.  This is used
1075 for the GCC extension to C that uses the syntax @code{(@{ @dots{} @})}.
1076 It is also used for the special functions that takes a statement block
1077 as an argument in Pike.
1079 @item inexpr-class
1080 On the first line of a class definition inside an expression.  This is
1081 used for anonymous classes and anonymous array initializers in Java.
1083 @item cpp-macro
1084 On the start of a cpp macro.
1086 @item friend
1087 On a C++ @code{friend} declaration.
1089 @item objc-method-intro
1090 On the first line of an Objective-C method definition.
1092 @item objc-method-args-cont
1093 On one of the lines continuing an Objective-C method definition.
1095 @item objc-method-call-cont
1096 On one of the lines continuing an Objective-C method call.
1098 @item inlambda
1099 Like @code{inclass}, but used inside lambda (i.e. anonymous) functions.  Only
1100 used in Pike.
1102 @item lambda-intro-cont
1103 On a line continuing the header of a lambda function, between the
1104 @code{lambda} keyword and the function body.  Only used in Pike.
1105 @end table
1107 @node Variables for C Indent
1108 @subsubsection Variables for C Indentation
1110   This section describes additional variables which control the
1111 indentation behavior of C mode and related mode.
1113 @table @code
1114 @item c-offsets-alist
1115 @vindex c-offsets-alist
1116 Association list of syntactic symbols and their indentation offsets.
1117 You should not set this directly, only with @code{c-set-offset}.
1118 @xref{Changing Indent Style}, for details.
1120 @item c-style-alist
1121 @vindex c-style-alist
1122 Variable for defining indentation styles; see below.
1124 @item c-basic-offset
1125 @vindex c-basic-offset
1126 Amount of basic offset used by @code{+} and @code{-} symbols in
1127 @code{c-offsets-alist}.@refill
1129 @item c-special-indent-hook
1130 @vindex c-special-indent-hook
1131 Hook for user-defined special indentation adjustments.  This hook is
1132 called after a line is indented by C mode and related modes.
1133 @end table
1135   The variable @code{c-style-alist} specifies the predefined indentation
1136 styles.  Each element has form @code{(@var{name}
1137 @var{variable-setting}@dots{})}, where @var{name} is the name of the
1138 style.  Each @var{variable-setting} has the form @code{(@var{variable}
1139 . @var{value})}; @var{variable} is one of the customization variables
1140 used by C mode, and @var{value} is the value for that variable when
1141 using the selected style.
1143   When @var{variable} is @code{c-offsets-alist}, that is a special case:
1144 @var{value} is appended to the front of the value of @code{c-offsets-alist}
1145 instead of replacing that value outright.  Therefore, it is not necessary
1146 for @var{value} to specify each and every syntactic symbol---only those
1147 for which the style differs from the default.
1149   The indentation of lines containing only comments is also affected by
1150 the variable @code{c-comment-only-line-offset} (@pxref{Comments in C}).
1152 @node C Indent Styles
1153 @subsubsection C Indentation Styles
1154 @cindex c indentation styles
1156   A @dfn{C style} is a collection of indentation style customizations
1157 that can be used in C mode and the related modes.  Emacs comes with
1158 several predefined C styles, including @code{gnu}, @code{k&r},
1159 @code{bsd}, @code{stroustrup}, @code{linux}, @code{python},
1160 @code{java}, @code{whitesmith}, @code{ellemtel}, @code{cc-mode}, and
1161 @code{user}.  Some of these styles are primarily intended for one
1162 language, but any of them can be used with any of the languages
1163 supported by these modes.
1165 @findex c-set-style
1166   To choose a style for the current buffer, use the command @kbd{M-x
1167 c-set-style}.  Specify a style name as an argument (case is not
1168 significant in C style names).  This command affects the current
1169 buffer only, but it affects only future invocations of the indentation
1170 command; it does not change the indentation of the code in the buffer.
1171 To reindent the text, you can type @kbd{C-x h C-M-\}.
1173 @vindex c-default-style
1174   You can also set the variable @code{c-default-style} to specify the
1175 default style for various major modes.  Its value should be an alist,
1176 in which each element specifies one major mode and which indentation
1177 style to use for it.  For example,
1179 @example
1180 (setq c-default-style
1181       '((java-mode . "java") (other . "gnu")))
1182 @end example
1184 @noindent
1185 specifies an explicit choice for Java mode, and the default @samp{gnu}
1186 style for the other C-like modes.  This variable takes effect when you
1187 switch to one of the C-like major modes; thus, if you specify a new
1188 default style for Java mode, you can make it take effect in an
1189 existing Java mode buffer by typing @kbd{M-x java-mode} there.
1191   The @code{gnu} style specifies the formatting recommended by the GNU
1192 Project for C; it is the default, so as to encourage use of our
1193 recommended style.  If you make changes in variables such as
1194 @code{c-basic-offset} and @code{c-offsets-alist} in your
1195 @file{~/.emacs} file, those changes override what the @code{gnu} style
1196 specifies.
1198 @findex c-add-style
1199   To define a new C indentation style, call the function
1200 @code{c-add-style}:
1202 @example
1203 (c-add-style @var{name} @var{values} @var{use-now})
1204 @end example
1206 @noindent
1207 Here @var{name} is the name of the new style (a string), and
1208 @var{values} is an alist whose elements have the form
1209 @code{(@var{variable} . @var{value})}.  The variables you specify
1210 should be among those documented in @ref{Variables for C Indent}.  If
1211 @var{use-now} is non-@code{nil}, @code{c-add-style} selects the new
1212 style after defining it.
1214 @node Matching
1215 @section Automatic Display Of Matching Parentheses
1216 @cindex matching parentheses
1217 @cindex parentheses, displaying matches
1219   The Emacs parenthesis-matching feature is designed to show
1220 automatically how parentheses match in the text.  Whenever you type a
1221 self-inserting character that is a closing delimiter, the cursor moves
1222 momentarily to the location of the matching opening delimiter, provided
1223 that is on the screen.  If it is not on the screen, some text near it is
1224 displayed in the echo area.  Either way, you can tell what grouping is
1225 being closed off.
1227   In Lisp, automatic matching applies only to parentheses.  In C, it
1228 applies to braces and brackets too.  Emacs knows which characters to regard
1229 as matching delimiters based on the syntax table, which is set by the major
1230 mode.  @xref{Syntax}.
1232   If the opening delimiter and closing delimiter are mismatched---such as
1233 in @samp{[x)}---a warning message is displayed in the echo area.  The
1234 correct matches are specified in the syntax table.
1236 @vindex blink-matching-paren
1237 @vindex blink-matching-paren-distance
1238 @vindex blink-matching-delay
1239   Three variables control parenthesis match display.
1240 @code{blink-matching-paren} turns the feature on or off; @code{nil}
1241 turns it off, but the default is @code{t} to turn match display on.
1243   @code{blink-matching-delay} says how many seconds to leave the
1244 cursor on the matching open parenthesis, before bringing it back to
1245 the real location of point; the default is 1, but on some systems it
1246 is useful to specify a fraction of a second.
1248   @code{blink-matching-paren-distance} specifies how many characters
1249 back to search to find the matching opening delimiter.  If the match
1250 is not found in that far, scanning stops, and nothing is displayed.
1251 This is to prevent scanning for the matching delimiter from wasting
1252 lots of time when there is no match.  The default is 25600.
1254 @cindex Show Paren mode
1255 @cindex highlighting matching parentheses
1256 @findex show-paren-mode
1257   Show Paren mode provides a more powerful kind of automatic
1258 parenthesis matching.  Whenever point is after a close parenthesis,
1259 the close parenthesis and its matching open parenthesis are both
1260 highlighted; otherwise, if point is before an open parenthesis, the
1261 matching close parenthesis is highlighted.  (There is no need to
1262 highlight the open parenthesis after point because the cursor appears
1263 on top of that character.)  Use the command @kbd{M-x show-paren-mode}
1264 to enable or disable this mode.
1266   By default, @code{show-paren-mode} uses colors to highlight the
1267 parentheses.  However, if your display doesn't support colors, you can
1268 customize the faces @code{show-paren-match-face} and
1269 @code{show-paren-mismatch-face} to use other attributes, such as bold or
1270 underline.  @xref{Face Customization}.
1272 @node Comments
1273 @section Manipulating Comments
1274 @cindex comments
1276   Because comments are such an important part of programming, Emacs
1277 provides special commands for editing and inserting comments.
1279 @menu
1280 * Comment Commands::
1281 * Multi-Line Comments::
1282 * Options for Comments::
1283 @end menu
1285 @node Comment Commands
1286 @subsection Comment Commands
1287 @cindex indentation for comments
1289   The comment commands in this table insert, kill and align comments.
1290 They are described in this section and following sections.
1292 @table @kbd
1293 @item M-;
1294 Insert or realign comment on current line; alternatively, comment or
1295 uncomment the region (@code{comment-dwim}).
1296 @item C-u M-;
1297 Kill comment on current line (@code{comment-kill}).
1298 @item C-x ;
1299 Set comment column (@code{comment-set-column}).
1300 @item C-M-j
1301 Like @key{RET} followed by inserting and aligning a comment
1302 (@code{comment-indent-new-line}).
1303 @item M-x comment-region
1304 Add or remove comment delimiters on all the lines in the region.
1305 @end table
1307 @kindex M-;
1308 @findex comment-dwim
1309   The command to create or align a comment is @kbd{M-;}
1310 (@code{comment-dwim}).  The word ``dwim'' is an acronym for ``Do What
1311 I Mean''; it indicates that this command can be used for many
1312 different jobs relating to comments, depending on the situation where
1313 you use it.
1315   If there is no comment already on the line, @kbd{M-;} inserts a new
1316 comment, aligned at a specific column called the @dfn{comment column}.
1317 The new comment begins with the string Emacs thinks comments should
1318 start with (the value of @code{comment-start}; see below).  Point is
1319 after that string, so you can insert the text of the comment right
1320 away.  If the major mode has specified a string to terminate comments,
1321 @kbd{M-;} inserts that too, to keep the syntax valid.
1323   If the text of the line extends past the comment column, then the
1324 comment start string is indented to a suitable boundary (usually, at
1325 least one space is inserted).
1327   You can also use @kbd{M-;} to align an existing comment.  If a line
1328 already contains the comment-start string, @kbd{M-;} reindents it to
1329 the conventional alignment and moves point after it.  (Exception:
1330 comments starting in column 0 are not moved.)  Even when an existing
1331 comment is properly aligned, @kbd{M-;} is still useful for moving
1332 directly to the start of the text inside the comment.
1334 @findex comment-kill
1335 @kindex C-u M-;
1336   @kbd{C-u M-;} kills any comment on the current line, along with the
1337 whitespace before it.  To reinsert the comment on another line, move
1338 to the end of that line, do @kbd{C-y}, and then do @kbd{M-;} to
1339 realign it.
1341   Note that @kbd{C-u M-;} is not a distinct key; it is @kbd{M-;}
1342 (@code{comment-dwim}) with a prefix argument.  That command is
1343 programmed so that when it receives a prefix argument it calls
1344 @code{comment-kill}.  However, @code{comment-kill} is a valid command
1345 in its own right, and you can bind it directly to a key if you wish.
1347   @kbd{M-;} does two other jobs when used with an active region in
1348 Transient Mark mode (@pxref{Transient Mark}).  Then it either adds or
1349 removes comment delimiters on each line of the region.  (If every line
1350 is a comment, it removes comment delimiters from each; otherwise, it
1351 adds comment delimiters to each.)  If you are not using Transient Mark
1352 mode, then you should use the commands @code{comment-region} and
1353 @code{uncomment-region} to do these jobs (@pxref{Multi-Line Comments}).
1354 A prefix argument used in these circumstances specifies how many
1355 comment delimiters to add or how many to delete.
1357   Some major modes have special rules for indenting certain kinds of
1358 comments in certain contexts.  For example, in Lisp code, comments which
1359 start with two semicolons are indented as if they were lines of code,
1360 instead of at the comment column.  Comments which start with three
1361 semicolons are supposed to start at the left margin.  Emacs understands
1362 these conventions by indenting a double-semicolon comment using @key{TAB},
1363 and by not changing the indentation of a triple-semicolon comment at all.
1365 @example
1366 ;; This function is just an example
1367 ;;; Here either two or three semicolons are appropriate.
1368 (defun foo (x)
1369 ;;; And now, the first part of the function:
1370   ;; The following line adds one.
1371   (1+ x))           ; This line adds one.
1372 @end example
1374   In C code, a comment preceded on its line by nothing but whitespace
1375 is indented like a line of code.
1377 @node Multi-Line Comments
1378 @subsection Multiple Lines of Comments
1380 @kindex C-M-j
1381 @cindex blank lines in programs
1382 @findex comment-indent-new-line
1383   If you are typing a comment and wish to continue it on another line,
1384 you can use the command @kbd{C-M-j} (@code{comment-indent-new-line}).
1385 This terminates the comment you are typing, creates a new blank line
1386 afterward, and begins a new comment indented under the old one.  When
1387 Auto Fill mode is on, going past the fill column while typing a comment
1388 causes the comment to be continued in just this fashion.  If point is
1389 not at the end of the line when @kbd{C-M-j} is typed, the text on
1390 the rest of the line becomes part of the new comment line.
1392 @findex comment-region
1393   To turn existing lines into comment lines, use the @kbd{M-x
1394 comment-region} command.  It adds comment delimiters to the lines that start
1395 in the region, thus commenting them out.  With a negative argument, it
1396 does the opposite---it deletes comment delimiters from the lines in the
1397 region.
1399   With a positive argument, @code{comment-region} duplicates the last
1400 character of the comment start sequence it adds; the argument specifies
1401 how many copies of the character to insert.  Thus, in Lisp mode,
1402 @kbd{C-u 2 M-x comment-region} adds @samp{;;} to each line.  Duplicating
1403 the comment delimiter is a way of calling attention to the comment.  It
1404 can also affect how the comment is indented.  In Lisp, for proper
1405 indentation, you should use an argument of two or three, if between defuns;
1406 if within a defun, it must be three.
1408 @node Options for Comments
1409 @subsection Options Controlling Comments
1411 @vindex comment-column
1412 @kindex C-x ;
1413 @findex comment-set-column
1414   The comment column is stored in the variable @code{comment-column}.  You
1415 can set it to a number explicitly.  Alternatively, the command @kbd{C-x ;}
1416 (@code{comment-set-column}) sets the comment column to the column point is
1417 at.  @kbd{C-u C-x ;} sets the comment column to match the last comment
1418 before point in the buffer, and then does a @kbd{M-;} to align the
1419 current line's comment under the previous one.
1421   The variable @code{comment-column} is per-buffer: setting the variable
1422 in the normal fashion affects only the current buffer, but there is a
1423 default value which you can change with @code{setq-default}.
1424 @xref{Locals}.  Many major modes initialize this variable for the
1425 current buffer.
1427 @vindex comment-start-skip
1428   The comment commands recognize comments based on the regular
1429 expression that is the value of the variable @code{comment-start-skip}.
1430 Make sure this regexp does not match the null string.  It may match more
1431 than the comment starting delimiter in the strictest sense of the word;
1432 for example, in C mode the value of the variable is
1433 @c This stops M-q from breaking the line inside that @code.
1434 @code{@w{"/\\*+ *\\|//+ *""}}, which matches extra stars and spaces
1435 after the @samp{/*} itself, and accepts C++ style comments also.
1436 (Note that @samp{\\} is needed in Lisp syntax to include a @samp{\} in
1437 the string, which is needed to deny the first star its special meaning
1438 in regexp syntax.  @xref{Regexps}.)
1440 @vindex comment-start
1441 @vindex comment-end
1442   When a comment command makes a new comment, it inserts the value of
1443 @code{comment-start} to begin it.  The value of @code{comment-end} is
1444 inserted after point, so that it will follow the text that you will insert
1445 into the comment.  In C mode, @code{comment-start} has the value
1446 @w{@code{"/* "}} and @code{comment-end} has the value @w{@code{" */"}}.
1448 @vindex comment-padding
1449   The variable @code{comment-padding} specifies how many spaces
1450 @code{comment-region} should insert on each line between the
1451 comment delimiter and the line's original text.  The default is 1,
1452 to insert one space.
1454 @vindex comment-multi-line
1455   The variable @code{comment-multi-line} controls how @kbd{C-M-j}
1456 (@code{indent-new-comment-line}) behaves when used inside a comment.  If
1457 @code{comment-multi-line} is @code{nil}, as it normally is, then the
1458 comment on the starting line is terminated and a new comment is started
1459 on the new following line.  If @code{comment-multi-line} is not
1460 @code{nil}, then the new following line is set up as part of the same
1461 comment that was found on the starting line.  This is done by not
1462 inserting a terminator on the old line, and not inserting a starter on
1463 the new line.  In languages where multi-line comments work, the choice
1464 of value for this variable is a matter of taste.
1466 @vindex comment-indent-function
1467   The variable @code{comment-indent-function} should contain a function
1468 that will be called to compute the indentation for a newly inserted
1469 comment or for aligning an existing comment.  It is set differently by
1470 various major modes.  The function is called with no arguments, but with
1471 point at the beginning of the comment, or at the end of a line if a new
1472 comment is to be inserted.  It should return the column in which the
1473 comment ought to start.  For example, in Lisp mode, the indent hook
1474 function bases its decision on how many semicolons begin an existing
1475 comment, and on the code in the preceding lines.
1477 @node Balanced Editing
1478 @section Editing Without Unbalanced Parentheses
1480 @table @kbd
1481 @item M-(
1482 Put parentheses around next sexp(s) (@code{insert-parentheses}).
1483 @item M-)
1484 Move past next close parenthesis and reindent
1485 (@code{move-past-close-and-reindent}).
1486 @end table
1488 @kindex M-(
1489 @kindex M-)
1490 @findex insert-parentheses
1491 @findex move-past-close-and-reindent
1492   The commands @kbd{M-(} (@code{insert-parentheses}) and @kbd{M-)}
1493 (@code{move-past-close-and-reindent}) are designed to facilitate a style
1494 of editing which keeps parentheses balanced at all times.  @kbd{M-(}
1495 inserts a pair of parentheses, either together as in @samp{()}, or, if
1496 given an argument, around the next several sexps.  It leaves point after
1497 the open parenthesis.  The command @kbd{M-)} moves past the close
1498 parenthesis, deleting any indentation preceding it, and indenting with
1499 @kbd{C-j} after it.
1501   For example, instead of typing @kbd{( F O O )}, you can type @kbd{M-(
1502 F O O}, which has the same effect except for leaving the cursor before
1503 the close parenthesis.
1505 @vindex parens-require-spaces
1506   @kbd{M-(} may insert a space before the open parenthesis, depending on
1507 the syntax class of the preceding character.  Set
1508 @code{parens-require-spaces} to @code{nil} value if you wish to inhibit
1509 this.
1511 @findex check-parens
1512 @cindex unbalanced parentheses and quotes
1513   You can use @kbd{M-x check-parens} to find any unbalanced
1514 parentheses and unbalanced string quotes in a buffer.
1516 @node Symbol Completion
1517 @section Completion for Symbol Names
1518 @cindex completion (symbol names)
1520   Usually completion happens in the minibuffer.  But one kind of completion
1521 is available in all buffers: completion for symbol names.
1523 @kindex M-TAB
1524   The character @kbd{M-@key{TAB}} runs a command to complete the partial
1525 symbol before point against the set of meaningful symbol names.  Any
1526 additional characters determined by the partial name are inserted at
1527 point.
1529   If the partial name in the buffer has more than one possible completion
1530 and they have no additional characters in common, a list of all possible
1531 completions is displayed in another window.
1533 @cindex tags-based completion
1534 @cindex Info index completion
1535 @findex complete-symbol
1536   In most programming language major modes, @kbd{M-@key{TAB}} runs the
1537 command @code{complete-symbol}, which provides two kinds of completion.
1538 Normally it does completion based on a tags table (@pxref{Tags}); with a
1539 numeric argument (regardless of the value), it does completion based on
1540 the names listed in the Info file indexes for your language.  Thus, to
1541 complete the name of a symbol defined in your own program, use
1542 @kbd{M-@key{TAB}} with no argument; to complete the name of a standard
1543 library function, use @kbd{C-u M-@key{TAB}}.  Of course, Info-based
1544 completion works only if there is an Info file for the standard library
1545 functions of your language, and only if it is installed at your site.
1547 @cindex Lisp symbol completion
1548 @cindex completion (Lisp symbols)
1549 @findex lisp-complete-symbol
1550   In Emacs-Lisp mode, the name space for completion normally consists of
1551 nontrivial symbols present in Emacs---those that have function
1552 definitions, values or properties.  However, if there is an
1553 open-parenthesis immediately before the beginning of the partial symbol,
1554 only symbols with function definitions are considered as completions.
1555 The command which implements this is @code{lisp-complete-symbol}.
1557   In Text mode and related modes, @kbd{M-@key{TAB}} completes words
1558 based on the spell-checker's dictionary.  @xref{Spelling}.
1560 @node Which Function
1561 @section Which Function Mode
1563   Which Function mode is a minor mode that displays the current function
1564 name in the mode line, as you move around in a buffer.
1566 @findex which-function-mode
1567 @vindex which-func-modes
1568   To enable (or disable) Which Function mode, use the command @kbd{M-x
1569 which-function-mode}.  This command is global; it applies to all
1570 buffers, both existing ones and those yet to be created.  However, this
1571 only affects certain major modes, those listed in the value of
1572 @code{which-func-modes}.  (If the value is @code{t}, then Which Function
1573 mode applies to all major modes that know how to support it---which are
1574 the major modes that support Imenu.)
1576 @node Hideshow
1577 @section Hideshow minor mode
1579 @findex hs-minor-mode
1580   Hideshow minor mode provides selective display of portions of a
1581 file, known as @dfn{blocks}.  You can use @kbd{M-x hs-minor-mode} to
1582 enable or disable this mode, or add @code{hs-minor-mode} to the mode
1583 hook for certain major modes in order to enable it automatically for
1584 those modes.
1586   Just what constitutes a block depends on the major mode.  In C mode
1587 or C++ mode, they are delimited by braces, while in Lisp mode and
1588 similar modes they are delimited by parentheses.  Multi-line comments
1589 also count as blocks.
1591 @findex hs-hide-all
1592 @findex hs-hide-block
1593 @findex hs-show-all
1594 @findex hs-show-block
1595 @findex hs-show-region
1596 @findex hs-hide-level
1597 @findex hs-minor-mode
1598 @kindex C-c @@ C-h
1599 @kindex C-c @@ C-s
1600 @kindex C-c @@ C-M-h
1601 @kindex C-c @@ C-M-s
1602 @kindex C-c @@ C-r
1603 @kindex C-c @@ C-l
1604 @kindex S-Mouse-2
1605 @table @kbd
1606 @item C-c @@ C-h
1607 Hide the current block (@code{hs-hide-block}).
1608 @item C-c @@ C-s
1609 Show the current block (@code{hs-show-block}).
1610 @item C-c @@ C-c
1611 Either hide or show the current block (@code{hs-toggle-hiding})
1612 @item S-Mouse-2
1613 Either hide or show the block you click on (@code{hs-mouse-toggle-hiding})
1614 @item C-c @@ C-M-h
1615 Hide all top-level blocks (@code{hs-hide-all}).
1616 @item C-c @@ C-M-s
1617 Show everything in the buffer (@code{hs-show-all}).
1618 @item C-c @@ C-l
1619 Hide all blocks @var{n} levels below this block
1620 (@code{hs-hide-level}).
1621 @end table
1623 @vindex hs-hide-comments-when-hiding-all
1624 @vindex hs-isearch-open
1625 @vindex hs-special-modes-alist
1626   These user options exist for customizing Hideshow mode.
1628 @table @code
1629 @item hs-hide-comments-when-hiding-all
1630 Non-@code{nil} says that @kbd{hs-hide-all} should hide comments too.
1631 @item hs-isearch-open
1632 Specifies what kind of hidden blocks to open in Isearch mode.
1633 @item hs-special-modes-alist
1634 Specifies how to initialize Hideshow variables for different modes.
1635 @end table
1637 @node Glasses
1638 @section Glasses minor mode
1639 @cindex Glasses mode
1640 @cindex identifiers, making long ones readable
1641 @cindex StudlyCaps, making them readable
1642 @findex glasses-mode
1644   Glasses minor mode makes @samp{unreadableIdentifiersLikeThis}
1645 readable by altering the display.  It can do this in two different
1646 ways: by displaying underscores between an lower-case letter and the
1647 following capital letter, or by emboldening the capital letters.  It
1648 does not alter the buffer text, only the way they display, so you can
1649 use it even on read-only buffers.  You can use the command @kbd{M-x
1650 glasses-mode} to enable or disable the mode; you can also add
1651 @code{glasses-mode} to the mode hook of appropriate programming
1652 language major modes.
1654 @node Documentation
1655 @section Documentation Commands
1657   As you edit Lisp code to be run in Emacs, the commands @kbd{C-h f}
1658 (@code{describe-function}) and @kbd{C-h v} (@code{describe-variable}) can
1659 be used to print documentation of functions and variables that you want to
1660 call.  These commands use the minibuffer to read the name of a function or
1661 variable to document, and display the documentation in a window.
1663   For extra convenience, these commands provide default arguments based on
1664 the code in the neighborhood of point.  @kbd{C-h f} sets the default to the
1665 function called in the innermost list containing point.  @kbd{C-h v} uses
1666 the symbol name around or adjacent to point as its default.
1668 @cindex Eldoc mode
1669 @findex eldoc-mode
1670   For Emacs Lisp code, you can also use Eldoc mode.  This minor mode
1671 constantly displays in the echo area the argument list for the function
1672 being called at point.  (In other words, it finds the function call that
1673 point is contained in, and displays the argument list of that function.)
1674 Eldoc mode applies in Emacs Lisp and Lisp Interaction modes only.  Use
1675 the command @kbd{M-x eldoc-mode} to enable or disable this feature.
1677 @findex info-lookup-symbol
1678 @findex info-lookup-file
1679 @kindex C-h C-i
1680   For C, Lisp, and other languages, you can use @kbd{C-h C-i}
1681 (@code{info-lookup-symbol}) to view the Info documentation for a symbol.
1682 You specify the symbol with the minibuffer; by default, it uses the
1683 symbol that appears in the buffer at point.  The major mode determines
1684 where to look for documentation for the symbol---which Info files and
1685 which indices.  You can also use @kbd{M-x info-lookup-file} to look for
1686 documentation for a file name.  Currently this supports the following
1687 modes: Awk, Autoconf, Bison, C, Emacs Lisp, LaTeX, M4,
1688 Makefile, Octave, Perl, Scheme and Texinfo, provided you have installed
1689 the relevant Info files, which are typically available with the appropriate GNU
1690 package.
1692 @findex manual-entry
1693 @cindex manual pages
1694   You can read the ``man page'' for an operating system command, library
1695 function, or system call, with the @kbd{M-x manual-entry} command.  It
1696 runs the @code{man} program to format the man page, and runs it
1697 asynchronously if your system permits, so that you can keep on editing
1698 while the page is being formatted.  (MS-DOS and MS-Windows 3 do not
1699 permit asynchronous subprocesses, so on these systems you cannot edit
1700 while Emacs waits for @code{man} to exit.)  The result goes in a buffer
1701 named @samp{*Man @var{topic}*}.  These buffers use a special major mode,
1702 Man mode, that facilitates scrolling and examining other manual pages.
1703 For details, type @kbd{C-h m} while in a man page buffer.
1705 @cindex sections of manual pages
1706   Man pages are classified into @dfn{sections}; sometimes there are
1707 man pages with the same name in different sections.  To read a man
1708 page from a specific section, type @samp{@var{topic}(@var{section})} or
1709 @samp{@var{section} @var{topic}} when @kbd{M-x manual-entry} prompts
1710 for the topic.  For example, to read the man page for the C library
1711 function @code{chmod} (as opposed to a command by the same name), type
1712 @kbd{M-x manual-entry @key{RET} chmod(2v) @key{RET}} (assuming
1713 @code{chmod} is in section @samp{2v}).
1715   If you do not specify a section, the results depend on how the
1716 @code{man} command works on your system.  Some of them display only
1717 the first man page they find.  Others display all man pages that have
1718 the specified name, so you can page between them with the @kbd{M-n}
1719 and @kbd{M-p} keys.  The mode line shows how many manual pages are
1720 available in the Man buffer.
1722 @vindex Man-fontify-manpage-flag
1723   For a long man page, setting the faces properly can take substantial
1724 time.  By default, Emacs uses faces in man pages if Emacs can display
1725 different fonts or colors.  You can turn off use of faces in man pages
1726 by setting the variable @code{Man-fontify-manpage-flag} to @code{nil}.
1728 @findex Man-fontify-manpage
1729   If you insert the text of a man page into an Emacs buffer in some
1730 other fashion, you can use the command @kbd{M-x Man-fontify-manpage} to
1731 perform the same conversions that @kbd{M-x manual-entry} does.
1733 @findex woman
1734 @cindex manual pages, on MS-DOS/MS-Windows
1735   An alternative way of reading manual pages is the @kbd{M-x woman}
1736 command@footnote{The name of the command, @code{woman}, is an acronym
1737 for ``w/o (without) man,'' since it doesn't use the @code{man}
1738 program.}.  Unlike @kbd{M-x man}, it does not run any external
1739 programs to format and display the man pages; instead it does the job
1740 in Emacs Lisp, so it works on systems such as MS-Windows, where the
1741 @code{man} program and the other programs it needs are not readily
1742 available.  @kbd{M-x woman} prompts for a name of a manual page, and
1743 provides completion based on the list of manual pages that are
1744 installed on your machine; the list of available manual pages is
1745 computed automatically the first time you invoke @code{woman}.  The
1746 word at point in the current buffer is used to suggest the default
1747 name of the manual page.
1749   With a numeric argument, @kbd{M-x woman} recomputes the list of the
1750 manual pages used for completion.  This is useful if you add or delete
1751 manual pages.
1753   If you type a name of a manual page and @kbd{M-x woman} finds that
1754 several manual pages by the same name exist in different sections, it
1755 pops up a window with possible candidates asking you to choose one of
1756 them.
1758 @vindex woman-manpath
1759   By default, @kbd{M-x woman} looks up the manual pages in directories
1760 listed by the @code{MANPATH} environment variable.  (If @code{MANPATH}
1761 is not set, @code{woman} uses a suitable default value, which can be
1762 customized.)  More precisely, @code{woman} looks for subdirectories that
1763 match the shell wildcard @file{man*} in each one of these directories,
1764 and tries to find the manual pages in those subdirectories.  When first
1765 invoked, @kbd{M-x woman} converts the value of @code{MANPATH} to a list
1766 of directory names and stores that list in the @code{woman-manpath}
1767 variable.  By changing the value of this variable, you can customize the
1768 list of directories where @code{woman} looks for manual pages.
1770 @vindex woman-path
1771   In addition, you can augment the list of directories searched by
1772 @code{woman} by setting the value of the @code{woman-path} variable.
1773 This variable should hold a list of specific directories which
1774 @code{woman} should search, in addition to those in
1775 @code{woman-manpath}.  Unlike @code{woman-manpath}, the directories in
1776 @code{woman-path} are searched for the manual pages, not for @file{man*}
1777 subdirectories.
1779 @findex woman-find-file
1780   Occasionally, you might need to display manual pages that are not in
1781 any of the directories listed by @code{woman-manpath} and
1782 @code{woman-path}.  The @kbd{M-x woman-find-file} command prompts for a
1783 name of a manual page file, with completion, and then formats and
1784 displays that file like @kbd{M-x woman} does.
1786 @vindex woman-dired-keys
1787   First time you invoke @kbd{M-x woman}, it defines the Dired @kbd{W}
1788 key to run the @code{woman-find-file} command on the current line's
1789 file.  You can disable this by setting the variable
1790 @code{woman-dired-keys} to @code{nil}.  @xref{Dired}.  In addition, the
1791 Tar-mode @kbd{w} key is bound to @code{woman-find-file} on the current
1792 line's archive member.
1794   For more information about setting up and using @kbd{M-x woman}, see
1795 @ref{Top, WoMan, Browse UN*X Manual Pages WithOut Man, woman, The WoMan
1796 Manual}.
1798   Eventually the GNU project hopes to replace most man pages with
1799 better-organized manuals that you can browse with Info.  @xref{Misc
1800 Help}.  Since this process is only partially completed, it is still
1801 useful to read manual pages.
1803 @node Change Log
1804 @section Change Logs
1806 @cindex change log
1807 @kindex C-x 4 a
1808 @findex add-change-log-entry-other-window
1809   The Emacs command @kbd{C-x 4 a} adds a new entry to the change log
1810 file for the file you are editing
1811 (@code{add-change-log-entry-other-window}).  If that file is actually
1812 a backup file, it makes an entry appropriate for the file's
1813 parent---that is useful for making log entries for functions that
1814 have been deleted in the current version.
1816   A change log file contains a chronological record of when and why you
1817 have changed a program, consisting of a sequence of entries describing
1818 individual changes.  Normally it is kept in a file called
1819 @file{ChangeLog} in the same directory as the file you are editing, or
1820 one of its parent directories.  A single @file{ChangeLog} file can
1821 record changes for all the files in its directory and all its
1822 subdirectories.
1824   A change log entry starts with a header line that contains the
1825 current date, your name, and your email address (taken from the
1826 variable @code{user-mail-address}).  Aside from these header lines,
1827 every line in the change log starts with a space or a tab.  The bulk
1828 of the entry consists of @dfn{items}, each of which starts with a line
1829 starting with whitespace and a star.  Here are two entries, both dated
1830 in May 1993, each with two items:
1832 @iftex
1833 @medbreak
1834 @end iftex
1835 @smallexample
1836 1993-05-25  Richard Stallman  <rms@@gnu.org>
1838         * man.el: Rename symbols `man-*' to `Man-*'.
1839         (manual-entry): Make prompt string clearer.
1841         * simple.el (blink-matching-paren-distance):
1842         Change default to 12,000.
1844 1993-05-24  Richard Stallman  <rms@@gnu.org>
1846         * vc.el (minor-mode-map-alist): Don't use it if it's void.
1847         (vc-cancel-version): Doc fix.
1848 @end smallexample
1850   One entry can describe several changes; each change should have its
1851 own item.  Normally there should be a blank line between items.  When
1852 items are related (parts of the same change, in different places), group
1853 them by leaving no blank line between them.  The second entry above
1854 contains two items grouped in this way.
1856   @kbd{C-x 4 a} visits the change log file and creates a new entry
1857 unless the most recent entry is for today's date and your name.  It
1858 also creates a new item for the current file.  For many languages, it
1859 can even guess the name of the function or other object that was
1860 changed.
1862 @vindex add-log-keep-changes-together
1863   When the option @code{add-log-keep-changes-together} is
1864 non-@code{nil}, @kbd{C-x 4 a} adds to any existing entry for the file
1865 rather than starting a new entry.
1867 @vindex change-log-version-info-enabled
1868 @vindex change-log-version-number-regexp-list
1869 @cindex file version in change log entries
1870   If the value of the variable @code{change-log-version-info-enabled}
1871 is non-@code{nil}, @kbd{C-x 4 a} adds the file's version number to the
1872 change log entry.  It finds the version number by searching the first
1873 ten percent of the file, using regular expressions from the variable
1874 @code{change-log-version-number-regexp-list}.
1876 @cindex Change Log mode
1877 @findex change-log-mode
1878   The change log file is visited in Change Log mode.  In this major
1879 mode, each bunch of grouped items counts as one paragraph, and each
1880 entry is considered a page.  This facilitates editing the entries.
1881 @kbd{C-j} and auto-fill indent each new line like the previous line;
1882 this is convenient for entering the contents of an entry.
1884 @findex change-log-merge
1885   You can use the command @kbd{M-x change-log-merge} to merge other
1886 log files into a buffer in Change Log Mode, preserving the date
1887 ordering of entries.
1889 @findex change-log-redate
1890 @cindex converting change log date style
1891   Versions of Emacs before 20.1 used a different format for the time of
1892 the change log entry:
1894 @smallexample
1895 Fri May 25 11:23:23 1993 Richard Stallman  <rms@@gnu.org>
1896 @end smallexample
1898 @noindent
1899 The @kbd{M-x change-log-redate} command converts all the old-style
1900 date entries in the change log file visited in the current buffer to
1901 the new format, to make the file uniform in style.  This is handy when
1902 entries are contributed by many different people, some of whom use old
1903 versions of Emacs.
1905   Version control systems are another way to keep track of changes in your
1906 program and keep a change log.  @xref{Log Buffer}.
1908 @node Authors
1909 @section @file{AUTHORS} files
1910 @cindex @file{AUTHORS} file
1912   Programs which have many contributors usually include a file named
1913 @file{AUTHORS} in their distribution, which lists the individual
1914 contributions.  Emacs has a special command for maintaining the
1915 @file{AUTHORS} file that is part of the Emacs distribution.
1917 @findex authors
1918   The @kbd{M-x authors} command prompts for the name of the root of the
1919 Emacs source directory.  It then scans @file{ChageLog} files and Lisp
1920 source files under that directory for information about authors of
1921 individual packages and people who made changes in source files, and
1922 puts the information it gleans into a buffer named @samp{*Authors*}.
1923 You can then edit the contents of that buffer and merge it with the
1924 exisiting @file{AUTHORS} file.
1926   Do not assume that this command finds all the contributors; don't
1927 assume that a person not listed in the output was not a contributor.
1928 If you merged in someone's contribution and did not put his name
1929 in the change log, he won't show up in @kbd{M-x authors} either.
1931 @node Tags
1932 @section Tags Tables
1933 @cindex tags table
1935   A @dfn{tags table} is a description of how a multi-file program is
1936 broken up into files.  It lists the names of the component files and the
1937 names and positions of the functions (or other named subunits) in each
1938 file.  Grouping the related files makes it possible to search or replace
1939 through all the files with one command.  Recording the function names
1940 and positions makes possible the @kbd{M-.} command which finds the
1941 definition of a function by looking up which of the files it is in.
1943   Tags tables are stored in files called @dfn{tags table files}.  The
1944 conventional name for a tags table file is @file{TAGS}.
1946   Each entry in the tags table records the name of one tag, the name of the
1947 file that the tag is defined in (implicitly), and the position in that file
1948 of the tag's definition.
1950   Just what names from the described files are recorded in the tags table
1951 depends on the programming language of the described file.  They
1952 normally include all file names, functions and subroutines, and may
1953 also include global variables, data types, and anything else
1954 convenient.  Each name recorded is called a @dfn{tag}.
1956 @cindex C++ class browser, tags
1957 @cindex tags, C++
1958 @cindex class browser, C++
1959 @cindex Ebrowse
1960   See also the Ebrowse facility, which is tailored for C++.
1961 @xref{Top,, Ebrowse, ebrowse, Ebrowse User's Manual}.
1963 @menu
1964 * Tag Syntax::          Tag syntax for various types of code and text files.
1965 * Create Tags Table::   Creating a tags table with @code{etags}.
1966 * Etags Regexps::       Create arbitrary tags using regular expressions.
1967 * Select Tags Table::   How to visit a tags table.
1968 * Find Tag::            Commands to find the definition of a specific tag.
1969 * Tags Search::         Using a tags table for searching and replacing.
1970 * List Tags::           Listing and finding tags defined in a file.
1971 @end menu
1973 @node Tag Syntax
1974 @subsection Source File Tag Syntax
1976   Here is how tag syntax is defined for the most popular languages:
1978 @itemize @bullet
1979 @item
1980 In C code, any C function or typedef is a tag, and so are definitions of
1981 @code{struct}, @code{union} and @code{enum}.
1982 @code{#define} macro definitions and @code{enum} constants are also
1983 tags, unless you specify @samp{--no-defines} when making the tags table.
1984 Similarly, global variables are tags, unless you specify
1985 @samp{--no-globals}.  Use of @samp{--no-globals} and @samp{--no-defines}
1986 can make the tags table file much smaller.
1988 You can tag function declarations and external variables in addition
1989 to function definitions by giving the @samp{--declarations} option to
1990 @code{etags}.
1992 @item
1993 In C++ code, in addition to all the tag constructs of C code, member
1994 functions are also recognized, and optionally member variables if you
1995 use the @samp{--members} option.  Tags for variables and functions in
1996 classes are named @samp{@var{class}::@var{variable}} and
1997 @samp{@var{class}::@var{function}}.  @code{operator} definitions have
1998 tag names like @samp{operator+}.
2000 @item
2001 In Java code, tags include all the constructs recognized in C++, plus
2002 the @code{interface}, @code{extends} and @code{implements} constructs.
2003 Tags for variables and functions in classes are named
2004 @samp{@var{class}.@var{variable}} and @samp{@var{class}.@var{function}}.
2006 @item
2007 In La@TeX{} text, the argument of any of the commands @code{\chapter},
2008 @code{\section}, @code{\subsection}, @code{\subsubsection},
2009 @code{\eqno}, @code{\label}, @code{\ref}, @code{\cite}, @code{\bibitem},
2010 @code{\part}, @code{\appendix}, @code{\entry}, or @code{\index}, is a
2011 tag.@refill
2013 Other commands can make tags as well, if you specify them in the
2014 environment variable @env{TEXTAGS} before invoking @code{etags}.  The
2015 value of this environment variable should be a colon-separated list of
2016 command names.  For example,
2018 @example
2019 TEXTAGS="def:newcommand:newenvironment"
2020 export TEXTAGS
2021 @end example
2023 @noindent
2024 specifies (using Bourne shell syntax) that the commands @samp{\def},
2025 @samp{\newcommand} and @samp{\newenvironment} also define tags.
2027 @item
2028 In Lisp code, any function defined with @code{defun}, any variable
2029 defined with @code{defvar} or @code{defconst}, and in general the first
2030 argument of any expression that starts with @samp{(def} in column zero, is
2031 a tag.
2033 @item
2034 In Scheme code, tags include anything defined with @code{def} or with a
2035 construct whose name starts with @samp{def}.  They also include variables
2036 set with @code{set!} at top level in the file.
2037 @end itemize
2039   Several other languages are also supported:
2041 @itemize @bullet
2043 @item
2044 In Ada code, functions, procedures, packages, tasks, and types are
2045 tags.  Use the @samp{--packages-only} option to create tags for
2046 packages only.
2048 In Ada, the same name can be used for different kinds of entity
2049 (e.g.@:, for a procedure and for a function).  Also, for things like
2050 packages, procedures and functions, there is the spec (i.e.@: the
2051 interface) and the body (i.e.@: the implementation).  To make it
2052 easier to pick the definition you want, Ada tag name have suffixes
2053 indicating the type of entity:
2055 @table @samp
2056 @item /b
2057 package body.
2058 @item /f
2059 function.
2060 @item /k
2061 task.
2062 @item /p
2063 procedure.
2064 @item /s
2065 package spec.
2066 @item /t
2067 type.
2068 @end table
2070   Thus, @kbd{M-x find-tag @key{RET} bidule/b @key{RET}} will go
2071 directly to the body of the package @code{bidule}, while @kbd{M-x
2072 find-tag @key{RET} bidule @key{RET}} will just search for any tag
2073 @code{bidule}.
2075 @item
2076 In assembler code, labels appearing at the beginning of a line,
2077 followed by a colon, are tags.
2079 @item
2080 In Bison or Yacc input files, each rule defines as a tag the nonterminal
2081 it constructs.  The portions of the file that contain C code are parsed
2082 as C code.
2084 @item
2085 In Cobol code, tags are paragraph names; that is, any word starting in
2086 column 8 and followed by a period.
2088 @item
2089 In Erlang code, the tags are the functions, records, and macros defined
2090 in the file.
2092 @item
2093 In Fortran code, functions, subroutines and blockdata are tags.
2095 @item
2096 In makefiles, targets are tags.
2098 @item
2099 In Objective C code, tags include Objective C definitions for classes,
2100 class categories, methods, and protocols.
2102 @item
2103 In Pascal code, the tags are the functions and procedures defined in
2104 the file.
2106 @item
2107 In Perl code, the tags are the procedures defined by the @code{sub},
2108 @code{my} and @code{local} keywords.  Use @samp{--globals} if you want
2109 to tag global variables.
2111 @item
2112 In PostScript code, the tags are the functions.
2114 @item
2115 In Prolog code, a tag name appears at the left margin.
2117 @item
2118 In Python code, @code{def} or @code{class} at the beginning of a line
2119 generate a tag.
2120 @end itemize
2122   You can also generate tags based on regexp matching (@pxref{Etags
2123 Regexps}) to handle other formats and languages.
2125 @node Create Tags Table
2126 @subsection Creating Tags Tables
2127 @cindex @code{etags} program
2129   The @code{etags} program is used to create a tags table file.  It knows
2130 the syntax of several languages, as described in
2131 @iftex
2132 the previous section.
2133 @end iftex
2134 @ifinfo
2135 @ref{Tag Syntax}.
2136 @end ifinfo
2137 Here is how to run @code{etags}:
2139 @example
2140 etags @var{inputfiles}@dots{}
2141 @end example
2143 @noindent
2144 The @code{etags} program reads the specified files, and writes a tags
2145 table named @file{TAGS} in the current working directory.
2147   If the specified files don't exist, @code{etags} looks for
2148 compressed versions of them and uncompresses them to read them.  Under
2149 MS-DOS, @code{etags} also looks for file names like @file{mycode.cgz}
2150 if it is given @samp{mycode.c} on the command line and @file{mycode.c}
2151 does not exist.
2153   @code{etags} recognizes the language used in an input file based on
2154 its file name and contents.  You can specify the language with the
2155 @samp{--language=@var{name}} option, described below.
2157   If the tags table data become outdated due to changes in the files
2158 described in the table, the way to update the tags table is the same
2159 way it was made in the first place.  But it is not necessary to do
2160 this very often.
2162   If the tags table fails to record a tag, or records it for the wrong
2163 file, then Emacs cannot possibly find its definition.  However, if the
2164 position recorded in the tags table becomes a little bit wrong (due to
2165 some editing in the file that the tag definition is in), the only
2166 consequence is a slight delay in finding the tag.  Even if the stored
2167 position is very wrong, Emacs will still find the tag, but it must
2168 search the entire file for it.
2170   So you should update a tags table when you define new tags that you want
2171 to have listed, or when you move tag definitions from one file to another,
2172 or when changes become substantial.  Normally there is no need to update
2173 the tags table after each edit, or even every day.
2175   One tags table can virtually include another.  Specify the included
2176 tags file name with the @samp{--include=@var{file}} option when
2177 creating the file that is to include it.  The latter file then acts as
2178 if it covered all the source files specified in the included file, as
2179 well as the files it directly contains.
2181   If you specify the source files with relative file names when you run
2182 @code{etags}, the tags file will contain file names relative to the
2183 directory where the tags file was initially written.  This way, you can
2184 move an entire directory tree containing both the tags file and the
2185 source files, and the tags file will still refer correctly to the source
2186 files.
2188   If you specify absolute file names as arguments to @code{etags}, then
2189 the tags file will contain absolute file names.  This way, the tags file
2190 will still refer to the same files even if you move it, as long as the
2191 source files remain in the same place.  Absolute file names start with
2192 @samp{/}, or with @samp{@var{device}:/} on MS-DOS and MS-Windows.
2194   When you want to make a tags table from a great number of files, you
2195 may have problems listing them on the command line, because some systems
2196 have a limit on its length.  The simplest way to circumvent this limit
2197 is to tell @code{etags} to read the file names from its standard input,
2198 by typing a dash in place of the file names, like this:
2200 @smallexample
2201 find . -name "*.[chCH]" -print | etags -
2202 @end smallexample
2204   Use the option @samp{--language=@var{name}} to specify the language
2205 explicitly.  You can intermix these options with file names; each one
2206 applies to the file names that follow it.  Specify
2207 @samp{--language=auto} to tell @code{etags} to resume guessing the
2208 language from the file names and file contents.  Specify
2209 @samp{--language=none} to turn off language-specific processing
2210 entirely; then @code{etags} recognizes tags by regexp matching alone
2211 (@pxref{Etags Regexps}).
2213   @samp{etags --help} prints the list of the languages @code{etags}
2214 knows, and the file name rules for guessing the language.  It also prints
2215 a list of all the available @code{etags} options, together with a short
2216 explanation.
2218 @node Etags Regexps
2219 @subsection Etags Regexps
2221   The @samp{--regex} option provides a general way of recognizing tags
2222 based on regexp matching.  You can freely intermix it with file names.
2223 Each @samp{--regex} option adds to the preceding ones, and applies only
2224 to the following files.  The syntax is:
2226 @smallexample
2227 --regex=/@var{tagregexp}[/@var{nameregexp}]/
2228 @end smallexample
2230 @noindent
2231 where @var{tagregexp} is used to match the lines to tag.  It is always
2232 anchored, that is, it behaves as if preceded by @samp{^}.  If you want
2233 to account for indentation, just match any initial number of blanks by
2234 beginning your regular expression with @samp{[ \t]*}.  In the regular
2235 expressions, @samp{\} quotes the next character, and @samp{\t} stands
2236 for the tab character.  Note that @code{etags} does not handle the other
2237 C escape sequences for special characters.
2239 @cindex interval operator (in regexps)
2240   The syntax of regular expressions in @code{etags} is the same as in
2241 Emacs, augmented with the @dfn{interval operator}, which works as in
2242 @code{grep} and @code{ed}.  The syntax of an interval operator is
2243 @samp{\@{@var{m},@var{n}\@}}, and its meaning is to match the preceding
2244 expression at least @var{m} times and up to @var{n} times.
2246   You should not match more characters with @var{tagregexp} than that
2247 needed to recognize what you want to tag.  If the match is such that
2248 more characters than needed are unavoidably matched by @var{tagregexp}
2249 (as will usually be the case), you should add a @var{nameregexp}, to
2250 pick out just the tag.  This will enable Emacs to find tags more
2251 accurately and to do completion on tag names more reliably.  You can
2252 find some examples below.
2254   The option @samp{--ignore-case-regex} (or @samp{-c}) works like
2255 @samp{--regex}, except that matching ignores case.  This is
2256 appropriate for certain programming languages.
2258   The @samp{-R} option deletes all the regexps defined with
2259 @samp{--regex} options.  It applies to the file names following it, as
2260 you can see from the following example:
2262 @smallexample
2263 etags --regex=/@var{reg1}/ voo.doo --regex=/@var{reg2}/ \
2264     bar.ber -R --lang=lisp los.er
2265 @end smallexample
2267 @noindent
2268 Here @code{etags} chooses the parsing language for @file{voo.doo} and
2269 @file{bar.ber} according to their contents.  @code{etags} also uses
2270 @var{reg1} to recognize additional tags in @file{voo.doo}, and both
2271 @var{reg1} and @var{reg2} to recognize additional tags in
2272 @file{bar.ber}.  @code{etags} uses the Lisp tags rules, and no regexp
2273 matching, to recognize tags in @file{los.er}.
2275   You can specify a regular expression for a particular language, by
2276 writing @samp{@{lang@}} in front of it.  Then @code{etags} will use
2277 the regular expression only for files of that language.  (@samp{etags
2278 --help} prints the list of languages recognised by @code{etags}.)  The
2279 following example tags the @code{DEFVAR} macros in the Emacs source
2280 files, for the C language only:
2282 @smallexample
2283 --regex='@{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/'
2284 @end smallexample
2286 @noindent
2287 This feature is particularly useful when you store a list of regular
2288 expressions in a file.  The following option syntax instructs
2289 @code{etags} to read two files of regular expressions.  The regular
2290 expressions contained in the second file are matched without regard to
2291 case.
2293 @smallexample
2294 --regex=@@first-file --ignore-case-regex=@@second-file
2295 @end smallexample
2297 @noindent
2298 A regex file contains one regular expressions per line.  Empty lines,
2299 and lines beginning with space or tab are ignored.  When the first
2300 character in a line is @samp{@@}, @code{etags} assumes that the rest
2301 of the line is the name of a file of regular expressions; thus, one
2302 such file can include another file.  All the other lines are taken to
2303 be regular expressions.  If the first non-whitespace text on the line
2304 is @samp{--}, that line is a comment.
2306   For example, one can create a file called @samp{emacs.tags} with the
2307 following contents:
2309 @smallexample
2310         -- This is for GNU Emacs C source files
2311 @{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/\1/
2312 @end smallexample
2314 @noindent
2315 and then use it like this:
2317 @smallexample
2318 etags --regex=@@emacs.tags *.[ch] */*.[ch]
2319 @end smallexample
2321   Here are some more examples.  The regexps are quoted to protect them
2322 from shell interpretation.
2324 @itemize @bullet
2326 @item
2327 Tag Octave files:
2329 @smallexample
2330 etags --language=none \
2331       --regex='/[ \t]*function.*=[ \t]*\([^ \t]*\)[ \t]*(/\1/' \
2332       --regex='/###key \(.*\)/\1/' \
2333       --regex='/[ \t]*global[ \t].*/' \
2334       *.m
2335 @end smallexample
2337 @noindent
2338 Note that tags are not generated for scripts, so that you have to add
2339 a line by yourself of the form @samp{###key @var{scriptname}} if you
2340 want to jump to it.
2342 @item
2343 Tag Tcl files:
2345 @smallexample
2346 etags --language=none --regex='/proc[ \t]+\([^ \t]+\)/\1/' *.tcl
2347 @end smallexample
2349 @item
2350 Tag VHDL files:
2352 @smallexample
2353 etags --language=none \
2354   --regex='/[ \t]*\(ARCHITECTURE\|CONFIGURATION\) +[^ ]* +OF/' \
2355   --regex='/[ \t]*\(ATTRIBUTE\|ENTITY\|FUNCTION\|PACKAGE\
2356   \( BODY\)?\|PROCEDURE\|PROCESS\|TYPE\)[ \t]+\([^ \t(]+\)/\3/'
2357 @end smallexample
2358 @end itemize
2360 @node Select Tags Table
2361 @subsection Selecting a Tags Table
2363 @vindex tags-file-name
2364 @findex visit-tags-table
2365   Emacs has at any time one @dfn{selected} tags table, and all the commands
2366 for working with tags tables use the selected one.  To select a tags table,
2367 type @kbd{M-x visit-tags-table}, which reads the tags table file name as an
2368 argument.  The name @file{TAGS} in the default directory is used as the
2369 default file name.
2371   All this command does is store the file name in the variable
2372 @code{tags-file-name}.  Emacs does not actually read in the tags table
2373 contents until you try to use them.  Setting this variable yourself is just
2374 as good as using @code{visit-tags-table}.  The variable's initial value is
2375 @code{nil}; that value tells all the commands for working with tags tables
2376 that they must ask for a tags table file name to use.
2378   Using @code{visit-tags-table} when a tags table is already loaded
2379 gives you a choice: you can add the new tags table to the current list
2380 of tags tables, or start a new list.  The tags commands use all the tags
2381 tables in the current list.  If you start a new list, the new tags table
2382 is used @emph{instead} of others.  If you add the new table to the
2383 current list, it is used @emph{as well as} the others.  When the tags
2384 commands scan the list of tags tables, they don't always start at the
2385 beginning of the list; they start with the first tags table (if any)
2386 that describes the current file, proceed from there to the end of the
2387 list, and then scan from the beginning of the list until they have
2388 covered all the tables in the list.
2390 @vindex tags-table-list
2391   You can specify a precise list of tags tables by setting the variable
2392 @code{tags-table-list} to a list of strings, like this:
2394 @c keep this on two lines for formatting in smallbook
2395 @example
2396 @group
2397 (setq tags-table-list
2398       '("~/emacs" "/usr/local/lib/emacs/src"))
2399 @end group
2400 @end example
2402 @noindent
2403 This tells the tags commands to look at the @file{TAGS} files in your
2404 @file{~/emacs} directory and in the @file{/usr/local/lib/emacs/src}
2405 directory.  The order depends on which file you are in and which tags
2406 table mentions that file, as explained above.
2408   Do not set both @code{tags-file-name} and @code{tags-table-list}.
2410 @node Find Tag
2411 @subsection Finding a Tag
2413   The most important thing that a tags table enables you to do is to find
2414 the definition of a specific tag.
2416 @table @kbd
2417 @item M-.@: @var{tag} @key{RET}
2418 Find first definition of @var{tag} (@code{find-tag}).
2419 @item C-u M-.
2420 Find next alternate definition of last tag specified.
2421 @item C-u - M-.
2422 Go back to previous tag found.
2423 @item C-M-. @var{pattern} @key{RET}
2424 Find a tag whose name matches @var{pattern} (@code{find-tag-regexp}).
2425 @item C-u C-M-.
2426 Find the next tag whose name matches the last pattern used.
2427 @item C-x 4 .@: @var{tag} @key{RET}
2428 Find first definition of @var{tag}, but display it in another window
2429 (@code{find-tag-other-window}).
2430 @item C-x 5 .@: @var{tag} @key{RET}
2431 Find first definition of @var{tag}, and create a new frame to select the
2432 buffer (@code{find-tag-other-frame}).
2433 @item M-*
2434 Pop back to where you previously invoked @kbd{M-.} and friends.
2435 @end table
2437 @kindex M-.
2438 @findex find-tag
2439   @kbd{M-.}@: (@code{find-tag}) is the command to find the definition of
2440 a specified tag.  It searches through the tags table for that tag, as a
2441 string, and then uses the tags table info to determine the file that the
2442 definition is in and the approximate character position in the file of
2443 the definition.  Then @code{find-tag} visits that file, moves point to
2444 the approximate character position, and searches ever-increasing
2445 distances away to find the tag definition.
2447   If an empty argument is given (just type @key{RET}), the sexp in the
2448 buffer before or around point is used as the @var{tag} argument.
2449 @xref{Lists}, for info on sexps.
2451   You don't need to give @kbd{M-.} the full name of the tag; a part
2452 will do.  This is because @kbd{M-.} finds tags in the table which
2453 contain @var{tag} as a substring.  However, it prefers an exact match
2454 to a substring match.  To find other tags that match the same
2455 substring, give @code{find-tag} a numeric argument, as in @kbd{C-u
2456 M-.}; this does not read a tag name, but continues searching the tags
2457 table's text for another tag containing the same substring last used.
2458 If you have a real @key{META} key, @kbd{M-0 M-.}@: is an easier
2459 alternative to @kbd{C-u M-.}.
2461 @kindex C-x 4 .
2462 @findex find-tag-other-window
2463 @kindex C-x 5 .
2464 @findex find-tag-other-frame
2465   Like most commands that can switch buffers, @code{find-tag} has a
2466 variant that displays the new buffer in another window, and one that
2467 makes a new frame for it.  The former is @kbd{C-x 4 .}, which invokes
2468 the command @code{find-tag-other-window}.  The latter is @kbd{C-x 5 .},
2469 which invokes @code{find-tag-other-frame}.
2471   To move back to places you've found tags recently, use @kbd{C-u -
2472 M-.}; more generally, @kbd{M-.} with a negative numeric argument.  This
2473 command can take you to another buffer.  @kbd{C-x 4 .} with a negative
2474 argument finds the previous tag location in another window.
2476 @kindex M-*
2477 @findex pop-tag-mark
2478 @vindex find-tag-marker-ring-length
2479   As well as going back to places you've found tags recently, you can go
2480 back to places @emph{from where} you found them.  Use @kbd{M-*}, which
2481 invokes the command @code{pop-tag-mark}, for this.  Typically you would
2482 find and study the definition of something with @kbd{M-.} and then
2483 return to where you were with @kbd{M-*}.
2485   Both @kbd{C-u - M-.} and @kbd{M-*} allow you to retrace your steps to
2486 a depth determined by the variable @code{find-tag-marker-ring-length}.
2488 @findex find-tag-regexp
2489 @kindex C-M-.
2490   The command @kbd{C-M-.} (@code{find-tag-regexp}) visits the tags that
2491 match a specified regular expression.  It is just like @kbd{M-.} except
2492 that it does regexp matching instead of substring matching.
2494 @node Tags Search
2495 @subsection Searching and Replacing with Tags Tables
2496 @cindex search and replace in multiple files
2497 @cindex multiple-file search and replace
2499   The commands in this section visit and search all the files listed in the
2500 selected tags table, one by one.  For these commands, the tags table serves
2501 only to specify a sequence of files to search.
2503 @table @kbd
2504 @item M-x tags-search @key{RET} @var{regexp} @key{RET}
2505 Search for @var{regexp} through the files in the selected tags
2506 table.
2507 @item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET}
2508 Perform a @code{query-replace-regexp} on each file in the selected tags table.
2509 @item M-,
2510 Restart one of the commands above, from the current location of point
2511 (@code{tags-loop-continue}).
2512 @end table
2514 @findex tags-search
2515   @kbd{M-x tags-search} reads a regexp using the minibuffer, then
2516 searches for matches in all the files in the selected tags table, one
2517 file at a time.  It displays the name of the file being searched so you
2518 can follow its progress.  As soon as it finds an occurrence,
2519 @code{tags-search} returns.
2521 @kindex M-,
2522 @findex tags-loop-continue
2523   Having found one match, you probably want to find all the rest.  To find
2524 one more match, type @kbd{M-,} (@code{tags-loop-continue}) to resume the
2525 @code{tags-search}.  This searches the rest of the current buffer, followed
2526 by the remaining files of the tags table.@refill
2528 @findex tags-query-replace
2529   @kbd{M-x tags-query-replace} performs a single
2530 @code{query-replace-regexp} through all the files in the tags table.  It
2531 reads a regexp to search for and a string to replace with, just like
2532 ordinary @kbd{M-x query-replace-regexp}.  It searches much like @kbd{M-x
2533 tags-search}, but repeatedly, processing matches according to your
2534 input.  @xref{Replace}, for more information on query replace.
2536 @vindex tags-case-fold-search
2537 @cindex case-sensitivity and tags search
2538   You can control the case-sensitivity of tags search commands by
2539 customizing the value of the variable @code{tags-case-fold-search}.  The
2540 default is to use the same setting as the value of
2541 @code{case-fold-search} (@pxref{Search Case}).
2543   It is possible to get through all the files in the tags table with a
2544 single invocation of @kbd{M-x tags-query-replace}.  But often it is
2545 useful to exit temporarily, which you can do with any input event that
2546 has no special query replace meaning.  You can resume the query replace
2547 subsequently by typing @kbd{M-,}; this command resumes the last tags
2548 search or replace command that you did.
2550   The commands in this section carry out much broader searches than the
2551 @code{find-tag} family.  The @code{find-tag} commands search only for
2552 definitions of tags that match your substring or regexp.  The commands
2553 @code{tags-search} and @code{tags-query-replace} find every occurrence
2554 of the regexp, as ordinary search commands and replace commands do in
2555 the current buffer.
2557   These commands create buffers only temporarily for the files that they
2558 have to search (those which are not already visited in Emacs buffers).
2559 Buffers in which no match is found are quickly killed; the others
2560 continue to exist.
2562   It may have struck you that @code{tags-search} is a lot like
2563 @code{grep}.  You can also run @code{grep} itself as an inferior of
2564 Emacs and have Emacs show you the matching lines one by one.  This works
2565 much like running a compilation; finding the source locations of the
2566 @code{grep} matches works like finding the compilation errors.
2567 @xref{Compilation}.
2569 @node List Tags
2570 @subsection Tags Table Inquiries
2572 @table @kbd
2573 @item M-x list-tags @key{RET} @var{file} @key{RET}
2574 Display a list of the tags defined in the program file @var{file}.
2575 @item M-x tags-apropos @key{RET} @var{regexp} @key{RET}
2576 Display a list of all tags matching @var{regexp}.
2577 @end table
2579 @findex list-tags
2580   @kbd{M-x list-tags} reads the name of one of the files described by
2581 the selected tags table, and displays a list of all the tags defined in
2582 that file.  The ``file name'' argument is really just a string to
2583 compare against the file names recorded in the tags table; it is read as
2584 a string rather than as a file name.  Therefore, completion and
2585 defaulting are not available, and you must enter the file name the same
2586 way it appears in the tags table.  Do not include a directory as part of
2587 the file name unless the file name recorded in the tags table includes a
2588 directory.
2590 @findex tags-apropos
2591 @vindex tags-apropos-verbose
2592   @kbd{M-x tags-apropos} is like @code{apropos} for tags
2593 (@pxref{Apropos}).  It finds all the tags in the selected tags table
2594 whose entries match @var{regexp}, and displays them.  If the variable
2595 @code{tags-apropos-verbose} is non-@code{nil}, it displays the names
2596 of the tags files together with the tag names.
2598 @vindex tags-tag-face
2599 @vindex tags-apropos-additional-actions
2600 You can customize the appearance of the output with the face
2601 @code{tags-tag-face}.  You can display additional output with @kbd{M-x
2602 tags-apropos} by customizing the variable
2603 @code{tags-apropos-additional-actions}---see its documentation for
2604 details.
2606   You can also use the collection of tag names to complete a symbol
2607 name in the buffer.  @xref{Symbol Completion}.
2609 @node Imenu
2610 @section Imenu
2611 @cindex indexes of buffer contents
2612 @cindex buffer content indexes
2613 @cindex tags
2615   The Imenu facility is another way to find definitions or sections
2616 in a file.  It is similar in spirit to Tags, but operates on a single
2617 buffer only, and works entirely within Emacs with no need for a separate
2618 tags table.
2620 @findex imenu
2621 @findex imenu-add-menu-bar-index
2622   If you type @kbd{M-x imenu}, it reads the name of a section or
2623 definition in the current buffer, then goes to that section or
2624 definition.  You can use completion to specify the name, and a
2625 complete list of possible names is always displayed.
2627   Alternatively you can bind the command @code{imenu} to a mouse
2628 click.  Then it displays mouse menus for you to select the section or
2629 definition you want.  You can also add the buffer's index to the menu
2630 bar by calling @code{imenu-add-menu-bar-index}.  If you want to have
2631 this menu bar item available for all buffers in a certain major mode,
2632 you can do this by adding @code{imenu-add-menu-bar-index} to its mode
2633 hook.  But then you will have to wait for the buffer to be searched
2634 for sections and definitions, each time you visit a file which uses
2635 that mode.
2637 @vindex imenu-auto-rescan
2638   When you change the contents of a buffer, if you add or delete
2639 definitions or sections, you can update the buffer's index to
2640 correspond to the new contents by invoking the @samp{*Rescan*} item in
2641 the menu.  Rescanning happens automatically if
2642 @code{imenu-auto-rescan} is non-@code{nil}.  There is no need to
2643 rescan because of small changes in the text.
2645 @vindex imenu-sort-function
2646   You can customize the way the menus are sorted via the variable
2647 @code{imenu-sort-function}.  By default names are ordered as they
2648 occur in the buffer; alphabetic sorting is provided as an alternative.
2650   Imenu provides the information to guide Which Function mode
2651 (@pxref{Which Function}).  The Speedbar can also use it
2652 (@pxref{Speedbar}).
2654 @node Emerge, C Modes, Imenu, Programs
2655 @section Merging Files with Emerge
2656 @cindex Emerge
2657 @cindex merging files
2659 It's not unusual for programmers to get their signals crossed and modify
2660 the same program in two different directions.  To recover from this
2661 confusion, you need to merge the two versions.  Emerge makes this
2662 easier.  See also @ref{Comparing Files}, for commands to compare
2663 in a more manual fashion, and @ref{,Ediff,, ediff, The Ediff Manual}.
2665 @menu
2666 * Overview of Emerge::  How to start Emerge.  Basic concepts.
2667 * Submodes of Emerge::  Fast mode vs. Edit mode.
2668                           Skip Prefers mode and Auto Advance mode.
2669 * State of Difference:: You do the merge by specifying state A or B
2670                           for each difference.
2671 * Merge Commands::      Commands for selecting a difference,
2672                           changing states of differences, etc.
2673 * Exiting Emerge::      What to do when you've finished the merge.
2674 * Combining in Emerge::     How to keep both alternatives for a difference.
2675 * Fine Points of Emerge::   Misc.
2676 @end menu
2678 @node Overview of Emerge
2679 @subsection Overview of Emerge
2681 To start Emerge, run one of these four commands:
2683 @table @kbd
2684 @item M-x emerge-files
2685 @findex emerge-files
2686 Merge two specified files.
2688 @item M-x emerge-files-with-ancestor
2689 @findex emerge-files-with-ancestor
2690 Merge two specified files, with reference to a common ancestor.
2692 @item M-x emerge-buffers
2693 @findex emerge-buffers
2694 Merge two buffers.
2696 @item M-x emerge-buffers-with-ancestor
2697 @findex emerge-buffers-with-ancestor
2698 Merge two buffers with reference to a common ancestor in a third
2699 buffer.
2700 @end table
2702 @cindex merge buffer (Emerge)
2703 @cindex A and B buffers (Emerge)
2704   The Emerge commands compare two files or buffers, and display the
2705 comparison in three buffers: one for each input text (the @dfn{A buffer}
2706 and the @dfn{B buffer}), and one (the @dfn{merge buffer}) where merging
2707 takes place.  The merge buffer shows the full merged text, not just the
2708 differences.  Wherever the two input texts differ, you can choose which
2709 one of them to include in the merge buffer.
2711   The Emerge commands that take input from existing buffers use only the
2712 accessible portions of those buffers, if they are narrowed
2713 (@pxref{Narrowing}).
2715   If a common ancestor version is available, from which the two texts to
2716 be merged were both derived, Emerge can use it to guess which
2717 alternative is right.  Wherever one current version agrees with the
2718 ancestor, Emerge presumes that the other current version is a deliberate
2719 change which should be kept in the merged version.  Use the
2720 @samp{with-ancestor} commands if you want to specify a common ancestor
2721 text.  These commands read three file or buffer names---variant A,
2722 variant B, and the common ancestor.
2724   After the comparison is done and the buffers are prepared, the
2725 interactive merging starts.  You control the merging by typing special
2726 @dfn{merge commands} in the merge buffer.  The merge buffer shows you a
2727 full merged text, not just differences.  For each run of differences
2728 between the input texts, you can choose which one of them to keep, or
2729 edit them both together.
2731   The merge buffer uses a special major mode, Emerge mode, with commands
2732 for making these choices.  But you can also edit the buffer with
2733 ordinary Emacs commands.
2735   At any given time, the attention of Emerge is focused on one
2736 particular difference, called the @dfn{selected} difference.  This
2737 difference is marked off in the three buffers like this:
2739 @example
2740 vvvvvvvvvvvvvvvvvvvv
2741 @var{text that differs}
2742 ^^^^^^^^^^^^^^^^^^^^
2743 @end example
2745 @noindent
2746 Emerge numbers all the differences sequentially and the mode
2747 line always shows the number of the selected difference.
2749   Normally, the merge buffer starts out with the A version of the text.
2750 But when the A version of a difference agrees with the common ancestor,
2751 then the B version is initially preferred for that difference.
2753   Emerge leaves the merged text in the merge buffer when you exit.  At
2754 that point, you can save it in a file with @kbd{C-x C-w}.  If you give a
2755 numeric argument to @code{emerge-files} or
2756 @code{emerge-files-with-ancestor}, it reads the name of the output file
2757 using the minibuffer.  (This is the last file name those commands read.)
2758 Then exiting from Emerge saves the merged text in the output file.
2760   Normally, Emerge commands save the output buffer in its file when you
2761 exit.  If you abort Emerge with @kbd{C-]}, the Emerge command does not
2762 save the output buffer, but you can save it yourself if you wish.
2764 @node Submodes of Emerge
2765 @subsection Submodes of Emerge
2767   You can choose between two modes for giving merge commands: Fast mode
2768 and Edit mode.  In Fast mode, basic merge commands are single
2769 characters, but ordinary Emacs commands are disabled.  This is
2770 convenient if you use only merge commands.  In Edit mode, all merge
2771 commands start with the prefix key @kbd{C-c C-c}, and the normal Emacs
2772 commands are also available.  This allows editing the merge buffer, but
2773 slows down Emerge operations.
2775   Use @kbd{e} to switch to Edit mode, and @kbd{C-c C-c f} to switch to
2776 Fast mode.  The mode line indicates Edit and Fast modes with @samp{E}
2777 and @samp{F}.
2779   Emerge has two additional submodes that affect how particular merge
2780 commands work: Auto Advance mode and Skip Prefers mode.
2782   If Auto Advance mode is in effect, the @kbd{a} and @kbd{b} commands
2783 advance to the next difference.  This lets you go through the merge
2784 faster as long as you simply choose one of the alternatives from the
2785 input.  The mode line indicates Auto Advance mode with @samp{A}.
2787   If Skip Prefers mode is in effect, the @kbd{n} and @kbd{p} commands
2788 skip over differences in states prefer-A and prefer-B (@pxref{State of
2789 Difference}).  Thus you see only differences for which neither version
2790 is presumed ``correct.''  The mode line indicates Skip Prefers mode with
2791 @samp{S}.
2793 @findex emerge-auto-advance-mode
2794 @findex emerge-skip-prefers-mode
2795   Use the command @kbd{s a} (@code{emerge-auto-advance-mode}) to set or
2796 clear Auto Advance mode.  Use @kbd{s s}
2797 (@code{emerge-skip-prefers-mode}) to set or clear Skip Prefers mode.
2798 These commands turn on the mode with a positive argument, turns it off
2799 with a negative or zero argument, and toggle the mode with no argument.
2801 @node State of Difference
2802 @subsection State of a Difference
2804   In the merge buffer, a difference is marked with lines of @samp{v} and
2805 @samp{^} characters.  Each difference has one of these seven states:
2807 @table @asis
2808 @item A
2809 The difference is showing the A version.  The @kbd{a} command always
2810 produces this state; the mode line indicates it with @samp{A}.
2812 @item B
2813 The difference is showing the B version.  The @kbd{b} command always
2814 produces this state; the mode line indicates it with @samp{B}.
2816 @item default-A
2817 @itemx default-B
2818 The difference is showing the A or the B state by default, because you
2819 haven't made a choice.  All differences start in the default-A state
2820 (and thus the merge buffer is a copy of the A buffer), except those for
2821 which one alternative is ``preferred'' (see below).
2823 When you select a difference, its state changes from default-A or
2824 default-B to plain A or B.  Thus, the selected difference never has
2825 state default-A or default-B, and these states are never displayed in
2826 the mode line.
2828 The command @kbd{d a} chooses default-A as the default state, and @kbd{d
2829 b} chooses default-B.  This chosen default applies to all differences
2830 which you haven't ever selected and for which no alternative is preferred.
2831 If you are moving through the merge sequentially, the differences you
2832 haven't selected are those following the selected one.  Thus, while
2833 moving sequentially, you can effectively make the A version the default
2834 for some sections of the merge buffer and the B version the default for
2835 others by using @kbd{d a} and @kbd{d b} between sections.
2837 @item prefer-A
2838 @itemx prefer-B
2839 The difference is showing the A or B state because it is
2840 @dfn{preferred}.  This means that you haven't made an explicit choice,
2841 but one alternative seems likely to be right because the other
2842 alternative agrees with the common ancestor.  Thus, where the A buffer
2843 agrees with the common ancestor, the B version is preferred, because
2844 chances are it is the one that was actually changed.
2846 These two states are displayed in the mode line as @samp{A*} and @samp{B*}.
2848 @item combined
2849 The difference is showing a combination of the A and B states, as a
2850 result of the @kbd{x c} or @kbd{x C} commands.
2852 Once a difference is in this state, the @kbd{a} and @kbd{b} commands
2853 don't do anything to it unless you give them a numeric argument.
2855 The mode line displays this state as @samp{comb}.
2856 @end table
2858 @node Merge Commands
2859 @subsection Merge Commands
2861   Here are the Merge commands for Fast mode; in Edit mode, precede them
2862 with @kbd{C-c C-c}:
2864 @table @kbd
2865 @item p
2866 Select the previous difference.
2868 @item n
2869 Select the next difference.
2871 @item a
2872 Choose the A version of this difference.
2874 @item b
2875 Choose the B version of this difference.
2877 @item C-u @var{n} j
2878 Select difference number @var{n}.
2880 @item .
2881 Select the difference containing point.  You can use this command in the
2882 merge buffer or in the A or B buffer.
2884 @item q
2885 Quit---finish the merge.
2887 @item C-]
2888 Abort---exit merging and do not save the output.
2890 @item f
2891 Go into Fast mode.  (In Edit mode, this is actually @kbd{C-c C-c f}.)
2893 @item e
2894 Go into Edit mode.
2896 @item l
2897 Recenter (like @kbd{C-l}) all three windows.
2899 @item -
2900 Specify part of a prefix numeric argument.
2902 @item @var{digit}
2903 Also specify part of a prefix numeric argument.
2905 @item d a
2906 Choose the A version as the default from here down in
2907 the merge buffer.
2909 @item d b
2910 Choose the B version as the default from here down in
2911 the merge buffer.
2913 @item c a
2914 Copy the A version of this difference into the kill ring.
2916 @item c b
2917 Copy the B version of this difference into the kill ring.
2919 @item i a
2920 Insert the A version of this difference at point.
2922 @item i b
2923 Insert the B version of this difference at point.
2925 @item m
2926 Put point and mark around the difference.
2928 @item ^
2929 Scroll all three windows down (like @kbd{M-v}).
2931 @item v
2932 Scroll all three windows up (like @kbd{C-v}).
2934 @item <
2935 Scroll all three windows left (like @kbd{C-x <}).
2937 @item >
2938 Scroll all three windows right (like @kbd{C-x >}).
2940 @item |
2941 Reset horizontal scroll on all three windows.
2943 @item x 1
2944 Shrink the merge window to one line.  (Use @kbd{C-u l} to restore it
2945 to full size.)
2947 @item x c
2948 Combine the two versions of this difference (@pxref{Combining in
2949 Emerge}).
2951 @item x f
2952 Show the names of the files/buffers Emerge is operating on, in a Help
2953 window.  (Use @kbd{C-u l} to restore windows.)
2955 @item x j
2956 Join this difference with the following one.
2957 (@kbd{C-u x j} joins this difference with the previous one.)
2959 @item x s
2960 Split this difference into two differences.  Before you use this
2961 command, position point in each of the three buffers at the place where
2962 you want to split the difference.
2964 @item x t
2965 Trim identical lines off the top and bottom of the difference.
2966 Such lines occur when the A and B versions are
2967 identical but differ from the ancestor version.
2968 @end table
2970 @node Exiting Emerge
2971 @subsection Exiting Emerge
2973   The @kbd{q} command (@code{emerge-quit}) finishes the merge, storing
2974 the results into the output file if you specified one.  It restores the
2975 A and B buffers to their proper contents, or kills them if they were
2976 created by Emerge and you haven't changed them.  It also disables the
2977 Emerge commands in the merge buffer, since executing them later could
2978 damage the contents of the various buffers.
2980   @kbd{C-]} aborts the merge.  This means exiting without writing the
2981 output file.  If you didn't specify an output file, then there is no
2982 real difference between aborting and finishing the merge.
2984   If the Emerge command was called from another Lisp program, then its
2985 return value is @code{t} for successful completion, or @code{nil} if you
2986 abort.
2988 @node Combining in Emerge
2989 @subsection Combining the Two Versions
2991   Sometimes you want to keep @emph{both} alternatives for a particular
2992 difference.  To do this, use @kbd{x c}, which edits the merge buffer
2993 like this:
2995 @example
2996 @group
2997 #ifdef NEW
2998 @var{version from A buffer}
2999 #else /* not NEW */
3000 @var{version from B buffer}
3001 #endif /* not NEW */
3002 @end group
3003 @end example
3005 @noindent
3006 @vindex emerge-combine-versions-template
3007 While this example shows C preprocessor conditionals delimiting the two
3008 alternative versions, you can specify the strings to use by setting
3009 the variable @code{emerge-combine-versions-template} to a string of your
3010 choice.  In the string, @samp{%a} says where to put version A, and
3011 @samp{%b} says where to put version B.  The default setting, which
3012 produces the results shown above, looks like this:
3014 @example
3015 @group
3016 "#ifdef NEW\n%a#else /* not NEW */\n%b#endif /* not NEW */\n"
3017 @end group
3018 @end example
3020 @node Fine Points of Emerge
3021 @subsection Fine Points of Emerge
3023   During the merge, you mustn't try to edit the A and B buffers yourself.
3024 Emerge modifies them temporarily, but ultimately puts them back the way
3025 they were.
3027   You can have any number of merges going at once---just don't use any one
3028 buffer as input to more than one merge at once, since the temporary
3029 changes made in these buffers would get in each other's way.
3031   Starting Emerge can take a long time because it needs to compare the
3032 files fully.  Emacs can't do anything else until @code{diff} finishes.
3033 Perhaps in the future someone will change Emerge to do the comparison in
3034 the background when the input files are large---then you could keep on
3035 doing other things with Emacs until Emerge is ready to accept
3036 commands.
3038 @vindex emerge-startup-hook
3039   After setting up the merge, Emerge runs the hook
3040 @code{emerge-startup-hook} (@pxref{Hooks}).
3042 @node C Modes
3043 @section C and Related Modes
3044 @cindex C mode
3045 @cindex Java mode
3046 @cindex Pike mode
3047 @cindex IDL mode
3048 @cindex CORBA IDL mode
3049 @cindex Objective C mode
3050 @cindex C++ mode
3051 @cindex mode, Java
3052 @cindex mode, C
3053 @cindex mode, Objective C
3054 @cindex mode, CORBA IDL
3055 @cindex mode, Pike
3057   This section gives a brief description of the special features
3058 available in C, C++, Objective-C, Java, CORBA IDL, and Pike modes.
3059 (These are called ``C mode and related modes.'')  @xref{Top, CC Mode,
3060 ccmode, , CC Mode}, for a more extensive description of these modes
3061 and their special features.
3063 @menu
3064 * Motion in C::
3065 * Electric C::
3066 * Hungry Delete::
3067 * Other C Commands::
3068 * Comments in C::
3069 @end menu
3071 @node Motion in C
3072 @subsection C Mode Motion Commands
3074   This section describes commands for moving point, in C mode and
3075 related modes.
3077 @table @code
3078 @item C-c C-u
3079 @kindex C-c C-u @r{(C mode)}
3080 @findex c-up-conditional
3081 Move point back to the containing preprocessor conditional, leaving the
3082 mark behind.  A prefix argument acts as a repeat count.  With a negative
3083 argument, move point forward to the end of the containing
3084 preprocessor conditional.  When going backwards, @code{#elif} is treated
3085 like @code{#else} followed by @code{#if}.  When going forwards,
3086 @code{#elif} is ignored.@refill
3088 @item C-c C-p
3089 @kindex C-c C-p @r{(C mode)}
3090 @findex c-backward-conditional
3091 Move point back over a preprocessor conditional, leaving the mark
3092 behind.  A prefix argument acts as a repeat count.  With a negative
3093 argument, move forward.
3095 @item C-c C-n
3096 @kindex C-c C-n @r{(C mode)}
3097 @findex c-forward-conditional
3098 Move point forward across a preprocessor conditional, leaving the mark
3099 behind.  A prefix argument acts as a repeat count.  With a negative
3100 argument, move backward.
3102 @item M-a
3103 @kindex ESC a
3104 @findex c-beginning-of-statement
3105 Move point to the beginning of the innermost C statement
3106 (@code{c-beginning-of-statement}).  If point is already at the beginning
3107 of a statement, move to the beginning of the preceding statement.  With
3108 prefix argument @var{n}, move back @var{n} @minus{} 1 statements.
3110 If point is within a string or comment, or next to a comment (only
3111 whitespace between them), this command moves by sentences instead of
3112 statements.
3114 When called from a program, this function takes three optional
3115 arguments: the numeric prefix argument, a buffer position limit
3116 (don't move back before that place), and a flag that controls whether
3117 to do sentence motion when inside of a comment.
3119 @item M-e
3120 @kindex ESC e
3121 @findex c-end-of-statement
3122 Move point to the end of the innermost C statement; like @kbd{M-a}
3123 except that it moves in the other direction (@code{c-end-of-statement}).
3125 @item M-x c-backward-into-nomenclature
3126 @findex c-backward-into-nomenclature
3127 Move point backward to beginning of a C++ nomenclature section or word.
3128 With prefix argument @var{n}, move @var{n} times.  If @var{n} is
3129 negative, move forward.  C++ nomenclature means a symbol name in the
3130 style of NamingSymbolsWithMixedCaseAndNoUnderlines; each capital letter
3131 begins a section or word.
3133 In the GNU project, we recommend using underscores to separate words
3134 within an identifier in C or C++, rather than using case distinctions.
3136 @item M-x c-forward-into-nomenclature
3137 @findex c-forward-into-nomenclature
3138 Move point forward to end of a C++ nomenclature section or word.
3139 With prefix argument @var{n}, move @var{n} times.
3140 @end table
3142 @node Electric C
3143 @subsection Electric C Characters
3145   In C mode and related modes, certain printing characters are
3146 ``electric''---in addition to inserting themselves, they also reindent
3147 the current line and may insert newlines.  This feature is controlled by
3148 the variable @code{c-auto-newline}.  The ``electric'' characters are
3149 @kbd{@{}, @kbd{@}}, @kbd{:}, @kbd{#}, @kbd{;}, @kbd{,}, @kbd{<},
3150 @kbd{>}, @kbd{/}, @kbd{*}, @kbd{(}, and @kbd{)}.
3152   Electric characters insert newlines only when the @dfn{auto-newline}
3153 feature is enabled (indicated by @samp{/a} in the mode line after the
3154 mode name).  This feature is controlled by the variable
3155 @code{c-auto-newline}.  You can turn this feature on or off with the
3156 command @kbd{C-c C-a}:
3158 @table @kbd
3159 @item C-c C-a
3160 @kindex C-c C-a @r{(C mode)}
3161 @findex c-toggle-auto-state
3162 Toggle the auto-newline feature (@code{c-toggle-auto-state}).  With a
3163 prefix argument, this command turns the auto-newline feature on if the
3164 argument is positive, and off if it is negative.
3165 @end table
3167   The colon character is electric because that is appropriate for a
3168 single colon.  But when you want to insert a double colon in C++, the
3169 electric behavior of colon is inconvenient.  You can insert a double
3170 colon with no reindentation or newlines by typing @kbd{C-c :}:
3172 @table @kbd
3173 @item C-c :
3174 @kindex C-c : @r{(C mode)}
3175 @findex c-scope-operator
3176 Insert a double colon scope operator at point, without reindenting the
3177 line or adding any newlines (@code{c-scope-operator}).
3178 @end table
3180   The electric @kbd{#} key reindents the line if it appears to be the
3181 beginning of a preprocessor directive.  This happens when the value of
3182 @code{c-electric-pound-behavior} is @code{(alignleft)}.  You can turn
3183 this feature off by setting @code{c-electric-pound-behavior} to
3184 @code{nil}.
3186    The variable @code{c-hanging-braces-alist} controls the insertion of
3187 newlines before and after inserted braces.  It is an association list
3188 with elements of the following form: @code{(@var{syntactic-symbol}
3189 . @var{nl-list})}.  Most of the syntactic symbols that appear in
3190 @code{c-offsets-alist} are meaningful here as well.
3192    The list @var{nl-list} may contain either of the symbols
3193 @code{before} or @code{after}, or both; or it may be @code{nil}.  When a
3194 brace is inserted, the syntactic context it defines is looked up in
3195 @code{c-hanging-braces-alist}; if it is found, the @var{nl-list} is used
3196 to determine where newlines are inserted: either before the brace,
3197 after, or both.  If not found, the default is to insert a newline both
3198 before and after braces.
3200    The variable @code{c-hanging-colons-alist} controls the insertion of
3201 newlines before and after inserted colons.  It is an association list
3202 with elements of the following form: @code{(@var{syntactic-symbol}
3203 . @var{nl-list})}.  The list @var{nl-list} may contain either of the
3204 symbols @code{before} or @code{after}, or both; or it may be @code{nil}.
3206    When a colon is inserted, the syntactic symbol it defines is looked
3207 up in this list, and if found, the @var{nl-list} is used to determine
3208 where newlines are inserted: either before the brace, after, or both.
3209 If the syntactic symbol is not found in this list, no newlines are
3210 inserted.
3212    Electric characters can also delete newlines automatically when the
3213 auto-newline feature is enabled.  This feature makes auto-newline more
3214 acceptable, by deleting the newlines in the most common cases where you
3215 do not want them.  Emacs can recognize several cases in which deleting a
3216 newline might be desirable; by setting the variable
3217 @code{c-cleanup-list}, you can specify @emph{which} of these cases that
3218 should happen.  The variable's value is a list of symbols, each
3219 describing one case for possible deletion of a newline.  Here are the
3220 meaningful symbols, and their meanings:
3222 @table @code
3223 @item brace-catch-brace
3224 Clean up @samp{@} catch (@var{condition}) @{} constructs by placing the
3225 entire construct on a single line.  The clean-up occurs when you type
3226 the @samp{@{}, if there is nothing between the braces aside from
3227 @code{catch} and @var{condition}.
3229 @item brace-else-brace
3230 Clean up @samp{@} else @{} constructs by placing the entire construct on
3231 a single line.  The clean-up occurs when you type the @samp{@{} after
3232 the @code{else}, but only if there is nothing but white space between
3233 the braces and the @code{else}.
3235 @item brace-elseif-brace
3236 Clean up @samp{@} else if (@dots{}) @{} constructs by placing the entire
3237 construct on a single line.  The clean-up occurs when you type the
3238 @samp{@{}, if there is nothing but white space between the @samp{@}} and
3239 @samp{@{} aside from the keywords and the @code{if}-condition.
3241 @item empty-defun-braces
3242 Clean up empty defun braces by placing the braces on the same
3243 line.  Clean-up occurs when you type the closing brace.
3245 @item defun-close-semi
3246 Clean up the semicolon after a @code{struct} or similar type
3247 declaration, by placing the semicolon on the same line as the closing
3248 brace.  Clean-up occurs when you type the semicolon.
3250 @item list-close-comma
3251 Clean up commas following braces in array and aggregate
3252 initializers.  Clean-up occurs when you type the comma.
3254 @item scope-operator
3255 Clean up double colons which may designate a C++ scope operator, by
3256 placing the colons together.  Clean-up occurs when you type the second
3257 colon, but only when the two colons are separated by nothing but
3258 whitespace.
3259 @end table
3261 @node Hungry Delete
3262 @subsection Hungry Delete Feature in C
3264   When the @dfn{hungry-delete} feature is enabled (indicated by
3265 @samp{/h} or @samp{/ah} in the mode line after the mode name), a single
3266 @key{DEL} command deletes all preceding whitespace, not just one space.
3267 To turn this feature on or off, use @kbd{C-c C-d}:
3269 @table @kbd
3270 @item C-c C-d
3271 @kindex C-c C-d @r{(C mode)}
3272 @findex c-toggle-hungry-state
3273 Toggle the hungry-delete feature (@code{c-toggle-hungry-state}).  With a
3274 prefix argument, this command turns the hungry-delete feature on if the
3275 argument is positive, and off if it is negative.
3277 @item C-c C-t
3278 @kindex C-c C-t @r{(C mode)}
3279 @findex c-toggle-auto-hungry-state
3280 Toggle the auto-newline and hungry-delete features, both at once
3281 (@code{c-toggle-auto-hungry-state}).
3282 @end table
3284 @vindex c-hungry-delete-key
3285    The variable @code{c-hungry-delete-key} controls whether the
3286 hungry-delete feature is enabled.
3288 @node Other C Commands
3289 @subsection Other Commands for C Mode
3291 @table @kbd
3292 @item C-M-h
3293 Put mark at the end of a function definition, and put point at the
3294 beginning (@code{c-mark-function}).
3296 @item M-q
3297 @kindex M-q @r{(C mode)}
3298 @findex c-fill-paragraph
3299 Fill a paragraph, handling C and C++ comments (@code{c-fill-paragraph}).
3300 If any part of the current line is a comment or within a comment, this
3301 command fills the comment or the paragraph of it that point is in,
3302 preserving the comment indentation and comment delimiters.
3304 @item C-c C-e
3305 @cindex macro expansion in C
3306 @cindex expansion of C macros
3307 @findex c-macro-expand
3308 @kindex C-c C-e @r{(C mode)}
3309 Run the C preprocessor on the text in the region, and show the result,
3310 which includes the expansion of all the macro calls
3311 (@code{c-macro-expand}).  The buffer text before the region is also
3312 included in preprocessing, for the sake of macros defined there, but the
3313 output from this part isn't shown.
3315 When you are debugging C code that uses macros, sometimes it is hard to
3316 figure out precisely how the macros expand.  With this command, you
3317 don't have to figure it out; you can see the expansions.
3319 @item C-c C-\
3320 @findex c-backslash-region
3321 @kindex C-c C-\ @r{(C mode)}
3322 Insert or align @samp{\} characters at the ends of the lines of the
3323 region (@code{c-backslash-region}).  This is useful after writing or
3324 editing a C macro definition.
3326 If a line already ends in @samp{\}, this command adjusts the amount of
3327 whitespace before it.  Otherwise, it inserts a new @samp{\}.  However,
3328 the last line in the region is treated specially; no @samp{\} is
3329 inserted on that line, and any @samp{\} there is deleted.
3331 @item M-x cpp-highlight-buffer
3332 @cindex preprocessor highlighting
3333 @findex cpp-highlight-buffer
3334 Highlight parts of the text according to its preprocessor conditionals.
3335 This command displays another buffer named @samp{*CPP Edit*}, which
3336 serves as a graphic menu for selecting how to display particular kinds
3337 of conditionals and their contents.  After changing various settings,
3338 click on @samp{[A]pply these settings} (or go to that buffer and type
3339 @kbd{a}) to rehighlight the C mode buffer accordingly.
3341 @item C-c C-s
3342 @findex c-show-syntactic-information
3343 @kindex C-c C-s @r{(C mode)}
3344 Display the syntactic information about the current source line
3345 (@code{c-show-syntactic-information}).  This is the information that
3346 directs how the line is indented.
3348 @item M-x cwarn-mode
3349 @itemx M-x global-cwarn-mode
3350 @findex cwarn-mode
3351 @findex global-cwarn-mode
3352 @cindex CWarn mode
3353 @cindex suspicious constructions in C, C++
3354 CWarn minor mode highlights certain suspicious C and C++ constructions:
3356 @itemize @bullet{}
3357 @item
3358 Assignments inside expressions.
3359 @item
3360 Semicolon following immediately after @samp{if}, @samp{for}, and @samp{while}
3361 (except after a @samp{do @dots{} while} statement);
3362 @item
3363 C++ functions with reference parameters.
3364 @end itemize
3366 @noindent
3367 You can enable the mode for one buffer with the command @kbd{M-x
3368 cwarn-mode}, or for all suitable buffers with the command @kbd{M-x
3369 global-cwarn-mode} or by customizing the variable
3370 @code{global-cwarn-mode}.  You must also enable Font Lock mode to make
3371 it work.
3373 @item M-x hide-ifdef-mode
3374 @findex hide-ifdef-mode
3375 @cindex Hide-ifdef mode
3376 Hide-ifdef minor mode hides selected code within @samp{#if} and
3377 @samp{#ifdef} preprocessor blocks.  See the documentation string of
3378 @code{hide-ifdef-mode} for more information.
3380 @item M-x ff-find-related-file
3381 @cindex related files
3382 @findex ff-find-related-file
3383 @vindex ff-related-file-alist
3384 Find a file ``related'' in a special way to the file visited by the
3385 current buffer.  Typically this will be the header file corresponding
3386 to a C/C++ source file, or vice versa.  The variable
3387 @code{ff-related-file-alist} specifies how to compute related file
3388 names.
3389 @end table
3391 @node Comments in C
3392 @subsection Comments in C Modes
3394    C mode and related modes use a number of variables for controlling
3395 comment format.
3397 @table @code
3398 @item c-comment-only-line-offset
3399 @vindex c-comment-only-line-offset
3400 Extra offset for line which contains only the start of a comment.  It
3401 can be either an integer or a cons cell of the form
3402 @code{(@var{non-anchored-offset} . @var{anchored-offset})}, where
3403 @var{non-anchored-offset} is the amount of offset given to
3404 non-column-zero anchored comment-only lines, and @var{anchored-offset}
3405 is the amount of offset to give column-zero anchored comment-only lines.
3406 Just an integer as value is equivalent to @code{(@var{val} . 0)}.
3408 @item c-comment-start-regexp
3409 @vindex c-comment-start-regexp
3410 This buffer-local variable specifies how to recognize the start of a comment.
3412 @item c-hanging-comment-ender-p
3413 @vindex c-hanging-comment-ender-p
3414 If this variable is @code{nil}, @code{c-fill-paragraph} leaves the
3415 comment terminator of a block comment on a line by itself.  The default
3416 value is @code{t}, which puts the comment-end delimiter @samp{*/} at the
3417 end of the last line of the comment text.
3419 @item c-hanging-comment-starter-p
3420 @vindex c-hanging-comment-starter-p
3421 If this variable is @code{nil}, @code{c-fill-paragraph} leaves the
3422 starting delimiter of a block comment on a line by itself.  The default
3423 value is @code{t}, which puts the comment-start delimiter @samp{/*} at
3424 the beginning of the first line of the comment text.
3425 @end table
3427 @node Fortran
3428 @section Fortran Mode
3429 @cindex Fortran mode
3430 @cindex mode, Fortran
3432   Fortran mode provides special motion commands for Fortran statements and
3433 subprograms, and indentation commands that understand Fortran conventions
3434 of nesting, line numbers and continuation statements.  Fortran mode has
3435 its own Auto Fill mode that breaks long lines into proper Fortran
3436 continuation lines.
3438   Special commands for comments are provided because Fortran comments
3439 are unlike those of other languages.  Built-in abbrevs optionally save
3440 typing when you insert Fortran keywords.
3442   Use @kbd{M-x fortran-mode} to switch to this major mode.  This command
3443 runs the hook @code{fortran-mode-hook} (@pxref{Hooks}).
3445 @cindex Fortran77 and Fortran90
3446 @findex f90-mode
3447 @findex fortran-mode
3448   Fortan mode is meant for editing Fortran77 ``fixed format'' source
3449 code.  For editing the modern Fortran90 ``free format'' source code,
3450 use F90 mode (@code{f90-mode}).  Emacs normally uses Fortran mode for
3451 files with extension @samp{.f}, @samp{.F} or @samp{.for}, and F90 mode
3452 for the extension @samp{.f90}.  GNU Fortran supports both kinds of
3453 format.
3455 @menu
3456 * Motion: Fortran Motion.        Moving point by statements or subprograms.
3457 * Indent: Fortran Indent.        Indentation commands for Fortran.
3458 * Comments: Fortran Comments.    Inserting and aligning comments.
3459 * Autofill: Fortran Autofill.    Auto fill minor mode for Fortran.
3460 * Columns: Fortran Columns.      Measuring columns for valid Fortran.
3461 * Abbrev: Fortran Abbrev.        Built-in abbrevs for Fortran keywords.
3462 @end menu
3464 @node Fortran Motion
3465 @subsection Motion Commands
3467   In addition to the normal commands for moving by and operating on
3468 ``defuns'' (Fortran subprograms---functions and subroutines), Fortran
3469 mode provides special commands to move by statements.
3471 @table @kbd
3472 @kindex C-c C-n @r{(Fortran mode)}
3473 @findex fortran-next-statement
3474 @item C-c C-n
3475 Move to beginning of current or next statement
3476 (@code{fortran-next-statement}).
3478 @kindex C-c C-p @r{(Fortran mode)}
3479 @findex fortran-previous-statement
3480 @item C-c C-p
3481 Move to beginning of current or previous statement
3482 (@code{fortran-previous-statement}).
3483 @end table
3485 @node Fortran Indent
3486 @subsection Fortran Indentation
3488   Special commands and features are needed for indenting Fortran code in
3489 order to make sure various syntactic entities (line numbers, comment line
3490 indicators and continuation line flags) appear in the columns that are
3491 required for standard Fortran.
3493 @menu
3494 * Commands: ForIndent Commands.  Commands for indenting and filling Fortran.
3495 * Contline: ForIndent Cont.      How continuation lines indent.
3496 * Numbers:  ForIndent Num.       How line numbers auto-indent.
3497 * Conv:     ForIndent Conv.      Conventions you must obey to avoid trouble.
3498 * Vars:     ForIndent Vars.      Variables controlling Fortran indent style.
3499 @end menu
3501 @node ForIndent Commands
3502 @subsubsection Fortran Indentation and Filling Commands
3504 @table @kbd
3505 @item C-M-j
3506 Break the current line and set up a continuation line
3507 (@code{fortran-split-line}).
3508 @item M-^
3509 Join this line to the previous line (@code{fortran-join-line}).
3510 @item C-M-q
3511 Indent all the lines of the subprogram point is in
3512 (@code{fortran-indent-subprogram}).
3513 @item M-q
3514 Fill a comment block or statement.
3515 @end table
3517 @kindex C-M-q @r{(Fortran mode)}
3518 @findex fortran-indent-subprogram
3519   The key @kbd{C-M-q} runs @code{fortran-indent-subprogram}, a command
3520 to reindent all the lines of the Fortran subprogram (function or
3521 subroutine) containing point.
3523 @kindex C-M-j @r{(Fortran mode)}
3524 @findex fortran-split-line
3525   The key @kbd{C-M-j} runs @code{fortran-split-line}, which splits
3526 a line in the appropriate fashion for Fortran.  In a non-comment line,
3527 the second half becomes a continuation line and is indented
3528 accordingly.  In a comment line, both halves become separate comment
3529 lines.
3531 @kindex M-^ @r{(Fortran mode)}
3532 @kindex C-c C-d @r{(Fortran mode)}
3533 @findex fortran-join-line
3534   @kbd{M-^} or @kbd{C-c C-d} runs the command @code{fortran-join-line},
3535 which joins a continuation line back to the previous line, roughly as
3536 the inverse of @code{fortran-split-line}.  The point must be on a
3537 continuation line when this command is invoked.
3539 @kindex M-q @r{(Fortran mode)}
3540 @kbd{M-q} in Fortran mode fills the comment block or statement that
3541 point is in.  This removes any excess statement continuations.
3543 @node ForIndent Cont
3544 @subsubsection Continuation Lines
3545 @cindex Fortran continuation lines
3547 @vindex fortran-continuation-string
3548   Most modern Fortran compilers allow two ways of writing continuation
3549 lines.  If the first non-space character on a line is in column 5, then
3550 that line is a continuation of the previous line.  We call this
3551 @dfn{fixed format}.  (In GNU Emacs we always count columns from 0.)  The
3552 variable @code{fortran-continuation-string} specifies what character to
3553 put on column 5.  A line that starts with a tab character followed by
3554 any digit except @samp{0} is also a continuation line.  We call this
3555 style of continuation @dfn{tab format}.
3557 @vindex indent-tabs-mode @r{(Fortran mode)}
3558   Fortran mode can make either style of continuation line, but you
3559 must specify which one you prefer.  The value of the variable
3560 @code{indent-tabs-mode} controls the choice: @code{nil} for fixed
3561 format, and non-@code{nil} for tab format.  You can tell which style
3562 is presently in effect by the presence or absence of the string
3563 @samp{Tab} in the mode line.
3565   If the text on a line starts with the conventional Fortran
3566 continuation marker @samp{$}, or if it begins with any non-whitespace
3567 character in column 5, Fortran mode treats it as a continuation line.
3568 When you indent a continuation line with @key{TAB}, it converts the line
3569 to the current continuation style.  When you split a Fortran statement
3570 with @kbd{C-M-j}, the continuation marker on the newline is created
3571 according to the continuation style.
3573   The setting of continuation style affects several other aspects of
3574 editing in Fortran mode.  In fixed format mode, the minimum column
3575 number for the body of a statement is 6.  Lines inside of Fortran
3576 blocks that are indented to larger column numbers always use only the
3577 space character for whitespace.  In tab format mode, the minimum
3578 column number for the statement body is 8, and the whitespace before
3579 column 8 must always consist of one tab character.
3581 @vindex fortran-tab-mode-default
3582 @vindex fortran-analyze-depth
3583   When you enter Fortran mode for an existing file, it tries to deduce the
3584 proper continuation style automatically from the file contents.  The first
3585 line that begins with either a tab character or six spaces determines the
3586 choice.  The variable @code{fortran-analyze-depth} specifies how many lines
3587 to consider (at the beginning of the file); if none of those lines
3588 indicates a style, then the variable @code{fortran-tab-mode-default}
3589 specifies the style.  If it is @code{nil}, that specifies fixed format, and
3590 non-@code{nil} specifies tab format.
3592 @node ForIndent Num
3593 @subsubsection Line Numbers
3595   If a number is the first non-whitespace in the line, Fortran
3596 indentation assumes it is a line number and moves it to columns 0
3597 through 4.  (Columns always count from 0 in GNU Emacs.)
3599 @vindex fortran-line-number-indent
3600   Line numbers of four digits or less are normally indented one space.
3601 The variable @code{fortran-line-number-indent} controls this; it
3602 specifies the maximum indentation a line number can have.  Line numbers
3603 are indented to right-justify them to end in column 4 unless that would
3604 require more than this maximum indentation.  The default value of the
3605 variable is 1.
3607 @vindex fortran-electric-line-number
3608   Simply inserting a line number is enough to indent it according to
3609 these rules.  As each digit is inserted, the indentation is recomputed.
3610 To turn off this feature, set the variable
3611 @code{fortran-electric-line-number} to @code{nil}.  Then inserting line
3612 numbers is like inserting anything else.
3614 @node ForIndent Conv
3615 @subsubsection Syntactic Conventions
3617   Fortran mode assumes that you follow certain conventions that simplify
3618 the task of understanding a Fortran program well enough to indent it
3619 properly:
3621 @itemize @bullet
3622 @item
3623 Two nested @samp{do} loops never share a @samp{continue} statement.
3625 @item
3626 Fortran keywords such as @samp{if}, @samp{else}, @samp{then}, @samp{do}
3627 and others are written without embedded whitespace or line breaks.
3629 Fortran compilers generally ignore whitespace outside of string
3630 constants, but Fortran mode does not recognize these keywords if they
3631 are not contiguous.  Constructs such as @samp{else if} or @samp{end do}
3632 are acceptable, but the second word should be on the same line as the
3633 first and not on a continuation line.
3634 @end itemize
3636 @noindent
3637 If you fail to follow these conventions, the indentation commands may
3638 indent some lines unaesthetically.  However, a correct Fortran program
3639 retains its meaning when reindented even if the conventions are not
3640 followed.
3642 @node ForIndent Vars
3643 @subsubsection Variables for Fortran Indentation
3645 @vindex fortran-do-indent
3646 @vindex fortran-if-indent
3647 @vindex fortran-structure-indent
3648 @vindex fortran-continuation-indent
3649 @vindex fortran-check-all-num@dots{}
3650 @vindex fortran-minimum-statement-indent@dots{}
3651   Several additional variables control how Fortran indentation works:
3653 @table @code
3654 @item fortran-do-indent
3655 Extra indentation within each level of @samp{do} statement (default 3).
3657 @item fortran-if-indent
3658 Extra indentation within each level of @samp{if} statement (default 3).
3659 This value is also used for extra indentation within each level of the
3660 Fortran 90 @samp{where} statement.
3662 @item fortran-structure-indent
3663 Extra indentation within each level of @samp{structure}, @samp{union}, or
3664 @samp{map} statements (default 3).
3666 @item fortran-continuation-indent
3667 Extra indentation for bodies of continuation lines (default 5).
3669 @item fortran-check-all-num-for-matching-do
3670 If this is @code{nil}, indentation assumes that each @samp{do} statement
3671 ends on a @samp{continue} statement.  Therefore, when computing
3672 indentation for a statement other than @samp{continue}, it can save time
3673 by not checking for a @samp{do} statement ending there.  If this is
3674 non-@code{nil}, indenting any numbered statement must check for a
3675 @samp{do} that ends there.  The default is @code{nil}.
3677 @item fortran-blink-matching-if
3678 If this is @code{t}, indenting an @samp{endif} statement moves the
3679 cursor momentarily to the matching @samp{if} statement to show where it
3680 is.  The default is @code{nil}.
3682 @item fortran-minimum-statement-indent-fixed
3683 Minimum indentation for fortran statements when using fixed format
3684 continuation line style.  Statement bodies are never indented less than
3685 this much.  The default is 6.
3687 @item fortran-minimum-statement-indent-tab
3688 Minimum indentation for fortran statements for tab format continuation line
3689 style.  Statement bodies are never indented less than this much.  The
3690 default is 8.
3691 @end table
3693 @node Fortran Comments
3694 @subsection Fortran Comments
3696   The usual Emacs comment commands assume that a comment can follow a line
3697 of code.  In Fortran, the standard comment syntax requires an entire line
3698 to be just a comment.  Therefore, Fortran mode replaces the standard Emacs
3699 comment commands and defines some new variables.
3701   Fortran mode can also handle the Fortran90 comment syntax where comments
3702 start with @samp{!} and can follow other text.  Because only some Fortran77
3703 compilers accept this syntax, Fortran mode will not insert such comments
3704 unless you have said in advance to do so.  To do this, set the variable
3705 @code{comment-start} to @samp{"!"} (@pxref{Variables}).
3707 @table @kbd
3708 @item M-;
3709 Align comment or insert new comment (@code{fortran-comment-indent}).
3711 @item C-x ;
3712 Applies to nonstandard @samp{!} comments only.
3714 @item C-c ;
3715 Turn all lines of the region into comments, or (with argument) turn them back
3716 into real code (@code{fortran-comment-region}).
3717 @end table
3719   @kbd{M-;} in Fortran mode is redefined as the command
3720 @code{fortran-comment-indent}.  Like the usual @kbd{M-;} command, this
3721 recognizes any kind of existing comment and aligns its text appropriately;
3722 if there is no existing comment, a comment is inserted and aligned.  But
3723 inserting and aligning comments are not the same in Fortran mode as in
3724 other modes.
3726   When a new comment must be inserted, if the current line is blank, a
3727 full-line comment is inserted.  On a non-blank line, a nonstandard @samp{!}
3728 comment is inserted if you have said you want to use them.  Otherwise a
3729 full-line comment is inserted on a new line before the current line.
3731   Nonstandard @samp{!} comments are aligned like comments in other
3732 languages, but full-line comments are different.  In a standard full-line
3733 comment, the comment delimiter itself must always appear in column zero.
3734 What can be aligned is the text within the comment.  You can choose from
3735 three styles of alignment by setting the variable
3736 @code{fortran-comment-indent-style} to one of these values:
3738 @vindex fortran-comment-indent-style
3739 @vindex fortran-comment-line-extra-indent
3740 @table @code
3741 @item fixed
3742 Align the text at a fixed column, which is the sum of
3743 @code{fortran-comment-line-extra-indent} and the minimum statement
3744 indentation.  This is the default.
3746 The minimum statement indentation is
3747 @code{fortran-minimum-statement-indent-fixed} for fixed format
3748 continuation line style and @code{fortran-minimum-statement-indent-tab}
3749 for tab format style.
3751 @item relative
3752 Align the text as if it were a line of code, but with an additional
3753 @code{fortran-comment-line-extra-indent} columns of indentation.
3755 @item nil
3756 Don't move text in full-line comments automatically at all.
3757 @end table
3759 @vindex fortran-comment-indent-char
3760   In addition, you can specify the character to be used to indent within
3761 full-line comments by setting the variable
3762 @code{fortran-comment-indent-char} to the single-character string you want
3763 to use.
3765 @vindex comment-line-start
3766 @vindex comment-line-start-skip
3767   Fortran mode introduces two variables @code{comment-line-start} and
3768 @code{comment-line-start-skip}, which play for full-line comments the same
3769 roles played by @code{comment-start} and @code{comment-start-skip} for
3770 ordinary text-following comments.  Normally these are set properly by
3771 Fortran mode, so you do not need to change them.
3773   The normal Emacs comment command @kbd{C-x ;} has not been redefined.  If
3774 you use @samp{!} comments, this command can be used with them.  Otherwise
3775 it is useless in Fortran mode.
3777 @kindex C-c ; @r{(Fortran mode)}
3778 @findex fortran-comment-region
3779 @vindex fortran-comment-region
3780   The command @kbd{C-c ;} (@code{fortran-comment-region}) turns all the
3781 lines of the region into comments by inserting the string @samp{C$$$} at
3782 the front of each one.  With a numeric argument, it turns the region
3783 back into live code by deleting @samp{C$$$} from the front of each line
3784 in it.  The string used for these comments can be controlled by setting
3785 the variable @code{fortran-comment-region}.  Note that here we have an
3786 example of a command and a variable with the same name; these two uses
3787 of the name never conflict because in Lisp and in Emacs it is always
3788 clear from the context which one is meant.
3790 @node Fortran Autofill
3791 @subsection Fortran Auto Fill Mode
3793   Fortran Auto Fill mode is a minor mode which automatically splits
3794 Fortran statements as you insert them when they become too wide.
3795 Splitting a statement involves making continuation lines using
3796 @code{fortran-continuation-string} (@pxref{ForIndent Cont}).  This
3797 splitting happens when you type @key{SPC}, @key{RET}, or @key{TAB}, and
3798 also in the Fortran indentation commands.
3800 @findex fortran-auto-fill-mode
3801   @kbd{M-x fortran-auto-fill-mode} turns Fortran Auto Fill mode on if it
3802 was off, or off if it was on.  This command works the same as @kbd{M-x
3803 auto-fill-mode} does for normal Auto Fill mode (@pxref{Filling}).  A
3804 positive numeric argument turns Fortran Auto Fill mode on, and a
3805 negative argument turns it off.  You can see when Fortran Auto Fill mode
3806 is in effect by the presence of the word @samp{Fill} in the mode line,
3807 inside the parentheses.  Fortran Auto Fill mode is a minor mode, turned
3808 on or off for each buffer individually.  @xref{Minor Modes}.
3810 @vindex fortran-break-before-delimiters
3811    Fortran Auto Fill mode breaks lines at spaces or delimiters when the
3812 lines get longer than the desired width (the value of @code{fill-column}).
3813 The delimiters that Fortran Auto Fill mode may break at are @samp{,},
3814 @samp{'}, @samp{+}, @samp{-}, @samp{/}, @samp{*}, @samp{=}, and @samp{)}.
3815 The line break comes after the delimiter if the variable
3816 @code{fortran-break-before-delimiters} is @code{nil}.  Otherwise (and by
3817 default), the break comes before the delimiter.
3819   By default, Fortran Auto Fill mode is not enabled.  If you want this
3820 feature turned on permanently, add a hook function to
3821 @code{fortran-mode-hook} to execute @code{(fortran-auto-fill-mode 1)}.
3822 @xref{Hooks}.
3824 @node Fortran Columns
3825 @subsection Checking Columns in Fortran
3827 @table @kbd
3828 @item C-c C-r
3829 Display a ``column ruler'' momentarily above the current line
3830 (@code{fortran-column-ruler}).
3831 @item C-c C-w
3832 Split the current window horizontally temporarily so that it is 72
3833 columns wide (@code{fortran-window-create-momentarily}).  This may
3834 help you avoid making lines longer than the 72-character limit that
3835 some Fortran compilers impose.
3836 @item C-u C-c C-w
3837 Split the current window horizontally so that it is 72 columns wide
3838 (@code{fortran-window-create}).  You can then continue editing.
3839 @item M-x fortran-strip-sequence-nos
3840 Delete all text in column 72 and beyond.
3841 @end table
3843 @kindex C-c C-r @r{(Fortran mode)}
3844 @findex fortran-column-ruler
3845   The command @kbd{C-c C-r} (@code{fortran-column-ruler}) shows a column
3846 ruler momentarily above the current line.  The comment ruler is two lines
3847 of text that show you the locations of columns with special significance in
3848 Fortran programs.  Square brackets show the limits of the columns for line
3849 numbers, and curly brackets show the limits of the columns for the
3850 statement body.  Column numbers appear above them.
3852   Note that the column numbers count from zero, as always in GNU Emacs.
3853 As a result, the numbers may be one less than those you are familiar
3854 with; but the positions they indicate in the line are standard for
3855 Fortran.
3857 @vindex fortran-column-ruler-fixed
3858 @vindex fortran-column-ruler-tabs
3859   The text used to display the column ruler depends on the value of
3860 the variable @code{indent-tabs-mode}.  If @code{indent-tabs-mode} is
3861 @code{nil}, then the value of the variable
3862 @code{fortran-column-ruler-fixed} is used as the column ruler.
3863 Otherwise, the variable @code{fortran-column-ruler-tab} is displayed.
3864 By changing these variables, you can change the column ruler display.
3866 @kindex C-c C-w @r{(Fortran mode)}
3867 @findex fortran-window-create-momentarily
3868   @kbd{C-c C-w} (@code{fortran-window-create-momentarily}) temporarily
3869 splits the current window horizontally, making a window 72 columns
3870 wide, so you can see which lines that is too long.  Type a space to
3871 restore the normal width.
3873 @kindex C-u C-c C-w @r{(Fortran mode)}
3874 @findex fortran-window-create
3875   You can also split the window horizontally and continue editing with
3876 the split in place.  To do this, use @kbd{C-u C-c C-w} (@code{M-x
3877 fortran-window-create}).  By editing in this window you can
3878 immediately see when you make a line too wide to be correct Fortran.
3880 @findex fortran-strip-sequence-nos
3881   The command @kbd{M-x fortran-strip-sequence-nos} deletes all text in
3882 column 72 and beyond, on all lines in the current buffer.  This is the
3883 easiest way to get rid of old sequence numbers.
3885 @node Fortran Abbrev
3886 @subsection Fortran Keyword Abbrevs
3888   Fortran mode provides many built-in abbrevs for common keywords and
3889 declarations.  These are the same sort of abbrev that you can define
3890 yourself.  To use them, you must turn on Abbrev mode.  @xref{Abbrevs}.
3892   The built-in abbrevs are unusual in one way: they all start with a
3893 semicolon.  You cannot normally use semicolon in an abbrev, but Fortran
3894 mode makes this possible by changing the syntax of semicolon to ``word
3895 constituent.''
3897   For example, one built-in Fortran abbrev is @samp{;c} for
3898 @samp{continue}.  If you insert @samp{;c} and then insert a punctuation
3899 character such as a space or a newline, the @samp{;c} expands automatically
3900 to @samp{continue}, provided Abbrev mode is enabled.@refill
3902   Type @samp{;?} or @samp{;C-h} to display a list of all the built-in
3903 Fortran abbrevs and what they stand for.
3905 @node Asm Mode
3906 @section Asm Mode
3908 @cindex Asm mode
3909 @cindex assembler mode
3910 Asm mode is a major mode for editing files of assembler code.  It
3911 defines these commands:
3913 @table @kbd
3914 @item @key{TAB}
3915 @code{tab-to-tab-stop}.
3916 @item C-j
3917 Insert a newline and then indent using @code{tab-to-tab-stop}.
3918 @item :
3919 Insert a colon and then remove the indentation from before the label
3920 preceding colon.  Then do @code{tab-to-tab-stop}.
3921 @item ;
3922 Insert or align a comment.
3923 @end table
3925   The variable @code{asm-comment-char} specifies which character
3926 starts comments in assembler syntax.