This is Info file ../info/emacs, produced by Makeinfo version 1.68 from the input file ../texi/emacs.texi. This is the thirteenth edition of the `GNU Emacs Manual', updated for Emacs version 20.7. INFO-DIR-SECTION Editors START-INFO-DIR-ENTRY * Emacs: (emacs). The extensible self-documenting text editor. END-INFO-DIR-ENTRY Published by the Free Software Foundation 59 Temple Place, Suite 330 Boston, MA 02111-1307 USA Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the sections entitled "The GNU Manifesto", "Distribution" and "GNU General Public License" are included exactly as in the original, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that the sections entitled "The GNU Manifesto", "Distribution" and "GNU General Public License" may be included in a translation approved by the Free Software Foundation instead of in the original English.  File: emacs, Node: State of Difference, Next: Merge Commands, Prev: Submodes of Emerge, Up: Emerge State of a Difference --------------------- In the merge buffer, a difference is marked with lines of `v' and `^' characters. Each difference has one of these seven states: A The difference is showing the A version. The `a' command always produces this state; the mode line indicates it with `A'. B The difference is showing the B version. The `b' command always produces this state; the mode line indicates it with `B'. default-A default-B The difference is showing the A or the B state by default, because you haven't made a choice. All differences start in the default-A state (and thus the merge buffer is a copy of the A buffer), except those for which one alternative is "preferred" (see below). When you select a difference, its state changes from default-A or default-B to plain A or B. Thus, the selected difference never has state default-A or default-B, and these states are never displayed in the mode line. The command `d a' chooses default-A as the default state, and `d b' chooses default-B. This chosen default applies to all differences which you haven't ever selected and for which no alternative is preferred. If you are moving through the merge sequentially, the differences you haven't selected are those following the selected one. Thus, while moving sequentially, you can effectively make the A version the default for some sections of the merge buffer and the B version the default for others by using `d a' and `d b' between sections. prefer-A prefer-B The difference is showing the A or B state because it is "preferred". This means that you haven't made an explicit choice, but one alternative seems likely to be right because the other alternative agrees with the common ancestor. Thus, where the A buffer agrees with the common ancestor, the B version is preferred, because chances are it is the one that was actually changed. These two states are displayed in the mode line as `A*' and `B*'. combined The difference is showing a combination of the A and B states, as a result of the `x c' or `x C' commands. Once a difference is in this state, the `a' and `b' commands don't do anything to it unless you give them a numeric argument. The mode line displays this state as `comb'.  File: emacs, Node: Merge Commands, Next: Exiting Emerge, Prev: State of Difference, Up: Emerge Merge Commands -------------- Here are the Merge commands for Fast mode; in Edit mode, precede them with `C-c C-c': `p' Select the previous difference. `n' Select the next difference. `a' Choose the A version of this difference. `b' Choose the B version of this difference. `C-u N j' Select difference number N. `.' Select the difference containing point. You can use this command in the merge buffer or in the A or B buffer. `q' Quit--finish the merge. `C-]' Abort--exit merging and do not save the output. `f' Go into Fast mode. (In Edit mode, this is actually `C-c C-c f'.) `e' Go into Edit mode. `l' Recenter (like `C-l') all three windows. `-' Specify part of a prefix numeric argument. `DIGIT' Also specify part of a prefix numeric argument. `d a' Choose the A version as the default from here down in the merge buffer. `d b' Choose the B version as the default from here down in the merge buffer. `c a' Copy the A version of this difference into the kill ring. `c b' Copy the B version of this difference into the kill ring. `i a' Insert the A version of this difference at point. `i b' Insert the B version of this difference at point. `m' Put point and mark around the difference. `^' Scroll all three windows down (like `M-v'). `v' Scroll all three windows up (like `C-v'). `<' Scroll all three windows left (like `C-x <'). `>' Scroll all three windows right (like `C-x >'). `|' Reset horizontal scroll on all three windows. `x 1' Shrink the merge window to one line. (Use `C-u l' to restore it to full size.) `x c' Combine the two versions of this difference (*note Combining in Emerge::.). `x f' Show the names of the files/buffers Emerge is operating on, in a Help window. (Use `C-u l' to restore windows.) `x j' Join this difference with the following one. (`C-u x j' joins this difference with the previous one.) `x s' Split this difference into two differences. Before you use this command, position point in each of the three buffers at the place where you want to split the difference. `x t' Trim identical lines off the top and bottom of the difference. Such lines occur when the A and B versions are identical but differ from the ancestor version.  File: emacs, Node: Exiting Emerge, Next: Combining in Emerge, Prev: Merge Commands, Up: Emerge Exiting Emerge -------------- The `q' command (`emerge-quit') finishes the merge, storing the results into the output file if you specified one. It restores the A and B buffers to their proper contents, or kills them if they were created by Emerge and you haven't changed them. It also disables the Emerge commands in the merge buffer, since executing them later could damage the contents of the various buffers. `C-]' aborts the merge. This means exiting without writing the output file. If you didn't specify an output file, then there is no real difference between aborting and finishing the merge. If the Emerge command was called from another Lisp program, then its return value is `t' for successful completion, or `nil' if you abort.  File: emacs, Node: Combining in Emerge, Next: Fine Points of Emerge, Prev: Exiting Emerge, Up: Emerge Combining the Two Versions -------------------------- Sometimes you want to keep *both* alternatives for a particular difference. To do this, use `x c', which edits the merge buffer like this: #ifdef NEW VERSION FROM A BUFFER #else /* not NEW */ VERSION FROM B BUFFER #endif /* not NEW */ While this example shows C preprocessor conditionals delimiting the two alternative versions, you can specify the strings to use by setting the variable `emerge-combine-versions-template' to a string of your choice. In the string, `%a' says where to put version A, and `%b' says where to put version B. The default setting, which produces the results shown above, looks like this: "#ifdef NEW\n%a#else /* not NEW */\n%b#endif /* not NEW */\n"  File: emacs, Node: Fine Points of Emerge, Prev: Combining in Emerge, Up: Emerge Fine Points of Emerge --------------------- During the merge, you mustn't try to edit the A and B buffers yourself. Emerge modifies them temporarily, but ultimately puts them back the way they were. You can have any number of merges going at once--just don't use any one buffer as input to more than one merge at once, since the temporary changes made in these buffers would get in each other's way. Starting Emerge can take a long time because it needs to compare the files fully. Emacs can't do anything else until `diff' finishes. Perhaps in the future someone will change Emerge to do the comparison in the background when the input files are large--then you could keep on doing other things with Emacs until Emerge is ready to accept commands. After setting up the merge, Emerge runs the hook `emerge-startup-hook' (*note Hooks::.).  File: emacs, Node: C Modes, Next: Fortran, Prev: Emerge, Up: Programs C and Related Modes =================== This section describes special features available in C, C++, Objective-C, Java, CORBA IDL, and Pike modes. When we say "C mode and related modes," those are the modes we mean. * Menu: * Motion in C:: * Electric C:: * Hungry Delete:: * Other C Commands:: * Comments in C::  File: emacs, Node: Motion in C, Next: Electric C, Up: C Modes C Mode Motion Commands ---------------------- This section describes commands for moving point, in C mode and related modes. `C-c C-u' Move point back to the containing preprocessor conditional, leaving the mark behind. A prefix argument acts as a repeat count. With a negative argument, move point forward to the end of the containing preprocessor conditional. When going backwards, `#elif' is treated like `#else' followed by `#if'. When going forwards, `#elif' is ignored. `C-c C-p' Move point back over a preprocessor conditional, leaving the mark behind. A prefix argument acts as a repeat count. With a negative argument, move forward. `C-c C-n' Move point forward across a preprocessor conditional, leaving the mark behind. A prefix argument acts as a repeat count. With a negative argument, move backward. `M-a' Move point to the beginning of the innermost C statement (`c-beginning-of-statement'). If point is already at the beginning of a statement, move to the beginning of the preceding statement. With prefix argument N, move back N - 1 statements. If point is within a string or comment, or next to a comment (only whitespace between them), this command moves by sentences instead of statements. When called from a program, this function takes three optional arguments: the numeric prefix argument, a buffer position limit (don't move back before that place), and a flag that controls whether to do sentence motion when inside of a comment. `M-e' Move point to the end of the innermost C statement; like `M-a' except that it moves in the other direction (`c-end-of-statement'). `M-x c-backward-into-nomenclature' Move point backward to beginning of a C++ nomenclature section or word. With prefix argument N, move N times. If N is negative, move forward. C++ nomenclature means a symbol name in the style of NamingSymbolsWithMixedCaseAndNoUnderlines; each capital letter begins a section or word. In the GNU project, we recommend using underscores to separate words within an identifier in C or C++, rather than using case distinctions. `M-x c-forward-into-nomenclature' Move point forward to end of a C++ nomenclature section or word. With prefix argument N, move N times.  File: emacs, Node: Electric C, Next: Hungry Delete, Prev: Motion in C, Up: C Modes Electric C Characters --------------------- In C mode and related modes, certain printing characters are "electric"--in addition to inserting themselves, they also reindent the current line and may insert newlines. This feature is controlled by the variable `c-auto-newline'. The "electric" characters are `{', `}', `:', `#', `;', `,', `<', `>', `/', `*', `(', and `)'. Electric characters insert newlines only when the "auto-newline" feature is enabled (indicated by `/a' in the mode line after the mode name). This feature is controlled by the variable `c-auto-newline'. You can turn this feature on or off with the command `C-c C-a': `C-c C-a' Toggle the auto-newline feature (`c-toggle-auto-state'). With a prefix argument, this command turns the auto-newline feature on if the argument is positive, and off if it is negative. The colon character is electric because that is appropriate for a single colon. But when you want to insert a double colon in C++, the electric behavior of colon is inconvenient. You can insert a double colon with no reindentation or newlines by typing `C-c :': `C-c :' Insert a double colon scope operator at point, without reindenting the line or adding any newlines (`c-scope-operator'). The electric `#' key reindents the line if it appears to be the beginning of a preprocessor directive. This happens when the value of `c-electric-pound-behavior' is `(alignleft)'. You can turn this feature off by setting `c-electric-pound-behavior' to `nil'. The variable `c-hanging-braces-alist' controls the insertion of newlines before and after inserted braces. It is an association list with elements of the following form: `(SYNTACTIC-SYMBOL . NL-LIST)'. Most of the syntactic symbols that appear in `c-offsets-alist' are meaningful here as well. The list NL-LIST may contain either of the symbols `before' or `after', or both; or it may be `nil'. When a brace is inserted, the syntactic context it defines is looked up in `c-hanging-braces-alist'; if it is found, the NL-LIST is used to determine where newlines are inserted: either before the brace, after, or both. If not found, the default is to insert a newline both before and after braces. The variable `c-hanging-colons-alist' controls the insertion of newlines before and after inserted colons. It is an association list with elements of the following form: `(SYNTACTIC-SYMBOL . NL-LIST)'. The list NL-LIST may contain either of the symbols `before' or `after', or both; or it may be `nil'. When a colon is inserted, the syntactic symbol it defines is looked up in this list, and if found, the NL-LIST is used to determine where newlines are inserted: either before the brace, after, or both. If the syntactic symbol is not found in this list, no newlines are inserted. Electric characters can also delete newlines automatically when the auto-newline feature is enabled. This feature makes auto-newline more acceptable, by deleting the newlines in the most common cases where you do not want them. Emacs can recognize several cases in which deleting a newline might be desirable; by setting the variable `c-cleanup-list', you can specify *which* of these cases that should happen. The variable's value is a list of symbols, each describing one case for possible deletion of a newline. Here are the meaningful symbols, and their meanings: `brace-catch-brace' Clean up `} catch (CONDITION) {' constructs by placing the entire construct on a single line. The clean-up occurs when you type the `{', if there is nothing between the braces aside from `catch' and CONDITION. `brace-else-brace' Clean up `} else {' constructs by placing the entire construct on a single line. The clean-up occurs when you type the `{' after the `else', but only if there is nothing but white space between the braces and the `else'. `brace-elseif-brace' Clean up `} else if (...) {' constructs by placing the entire construct on a single line. The clean-up occurs when you type the `{', if there is nothing but white space between the `}' and `{' aside from the keywords and the `if'-condition. `empty-defun-braces' Clean up empty defun braces by placing the braces on the same line. Clean-up occurs when you type the closing brace. `defun-close-semi' Clean up the semicolon after a `struct' or similar type declaration, by placing the semicolon on the same line as the closing brace. Clean-up occurs when you type the semicolon. `list-close-comma' Clean up commas following braces in array and aggregate initializers. Clean-up occurs when you type the comma. `scope-operator' Clean up double colons which may designate a C++ scope operator, by placing the colons together. Clean-up occurs when you type the second colon, but only when the two colons are separated by nothing but whitespace.  File: emacs, Node: Hungry Delete, Next: Other C Commands, Prev: Electric C, Up: C Modes Hungry Delete Feature in C -------------------------- When the "hungry-delete" feature is enabled (indicated by `/h' or `/ah' in the mode line after the mode name), a single command deletes all preceding whitespace, not just one space. To turn this feature on or off, use `C-c C-d': `C-c C-d' Toggle the hungry-delete feature (`c-toggle-hungry-state'). With a prefix argument, this command turns the hungry-delete feature on if the argument is positive, and off if it is negative. `C-c C-t' Toggle the auto-newline and hungry-delete features, both at once (`c-toggle-auto-hungry-state'). The variable `c-hungry-delete-key' controls whether the hungry-delete feature is enabled.  File: emacs, Node: Other C Commands, Next: Comments in C, Prev: Hungry Delete, Up: C Modes Other Commands for C Mode ------------------------- `C-M-h' Put mark at the end of a function definition, and put point at the beginning (`c-mark-function'). `M-q' Fill a paragraph, handling C and C++ comments (`c-fill-paragraph'). If any part of the current line is a comment or within a comment, this command fills the comment or the paragraph of it that point is in, preserving the comment indentation and comment delimiters. `C-c C-e' Run the C preprocessor on the text in the region, and show the result, which includes the expansion of all the macro calls (`c-macro-expand'). The buffer text before the region is also included in preprocessing, for the sake of macros defined there, but the output from this part isn't shown. When you are debugging C code that uses macros, sometimes it is hard to figure out precisely how the macros expand. With this command, you don't have to figure it out; you can see the expansions. `C-c C-\' Insert or align `\' characters at the ends of the lines of the region (`c-backslash-region'). This is useful after writing or editing a C macro definition. If a line already ends in `\', this command adjusts the amount of whitespace before it. Otherwise, it inserts a new `\'. However, the last line in the region is treated specially; no `\' is inserted on that line, and any `\' there is deleted. `M-x cpp-highlight-buffer' Highlight parts of the text according to its preprocessor conditionals. This command displays another buffer named `*CPP Edit*', which serves as a graphic menu for selecting how to display particular kinds of conditionals and their contents. After changing various settings, click on `[A]pply these settings' (or go to that buffer and type `a') to rehighlight the C mode buffer accordingly. `C-c C-s' Display the syntactic information about the current source line (`c-show-syntactic-information'). This is the information that directs how the line is indented.  File: emacs, Node: Comments in C, Prev: Other C Commands, Up: C Modes Comments in C Modes ------------------- C mode and related modes use a number of variables for controlling comment format. `c-comment-only-line-offset' Extra offset for line which contains only the start of a comment. It can be either an integer or a cons cell of the form `(NON-ANCHORED-OFFSET . ANCHORED-OFFSET)', where NON-ANCHORED-OFFSET is the amount of offset given to non-column-zero anchored comment-only lines, and ANCHORED-OFFSET is the amount of offset to give column-zero anchored comment-only lines. Just an integer as value is equivalent to `(VAL . 0)'. `c-comment-start-regexp' This buffer-local variable specifies how to recognize the start of a comment. `c-hanging-comment-ender-p' If this variable is `nil', `c-fill-paragraph' leaves the comment terminator of a block comment on a line by itself. The default value is `t', which puts the comment-end delimiter `*/' at the end of the last line of the comment text. `c-hanging-comment-starter-p' If this variable is `nil', `c-fill-paragraph' leaves the starting delimiter of a block comment on a line by itself. The default value is `t', which puts the comment-start delimiter `/*' at the beginning of the first line of the comment text.  File: emacs, Node: Fortran, Next: Asm Mode, Prev: C Modes, Up: Programs Fortran Mode ============ Fortran mode provides special motion commands for Fortran statements and subprograms, and indentation commands that understand Fortran conventions of nesting, line numbers and continuation statements. Fortran mode has its own Auto Fill mode that breaks long lines into proper Fortran continuation lines. Special commands for comments are provided because Fortran comments are unlike those of other languages. Built-in abbrevs optionally save typing when you insert Fortran keywords. Use `M-x fortran-mode' to switch to this major mode. This command runs the hook `fortran-mode-hook' (*note Hooks::.). * Menu: * Motion: Fortran Motion. Moving point by statements or subprograms. * Indent: Fortran Indent. Indentation commands for Fortran. * Comments: Fortran Comments. Inserting and aligning comments. * Autofill: Fortran Autofill. Auto fill minor mode for Fortran. * Columns: Fortran Columns. Measuring columns for valid Fortran. * Abbrev: Fortran Abbrev. Built-in abbrevs for Fortran keywords. * Misc: Fortran Misc. Other Fortran mode features.  File: emacs, Node: Fortran Motion, Next: Fortran Indent, Up: Fortran Motion Commands --------------- Fortran mode provides special commands to move by subprograms (functions and subroutines) and by statements. There is also a command to put the region around one subprogram, convenient for killing it or moving it. `C-M-a' Move to beginning of subprogram (`beginning-of-fortran-subprogram'). `C-M-e' Move to end of subprogram (`end-of-fortran-subprogram'). `C-M-h' Put point at beginning of subprogram and mark at end (`mark-fortran-subprogram'). `C-c C-n' Move to beginning of current or next statement (`fortran-next-statement'). `C-c C-p' Move to beginning of current or previous statement (`fortran-previous-statement').  File: emacs, Node: Fortran Indent, Next: Fortran Comments, Prev: Fortran Motion, Up: Fortran Fortran Indentation ------------------- Special commands and features are needed for indenting Fortran code in order to make sure various syntactic entities (line numbers, comment line indicators and continuation line flags) appear in the columns that are required for standard Fortran. * Menu: * Commands: ForIndent Commands. Commands for indenting Fortran. * Contline: ForIndent Cont. How continuation lines indent. * Numbers: ForIndent Num. How line numbers auto-indent. * Conv: ForIndent Conv. Conventions you must obey to avoid trouble. * Vars: ForIndent Vars. Variables controlling Fortran indent style.  File: emacs, Node: ForIndent Commands, Next: ForIndent Cont, Up: Fortran Indent Fortran Indentation Commands ............................ `' Indent the current line (`fortran-indent-line'). `C-j' Indent the current and start a new indented line (`fortran-indent-new-line'). `C-M-j' Break the current line and set up a continuation line. `M-^' Join this line to the previous line. `C-M-q' Indent all the lines of the subprogram point is in (`fortran-indent-subprogram'). Fortran mode redefines to reindent the current line for Fortran (`fortran-indent-line'). This command indents line numbers and continuation markers to their required columns, and independently indents the body of the statement based on its nesting in the program. The key `C-j' runs the command `fortran-indent-new-line', which reindents the current line then makes and indents a new line. This command is useful to reindent the closing statement of `do' loops and other blocks before starting a new line. The key `C-M-q' runs `fortran-indent-subprogram', a command to reindent all the lines of the Fortran subprogram (function or subroutine) containing point. The key `C-M-j' runs `fortran-split-line', which splits a line in the appropriate fashion for Fortran. In a non-comment line, the second half becomes a continuation line and is indented accordingly. In a comment line, both halves become separate comment lines. `M-^' runs the command `fortran-join-line', which is more or less the inverse of `fortran-split-line'. It joins the current line to the previous line in a suitable way for Fortran code.  File: emacs, Node: ForIndent Cont, Next: ForIndent Num, Prev: ForIndent Commands, Up: Fortran Indent Continuation Lines .................. Most modern Fortran compilers allow two ways of writing continuation lines. If the first non-space character on a line is in column 5, then that line is a continuation of the previous line. We call this "fixed format". (In GNU Emacs we always count columns from 0.) The variable `fortran-continuation-string' specifies what character to put on column 5. A line that starts with a tab character followed by any digit except `0' is also a continuation line. We call this style of continuation "tab format". Fortran mode can make either style of continuation line, but you must specify which one you prefer. The value of the variable `indent-tabs-mode' controls the choice: `nil' for fixed format, and non-`nil' for tab format. You can tell which style is presently in effect by the presence or absence of the string `Tab' in the mode line. If the text on a line starts with the conventional Fortran continuation marker `$', or if it begins with any non-whitespace character in column 5, Fortran mode treats it as a continuation line. When you indent a continuation line with , it converts the line to the current continuation style. When you split a Fortran statement with `C-M-j', the continuation marker on the newline is created according to the continuation style. The setting of continuation style affects several other aspects of editing in Fortran mode. In fixed format mode, the minimum column number for the body of a statement is 6. Lines inside of Fortran blocks that are indented to larger column numbers always use only the space character for whitespace. In tab format mode, the minimum column number for the statement body is 8, and the whitespace before column 8 must always consist of one tab character. When you enter Fortran mode for an existing file, it tries to deduce the proper continuation style automatically from the file contents. The first line that begins with either a tab character or six spaces determines the choice. The variable `fortran-analyze-depth' specifies how many lines to consider (at the beginning of the file); if none of those lines indicates a style, then the variable `fortran-tab-mode-default' specifies the style. If it is `nil', that specifies fixed format, and non-`nil' specifies tab format.  File: emacs, Node: ForIndent Num, Next: ForIndent Conv, Prev: ForIndent Cont, Up: Fortran Indent Line Numbers ............ If a number is the first non-whitespace in the line, Fortran indentation assumes it is a line number and moves it to columns 0 through 4. (Columns always count from 0 in GNU Emacs.) Line numbers of four digits or less are normally indented one space. The variable `fortran-line-number-indent' controls this; it specifies the maximum indentation a line number can have. Line numbers are indented to right-justify them to end in column 4 unless that would require more than this maximum indentation. The default value of the variable is 1. Simply inserting a line number is enough to indent it according to these rules. As each digit is inserted, the indentation is recomputed. To turn off this feature, set the variable `fortran-electric-line-number' to `nil'. Then inserting line numbers is like inserting anything else.  File: emacs, Node: ForIndent Conv, Next: ForIndent Vars, Prev: ForIndent Num, Up: Fortran Indent Syntactic Conventions ..................... Fortran mode assumes that you follow certain conventions that simplify the task of understanding a Fortran program well enough to indent it properly: * Two nested `do' loops never share a `continue' statement. * Fortran keywords such as `if', `else', `then', `do' and others are written without embedded whitespace or line breaks. Fortran compilers generally ignore whitespace outside of string constants, but Fortran mode does not recognize these keywords if they are not contiguous. Constructs such as `else if' or `end do' are acceptable, but the second word should be on the same line as the first and not on a continuation line. If you fail to follow these conventions, the indentation commands may indent some lines unaesthetically. However, a correct Fortran program retains its meaning when reindented even if the conventions are not followed.  File: emacs, Node: ForIndent Vars, Prev: ForIndent Conv, Up: Fortran Indent Variables for Fortran Indentation ................................. Several additional variables control how Fortran indentation works: `fortran-do-indent' Extra indentation within each level of `do' statement (default 3). `fortran-if-indent' Extra indentation within each level of `if' statement (default 3). This value is also used for extra indentation within each level of the Fortran 90 `where' statement. `fortran-structure-indent' Extra indentation within each level of `structure', `union', or `map' statements (default 3). `fortran-continuation-indent' Extra indentation for bodies of continuation lines (default 5). `fortran-check-all-num-for-matching-do' If this is `nil', indentation assumes that each `do' statement ends on a `continue' statement. Therefore, when computing indentation for a statement other than `continue', it can save time by not checking for a `do' statement ending there. If this is non-`nil', indenting any numbered statement must check for a `do' that ends there. The default is `nil'. `fortran-blink-matching-if' If this is `t', indenting an `endif' statement moves the cursor momentarily to the matching `if' statement to show where it is. The default is `nil'. `fortran-minimum-statement-indent-fixed' Minimum indentation for fortran statements when using fixed format continuation line style. Statement bodies are never indented less than this much. The default is 6. `fortran-minimum-statement-indent-tab' Minimum indentation for fortran statements for tab format continuation line style. Statement bodies are never indented less than this much. The default is 8.  File: emacs, Node: Fortran Comments, Next: Fortran Autofill, Prev: Fortran Indent, Up: Fortran Fortran Comments ---------------- The usual Emacs comment commands assume that a comment can follow a line of code. In Fortran, the standard comment syntax requires an entire line to be just a comment. Therefore, Fortran mode replaces the standard Emacs comment commands and defines some new variables. Fortran mode can also handle a nonstandard comment syntax where comments start with `!' and can follow other text. Because only some Fortran compilers accept this syntax, Fortran mode will not insert such comments unless you have said in advance to do so. To do this, set the variable `comment-start' to `"!"' (*note Variables::.). `M-;' Align comment or insert new comment (`fortran-comment-indent'). `C-x ;' Applies to nonstandard `!' comments only. `C-c ;' Turn all lines of the region into comments, or (with argument) turn them back into real code (`fortran-comment-region'). `M-;' in Fortran mode is redefined as the command `fortran-comment-indent'. Like the usual `M-;' command, this recognizes any kind of existing comment and aligns its text appropriately; if there is no existing comment, a comment is inserted and aligned. But inserting and aligning comments are not the same in Fortran mode as in other modes. When a new comment must be inserted, if the current line is blank, a full-line comment is inserted. On a non-blank line, a nonstandard `!' comment is inserted if you have said you want to use them. Otherwise a full-line comment is inserted on a new line before the current line. Nonstandard `!' comments are aligned like comments in other languages, but full-line comments are different. In a standard full-line comment, the comment delimiter itself must always appear in column zero. What can be aligned is the text within the comment. You can choose from three styles of alignment by setting the variable `fortran-comment-indent-style' to one of these values: `fixed' Align the text at a fixed column, which is the sum of `fortran-comment-line-extra-indent' and the minimum statement indentation. This is the default. The minimum statement indentation is `fortran-minimum-statement-indent-fixed' for fixed format continuation line style and `fortran-minimum-statement-indent-tab' for tab format style. `relative' Align the text as if it were a line of code, but with an additional `fortran-comment-line-extra-indent' columns of indentation. `nil' Don't move text in full-line comments automatically at all. In addition, you can specify the character to be used to indent within full-line comments by setting the variable `fortran-comment-indent-char' to the single-character string you want to use. Fortran mode introduces two variables `comment-line-start' and `comment-line-start-skip', which play for full-line comments the same roles played by `comment-start' and `comment-start-skip' for ordinary text-following comments. Normally these are set properly by Fortran mode, so you do not need to change them. The normal Emacs comment command `C-x ;' has not been redefined. If you use `!' comments, this command can be used with them. Otherwise it is useless in Fortran mode. The command `C-c ;' (`fortran-comment-region') turns all the lines of the region into comments by inserting the string `C$$$' at the front of each one. With a numeric argument, it turns the region back into live code by deleting `C$$$' from the front of each line in it. The string used for these comments can be controlled by setting the variable `fortran-comment-region'. Note that here we have an example of a command and a variable with the same name; these two uses of the name never conflict because in Lisp and in Emacs it is always clear from the context which one is meant.  File: emacs, Node: Fortran Autofill, Next: Fortran Columns, Prev: Fortran Comments, Up: Fortran Fortran Auto Fill Mode ---------------------- Fortran Auto Fill mode is a minor mode which automatically splits Fortran statements as you insert them when they become too wide. Splitting a statement involves making continuation lines using `fortran-continuation-string' (*note ForIndent Cont::.). This splitting happens when you type , , or , and also in the Fortran indentation commands. `M-x fortran-auto-fill-mode' turns Fortran Auto Fill mode on if it was off, or off if it was on. This command works the same as `M-x auto-fill-mode' does for normal Auto Fill mode (*note Filling::.). A positive numeric argument turns Fortran Auto Fill mode on, and a negative argument turns it off. You can see when Fortran Auto Fill mode is in effect by the presence of the word `Fill' in the mode line, inside the parentheses. Fortran Auto Fill mode is a minor mode, turned on or off for each buffer individually. *Note Minor Modes::. Fortran Auto Fill mode breaks lines at spaces or delimiters when the lines get longer than the desired width (the value of `fill-column'). The delimiters that Fortran Auto Fill mode may break at are `,', `'', `+', `-', `/', `*', `=', and `)'. The line break comes after the delimiter if the variable `fortran-break-before-delimiters' is `nil'. Otherwise (and by default), the break comes before the delimiter. By default, Fortran Auto Fill mode is not enabled. If you want this feature turned on permanently, add a hook function to `fortran-mode-hook' to execute `(fortran-auto-fill-mode 1)'. *Note Hooks::.  File: emacs, Node: Fortran Columns, Next: Fortran Abbrev, Prev: Fortran Autofill, Up: Fortran Checking Columns in Fortran --------------------------- `C-c C-r' Display a "column ruler" momentarily above the current line (`fortran-column-ruler'). `C-c C-w' Split the current window horizontally temporarily so that it is 72 columns wide. This may help you avoid making lines longer than the 72-character limit that some Fortran compilers impose (`fortran-window-create-momentarily'). The command `C-c C-r' (`fortran-column-ruler') shows a column ruler momentarily above the current line. The comment ruler is two lines of text that show you the locations of columns with special significance in Fortran programs. Square brackets show the limits of the columns for line numbers, and curly brackets show the limits of the columns for the statement body. Column numbers appear above them. Note that the column numbers count from zero, as always in GNU Emacs. As a result, the numbers may be one less than those you are familiar with; but the positions they indicate in the line are standard for Fortran. The text used to display the column ruler depends on the value of the variable `indent-tabs-mode'. If `indent-tabs-mode' is `nil', then the value of the variable `fortran-column-ruler-fixed' is used as the column ruler. Otherwise, the variable `fortran-column-ruler-tab' is displayed. By changing these variables, you can change the column ruler display. For even more help, use `C-c C-w' (`fortran-window-create'), a command which splits the current window horizontally, making a window 72 columns wide. By editing in this window you can immediately see when you make a line too wide to be correct Fortran.  File: emacs, Node: Fortran Abbrev, Next: Fortran Misc, Prev: Fortran Columns, Up: Fortran Fortran Keyword Abbrevs ----------------------- Fortran mode provides many built-in abbrevs for common keywords and declarations. These are the same sort of abbrev that you can define yourself. To use them, you must turn on Abbrev mode. *Note Abbrevs::. The built-in abbrevs are unusual in one way: they all start with a semicolon. You cannot normally use semicolon in an abbrev, but Fortran mode makes this possible by changing the syntax of semicolon to "word constituent." For example, one built-in Fortran abbrev is `;c' for `continue'. If you insert `;c' and then insert a punctuation character such as a space or a newline, the `;c' expands automatically to `continue', provided Abbrev mode is enabled. Type `;?' or `;C-h' to display a list of all the built-in Fortran abbrevs and what they stand for.  File: emacs, Node: Fortran Misc, Prev: Fortran Abbrev, Up: Fortran Other Fortran Mode Commands --------------------------- `C-x n d' Narrow to the current Fortran subprogram. Fortran mode redefines the key `C-x n d' to run the command `fortran-narrow-to-subprogram', which is the Fortran analogue of the key's usual definition. It narrows the buffer to the subprogram containing point.  File: emacs, Node: Asm Mode, Prev: Fortran, Up: Programs Asm Mode ======== Asm mode is a major mode for editing files of assembler code. It defines these commands: `' `tab-to-tab-stop'. `C-j' Insert a newline and then indent using `tab-to-tab-stop'. `:' Insert a colon and then remove the indentation from before the label preceding colon. Then do `tab-to-tab-stop'. `;' Insert or align a comment. The variable `asm-comment-char' specifies which character starts comments in assembler syntax.  File: emacs, Node: Building, Next: Abbrevs, Prev: Programs, Up: Top Compiling and Testing Programs ****************************** The previous chapter discusses the Emacs commands that are useful for making changes in programs. This chapter deals with commands that assist in the larger process of developing and maintaining programs. * Menu: * Compilation:: Compiling programs in languages other than Lisp (C, Pascal, etc.). * Grep Searching:: Running grep as if it were a compiler. * Compilation Mode:: The mode for visiting compiler errors. * Compilation Shell:: Customizing your shell properly for use in the compilation buffer. * Debuggers:: Running symbolic debuggers for non-Lisp programs. * Executing Lisp:: Various modes for editing Lisp programs, with different facilities for running the Lisp programs. * Libraries: Lisp Libraries. Creating Lisp programs to run in Emacs. * Interaction: Lisp Interaction. Executing Lisp in an Emacs buffer. * Eval: Lisp Eval. Executing a single Lisp expression in Emacs. * External Lisp:: Communicating through Emacs with a separate Lisp.  File: emacs, Node: Compilation, Next: Grep Searching, Up: Building Running Compilations under Emacs ================================ Emacs can run compilers for noninteractive languages such as C and Fortran as inferior processes, feeding the error log into an Emacs buffer. It can also parse the error messages and show you the source lines where compilation errors occurred. `M-x compile' Run a compiler asynchronously under Emacs, with error messages to `*compilation*' buffer. `M-x grep' Run `grep' asynchronously under Emacs, with matching lines listed in the buffer named `*grep*'. `M-x grep-find' Run `grep' via `find', with user-specified arguments, and collect output in the buffer named `*grep*'. `M-x kill-compilation' `M-x kill-grep' Kill the running compilation or `grep' subprocess. To run `make' or another compilation command, do `M-x compile'. This command reads a shell command line using the minibuffer, and then executes the command in an inferior shell, putting output in the buffer named `*compilation*'. The current buffer's default directory is used as the working directory for the execution of the command; normally, therefore, the compilation happens in this directory. When the shell command line is read, the minibuffer appears containing a default command line, which is the command you used the last time you did `M-x compile'. If you type just , the same command line is used again. For the first `M-x compile', the default is `make -k'. The default compilation command comes from the variable `compile-command'; if the appropriate compilation command for a file is something other than `make -k', it can be useful for the file to specify a local value for `compile-command' (*note File Variables::.). Starting a compilation displays the buffer `*compilation*' in another window but does not select it. The buffer's mode line tells you whether compilation is finished, with the word `run' or `exit' inside the parentheses. You do not have to keep this buffer visible; compilation continues in any case. While a compilation is going on, the string `Compiling' appears in the mode lines of all windows. When this string disappears, the compilation is finished. If you want to watch the compilation transcript as it appears, switch to the `*compilation*' buffer and move point to the end of the buffer. When point is at the end, new compilation output is inserted above point, which remains at the end. If point is not at the end of the buffer, it remains fixed while more compilation output is added at the end of the buffer. If you set the variable `compilation-scroll-output' to a non-`nil' value, then the compilation buffer always scrolls to follow output as it comes in. To kill the compilation process, do `M-x kill-compilation'. When the compiler process terminates, the mode line of the `*compilation*' buffer changes to say `signal' instead of `run'. Starting a new compilation also kills any running compilation, as only one can exist at any time. However, `M-x compile' asks for confirmation before actually killing a compilation that is running.  File: emacs, Node: Grep Searching, Next: Compilation Mode, Prev: Compilation, Up: Building Searching with Grep under Emacs =============================== Just as you can run a compiler from Emacs and then visit the lines where there were compilation errors, you can also run `grep' and then visit the lines on which matches were found. This works by treating the matches reported by `grep' as if they were "errors." To do this, type `M-x grep', then enter a command line that specifies how to run `grep'. Use the same arguments you would give `grep' when running it normally: a `grep'-style regexp (usually in single-quotes to quote the shell's special characters) followed by file names, which may use wildcards. The output from `grep' goes in the `*grep*' buffer. You can find the corresponding lines in the original files using `C-x `' and , as with compilation errors. If you specify a prefix argument for `M-x grep', it figures out the tag (*note Tags::.) around point, and puts that into the default `grep' command. The command `M-x grep-find' is similar to `M-x grep', but it supplies a different initial default for the command--one that runs both `find' and `grep', so as to search every file in a directory tree. See also the `find-grep-dired' command, in *Note Dired and Find::.  File: emacs, Node: Compilation Mode, Next: Compilation Shell, Prev: Grep Searching, Up: Building Compilation Mode ================ The `*compilation*' buffer uses a special major mode, Compilation mode, whose main feature is to provide a convenient way to look at the source line where the error happened. `C-x `' Visit the locus of the next compiler error message or `grep' match. `' Visit the locus of the error message that point is on. This command is used in the compilation buffer. `Mouse-2' Visit the locus of the error message that you click on. You can visit the source for any particular error message by moving point in `*compilation*' to that error message and typing (`compile-goto-error'). Or click `Mouse-2' on the error message; you need not switch to the `*compilation*' buffer first. To parse the compiler error messages sequentially, type `C-x `' (`next-error'). The character following the `C-x' is the backquote or "grave accent," not the single-quote. This command is available in all buffers, not just in `*compilation*'; it displays the next error message at the top of one window and source location of the error in another window. The first time `C-x `' is used after the start of a compilation, it moves to the first error's location. Subsequent uses of `C-x `' advance down to subsequent errors. If you visit a specific error message with or `Mouse-2', subsequent `C-x `' commands advance from there. When `C-x `' gets to the end of the buffer and finds no more error messages to visit, it fails and signals an Emacs error. `C-u C-x `' starts scanning from the beginning of the compilation buffer. This is one way to process the same set of errors again. Compilation mode also redefines the keys and to scroll by screenfuls, and `M-n' and `M-p' to move to the next or previous error message. You can also use `M-{' and `M-}' to move up or down to an error message for a different source file. The features of Compilation mode are also available in a minor mode called Compilation Minor mode. This lets you parse error messages in any buffer, not just a normal compilation output buffer. Type `M-x compilation-minor-mode' to enable the minor mode. This defines the keys and `Mouse-2', as in the Compilation major mode. Compilation minor mode works in any buffer, as long as the contents are in a format that it understands. In an Rlogin buffer (*note Remote Host::.), Compilation minor mode automatically accesses remote source files by FTP (*note File Names::.).  File: emacs, Node: Compilation Shell, Next: Debuggers, Prev: Compilation Mode, Up: Building Subshells for Compilation ========================= Emacs uses a shell to run the compilation command, but specifies the option for a noninteractive shell. This means, in particular, that the shell should start with no prompt. If you find your usual shell prompt making an unsightly appearance in the `*compilation*' buffer, it means you have made a mistake in your shell's init file by setting the prompt unconditionally. (This init file's name may be `.bashrc', `.profile', `.cshrc', `.shrc', or various other things, depending on the shell you use.) The shell init file should set the prompt only if there already is a prompt. In csh, here is how to do it: if ($?prompt) set prompt = ... And here's how to do it in bash: if [ "${PS1+set}" = set ] then PS1=... fi There may well be other things that your shell's init file ought to do only for an interactive shell. You can use the same method to conditionalize them. The MS-DOS "operating system" does not support asynchronous subprocesses; to work around this lack, `M-x compile' runs the compilation command synchronously on MS-DOS. As a consequence, you must wait until the command finishes before you can do anything else in Emacs. *Note MS-DOS::.