1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1999, 2000,
3 @c 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Maintaining, Abbrevs, Building, Top
6 @chapter Maintaining Large Programs
8 This chapter describes Emacs features for maintaining large
9 programs. The version control features (@pxref{Version Control}) are
10 also particularly useful for this purpose.
13 * Change Log:: Maintaining a change history for your program.
14 * Format of ChangeLog:: What the change log file looks like.
15 * Tags:: Go direct to any function in your program in one
16 command. Tags remembers which file it is in.
17 * Emerge:: A convenient way of merging two versions of a program.
23 A change log file contains a chronological record of when and why you
24 have changed a program, consisting of a sequence of entries describing
25 individual changes. Normally it is kept in a file called
26 @file{ChangeLog} in the same directory as the file you are editing, or
27 one of its parent directories. A single @file{ChangeLog} file can
28 record changes for all the files in its directory and all its
33 @findex add-change-log-entry-other-window
34 The Emacs command @kbd{C-x 4 a} adds a new entry to the change log
35 file for the file you are editing
36 (@code{add-change-log-entry-other-window}). If that file is actually
37 a backup file, it makes an entry appropriate for the file's
38 parent---that is useful for making log entries for functions that
39 have been deleted in the current version.
41 @kbd{C-x 4 a} visits the change log file and creates a new entry
42 unless the most recent entry is for today's date and your name. It
43 also creates a new item for the current file. For many languages, it
44 can even guess the name of the function or other object that was
47 @vindex add-log-keep-changes-together
48 When the variable @code{add-log-keep-changes-together} is
49 non-@code{nil}, @kbd{C-x 4 a} adds to any existing item for the file
50 rather than starting a new item.
52 @vindex add-log-always-start-new-record
53 If @code{add-log-always-start-new-record} is non-@code{nil},
54 @kbd{C-x 4 a} always makes a new entry, even if the last entry
55 was made by you and on the same date.
57 @vindex change-log-version-info-enabled
58 @vindex change-log-version-number-regexp-list
59 @cindex file version in change log entries
60 If the value of the variable @code{change-log-version-info-enabled}
61 is non-@code{nil}, @kbd{C-x 4 a} adds the file's version number to the
62 change log entry. It finds the version number by searching the first
63 ten percent of the file, using regular expressions from the variable
64 @code{change-log-version-number-regexp-list}.
66 @cindex Change Log mode
67 @findex change-log-mode
68 The change log file is visited in Change Log mode. In this major
69 mode, each bunch of grouped items counts as one paragraph, and each
70 entry is considered a page. This facilitates editing the entries.
71 @kbd{C-j} and auto-fill indent each new line like the previous line;
72 this is convenient for entering the contents of an entry.
74 @findex change-log-merge
75 You can use the command @kbd{M-x change-log-merge} to merge other
76 log files into a buffer in Change Log Mode, preserving the date
79 Version control systems are another way to keep track of changes in your
80 program and keep a change log. @xref{Log Buffer}.
82 @node Format of ChangeLog
83 @section Format of ChangeLog
85 A change log entry starts with a header line that contains the current
86 date, your name, and your email address (taken from the variable
87 @code{add-log-mailing-address}). Aside from these header lines, every
88 line in the change log starts with a space or a tab. The bulk of the
89 entry consists of @dfn{items}, each of which starts with a line starting
90 with whitespace and a star. Here are two entries, both dated in May
91 1993, with two items and one item respectively.
97 1993-05-25 Richard Stallman <rms@@gnu.org>
99 * man.el: Rename symbols `man-*' to `Man-*'.
100 (manual-entry): Make prompt string clearer.
102 * simple.el (blink-matching-paren-distance):
103 Change default to 12,000.
105 1993-05-24 Richard Stallman <rms@@gnu.org>
107 * vc.el (minor-mode-map-alist): Don't use it if it's void.
108 (vc-cancel-version): Doc fix.
111 One entry can describe several changes; each change should have its
112 own item, or its own line in an item. Normally there should be a
113 blank line between items. When items are related (parts of the same
114 change, in different places), group them by leaving no blank line
117 You should put a copyright notice and permission notice at the
118 end of the change log file. Here is an example:
121 Copyright 1997, 1998 Free Software Foundation, Inc.
122 Copying and distribution of this file, with or without modification, are
123 permitted provided the copyright notice and this notice are preserved.
127 Of course, you should substitute the proper years and copyright holder.
133 A @dfn{tags table} is a description of how a multi-file program is
134 broken up into files. It lists the names of the component files and the
135 names and positions of the functions (or other named subunits) in each
136 file. Grouping the related files makes it possible to search or replace
137 through all the files with one command. Recording the function names
138 and positions makes possible the @kbd{M-.} command which finds the
139 definition of a function by looking up which of the files it is in.
141 Tags tables are stored in files called @dfn{tags table files}. The
142 conventional name for a tags table file is @file{TAGS}.
144 Each entry in the tags table records the name of one tag, the name of the
145 file that the tag is defined in (implicitly), and the position in that
146 file of the tag's definition. When a file parsed by @code{etags} is
147 generated from a different source file, like a C file generated from a
148 Cweb source file, the tags of the parsed file reference the source
151 Just what names from the described files are recorded in the tags table
152 depends on the programming language of the described file. They
153 normally include all file names, functions and subroutines, and may
154 also include global variables, data types, and anything else
155 convenient. Each name recorded is called a @dfn{tag}.
157 @cindex C++ class browser, tags
159 @cindex class browser, C++
161 See also the Ebrowse facility, which is tailored for C++.
162 @xref{Top,, Ebrowse, ebrowse, Ebrowse User's Manual}.
165 * Tag Syntax:: Tag syntax for various types of code and text files.
166 * Create Tags Table:: Creating a tags table with @code{etags}.
167 * Etags Regexps:: Create arbitrary tags using regular expressions.
168 * Select Tags Table:: How to visit a tags table.
169 * Find Tag:: Commands to find the definition of a specific tag.
170 * Tags Search:: Using a tags table for searching and replacing.
171 * List Tags:: Listing and finding tags defined in a file.
175 @subsection Source File Tag Syntax
177 Here is how tag syntax is defined for the most popular languages:
181 In C code, any C function or typedef is a tag, and so are definitions of
182 @code{struct}, @code{union} and @code{enum}.
183 @code{#define} macro definitions and @code{enum} constants are also
184 tags, unless you specify @samp{--no-defines} when making the tags table.
185 Similarly, global variables are tags, unless you specify
186 @samp{--no-globals}. Use of @samp{--no-globals} and @samp{--no-defines}
187 can make the tags table file much smaller.
189 You can tag function declarations and external variables in addition
190 to function definitions by giving the @samp{--declarations} option to
191 @code{etags}. You can tag struct members with the @samp{--members}
195 In C++ code, in addition to all the tag constructs of C code, member
196 functions are also recognized, and optionally member variables if you
197 use the @samp{--members} option. Tags for variables and functions in
198 classes are named @samp{@var{class}::@var{variable}} and
199 @samp{@var{class}::@var{function}}. @code{operator} definitions have
200 tag names like @samp{operator+}.
203 In Java code, tags include all the constructs recognized in C++, plus
204 the @code{interface}, @code{extends} and @code{implements} constructs.
205 Tags for variables and functions in classes are named
206 @samp{@var{class}.@var{variable}} and @samp{@var{class}.@var{function}}.
209 In La@TeX{} text, the argument of any of the commands @code{\chapter},
210 @code{\section}, @code{\subsection}, @code{\subsubsection},
211 @code{\eqno}, @code{\label}, @code{\ref}, @code{\cite},
212 @code{\bibitem}, @code{\part}, @code{\appendix}, @code{\entry},
213 @code{\index}, @code{\def}, @code{\newcommand}, @code{\renewcommand},
214 @code{\newenvironment} or @code{\renewenvironment} is a tag.@refill
216 Other commands can make tags as well, if you specify them in the
217 environment variable @env{TEXTAGS} before invoking @code{etags}. The
218 value of this environment variable should be a colon-separated list of
219 command names. For example,
222 TEXTAGS="mycommand:myothercommand"
227 specifies (using Bourne shell syntax) that the commands
228 @samp{\mycommand} and @samp{\myothercommand} also define tags.
231 In Lisp code, any function defined with @code{defun}, any variable
232 defined with @code{defvar} or @code{defconst}, and in general the first
233 argument of any expression that starts with @samp{(def} in column zero is
237 In Scheme code, tags include anything defined with @code{def} or with a
238 construct whose name starts with @samp{def}. They also include variables
239 set with @code{set!} at top level in the file.
242 Several other languages are also supported:
247 In Ada code, functions, procedures, packages, tasks and types are
248 tags. Use the @samp{--packages-only} option to create tags for
251 In Ada, the same name can be used for different kinds of entity
252 (e.g.@:, for a procedure and for a function). Also, for things like
253 packages, procedures and functions, there is the spec (i.e.@: the
254 interface) and the body (i.e.@: the implementation). To make it
255 easier to pick the definition you want, Ada tag name have suffixes
256 indicating the type of entity:
273 Thus, @kbd{M-x find-tag @key{RET} bidule/b @key{RET}} will go
274 directly to the body of the package @code{bidule}, while @kbd{M-x
275 find-tag @key{RET} bidule @key{RET}} will just search for any tag
279 In assembler code, labels appearing at the beginning of a line,
280 followed by a colon, are tags.
283 In Bison or Yacc input files, each rule defines as a tag the nonterminal
284 it constructs. The portions of the file that contain C code are parsed
288 In Cobol code, tags are paragraph names; that is, any word starting in
289 column 8 and followed by a period.
292 In Erlang code, the tags are the functions, records and macros defined
296 In Fortran code, functions, subroutines and block data are tags.
299 In HTML input files, the tags are the @code{title} and the @code{h1},
300 @code{h2}, @code{h3} headers. Also, tags are @code{name=} in anchors
301 and all occurrences of @code{id=}.
304 In Lua input files, all functions are tags.
307 In makefiles, targets are tags; additionally, variables are tags
308 unless you specify @samp{--no-globals}.
311 In Objective C code, tags include Objective C definitions for classes,
312 class categories, methods and protocols. Tags for variables and
313 functions in classes are named @samp{@var{class}::@var{variable}} and
314 @samp{@var{class}::@var{function}}.
317 In Pascal code, the tags are the functions and procedures defined in
321 In Perl code, the tags are the packages, subroutines and variables
322 defined by the @code{package}, @code{sub}, @code{my} and @code{local}
323 keywords. Use @samp{--globals} if you want to tag global variables.
324 Tags for subroutines are named @samp{@var{package}::@var{sub}}. The
325 name for subroutines defined in the default package is
326 @samp{main::@var{sub}}.
329 In PHP code, tags are functions, classes and defines. When using the
330 @samp{--members} option, vars are tags too.
333 In PostScript code, the tags are the functions.
336 In Prolog code, tags are predicates and rules at the beginning of
340 In Python code, @code{def} or @code{class} at the beginning of a line
344 You can also generate tags based on regexp matching (@pxref{Etags
345 Regexps}) to handle other formats and languages.
347 @node Create Tags Table
348 @subsection Creating Tags Tables
349 @cindex @code{etags} program
351 The @code{etags} program is used to create a tags table file. It knows
352 the syntax of several languages, as described in
354 the previous section.
359 Here is how to run @code{etags}:
362 etags @var{inputfiles}@dots{}
366 The @code{etags} program reads the specified files, and writes a tags
367 table named @file{TAGS} in the current working directory.
369 If the specified files don't exist, @code{etags} looks for
370 compressed versions of them and uncompresses them to read them. Under
371 MS-DOS, @code{etags} also looks for file names like @file{mycode.cgz}
372 if it is given @samp{mycode.c} on the command line and @file{mycode.c}
375 @code{etags} recognizes the language used in an input file based on
376 its file name and contents. You can specify the language with the
377 @samp{--language=@var{name}} option, described below.
379 If the tags table data become outdated due to changes in the files
380 described in the table, the way to update the tags table is the same
381 way it was made in the first place. If the tags table fails to record
382 a tag, or records it for the wrong file, then Emacs cannot possibly
383 find its definition until you update the tags table. However, if the
384 position recorded in the tags table becomes a little bit wrong (due to
385 other editing), the worst consequence is a slight delay in finding the
386 tag. Even if the stored position is very far wrong, Emacs will still
387 find the tag, after searching most of the file for it. That delay is
388 hardly noticeable with today's computers.
390 Thus, there is no need to update the tags table after each edit.
391 You should update a tags table when you define new tags that you want
392 to have listed, or when you move tag definitions from one file to
393 another, or when changes become substantial.
395 One tags table can virtually include another. Specify the included
396 tags file name with the @samp{--include=@var{file}} option when
397 creating the file that is to include it. The latter file then acts as
398 if it covered all the source files specified in the included file, as
399 well as the files it directly contains.
401 If you specify the source files with relative file names when you run
402 @code{etags}, the tags file will contain file names relative to the
403 directory where the tags file was initially written. This way, you can
404 move an entire directory tree containing both the tags file and the
405 source files, and the tags file will still refer correctly to the source
406 files. If the tags file is in @file{/dev}, however, the file names are
407 made relative to the current working directory. This is useful, for
408 example, when writing the tags to @file{/dev/stdout}.
410 If you specify absolute file names as arguments to @code{etags}, then
411 the tags file will contain absolute file names. This way, the tags file
412 will still refer to the same files even if you move it, as long as the
413 source files remain in the same place. Absolute file names start with
414 @samp{/}, or with @samp{@var{device}:/} on MS-DOS and MS-Windows.
416 When you want to make a tags table from a great number of files, you
417 may have problems listing them on the command line, because some systems
418 have a limit on its length. The simplest way to circumvent this limit
419 is to tell @code{etags} to read the file names from its standard input,
420 by typing a dash in place of the file names, like this:
423 find . -name "*.[chCH]" -print | etags -
426 Use the option @samp{--language=@var{name}} to specify the language
427 explicitly. You can intermix these options with file names; each one
428 applies to the file names that follow it. Specify
429 @samp{--language=auto} to tell @code{etags} to resume guessing the
430 language from the file names and file contents. Specify
431 @samp{--language=none} to turn off language-specific processing
432 entirely; then @code{etags} recognizes tags by regexp matching alone
433 (@pxref{Etags Regexps}).
435 The option @samp{--parse-stdin=@var{file}} is mostly useful when
436 calling @code{etags} from programs. It can be used (only once) in
437 place of a file name on the command line. @code{Etags} will read from
438 standard input and mark the produced tags as belonging to the file
441 @samp{etags --help} outputs the list of the languages @code{etags}
442 knows, and the file name rules for guessing the language. It also prints
443 a list of all the available @code{etags} options, together with a short
444 explanation. If followed by one or more @samp{--language=@var{lang}}
445 options, it outputs detailed information about how tags are generated for
449 @subsection Etags Regexps
451 The @samp{--regex} option provides a general way of recognizing tags
452 based on regexp matching. You can freely intermix this option with
453 file names, and each one applies to the source files that follow it.
454 If you specify multiple @samp{--regex} options, all of them are used
455 in parallel. The syntax is:
458 --regex=[@var{@{language@}}]/@var{tagregexp}/[@var{nameregexp}/]@var{modifiers}
461 The essential part of the option value is @var{tagregexp}, the
462 regexp for matching tags. It is always used anchored, that is, it
463 only matches at the beginning of a line. If you want to allow
464 indented tags, use a regexp that matches initial whitespace; start it
467 In these regular expressions, @samp{\} quotes the next character, and
468 all the GCC character escape sequences are supported (@samp{\a} for
469 bell, @samp{\b} for back space, @samp{\d} for delete, @samp{\e} for
470 escape, @samp{\f} for formfeed, @samp{\n} for newline, @samp{\r} for
471 carriage return, @samp{\t} for tab, and @samp{\v} for vertical tab).
473 Ideally, @var{tagregexp} should not match more characters than are
474 needed to recognize what you want to tag. If the syntax requires you
475 to write @var{tagregexp} so it matches more characters beyond the tag
476 itself, you should add a @var{nameregexp}, to pick out just the tag.
477 This will enable Emacs to find tags more accurately and to do
478 completion on tag names more reliably. You can find some examples
481 The @var{modifiers} are a sequence of zero or more characters that
482 modify the way @code{etags} does the matching. A regexp with no
483 modifiers is applied sequentially to each line of the input file, in a
484 case-sensitive way. The modifiers and their meanings are:
488 Ignore case when matching this regexp.
490 Match this regular expression against the whole file, so that
491 multi-line matches are possible.
493 Match this regular expression against the whole file, and allow
494 @samp{.} in @var{tagregexp} to match newlines.
497 The @samp{-R} option cancels all the regexps defined by preceding
498 @samp{--regex} options. It too applies to the file names following
499 it. Here's an example:
502 etags --regex=/@var{reg1}/i voo.doo --regex=/@var{reg2}/m \
503 bar.ber -R --lang=lisp los.er
507 Here @code{etags} chooses the parsing language for @file{voo.doo} and
508 @file{bar.ber} according to their contents. @code{etags} also uses
509 @var{reg1} to recognize additional tags in @file{voo.doo}, and both
510 @var{reg1} and @var{reg2} to recognize additional tags in
511 @file{bar.ber}. @var{reg1} is checked against each line of
512 @file{voo.doo} and @file{bar.ber}, in a case-insensitive way, while
513 @var{reg2} is checked against the whole @file{bar.ber} file,
514 permitting multi-line matches, in a case-sensitive way. @code{etags}
515 uses only the Lisp tags rules, with no user-specified regexp matching,
516 to recognize tags in @file{los.er}.
518 You can restrict a @samp{--regex} option to match only files of a
519 given language by using the optional prefix @var{@{language@}}.
520 (@samp{etags --help} prints the list of languages recognized by
521 @code{etags}.) This is particularly useful when storing many
522 predefined regular expressions for @code{etags} in a file. The
523 following example tags the @code{DEFVAR} macros in the Emacs source
524 files, for the C language only:
527 --regex='@{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/'
531 When you have complex regular expressions, you can store the list of
532 them in a file. The following option syntax instructs @code{etags} to
533 read two files of regular expressions. The regular expressions
534 contained in the second file are matched without regard to case.
537 --regex=@@@var{case-sensitive-file} --ignore-case-regex=@@@var{ignore-case-file}
541 A regex file for @code{etags} contains one regular expression per
542 line. Empty lines, and lines beginning with space or tab are ignored.
543 When the first character in a line is @samp{@@}, @code{etags} assumes
544 that the rest of the line is the name of another file of regular
545 expressions; thus, one such file can include another file. All the
546 other lines are taken to be regular expressions. If the first
547 non-whitespace text on the line is @samp{--}, that line is a comment.
549 For example, we can create a file called @samp{emacs.tags} with the
553 -- This is for GNU Emacs C source files
554 @{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/\1/
558 and then use it like this:
561 etags --regex=@@emacs.tags *.[ch] */*.[ch]
564 Here are some more examples. The regexps are quoted to protect them
565 from shell interpretation.
573 etags --language=none \
574 --regex='/[ \t]*function.*=[ \t]*\([^ \t]*\)[ \t]*(/\1/' \
575 --regex='/###key \(.*\)/\1/' \
576 --regex='/[ \t]*global[ \t].*/' \
581 Note that tags are not generated for scripts, so that you have to add
582 a line by yourself of the form @samp{###key @var{scriptname}} if you
589 etags --language=none --regex='/proc[ \t]+\([^ \t]+\)/\1/' *.tcl
596 etags --language=none \
597 --regex='/[ \t]*\(ARCHITECTURE\|CONFIGURATION\) +[^ ]* +OF/' \
598 --regex='/[ \t]*\(ATTRIBUTE\|ENTITY\|FUNCTION\|PACKAGE\
599 \( BODY\)?\|PROCEDURE\|PROCESS\|TYPE\)[ \t]+\([^ \t(]+\)/\3/'
603 @node Select Tags Table
604 @subsection Selecting a Tags Table
606 @vindex tags-file-name
607 @findex visit-tags-table
608 Emacs has at any time one @dfn{selected} tags table, and all the
609 commands for working with tags tables use the selected one. To select
610 a tags table, type @kbd{M-x visit-tags-table}, which reads the tags
611 table file name as an argument, with @file{TAGS} in the default
612 directory as the default.
614 Emacs does not actually read in the tags table contents until you
615 try to use them; all @code{visit-tags-table} does is store the file
616 name in the variable @code{tags-file-name}, and setting the variable
617 yourself is just as good. The variable's initial value is @code{nil};
618 that value tells all the commands for working with tags tables that
619 they must ask for a tags table file name to use.
621 Using @code{visit-tags-table} when a tags table is already loaded
622 gives you a choice: you can add the new tags table to the current list
623 of tags tables, or start a new list. The tags commands use all the tags
624 tables in the current list. If you start a new list, the new tags table
625 is used @emph{instead} of others. If you add the new table to the
626 current list, it is used @emph{as well as} the others.
628 @vindex tags-table-list
629 You can specify a precise list of tags tables by setting the variable
630 @code{tags-table-list} to a list of strings, like this:
632 @c keep this on two lines for formatting in smallbook
635 (setq tags-table-list
636 '("~/emacs" "/usr/local/lib/emacs/src"))
641 This tells the tags commands to look at the @file{TAGS} files in your
642 @file{~/emacs} directory and in the @file{/usr/local/lib/emacs/src}
643 directory. The order depends on which file you are in and which tags
644 table mentions that file, as explained above.
646 Do not set both @code{tags-file-name} and @code{tags-table-list}.
649 @subsection Finding a Tag
651 The most important thing that a tags table enables you to do is to find
652 the definition of a specific tag.
655 @item M-.@: @var{tag} @key{RET}
656 Find first definition of @var{tag} (@code{find-tag}).
658 Find next alternate definition of last tag specified.
660 Go back to previous tag found.
661 @item C-M-. @var{pattern} @key{RET}
662 Find a tag whose name matches @var{pattern} (@code{find-tag-regexp}).
664 Find the next tag whose name matches the last pattern used.
665 @item C-x 4 .@: @var{tag} @key{RET}
666 Find first definition of @var{tag}, but display it in another window
667 (@code{find-tag-other-window}).
668 @item C-x 5 .@: @var{tag} @key{RET}
669 Find first definition of @var{tag}, and create a new frame to select the
670 buffer (@code{find-tag-other-frame}).
672 Pop back to where you previously invoked @kbd{M-.} and friends.
677 @kbd{M-.}@: (@code{find-tag}) is the command to find the definition of
678 a specified tag. It searches through the tags table for that tag, as a
679 string, and then uses the tags table info to determine the file that the
680 definition is in and the approximate character position in the file of
681 the definition. Then @code{find-tag} visits that file, moves point to
682 the approximate character position, and searches ever-increasing
683 distances away to find the tag definition.
685 If an empty argument is given (just type @key{RET}), the balanced
686 expression in the buffer before or around point is used as the
687 @var{tag} argument. @xref{Expressions}.
689 You don't need to give @kbd{M-.} the full name of the tag; a part
690 will do. This is because @kbd{M-.} finds tags in the table which
691 contain @var{tag} as a substring. However, it prefers an exact match
692 to a substring match. To find other tags that match the same
693 substring, give @code{find-tag} a numeric argument, as in @kbd{C-u
694 M-.}; this does not read a tag name, but continues searching the tags
695 table's text for another tag containing the same substring last used.
696 If you have a real @key{META} key, @kbd{M-0 M-.}@: is an easier
697 alternative to @kbd{C-u M-.}.
700 @findex find-tag-other-window
702 @findex find-tag-other-frame
703 Like most commands that can switch buffers, @code{find-tag} has a
704 variant that displays the new buffer in another window, and one that
705 makes a new frame for it. The former is @w{@kbd{C-x 4 .}}, which invokes
706 the command @code{find-tag-other-window}. The latter is @w{@kbd{C-x 5 .}},
707 which invokes @code{find-tag-other-frame}.
709 To move back to places you've found tags recently, use @kbd{C-u -
710 M-.}; more generally, @kbd{M-.} with a negative numeric argument. This
711 command can take you to another buffer. @w{@kbd{C-x 4 .}} with a negative
712 argument finds the previous tag location in another window.
716 @vindex find-tag-marker-ring-length
717 As well as going back to places you've found tags recently, you can go
718 back to places @emph{from where} you found them. Use @kbd{M-*}, which
719 invokes the command @code{pop-tag-mark}, for this. Typically you would
720 find and study the definition of something with @kbd{M-.} and then
721 return to where you were with @kbd{M-*}.
723 Both @kbd{C-u - M-.} and @kbd{M-*} allow you to retrace your steps to
724 a depth determined by the variable @code{find-tag-marker-ring-length}.
726 @findex find-tag-regexp
728 The command @kbd{C-M-.} (@code{find-tag-regexp}) visits the tags that
729 match a specified regular expression. It is just like @kbd{M-.} except
730 that it does regexp matching instead of substring matching.
733 @subsection Searching and Replacing with Tags Tables
734 @cindex search and replace in multiple files
735 @cindex multiple-file search and replace
737 The commands in this section visit and search all the files listed
738 in the selected tags table, one by one. For these commands, the tags
739 table serves only to specify a sequence of files to search. These
740 commands scan the list of tags tables starting with the first tags
741 table (if any) that describes the current file, proceed from there to
742 the end of the list, and then scan from the beginning of the list
743 until they have covered all the tables in the list.
746 @item M-x tags-search @key{RET} @var{regexp} @key{RET}
747 Search for @var{regexp} through the files in the selected tags
749 @item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET}
750 Perform a @code{query-replace-regexp} on each file in the selected tags table.
752 Restart one of the commands above, from the current location of point
753 (@code{tags-loop-continue}).
757 @kbd{M-x tags-search} reads a regexp using the minibuffer, then
758 searches for matches in all the files in the selected tags table, one
759 file at a time. It displays the name of the file being searched so you
760 can follow its progress. As soon as it finds an occurrence,
761 @code{tags-search} returns.
764 @findex tags-loop-continue
765 Having found one match, you probably want to find all the rest. To find
766 one more match, type @kbd{M-,} (@code{tags-loop-continue}) to resume the
767 @code{tags-search}. This searches the rest of the current buffer, followed
768 by the remaining files of the tags table.@refill
770 @findex tags-query-replace
771 @kbd{M-x tags-query-replace} performs a single
772 @code{query-replace-regexp} through all the files in the tags table. It
773 reads a regexp to search for and a string to replace with, just like
774 ordinary @kbd{M-x query-replace-regexp}. It searches much like @kbd{M-x
775 tags-search}, but repeatedly, processing matches according to your
776 input. @xref{Replace}, for more information on query replace.
778 @vindex tags-case-fold-search
779 @cindex case-sensitivity and tags search
780 You can control the case-sensitivity of tags search commands by
781 customizing the value of the variable @code{tags-case-fold-search}. The
782 default is to use the same setting as the value of
783 @code{case-fold-search} (@pxref{Search Case}).
785 It is possible to get through all the files in the tags table with a
786 single invocation of @kbd{M-x tags-query-replace}. But often it is
787 useful to exit temporarily, which you can do with any input event that
788 has no special query replace meaning. You can resume the query replace
789 subsequently by typing @kbd{M-,}; this command resumes the last tags
790 search or replace command that you did.
792 The commands in this section carry out much broader searches than the
793 @code{find-tag} family. The @code{find-tag} commands search only for
794 definitions of tags that match your substring or regexp. The commands
795 @code{tags-search} and @code{tags-query-replace} find every occurrence
796 of the regexp, as ordinary search commands and replace commands do in
799 These commands create buffers only temporarily for the files that they
800 have to search (those which are not already visited in Emacs buffers).
801 Buffers in which no match is found are quickly killed; the others
804 It may have struck you that @code{tags-search} is a lot like
805 @code{grep}. You can also run @code{grep} itself as an inferior of
806 Emacs and have Emacs show you the matching lines one by one.
807 @xref{Grep Searching}.
810 @subsection Tags Table Inquiries
813 @item M-x list-tags @key{RET} @var{file} @key{RET}
814 Display a list of the tags defined in the program file @var{file}.
815 @item M-x tags-apropos @key{RET} @var{regexp} @key{RET}
816 Display a list of all tags matching @var{regexp}.
820 @kbd{M-x list-tags} reads the name of one of the files described by
821 the selected tags table, and displays a list of all the tags defined in
822 that file. The ``file name'' argument is really just a string to
823 compare against the file names recorded in the tags table; it is read as
824 a string rather than as a file name. Therefore, completion and
825 defaulting are not available, and you must enter the file name the same
826 way it appears in the tags table. Do not include a directory as part of
827 the file name unless the file name recorded in the tags table includes a
831 @vindex tags-apropos-verbose
832 @kbd{M-x tags-apropos} is like @code{apropos} for tags
833 (@pxref{Apropos}). It finds all the tags in the selected tags table
834 whose entries match @var{regexp}, and displays them. If the variable
835 @code{tags-apropos-verbose} is non-@code{nil}, it displays the names
836 of the tags files together with the tag names.
838 @vindex tags-tag-face
839 @vindex tags-apropos-additional-actions
840 You can customize the appearance of the output by setting the
841 variable @code{tags-tag-face} to a face. You can display additional
842 output with @kbd{M-x tags-apropos} by customizing the variable
843 @code{tags-apropos-additional-actions}---see its documentation for
846 You can also use the collection of tag names to complete a symbol
847 name in the buffer. @xref{Symbol Completion}.
850 @section Merging Files with Emerge
852 @cindex merging files
854 It's not unusual for programmers to get their signals crossed and
855 modify the same program in two different directions. To recover from
856 this confusion, you need to merge the two versions. Emerge makes this
857 easier. See also @ref{Comparing Files}, for other ways to compare
858 files, and @ref{Top, Ediff,, ediff, The Ediff Manual}.
861 * Overview of Emerge:: How to start Emerge. Basic concepts.
862 * Submodes of Emerge:: Fast mode vs. Edit mode.
863 Skip Prefers mode and Auto Advance mode.
864 * State of Difference:: You do the merge by specifying state A or B
866 * Merge Commands:: Commands for selecting a difference,
867 changing states of differences, etc.
868 * Exiting Emerge:: What to do when you've finished the merge.
869 * Combining in Emerge:: How to keep both alternatives for a difference.
870 * Fine Points of Emerge:: Misc.
873 @node Overview of Emerge
874 @subsection Overview of Emerge
876 To start Emerge, run one of these four commands:
879 @item M-x emerge-files
881 Merge two specified files.
883 @item M-x emerge-files-with-ancestor
884 @findex emerge-files-with-ancestor
885 Merge two specified files, with reference to a common ancestor.
887 @item M-x emerge-buffers
888 @findex emerge-buffers
891 @item M-x emerge-buffers-with-ancestor
892 @findex emerge-buffers-with-ancestor
893 Merge two buffers with reference to a common ancestor in a third
897 @cindex merge buffer (Emerge)
898 @cindex A and B buffers (Emerge)
899 The Emerge commands compare two files or buffers, and display the
900 comparison in three buffers: one for each input text (the @dfn{A buffer}
901 and the @dfn{B buffer}), and one (the @dfn{merge buffer}) where merging
902 takes place. The merge buffer shows the full merged text, not just the
903 differences. Wherever the two input texts differ, you can choose which
904 one of them to include in the merge buffer.
906 The Emerge commands that take input from existing buffers use only the
907 accessible portions of those buffers, if they are narrowed
910 If a common ancestor version is available, from which the two texts to
911 be merged were both derived, Emerge can use it to guess which
912 alternative is right. Wherever one current version agrees with the
913 ancestor, Emerge presumes that the other current version is a deliberate
914 change which should be kept in the merged version. Use the
915 @samp{with-ancestor} commands if you want to specify a common ancestor
916 text. These commands read three file or buffer names---variant A,
917 variant B, and the common ancestor.
919 After the comparison is done and the buffers are prepared, the
920 interactive merging starts. You control the merging by typing special
921 @dfn{merge commands} in the merge buffer (@pxref{Merge Commands}).
922 For each run of differences between the input texts, you can choose
923 which one of them to keep, or edit them both together.
925 The merge buffer uses a special major mode, Emerge mode, with commands
926 for making these choices. But you can also edit the buffer with
927 ordinary Emacs commands.
929 At any given time, the attention of Emerge is focused on one
930 particular difference, called the @dfn{selected} difference. This
931 difference is marked off in the three buffers like this:
935 @var{text that differs}
940 Emerge numbers all the differences sequentially and the mode
941 line always shows the number of the selected difference.
943 Normally, the merge buffer starts out with the A version of the text.
944 But when the A version of a difference agrees with the common ancestor,
945 then the B version is initially preferred for that difference.
947 Emerge leaves the merged text in the merge buffer when you exit. At
948 that point, you can save it in a file with @kbd{C-x C-w}. If you give a
949 numeric argument to @code{emerge-files} or
950 @code{emerge-files-with-ancestor}, it reads the name of the output file
951 using the minibuffer. (This is the last file name those commands read.)
952 Then exiting from Emerge saves the merged text in the output file.
954 Normally, Emerge commands save the output buffer in its file when you
955 exit. If you abort Emerge with @kbd{C-]}, the Emerge command does not
956 save the output buffer, but you can save it yourself if you wish.
958 @node Submodes of Emerge
959 @subsection Submodes of Emerge
961 You can choose between two modes for giving merge commands: Fast mode
962 and Edit mode. In Fast mode, basic merge commands are single
963 characters, but ordinary Emacs commands are disabled. This is
964 convenient if you use only merge commands. In Edit mode, all merge
965 commands start with the prefix key @kbd{C-c C-c}, and the normal Emacs
966 commands are also available. This allows editing the merge buffer, but
967 slows down Emerge operations.
969 Use @kbd{e} to switch to Edit mode, and @kbd{C-c C-c f} to switch to
970 Fast mode. The mode line indicates Edit and Fast modes with @samp{E}
973 Emerge has two additional submodes that affect how particular merge
974 commands work: Auto Advance mode and Skip Prefers mode.
976 If Auto Advance mode is in effect, the @kbd{a} and @kbd{b} commands
977 advance to the next difference. This lets you go through the merge
978 faster as long as you simply choose one of the alternatives from the
979 input. The mode line indicates Auto Advance mode with @samp{A}.
981 If Skip Prefers mode is in effect, the @kbd{n} and @kbd{p} commands
982 skip over differences in states prefer-A and prefer-B (@pxref{State of
983 Difference}). Thus you see only differences for which neither version
984 is presumed ``correct.'' The mode line indicates Skip Prefers mode with
987 @findex emerge-auto-advance-mode
988 @findex emerge-skip-prefers-mode
989 Use the command @kbd{s a} (@code{emerge-auto-advance-mode}) to set or
990 clear Auto Advance mode. Use @kbd{s s}
991 (@code{emerge-skip-prefers-mode}) to set or clear Skip Prefers mode.
992 These commands turn on the mode with a positive argument, turns it off
993 with a negative or zero argument, and toggle the mode with no argument.
995 @node State of Difference
996 @subsection State of a Difference
998 In the merge buffer, a difference is marked with lines of @samp{v} and
999 @samp{^} characters. Each difference has one of these seven states:
1003 The difference is showing the A version. The @kbd{a} command always
1004 produces this state; the mode line indicates it with @samp{A}.
1007 The difference is showing the B version. The @kbd{b} command always
1008 produces this state; the mode line indicates it with @samp{B}.
1012 The difference is showing the A or the B state by default, because you
1013 haven't made a choice. All differences start in the default-A state
1014 (and thus the merge buffer is a copy of the A buffer), except those for
1015 which one alternative is ``preferred'' (see below).
1017 When you select a difference, its state changes from default-A or
1018 default-B to plain A or B. Thus, the selected difference never has
1019 state default-A or default-B, and these states are never displayed in
1022 The command @kbd{d a} chooses default-A as the default state, and @kbd{d
1023 b} chooses default-B. This chosen default applies to all differences
1024 which you haven't ever selected and for which no alternative is preferred.
1025 If you are moving through the merge sequentially, the differences you
1026 haven't selected are those following the selected one. Thus, while
1027 moving sequentially, you can effectively make the A version the default
1028 for some sections of the merge buffer and the B version the default for
1029 others by using @kbd{d a} and @kbd{d b} between sections.
1033 The difference is showing the A or B state because it is
1034 @dfn{preferred}. This means that you haven't made an explicit choice,
1035 but one alternative seems likely to be right because the other
1036 alternative agrees with the common ancestor. Thus, where the A buffer
1037 agrees with the common ancestor, the B version is preferred, because
1038 chances are it is the one that was actually changed.
1040 These two states are displayed in the mode line as @samp{A*} and @samp{B*}.
1043 The difference is showing a combination of the A and B states, as a
1044 result of the @kbd{x c} or @kbd{x C} commands.
1046 Once a difference is in this state, the @kbd{a} and @kbd{b} commands
1047 don't do anything to it unless you give them a numeric argument.
1049 The mode line displays this state as @samp{comb}.
1052 @node Merge Commands
1053 @subsection Merge Commands
1055 Here are the Merge commands for Fast mode; in Edit mode, precede them
1060 Select the previous difference.
1063 Select the next difference.
1066 Choose the A version of this difference.
1069 Choose the B version of this difference.
1072 Select difference number @var{n}.
1075 Select the difference containing point. You can use this command in the
1076 merge buffer or in the A or B buffer.
1079 Quit---finish the merge.
1082 Abort---exit merging and do not save the output.
1085 Go into Fast mode. (In Edit mode, this is actually @kbd{C-c C-c f}.)
1091 Recenter (like @kbd{C-l}) all three windows.
1094 Specify part of a prefix numeric argument.
1097 Also specify part of a prefix numeric argument.
1100 Choose the A version as the default from here down in
1104 Choose the B version as the default from here down in
1108 Copy the A version of this difference into the kill ring.
1111 Copy the B version of this difference into the kill ring.
1114 Insert the A version of this difference at point.
1117 Insert the B version of this difference at point.
1120 Put point and mark around the difference.
1123 Scroll all three windows down (like @kbd{M-v}).
1126 Scroll all three windows up (like @kbd{C-v}).
1129 Scroll all three windows left (like @kbd{C-x <}).
1132 Scroll all three windows right (like @kbd{C-x >}).
1135 Reset horizontal scroll on all three windows.
1138 Shrink the merge window to one line. (Use @kbd{C-u l} to restore it
1142 Combine the two versions of this difference (@pxref{Combining in
1146 Show the names of the files/buffers Emerge is operating on, in a Help
1147 window. (Use @kbd{C-u l} to restore windows.)
1150 Join this difference with the following one.
1151 (@kbd{C-u x j} joins this difference with the previous one.)
1154 Split this difference into two differences. Before you use this
1155 command, position point in each of the three buffers at the place where
1156 you want to split the difference.
1159 Trim identical lines off the top and bottom of the difference.
1160 Such lines occur when the A and B versions are
1161 identical but differ from the ancestor version.
1164 @node Exiting Emerge
1165 @subsection Exiting Emerge
1167 The @kbd{q} command (@code{emerge-quit}) finishes the merge, storing
1168 the results into the output file if you specified one. It restores the
1169 A and B buffers to their proper contents, or kills them if they were
1170 created by Emerge and you haven't changed them. It also disables the
1171 Emerge commands in the merge buffer, since executing them later could
1172 damage the contents of the various buffers.
1174 @kbd{C-]} aborts the merge. This means exiting without writing the
1175 output file. If you didn't specify an output file, then there is no
1176 real difference between aborting and finishing the merge.
1178 If the Emerge command was called from another Lisp program, then its
1179 return value is @code{t} for successful completion, or @code{nil} if you
1182 @node Combining in Emerge
1183 @subsection Combining the Two Versions
1185 Sometimes you want to keep @emph{both} alternatives for a particular
1186 difference. To do this, use @kbd{x c}, which edits the merge buffer
1192 @var{version from A buffer}
1194 @var{version from B buffer}
1195 #endif /* not NEW */
1200 @vindex emerge-combine-versions-template
1201 While this example shows C preprocessor conditionals delimiting the two
1202 alternative versions, you can specify the strings to use by setting
1203 the variable @code{emerge-combine-versions-template} to a string of your
1204 choice. In the string, @samp{%a} says where to put version A, and
1205 @samp{%b} says where to put version B. The default setting, which
1206 produces the results shown above, looks like this:
1210 "#ifdef NEW\n%a#else /* not NEW */\n%b#endif /* not NEW */\n"
1214 @node Fine Points of Emerge
1215 @subsection Fine Points of Emerge
1217 During the merge, you mustn't try to edit the A and B buffers yourself.
1218 Emerge modifies them temporarily, but ultimately puts them back the way
1221 You can have any number of merges going at once---just don't use any one
1222 buffer as input to more than one merge at once, since the temporary
1223 changes made in these buffers would get in each other's way.
1225 Starting Emerge can take a long time because it needs to compare the
1226 files fully. Emacs can't do anything else until @code{diff} finishes.
1227 Perhaps in the future someone will change Emerge to do the comparison in
1228 the background when the input files are large---then you could keep on
1229 doing other things with Emacs until Emerge is ready to accept
1232 @vindex emerge-startup-hook
1233 After setting up the merge, Emerge runs the hook
1234 @code{emerge-startup-hook} (@pxref{Hooks}).
1237 arch-tag: b9d83dfb-82ea-4ff6-bab5-05a3617091fb