(frame-update-faces): Fix obsolescence declaration.
[emacs.git] / man / maintaining.texi
bloba9d126816e33989dbb16dc7a5aedfc29464dc3b1
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985,86,87,93,94,95,97,99,00,2001 Free Software Foundation, Inc.
3 @c See file emacs.texi for copying conditions.
4 @node Maintaining, Abbrevs, Building, Top
5 @chapter Maintaining Programs
6 @cindex Lisp editing
7 @cindex C editing
8 @cindex program editing
10   This chapter describes Emacs features for maintaining programs.  The
11 version control features (@pxref{Version Control}) are also
12 particularly useful for this purpose.
14 @menu
15 * Change Log::          Maintaining a change history for your program.
16 * Tags::                Go direct to any function in your program in one
17                           command.  Tags remembers which file it is in.
18 * Emerge::              A convenient way of merging two versions of a program.
19 @end menu
21 @node Change Log
22 @section Change Logs
24 @cindex change log
25 @kindex C-x 4 a
26 @findex add-change-log-entry-other-window
27   The Emacs command @kbd{C-x 4 a} adds a new entry to the change log
28 file for the file you are editing
29 (@code{add-change-log-entry-other-window}).  If that file is actually
30 a backup file, it makes an entry appropriate for the file's
31 parent---that is useful for making log entries for functions that
32 have been deleted in the current version.
34   A change log file contains a chronological record of when and why you
35 have changed a program, consisting of a sequence of entries describing
36 individual changes.  Normally it is kept in a file called
37 @file{ChangeLog} in the same directory as the file you are editing, or
38 one of its parent directories.  A single @file{ChangeLog} file can
39 record changes for all the files in its directory and all its
40 subdirectories.
42   You should put a copyright notice and permission notice at the
43 end of the change log file.  Here is an example:
45 @example
46 Copyright 1997, 1998 Free Software Foundation, Inc.
47 Copying and distribution of this file, with or without modification, are
48 permitted provided the copyright notice and this notice are preserved.
49 @end example
51 @noindent
52 Of course, you should substitute the proper years and copyright holder.
54   A change log entry starts with a header line that contains the
55 current date, your name, and your email address (taken from the
56 variable @code{user-mail-address}).  Aside from these header lines,
57 every line in the change log starts with a space or a tab.  The bulk
58 of the entry consists of @dfn{items}, each of which starts with a line
59 starting with whitespace and a star.  Here are two entries, both dated
60 in May 1993, each with two items:
62 @iftex
63 @medbreak
64 @end iftex
65 @smallexample
66 1993-05-25  Richard Stallman  <rms@@gnu.org>
68         * man.el: Rename symbols `man-*' to `Man-*'.
69         (manual-entry): Make prompt string clearer.
71         * simple.el (blink-matching-paren-distance):
72         Change default to 12,000.
74 1993-05-24  Richard Stallman  <rms@@gnu.org>
76         * vc.el (minor-mode-map-alist): Don't use it if it's void.
77         (vc-cancel-version): Doc fix.
78 @end smallexample
80   One entry can describe several changes; each change should have its
81 own item.  Normally there should be a blank line between items.  When
82 items are related (parts of the same change, in different places), group
83 them by leaving no blank line between them.  The second entry above
84 contains two items grouped in this way.
86   @kbd{C-x 4 a} visits the change log file and creates a new entry
87 unless the most recent entry is for today's date and your name.  It
88 also creates a new item for the current file.  For many languages, it
89 can even guess the name of the function or other object that was
90 changed.
92 @vindex add-log-keep-changes-together
93   When the option @code{add-log-keep-changes-together} is
94 non-@code{nil}, @kbd{C-x 4 a} adds to any existing entry for the file
95 rather than starting a new entry.
97 @vindex change-log-version-info-enabled
98 @vindex change-log-version-number-regexp-list
99 @cindex file version in change log entries
100   If the value of the variable @code{change-log-version-info-enabled}
101 is non-@code{nil}, @kbd{C-x 4 a} adds the file's version number to the
102 change log entry.  It finds the version number by searching the first
103 ten percent of the file, using regular expressions from the variable
104 @code{change-log-version-number-regexp-list}.
106 @cindex Change Log mode
107 @findex change-log-mode
108   The change log file is visited in Change Log mode.  In this major
109 mode, each bunch of grouped items counts as one paragraph, and each
110 entry is considered a page.  This facilitates editing the entries.
111 @kbd{C-j} and auto-fill indent each new line like the previous line;
112 this is convenient for entering the contents of an entry.
114 @findex change-log-merge
115   You can use the command @kbd{M-x change-log-merge} to merge other
116 log files into a buffer in Change Log Mode, preserving the date
117 ordering of entries.
119 @findex change-log-redate
120 @cindex converting change log date style
121   Versions of Emacs before 20.1 used a different format for the time of
122 the change log entry:
124 @smallexample
125 Fri May 25 11:23:23 1993 Richard Stallman  <rms@@gnu.org>
126 @end smallexample
128 @noindent
129 The @kbd{M-x change-log-redate} command converts all the old-style
130 date entries in the change log file visited in the current buffer to
131 the new format, to make the file uniform in style.  This is handy when
132 entries are contributed by many different people, some of whom use old
133 versions of Emacs.
135   Version control systems are another way to keep track of changes in your
136 program and keep a change log.  @xref{Log Buffer}.
138 @ignore
139 @c This is commented out because the command is specific
140 @c to maintenance of Emacs itself.
142 @node Authors
143 @section @file{AUTHORS} files
144 @cindex @file{AUTHORS} file
146   Programs which have many contributors usually include a file named
147 @file{AUTHORS} in their distribution, which lists the individual
148 contributions.  Emacs has a special command for maintaining the
149 @file{AUTHORS} file that is part of the Emacs distribution.
151 @findex authors
152   The @kbd{M-x authors} command prompts for the name of the root of the
153 Emacs source directory.  It then scans @file{ChangeLog} files and Lisp
154 source files under that directory for information about authors of
155 individual packages, and people who made changes in source files, and
156 puts the information it gleans into a buffer named @samp{*Authors*}.
157 You can then edit the contents of that buffer and merge it with the
158 existing @file{AUTHORS} file.
160   Do not assume that this command finds all the contributors; don't
161 assume that a person not listed in the output was not a contributor.
162 If you merged in someone's contribution and did not put his name
163 in the change log, he won't show up in @kbd{M-x authors} either.
164 @end ignore
166 @node Tags
167 @section Tags Tables
168 @cindex tags table
170   A @dfn{tags table} is a description of how a multi-file program is
171 broken up into files.  It lists the names of the component files and the
172 names and positions of the functions (or other named subunits) in each
173 file.  Grouping the related files makes it possible to search or replace
174 through all the files with one command.  Recording the function names
175 and positions makes possible the @kbd{M-.} command which finds the
176 definition of a function by looking up which of the files it is in.
178   Tags tables are stored in files called @dfn{tags table files}.  The
179 conventional name for a tags table file is @file{TAGS}.
181   Each entry in the tags table records the name of one tag, the name of the
182 file that the tag is defined in (implicitly), and the position in that
183 file of the tag's definition.  When a file parsed by @code{etags} is
184 generated from a different source file, like a C file generated from a
185 Cweb source file, the tags of the parsed file reference the source
186 file.
188   Just what names from the described files are recorded in the tags table
189 depends on the programming language of the described file.  They
190 normally include all file names, functions and subroutines, and may
191 also include global variables, data types, and anything else
192 convenient.  Each name recorded is called a @dfn{tag}.
194 @cindex C++ class browser, tags
195 @cindex tags, C++
196 @cindex class browser, C++
197 @cindex Ebrowse
198   See also the Ebrowse facility, which is tailored for C++.
199 @xref{Top,, Ebrowse, ebrowse, Ebrowse User's Manual}.
201 @menu
202 * Tag Syntax::          Tag syntax for various types of code and text files.
203 * Create Tags Table::   Creating a tags table with @code{etags}.
204 * Etags Regexps::       Create arbitrary tags using regular expressions.
205 * Select Tags Table::   How to visit a tags table.
206 * Find Tag::            Commands to find the definition of a specific tag.
207 * Tags Search::         Using a tags table for searching and replacing.
208 * List Tags::           Listing and finding tags defined in a file.
209 @end menu
211 @node Tag Syntax
212 @subsection Source File Tag Syntax
214   Here is how tag syntax is defined for the most popular languages:
216 @itemize @bullet
217 @item
218 In C code, any C function or typedef is a tag, and so are definitions of
219 @code{struct}, @code{union} and @code{enum}.
220 @code{#define} macro definitions and @code{enum} constants are also
221 tags, unless you specify @samp{--no-defines} when making the tags table.
222 Similarly, global variables are tags, unless you specify
223 @samp{--no-globals}.  Use of @samp{--no-globals} and @samp{--no-defines}
224 can make the tags table file much smaller.
226 You can tag function declarations and external variables in addition
227 to function definitions by giving the @samp{--declarations} option to
228 @code{etags}.
230 @item
231 In C++ code, in addition to all the tag constructs of C code, member
232 functions are also recognized, and optionally member variables if you
233 use the @samp{--members} option.  Tags for variables and functions in
234 classes are named @samp{@var{class}::@var{variable}} and
235 @samp{@var{class}::@var{function}}.  @code{operator} definitions have
236 tag names like @samp{operator+}.
238 @item
239 In Java code, tags include all the constructs recognized in C++, plus
240 the @code{interface}, @code{extends} and @code{implements} constructs.
241 Tags for variables and functions in classes are named
242 @samp{@var{class}.@var{variable}} and @samp{@var{class}.@var{function}}.
244 @item
245 In La@TeX{} text, the argument of any of the commands @code{\chapter},
246 @code{\section}, @code{\subsection}, @code{\subsubsection},
247 @code{\eqno}, @code{\label}, @code{\ref}, @code{\cite},
248 @code{\bibitem}, @code{\part}, @code{\appendix}, @code{\entry},
249 @code{\index}, @code{\def}, @code{\newcomand}, @code{\renewcommand},
250 @code{\newenvironment} or @code{\renewenvironment} is a tag.@refill
252 Other commands can make tags as well, if you specify them in the
253 environment variable @env{TEXTAGS} before invoking @code{etags}.  The
254 value of this environment variable should be a colon-separated list of
255 command names.  For example,
257 @example
258 TEXTAGS="mycommand:myothercommand"
259 export TEXTAGS
260 @end example
262 @noindent
263 specifies (using Bourne shell syntax) that the commands
264 @samp{\mycommand} and @samp{\myothercommand} also define tags.
266 @item
267 In Lisp code, any function defined with @code{defun}, any variable
268 defined with @code{defvar} or @code{defconst}, and in general the first
269 argument of any expression that starts with @samp{(def} in column zero, is
270 a tag.
272 @item
273 In Scheme code, tags include anything defined with @code{def} or with a
274 construct whose name starts with @samp{def}.  They also include variables
275 set with @code{set!} at top level in the file.
276 @end itemize
278   Several other languages are also supported:
280 @itemize @bullet
282 @item
283 In Ada code, functions, procedures, packages, tasks, and types are
284 tags.  Use the @samp{--packages-only} option to create tags for
285 packages only.
287 In Ada, the same name can be used for different kinds of entity
288 (e.g.@:, for a procedure and for a function).  Also, for things like
289 packages, procedures and functions, there is the spec (i.e.@: the
290 interface) and the body (i.e.@: the implementation).  To make it
291 easier to pick the definition you want, Ada tag name have suffixes
292 indicating the type of entity:
294 @table @samp
295 @item /b
296 package body.
297 @item /f
298 function.
299 @item /k
300 task.
301 @item /p
302 procedure.
303 @item /s
304 package spec.
305 @item /t
306 type.
307 @end table
309   Thus, @kbd{M-x find-tag @key{RET} bidule/b @key{RET}} will go
310 directly to the body of the package @code{bidule}, while @kbd{M-x
311 find-tag @key{RET} bidule @key{RET}} will just search for any tag
312 @code{bidule}.
314 @item
315 In assembler code, labels appearing at the beginning of a line,
316 followed by a colon, are tags.
318 @item
319 In Bison or Yacc input files, each rule defines as a tag the nonterminal
320 it constructs.  The portions of the file that contain C code are parsed
321 as C code.
323 @item
324 In Cobol code, tags are paragraph names; that is, any word starting in
325 column 8 and followed by a period.
327 @item
328 In Erlang code, the tags are the functions, records, and macros defined
329 in the file.
331 @item
332 In Fortran code, functions, subroutines and block data are tags.
334 @item
335 In makefiles, targets are tags; additionally, variables are tags
336 unless you specify @samp{--no-globals}.
338 @item
339 In Objective C code, tags include Objective C definitions for classes,
340 class categories, methods, and protocols.  Tags for variables and
341 functions in classes are named @samp{@var{class}::@var{variable}} and
342 @samp{@var{class}::@var{function}}.
344 @item
345 In Pascal code, the tags are the functions and procedures defined in
346 the file.
348 @item
349 In Perl code, the tags are the packages, subroutines and variables
350 defined by the @code{package}, @code{sub}, @code{my} and @code{local}
351 keywords.  Use @samp{--globals} if you want to tag global variables.
352 Tags for subroutines are named @samp{@var{package}::@var{sub}}.  The
353 name for subroutines defined in the default package is
354 @samp{main::@var{sub}}.
356 @item
357 In PHP code, tags are functions, classes and defines.  When using the
358 @samp{--members} option, vars are tags too.
360 @item
361 In PostScript code, the tags are the functions.
363 @item
364 In Prolog code, tags are predicates and rules at the beginning of
365 line.
367 @item
368 In Python code, @code{def} or @code{class} at the beginning of a line
369 generate a tag.
370 @end itemize
372   You can also generate tags based on regexp matching (@pxref{Etags
373 Regexps}) to handle other formats and languages.
375 @node Create Tags Table
376 @subsection Creating Tags Tables
377 @cindex @code{etags} program
379   The @code{etags} program is used to create a tags table file.  It knows
380 the syntax of several languages, as described in
381 @iftex
382 the previous section.
383 @end iftex
384 @ifinfo
385 @ref{Tag Syntax}.
386 @end ifinfo
387 Here is how to run @code{etags}:
389 @example
390 etags @var{inputfiles}@dots{}
391 @end example
393 @noindent
394 The @code{etags} program reads the specified files, and writes a tags
395 table named @file{TAGS} in the current working directory.
397   If the specified files don't exist, @code{etags} looks for
398 compressed versions of them and uncompresses them to read them.  Under
399 MS-DOS, @code{etags} also looks for file names like @file{mycode.cgz}
400 if it is given @samp{mycode.c} on the command line and @file{mycode.c}
401 does not exist.
403   @code{etags} recognizes the language used in an input file based on
404 its file name and contents.  You can specify the language with the
405 @samp{--language=@var{name}} option, described below.
407   If the tags table data become outdated due to changes in the files
408 described in the table, the way to update the tags table is the same
409 way it was made in the first place.  If the tags table fails to record
410 a tag, or records it for the wrong file, then Emacs cannot possibly
411 find its definition until you update the tags table.  However, if the
412 position recorded in the tags table becomes a little bit wrong (due to
413 other editing), the only consequence is a slight delay in finding the
414 tag.  Even if the stored position is very far wrong, Emacs will still
415 find the tag, after searching most of the file for it.  Even that
416 delay is hardly noticeable with today's computers.
418   So you should update a tags table when you define new tags that you want
419 to have listed, or when you move tag definitions from one file to another,
420 or when changes become substantial.  Normally there is no need to update
421 the tags table after each edit, or even every day.
423   One tags table can virtually include another.  Specify the included
424 tags file name with the @samp{--include=@var{file}} option when
425 creating the file that is to include it.  The latter file then acts as
426 if it covered all the source files specified in the included file, as
427 well as the files it directly contains.
429   If you specify the source files with relative file names when you run
430 @code{etags}, the tags file will contain file names relative to the
431 directory where the tags file was initially written.  This way, you can
432 move an entire directory tree containing both the tags file and the
433 source files, and the tags file will still refer correctly to the source
434 files.
436   If you specify absolute file names as arguments to @code{etags}, then
437 the tags file will contain absolute file names.  This way, the tags file
438 will still refer to the same files even if you move it, as long as the
439 source files remain in the same place.  Absolute file names start with
440 @samp{/}, or with @samp{@var{device}:/} on MS-DOS and MS-Windows.
442   When you want to make a tags table from a great number of files, you
443 may have problems listing them on the command line, because some systems
444 have a limit on its length.  The simplest way to circumvent this limit
445 is to tell @code{etags} to read the file names from its standard input,
446 by typing a dash in place of the file names, like this:
448 @smallexample
449 find . -name "*.[chCH]" -print | etags -
450 @end smallexample
452   Use the option @samp{--language=@var{name}} to specify the language
453 explicitly.  You can intermix these options with file names; each one
454 applies to the file names that follow it.  Specify
455 @samp{--language=auto} to tell @code{etags} to resume guessing the
456 language from the file names and file contents.  Specify
457 @samp{--language=none} to turn off language-specific processing
458 entirely; then @code{etags} recognizes tags by regexp matching alone
459 (@pxref{Etags Regexps}).
461   The option @samp{--parse-stdin=@var{file}} is mostly useful when
462 calling @code{etags} from programs.  It can be used (only once) in
463 place of a file name on the command line.  @code{Etags} will read from
464 standard input and mark the produced tags as belonging to the file
465 @var{file}.
467   @samp{etags --help} prints the list of the languages @code{etags}
468 knows, and the file name rules for guessing the language.  It also prints
469 a list of all the available @code{etags} options, together with a short
470 explanation.
472 @node Etags Regexps
473 @subsection Etags Regexps
475   The @samp{--regex} option provides a general way of recognizing tags
476 based on regexp matching.  You can freely intermix it with file names.
477 Each @samp{--regex} option adds to the preceding ones, and applies only
478 to the following files.  The syntax is:
480 @smallexample
481 --regex=[@var{@{language@}}]/@var{tagregexp}/[@var{nameregexp}/]@var{modifiers}
482 @end smallexample
484 @noindent
485 or else:
487 @smallexample
488 --regex=@@@var{regexfile}
489 @end smallexample
491 @noindent
492 where @var{tagregexp} is a regular expression used to find the tags.
493 It is always
494 anchored, that is, it behaves as if preceded by @samp{^}.  If you want
495 to account for indentation, just match any initial number of blanks by
496 beginning your regular expression with @samp{[ \t]*}.  In the regular
497 expressions, @samp{\} quotes the next character, and all the
498 @code{gcc} character escape sequences are supported.  Here is the list
499 of the character escape sequences:
501 @table @samp
502 @item \a
503 BEL (bell).
504 @item \b
505 BS (back space).
506 @item \d
507 DEL (delete).
508 @item \e
509 ESC (delete).
510 @item \f
511 FF (form feed).
512 @item \n
513 NL (new line).
514 @item \r
515 CR (carriage return).
516 @item \t
517 TAB (horizontal tab).
518 @item \v
519 VT (vertical tab).
520 @end table
522 @noindent
523 The syntax of regular expressions in @code{etags} is the same as in
524 Emacs.
526   You should not match more characters with @var{tagregexp} than that
527 needed to recognize what you want to tag.  If the match is such that
528 more characters than needed are unavoidably matched by @var{tagregexp}
529 (as will sometimes be the case), you should add a @var{nameregexp}, to
530 pick out just the tag.  This will enable Emacs to find tags more
531 accurately and to do completion on tag names more reliably.  You can
532 find some examples below.
534   The suggested separator character used to delimit @var{tagregexp}
535 and @var{nameregex} is @samp{/}, as in the example above.  However,
536 you can use any other character as a separator, as long as it is
537 different from space, tab, braces or the @samp{@@} character.  If you
538 need to use the separator as part of the regular expression, you must
539 precede it by the @samp{\} character.
541   The @var{modifiers} are a sequence of 0 or more characters that
542 modify the way @code{etags} does the matching for that particular
543 @samp{--regex} option.  Without modifiers, the regular expression
544 is applied sequentially to each line of the input file, in
545 a case-sensitive way.  The modifiers and their meanings are:
547 @table @samp
548 @item i
549 ignore case when matching.
550 @item m
551 do not match line by line; rather, match this regular expression
552 against the whole file, so that multi-line matches are possible.
553 @item s
554 implies @samp{m}, and causes dots in @var{tagregexp} to match newlines
555 as well.
556 @end table
558   A @var{regexfile} is the name of a file where you can store the
559 arguments of @samp{--regex} options, one per line.  The syntax is the
560 same as the one used for the @samp{--regex} option, without the
561 initial @samp{--regex=} part.  @code{etags} ignores the lines that
562 begin with space or tab: you can use them to include comments in the
563 @var{regexfile}.
565   The @samp{-R} option deletes all the regexps defined with
566 @samp{--regex} options.  It applies to the file names following it, as
567 you can see from the following example:
569 @smallexample
570 etags --regex=/@var{reg1}/i voo.doo --regex=/@var{reg2}/m \
571     bar.ber -R --lang=lisp los.er
572 @end smallexample
574 @noindent
575 Here @code{etags} chooses the parsing language for @file{voo.doo} and
576 @file{bar.ber} according to their contents.  @code{etags} also uses
577 @var{reg1} to recognize additional tags in @file{voo.doo}, and both
578 @var{reg1} and @var{reg2} to recognize additional tags in
579 @file{bar.ber}.  @var{reg1} is checked against each line of
580 @file{voo.doo} and @file{bar.ber}, in a case-insensitive way, while
581 @var{reg2} is checked against the whole @file{bar.ber} file,
582 permitting multi-line matches, in a case-sensitive way.  @code{etags}
583 uses the Lisp tags rules, and no regexp matching, to recognize tags in
584 @file{los.er}.
586   You can restrict a @samp{--regex} option to match only files of a
587 given language by using the optional prefix @var{@{language@}}.
588 (@samp{etags --help} prints the list of languages recognized by
589 @code{etags}.)  This is particularly useful when storing many
590 predefined regular expressions for @code{etags} in a file.  The
591 following example tags the @code{DEFVAR} macros in the Emacs source
592 files, for the C language only:
594 @smallexample
595 --regex='@{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/'
596 @end smallexample
598 @noindent
599 This feature is particularly useful when you store a list of regular
600 expressions in a file.  The following option syntax instructs
601 @code{etags} to read two files of regular expressions.  The regular
602 expressions contained in the second file are matched without regard to
603 case.
605 @smallexample
606 --regex=@@first-file --ignore-case-regex=@@second-file
607 @end smallexample
609 @noindent
610 A regex file contains one regular expressions per line.  Empty lines,
611 and lines beginning with space or tab are ignored.  When the first
612 character in a line is @samp{@@}, @code{etags} assumes that the rest
613 of the line is the name of a file of regular expressions; thus, one
614 such file can include another file.  All the other lines are taken to
615 be regular expressions.  If the first non-whitespace text on the line
616 is @samp{--}, that line is a comment.
618   For example, one can create a file called @samp{emacs.tags} with the
619 following contents:
621 @smallexample
622         -- This is for GNU Emacs C source files
623 @{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/\1/
624 @end smallexample
626 @noindent
627 and then use it like this:
629 @smallexample
630 etags --regex=@@emacs.tags *.[ch] */*.[ch]
631 @end smallexample
633   Here are some more examples.  The regexps are quoted to protect them
634 from shell interpretation.
636 @itemize @bullet
638 @item
639 Tag Octave files:
641 @smallexample
642 etags --language=none \
643       --regex='/[ \t]*function.*=[ \t]*\([^ \t]*\)[ \t]*(/\1/' \
644       --regex='/###key \(.*\)/\1/' \
645       --regex='/[ \t]*global[ \t].*/' \
646       *.m
647 @end smallexample
649 @noindent
650 Note that tags are not generated for scripts, so that you have to add
651 a line by yourself of the form @samp{###key @var{scriptname}} if you
652 want to jump to it.
654 @item
655 Tag Tcl files:
657 @smallexample
658 etags --language=none --regex='/proc[ \t]+\([^ \t]+\)/\1/' *.tcl
659 @end smallexample
661 @item
662 Tag VHDL files:
664 @smallexample
665 etags --language=none \
666   --regex='/[ \t]*\(ARCHITECTURE\|CONFIGURATION\) +[^ ]* +OF/' \
667   --regex='/[ \t]*\(ATTRIBUTE\|ENTITY\|FUNCTION\|PACKAGE\
668   \( BODY\)?\|PROCEDURE\|PROCESS\|TYPE\)[ \t]+\([^ \t(]+\)/\3/'
669 @end smallexample
670 @end itemize
672 @node Select Tags Table
673 @subsection Selecting a Tags Table
675 @vindex tags-file-name
676 @findex visit-tags-table
677   Emacs has at any time one @dfn{selected} tags table, and all the commands
678 for working with tags tables use the selected one.  To select a tags table,
679 type @kbd{M-x visit-tags-table}, which reads the tags table file name as an
680 argument.  The name @file{TAGS} in the default directory is used as the
681 default file name.
683   All this command does is store the file name in the variable
684 @code{tags-file-name}.  Emacs does not actually read in the tags table
685 contents until you try to use them.  Setting this variable yourself is just
686 as good as using @code{visit-tags-table}.  The variable's initial value is
687 @code{nil}; that value tells all the commands for working with tags tables
688 that they must ask for a tags table file name to use.
690   Using @code{visit-tags-table} when a tags table is already loaded
691 gives you a choice: you can add the new tags table to the current list
692 of tags tables, or start a new list.  The tags commands use all the tags
693 tables in the current list.  If you start a new list, the new tags table
694 is used @emph{instead} of others.  If you add the new table to the
695 current list, it is used @emph{as well as} the others.  When the tags
696 commands scan the list of tags tables, they don't always start at the
697 beginning of the list; they start with the first tags table (if any)
698 that describes the current file, proceed from there to the end of the
699 list, and then scan from the beginning of the list until they have
700 covered all the tables in the list.
702 @vindex tags-table-list
703   You can specify a precise list of tags tables by setting the variable
704 @code{tags-table-list} to a list of strings, like this:
706 @c keep this on two lines for formatting in smallbook
707 @example
708 @group
709 (setq tags-table-list
710       '("~/emacs" "/usr/local/lib/emacs/src"))
711 @end group
712 @end example
714 @noindent
715 This tells the tags commands to look at the @file{TAGS} files in your
716 @file{~/emacs} directory and in the @file{/usr/local/lib/emacs/src}
717 directory.  The order depends on which file you are in and which tags
718 table mentions that file, as explained above.
720   Do not set both @code{tags-file-name} and @code{tags-table-list}.
722 @node Find Tag
723 @subsection Finding a Tag
725   The most important thing that a tags table enables you to do is to find
726 the definition of a specific tag.
728 @table @kbd
729 @item M-.@: @var{tag} @key{RET}
730 Find first definition of @var{tag} (@code{find-tag}).
731 @item C-u M-.
732 Find next alternate definition of last tag specified.
733 @item C-u - M-.
734 Go back to previous tag found.
735 @item C-M-. @var{pattern} @key{RET}
736 Find a tag whose name matches @var{pattern} (@code{find-tag-regexp}).
737 @item C-u C-M-.
738 Find the next tag whose name matches the last pattern used.
739 @item C-x 4 .@: @var{tag} @key{RET}
740 Find first definition of @var{tag}, but display it in another window
741 (@code{find-tag-other-window}).
742 @item C-x 5 .@: @var{tag} @key{RET}
743 Find first definition of @var{tag}, and create a new frame to select the
744 buffer (@code{find-tag-other-frame}).
745 @item M-*
746 Pop back to where you previously invoked @kbd{M-.} and friends.
747 @end table
749 @kindex M-.
750 @findex find-tag
751   @kbd{M-.}@: (@code{find-tag}) is the command to find the definition of
752 a specified tag.  It searches through the tags table for that tag, as a
753 string, and then uses the tags table info to determine the file that the
754 definition is in and the approximate character position in the file of
755 the definition.  Then @code{find-tag} visits that file, moves point to
756 the approximate character position, and searches ever-increasing
757 distances away to find the tag definition.
759   If an empty argument is given (just type @key{RET}), the balanced
760 expression in the buffer before or around point is used as the
761 @var{tag} argument.  @xref{Expressions}.
763   You don't need to give @kbd{M-.} the full name of the tag; a part
764 will do.  This is because @kbd{M-.} finds tags in the table which
765 contain @var{tag} as a substring.  However, it prefers an exact match
766 to a substring match.  To find other tags that match the same
767 substring, give @code{find-tag} a numeric argument, as in @kbd{C-u
768 M-.}; this does not read a tag name, but continues searching the tags
769 table's text for another tag containing the same substring last used.
770 If you have a real @key{META} key, @kbd{M-0 M-.}@: is an easier
771 alternative to @kbd{C-u M-.}.
773 @kindex C-x 4 .
774 @findex find-tag-other-window
775 @kindex C-x 5 .
776 @findex find-tag-other-frame
777   Like most commands that can switch buffers, @code{find-tag} has a
778 variant that displays the new buffer in another window, and one that
779 makes a new frame for it.  The former is @kbd{C-x 4 .}, which invokes
780 the command @code{find-tag-other-window}.  The latter is @kbd{C-x 5 .},
781 which invokes @code{find-tag-other-frame}.
783   To move back to places you've found tags recently, use @kbd{C-u -
784 M-.}; more generally, @kbd{M-.} with a negative numeric argument.  This
785 command can take you to another buffer.  @kbd{C-x 4 .} with a negative
786 argument finds the previous tag location in another window.
788 @kindex M-*
789 @findex pop-tag-mark
790 @vindex find-tag-marker-ring-length
791   As well as going back to places you've found tags recently, you can go
792 back to places @emph{from where} you found them.  Use @kbd{M-*}, which
793 invokes the command @code{pop-tag-mark}, for this.  Typically you would
794 find and study the definition of something with @kbd{M-.} and then
795 return to where you were with @kbd{M-*}.
797   Both @kbd{C-u - M-.} and @kbd{M-*} allow you to retrace your steps to
798 a depth determined by the variable @code{find-tag-marker-ring-length}.
800 @findex find-tag-regexp
801 @kindex C-M-.
802   The command @kbd{C-M-.} (@code{find-tag-regexp}) visits the tags that
803 match a specified regular expression.  It is just like @kbd{M-.} except
804 that it does regexp matching instead of substring matching.
806 @node Tags Search
807 @subsection Searching and Replacing with Tags Tables
808 @cindex search and replace in multiple files
809 @cindex multiple-file search and replace
811   The commands in this section visit and search all the files listed in the
812 selected tags table, one by one.  For these commands, the tags table serves
813 only to specify a sequence of files to search.
815 @table @kbd
816 @item M-x tags-search @key{RET} @var{regexp} @key{RET}
817 Search for @var{regexp} through the files in the selected tags
818 table.
819 @item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET}
820 Perform a @code{query-replace-regexp} on each file in the selected tags table.
821 @item M-,
822 Restart one of the commands above, from the current location of point
823 (@code{tags-loop-continue}).
824 @end table
826 @findex tags-search
827   @kbd{M-x tags-search} reads a regexp using the minibuffer, then
828 searches for matches in all the files in the selected tags table, one
829 file at a time.  It displays the name of the file being searched so you
830 can follow its progress.  As soon as it finds an occurrence,
831 @code{tags-search} returns.
833 @kindex M-,
834 @findex tags-loop-continue
835   Having found one match, you probably want to find all the rest.  To find
836 one more match, type @kbd{M-,} (@code{tags-loop-continue}) to resume the
837 @code{tags-search}.  This searches the rest of the current buffer, followed
838 by the remaining files of the tags table.@refill
840 @findex tags-query-replace
841   @kbd{M-x tags-query-replace} performs a single
842 @code{query-replace-regexp} through all the files in the tags table.  It
843 reads a regexp to search for and a string to replace with, just like
844 ordinary @kbd{M-x query-replace-regexp}.  It searches much like @kbd{M-x
845 tags-search}, but repeatedly, processing matches according to your
846 input.  @xref{Replace}, for more information on query replace.
848 @vindex tags-case-fold-search
849 @cindex case-sensitivity and tags search
850   You can control the case-sensitivity of tags search commands by
851 customizing the value of the variable @code{tags-case-fold-search}.  The
852 default is to use the same setting as the value of
853 @code{case-fold-search} (@pxref{Search Case}).
855   It is possible to get through all the files in the tags table with a
856 single invocation of @kbd{M-x tags-query-replace}.  But often it is
857 useful to exit temporarily, which you can do with any input event that
858 has no special query replace meaning.  You can resume the query replace
859 subsequently by typing @kbd{M-,}; this command resumes the last tags
860 search or replace command that you did.
862   The commands in this section carry out much broader searches than the
863 @code{find-tag} family.  The @code{find-tag} commands search only for
864 definitions of tags that match your substring or regexp.  The commands
865 @code{tags-search} and @code{tags-query-replace} find every occurrence
866 of the regexp, as ordinary search commands and replace commands do in
867 the current buffer.
869   These commands create buffers only temporarily for the files that they
870 have to search (those which are not already visited in Emacs buffers).
871 Buffers in which no match is found are quickly killed; the others
872 continue to exist.
874   It may have struck you that @code{tags-search} is a lot like
875 @code{grep}.  You can also run @code{grep} itself as an inferior of
876 Emacs and have Emacs show you the matching lines one by one.  This works
877 much like running a compilation; finding the source locations of the
878 @code{grep} matches works like finding the compilation errors.
879 @xref{Compilation}.
881 @node List Tags
882 @subsection Tags Table Inquiries
884 @table @kbd
885 @item M-x list-tags @key{RET} @var{file} @key{RET}
886 Display a list of the tags defined in the program file @var{file}.
887 @item M-x tags-apropos @key{RET} @var{regexp} @key{RET}
888 Display a list of all tags matching @var{regexp}.
889 @end table
891 @findex list-tags
892   @kbd{M-x list-tags} reads the name of one of the files described by
893 the selected tags table, and displays a list of all the tags defined in
894 that file.  The ``file name'' argument is really just a string to
895 compare against the file names recorded in the tags table; it is read as
896 a string rather than as a file name.  Therefore, completion and
897 defaulting are not available, and you must enter the file name the same
898 way it appears in the tags table.  Do not include a directory as part of
899 the file name unless the file name recorded in the tags table includes a
900 directory.
902 @findex tags-apropos
903 @vindex tags-apropos-verbose
904   @kbd{M-x tags-apropos} is like @code{apropos} for tags
905 (@pxref{Apropos}).  It finds all the tags in the selected tags table
906 whose entries match @var{regexp}, and displays them.  If the variable
907 @code{tags-apropos-verbose} is non-@code{nil}, it displays the names
908 of the tags files together with the tag names.
910 @vindex tags-tag-face
911 @vindex tags-apropos-additional-actions
912 You can customize the appearance of the output with the face
913 @code{tags-tag-face}.  You can display additional output with @kbd{M-x
914 tags-apropos} by customizing the variable
915 @code{tags-apropos-additional-actions}---see its documentation for
916 details.
918   You can also use the collection of tag names to complete a symbol
919 name in the buffer.  @xref{Symbol Completion}.
921 @node Emerge
922 @section Merging Files with Emerge
923 @cindex Emerge
924 @cindex merging files
926 It's not unusual for programmers to get their signals crossed and modify
927 the same program in two different directions.  To recover from this
928 confusion, you need to merge the two versions.  Emerge makes this
929 easier.  See also @ref{Comparing Files}, for commands to compare
930 in a more manual fashion, and @ref{Top, Ediff,, ediff, The Ediff Manual}.
932 @menu
933 * Overview of Emerge::  How to start Emerge.  Basic concepts.
934 * Submodes of Emerge::  Fast mode vs. Edit mode.
935                           Skip Prefers mode and Auto Advance mode.
936 * State of Difference:: You do the merge by specifying state A or B
937                           for each difference.
938 * Merge Commands::      Commands for selecting a difference,
939                           changing states of differences, etc.
940 * Exiting Emerge::      What to do when you've finished the merge.
941 * Combining in Emerge::     How to keep both alternatives for a difference.
942 * Fine Points of Emerge::   Misc.
943 @end menu
945 @node Overview of Emerge
946 @subsection Overview of Emerge
948 To start Emerge, run one of these four commands:
950 @table @kbd
951 @item M-x emerge-files
952 @findex emerge-files
953 Merge two specified files.
955 @item M-x emerge-files-with-ancestor
956 @findex emerge-files-with-ancestor
957 Merge two specified files, with reference to a common ancestor.
959 @item M-x emerge-buffers
960 @findex emerge-buffers
961 Merge two buffers.
963 @item M-x emerge-buffers-with-ancestor
964 @findex emerge-buffers-with-ancestor
965 Merge two buffers with reference to a common ancestor in a third
966 buffer.
967 @end table
969 @cindex merge buffer (Emerge)
970 @cindex A and B buffers (Emerge)
971   The Emerge commands compare two files or buffers, and display the
972 comparison in three buffers: one for each input text (the @dfn{A buffer}
973 and the @dfn{B buffer}), and one (the @dfn{merge buffer}) where merging
974 takes place.  The merge buffer shows the full merged text, not just the
975 differences.  Wherever the two input texts differ, you can choose which
976 one of them to include in the merge buffer.
978   The Emerge commands that take input from existing buffers use only the
979 accessible portions of those buffers, if they are narrowed
980 (@pxref{Narrowing}).
982   If a common ancestor version is available, from which the two texts to
983 be merged were both derived, Emerge can use it to guess which
984 alternative is right.  Wherever one current version agrees with the
985 ancestor, Emerge presumes that the other current version is a deliberate
986 change which should be kept in the merged version.  Use the
987 @samp{with-ancestor} commands if you want to specify a common ancestor
988 text.  These commands read three file or buffer names---variant A,
989 variant B, and the common ancestor.
991   After the comparison is done and the buffers are prepared, the
992 interactive merging starts.  You control the merging by typing special
993 @dfn{merge commands} in the merge buffer.  The merge buffer shows you a
994 full merged text, not just differences.  For each run of differences
995 between the input texts, you can choose which one of them to keep, or
996 edit them both together.
998   The merge buffer uses a special major mode, Emerge mode, with commands
999 for making these choices.  But you can also edit the buffer with
1000 ordinary Emacs commands.
1002   At any given time, the attention of Emerge is focused on one
1003 particular difference, called the @dfn{selected} difference.  This
1004 difference is marked off in the three buffers like this:
1006 @example
1007 vvvvvvvvvvvvvvvvvvvv
1008 @var{text that differs}
1009 ^^^^^^^^^^^^^^^^^^^^
1010 @end example
1012 @noindent
1013 Emerge numbers all the differences sequentially and the mode
1014 line always shows the number of the selected difference.
1016   Normally, the merge buffer starts out with the A version of the text.
1017 But when the A version of a difference agrees with the common ancestor,
1018 then the B version is initially preferred for that difference.
1020   Emerge leaves the merged text in the merge buffer when you exit.  At
1021 that point, you can save it in a file with @kbd{C-x C-w}.  If you give a
1022 numeric argument to @code{emerge-files} or
1023 @code{emerge-files-with-ancestor}, it reads the name of the output file
1024 using the minibuffer.  (This is the last file name those commands read.)
1025 Then exiting from Emerge saves the merged text in the output file.
1027   Normally, Emerge commands save the output buffer in its file when you
1028 exit.  If you abort Emerge with @kbd{C-]}, the Emerge command does not
1029 save the output buffer, but you can save it yourself if you wish.
1031 @node Submodes of Emerge
1032 @subsection Submodes of Emerge
1034   You can choose between two modes for giving merge commands: Fast mode
1035 and Edit mode.  In Fast mode, basic merge commands are single
1036 characters, but ordinary Emacs commands are disabled.  This is
1037 convenient if you use only merge commands.  In Edit mode, all merge
1038 commands start with the prefix key @kbd{C-c C-c}, and the normal Emacs
1039 commands are also available.  This allows editing the merge buffer, but
1040 slows down Emerge operations.
1042   Use @kbd{e} to switch to Edit mode, and @kbd{C-c C-c f} to switch to
1043 Fast mode.  The mode line indicates Edit and Fast modes with @samp{E}
1044 and @samp{F}.
1046   Emerge has two additional submodes that affect how particular merge
1047 commands work: Auto Advance mode and Skip Prefers mode.
1049   If Auto Advance mode is in effect, the @kbd{a} and @kbd{b} commands
1050 advance to the next difference.  This lets you go through the merge
1051 faster as long as you simply choose one of the alternatives from the
1052 input.  The mode line indicates Auto Advance mode with @samp{A}.
1054   If Skip Prefers mode is in effect, the @kbd{n} and @kbd{p} commands
1055 skip over differences in states prefer-A and prefer-B (@pxref{State of
1056 Difference}).  Thus you see only differences for which neither version
1057 is presumed ``correct.''  The mode line indicates Skip Prefers mode with
1058 @samp{S}.
1060 @findex emerge-auto-advance-mode
1061 @findex emerge-skip-prefers-mode
1062   Use the command @kbd{s a} (@code{emerge-auto-advance-mode}) to set or
1063 clear Auto Advance mode.  Use @kbd{s s}
1064 (@code{emerge-skip-prefers-mode}) to set or clear Skip Prefers mode.
1065 These commands turn on the mode with a positive argument, turns it off
1066 with a negative or zero argument, and toggle the mode with no argument.
1068 @node State of Difference
1069 @subsection State of a Difference
1071   In the merge buffer, a difference is marked with lines of @samp{v} and
1072 @samp{^} characters.  Each difference has one of these seven states:
1074 @table @asis
1075 @item A
1076 The difference is showing the A version.  The @kbd{a} command always
1077 produces this state; the mode line indicates it with @samp{A}.
1079 @item B
1080 The difference is showing the B version.  The @kbd{b} command always
1081 produces this state; the mode line indicates it with @samp{B}.
1083 @item default-A
1084 @itemx default-B
1085 The difference is showing the A or the B state by default, because you
1086 haven't made a choice.  All differences start in the default-A state
1087 (and thus the merge buffer is a copy of the A buffer), except those for
1088 which one alternative is ``preferred'' (see below).
1090 When you select a difference, its state changes from default-A or
1091 default-B to plain A or B.  Thus, the selected difference never has
1092 state default-A or default-B, and these states are never displayed in
1093 the mode line.
1095 The command @kbd{d a} chooses default-A as the default state, and @kbd{d
1096 b} chooses default-B.  This chosen default applies to all differences
1097 which you haven't ever selected and for which no alternative is preferred.
1098 If you are moving through the merge sequentially, the differences you
1099 haven't selected are those following the selected one.  Thus, while
1100 moving sequentially, you can effectively make the A version the default
1101 for some sections of the merge buffer and the B version the default for
1102 others by using @kbd{d a} and @kbd{d b} between sections.
1104 @item prefer-A
1105 @itemx prefer-B
1106 The difference is showing the A or B state because it is
1107 @dfn{preferred}.  This means that you haven't made an explicit choice,
1108 but one alternative seems likely to be right because the other
1109 alternative agrees with the common ancestor.  Thus, where the A buffer
1110 agrees with the common ancestor, the B version is preferred, because
1111 chances are it is the one that was actually changed.
1113 These two states are displayed in the mode line as @samp{A*} and @samp{B*}.
1115 @item combined
1116 The difference is showing a combination of the A and B states, as a
1117 result of the @kbd{x c} or @kbd{x C} commands.
1119 Once a difference is in this state, the @kbd{a} and @kbd{b} commands
1120 don't do anything to it unless you give them a numeric argument.
1122 The mode line displays this state as @samp{comb}.
1123 @end table
1125 @node Merge Commands
1126 @subsection Merge Commands
1128   Here are the Merge commands for Fast mode; in Edit mode, precede them
1129 with @kbd{C-c C-c}:
1131 @table @kbd
1132 @item p
1133 Select the previous difference.
1135 @item n
1136 Select the next difference.
1138 @item a
1139 Choose the A version of this difference.
1141 @item b
1142 Choose the B version of this difference.
1144 @item C-u @var{n} j
1145 Select difference number @var{n}.
1147 @item .
1148 Select the difference containing point.  You can use this command in the
1149 merge buffer or in the A or B buffer.
1151 @item q
1152 Quit---finish the merge.
1154 @item C-]
1155 Abort---exit merging and do not save the output.
1157 @item f
1158 Go into Fast mode.  (In Edit mode, this is actually @kbd{C-c C-c f}.)
1160 @item e
1161 Go into Edit mode.
1163 @item l
1164 Recenter (like @kbd{C-l}) all three windows.
1166 @item -
1167 Specify part of a prefix numeric argument.
1169 @item @var{digit}
1170 Also specify part of a prefix numeric argument.
1172 @item d a
1173 Choose the A version as the default from here down in
1174 the merge buffer.
1176 @item d b
1177 Choose the B version as the default from here down in
1178 the merge buffer.
1180 @item c a
1181 Copy the A version of this difference into the kill ring.
1183 @item c b
1184 Copy the B version of this difference into the kill ring.
1186 @item i a
1187 Insert the A version of this difference at point.
1189 @item i b
1190 Insert the B version of this difference at point.
1192 @item m
1193 Put point and mark around the difference.
1195 @item ^
1196 Scroll all three windows down (like @kbd{M-v}).
1198 @item v
1199 Scroll all three windows up (like @kbd{C-v}).
1201 @item <
1202 Scroll all three windows left (like @kbd{C-x <}).
1204 @item >
1205 Scroll all three windows right (like @kbd{C-x >}).
1207 @item |
1208 Reset horizontal scroll on all three windows.
1210 @item x 1
1211 Shrink the merge window to one line.  (Use @kbd{C-u l} to restore it
1212 to full size.)
1214 @item x c
1215 Combine the two versions of this difference (@pxref{Combining in
1216 Emerge}).
1218 @item x f
1219 Show the names of the files/buffers Emerge is operating on, in a Help
1220 window.  (Use @kbd{C-u l} to restore windows.)
1222 @item x j
1223 Join this difference with the following one.
1224 (@kbd{C-u x j} joins this difference with the previous one.)
1226 @item x s
1227 Split this difference into two differences.  Before you use this
1228 command, position point in each of the three buffers at the place where
1229 you want to split the difference.
1231 @item x t
1232 Trim identical lines off the top and bottom of the difference.
1233 Such lines occur when the A and B versions are
1234 identical but differ from the ancestor version.
1235 @end table
1237 @node Exiting Emerge
1238 @subsection Exiting Emerge
1240   The @kbd{q} command (@code{emerge-quit}) finishes the merge, storing
1241 the results into the output file if you specified one.  It restores the
1242 A and B buffers to their proper contents, or kills them if they were
1243 created by Emerge and you haven't changed them.  It also disables the
1244 Emerge commands in the merge buffer, since executing them later could
1245 damage the contents of the various buffers.
1247   @kbd{C-]} aborts the merge.  This means exiting without writing the
1248 output file.  If you didn't specify an output file, then there is no
1249 real difference between aborting and finishing the merge.
1251   If the Emerge command was called from another Lisp program, then its
1252 return value is @code{t} for successful completion, or @code{nil} if you
1253 abort.
1255 @node Combining in Emerge
1256 @subsection Combining the Two Versions
1258   Sometimes you want to keep @emph{both} alternatives for a particular
1259 difference.  To do this, use @kbd{x c}, which edits the merge buffer
1260 like this:
1262 @example
1263 @group
1264 #ifdef NEW
1265 @var{version from A buffer}
1266 #else /* not NEW */
1267 @var{version from B buffer}
1268 #endif /* not NEW */
1269 @end group
1270 @end example
1272 @noindent
1273 @vindex emerge-combine-versions-template
1274 While this example shows C preprocessor conditionals delimiting the two
1275 alternative versions, you can specify the strings to use by setting
1276 the variable @code{emerge-combine-versions-template} to a string of your
1277 choice.  In the string, @samp{%a} says where to put version A, and
1278 @samp{%b} says where to put version B.  The default setting, which
1279 produces the results shown above, looks like this:
1281 @example
1282 @group
1283 "#ifdef NEW\n%a#else /* not NEW */\n%b#endif /* not NEW */\n"
1284 @end group
1285 @end example
1287 @node Fine Points of Emerge
1288 @subsection Fine Points of Emerge
1290   During the merge, you mustn't try to edit the A and B buffers yourself.
1291 Emerge modifies them temporarily, but ultimately puts them back the way
1292 they were.
1294   You can have any number of merges going at once---just don't use any one
1295 buffer as input to more than one merge at once, since the temporary
1296 changes made in these buffers would get in each other's way.
1298   Starting Emerge can take a long time because it needs to compare the
1299 files fully.  Emacs can't do anything else until @code{diff} finishes.
1300 Perhaps in the future someone will change Emerge to do the comparison in
1301 the background when the input files are large---then you could keep on
1302 doing other things with Emacs until Emerge is ready to accept
1303 commands.
1305 @vindex emerge-startup-hook
1306   After setting up the merge, Emerge runs the hook
1307 @code{emerge-startup-hook} (@pxref{Hooks}).