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