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