]> code.delx.au - gnu-emacs/blob - man/maintaining.texi
** gotoh@taiyo.co.jp, Nov 8: url-gw.el: Cannot use proxy with url-gw\.el 2006-10...
[gnu-emacs] / man / maintaining.texi
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1999, 2000,
3 @c 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Maintaining, Abbrevs, Building, Top
6 @chapter Maintaining Large Programs
7
8 This chapter describes Emacs features for maintaining large
9 programs. The version control features (@pxref{Version Control}) are
10 also particularly useful for this purpose.
11
12 @menu
13 * Change Log:: Maintaining a change history for your program.
14 * Format of ChangeLog:: What the change log file looks like.
15 * Tags:: Go direct to any function in your program in one
16 command. Tags remembers which file it is in.
17 @ifnottex
18 * Emerge:: A convenient way of merging two versions of a program.
19 @end ifnottex
20 @end menu
21
22 @node Change Log
23 @section Change Logs
24
25 A change log file contains a chronological record of when and why you
26 have changed a program, consisting of a sequence of entries describing
27 individual changes. Normally it is kept in a file called
28 @file{ChangeLog} in the same directory as the file you are editing, or
29 one of its parent directories. A single @file{ChangeLog} file can
30 record changes for all the files in its directory and all its
31 subdirectories.
32
33 @cindex change log
34 @kindex C-x 4 a
35 @findex add-change-log-entry-other-window
36 The Emacs command @kbd{C-x 4 a} adds a new entry to the change log
37 file for the file you are editing
38 (@code{add-change-log-entry-other-window}). If that file is actually
39 a backup file, it makes an entry appropriate for the file's
40 parent---that is useful for making log entries for functions that
41 have been deleted in the current version.
42
43 @kbd{C-x 4 a} visits the change log file and creates a new entry
44 unless the most recent entry is for today's date and your name. It
45 also creates a new item for the current file. For many languages, it
46 can even guess the name of the function or other object that was
47 changed.
48
49 @vindex add-log-keep-changes-together
50 When the variable @code{add-log-keep-changes-together} is
51 non-@code{nil}, @kbd{C-x 4 a} adds to any existing item for the file
52 rather than starting a new item.
53
54 @vindex add-log-always-start-new-record
55 If @code{add-log-always-start-new-record} is non-@code{nil},
56 @kbd{C-x 4 a} always makes a new entry, even if the last entry
57 was made by you and on the same date.
58
59 @vindex change-log-version-info-enabled
60 @vindex change-log-version-number-regexp-list
61 @cindex file version in change log entries
62 If the value of the variable @code{change-log-version-info-enabled}
63 is non-@code{nil}, @kbd{C-x 4 a} adds the file's version number to the
64 change log entry. It finds the version number by searching the first
65 ten percent of the file, using regular expressions from the variable
66 @code{change-log-version-number-regexp-list}.
67
68 @cindex Change Log mode
69 @findex change-log-mode
70 The change log file is visited in Change Log mode. In this major
71 mode, each bunch of grouped items counts as one paragraph, and each
72 entry is considered a page. This facilitates editing the entries.
73 @kbd{C-j} and auto-fill indent each new line like the previous line;
74 this is convenient for entering the contents of an entry.
75
76 @findex change-log-merge
77 You can use the command @kbd{M-x change-log-merge} to merge other
78 log files into a buffer in Change Log Mode, preserving the date
79 ordering of entries.
80
81 Version control systems are another way to keep track of changes in your
82 program and keep a change log. @xref{Log Buffer}.
83
84 @node Format of ChangeLog
85 @section Format of ChangeLog
86
87 A change log entry starts with a header line that contains the current
88 date, your name, and your email address (taken from the variable
89 @code{add-log-mailing-address}). Aside from these header lines, every
90 line in the change log starts with a space or a tab. The bulk of the
91 entry consists of @dfn{items}, each of which starts with a line starting
92 with whitespace and a star. Here are two entries, both dated in May
93 1993, with two items and one item respectively.
94
95 @iftex
96 @medbreak
97 @end iftex
98 @smallexample
99 1993-05-25 Richard Stallman <rms@@gnu.org>
100
101 * man.el: Rename symbols `man-*' to `Man-*'.
102 (manual-entry): Make prompt string clearer.
103
104 * simple.el (blink-matching-paren-distance):
105 Change default to 12,000.
106
107 1993-05-24 Richard Stallman <rms@@gnu.org>
108
109 * vc.el (minor-mode-map-alist): Don't use it if it's void.
110 (vc-cancel-version): Doc fix.
111 @end smallexample
112
113 One entry can describe several changes; each change should have its
114 own item, or its own line in an item. Normally there should be a
115 blank line between items. When items are related (parts of the same
116 change, in different places), group them by leaving no blank line
117 between them.
118
119 You should put a copyright notice and permission notice at the
120 end of the change log file. Here is an example:
121
122 @smallexample
123 Copyright 1997, 1998 Free Software Foundation, Inc.
124 Copying and distribution of this file, with or without modification, are
125 permitted provided the copyright notice and this notice are preserved.
126 @end smallexample
127
128 @noindent
129 Of course, you should substitute the proper years and copyright holder.
130
131 @node Tags
132 @section Tags Tables
133 @cindex tags table
134
135 A @dfn{tags table} is a description of how a multi-file program is
136 broken up into files. It lists the names of the component files and the
137 names and positions of the functions (or other named subunits) in each
138 file. Grouping the related files makes it possible to search or replace
139 through all the files with one command. Recording the function names
140 and positions makes possible the @kbd{M-.} command which finds the
141 definition of a function by looking up which of the files it is in.
142
143 Tags tables are stored in files called @dfn{tags table files}. The
144 conventional name for a tags table file is @file{TAGS}.
145
146 Each entry in the tags table records the name of one tag, the name of the
147 file that the tag is defined in (implicitly), and the position in that
148 file of the tag's definition. When a file parsed by @code{etags} is
149 generated from a different source file, like a C file generated from a
150 Cweb source file, the tags of the parsed file reference the source
151 file.
152
153 Just what names from the described files are recorded in the tags table
154 depends on the programming language of the described file. They
155 normally include all file names, functions and subroutines, and may
156 also include global variables, data types, and anything else
157 convenient. Each name recorded is called a @dfn{tag}.
158
159 @cindex C++ class browser, tags
160 @cindex tags, C++
161 @cindex class browser, C++
162 @cindex Ebrowse
163 See also the Ebrowse facility, which is tailored for C++.
164 @xref{Top,, Ebrowse, ebrowse, Ebrowse User's Manual}.
165
166 @menu
167 * Tag Syntax:: Tag syntax for various types of code and text files.
168 * Create Tags Table:: Creating a tags table with @code{etags}.
169 * Etags Regexps:: Create arbitrary tags using regular expressions.
170 * Select Tags Table:: How to visit a tags table.
171 * Find Tag:: Commands to find the definition of a specific tag.
172 * Tags Search:: Using a tags table for searching and replacing.
173 * List Tags:: Listing and finding tags defined in a file.
174 @end menu
175
176 @node Tag Syntax
177 @subsection Source File Tag Syntax
178
179 Here is how tag syntax is defined for the most popular languages:
180
181 @itemize @bullet
182 @item
183 In C code, any C function or typedef is a tag, and so are definitions of
184 @code{struct}, @code{union} and @code{enum}.
185 @code{#define} macro definitions, @code{#undef} and @code{enum}
186 constants are also
187 tags, unless you specify @samp{--no-defines} when making the tags table.
188 Similarly, global variables are tags, unless you specify
189 @samp{--no-globals}. Use of @samp{--no-globals} and @samp{--no-defines}
190 can make the tags table file much smaller.
191
192 You can tag function declarations and external variables in addition
193 to function definitions by giving the @samp{--declarations} option to
194 @code{etags}. You can tag struct members with the @samp{--members}
195 option.
196
197 @item
198 In C++ code, in addition to all the tag constructs of C code, member
199 functions are also recognized, and optionally member variables if you
200 use the @samp{--members} option. Tags for variables and functions in
201 classes are named @samp{@var{class}::@var{variable}} and
202 @samp{@var{class}::@var{function}}. @code{operator} definitions have
203 tag names like @samp{operator+}.
204
205 @item
206 In Java code, tags include all the constructs recognized in C++, plus
207 the @code{interface}, @code{extends} and @code{implements} constructs.
208 Tags for variables and functions in classes are named
209 @samp{@var{class}.@var{variable}} and @samp{@var{class}.@var{function}}.
210
211 @item
212 In La@TeX{} text, the argument of any of the commands @code{\chapter},
213 @code{\section}, @code{\subsection}, @code{\subsubsection},
214 @code{\eqno}, @code{\label}, @code{\ref}, @code{\cite},
215 @code{\bibitem}, @code{\part}, @code{\appendix}, @code{\entry},
216 @code{\index}, @code{\def}, @code{\newcommand}, @code{\renewcommand},
217 @code{\newenvironment} or @code{\renewenvironment} is a tag.@refill
218
219 Other commands can make tags as well, if you specify them in the
220 environment variable @env{TEXTAGS} before invoking @code{etags}. The
221 value of this environment variable should be a colon-separated list of
222 command names. For example,
223
224 @example
225 TEXTAGS="mycommand:myothercommand"
226 export TEXTAGS
227 @end example
228
229 @noindent
230 specifies (using Bourne shell syntax) that the commands
231 @samp{\mycommand} and @samp{\myothercommand} also define tags.
232
233 @item
234 In Lisp code, any function defined with @code{defun}, any variable
235 defined with @code{defvar} or @code{defconst}, and in general the first
236 argument of any expression that starts with @samp{(def} in column zero is
237 a tag.
238
239 @item
240 In Scheme code, tags include anything defined with @code{def} or with a
241 construct whose name starts with @samp{def}. They also include variables
242 set with @code{set!} at top level in the file.
243 @end itemize
244
245 Several other languages are also supported:
246
247 @itemize @bullet
248
249 @item
250 In Ada code, functions, procedures, packages, tasks and types are
251 tags. Use the @samp{--packages-only} option to create tags for
252 packages only.
253
254 In Ada, the same name can be used for different kinds of entity
255 (e.g.@:, for a procedure and for a function). Also, for things like
256 packages, procedures and functions, there is the spec (i.e.@: the
257 interface) and the body (i.e.@: the implementation). To make it
258 easier to pick the definition you want, Ada tag name have suffixes
259 indicating the type of entity:
260
261 @table @samp
262 @item /b
263 package body.
264 @item /f
265 function.
266 @item /k
267 task.
268 @item /p
269 procedure.
270 @item /s
271 package spec.
272 @item /t
273 type.
274 @end table
275
276 Thus, @kbd{M-x find-tag @key{RET} bidule/b @key{RET}} will go
277 directly to the body of the package @code{bidule}, while @kbd{M-x
278 find-tag @key{RET} bidule @key{RET}} will just search for any tag
279 @code{bidule}.
280
281 @item
282 In assembler code, labels appearing at the beginning of a line,
283 followed by a colon, are tags.
284
285 @item
286 In Bison or Yacc input files, each rule defines as a tag the nonterminal
287 it constructs. The portions of the file that contain C code are parsed
288 as C code.
289
290 @item
291 In Cobol code, tags are paragraph names; that is, any word starting in
292 column 8 and followed by a period.
293
294 @item
295 In Erlang code, the tags are the functions, records and macros defined
296 in the file.
297
298 @item
299 In Fortran code, functions, subroutines and block data are tags.
300
301 @item
302 In HTML input files, the tags are the @code{title} and the @code{h1},
303 @code{h2}, @code{h3} headers. Also, tags are @code{name=} in anchors
304 and all occurrences of @code{id=}.
305
306 @item
307 In Lua input files, all functions are tags.
308
309 @item
310 In makefiles, targets are tags; additionally, variables are tags
311 unless you specify @samp{--no-globals}.
312
313 @item
314 In Objective C code, tags include Objective C definitions for classes,
315 class categories, methods and protocols. Tags for variables and
316 functions in classes are named @samp{@var{class}::@var{variable}} and
317 @samp{@var{class}::@var{function}}.
318
319 @item
320 In Pascal code, the tags are the functions and procedures defined in
321 the file.
322
323 @item
324 In Perl code, the tags are the packages, subroutines and variables
325 defined by the @code{package}, @code{sub}, @code{my} and @code{local}
326 keywords. Use @samp{--globals} if you want to tag global variables.
327 Tags for subroutines are named @samp{@var{package}::@var{sub}}. The
328 name for subroutines defined in the default package is
329 @samp{main::@var{sub}}.
330
331 @item
332 In PHP code, tags are functions, classes and defines. When using the
333 @samp{--members} option, vars are tags too.
334
335 @item
336 In PostScript code, the tags are the functions.
337
338 @item
339 In Prolog code, tags are predicates and rules at the beginning of
340 line.
341
342 @item
343 In Python code, @code{def} or @code{class} at the beginning of a line
344 generate a tag.
345 @end itemize
346
347 You can also generate tags based on regexp matching (@pxref{Etags
348 Regexps}) to handle other formats and languages.
349
350 @node Create Tags Table
351 @subsection Creating Tags Tables
352 @cindex @code{etags} program
353
354 The @code{etags} program is used to create a tags table file. It knows
355 the syntax of several languages, as described in
356 @iftex
357 the previous section.
358 @end iftex
359 @ifnottex
360 @ref{Tag Syntax}.
361 @end ifnottex
362 Here is how to run @code{etags}:
363
364 @example
365 etags @var{inputfiles}@dots{}
366 @end example
367
368 @noindent
369 The @code{etags} program reads the specified files, and writes a tags
370 table named @file{TAGS} in the current working directory.
371
372 If the specified files don't exist, @code{etags} looks for
373 compressed versions of them and uncompresses them to read them. Under
374 MS-DOS, @code{etags} also looks for file names like @file{mycode.cgz}
375 if it is given @samp{mycode.c} on the command line and @file{mycode.c}
376 does not exist.
377
378 @code{etags} recognizes the language used in an input file based on
379 its file name and contents. You can specify the language with the
380 @samp{--language=@var{name}} option, described below.
381
382 If the tags table data become outdated due to changes in the files
383 described in the table, the way to update the tags table is the same
384 way it was made in the first place. If the tags table fails to record
385 a tag, or records it for the wrong file, then Emacs cannot possibly
386 find its definition until you update the tags table. However, if the
387 position recorded in the tags table becomes a little bit wrong (due to
388 other editing), the worst consequence is a slight delay in finding the
389 tag. Even if the stored position is very far wrong, Emacs will still
390 find the tag, after searching most of the file for it. That delay is
391 hardly noticeable with today's computers.
392
393 Thus, there is no need to update the tags table after each edit.
394 You should update a tags table when you define new tags that you want
395 to have listed, or when you move tag definitions from one file to
396 another, or when changes become substantial.
397
398 One tags table can virtually include another. Specify the included
399 tags file name with the @samp{--include=@var{file}} option when
400 creating the file that is to include it. The latter file then acts as
401 if it covered all the source files specified in the included file, as
402 well as the files it directly contains.
403
404 If you specify the source files with relative file names when you run
405 @code{etags}, the tags file will contain file names relative to the
406 directory where the tags file was initially written. This way, you can
407 move an entire directory tree containing both the tags file and the
408 source files, and the tags file will still refer correctly to the source
409 files. If the tags file is in @file{/dev}, however, the file names are
410 made relative to the current working directory. This is useful, for
411 example, when writing the tags to @file{/dev/stdout}.
412
413 If you specify absolute file names as arguments to @code{etags}, then
414 the tags file will contain absolute file names. This way, the tags file
415 will still refer to the same files even if you move it, as long as the
416 source files remain in the same place. Absolute file names start with
417 @samp{/}, or with @samp{@var{device}:/} on MS-DOS and MS-Windows.
418
419 When you want to make a tags table from a great number of files, you
420 may have problems listing them on the command line, because some systems
421 have a limit on its length. The simplest way to circumvent this limit
422 is to tell @code{etags} to read the file names from its standard input,
423 by typing a dash in place of the file names, like this:
424
425 @smallexample
426 find . -name "*.[chCH]" -print | etags -
427 @end smallexample
428
429 Use the option @samp{--language=@var{name}} to specify the language
430 explicitly. You can intermix these options with file names; each one
431 applies to the file names that follow it. Specify
432 @samp{--language=auto} to tell @code{etags} to resume guessing the
433 language from the file names and file contents. Specify
434 @samp{--language=none} to turn off language-specific processing
435 entirely; then @code{etags} recognizes tags by regexp matching alone
436 (@pxref{Etags Regexps}).
437
438 The option @samp{--parse-stdin=@var{file}} is mostly useful when
439 calling @code{etags} from programs. It can be used (only once) in
440 place of a file name on the command line. @code{Etags} will read from
441 standard input and mark the produced tags as belonging to the file
442 @var{file}.
443
444 @samp{etags --help} outputs the list of the languages @code{etags}
445 knows, and the file name rules for guessing the language. It also prints
446 a list of all the available @code{etags} options, together with a short
447 explanation. If followed by one or more @samp{--language=@var{lang}}
448 options, it outputs detailed information about how tags are generated for
449 @var{lang}.
450
451 @node Etags Regexps
452 @subsection Etags Regexps
453
454 The @samp{--regex} option provides a general way of recognizing tags
455 based on regexp matching. You can freely intermix this option with
456 file names, and each one applies to the source files that follow it.
457 If you specify multiple @samp{--regex} options, all of them are used
458 in parallel. The syntax is:
459
460 @smallexample
461 --regex=[@var{@{language@}}]/@var{tagregexp}/[@var{nameregexp}/]@var{modifiers}
462 @end smallexample
463
464 The essential part of the option value is @var{tagregexp}, the
465 regexp for matching tags. It is always used anchored, that is, it
466 only matches at the beginning of a line. If you want to allow
467 indented tags, use a regexp that matches initial whitespace; start it
468 with @samp{[ \t]*}.
469
470 In these regular expressions, @samp{\} quotes the next character, and
471 all the GCC character escape sequences are supported (@samp{\a} for
472 bell, @samp{\b} for back space, @samp{\d} for delete, @samp{\e} for
473 escape, @samp{\f} for formfeed, @samp{\n} for newline, @samp{\r} for
474 carriage return, @samp{\t} for tab, and @samp{\v} for vertical tab).
475
476 Ideally, @var{tagregexp} should not match more characters than are
477 needed to recognize what you want to tag. If the syntax requires you
478 to write @var{tagregexp} so it matches more characters beyond the tag
479 itself, you should add a @var{nameregexp}, to pick out just the tag.
480 This will enable Emacs to find tags more accurately and to do
481 completion on tag names more reliably. You can find some examples
482 below.
483
484 The @var{modifiers} are a sequence of zero or more characters that
485 modify the way @code{etags} does the matching. A regexp with no
486 modifiers is applied sequentially to each line of the input file, in a
487 case-sensitive way. The modifiers and their meanings are:
488
489 @table @samp
490 @item i
491 Ignore case when matching this regexp.
492 @item m
493 Match this regular expression against the whole file, so that
494 multi-line matches are possible.
495 @item s
496 Match this regular expression against the whole file, and allow
497 @samp{.} in @var{tagregexp} to match newlines.
498 @end table
499
500 The @samp{-R} option cancels all the regexps defined by preceding
501 @samp{--regex} options. It too applies to the file names following
502 it. Here's an example:
503
504 @smallexample
505 etags --regex=/@var{reg1}/i voo.doo --regex=/@var{reg2}/m \
506 bar.ber -R --lang=lisp los.er
507 @end smallexample
508
509 @noindent
510 Here @code{etags} chooses the parsing language for @file{voo.doo} and
511 @file{bar.ber} according to their contents. @code{etags} also uses
512 @var{reg1} to recognize additional tags in @file{voo.doo}, and both
513 @var{reg1} and @var{reg2} to recognize additional tags in
514 @file{bar.ber}. @var{reg1} is checked against each line of
515 @file{voo.doo} and @file{bar.ber}, in a case-insensitive way, while
516 @var{reg2} is checked against the whole @file{bar.ber} file,
517 permitting multi-line matches, in a case-sensitive way. @code{etags}
518 uses only the Lisp tags rules, with no user-specified regexp matching,
519 to recognize tags in @file{los.er}.
520
521 You can restrict a @samp{--regex} option to match only files of a
522 given language by using the optional prefix @var{@{language@}}.
523 (@samp{etags --help} prints the list of languages recognized by
524 @code{etags}.) This is particularly useful when storing many
525 predefined regular expressions for @code{etags} in a file. The
526 following example tags the @code{DEFVAR} macros in the Emacs source
527 files, for the C language only:
528
529 @smallexample
530 --regex='@{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/'
531 @end smallexample
532
533 @noindent
534 When you have complex regular expressions, you can store the list of
535 them in a file. The following option syntax instructs @code{etags} to
536 read two files of regular expressions. The regular expressions
537 contained in the second file are matched without regard to case.
538
539 @smallexample
540 --regex=@@@var{case-sensitive-file} --ignore-case-regex=@@@var{ignore-case-file}
541 @end smallexample
542
543 @noindent
544 A regex file for @code{etags} contains one regular expression per
545 line. Empty lines, and lines beginning with space or tab are ignored.
546 When the first character in a line is @samp{@@}, @code{etags} assumes
547 that the rest of the line is the name of another file of regular
548 expressions; thus, one such file can include another file. All the
549 other lines are taken to be regular expressions. If the first
550 non-whitespace text on the line is @samp{--}, that line is a comment.
551
552 For example, we can create a file called @samp{emacs.tags} with the
553 following contents:
554
555 @smallexample
556 -- This is for GNU Emacs C source files
557 @{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/\1/
558 @end smallexample
559
560 @noindent
561 and then use it like this:
562
563 @smallexample
564 etags --regex=@@emacs.tags *.[ch] */*.[ch]
565 @end smallexample
566
567 Here are some more examples. The regexps are quoted to protect them
568 from shell interpretation.
569
570 @itemize @bullet
571
572 @item
573 Tag Octave files:
574
575 @smallexample
576 etags --language=none \
577 --regex='/[ \t]*function.*=[ \t]*\([^ \t]*\)[ \t]*(/\1/' \
578 --regex='/###key \(.*\)/\1/' \
579 --regex='/[ \t]*global[ \t].*/' \
580 *.m
581 @end smallexample
582
583 @noindent
584 Note that tags are not generated for scripts, so that you have to add
585 a line by yourself of the form @samp{###key @var{scriptname}} if you
586 want to jump to it.
587
588 @item
589 Tag Tcl files:
590
591 @smallexample
592 etags --language=none --regex='/proc[ \t]+\([^ \t]+\)/\1/' *.tcl
593 @end smallexample
594
595 @item
596 Tag VHDL files:
597
598 @smallexample
599 etags --language=none \
600 --regex='/[ \t]*\(ARCHITECTURE\|CONFIGURATION\) +[^ ]* +OF/' \
601 --regex='/[ \t]*\(ATTRIBUTE\|ENTITY\|FUNCTION\|PACKAGE\
602 \( BODY\)?\|PROCEDURE\|PROCESS\|TYPE\)[ \t]+\([^ \t(]+\)/\3/'
603 @end smallexample
604 @end itemize
605
606 @node Select Tags Table
607 @subsection Selecting a Tags Table
608
609 @vindex tags-file-name
610 @findex visit-tags-table
611 Emacs has at any time one @dfn{selected} tags table, and all the
612 commands for working with tags tables use the selected one. To select
613 a tags table, type @kbd{M-x visit-tags-table}, which reads the tags
614 table file name as an argument, with @file{TAGS} in the default
615 directory as the default.
616
617 Emacs does not actually read in the tags table contents until you
618 try to use them; all @code{visit-tags-table} does is store the file
619 name in the variable @code{tags-file-name}, and setting the variable
620 yourself is just as good. The variable's initial value is @code{nil};
621 that value tells all the commands for working with tags tables that
622 they must ask for a tags table file name to use.
623
624 Using @code{visit-tags-table} when a tags table is already loaded
625 gives you a choice: you can add the new tags table to the current list
626 of tags tables, or start a new list. The tags commands use all the tags
627 tables in the current list. If you start a new list, the new tags table
628 is used @emph{instead} of others. If you add the new table to the
629 current list, it is used @emph{as well as} the others.
630
631 @vindex tags-table-list
632 You can specify a precise list of tags tables by setting the variable
633 @code{tags-table-list} to a list of strings, like this:
634
635 @c keep this on two lines for formatting in smallbook
636 @example
637 @group
638 (setq tags-table-list
639 '("~/emacs" "/usr/local/lib/emacs/src"))
640 @end group
641 @end example
642
643 @noindent
644 This tells the tags commands to look at the @file{TAGS} files in your
645 @file{~/emacs} directory and in the @file{/usr/local/lib/emacs/src}
646 directory. The order depends on which file you are in and which tags
647 table mentions that file, as explained above.
648
649 Do not set both @code{tags-file-name} and @code{tags-table-list}.
650
651 @node Find Tag
652 @subsection Finding a Tag
653
654 The most important thing that a tags table enables you to do is to find
655 the definition of a specific tag.
656
657 @table @kbd
658 @item M-.@: @var{tag} @key{RET}
659 Find first definition of @var{tag} (@code{find-tag}).
660 @item C-u M-.
661 Find next alternate definition of last tag specified.
662 @item C-u - M-.
663 Go back to previous tag found.
664 @item C-M-. @var{pattern} @key{RET}
665 Find a tag whose name matches @var{pattern} (@code{find-tag-regexp}).
666 @item C-u C-M-.
667 Find the next tag whose name matches the last pattern used.
668 @item C-x 4 .@: @var{tag} @key{RET}
669 Find first definition of @var{tag}, but display it in another window
670 (@code{find-tag-other-window}).
671 @item C-x 5 .@: @var{tag} @key{RET}
672 Find first definition of @var{tag}, and create a new frame to select the
673 buffer (@code{find-tag-other-frame}).
674 @item M-*
675 Pop back to where you previously invoked @kbd{M-.} and friends.
676 @end table
677
678 @kindex M-.
679 @findex find-tag
680 @kbd{M-.}@: (@code{find-tag}) is the command to find the definition of
681 a specified tag. It searches through the tags table for that tag, as a
682 string, and then uses the tags table info to determine the file that the
683 definition is in and the approximate character position in the file of
684 the definition. Then @code{find-tag} visits that file, moves point to
685 the approximate character position, and searches ever-increasing
686 distances away to find the tag definition.
687
688 If an empty argument is given (just type @key{RET}), the balanced
689 expression in the buffer before or around point is used as the
690 @var{tag} argument. @xref{Expressions}.
691
692 You don't need to give @kbd{M-.} the full name of the tag; a part
693 will do. This is because @kbd{M-.} finds tags in the table which
694 contain @var{tag} as a substring. However, it prefers an exact match
695 to a substring match. To find other tags that match the same
696 substring, give @code{find-tag} a numeric argument, as in @kbd{C-u
697 M-.}; this does not read a tag name, but continues searching the tags
698 table's text for another tag containing the same substring last used.
699 If you have a real @key{META} key, @kbd{M-0 M-.}@: is an easier
700 alternative to @kbd{C-u M-.}.
701
702 @kindex C-x 4 .
703 @findex find-tag-other-window
704 @kindex C-x 5 .
705 @findex find-tag-other-frame
706 Like most commands that can switch buffers, @code{find-tag} has a
707 variant that displays the new buffer in another window, and one that
708 makes a new frame for it. The former is @w{@kbd{C-x 4 .}}, which invokes
709 the command @code{find-tag-other-window}. The latter is @w{@kbd{C-x 5 .}},
710 which invokes @code{find-tag-other-frame}.
711
712 To move back to places you've found tags recently, use @kbd{C-u -
713 M-.}; more generally, @kbd{M-.} with a negative numeric argument. This
714 command can take you to another buffer. @w{@kbd{C-x 4 .}} with a negative
715 argument finds the previous tag location in another window.
716
717 @kindex M-*
718 @findex pop-tag-mark
719 @vindex find-tag-marker-ring-length
720 As well as going back to places you've found tags recently, you can go
721 back to places @emph{from where} you found them. Use @kbd{M-*}, which
722 invokes the command @code{pop-tag-mark}, for this. Typically you would
723 find and study the definition of something with @kbd{M-.} and then
724 return to where you were with @kbd{M-*}.
725
726 Both @kbd{C-u - M-.} and @kbd{M-*} allow you to retrace your steps to
727 a depth determined by the variable @code{find-tag-marker-ring-length}.
728
729 @findex find-tag-regexp
730 @kindex C-M-.
731 The command @kbd{C-M-.} (@code{find-tag-regexp}) visits the tags that
732 match a specified regular expression. It is just like @kbd{M-.} except
733 that it does regexp matching instead of substring matching.
734
735 @node Tags Search
736 @subsection Searching and Replacing with Tags Tables
737 @cindex search and replace in multiple files
738 @cindex multiple-file search and replace
739
740 The commands in this section visit and search all the files listed
741 in the selected tags table, one by one. For these commands, the tags
742 table serves only to specify a sequence of files to search. These
743 commands scan the list of tags tables starting with the first tags
744 table (if any) that describes the current file, proceed from there to
745 the end of the list, and then scan from the beginning of the list
746 until they have covered all the tables in the list.
747
748 @table @kbd
749 @item M-x tags-search @key{RET} @var{regexp} @key{RET}
750 Search for @var{regexp} through the files in the selected tags
751 table.
752 @item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET}
753 Perform a @code{query-replace-regexp} on each file in the selected tags table.
754 @item M-,
755 Restart one of the commands above, from the current location of point
756 (@code{tags-loop-continue}).
757 @end table
758
759 @findex tags-search
760 @kbd{M-x tags-search} reads a regexp using the minibuffer, then
761 searches for matches in all the files in the selected tags table, one
762 file at a time. It displays the name of the file being searched so you
763 can follow its progress. As soon as it finds an occurrence,
764 @code{tags-search} returns.
765
766 @kindex M-,
767 @findex tags-loop-continue
768 Having found one match, you probably want to find all the rest. To find
769 one more match, type @kbd{M-,} (@code{tags-loop-continue}) to resume the
770 @code{tags-search}. This searches the rest of the current buffer, followed
771 by the remaining files of the tags table.@refill
772
773 @findex tags-query-replace
774 @kbd{M-x tags-query-replace} performs a single
775 @code{query-replace-regexp} through all the files in the tags table. It
776 reads a regexp to search for and a string to replace with, just like
777 ordinary @kbd{M-x query-replace-regexp}. It searches much like @kbd{M-x
778 tags-search}, but repeatedly, processing matches according to your
779 input. @xref{Replace}, for more information on query replace.
780
781 @vindex tags-case-fold-search
782 @cindex case-sensitivity and tags search
783 You can control the case-sensitivity of tags search commands by
784 customizing the value of the variable @code{tags-case-fold-search}. The
785 default is to use the same setting as the value of
786 @code{case-fold-search} (@pxref{Search Case}).
787
788 It is possible to get through all the files in the tags table with a
789 single invocation of @kbd{M-x tags-query-replace}. But often it is
790 useful to exit temporarily, which you can do with any input event that
791 has no special query replace meaning. You can resume the query replace
792 subsequently by typing @kbd{M-,}; this command resumes the last tags
793 search or replace command that you did.
794
795 The commands in this section carry out much broader searches than the
796 @code{find-tag} family. The @code{find-tag} commands search only for
797 definitions of tags that match your substring or regexp. The commands
798 @code{tags-search} and @code{tags-query-replace} find every occurrence
799 of the regexp, as ordinary search commands and replace commands do in
800 the current buffer.
801
802 These commands create buffers only temporarily for the files that they
803 have to search (those which are not already visited in Emacs buffers).
804 Buffers in which no match is found are quickly killed; the others
805 continue to exist.
806
807 It may have struck you that @code{tags-search} is a lot like
808 @code{grep}. You can also run @code{grep} itself as an inferior of
809 Emacs and have Emacs show you the matching lines one by one.
810 @xref{Grep Searching}.
811
812 @node List Tags
813 @subsection Tags Table Inquiries
814
815 @table @kbd
816 @item M-x list-tags @key{RET} @var{file} @key{RET}
817 Display a list of the tags defined in the program file @var{file}.
818 @item M-x tags-apropos @key{RET} @var{regexp} @key{RET}
819 Display a list of all tags matching @var{regexp}.
820 @end table
821
822 @findex list-tags
823 @kbd{M-x list-tags} reads the name of one of the files described by
824 the selected tags table, and displays a list of all the tags defined in
825 that file. The ``file name'' argument is really just a string to
826 compare against the file names recorded in the tags table; it is read as
827 a string rather than as a file name. Therefore, completion and
828 defaulting are not available, and you must enter the file name the same
829 way it appears in the tags table. Do not include a directory as part of
830 the file name unless the file name recorded in the tags table includes a
831 directory.
832
833 @findex tags-apropos
834 @vindex tags-apropos-verbose
835 @kbd{M-x tags-apropos} is like @code{apropos} for tags
836 (@pxref{Apropos}). It finds all the tags in the selected tags table
837 whose entries match @var{regexp}, and displays them. If the variable
838 @code{tags-apropos-verbose} is non-@code{nil}, it displays the names
839 of the tags files together with the tag names.
840
841 @vindex tags-tag-face
842 @vindex tags-apropos-additional-actions
843 You can customize the appearance of the output by setting the
844 variable @code{tags-tag-face} to a face. You can display additional
845 output with @kbd{M-x tags-apropos} by customizing the variable
846 @code{tags-apropos-additional-actions}---see its documentation for
847 details.
848
849 You can also use the collection of tag names to complete a symbol
850 name in the buffer. @xref{Symbol Completion}.
851
852 @ifnottex
853 @include emerge-xtra.texi
854 @end ifnottex
855
856 @ignore
857 arch-tag: b9d83dfb-82ea-4ff6-bab5-05a3617091fb
858 @end ignore