Minor rewording of some sections of the ERT manual.
[bpt/emacs.git] / doc / emacs / programs.texi
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 1999-2011
3 @c Free Software Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Programs, Building, Text, Top
6 @chapter Editing Programs
7 @cindex Lisp editing
8 @cindex C editing
9 @cindex program editing
10
11 Emacs provides many features to facilitate editing programs. Some
12 of these features can
13
14 @itemize @bullet
15 @item
16 Find or move over top-level definitions (@pxref{Defuns}).
17 @item
18 Apply the usual indentation conventions of the language
19 (@pxref{Program Indent}).
20 @item
21 Balance parentheses (@pxref{Parentheses}).
22 @item
23 Insert, kill or align comments (@pxref{Comments}).
24 @item
25 Highlight program syntax (@pxref{Font Lock}).
26 @end itemize
27
28 This chapter describes these features and many more.
29
30 @menu
31 * Program Modes:: Major modes for editing programs.
32 * Defuns:: Commands to operate on major top-level parts
33 of a program.
34 * Program Indent:: Adjusting indentation to show the nesting.
35 * Parentheses:: Commands that operate on parentheses.
36 * Comments:: Inserting, killing, and aligning comments.
37 * Documentation:: Getting documentation of functions you plan to call.
38 * Hideshow:: Displaying blocks selectively.
39 * Symbol Completion:: Completion on symbol names of your program or language.
40 * Glasses:: Making identifiersLikeThis more readable.
41 * Semantic:: Suite of editing tools based on source code parsing.
42 * Misc for Programs:: Other Emacs features useful for editing programs.
43 * C Modes:: Special commands of C, C++, Objective-C,
44 Java, and Pike modes.
45 * Asm Mode:: Asm mode and its special features.
46 @ifnottex
47 * Fortran:: Fortran mode and its special features.
48 @end ifnottex
49 @end menu
50
51 @node Program Modes
52 @section Major Modes for Programming Languages
53 @cindex modes for programming languages
54
55 Emacs has specialized major modes for various programming languages.
56 @xref{Major Modes}. A programming language major mode typically
57 specifies the syntax of expressions, the customary rules for
58 indentation, how to do syntax highlighting for the language, and how
59 to find the beginning or end of a function definition. It often
60 customizes or provides facilities for compiling and debugging programs
61 as well.
62
63 Ideally, Emacs should provide a major mode for each programming
64 language that you might want to edit; if it doesn't have a mode for
65 your favorite language, you can contribute one. But often the mode
66 for one language can serve for other syntactically similar languages.
67 The major mode for language @var{l} is called @code{@var{l}-mode},
68 and you can select it by typing @kbd{M-x @var{l}-mode @key{RET}}.
69 @xref{Choosing Modes}.
70
71 @cindex Perl mode
72 @cindex Icon mode
73 @cindex Makefile mode
74 @cindex Tcl mode
75 @cindex CPerl mode
76 @cindex DSSSL mode
77 @cindex Octave mode
78 @cindex Metafont mode
79 @cindex Modula2 mode
80 @cindex Prolog mode
81 @cindex Python mode
82 @cindex Ruby mode
83 @cindex Simula mode
84 @cindex VHDL mode
85 @cindex M4 mode
86 @cindex Shell-script mode
87 @cindex Delphi mode
88 @cindex PostScript mode
89 @cindex Conf mode
90 @cindex DNS mode
91 @cindex Javascript mode
92 The existing programming language major modes include Lisp, Scheme
93 (a variant of Lisp) and the Scheme-based DSSSL expression language,
94 Ada, ASM, AWK, C, C++, Delphi (Object Pascal), Fortran, Icon, IDL
95 (CORBA), IDLWAVE, Java, Javascript, Metafont (@TeX{}'s companion for
96 font creation), Modula2, Objective-C, Octave, Pascal, Perl, Pike,
97 PostScript, Prolog, Python, Ruby, Simula, Tcl, and VHDL. An
98 alternative mode for Perl is called CPerl mode. Modes are available
99 for the scripting languages of the common GNU and Unix shells, VMS
100 DCL, and MS-DOS/MS-Windows @samp{BAT} files. There are also major
101 modes for editing makefiles, DNS master files, and various sorts of
102 configuration files.
103
104 @kindex DEL @r{(programming modes)}
105 @findex c-electric-backspace
106 In most programming languages, indentation should vary from line to
107 line to illustrate the structure of the program. So the major modes
108 for programming languages arrange for @key{TAB} to update the
109 indentation of the current line (@pxref{Program Indent}). They also
110 rebind @key{DEL} to treat a tab as if it were the equivalent number of
111 spaces; this lets you delete one column of indentation without
112 worrying whether the whitespace consists of spaces or tabs. Use
113 @kbd{C-b C-d} to delete a tab character before point, in these modes.
114
115 Separate manuals are available for the modes for Ada (@pxref{Top, , Ada
116 Mode, ada-mode, Ada Mode}), C/C++/Objective C/Java/Corba IDL/Pike/AWK
117 (@pxref{Top, , CC Mode, ccmode, CC Mode}) and the IDLWAVE modes
118 (@pxref{Top, , IDLWAVE, idlwave, IDLWAVE User Manual}). For Fortran
119 mode, see
120 @iftex
121 @ref{Fortran,,, emacs-xtra, Specialized Emacs Features}.
122 @end iftex
123 @ifnottex
124 @ref{Fortran}.
125 @end ifnottex
126
127 @cindex mode hook
128 @vindex c-mode-hook
129 @vindex lisp-mode-hook
130 @vindex emacs-lisp-mode-hook
131 @vindex lisp-interaction-mode-hook
132 @vindex scheme-mode-hook
133 Turning on a major mode runs a normal hook called the @dfn{mode
134 hook}, which is the value of a Lisp variable. Each major mode has a
135 mode hook, and the hook's name is always made from the mode command's
136 name by adding @samp{-hook}. For example, turning on C mode runs the
137 hook @code{c-mode-hook}, while turning on Lisp mode runs the hook
138 @code{lisp-mode-hook}. The purpose of the mode hook is to give you a
139 place to set up customizations for that major mode. @xref{Hooks}.
140
141 @node Defuns
142 @section Top-Level Definitions, or Defuns
143
144 In Emacs, a major definition at the top level in the buffer, such as
145 a function, is called a @dfn{defun}. The name comes from Lisp, but in
146 Emacs we use it for all languages.
147
148 @menu
149 * Left Margin Paren:: An open-paren or similar opening delimiter
150 starts a defun if it is at the left margin.
151 * Moving by Defuns:: Commands to move over or mark a major definition.
152 * Imenu:: Making buffer indexes as menus.
153 * Which Function:: Which Function mode shows which function you are in.
154 @end menu
155
156 @node Left Margin Paren
157 @subsection Left Margin Convention
158
159 @cindex open-parenthesis in leftmost column
160 @cindex ( in leftmost column
161 Many programming-language modes assume by default that any opening
162 delimiter found at the left margin is the start of a top-level
163 definition, or defun. Therefore, @strong{don't put an opening
164 delimiter at the left margin unless it should have that significance}.
165 For instance, never put an open-parenthesis at the left margin in a
166 Lisp file unless it is the start of a top-level list.
167
168 The convention speeds up many Emacs operations, which would
169 otherwise have to scan back to the beginning of the buffer to analyze
170 the syntax of the code.
171
172 If you don't follow this convention, not only will you have trouble
173 when you explicitly use the commands for motion by defuns; other
174 features that use them will also give you trouble. This includes the
175 indentation commands (@pxref{Program Indent}) and Font Lock mode
176 (@pxref{Font Lock}).
177
178 The most likely problem case is when you want an opening delimiter
179 at the start of a line inside a string. To avoid trouble, put an
180 escape character (@samp{\}, in C and Emacs Lisp, @samp{/} in some
181 other Lisp dialects) before the opening delimiter. This will not
182 affect the contents of the string, but will prevent that opening
183 delimiter from starting a defun. Here's an example:
184
185 @example
186 (insert "Foo:
187 \(bar)
188 ")
189 @end example
190
191 To help you catch violations of this convention, Font Lock mode
192 highlights confusing opening delimiters (those that ought to be
193 quoted) in bold red.
194
195 If you need to override this convention, you can do so by setting
196 this user option:
197
198 @defvar open-paren-in-column-0-is-defun-start
199 If this user option is set to @code{t} (the default), opening
200 parentheses or braces at column zero always start defuns. When it's
201 @code{nil}, defuns are found by searching for parens or braces at the
202 outermost level.
203 @end defvar
204
205 Usually, you should leave this option at its default value of
206 @code{t}. If your buffer contains parentheses or braces in column
207 zero which don't start defuns, and it is somehow impractical to remove
208 these parentheses or braces, it might be helpful to set the option to
209 @code{nil}. Be aware that this might make scrolling and display in
210 large buffers quite sluggish. Furthermore, the parentheses and braces
211 must be correctly matched throughout the buffer for it to work
212 properly.
213
214 @node Moving by Defuns
215 @subsection Moving by Defuns
216 @cindex defuns
217
218 These commands move point or set up the region based on top-level
219 major definitions, also called @dfn{defuns}.
220
221 @table @kbd
222 @item C-M-a
223 Move to beginning of current or preceding defun
224 (@code{beginning-of-defun}).
225 @item C-M-e
226 Move to end of current or following defun (@code{end-of-defun}).
227 @item C-M-h
228 Put region around whole current or following defun (@code{mark-defun}).
229 @end table
230
231 @cindex move to beginning or end of function
232 @cindex function, move to beginning or end
233 @kindex C-M-a
234 @kindex C-M-e
235 @kindex C-M-h
236 @findex beginning-of-defun
237 @findex end-of-defun
238 @findex mark-defun
239 The commands to move to the beginning and end of the current defun
240 are @kbd{C-M-a} (@code{beginning-of-defun}) and @kbd{C-M-e}
241 (@code{end-of-defun}). If you repeat one of these commands, or use a
242 positive numeric argument, each repetition moves to the next defun in
243 the direction of motion.
244
245 @kbd{C-M-a} with a negative argument @minus{}@var{n} moves forward
246 @var{n} times to the next beginning of a defun. This is not exactly
247 the same place that @kbd{C-M-e} with argument @var{n} would move to;
248 the end of this defun is not usually exactly the same place as the
249 beginning of the following defun. (Whitespace, comments, and perhaps
250 declarations can separate them.) Likewise, @kbd{C-M-e} with a
251 negative argument moves back to an end of a defun, which is not quite
252 the same as @kbd{C-M-a} with a positive argument.
253
254 @kindex C-M-h @r{(C mode)}
255 @findex c-mark-function
256 To operate on the current defun, use @kbd{C-M-h}
257 (@code{mark-defun}), which sets the mark at the end of the current
258 defun and puts point at its beginning. @xref{Marking Objects}. This
259 is the easiest way to get ready to kill the defun in order to move it
260 to a different place in the file. If you use the command while point
261 is between defuns, it uses the following defun. If you use the
262 command while the mark is already active, it sets the mark but does
263 not move point; furthermore, each successive use of @kbd{C-M-h}
264 extends the end of the region to include one more defun.
265
266 In C mode, @kbd{C-M-h} runs the function @code{c-mark-function},
267 which is almost the same as @code{mark-defun}; the difference is that
268 it backs up over the argument declarations, function name and returned
269 data type so that the entire C function is inside the region. This is
270 an example of how major modes adjust the standard key bindings so that
271 they do their standard jobs in a way better fitting a particular
272 language. Other major modes may replace any or all of these key
273 bindings for that purpose.
274
275 @node Imenu
276 @subsection Imenu
277 @cindex index of buffer definitions
278 @cindex buffer definitions index
279
280 The Imenu facility offers a way to find the major definitions in
281 a file by name. It is also useful in text formatter major modes,
282 where it treats each chapter, section, etc., as a definition.
283 (@xref{Tags}, for a more powerful feature that handles multiple files
284 together.)
285
286 @findex imenu
287 If you type @kbd{M-x imenu}, it reads the name of a definition using
288 the minibuffer, then moves point to that definition. You can use
289 completion to specify the name; the command always displays the whole
290 list of valid names.
291
292 @findex imenu-add-menubar-index
293 Alternatively, you can bind the command @code{imenu} to a mouse
294 click. Then it displays mouse menus for you to select a definition
295 name. You can also add the buffer's index to the menu bar by calling
296 @code{imenu-add-menubar-index}. If you want to have this menu bar
297 item available for all buffers in a certain major mode, you can do
298 this by adding @code{imenu-add-menubar-index} to its mode hook. But
299 if you have done that, you will have to wait a little while each time
300 you visit a file in that mode, while Emacs finds all the definitions
301 in that buffer.
302
303 @vindex imenu-auto-rescan
304 When you change the contents of a buffer, if you add or delete
305 definitions, you can update the buffer's index based on the
306 new contents by invoking the @samp{*Rescan*} item in the menu.
307 Rescanning happens automatically if you set @code{imenu-auto-rescan} to
308 a non-@code{nil} value. There is no need to rescan because of small
309 changes in the text.
310
311 @vindex imenu-sort-function
312 You can customize the way the menus are sorted by setting the
313 variable @code{imenu-sort-function}. By default, names are ordered as
314 they occur in the buffer; if you want alphabetic sorting, use the
315 symbol @code{imenu--sort-by-name} as the value. You can also
316 define your own comparison function by writing Lisp code.
317
318 Imenu provides the information to guide Which Function mode
319 @ifnottex
320 (@pxref{Which Function}).
321 @end ifnottex
322 @iftex
323 (see below).
324 @end iftex
325 The Speedbar can also use it (@pxref{Speedbar}).
326
327 @node Which Function
328 @subsection Which Function Mode
329 @cindex current function name in mode line
330
331 Which Function mode is a minor mode that displays the current
332 function name in the mode line, updating it as you move around in a
333 buffer.
334
335 @findex which-function-mode
336 @vindex which-func-modes
337 To either enable or disable Which Function mode, use the command
338 @kbd{M-x which-function-mode}. This command applies to all buffers,
339 both existing ones and those yet to be created. However, it takes
340 effect only in certain major modes, those listed in the value of
341 @code{which-func-modes}. If the value of @code{which-func-modes} is
342 @code{t} rather than a list of modes, then Which Function mode applies
343 to all major modes that know how to support it---in other words, all
344 the major modes that support Imenu.
345
346 @node Program Indent
347 @section Indentation for Programs
348 @cindex indentation for programs
349
350 The best way to keep a program properly indented is to use Emacs to
351 reindent it as you change it. Emacs has commands to indent either a
352 single line, a specified number of lines, or all of the lines inside a
353 single parenthetical grouping.
354
355 @menu
356 * Basic Indent:: Indenting a single line.
357 * Multi-line Indent:: Commands to reindent many lines at once.
358 * Lisp Indent:: Specifying how each Lisp function should be indented.
359 * C Indent:: Extra features for indenting C and related modes.
360 * Custom C Indent:: Controlling indentation style for C and related modes.
361 @end menu
362
363 @cindex pretty-printer
364 Emacs also provides a Lisp pretty-printer in the library @code{pp}.
365 This program reformats a Lisp object with indentation chosen to look nice.
366
367 @node Basic Indent
368 @subsection Basic Program Indentation Commands
369
370 The basic indentation commands indent a single line according to the
371 usual conventions of the language you are editing.
372
373 @table @kbd
374 @item @key{TAB}
375 Adjust indentation of current line.
376 @item C-j
377 Insert a newline, then adjust indentation of following line
378 (@code{newline-and-indent}).
379 @end table
380
381 @kindex TAB @r{(programming modes)}
382 @findex c-indent-command
383 @findex indent-line-function
384 @findex indent-for-tab-command
385 The basic indentation command is @key{TAB}. In any
386 programming-language major mode, @key{TAB} gives the current line the
387 correct indentation as determined from the previous lines. It does
388 this by inserting or deleting whitespace at the beginning of the
389 current line. If point was inside the whitespace at the beginning of
390 the line, @key{TAB} puts it at the end of that whitespace; otherwise,
391 @key{TAB} keeps point fixed with respect to the characters around it.
392 If the region is active (@pxref{Mark}), @key{TAB} indents every line
393 within the region instead of just the current line. The function that
394 @key{TAB} runs depends on the major mode; for instance, it is
395 @code{c-indent-line-or-region} in C mode. Each function is aware of
396 the syntax and conventions for its particular language.
397
398 Use @kbd{C-q @key{TAB}} to insert a tab character at point.
399
400 @kindex C-j
401 @findex newline-and-indent
402 When entering lines of new code, use @kbd{C-j}
403 (@code{newline-and-indent}), which inserts a newline and then adjusts
404 indentation after it. (It also deletes any trailing whitespace which
405 remains before the new newline.) For instance, @kbd{C-j} at the end
406 of a line creates a blank line with appropriate indentation. In
407 programming language modes, it is equivalent to @key{RET} @key{TAB}.
408
409 When Emacs indents a line that starts within a parenthetical
410 grouping, it usually places the start of the line under the preceding
411 line within the group, or under the text after the parenthesis. If
412 you manually give one of these lines a nonstandard indentation, the
413 lines below will tend to follow it. This behavior is convenient in
414 cases where you have overridden the standard result of @key{TAB}
415 indentation (e.g., for aesthetic purposes).
416
417 Many programming-language modes assume that an open-parenthesis,
418 open-brace or other opening delimiter at the left margin is the start
419 of a function. This assumption speeds up indentation commands. If
420 the text you are editing contains opening delimiters in column zero
421 that aren't the beginning of a functions---even if these delimiters
422 occur inside strings or comments---then you must set
423 @code{open-paren-in-column-0-is-defun-start}. @xref{Left Margin
424 Paren}.
425
426 Normally, Emacs indents lines using an ``optimal'' mix of tab and
427 space characters. If you want Emacs to use spaces only, set
428 @code{indent-tabs-mode} (@pxref{Just Spaces}).
429
430 @node Multi-line Indent
431 @subsection Indenting Several Lines
432
433 Sometimes, you may want to reindent several lines of code at a time.
434 One way to do this is to use the mark; when the mark is active and the
435 region is non-empty, @key{TAB} indents every line within the region.
436 In addition, Emacs provides several other commands for indenting large
437 chunks of code:
438
439 @table @kbd
440 @item C-M-q
441 Reindent all the lines within one parenthetical grouping.
442 @item C-M-\
443 Reindent all lines in the region (@code{indent-region}).
444 @item C-u @key{TAB}
445 Shift an entire parenthetical grouping rigidly sideways so that its
446 first line is properly indented.
447 @item M-x indent-code-rigidly
448 Shift all the lines in the region rigidly sideways, but do not alter
449 lines that start inside comments and strings.
450 @end table
451
452 @kindex C-M-q
453 @findex indent-pp-sexp
454 To reindent the contents of a single parenthetical grouping,
455 position point before the beginning of the grouping and type
456 @kbd{C-M-q}. This changes the relative indentation within the
457 grouping, without affecting its overall indentation (i.e., the
458 indentation of the line where the grouping starts). The function that
459 @kbd{C-M-q} runs depends on the major mode; it is
460 @code{indent-pp-sexp} in Lisp mode, @code{c-indent-exp} in C mode,
461 etc. To correct the overall indentation as well, type @key{TAB}
462 first.
463
464 @kbd{C-M-\} (@code{indent-region}) applies @key{TAB} to the region.
465 This is useful when Transient Mark mode is disabled (@pxref{Disabled
466 Transient Mark}), because in that case @key{TAB} does not act on the
467 region.
468
469 @kindex C-u TAB
470 If you like the relative indentation within a grouping but not the
471 indentation of its first line, move point to that first line and type
472 @kbd{C-u @key{TAB}}. In Lisp, C, and some other major modes,
473 @key{TAB} with a numeric argument reindents the current line as usual,
474 then reindents by the same amount all the lines in the parenthetical
475 grouping starting on the current line. It is clever, though, and does
476 not alter lines that start inside strings. Neither does it alter C
477 preprocessor lines when in C mode, but it does reindent any
478 continuation lines that may be attached to them.
479
480 @findex indent-code-rigidly
481 The command @kbd{M-x indent-code-rigidly} rigidly shifts all the
482 lines in the region sideways, like @code{indent-rigidly} does
483 (@pxref{Indentation Commands}). It doesn't alter the indentation of
484 lines that start inside a string, unless the region also starts inside
485 that string. The prefix arg specifies the number of columns to
486 indent.
487
488 @node Lisp Indent
489 @subsection Customizing Lisp Indentation
490 @cindex customizing Lisp indentation
491
492 The indentation pattern for a Lisp expression can depend on the function
493 called by the expression. For each Lisp function, you can choose among
494 several predefined patterns of indentation, or define an arbitrary one with
495 a Lisp program.
496
497 The standard pattern of indentation is as follows: the second line of the
498 expression is indented under the first argument, if that is on the same
499 line as the beginning of the expression; otherwise, the second line is
500 indented underneath the function name. Each following line is indented
501 under the previous line whose nesting depth is the same.
502
503 @vindex lisp-indent-offset
504 If the variable @code{lisp-indent-offset} is non-@code{nil}, it overrides
505 the usual indentation pattern for the second line of an expression, so that
506 such lines are always indented @code{lisp-indent-offset} more columns than
507 the containing list.
508
509 @vindex lisp-body-indent
510 Certain functions override the standard pattern. Functions whose
511 names start with @code{def} treat the second lines as the start of
512 a @dfn{body}, by indenting the second line @code{lisp-body-indent}
513 additional columns beyond the open-parenthesis that starts the
514 expression.
515
516 @cindex @code{lisp-indent-function} property
517 You can override the standard pattern in various ways for individual
518 functions, according to the @code{lisp-indent-function} property of
519 the function name. Normally you would use this for macro definitions
520 and specify it using the @code{declare} construct (@pxref{Defining
521 Macros,,, elisp, the Emacs Lisp Reference Manual}).
522
523 @node C Indent
524 @subsection Commands for C Indentation
525
526 Here are special features for indentation in C mode and related modes:
527
528 @table @code
529 @item C-c C-q
530 @kindex C-c C-q @r{(C mode)}
531 @findex c-indent-defun
532 Reindent the current top-level function definition or aggregate type
533 declaration (@code{c-indent-defun}).
534
535 @item C-M-q
536 @kindex C-M-q @r{(C mode)}
537 @findex c-indent-exp
538 Reindent each line in the balanced expression that follows point
539 (@code{c-indent-exp}). A prefix argument inhibits warning messages
540 about invalid syntax.
541
542 @item @key{TAB}
543 @findex c-indent-command
544 Reindent the current line, and/or in some cases insert a tab character
545 (@code{c-indent-command}).
546
547 @vindex c-tab-always-indent
548 If @code{c-tab-always-indent} is @code{t}, this command always reindents
549 the current line and does nothing else. This is the default.
550
551 If that variable is @code{nil}, this command reindents the current line
552 only if point is at the left margin or in the line's indentation;
553 otherwise, it inserts a tab (or the equivalent number of spaces,
554 if @code{indent-tabs-mode} is @code{nil}).
555
556 Any other value (not @code{nil} or @code{t}) means always reindent the
557 line, and also insert a tab if within a comment or a string.
558 @end table
559
560 To reindent the whole current buffer, type @kbd{C-x h C-M-\}. This
561 first selects the whole buffer as the region, then reindents that
562 region.
563
564 To reindent the current block, use @kbd{C-M-u C-M-q}. This moves
565 to the front of the block and then reindents it all.
566
567 @node Custom C Indent
568 @subsection Customizing C Indentation
569 @cindex style (for indentation)
570
571 C mode and related modes use a flexible mechanism for customizing
572 indentation. C mode indents a source line in two steps: first it
573 classifies the line syntactically according to its contents and
574 context; second, it determines the indentation offset associated by
575 your selected @dfn{style} with the syntactic construct and adds this
576 onto the indentation of the @dfn{anchor statement}.
577
578 @table @kbd
579 @item C-c . @key{RET} @var{style} @key{RET}
580 Select a predefined style @var{style} (@code{c-set-style}).
581 @end table
582
583 A @dfn{style} is a named collection of customizations that can be
584 used in C mode and the related modes. @ref{Styles,,, ccmode, The CC
585 Mode Manual}, for a complete description. Emacs comes with several
586 predefined styles, including @code{gnu}, @code{k&r}, @code{bsd},
587 @code{stroustrup}, @code{linux}, @code{python}, @code{java},
588 @code{whitesmith}, @code{ellemtel}, and @code{awk}. Some of these
589 styles are primarily intended for one language, but any of them can be
590 used with any of the languages supported by these modes. To find out
591 what a style looks like, select it and reindent some code, e.g., by
592 typing @key{C-M-q} at the start of a function definition.
593
594 @kindex C-c . @r{(C mode)}
595 @findex c-set-style
596 To choose a style for the current buffer, use the command @w{@kbd{C-c
597 .}}. Specify a style name as an argument (case is not significant).
598 This command affects the current buffer only, and it affects only
599 future invocations of the indentation commands; it does not reindent
600 the code already in the buffer. To reindent the whole buffer in the
601 new style, you can type @kbd{C-x h C-M-\}.
602
603 @vindex c-default-style
604 You can also set the variable @code{c-default-style} to specify the
605 default style for various major modes. Its value should be either the
606 style's name (a string) or an alist, in which each element specifies
607 one major mode and which indentation style to use for it. For
608 example,
609
610 @example
611 (setq c-default-style
612 '((java-mode . "java")
613 (awk-mode . "awk")
614 (other . "gnu")))
615 @end example
616
617 @noindent
618 specifies explicit choices for Java and AWK modes, and the default
619 @samp{gnu} style for the other C-like modes. (These settings are
620 actually the defaults.) This variable takes effect when you select
621 one of the C-like major modes; thus, if you specify a new default
622 style for Java mode, you can make it take effect in an existing Java
623 mode buffer by typing @kbd{M-x java-mode} there.
624
625 The @code{gnu} style specifies the formatting recommended by the GNU
626 Project for C; it is the default, so as to encourage use of our
627 recommended style.
628
629 @xref{Indentation Engine Basics,,, ccmode, the CC Mode Manual}, and
630 @ref{Customizing Indentation,,, ccmode, the CC Mode Manual}, for more
631 information on customizing indentation for C and related modes,
632 including how to override parts of an existing style and how to define
633 your own styles.
634
635 @node Parentheses
636 @section Commands for Editing with Parentheses
637
638 @findex check-parens
639 @cindex unbalanced parentheses and quotes
640 This section describes the commands and features that take advantage
641 of the parenthesis structure in a program, or help you keep it
642 balanced.
643
644 When talking about these facilities, the term ``parenthesis'' also
645 includes braces, brackets, or whatever delimiters are defined to match
646 in pairs. The major mode controls which delimiters are significant,
647 through the syntax table (@pxref{Syntax Tables,, Syntax Tables, elisp,
648 The Emacs Lisp Reference Manual}). In Lisp, only parentheses count;
649 in C, these commands apply to braces and brackets too.
650
651 You can use @kbd{M-x check-parens} to find any unbalanced
652 parentheses and unbalanced string quotes in the buffer.
653
654 @menu
655 * Expressions:: Expressions with balanced parentheses.
656 * Moving by Parens:: Commands for moving up, down and across
657 in the structure of parentheses.
658 * Matching:: Insertion of a close-delimiter flashes matching open.
659 @end menu
660
661 @node Expressions
662 @subsection Expressions with Balanced Parentheses
663
664 @cindex sexp
665 @cindex expression
666 @cindex balanced expression
667 These commands deal with balanced expressions, also called
668 @dfn{sexps}@footnote{The word ``sexp'' is used to refer to an
669 expression in Lisp.}.
670
671 @table @kbd
672 @item C-M-f
673 Move forward over a balanced expression (@code{forward-sexp}).
674 @item C-M-b
675 Move backward over a balanced expression (@code{backward-sexp}).
676 @item C-M-k
677 Kill balanced expression forward (@code{kill-sexp}).
678 @item C-M-t
679 Transpose expressions (@code{transpose-sexps}).
680 @item C-M-@@
681 @itemx C-M-@key{SPC}
682 Put mark after following expression (@code{mark-sexp}).
683 @end table
684
685 Each programming language major mode customizes the definition of
686 balanced expressions to suit that language. Balanced expressions
687 typically include symbols, numbers, and string constants, as well as
688 any pair of matching delimiters and their contents. Some languages
689 have obscure forms of expression syntax that nobody has bothered to
690 implement in Emacs.
691
692 @cindex Control-Meta
693 By convention, the keys for these commands are all Control-Meta
694 characters. They usually act on expressions just as the corresponding
695 Meta characters act on words. For instance, the command @kbd{C-M-b}
696 moves backward over a balanced expression, just as @kbd{M-b} moves
697 back over a word.
698
699 @kindex C-M-f
700 @kindex C-M-b
701 @findex forward-sexp
702 @findex backward-sexp
703 To move forward over a balanced expression, use @kbd{C-M-f}
704 (@code{forward-sexp}). If the first significant character after point
705 is an opening delimiter (@samp{(} in Lisp; @samp{(}, @samp{[} or
706 @samp{@{} in C), @kbd{C-M-f} moves past the matching closing
707 delimiter. If the character begins a symbol, string, or number,
708 @kbd{C-M-f} moves over that.
709
710 The command @kbd{C-M-b} (@code{backward-sexp}) moves backward over a
711 balanced expression. The detailed rules are like those above for
712 @kbd{C-M-f}, but with directions reversed. If there are prefix
713 characters (single-quote, backquote and comma, in Lisp) preceding the
714 expression, @kbd{C-M-b} moves back over them as well. The balanced
715 expression commands move across comments as if they were whitespace,
716 in most modes.
717
718 @kbd{C-M-f} or @kbd{C-M-b} with an argument repeats that operation the
719 specified number of times; with a negative argument, it moves in the
720 opposite direction.
721
722 @cindex killing expressions
723 @kindex C-M-k
724 @findex kill-sexp
725 Killing a whole balanced expression can be done with @kbd{C-M-k}
726 (@code{kill-sexp}). @kbd{C-M-k} kills the characters that @kbd{C-M-f}
727 would move over.
728
729 @cindex transposition of expressions
730 @kindex C-M-t
731 @findex transpose-sexps
732 A somewhat random-sounding command which is nevertheless handy is
733 @kbd{C-M-t} (@code{transpose-sexps}), which drags the previous
734 balanced expression across the next one. An argument serves as a
735 repeat count, moving the previous expression over that many following
736 ones. A negative argument drags the previous balanced expression
737 backwards across those before it (thus canceling out the effect of
738 @kbd{C-M-t} with a positive argument). An argument of zero, rather
739 than doing nothing, transposes the balanced expressions ending at or
740 after point and the mark.
741
742 @kindex C-M-@@
743 @kindex C-M-@key{SPC}
744 @findex mark-sexp
745 To operate on balanced expressions with an operation which acts on
746 the region, use the command @kbd{C-M-@key{SPC}} (@code{mark-sexp}).
747 This sets the mark at the same place that @kbd{C-M-f} would move to.
748 @xref{Marking Objects}, for more information about this command.
749
750 @kbd{C-M-@key{SPC}} treats
751 numeric arguments in the same way as @kbd{C-M-f}; in particular, a
752 negative argument puts the mark at the beginning of the previous
753 balanced expression. The alias @kbd{C-M-@@} is equivalent to
754 @kbd{C-M-@key{SPC}}. While the mark is active, each successive use of
755 @kbd{C-M-@key{SPC}} extends the region by shifting the mark by one
756 sexp.
757
758 In languages that use infix operators, such as C, it is not possible
759 to recognize all balanced expressions as such because there can be
760 multiple possibilities at a given position. For example, C mode does
761 not treat @samp{foo + bar} as a single expression, even though it
762 @emph{is} one C expression; instead, it recognizes @samp{foo} as one
763 expression and @samp{bar} as another, with the @samp{+} as punctuation
764 between them. Both @samp{foo + bar} and @samp{foo} are legitimate
765 choices for ``the expression following point'' when point is at the
766 @samp{f}, so the expression commands must perforce choose one or the
767 other to operate on. Note that @samp{(foo + bar)} is recognized as a
768 single expression in C mode, because of the parentheses.
769
770 @node Moving by Parens
771 @subsection Moving in the Parenthesis Structure
772
773 @cindex parenthetical groupings
774 @cindex parentheses, moving across
775 @cindex matching parenthesis and braces, moving to
776 @cindex braces, moving across
777 @cindex list commands
778
779 The Emacs commands for handling parenthetical groupings see nothing
780 except parentheses (or whatever characters must balance in the
781 language you are working with). They ignore strings and comments
782 (including any parentheses within them) and ignore parentheses quoted
783 by an escape character. They are mainly intended for editing
784 programs, but can be useful for editing any text that has parentheses.
785 They are sometimes called ``list'' commands because in Lisp these
786 groupings are lists.
787
788 These commands assume that the starting point is not inside a string
789 or a comment. Sometimes you can invoke them usefully from one of
790 these places (for example, when you have a parenthesised clause in a
791 comment) but this is unreliable.
792
793 @table @kbd
794 @item C-M-n
795 Move forward over a parenthetical group (@code{forward-list}).
796 @item C-M-p
797 Move backward over a parenthetical group (@code{backward-list}).
798 @item C-M-u
799 Move up in parenthesis structure (@code{backward-up-list}).
800 @item C-M-d
801 Move down in parenthesis structure (@code{down-list}).
802 @end table
803
804 @kindex C-M-n
805 @kindex C-M-p
806 @findex forward-list
807 @findex backward-list
808 The ``list'' commands @kbd{C-M-n} (@code{forward-list}) and
809 @kbd{C-M-p} (@code{backward-list}) move forward or backward over one
810 (or @var{n}) parenthetical groupings.
811
812 @kindex C-M-u
813 @findex backward-up-list
814 @kbd{C-M-n} and @kbd{C-M-p} try to stay at the same level in the
815 parenthesis structure. To move @emph{up} one (or @var{n}) levels, use
816 @kbd{C-M-u} (@code{backward-up-list}). @kbd{C-M-u} moves backward up
817 past one unmatched opening delimiter. A positive argument serves as a
818 repeat count; a negative argument reverses the direction of motion, so
819 that the command moves forward and up one or more levels.
820
821 @kindex C-M-d
822 @findex down-list
823 To move @emph{down} in the parenthesis structure, use @kbd{C-M-d}
824 (@code{down-list}). In Lisp mode, where @samp{(} is the only opening
825 delimiter, this is nearly the same as searching for a @samp{(}. An
826 argument specifies the number of levels to go down.
827
828 @node Matching
829 @subsection Automatic Display Of Matching Parentheses
830 @cindex matching parentheses
831 @cindex parentheses, displaying matches
832
833 The Emacs parenthesis-matching feature is designed to show
834 automatically how parentheses (and other matching delimiters) match in
835 the text. Whenever you type a self-inserting character that is a
836 closing delimiter, the cursor moves momentarily to the location of the
837 matching opening delimiter, provided that is on the screen. If it is
838 not on the screen, Emacs displays some of the text near it in the echo
839 area. Either way, you can tell which grouping you are closing off.
840
841 If the opening delimiter and closing delimiter are mismatched---such
842 as in @samp{[x)}---a warning message is displayed in the echo area.
843
844 @vindex blink-matching-paren
845 @vindex blink-matching-paren-distance
846 @vindex blink-matching-delay
847 Three variables control parenthesis match display:
848
849 @code{blink-matching-paren} turns the feature on or off: @code{nil}
850 disables it, but the default is @code{t} to enable match display.
851
852 @code{blink-matching-delay} says how many seconds to leave the
853 cursor on the matching opening delimiter, before bringing it back to
854 the real location of point; the default is 1, but on some systems it
855 is useful to specify a fraction of a second.
856
857 @code{blink-matching-paren-distance} specifies how many characters
858 back to search to find the matching opening delimiter. If the match
859 is not found in that distance, scanning stops, and nothing is displayed.
860 This is to prevent the scan for the matching delimiter from wasting
861 lots of time when there is no match. The default is 102400.
862
863 @cindex Show Paren mode
864 @cindex highlighting matching parentheses
865 @findex show-paren-mode
866 Show Paren mode provides a more powerful kind of automatic matching.
867 Whenever point is before an opening delimiter or after a closing
868 delimiter, both that delimiter and its opposite delimiter are
869 highlighted. Use the command @kbd{M-x show-paren-mode} to enable or
870 disable this mode.
871
872 Show Paren mode uses the faces @code{show-paren-match} and
873 @code{show-paren-mismatch} to highlight parentheses; you can customize
874 them to control how highlighting looks. @xref{Face Customization}.
875
876 @node Comments
877 @section Manipulating Comments
878 @cindex comments
879
880 Because comments are such an important part of programming, Emacs
881 provides special commands for editing and inserting comments. It can
882 also do spell checking on comments with Flyspell Prog mode
883 (@pxref{Spelling}).
884
885 @menu
886 * Comment Commands:: Inserting, killing, and aligning comments.
887 * Multi-Line Comments:: Commands for adding and editing multi-line comments.
888 * Options for Comments::Customizing the comment features.
889 @end menu
890
891 @node Comment Commands
892 @subsection Comment Commands
893 @cindex indentation for comments
894 @cindex alignment for comments
895
896 The commands in this table insert, kill and align comments:
897
898 @table @asis
899 @item @kbd{M-;}
900 Insert or realign comment on current line; alternatively, comment or
901 uncomment the region (@code{comment-dwim}).
902 @item @kbd{C-u M-;}
903 Kill comment on current line (@code{comment-kill}).
904 @item @kbd{C-x ;}
905 Set comment column (@code{comment-set-column}).
906 @item @kbd{C-M-j}
907 @itemx @kbd{M-j}
908 Like @key{RET} followed by inserting and aligning a comment
909 (@code{comment-indent-new-line}). @xref{Multi-Line Comments}.
910 @item @kbd{M-x comment-region}
911 @itemx @kbd{C-c C-c} (in C-like modes)
912 Add or remove comment delimiters on all the lines in the region.
913 @end table
914
915 @kindex M-;
916 @findex comment-dwim
917 The command to create or align a comment is @kbd{M-;}
918 (@code{comment-dwim}). The word ``dwim'' is an acronym for ``Do What
919 I Mean''; it indicates that this command can be used for many
920 different jobs relating to comments, depending on the situation where
921 you use it.
922
923 When a region is active, @kbd{M-;} either adds or removes comment
924 delimiters on each line of the region. @xref{Mark}. If every line in
925 the region is a comment, it removes comment delimiters from each;
926 otherwise, it adds comment delimiters to each. You can also use the
927 commands @code{comment-region} and @code{uncomment-region} to
928 explicitly comment or uncomment the text in the region
929 (@pxref{Multi-Line Comments}). If you supply a prefix argument to
930 @kbd{M-;} when a region is active, that specifies how many comment
931 delimiters to add or how many to delete.
932
933 If the region is not active, @kbd{M-;} inserts a new comment if
934 there is no comment already on the line. The new comment is normally
935 aligned at a specific column called the @dfn{comment column}; if the
936 text of the line extends past the comment column, @kbd{M-;} aligns the
937 comment start string to a suitable boundary (usually, at least one
938 space is inserted). The comment begins with the string Emacs thinks
939 comments should start with (the value of @code{comment-start}; see
940 below). Emacs places point after that string, so you can insert the
941 text of the comment right away. If the major mode has specified a
942 string to terminate comments, @kbd{M-;} inserts that string after
943 point, to keep the syntax valid.
944
945 You can also use @kbd{M-;} to align an existing comment. If a line
946 already contains the comment-start string, @kbd{M-;} realigns it to
947 the conventional alignment and moves point after it. (Exception:
948 comments starting in column 0 are not moved.) Even when an existing
949 comment is properly aligned, @kbd{M-;} is still useful for moving
950 directly to the start of the text inside the comment.
951
952 @findex comment-kill
953 @kindex C-u M-;
954 @kbd{C-u M-;} kills any comment on the current line, along with the
955 whitespace before it. To reinsert the comment on another line, move
956 to the end of that line, do @kbd{C-y}, and then do @kbd{M-;} to
957 realign it.
958
959 Note that @kbd{C-u M-;} is not a distinct key; it is @kbd{M-;}
960 (@code{comment-dwim}) with a prefix argument. That command is
961 programmed so that when it receives a prefix argument it calls
962 @code{comment-kill}. However, @code{comment-kill} is a valid command
963 in its own right, and you can bind it directly to a key if you wish.
964
965 Some major modes have special rules for aligning certain kinds of
966 comments in certain contexts. For example, in Lisp code, comments which
967 start with two semicolons are indented as if they were lines of code,
968 instead of at the comment column. Comments which start with three
969 semicolons are supposed to start at the left margin and are often used
970 for sectioning purposes. Emacs understands
971 these conventions by indenting a double-semicolon comment using @key{TAB},
972 and by not changing the indentation of a triple-semicolon comment at all.
973
974 @example
975 ;; This function is just an example.
976 ;;; Here either two or three semicolons are appropriate.
977 (defun foo (x)
978 ;;; And now, the first part of the function:
979 ;; The following line adds one.
980 (1+ x)) ; This line adds one.
981 @end example
982
983 For C-like modes, you can configure the exact effect of @kbd{M-;} by
984 setting the variables @code{c-indent-comment-alist} and
985 @code{c-indent-comments-syntactically-p}. For example, on a line
986 ending in a closing brace, @kbd{M-;} puts the comment one space after
987 the brace rather than at @code{comment-column}. For full details see
988 @ref{Comment Commands,,, ccmode, The CC Mode Manual}.
989
990 @node Multi-Line Comments
991 @subsection Multiple Lines of Comments
992
993 @kindex C-M-j
994 @kindex M-j
995 @cindex blank lines in programs
996 @findex comment-indent-new-line
997
998 If you are typing a comment and wish to continue it on another line,
999 you can use the command @kbd{C-M-j} or @kbd{M-j}
1000 (@code{comment-indent-new-line}). If @code{comment-multi-line}
1001 (@pxref{Options for Comments}) is non-@code{nil}, it moves to a new
1002 line within the comment. Otherwise it closes the comment and starts a
1003 new comment on a new line. When Auto Fill mode is on, going past the
1004 fill column while typing a comment causes the comment to be continued
1005 in just this fashion.
1006
1007 @kindex C-c C-c (C mode)
1008 @findex comment-region
1009 To turn existing lines into comment lines, use the @kbd{M-x
1010 comment-region} command (or type @kbd{C-c C-c} in C-like modes). It
1011 adds comment delimiters to the lines that start in the region, thus
1012 commenting them out. With a negative argument, it does the
1013 opposite---it deletes comment delimiters from the lines in the region.
1014
1015 With a positive argument, @code{comment-region} duplicates the last
1016 character of the comment start sequence it adds; the argument
1017 specifies how many copies of the character to insert. Thus, in Lisp
1018 mode, @kbd{C-u 2 M-x comment-region} adds @samp{;;} to each line.
1019 Duplicating the comment delimiter is a way of calling attention to the
1020 comment. It can also affect how the comment is aligned or indented.
1021 In Lisp, for proper indentation, you should use an argument of two or
1022 three, if between defuns; if within a defun, it must be three.
1023
1024 You can configure C Mode such that when you type a @samp{/} at the
1025 start of a line in a multi-line block comment, this closes the
1026 comment. Enable the @code{comment-close-slash} clean-up for this.
1027 @xref{Clean-ups,,, ccmode, The CC Mode Manual}.
1028
1029 @node Options for Comments
1030 @subsection Options Controlling Comments
1031
1032 @vindex comment-column
1033 @kindex C-x ;
1034 @findex comment-set-column
1035 The @dfn{comment column}, the column at which Emacs tries to place
1036 comments, is stored in the variable @code{comment-column}. You can
1037 set it to a number explicitly. Alternatively, the command @kbd{C-x ;}
1038 (@code{comment-set-column}) sets the comment column to the column
1039 point is at. @kbd{C-u C-x ;} sets the comment column to match the
1040 last comment before point in the buffer, and then does a @kbd{M-;} to
1041 align the current line's comment under the previous one.
1042
1043 The variable @code{comment-column} is per-buffer: setting the variable
1044 in the normal fashion affects only the current buffer, but there is a
1045 default value which you can change with @code{setq-default}.
1046 @xref{Locals}. Many major modes initialize this variable for the
1047 current buffer.
1048
1049 @vindex comment-start-skip
1050 The comment commands recognize comments based on the regular
1051 expression that is the value of the variable @code{comment-start-skip}.
1052 Make sure this regexp does not match the null string. It may match more
1053 than the comment starting delimiter in the strictest sense of the word;
1054 for example, in C mode the value of the variable is
1055 @c This stops M-q from breaking the line inside that @code.
1056 @code{@w{"/\\*+ *\\|//+ *"}}, which matches extra stars and spaces
1057 after the @samp{/*} itself, and accepts C++ style comments also.
1058 (Note that @samp{\\} is needed in Lisp syntax to include a @samp{\} in
1059 the string, which is needed to deny the first star its special meaning
1060 in regexp syntax. @xref{Regexp Backslash}.)
1061
1062 @vindex comment-start
1063 @vindex comment-end
1064 When a comment command makes a new comment, it inserts the value of
1065 @code{comment-start} to begin it. The value of @code{comment-end} is
1066 inserted after point, so that it will follow the text that you will
1067 insert into the comment. When @code{comment-end} is non-empty, it
1068 should start with a space. For example, in C mode,
1069 @code{comment-start} has the value @w{@code{"/* "}} and
1070 @code{comment-end} has the value @w{@code{" */"}}.
1071
1072 @vindex comment-padding
1073 The variable @code{comment-padding} specifies how many spaces
1074 @code{comment-region} should insert on each line between the comment
1075 delimiter and the line's original text. The default is 1, to insert
1076 one space. @code{nil} means 0. Alternatively, @code{comment-padding}
1077 can hold the actual string to insert.
1078
1079 @vindex comment-multi-line
1080 The variable @code{comment-multi-line} controls how @kbd{C-M-j}
1081 (@code{indent-new-comment-line}) behaves when used inside a comment.
1082 Specifically, when @code{comment-multi-line} is @code{nil}, the
1083 command inserts a comment terminator, begins a new line, and finally
1084 inserts a comment starter. Otherwise it does not insert the
1085 terminator and starter, so it effectively continues the current
1086 comment across multiple lines. In languages that allow multi-line
1087 comments, the choice of value for this variable is a matter of taste.
1088 The default for this variable depends on the major mode.
1089
1090 @vindex comment-indent-function
1091 The variable @code{comment-indent-function} should contain a function
1092 that will be called to compute the alignment for a newly inserted
1093 comment or for aligning an existing comment. It is set differently by
1094 various major modes. The function is called with no arguments, but with
1095 point at the beginning of the comment, or at the end of a line if a new
1096 comment is to be inserted. It should return the column in which the
1097 comment ought to start. For example, in Lisp mode, the indent hook
1098 function bases its decision on how many semicolons begin an existing
1099 comment, and on the code in the preceding lines.
1100
1101 @node Documentation
1102 @section Documentation Lookup
1103
1104 Emacs provides several features you can use to look up the
1105 documentation of functions, variables and commands that you plan to
1106 use in your program.
1107
1108 @menu
1109 * Info Lookup:: Looking up library functions and commands
1110 in Info files.
1111 * Man Page:: Looking up man pages of library functions and commands.
1112 * Lisp Doc:: Looking up Emacs Lisp functions, etc.
1113 @end menu
1114
1115 @node Info Lookup
1116 @subsection Info Documentation Lookup
1117
1118 @findex info-lookup-symbol
1119 @findex info-lookup-file
1120 @kindex C-h S
1121 For major modes that apply to languages which have documentation in
1122 Info, you can use @kbd{C-h S} (@code{info-lookup-symbol}) to view the
1123 Info documentation for a symbol used in the program. You specify the
1124 symbol with the minibuffer; the default is the symbol appearing in the
1125 buffer at point. For example, in C mode this looks for the symbol in
1126 the C Library Manual. The command only works if the appropriate
1127 manual's Info files are installed.
1128
1129 The major mode determines where to look for documentation for the
1130 symbol---which Info files to look in, and which indices to search.
1131 You can also use @kbd{M-x info-lookup-file} to look for documentation
1132 for a file name.
1133
1134 If you use @kbd{C-h S} in a major mode that does not support it,
1135 it asks you to specify the ``symbol help mode.'' You should enter
1136 a command such as @code{c-mode} that would select a major
1137 mode which @kbd{C-h S} does support.
1138
1139 @node Man Page
1140 @subsection Man Page Lookup
1141
1142 @cindex manual page
1143 On Unix, the main form of on-line documentation was the @dfn{manual
1144 page} or @dfn{man page}. In the GNU operating system, we aim to
1145 replace man pages with better-organized manuals that you can browse
1146 with Info (@pxref{Misc Help}). This process is not finished, so it is
1147 still useful to read manual pages.
1148
1149 @findex manual-entry
1150 You can read the man page for an operating system command, library
1151 function, or system call, with the @kbd{M-x man} command. It
1152 runs the @code{man} program to format the man page; if the system
1153 permits, it runs @code{man} asynchronously, so that you can keep on
1154 editing while the page is being formatted. (On MS-DOS and MS-Windows
1155 3, you cannot edit while Emacs waits for @code{man} to finish.) The
1156 result goes in a buffer named @samp{*Man @var{topic}*}. These buffers
1157 use a special major mode, Man mode, that facilitates scrolling and
1158 jumping to other manual pages. For details, type @kbd{C-h m} while in
1159 a man page buffer.
1160
1161 @cindex sections of manual pages
1162 Each man page belongs to one of ten or more @dfn{sections}, each
1163 named by a digit or by a digit and a letter. Sometimes there are
1164 multiple man pages with the same name in different sections. To read
1165 a man page from a specific section, type
1166 @samp{@var{topic}(@var{section})} or @samp{@var{section} @var{topic}}
1167 when @kbd{M-x manual-entry} prompts for the topic. For example, to
1168 read the man page for the C library function @code{chmod} (as opposed
1169 to a command of the same name), type @kbd{M-x manual-entry @key{RET}
1170 chmod(2) @key{RET}}. (@code{chmod} is a system call, so it is in
1171 section @samp{2}.)
1172
1173 @vindex Man-switches
1174 If you do not specify a section, the results depend on how the
1175 @code{man} program works on your system. Some of them display only
1176 the first man page they find. Others display all man pages that have
1177 the specified name, so you can move between them with the @kbd{M-n}
1178 and @kbd{M-p} keys@footnote{On some systems, the @code{man} program
1179 accepts a @samp{-a} command-line option which tells it to display all
1180 the man pages for the specified topic. If you want this behavior, you
1181 can add this option to the value of the variable @code{Man-switches}.}.
1182 The mode line shows how many manual pages are present in the Man buffer.
1183
1184 @vindex Man-fontify-manpage-flag
1185 By default, Emacs highlights the text in man pages. For a long man
1186 page, highlighting can take substantial time. You can turn off
1187 highlighting of man pages by setting the variable
1188 @code{Man-fontify-manpage-flag} to @code{nil}.
1189
1190 @findex Man-fontify-manpage
1191 If you insert the text of a man page into an Emacs buffer in some
1192 other fashion, you can use the command @kbd{M-x Man-fontify-manpage} to
1193 perform the same conversions that @kbd{M-x manual-entry} does.
1194
1195 @findex woman
1196 @cindex manual pages, on MS-DOS/MS-Windows
1197 An alternative way of reading manual pages is the @kbd{M-x woman}
1198 command@footnote{The name of the command, @code{woman}, is an acronym
1199 for ``w/o (without) man,'' since it doesn't use the @code{man}
1200 program.}. Unlike @kbd{M-x man}, it does not run any external
1201 programs to format and display the man pages; instead it does the job
1202 in Emacs Lisp, so it works on systems such as MS-Windows, where the
1203 @code{man} program (and other programs it uses) are not generally
1204 available.
1205
1206 @kbd{M-x woman} prompts for a name of a manual page, and provides
1207 completion based on the list of manual pages that are installed on
1208 your machine; the list of available manual pages is computed
1209 automatically the first time you invoke @code{woman}. The word at
1210 point in the current buffer is used to suggest the default for the
1211 name of the manual page.
1212
1213 With a numeric argument, @kbd{M-x woman} recomputes the list of the
1214 manual pages used for completion. This is useful if you add or delete
1215 manual pages.
1216
1217 If you type a name of a manual page and @kbd{M-x woman} finds that
1218 several manual pages by the same name exist in different sections, it
1219 pops up a window with possible candidates asking you to choose one of
1220 them.
1221
1222 For more information about setting up and using @kbd{M-x woman}, see
1223 @ref{Top, WoMan, Browse UN*X Manual Pages WithOut Man, woman, The WoMan
1224 Manual}.
1225
1226 @node Lisp Doc
1227 @subsection Emacs Lisp Documentation Lookup
1228
1229 As you edit Lisp code to be run in Emacs, you can use the commands
1230 @kbd{C-h f} (@code{describe-function}) and @kbd{C-h v}
1231 (@code{describe-variable}) to view documentation of functions and
1232 variables that you want to use. These commands use the minibuffer to
1233 read the name of a function or variable to document, and display the
1234 documentation in a window. Their default arguments are based on the
1235 code in the neighborhood of point. For @kbd{C-h f}, the default is
1236 the function called in the innermost list containing point. @kbd{C-h
1237 v} uses the symbol name around or adjacent to point as its default.
1238
1239 @cindex Eldoc mode
1240 @findex eldoc-mode
1241 A more automatic but less powerful method is Eldoc mode. This minor
1242 mode constantly displays in the echo area the argument list for the
1243 function being called at point. (In other words, it finds the
1244 function call that point is contained in, and displays the argument
1245 list of that function.) If point is over a documented variable, it
1246 shows the first line of the variable's docstring. Eldoc mode applies
1247 in Emacs Lisp and Lisp Interaction modes, and perhaps a few others
1248 that provide special support for looking up doc strings. Use the
1249 command @kbd{M-x eldoc-mode} to enable or disable this feature.
1250
1251 @node Hideshow
1252 @section Hideshow minor mode
1253
1254 @findex hs-minor-mode
1255 Hideshow minor mode provides selective display of portions of a
1256 program, known as @dfn{blocks}. You can use @kbd{M-x hs-minor-mode}
1257 to enable or disable this mode, or add @code{hs-minor-mode} to the
1258 mode hook for certain major modes in order to enable it automatically
1259 for those modes.
1260
1261 Just what constitutes a block depends on the major mode. In C mode
1262 or C++ mode, they are delimited by braces, while in Lisp mode and
1263 similar modes they are delimited by parentheses. Multi-line comments
1264 also count as blocks.
1265
1266 @findex hs-hide-all
1267 @findex hs-hide-block
1268 @findex hs-show-all
1269 @findex hs-show-block
1270 @findex hs-show-region
1271 @findex hs-hide-level
1272 @findex hs-minor-mode
1273 @kindex C-c @@ C-h
1274 @kindex C-c @@ C-s
1275 @kindex C-c @@ C-M-h
1276 @kindex C-c @@ C-M-s
1277 @kindex C-c @@ C-r
1278 @kindex C-c @@ C-l
1279 @kindex S-Mouse-2
1280 @table @kbd
1281 @item C-c @@ C-h
1282 Hide the current block (@code{hs-hide-block}).
1283 @item C-c @@ C-s
1284 Show the current block (@code{hs-show-block}).
1285 @item C-c @@ C-c
1286 Either hide or show the current block (@code{hs-toggle-hiding}).
1287 @item S-Mouse-2
1288 Either hide or show the block you click on (@code{hs-mouse-toggle-hiding}).
1289 @item C-c @@ C-M-h
1290 Hide all top-level blocks (@code{hs-hide-all}).
1291 @item C-c @@ C-M-s
1292 Show everything in the buffer (@code{hs-show-all}).
1293 @item C-c @@ C-l
1294 Hide all blocks @var{n} levels below this block
1295 (@code{hs-hide-level}).
1296 @end table
1297
1298 @vindex hs-hide-comments-when-hiding-all
1299 @vindex hs-isearch-open
1300 @vindex hs-special-modes-alist
1301 These variables exist for customizing Hideshow mode.
1302
1303 @table @code
1304 @item hs-hide-comments-when-hiding-all
1305 Non-@code{nil} says that @kbd{hs-hide-all} should hide comments too.
1306
1307 @item hs-isearch-open
1308 Specifies what kind of hidden blocks incremental search should make
1309 visible. The value should be one of these four symbols:
1310
1311 @table @code
1312 @item code
1313 Open only code blocks.
1314 @item comment
1315 Open only comments.
1316 @item t
1317 Open both code blocks and comments.
1318 @item nil
1319 Open neither code blocks nor comments.
1320 @end table
1321
1322 @item hs-special-modes-alist
1323 A list of elements, each specifying how to initialize Hideshow
1324 variables for one major mode. See the variable's documentation string
1325 for more information.
1326 @end table
1327
1328 @node Symbol Completion
1329 @section Completion for Symbol Names
1330 @cindex completion (symbol names)
1331
1332 In Emacs, completion is something you normally do in the minibuffer
1333 (@pxref{Completion}). But one kind of completion is available in all
1334 buffers: completion for symbol names.
1335
1336 @kindex M-TAB
1337 The character @kbd{M-@key{TAB}} runs a command to complete the
1338 partial symbol before point against the set of meaningful symbol
1339 names. This command inserts at point any additional characters that
1340 it can determine from the partial name.
1341
1342 If your window manager defines @kbd{M-@key{TAB}} to switch windows,
1343 you can type @kbd{@key{ESC} @key{TAB}} or @kbd{C-M-i} instead.
1344 However, most window managers let you customize these shortcuts, so
1345 you can change any that interfere with the way you use Emacs.
1346
1347 If the partial name in the buffer has multiple possible completions
1348 that differ in the very next character, so that it is impossible to
1349 complete even one more character, @kbd{M-@key{TAB}} displays a list of
1350 all possible completions in another window.
1351
1352 @cindex tags-based completion
1353 @cindex Info index completion
1354 @findex complete-symbol
1355 In most programming language major modes, @kbd{M-@key{TAB}} runs the
1356 command @code{complete-symbol}, which provides two kinds of completion.
1357 Normally it does completion based on a tags table (@pxref{Tags}); with a
1358 numeric argument (regardless of the value), it does completion based on
1359 the names listed in the Info file indexes for your language. Thus, to
1360 complete the name of a symbol defined in your own program, use
1361 @kbd{M-@key{TAB}} with no argument; to complete the name of a standard
1362 library function, use @kbd{C-u M-@key{TAB}}. Of course, Info-based
1363 completion works only if there is an Info file for the standard library
1364 functions of your language, and only if it is installed at your site.
1365
1366 @cindex Lisp symbol completion
1367 @cindex completion (Lisp symbols)
1368 @findex lisp-complete-symbol
1369 In Emacs-Lisp mode, the name space for completion normally consists of
1370 nontrivial symbols present in Emacs---those that have function
1371 definitions, values or properties. However, if there is an
1372 open-parenthesis immediately before the beginning of the partial symbol,
1373 only symbols with function definitions are considered as completions.
1374 The command which implements this is @code{lisp-complete-symbol}.
1375
1376 In Text mode and related modes, @kbd{M-@key{TAB}} completes words
1377 based on the spell-checker's dictionary. @xref{Spelling}.
1378
1379 @node Glasses
1380 @section Glasses minor mode
1381 @cindex Glasses mode
1382 @cindex identifiers, making long ones readable
1383 @cindex StudlyCaps, making them readable
1384 @findex glasses-mode
1385
1386 Glasses minor mode makes @samp{unreadableIdentifiersLikeThis}
1387 readable by altering the way they display. It knows two different
1388 ways to do this: by displaying underscores between a lower-case letter
1389 and the following capital letter, and by emboldening the capital
1390 letters. It does not alter the buffer text, only the way they
1391 display, so you can use it even on read-only buffers. You can use the
1392 command @kbd{M-x glasses-mode} to enable or disable the mode in the
1393 current buffer; you can also add @code{glasses-mode} to the mode hook
1394 of the programming language major modes in which you normally want
1395 to use Glasses mode.
1396
1397 @node Semantic
1398 @section Semantic
1399 @cindex Semantic package
1400
1401 Semantic is a package that provides language-aware editing commands
1402 based on @code{source code parsers}. This section provides a brief
1403 description of Semantic;
1404 @ifnottex
1405 for full details, see @ref{Top, Semantic,, semantic, Semantic}.
1406 @end ifnottex
1407 @iftex
1408 for full details, type @kbd{C-h i} (@code{info}) and then select the
1409 Semantic manual.
1410 @end iftex
1411
1412 Most of the ``language aware'' features in Emacs, such as font lock
1413 (@pxref{Font Lock}), rely on ``rules of thumb''@footnote{Regular
1414 expressions and syntax tables.} that usually give good results but are
1415 never completely exact. In contrast, the parsers used by Semantic
1416 have an exact understanding of programming language syntax. This
1417 allows Semantic to provide search, navigation, and completion commands
1418 that are powerful and precise.
1419
1420 To begin using Semantic, type @kbd{M-x semantic-mode} or click on
1421 the menu item named @samp{Source Code Parsers (Semantic)} in the
1422 @samp{Tools} menu. This enables Semantic mode, a global minor mode.
1423
1424 When Semantic mode is enabled, Emacs automatically attempts to
1425 parses each file you visit. Currently, Semantic understands C, C++,
1426 Scheme, Javascript, Java, HTML, and Make. Within each parsed buffer,
1427 the following commands are available:
1428
1429 @table @kbd
1430 @item C-c , j
1431 @kindex C-c , j
1432 Prompt for the name of a function defined in the current file, and
1433 move point there (@code{semantic-complete-jump-local}).
1434
1435 @item C-c , J
1436 @kindex C-c , J
1437 Prompt for the name of a function defined in any file Emacs has
1438 parsed, and move point there (@code{semantic-complete-jump}).
1439
1440 @item C-c , @key{SPC}
1441 @kindex C-c , @key{SPC}
1442 Display a list of possible completions for the symbol at point
1443 (@code{semantic-complete-analyze-inline}). This also activates a set
1444 of special keybindings for choosing a completion: @key{RET} accepts
1445 the current completion, @kbd{M-n} and @kbd{M-p} cycle through possible
1446 completions, @key{TAB} completes as far as possible and then cycles,
1447 and @kbd{C-g} or any other key aborts completion.
1448
1449 @item C-c , l
1450 @kindex C-c , l
1451 Display a list of the possible completions of the symbol at point, in
1452 another window (@code{semantic-analyze-possible-completions}).
1453 @end table
1454
1455 @noindent
1456 In addition to the above commands, the Semantic package provides a
1457 variety of other ways to make use of parser information. For
1458 instance, you can use it to display a list of completions when Emacs
1459 is idle.
1460 @ifnottex
1461 @xref{Top, Semantic,, semantic, Semantic}, for details.
1462 @end ifnottex
1463
1464 @node Misc for Programs
1465 @section Other Features Useful for Editing Programs
1466
1467 A number of Emacs commands that aren't designed specifically for
1468 editing programs are useful for that nonetheless.
1469
1470 The Emacs commands that operate on words, sentences and paragraphs
1471 are useful for editing code. Most symbols names contain words
1472 (@pxref{Words}); sentences can be found in strings and comments
1473 (@pxref{Sentences}). Paragraphs in the strict sense can be found in
1474 program code (in long comments), but the paragraph commands are useful
1475 in other places too, because programming language major modes define
1476 paragraphs to begin and end at blank lines (@pxref{Paragraphs}).
1477 Judicious use of blank lines to make the program clearer will also
1478 provide useful chunks of text for the paragraph commands to work on.
1479 Auto Fill mode, if enabled in a programming language major mode,
1480 indents the new lines which it creates.
1481
1482 The selective display feature is useful for looking at the overall
1483 structure of a function (@pxref{Selective Display}). This feature
1484 hides the lines that are indented more than a specified amount.
1485 Programming modes often support Outline minor mode (@pxref{Outline
1486 Mode}). The Foldout package provides folding-editor features
1487 (@pxref{Foldout}).
1488
1489 The ``automatic typing'' features may be useful for writing programs.
1490 @xref{Top,,Autotyping, autotype, Autotyping}.
1491
1492 @node C Modes
1493 @section C and Related Modes
1494 @cindex C mode
1495 @cindex Java mode
1496 @cindex Pike mode
1497 @cindex IDL mode
1498 @cindex CORBA IDL mode
1499 @cindex Objective C mode
1500 @cindex C++ mode
1501 @cindex AWK mode
1502 @cindex mode, Java
1503 @cindex mode, C
1504 @cindex mode, C++
1505 @cindex mode, Objective C
1506 @cindex mode, CORBA IDL
1507 @cindex mode, Pike
1508 @cindex mode, AWK
1509
1510 This section gives a brief description of the special features
1511 available in C, C++, Objective-C, Java, CORBA IDL, Pike and AWK modes.
1512 (These are called ``C mode and related modes.'') @xref{Top, , CC Mode,
1513 ccmode, CC Mode}, for a more extensive description of these modes
1514 and their special features.
1515
1516 @menu
1517 * Motion in C:: Commands to move by C statements, etc.
1518 * Electric C:: Colon and other chars can automatically reindent.
1519 * Hungry Delete:: A more powerful DEL command.
1520 * Other C Commands:: Filling comments, viewing expansion of macros,
1521 and other neat features.
1522 @end menu
1523
1524 @node Motion in C
1525 @subsection C Mode Motion Commands
1526
1527 This section describes commands for moving point, in C mode and
1528 related modes.
1529
1530 @table @code
1531 @item M-x c-beginning-of-defun
1532 @itemx M-x c-end-of-defun
1533 @findex c-beginning-of-defun
1534 @findex c-end-of-defun
1535 Move point to the beginning or end of the current function or
1536 top-level definition. These are found by searching for the least
1537 enclosing braces. (By contrast, @code{beginning-of-defun} and
1538 @code{end-of-defun} search for braces in column zero.) If you are
1539 editing code where the opening brace of a function isn't placed in
1540 column zero, you may wish to bind @code{C-M-a} and @code{C-M-e} to
1541 these commands. @xref{Moving by Defuns}.
1542
1543 @item C-c C-u
1544 @kindex C-c C-u @r{(C mode)}
1545 @findex c-up-conditional
1546 Move point back to the containing preprocessor conditional, leaving the
1547 mark behind. A prefix argument acts as a repeat count. With a negative
1548 argument, move point forward to the end of the containing
1549 preprocessor conditional.
1550
1551 @samp{#elif} is equivalent to @samp{#else} followed by @samp{#if}, so
1552 the function will stop at a @samp{#elif} when going backward, but not
1553 when going forward.
1554
1555 @item C-c C-p
1556 @kindex C-c C-p @r{(C mode)}
1557 @findex c-backward-conditional
1558 Move point back over a preprocessor conditional, leaving the mark
1559 behind. A prefix argument acts as a repeat count. With a negative
1560 argument, move forward.
1561
1562 @item C-c C-n
1563 @kindex C-c C-n @r{(C mode)}
1564 @findex c-forward-conditional
1565 Move point forward across a preprocessor conditional, leaving the mark
1566 behind. A prefix argument acts as a repeat count. With a negative
1567 argument, move backward.
1568
1569 @item M-a
1570 @kindex M-a (C mode)
1571 @findex c-beginning-of-statement
1572 Move point to the beginning of the innermost C statement
1573 (@code{c-beginning-of-statement}). If point is already at the beginning
1574 of a statement, move to the beginning of the preceding statement. With
1575 prefix argument @var{n}, move back @var{n} @minus{} 1 statements.
1576
1577 In comments or in strings which span more than one line, this command
1578 moves by sentences instead of statements.
1579
1580 @item M-e
1581 @kindex M-e (C mode)
1582 @findex c-end-of-statement
1583 Move point to the end of the innermost C statement or sentence; like
1584 @kbd{M-a} except that it moves in the other direction
1585 (@code{c-end-of-statement}).
1586 @end table
1587
1588 @node Electric C
1589 @subsection Electric C Characters
1590
1591 In C mode and related modes, certain printing characters are
1592 @dfn{electric}---in addition to inserting themselves, they also
1593 reindent the current line, and optionally also insert newlines. The
1594 ``electric'' characters are @kbd{@{}, @kbd{@}}, @kbd{:}, @kbd{#},
1595 @kbd{;}, @kbd{,}, @kbd{<}, @kbd{>}, @kbd{/}, @kbd{*}, @kbd{(}, and
1596 @kbd{)}.
1597
1598 You might find electric indentation inconvenient if you are editing
1599 chaotically indented code. If you are new to CC Mode, you might find
1600 it disconcerting. You can toggle electric action with the command
1601 @kbd{C-c C-l}; when it is enabled, @samp{/l} appears in the mode line
1602 after the mode name:
1603
1604 @table @kbd
1605 @item C-c C-l
1606 @kindex C-c C-l @r{(C mode)}
1607 @findex c-toggle-electric-state
1608 Toggle electric action (@code{c-toggle-electric-state}). With a
1609 prefix argument, this command enables electric action if the argument
1610 is positive, disables it if it is negative.
1611 @end table
1612
1613 Electric characters insert newlines only when, in addition to the
1614 electric state, the @dfn{auto-newline} feature is enabled (indicated
1615 by @samp{/la} in the mode line after the mode name). You can turn
1616 this feature on or off with the command @kbd{C-c C-a}:
1617
1618 @table @kbd
1619 @item C-c C-a
1620 @kindex C-c C-a @r{(C mode)}
1621 @findex c-toggle-auto-newline
1622 Toggle the auto-newline feature (@code{c-toggle-auto-newline}). With a
1623 prefix argument, this command turns the auto-newline feature on if the
1624 argument is positive, and off if it is negative.
1625 @end table
1626
1627 Usually the CC Mode style configures the exact circumstances in
1628 which Emacs inserts auto-newlines. You can also configure this
1629 directly. @xref{Custom Auto-newlines,,, ccmode, The CC Mode Manual}.
1630
1631 @node Hungry Delete
1632 @subsection Hungry Delete Feature in C
1633 @cindex hungry deletion (C Mode)
1634
1635 If you want to delete an entire block of whitespace at point, you
1636 can use @dfn{hungry deletion}. This deletes all the contiguous
1637 whitespace either before point or after point in a single operation.
1638 @dfn{Whitespace} here includes tabs and newlines, but not comments or
1639 preprocessor commands.
1640
1641 @table @kbd
1642 @item C-c C-@key{DEL}
1643 @itemx C-c @key{DEL}
1644 @findex c-hungry-delete-backwards
1645 @kindex C-c C-@key{DEL} (C Mode)
1646 @kindex C-c @key{DEL} (C Mode)
1647 @code{c-hungry-delete-backwards}---Delete the entire block of whitespace
1648 preceding point.
1649
1650 @item C-c C-d
1651 @itemx C-c C-@key{DELETE}
1652 @itemx C-c @key{DELETE}
1653 @findex c-hungry-delete-forward
1654 @kindex C-c C-d (C Mode)
1655 @kindex C-c C-@key{DELETE} (C Mode)
1656 @kindex C-c @key{DELETE} (C Mode)
1657 @code{c-hungry-delete-forward}---Delete the entire block of whitespace
1658 following point.
1659 @end table
1660
1661 As an alternative to the above commands, you can enable @dfn{hungry
1662 delete mode}. When this feature is enabled (indicated by @samp{/h} in
1663 the mode line after the mode name), a single @key{DEL} deletes all
1664 preceding whitespace, not just one space, and a single @kbd{C-c C-d}
1665 (but @emph{not} plain @key{DELETE}) deletes all following whitespace.
1666
1667 @table @kbd
1668 @item M-x c-toggle-hungry-state
1669 @findex c-toggle-hungry-state
1670 Toggle the hungry-delete feature
1671 (@code{c-toggle-hungry-state})@footnote{This command had the binding
1672 @kbd{C-c C-d} in earlier versions of Emacs. @kbd{C-c C-d} is now
1673 bound to @code{c-hungry-delete-forward}.}. With a prefix argument,
1674 this command turns the hungry-delete feature on if the argument is
1675 positive, and off if it is negative.
1676 @end table
1677
1678 @vindex c-hungry-delete-key
1679 The variable @code{c-hungry-delete-key} controls whether the
1680 hungry-delete feature is enabled.
1681
1682 @node Other C Commands
1683 @subsection Other Commands for C Mode
1684
1685 @table @kbd
1686 @item C-c C-w
1687 @itemx M-x subword-mode
1688 @findex subword-mode
1689 Enable (or disable) @dfn{subword mode}. In subword mode, Emacs's word
1690 commands recognize upper case letters in
1691 @samp{StudlyCapsIdentifiers} as word boundaries. This is indicated by
1692 the flag @samp{/w} on the mode line after the mode name
1693 (e.g. @samp{C/law}). You can even use @kbd{M-x subword-mode} in
1694 non-CC Mode buffers.
1695
1696 In the GNU project, we recommend using underscores to separate words
1697 within an identifier in C or C++, rather than using case distinctions.
1698
1699 @item M-x c-context-line-break
1700 @findex c-context-line-break
1701 This command inserts a line break and indents the new line in a manner
1702 appropriate to the context. In normal code, it does the work of
1703 @kbd{C-j} (@code{newline-and-indent}), in a C preprocessor line it
1704 additionally inserts a @samp{\} at the line break, and within comments
1705 it's like @kbd{M-j} (@code{c-indent-new-comment-line}).
1706
1707 @code{c-context-line-break} isn't bound to a key by default, but it
1708 needs a binding to be useful. The following code will bind it to
1709 @kbd{C-j}. We use @code{c-initialization-hook} here to make sure
1710 the keymap is loaded before we try to change it.
1711
1712 @smallexample
1713 (defun my-bind-clb ()
1714 (define-key c-mode-base-map "\C-j" 'c-context-line-break))
1715 (add-hook 'c-initialization-hook 'my-bind-clb)
1716 @end smallexample
1717
1718 @item C-M-h
1719 Put mark at the end of a function definition, and put point at the
1720 beginning (@code{c-mark-function}).
1721
1722 @item M-q
1723 @kindex M-q @r{(C mode)}
1724 @findex c-fill-paragraph
1725 Fill a paragraph, handling C and C++ comments (@code{c-fill-paragraph}).
1726 If any part of the current line is a comment or within a comment, this
1727 command fills the comment or the paragraph of it that point is in,
1728 preserving the comment indentation and comment delimiters.
1729
1730 @item C-c C-e
1731 @cindex macro expansion in C
1732 @cindex expansion of C macros
1733 @findex c-macro-expand
1734 @kindex C-c C-e @r{(C mode)}
1735 Run the C preprocessor on the text in the region, and show the result,
1736 which includes the expansion of all the macro calls
1737 (@code{c-macro-expand}). The buffer text before the region is also
1738 included in preprocessing, for the sake of macros defined there, but the
1739 output from this part isn't shown.
1740
1741 When you are debugging C code that uses macros, sometimes it is hard to
1742 figure out precisely how the macros expand. With this command, you
1743 don't have to figure it out; you can see the expansions.
1744
1745 @item C-c C-\
1746 @findex c-backslash-region
1747 @kindex C-c C-\ @r{(C mode)}
1748 Insert or align @samp{\} characters at the ends of the lines of the
1749 region (@code{c-backslash-region}). This is useful after writing or
1750 editing a C macro definition.
1751
1752 If a line already ends in @samp{\}, this command adjusts the amount of
1753 whitespace before it. Otherwise, it inserts a new @samp{\}. However,
1754 the last line in the region is treated specially; no @samp{\} is
1755 inserted on that line, and any @samp{\} there is deleted.
1756
1757 @item M-x cpp-highlight-buffer
1758 @cindex preprocessor highlighting
1759 @findex cpp-highlight-buffer
1760 Highlight parts of the text according to its preprocessor conditionals.
1761 This command displays another buffer named @samp{*CPP Edit*}, which
1762 serves as a graphic menu for selecting how to display particular kinds
1763 of conditionals and their contents. After changing various settings,
1764 click on @samp{[A]pply these settings} (or go to that buffer and type
1765 @kbd{a}) to rehighlight the C mode buffer accordingly.
1766
1767 @item C-c C-s
1768 @findex c-show-syntactic-information
1769 @kindex C-c C-s @r{(C mode)}
1770 Display the syntactic information about the current source line
1771 (@code{c-show-syntactic-information}). This information directs how
1772 the line is indented.
1773
1774 @item M-x cwarn-mode
1775 @itemx M-x global-cwarn-mode
1776 @findex cwarn-mode
1777 @findex global-cwarn-mode
1778 @vindex global-cwarn-mode
1779 @cindex CWarn mode
1780 @cindex suspicious constructions in C, C++
1781 CWarn minor mode highlights certain suspicious C and C++ constructions:
1782
1783 @itemize @bullet{}
1784 @item
1785 Assignments inside expressions.
1786 @item
1787 Semicolon following immediately after @samp{if}, @samp{for}, and @samp{while}
1788 (except after a @samp{do @dots{} while} statement);
1789 @item
1790 C++ functions with reference parameters.
1791 @end itemize
1792
1793 @noindent
1794 You can enable the mode for one buffer with the command @kbd{M-x
1795 cwarn-mode}, or for all suitable buffers with the command @kbd{M-x
1796 global-cwarn-mode} or by customizing the variable
1797 @code{global-cwarn-mode}. You must also enable Font Lock mode to make
1798 it work.
1799
1800 @item M-x hide-ifdef-mode
1801 @findex hide-ifdef-mode
1802 @cindex Hide-ifdef mode
1803 @vindex hide-ifdef-shadow
1804 Hide-ifdef minor mode hides selected code within @samp{#if} and
1805 @samp{#ifdef} preprocessor blocks. If you change the variable
1806 @code{hide-ifdef-shadow} to @code{t}, Hide-ifdef minor mode
1807 ``shadows'' preprocessor blocks by displaying them with a less
1808 prominent face, instead of hiding them entirely. See the
1809 documentation string of @code{hide-ifdef-mode} for more information.
1810
1811 @item M-x ff-find-related-file
1812 @cindex related files
1813 @findex ff-find-related-file
1814 @vindex ff-related-file-alist
1815 Find a file ``related'' in a special way to the file visited by the
1816 current buffer. Typically this will be the header file corresponding
1817 to a C/C++ source file, or vice versa. The variable
1818 @code{ff-related-file-alist} specifies how to compute related file
1819 names.
1820 @end table
1821
1822 @node Asm Mode
1823 @section Asm Mode
1824
1825 @cindex Asm mode
1826 @cindex assembler mode
1827 Asm mode is a major mode for editing files of assembler code. It
1828 defines these commands:
1829
1830 @table @kbd
1831 @item @key{TAB}
1832 @code{tab-to-tab-stop}.
1833 @item C-j
1834 Insert a newline and then indent using @code{tab-to-tab-stop}.
1835 @item :
1836 Insert a colon and then remove the indentation from before the label
1837 preceding colon. Then do @code{tab-to-tab-stop}.
1838 @item ;
1839 Insert or align a comment.
1840 @end table
1841
1842 The variable @code{asm-comment-char} specifies which character
1843 starts comments in assembler syntax.
1844
1845 @ifnottex
1846 @include fortran-xtra.texi
1847 @end ifnottex