* emacs/ack.texi, emacs/building.texi, emacs/calendar.texi
[bpt/emacs.git] / doc / emacs / maintaining.texi
CommitLineData
8cf51b2c 1@c This is part of the Emacs manual.
acaf905b 2@c Copyright (C) 1985-1987, 1993-1995, 1997, 1999-2012
e5136377 3@c Free Software Foundation, Inc.
8cf51b2c 4@c See file emacs.texi for copying conditions.
abb9615e 5@node Maintaining
8cf51b2c
GM
6@chapter Maintaining Large Programs
7
8 This chapter describes Emacs features for maintaining large
41590156
GM
9programs. If you are maintaining a large Lisp program, then in
10addition to the features described here, you may find
11the @file{ERT} (``Emacs Lisp Regression Testing'') library useful
12(@pxref{Top,,ERT,ert, Emacs Lisp Regression Testing}).
8cf51b2c
GM
13
14@menu
05c5ad63 15* Version Control:: Using version control systems.
8838673e
GM
16* Change Log:: Maintaining a change history for your program.
17* Tags:: Go directly to any function in your program in one
18 command. Tags remembers which file it is in.
a42dbee1 19* EDE:: An integrated development environment for Emacs.
8cf51b2c
GM
20@ifnottex
21* Emerge:: A convenient way of merging two versions of a program.
22@end ifnottex
23@end menu
24
05c5ad63
CY
25@node Version Control
26@section Version Control
27@cindex version control
28
1aaae3f3 29 A @dfn{version control system} is a program that can record multiple
05c5ad63 30versions of a source file, storing information such as the creation
1aaae3f3
CY
31time of each version, who made it, and a description of what was
32changed.
33
34 The Emacs version control interface is called @dfn{VC}. VC commands
35work with several different version control systems; currently, it
36supports GNU Arch, Bazaar, CVS, Git, Mercurial, Monotone, RCS,
37SCCS/CSSC, and Subversion. Of these, the GNU project distributes CVS,
38Arch, RCS, and Bazaar.
39
40 VC is enabled automatically whenever you visit a file governed by a
41version control system. To disable VC entirely, set the customizable
42variable @code{vc-handled-backends} to @code{nil}
05c5ad63
CY
43@iftex
44(@pxref{Customizing VC,,,emacs-xtra, Specialized Emacs Features}).
45@end iftex
46@ifnottex
47(@pxref{Customizing VC}).
48@end ifnottex
49
50@menu
51* Introduction to VC:: How version control works in general.
52* VC Mode Line:: How the mode line shows version control status.
53* Basic VC Editing:: How to edit a file under version control.
1aaae3f3 54* Log Buffer:: Features available in log entry buffers.
9cff91f8 55* Registering:: Putting a file under version control.
05c5ad63 56* Old Revisions:: Examining and comparing old versions.
9cff91f8
CY
57* VC Change Log:: Viewing the VC Change Log.
58* VC Undo:: Canceling changes before or after committing.
05c5ad63
CY
59* VC Directory Mode:: Listing files managed by version control.
60* Branches:: Multiple lines of development.
61@ifnottex
05c5ad63
CY
62* Miscellaneous VC:: Various other commands and features of VC.
63* Customizing VC:: Variables that change VC's behavior.
64@end ifnottex
65@end menu
66
67@node Introduction to VC
68@subsection Introduction to Version Control
69
70 VC allows you to use a version control system from within Emacs,
1aaae3f3
CY
71integrating the version control operations smoothly with editing. It
72provides a uniform interface for common operations in many version
73control operations.
74
75 Some uncommon or intricate version control operations, such as
76altering repository settings, are not supported in VC. You should
f3b316df 77perform such tasks outside Emacs, e.g.@: via the command line.
05c5ad63
CY
78
79 This section provides a general overview of version control, and
80describes the version control systems that VC supports. You can skip
81this section if you are already familiar with the version control system
82you want to use.
83
84@menu
ad258c72 85* Why Version Control?:: Understanding the problems it addresses.
05c5ad63
CY
86* Version Control Systems:: Supported version control back-end systems.
87* VCS Concepts:: Words and concepts related to version control.
1aaae3f3
CY
88* VCS Merging:: How file conflicts are handled.
89* VCS Changesets:: How changes are grouped.
90* VCS Repositories:: Where version control repositories are stored.
05c5ad63
CY
91* Types of Log File:: The VCS log in contrast to the ChangeLog.
92@end menu
93
94@node Why Version Control?
95@subsubsection Understanding the problems it addresses
96
97 Version control systems provide you with three important
98capabilities:
99
100@itemize @bullet
101@item
102@dfn{Reversibility}: the ability to back up to a previous state if you
103discover that some modification you did was a mistake or a bad idea.
104
105@item
106@dfn{Concurrency}: the ability to have many people modifying the same
107collection of files knowing that conflicting modifications can be
108detected and resolved.
109
110@item
111@dfn{History}: the ability to attach historical data to your data,
112such as explanatory comments about the intention behind each change to
113it. Even for a programmer working solo, change histories are an
114important aid to memory; for a multi-person project, they are a
115vitally important form of communication among developers.
116@end itemize
117
118@node Version Control Systems
119@subsubsection Supported Version Control Systems
120
121@cindex back end (version control)
1aaae3f3
CY
122 VC currently works with many different version control systems,
123which it refers to as @dfn{back ends}:
05c5ad63
CY
124
125@itemize @bullet
126
127@cindex SCCS
128@item
129SCCS was the first version control system ever built, and was long ago
130superseded by more advanced ones. VC compensates for certain features
f3b316df 131missing in SCCS (e.g.@: tag names for releases) by implementing them
05c5ad63
CY
132itself. Other VC features, such as multiple branches, are simply
133unavailable. Since SCCS is non-free, we recommend avoiding it.
134
135@cindex CSSC
136@item
137CSSC is a free replacement for SCCS. You should use CSSC only if, for
138some reason, you cannot use a more recent and better-designed version
139control system.
140
141@cindex RCS
142@item
143RCS is the free version control system around which VC was initially
1aaae3f3
CY
144built. It is relatively primitive: it cannot be used over the
145network, and works at the level of individual files. Almost
146everything you can do with RCS can be done through VC.
05c5ad63
CY
147
148@cindex CVS
149@item
150CVS is the free version control system that was, until recently (circa
1512008), used by the majority of free software projects. Nowadays, it
152is slowly being superseded by newer systems. CVS allows concurrent
1aaae3f3
CY
153multi-user development either locally or over the network. Unlike
154newer systems, it lacks support for atomic commits and file
155moving/renaming. VC supports all basic editing operations under CVS.
05c5ad63
CY
156
157@cindex SVN
158@cindex Subversion
159@item
f3b316df 160Subversion (svn) is a free version control system designed to be
1aaae3f3
CY
161similar to CVS but without its problems (e.g., it supports atomic
162commits of filesets, and versioning of directories, symbolic links,
163meta-data, renames, copies, and deletes).
05c5ad63
CY
164
165@cindex GNU Arch
166@cindex Arch
167@item
2edef1a0 168GNU Arch is one of the earliest @dfn{decentralized} version control
1aaae3f3 169systems (the other being Monotone). @xref{VCS Concepts}, for a
2edef1a0 170description of decentralized version control systems. It is no longer
1aaae3f3 171under active development, and has been deprecated in favor of Bazaar.
05c5ad63
CY
172
173@cindex git
174@item
2edef1a0 175Git is a decentralized version control system originally invented by
1aaae3f3 176Linus Torvalds to support development of Linux (his kernel). VC
9cff91f8 177supports many common Git operations, but others, such as repository
0d6607ab 178syncing, must be done from the command line.
05c5ad63
CY
179
180@cindex hg
181@cindex Mercurial
182@item
2edef1a0 183Mercurial (hg) is a decentralized version control system broadly
9cff91f8 184resembling Git. VC supports most Mercurial commands, with the
1aaae3f3 185exception of repository sync operations.
05c5ad63
CY
186
187@cindex bzr
188@cindex Bazaar
189@item
2edef1a0
CY
190Bazaar (bzr) is a decentralized version control system that supports
191both repository-based and decentralized versioning. VC supports most
1aaae3f3 192basic editing operations under Bazaar.
05c5ad63
CY
193@end itemize
194
05c5ad63
CY
195@node VCS Concepts
196@subsubsection Concepts of Version Control
197
198@cindex repository
199@cindex registered file
200 When a file is under version control, we say that it is
201@dfn{registered} in the version control system. The system has a
202@dfn{repository} which stores both the file's present state and its
203change history---enough to reconstruct the current version or any
204earlier version. The repository also contains other information, such
205as @dfn{log entries} that describe the changes made to each file.
206
207@cindex work file
208@cindex checking out files
1aaae3f3
CY
209 The copy of a version-controlled file that you actually edit is
210called the @dfn{work file}. You can change each work file as you
211would an ordinary file. After you are done with a set of changes, you
9cff91f8
CY
212may @dfn{commit} (or @dfn{check in}) the changes; this records the
213changes in the repository, along with a descriptive log entry.
05c5ad63 214
2edef1a0
CY
215@cindex working tree
216 A directory tree of work files is called a @dfn{working tree}.
217
05c5ad63
CY
218@cindex revision
219@cindex revision ID
9cff91f8
CY
220 Each commit creates a new @dfn{revision} in the repository. The
221version control system keeps track of all past revisions and the
222changes that were made in each revision. Each revision is named by a
223@dfn{revision ID}, whose format depends on the version control system;
224in the simplest case, it is just an integer.
05c5ad63
CY
225
226 To go beyond these basic concepts, you will need to understand three
1aaae3f3
CY
227aspects in which version control systems differ. As explained in the
228next three sections, they can be lock-based or merge-based; file-based
229or changeset-based; and centralized or decentralized. VC handles all
230these modes of operation, but it cannot hide the differences.
05c5ad63 231
1aaae3f3
CY
232@node VCS Merging
233@subsubsection Merge-based vs lock-based Version Control
1aaae3f3 234
05c5ad63
CY
235 A version control system typically has some mechanism to coordinate
236between users who want to change the same file. There are two ways to
237do this: merging and locking.
238
bc859d5f 239@cindex merging-based version
9cff91f8
CY
240 In a version control system that uses merging, each user may modify
241a work file at any time. The system lets you @dfn{merge} your work
242file, which may contain changes that have not been committed, with the
243latest changes that others have committed.
05c5ad63 244
bc859d5f 245@cindex locking-based version
05c5ad63
CY
246 Older version control systems use a @dfn{locking} scheme instead.
247Here, work files are normally read-only. To edit a file, you ask the
248version control system to make it writable for you by @dfn{locking}
249it; only one user can lock a given file at any given time. This
250procedure is analogous to, but different from, the locking that Emacs
251uses to detect simultaneous editing of ordinary files
1aaae3f3 252(@pxref{Interlocking}). When you commit your changes, that unlocks
05c5ad63
CY
253the file, and the work file becomes read-only again. Other users may
254then lock the file to make their own changes.
255
256 Both locking and merging systems can have problems when multiple
257users try to modify the same file at the same time. Locking systems
258have @dfn{lock conflicts}; a user may try to check a file out and be
259unable to because it is locked. In merging systems, @dfn{merge
1aaae3f3
CY
260conflicts} happen when you commit a change to a file that conflicts
261with a change committed by someone else after your checkout. Both
05c5ad63 262kinds of conflict have to be resolved by human judgment and
a11d3737
RS
263communication. Experience has shown that merging is superior to
264locking, both in convenience to developers and in minimizing the
265number and severity of conflicts that actually occur.
05c5ad63
CY
266
267 SCCS always uses locking. RCS is lock-based by default but can be
268told to operate in a merging style. CVS and Subversion are
269merge-based by default but can be told to operate in a locking mode.
2edef1a0 270Decentralized version control systems, such as GNU Arch, Git, and
a11d3737 271Mercurial, are exclusively merging-based.
05c5ad63 272
a11d3737 273 VC mode supports both locking and merging version control. The
1aaae3f3
CY
274terms ``commit'' and ``update'' are used in newer version control
275systems; older lock-based systems use the terms ``check in'' and
276``check out''. VC hides the differences between them as much as
277possible.
278
279@node VCS Changesets
280@subsubsection Changeset-based vs File-based Version Control
05c5ad63 281
bc859d5f 282@cindex file-based version control
05c5ad63
CY
283 On SCCS, RCS, CVS, and other early version control systems, version
284control operations are @dfn{file-based}: each file has its own comment
1aaae3f3
CY
285and revision history separate from that of all other files. Newer
286systems, beginning with Subversion, are @dfn{changeset-based}: a
9cff91f8 287commit may include changes to several files, and the entire set of
1aaae3f3
CY
288changes is handled as a unit. Any comment associated with the change
289does not belong to a single file, but to the changeset itself.
05c5ad63 290
bc859d5f 291@cindex changeset-based version control
05c5ad63
CY
292 Changeset-based version control is more flexible and powerful than
293file-based version control; usually, when a change to multiple files
294has to be reversed, it's good to be able to easily identify and remove
a11d3737 295all of it.
05c5ad63 296
1aaae3f3
CY
297@node VCS Repositories
298@subsubsection Decentralized vs Centralized Repositories
299
300@cindex centralized version control
301@cindex decentralized version control
2edef1a0 302@cindex distributed version control
05c5ad63
CY
303 Early version control systems were designed around a
304@dfn{centralized} model in which each project has only one repository
305used by all developers. SCCS, RCS, CVS, and Subversion share this
a11d3737
RS
306kind of model. One of its drawbacks is that the repository is a choke
307point for reliability and efficiency.
05c5ad63 308
2edef1a0
CY
309 GNU Arch pioneered the concept of @dfn{distributed} or
310@dfn{decentralized} version control, later implemented in Git,
311Mercurial, and Bazaar. A project may have several different
312repositories, and these systems support a sort of super-merge between
313repositories that tries to reconcile their change histories. In
314effect, there is one repository for each developer, and repository
315merges take the place of commit operations.
05c5ad63 316
1aaae3f3
CY
317 VC helps you manage the traffic between your personal workfiles and
318a repository. Whether the repository is a single master, or one of a
319network of peer repositories, is not something VC has to care about.
05c5ad63
CY
320
321@node Types of Log File
322@subsubsection Types of Log File
323@cindex types of log file
324@cindex log File, types of
325@cindex version control log
326
327 Projects that use a version control system can have two types of log
328for changes. One is the log maintained by the version control system:
1aaae3f3
CY
329each time you commit a change, you fill out a @dfn{log entry} for the
330change (@pxref{Log Buffer}). This is called the @dfn{version control
331log}.
05c5ad63
CY
332
333 The other kind of log is the file @file{ChangeLog} (@pxref{Change
334Log}). It provides a chronological record of all changes to a large
335portion of a program---typically one directory and its subdirectories.
336A small program would use one @file{ChangeLog} file; a large program
337may have a @file{ChangeLog} file in each major directory.
a11d3737
RS
338@xref{Change Log}. Programmers have used change logs since long
339before version control systems.
340
341 Changeset-based version systems typically maintain a changeset-based
342modification log for the entire system, which makes change log files
343somewhat redundant. One advantage that they retain is that it is
344sometimes useful to be able to view the transaction history of a
345single directory separately from those of other directories.
05c5ad63
CY
346
347 A project maintained with version control can use just the version
348control log, or it can use both kinds of logs. It can handle some
349files one way and some files the other way. Each project has its
350policy, which you should follow.
351
352 When the policy is to use both, you typically want to write an entry
353for each change just once, then put it into both logs. You can write
354the entry in @file{ChangeLog}, then copy it to the log buffer with
9cff91f8
CY
355@kbd{C-c C-a} when committing the change (@pxref{Log Buffer}). Or you
356can write the entry in the log buffer while committing the change, and
357later use the @kbd{C-x v a} command to copy it to @file{ChangeLog}
05c5ad63
CY
358@iftex
359(@pxref{Change Logs and VC,,,emacs-xtra, Specialized Emacs Features}).
360@end iftex
361@ifnottex
362(@pxref{Change Logs and VC}).
363@end ifnottex
364
365@node VC Mode Line
366@subsection Version Control and the Mode Line
bc859d5f 367@cindex VC mode line indicator
05c5ad63
CY
368
369 When you visit a file that is under version control, Emacs indicates
1aaae3f3
CY
370this on the mode line. For example, @samp{Bzr-1223} says that Bazaar
371is used for that file, and the current revision ID is 1223.
05c5ad63 372
bc859d5f 373@cindex version control status
05c5ad63 374 The character between the back-end name and the revision ID
bc859d5f
CY
375indicates the @dfn{version control status} of the work file. In a
376merge-based version control system, a @samp{-} character indicates
377that the work file is unmodified, and @samp{:} indicates that it has
378been modified. @samp{!} indicates that the file contains conflicts as
379result of a recent merge operation (@pxref{Merging}), or that the file
380was removed from the version control. Finally, @samp{?} means that
381the file is under version control, but is missing from the working
382tree.
07976ae3
CY
383
384 In a lock-based system, @samp{-} indicates an unlocked file, and
385@samp{:} a locked file; if the file is locked by another user (for
05c5ad63 386instance, @samp{jim}), that is displayed as @samp{RCS:jim:1.3}.
cad90f3b 387@samp{@@} means that the file was locally added, but not yet committed
07976ae3 388to the master repository.
05c5ad63
CY
389
390 On a graphical display, you can move the mouse over this mode line
391indicator to pop up a ``tool-tip'', which displays a more verbose
392description of the version control status. Pressing @kbd{Mouse-1}
1aaae3f3
CY
393over the indicator pops up a menu of VC commands, identical to
394@samp{Tools / Version Control} on the menu bar.
05c5ad63
CY
395
396@vindex auto-revert-check-vc-info
397 When Auto Revert mode (@pxref{Reverting}) reverts a buffer that is
398under version control, it updates the version control information in
399the mode line. However, Auto Revert mode may not properly update this
400information if the version control status changes without changes to
401the work file, from outside the current Emacs session. If you set
402@code{auto-revert-check-vc-info} to @code{t}, Auto Revert mode updates
403the version control status information every
404@code{auto-revert-interval} seconds, even if the work file itself is
405unchanged. The resulting CPU usage depends on the version control
406system, but is usually not excessive.
407
408@node Basic VC Editing
409@subsection Basic Editing under Version Control
410
a11d3737 411@cindex filesets, VC
bc859d5f 412@cindex VC filesets
05c5ad63 413 Most VC commands operate on @dfn{VC filesets}. A VC fileset is a
a11d3737
RS
414collection of one or more files that a VC operation acts on. When you
415type VC commands in a buffer visiting a version-controlled file, the
416VC fileset is simply that one file. When you type them in a VC
417Directory buffer, and some files in it are marked, the VC fileset
05c5ad63
CY
418consists of the marked files (@pxref{VC Directory Mode}).
419
2edef1a0
CY
420 On modern changeset-based version control systems (@pxref{VCS
421Changesets}), VC commands handle multi-file VC filesets as a group.
422For example, committing a multi-file VC fileset generates a single
423revision, containing the changes to all those files. On older
424file-based version control systems like CVS, each file in a multi-file
425VC fileset is handled individually; for example, a commit generates
426one revision for each changed file.
05c5ad63
CY
427
428@table @kbd
429@itemx C-x v v
f3b316df
CY
430Perform the next appropriate version control operation on the current
431VC fileset.
05c5ad63
CY
432@end table
433
434@findex vc-next-action
435@kindex C-x v v
2edef1a0 436 The principal VC command is a multi-purpose command, @kbd{C-x v v}
f3b316df
CY
437(@code{vc-next-action}), which performs the ``most appropriate''
438action on the current VC fileset: either registering it with a version
439control system, or committing it, or unlocking it, or merging changes
440into it. The precise actions are described in detail in the following
441subsections. You can use @kbd{C-x v v} either in a file-visiting
442buffer or in a VC Directory buffer.
443
444 Note that VC filesets are distinct from the ``named filesets'' used
445for viewing and visiting files in functional groups
446(@pxref{Filesets}). Unlike named filesets, VC filesets are not named
447and don't persist across sessions.
05c5ad63
CY
448
449@menu
450* VC With A Merging VCS:: Without locking: default mode for CVS.
451* VC With A Locking VCS:: RCS in its default mode, SCCS, and optionally CVS.
452* Advanced C-x v v:: Advanced features available with a prefix argument.
05c5ad63
CY
453@end menu
454
455@node VC With A Merging VCS
456@subsubsection Basic Version Control with Merging
457
f3b316df
CY
458 On a merging-based version control system (i.e.@: most modern ones;
459@pxref{VCS Merging}), @kbd{C-x v v} does the following:
05c5ad63
CY
460
461@itemize @bullet
462@item
f3b316df 463If there is more than one file in the VC fileset and the files have
bc859d5f
CY
464inconsistent version control statuses, signal an error. (Note,
465however, that a fileset is allowed to include both ``newly-added''
466files and ``modified'' files; @pxref{Registering}.)
c0c035fa
CY
467
468@item
9cff91f8
CY
469If none of the files in the VC fileset are registered with a version
470control system, register the VC fileset, i.e.@: place it under version
471control. @xref{Registering}. If Emacs cannot find a system to
472register under, it prompts for a repository type, creates a new
473repository, and registers the VC fileset with it.
c0c035fa
CY
474
475@item
9cff91f8 476If every work file in the VC fileset is unchanged, do nothing.
05c5ad63
CY
477
478@item
9cff91f8 479If every work file in the VC fileset has been modified, commit the
1c64e6ed 480changes. To do this, Emacs pops up a @file{*vc-log*} buffer; type the
f3b316df 481desired log entry for the new revision, followed by @kbd{C-c C-c} to
9cff91f8 482commit. @xref{Log Buffer}.
f3b316df
CY
483
484If committing to a shared repository, the commit may fail if the
485repository that has been changed since your last update. In that
d3098e1e
CY
486case, you must perform an update before trying again. On a
487decentralized version control system, use @kbd{C-x v +} (@pxref{VC
488Pull}) or @kbd{C-x v m} (@pxref{Merging}). On a centralized version
489control system, type @kbd{C-x v v} again to merge in the repository
490changes.
05c5ad63
CY
491
492@item
f3b316df
CY
493Finally, if you are using a centralized version control system, check
494if each work file in the VC fileset is up-to-date. If any file has
495been changed in the repository, offer to update it.
05c5ad63
CY
496@end itemize
497
498 These rules also apply when you use RCS in its ``non-locking'' mode,
c0c035fa 499except that changes are not automatically merged from the repository.
1aaae3f3
CY
500Nothing informs you if another user has committed changes in the same
501file since you began editing it; when you commit your revision, his
c0c035fa
CY
502changes are removed (however, they remain in the repository and are
503thus not irrevocably lost). Therefore, you must verify that the
9cff91f8 504current revision is unchanged before committing your changes. In
c0c035fa
CY
505addition, locking is possible with RCS even in this mode: @kbd{C-x v
506v} with an unmodified file locks the file, just as it does with RCS in
507its normal locking mode (@pxref{VC With A Locking VCS}).
05c5ad63
CY
508
509@node VC With A Locking VCS
510@subsubsection Basic Version Control with Locking
511
f3b316df
CY
512 On a locking-based version control system (such as SCCS, and RCS in
513its default mode), @kbd{C-x v v} does the following:
05c5ad63 514
c0c035fa 515@itemize @bullet
05c5ad63 516@item
f3b316df 517If there is more than one file in the VC fileset and the files have
bc859d5f 518inconsistent version control statuses, signal an error.
f3b316df
CY
519
520@item
521If each file in the VC fileset is not registered with a version
9cff91f8
CY
522control system, register the VC fileset. @xref{Registering}. If
523Emacs cannot find a system to register under, it prompts for a
524repository type, creates a new repository, and registers the VC
525fileset with it.
f3b316df
CY
526
527@item
301b181a 528If each file is registered and unlocked, lock it and make it writable,
f3b316df 529so that you can begin to edit it.
05c5ad63
CY
530
531@item
f3b316df 532If each file is locked by you and contains changes, commit the
1c64e6ed 533changes. To do this, Emacs pops up a @file{*vc-log*} buffer; type the
f3b316df
CY
534desired log entry for the new revision, followed by @kbd{C-c C-c} to
535commit (@pxref{Log Buffer}).
05c5ad63
CY
536
537@item
f3b316df
CY
538If each file is locked by you, but you have not changed it, release
539the lock and make the file read-only again.
05c5ad63
CY
540
541@item
f3b316df
CY
542If each file is locked by another user, ask whether you want to
543``steal the lock''. If you say yes, the file becomes locked by you,
544and a warning message is sent to the user who had formerly locked the
545file.
05c5ad63
CY
546@end itemize
547
548 These rules also apply when you use CVS in locking mode, except
f3b316df 549that CVS does not support stealing locks.
05c5ad63
CY
550
551@node Advanced C-x v v
552@subsubsection Advanced Control in @kbd{C-x v v}
553
1aaae3f3 554@cindex revision ID in version control
05c5ad63
CY
555 When you give a prefix argument to @code{vc-next-action} (@kbd{C-u
556C-x v v}), it still performs the next logical version control
557operation, but accepts additional arguments to specify precisely how
558to do the operation.
559
560@itemize @bullet
561@item
d3098e1e
CY
562@cindex specific version control system
563You can specify the name of a version control system. This is useful
564if the fileset can be managed by more than one version control system,
565and Emacs fails to detect the correct one.
05c5ad63
CY
566
567@item
d3098e1e 568Otherwise, if using CVS or RCS, you can specify a revision ID.
05c5ad63 569
d3098e1e
CY
570If the fileset is modified (or locked), this makes Emacs commit with
571that revision ID. You can create a new branch by supplying an
572appropriate revision ID (@pxref{Branches}).
05c5ad63 573
d3098e1e
CY
574If the fileset is unmodified (and unlocked), this checks the specified
575revision into the working tree. You can also specify a revision on
576another branch by giving its revision or branch ID (@pxref{Switching
577Branches}). An empty argument (i.e.@: @kbd{C-u C-x v v @key{RET}})
578checks out the latest (``head'') revision on the current branch.
579
580This signals an error on a decentralized version control system.
581Those systems do not let you specify your own revision IDs, nor do
582they use the concept of ``checking out'' individual files.
05c5ad63
CY
583@end itemize
584
585@node Log Buffer
1aaae3f3
CY
586@subsection Features of the Log Entry Buffer
587
9cff91f8
CY
588@cindex C-c C-c @r{(Log Edit mode)}
589@findex log-edit-done
590 When you tell VC to commit a change, it pops up a buffer named
1c64e6ed 591@file{*vc-log*}. In this buffer, you should write a @dfn{log entry}
1aaae3f3 592describing the changes you have made (@pxref{Why Version Control?}).
9cff91f8
CY
593After you are done, type @kbd{C-c C-c} (@code{log-edit-done}) to exit
594the buffer and commit the change, together with your log entry.
1aaae3f3 595
9cff91f8
CY
596@cindex Log Edit mode
597@cindex mode, Log Edit
598@vindex vc-log-mode-hook
1c64e6ed 599 The major mode for the @file{*vc-log*} buffer is Log Edit mode, a
9cff91f8
CY
600variant of Text mode (@pxref{Text Mode}). On entering Log Edit mode,
601Emacs runs the hooks @code{text-mode-hook} and @code{vc-log-mode-hook}
602(@pxref{Hooks}).
603
1c64e6ed 604 In the @file{*vc-log*} buffer, you can write one or more @dfn{header
2edef1a0
CY
605lines}, specifying additional information to be supplied to the
606version control system. Each header line must occupy a single line at
607the top of the buffer; the first line that is not a header line is
608treated as the start of the log entry. For example, the following
609header line states that the present change was not written by you, but
610by another developer:
05c5ad63 611
1aaae3f3
CY
612@smallexample
613Author: J. R. Hacker <jrh@@example.com>
614@end smallexample
05c5ad63 615
1aaae3f3
CY
616@noindent
617Apart from the @samp{Author} header, Emacs recognizes the headers
618@samp{Date} (a manually-specified commit time) and @samp{Fixes} (a
619reference to a bug fixed by the change). Not all version control
620systems recognize all headers: Bazaar recognizes all three headers,
9cff91f8 621while Git, Mercurial, and Monotone recognize only @samp{Author} and
2edef1a0
CY
622@samp{Date}. If you specify a header for a system that does not
623support it, the header is treated as part of the log entry.
05c5ad63 624
9cff91f8 625@kindex C-c C-f @r{(Log Edit mode)}
05c5ad63 626@findex log-edit-show-files
9cff91f8 627@kindex C-c C-d @r{(Log Edit mode)}
05c5ad63 628@findex log-edit-show-diff
1c64e6ed 629 While in the @file{*vc-log*} buffer, the ``current VC fileset'' is
2edef1a0
CY
630considered to be the fileset that will be committed if you type
631@w{@kbd{C-c C-c}}. To view a list of the files in the VC fileset,
632type @w{@kbd{C-c C-f}} (@code{log-edit-show-files}). To view a diff
633of changes between the VC fileset and the version from which you
634started editing (@pxref{Old Revisions}), type @kbd{C-c C-d}
635(@code{log-edit-show-diff}).
1aaae3f3 636
9cff91f8
CY
637@kindex C-c C-a @r{(Log Edit mode)}
638@findex log-edit-insert-changelog
2edef1a0
CY
639 If the VC fileset includes one or more @file{ChangeLog} files
640(@pxref{Change Log}), type @kbd{C-c C-a}
1aaae3f3 641(@code{log-edit-insert-changelog}) to pull the relevant entries into
1c64e6ed 642the @file{*vc-log*} buffer. If the topmost item in each
05c5ad63 643@file{ChangeLog} was made under your user name on the current date,
9cff91f8
CY
644this command searches that item for entries matching the file(s) to be
645committed, and inserts them.
05c5ad63 646@ifnottex
d3098e1e
CY
647If you are using CVS or RCS, see @ref{Change Logs and VC}, for the
648opposite way of working---generating ChangeLog entries from the Log
649Edit buffer.
05c5ad63 650@end ifnottex
05c5ad63 651
9cff91f8 652 To abort a commit, just @strong{don't} type @kbd{C-c C-c} in that
05c5ad63 653buffer. You can switch buffers and do other editing. As long as you
9cff91f8 654don't try to make another commit, the entry you were editing remains
1c64e6ed 655in the @file{*vc-log*} buffer, and you can go back to that buffer at
9cff91f8
CY
656any time to complete the commit.
657
658@kindex M-n @r{(Log Edit mode)}
659@kindex M-p @r{(Log Edit mode)}
660@kindex M-s @r{(Log Edit mode)}
661@kindex M-r @r{(Log Edit mode)}
05c5ad63 662 You can also browse the history of previous log entries to duplicate
9cff91f8
CY
663a commit comment. This can be useful when you want to make several
664commits with similar comments. The commands @kbd{M-n}, @kbd{M-p},
665@kbd{M-s} and @kbd{M-r} for doing this work just like the minibuffer
666history commands (@pxref{Minibuffer History}), except that they are
667used outside the minibuffer.
05c5ad63 668
9cff91f8
CY
669@node Registering
670@subsection Registering a File for Version Control
671
672@table @kbd
673@item C-x v i
674Register the visited file for version control.
675@end table
676
677@kindex C-x v i
678@findex vc-register
679 The command @kbd{C-x v i} (@code{vc-register}) @dfn{registers} each
680file in the current VC fileset, placing it under version control.
681This is essentially equivalent to the action of @kbd{C-x v v} on an
682unregistered VC fileset (@pxref{Basic VC Editing}), except that if the
683VC fileset is already registered, @kbd{C-x v i} signals an error
684whereas @kbd{C-x v v} performs some other action.
685
686 To register a file, Emacs must choose a version control system. For
687a multi-file VC fileset, the VC Directory buffer specifies the system
688to use (@pxref{VC Directory Mode}). For a single-file VC fileset, if
689the file's directory already contains files registered in a version
690control system, or if the directory is part of a directory tree
691controlled by a version control system, Emacs chooses that system. In
692the event that more than one version control system is applicable,
693Emacs uses the one that appears first in the variable
694@iftex
695@code{vc-handled-backends}.
696@end iftex
697@ifnottex
698@code{vc-handled-backends} (@pxref{Customizing VC}).
699@end ifnottex
700If Emacs cannot find a version control system to register the file
701under, it prompts for a repository type, creates a new repository, and
702registers the file into that repository.
703
704 On most version control systems, registering a file with @kbd{C-x v
705i} or @kbd{C-x v v} adds it to the ``working tree'' but not to the
706repository. Such files are labeled as @samp{added} in the VC
707Directory buffer, and show a revision ID of @samp{@@@@} in the mode
708line. To make the registration take effect in the repository, you
2edef1a0
CY
709must perform a commit (@pxref{Basic VC Editing}). Note that a single
710commit can include both file additions and edits to existing files.
9cff91f8
CY
711
712 On a locking-based version control system (@pxref{VCS Merging}),
713registering a file leaves it unlocked and read-only. Type @kbd{C-x v
eceeb5fc 714v} to start editing it.
05c5ad63
CY
715
716@node Old Revisions
717@subsection Examining And Comparing Old Revisions
718
05c5ad63 719@table @kbd
05c5ad63 720@item C-x v =
9cff91f8
CY
721Compare the work files in the current VC fileset with the versions you
722started from (@code{vc-diff}). With a prefix argument, prompt for two
723revisions of the current VC fileset and compare them. You can also
724call this command from a Dired buffer (@pxref{Dired}).
725
726@ifnottex
727@item M-x vc-ediff
0fd2c9a3 728Like @kbd{C-x v =}, but using Ediff. @xref{Top,, Ediff, ediff, The
2edef1a0 729Ediff Manual}.
9cff91f8 730@end ifnottex
ef7b27ef
CY
731
732@item C-x v D
2edef1a0
CY
733Compare the entire working tree to the revision you started from
734(@code{vc-root-diff}). With a prefix argument, prompt for two
735revisions and compare their trees.
9cff91f8
CY
736
737@item C-x v ~
738Prompt for a revision of the current file, and visit it in a separate
739buffer (@code{vc-revision-other-window}).
05c5ad63
CY
740
741@item C-x v g
9cff91f8
CY
742Display an annotated version of the current file: for each line, show
743the latest revision in which it was modified (@code{vc-annotate}).
05c5ad63
CY
744@end table
745
05c5ad63
CY
746@findex vc-diff
747@kindex C-x v =
9cff91f8
CY
748 @kbd{C-x v =} (@code{vc-diff}) displays a @dfn{diff} which compares
749each work file in the current VC fileset to the version(s) from which
750you started editing. The diff is displayed in another window, in a
751Diff mode buffer (@pxref{Diff Mode}) named @file{*vc-diff*}. The
752usual Diff mode commands are available in this buffer. In particular,
753the @kbd{g} (@code{revert-buffer}) command performs the file
754comparison again, generating a new diff.
1aaae3f3 755
05c5ad63
CY
756@kindex C-u C-x v =
757 To compare two arbitrary revisions of the current VC fileset, call
758@code{vc-diff} with a prefix argument: @kbd{C-u C-x v =}. This
9cff91f8
CY
759prompts for two revision IDs (@pxref{VCS Concepts}), and displays a
760diff between those versions of the fileset. This will not work
761reliably for multi-file VC filesets, if the version control system is
762file-based rather than changeset-based (e.g.@: CVS), since then
763revision IDs for different files would not be related in any
764meaningful way.
765
766 Instead of the revision ID, some version control systems let you
767specify revisions in other formats. For instance, under Bazaar you
768can enter @samp{date:yesterday} for the argument to @kbd{C-u C-x v =}
769(and related commands) to specify the first revision committed after
770yesterday. See the documentation of the version control system for
771details.
772
773 If you invoke @kbd{C-x v =} or @kbd{C-u C-x v =} from a Dired buffer
774(@pxref{Dired}), the file listed on the current line is treated as the
775current VC fileset.
776
05c5ad63 777@ifnottex
9cff91f8
CY
778@findex vc-ediff
779 @kbd{M-x vc-ediff} works like @kbd{C-x v =}, except that it uses an
0fd2c9a3 780Ediff session. @xref{Top,, Ediff, ediff, The Ediff Manual}.
05c5ad63 781@end ifnottex
05c5ad63 782
9cff91f8
CY
783@findex vc-root-diff
784@kindex C-x v D
785 @kbd{C-x v D} (@code{vc-root-diff}) is similar to @kbd{C-x v =}, but
2edef1a0
CY
786it displays the changes in the entire current working tree (i.e.@: the
787working tree containing the current VC fileset). If you invoke this
788command from a Dired buffer, it applies to the working tree containing
789the directory.
1c6c854e 790
05c5ad63 791@vindex vc-diff-switches
9cff91f8
CY
792 You can customize the @command{diff} options that @kbd{C-x v =} and
793@kbd{C-x v D} use for generating diffs. The options used are taken
794from the first non-@code{nil} value amongst the variables
795@code{vc-@var{backend}-diff-switches}, @code{vc-diff-switches}, and
796@code{diff-switches} (@pxref{Comparing Files}), in that order. Here,
2edef1a0 797@var{backend} stands for the relevant version control system,
9cff91f8
CY
798e.g.@: @code{bzr} for Bazaar. Since @code{nil} means to check the
799next variable in the sequence, either of the first two may use the
800value @code{t} to mean no switches at all. Most of the
801@code{vc-@var{backend}-diff-switches} variables default to @code{nil},
2edef1a0
CY
802but some default to @code{t}; these are for version control systems
803whose @code{diff} implementations do not accept common diff options,
804such as Subversion.
9cff91f8
CY
805
806@findex vc-revision-other-window
807@kindex C-x v ~
808 To directly examine an older version of a file, visit the work file
809and type @kbd{C-x v ~ @var{revision} @key{RET}}
810(@code{vc-revision-other-window}). This retrieves the file version
811corresponding to @var{revision}, saves it to
812@file{@var{filename}.~@var{revision}~}, and visits it in a separate
813window.
05c5ad63
CY
814
815@findex vc-annotate
816@kindex C-x v g
9cff91f8
CY
817 Many version control systems allow you to view files @dfn{annotated}
818with per-line revision information, by typing @kbd{C-x v g}
05c5ad63 819(@code{vc-annotate}). This creates a new buffer (the ``annotate
9cff91f8
CY
820buffer'') displaying the file's text, with each line colored to show
821how old it is. Red text is new, blue is old, and intermediate colors
822indicate intermediate ages. By default, the color is scaled over the
823full range of ages, such that the oldest changes are blue, and the
824newest changes are red.
05c5ad63
CY
825
826 When you give a prefix argument to this command, Emacs reads two
9cff91f8
CY
827arguments using the minibuffer: the revision to display and annotate
828(instead of the current file contents), and the time span in days the
829color range should cover.
05c5ad63
CY
830
831 From the annotate buffer, these and other color scaling options are
832available from the @samp{VC-Annotate} menu. In this buffer, you can
833also use the following keys to browse the annotations of past revisions,
834view diffs, or view log entries:
835
836@table @kbd
837@item p
9cff91f8
CY
838Annotate the previous revision, i.e.@: the revision before the one
839currently annotated. A numeric prefix argument is a repeat count, so
840@kbd{C-u 10 p} would take you back 10 revisions.
05c5ad63
CY
841
842@item n
9cff91f8
CY
843Annotate the next revision, i.e.@: the revision after the one
844currently annotated. A numeric prefix argument is a repeat count.
05c5ad63
CY
845
846@item j
847Annotate the revision indicated by the current line.
848
849@item a
850Annotate the revision before the one indicated by the current line.
851This is useful to see the state the file was in before the change on
852the current line was made.
853
854@item f
855Show in a buffer the file revision indicated by the current line.
856
857@item d
858Display the diff between the current line's revision and the previous
859revision. This is useful to see what the current line's revision
860actually changed in the file.
861
862@item D
863Display the diff between the current line's revision and the previous
864revision for all files in the changeset (for VC systems that support
865changesets). This is useful to see what the current line's revision
866actually changed in the tree.
867
868@item l
869Show the log of the current line's revision. This is useful to see
870the author's description of the changes in the revision on the current
871line.
872
873@item w
874Annotate the working revision--the one you are editing. If you used
875@kbd{p} and @kbd{n} to browse to other revisions, use this key to
876return to your working revision.
877
878@item v
879Toggle the annotation visibility. This is useful for looking just at
880the file contents without distraction from the annotations.
881@end table
882
c0c035fa 883@node VC Change Log
9cff91f8 884@subsection VC Change Log
05c5ad63
CY
885
886@table @kbd
887@item C-x v l
bc859d5f 888Display the change history for the current fileset
c0c035fa
CY
889(@code{vc-print-log}).
890
891@item C-x v L
892Display the change history for the current repository
893(@code{vc-print-root-log}).
a41c8660
CY
894
895@item C-x v I
9eb25ee8 896Display the changes that a pull operation will retrieve
a41c8660
CY
897(@code{vc-log-incoming}).
898
899@item C-x v O
900Display the changes that will be sent by the next push operation
901(@code{vc-log-outgoing}).
05c5ad63
CY
902@end table
903
904@kindex C-x v l
905@findex vc-print-log
c0c035fa 906 The command @kbd{C-x v l} (@code{vc-print-log}) displays a buffer
1c64e6ed 907named @file{*vc-change-log*}, showing the history of changes made to
9cff91f8
CY
908the current file, including who made the changes, the dates, and the
909log entry for each change (these are the same log entries you would
1c64e6ed 910enter via the @file{*vc-log*} buffer; @pxref{Log Buffer}). Point is
9cff91f8
CY
911centered at the revision of the file currently being visited. With a
912prefix argument, the command prompts for the revision to center on,
913and the maximum number of revisions to display.
914
915 If you call @kbd{C-x v l} from a VC Directory buffer (@pxref{VC
916Directory Mode}) or a Dired buffer (@pxref{Dired}), it applies to the
917file listed on the current line.
c0c035fa
CY
918
919@findex vc-print-root-log
9cff91f8
CY
920@findex log-view-toggle-entry-display
921 @kbd{C-x v L} (@code{vc-print-root-log}) displays a
1c64e6ed 922@file{*vc-change-log*} buffer showing the history of the entire
9cff91f8
CY
923version-controlled directory tree (RCS, SCCS, and CVS do not support
924this feature). With a prefix argument, the command prompts for the
925maximum number of revisions to display.
926
927 The @kbd{C-x v L} history is shown in a compact form, usually
bc859d5f
CY
928showing only the first line of each log entry. However, you can type
929@key{RET} (@code{log-view-toggle-entry-display}) in the
1c64e6ed 930@file{*vc-change-log*} buffer to reveal the entire log entry for the
9cff91f8 931revision at point. A second @key{RET} hides it again.
05c5ad63 932
2edef1a0 933 On a decentralized version control system, the @kbd{C-x v I}
a41c8660
CY
934(@code{vc-log-incoming}) command displays a log buffer showing the
935changes that will be applied, the next time you run the version
936control system's ``pull'' command to get new revisions from another
d3098e1e
CY
937repository (@pxref{VC Pull}). This other repository is the default
938one from which changes are pulled, as defined by the version control
939system; with a prefix argument, @code{vc-log-incoming} prompts for a
940specific repository. Similarly, @kbd{C-x v O}
941(@code{vc-log-outgoing}) shows the changes that will be sent to
942another repository, the next time you run the ``push'' command; with a
943prefix argument, it prompts for a specific destination repository.
a41c8660 944
1c64e6ed 945 In the @file{*vc-change-log*} buffer, you can use the following keys
9cff91f8
CY
946to move between the logs of revisions and of files, and to examine and
947compare past revisions (@pxref{Old Revisions}):
05c5ad63
CY
948
949@table @kbd
950@item p
9cff91f8 951Move to the previous revision entry. (Revision entries in the log
05c5ad63
CY
952buffer are usually in reverse-chronological order, so the previous
953revision-item usually corresponds to a newer revision.) A numeric
954prefix argument is a repeat count.
955
956@item n
9cff91f8
CY
957Move to the next revision entry. A numeric prefix argument is a
958repeat count.
05c5ad63
CY
959
960@item P
9cff91f8
CY
961Move to the log of the previous file, if showing logs for a multi-file
962VC fileset. Otherwise, just move to the beginning of the log. A
963numeric prefix argument is a repeat count.
05c5ad63
CY
964
965@item N
9cff91f8
CY
966Move to the log of the next file, if showing logs for a multi-file VC
967fileset. A numeric prefix argument is a repeat count.
05c5ad63
CY
968
969@item a
9cff91f8 970Annotate the revision on the current line (@pxref{Old Revisions}).
05c5ad63
CY
971
972@item e
973Modify the change comment displayed at point. Note that not all VC
974systems support modifying change comments.
975
976@item f
9cff91f8 977Visit the revision indicated at the current line.
05c5ad63
CY
978
979@item d
9cff91f8
CY
980Display a diff between the revision at point and the next earlier
981revision, for the specific file.
05c5ad63
CY
982
983@item D
9cff91f8
CY
984Display the changeset diff between the revision at point and the next
985earlier revision. This shows the changes to all files made in that
986revision.
987
988@item @key{RET}
989In a compact-style log buffer (e.g.@: the one created by @kbd{C-x v
990L}), toggle between showing and hiding the full log entry for the
991revision at point.
05c5ad63
CY
992@end table
993
c0c035fa
CY
994@vindex vc-log-show-limit
995Because fetching many log entries can be slow, the
1c64e6ed 996@file{*vc-change-log*} buffer displays no more than 2000 revisions by
c0c035fa
CY
997default. The variable @code{vc-log-show-limit} specifies this limit;
998if you set the value to zero, that removes the limit. You can also
999increase the number of revisions shown in an existing
1c64e6ed 1000@file{*vc-change-log*} buffer by clicking on the @samp{Show 2X
c0c035fa
CY
1001entries} or @samp{Show unlimited entries} buttons at the end of the
1002buffer. However, RCS, SCCS, and CVS do not support this feature.
1003
05c5ad63 1004@node VC Undo
9cff91f8 1005@subsection Undoing Version Control Actions
05c5ad63
CY
1006
1007@table @kbd
1008@item C-x v u
bc859d5f
CY
1009Revert the work file(s) in the current VC fileset to the last revision
1010(@code{vc-revert}).
05c5ad63
CY
1011@end table
1012
bc859d5f
CY
1013@c `C-x v c' (vc-rollback) was removed, since it's RCS/SCCS specific.
1014
05c5ad63 1015@kindex C-x v u
bc859d5f
CY
1016@findex vc-revert
1017@vindex vc-revert-show-diff
1018 If you want to discard all the changes you have made to the current
1019VC fileset, type @kbd{C-x v u} (@code{vc-revert-buffer}). This shows
1020you a diff between the work file(s) and the revision from which you
1021started editing, and asks for confirmation for discarding the changes.
1022If you agree, the fileset is reverted. If you don't want @kbd{C-x v
1023u} to show a diff, set the variable @code{vc-revert-show-diff} to
1024@code{nil} (you can still view the diff directly with @kbd{C-x v =};
1025@pxref{Old Revisions}). Note that @kbd{C-x v u} cannot be reversed
1026with the usual undo commands (@pxref{Undo}), so use it with care.
1027
1028 On locking-based version control systems, @kbd{C-x v u} leaves files
1029unlocked; you must lock again to resume editing. You can also use
1030@kbd{C-x v u} to unlock a file if you lock it and then decide not to
1031change it.
05c5ad63
CY
1032
1033@node VC Directory Mode
1034@subsection VC Directory Mode
1035
bc859d5f
CY
1036@cindex VC Directory buffer
1037 The @dfn{VC Directory buffer} is a specialized buffer for viewing
1038the version control statuses of the files in a directory tree, and
1039performing version control operations on those files. In particular,
1040it is used to specify multi-file VC filesets for commands like
1041@w{@kbd{C-x v v}} to act on (@pxref{VC Directory Commands}).
1042
05c5ad63
CY
1043@kindex C-x v d
1044@findex vc-dir
bc859d5f
CY
1045 To use the VC Directory buffer, type @kbd{C-x v d} (@code{vc-dir}).
1046This reads a directory name using the minibuffer, and switches to a VC
1047Directory buffer for that directory. By default, the buffer is named
1c64e6ed 1048@file{*vc-dir*}. Its contents are described
bc859d5f
CY
1049@iftex
1050below.
1051@end iftex
1052@ifnottex
1053in @ref{VC Directory Buffer}.
1054@end ifnottex
05c5ad63 1055
bc859d5f
CY
1056 The @code{vc-dir} command automatically detects the version control
1057system to be used in the specified directory. In the event that more
1058than one system is being used in the directory, you should invoke the
1059command with a prefix argument, @kbd{C-u C-x v d}; this prompts for
1060the version control system which the VC Directory buffer should use.
1061
1062@ifnottex
05c5ad63
CY
1063@cindex PCL-CVS
1064@pindex cvs
1065@cindex CVS directory mode
bc859d5f
CY
1066 In addition to the VC Directory buffer, Emacs has a similar facility
1067called PCL-CVS which is specialized for CVS. @xref{Top, , About
1068PCL-CVS, pcl-cvs, PCL-CVS --- The Emacs Front-End to CVS}.
1069@end ifnottex
a11d3737
RS
1070
1071@menu
1072* Buffer: VC Directory Buffer. What the buffer looks like and means.
1073* Commands: VC Directory Commands. Commands to use in a VC directory buffer.
1074@end menu
1075
1076@node VC Directory Buffer
1077@subsubsection The VC Directory Buffer
05c5ad63
CY
1078
1079 The VC Directory buffer contains a list of version-controlled files
bc859d5f
CY
1080and their version control statuses. It lists files in the current
1081directory (the one specified when you called @kbd{C-x v d}) and its
1082subdirectories, but only those with a ``noteworthy'' status. Files
1083that are up-to-date (i.e.@: the same as in the repository) are
1084omitted. If all the files in a subdirectory are up-to-date, the
1085subdirectory is not listed either. As an exception, if a file has
1086become up-to-date as a direct result of a VC command, it is listed.
1087
1088 Here is an example of a VC Directory buffer listing:
05c5ad63
CY
1089
1090@smallexample
1091@group
bc859d5f
CY
1092 ./
1093 edited configure.ac
1094* added README
1095 unregistered temp.txt
1096 src/
1097* edited src/main.c
05c5ad63
CY
1098@end group
1099@end smallexample
1100
1101@noindent
bc859d5f
CY
1102Two work files have been modified but not committed:
1103@file{configure.ac} in the current directory, and @file{foo.c} in the
1104@file{src/} subdirectory. The file named @file{README} has been added
1105but is not yet committed, while @file{temp.txt} is not under version
1106control (@pxref{Registering}).
1107
1108The @samp{*} characters next to the entries for @file{README} and
1109@file{src/main.c} indicate that the user has marked out these files as
1110the current VC fileset
672fe986 1111@iftex
bc859d5f 1112(see below).
672fe986
GM
1113@end iftex
1114@ifnottex
bc859d5f
CY
1115(@pxref{VC Directory Commands}).
1116@end ifnottex
1117
1118 The above example is typical for a decentralized version control
1119system like Bazaar, Git, or Mercurial. Other systems can show other
1120statuses. For instance, CVS shows the @samp{needs-update} status if
1121the repository has changes that have not been applied to the work
1122file. RCS and SCCS show the name of the user locking a file as its
1123status.
1124
1125@ifnottex
1126@vindex vc-stay-local
1127@vindex vc-cvs-stay-local
1128 On CVS and Subversion, the @code{vc-dir} command normally contacts
1129the repository, which may be on a remote machine, to check for
1130updates. If you change the variable @code{vc-stay-local} or
1131@code{vc-cvs-stay-local} (for CVS) to @code{nil} (@pxref{CVS
1132Options}), then Emacs avoids contacting a remote repository when
1133generating the VC Directory buffer (it will still contact it when
1134necessary, e.g.@: when doing a commit). This may be desirable if you
1135are working offline or the network is slow.
672fe986 1136@end ifnottex
05c5ad63
CY
1137
1138@vindex vc-directory-exclusion-list
bc859d5f 1139 The VC Directory buffer omits subdirectories listed in the variable
2edef1a0
CY
1140@code{vc-directory-exclusion-list}. Its default value contains
1141directories that are used internally by version control systems.
05c5ad63 1142
05c5ad63
CY
1143@node VC Directory Commands
1144@subsubsection VC Directory Commands
1145
bc859d5f
CY
1146 Emacs provides several commands for navigating the VC Directory
1147buffer, and for ``marking'' files as belonging to the current VC
1148fileset.
1149
1150@table @kbd
1151@item n
1152@itemx @key{SPC}
1153Move point to the next entry (@code{vc-dir-next-line}).
05c5ad63 1154
bc859d5f
CY
1155@item p
1156Move point to the previous entry (@code{vc-dir-previous-line}).
05c5ad63 1157
bc859d5f
CY
1158@item @key{TAB}
1159Move to the next directory entry (@code{vc-dir-next-directory}).
05c5ad63 1160
bc859d5f
CY
1161@item S-@key{TAB}
1162Move to the previous directory entry
1163(@code{vc-dir-previous-directory}).
05c5ad63 1164
bc859d5f
CY
1165@item @key{RET}
1166@itemx f
1167Visit the file or directory listed on the current line
1168(@code{vc-dir-find-file}).
1169
1170@item o
1171Visit the file or directory on the current line, in a separate window
1172(@code{vc-dir-find-file-other-window}).
1173
1174@item m
1175Mark the file or directory on the current line (@code{vc-dir-mark}),
1176putting it in the current VC fileset. If the region is active, mark
1177all files in the region.
1178
1179A file cannot be marked with this command if it is already in a marked
1180directory, or one of its subdirectories. Similarly, a directory
1181cannot be marked with this command if any file in its tree is marked.
1182
1183@item M
1184If point is on a file entry, mark all files with the same status; if
1185point is on a directory entry, mark all files in that directory tree
1186(@code{vc-dir-mark-all-files}). With a prefix argument, mark all
1187listed files and directories.
1188
c40a7de7
CY
1189@kindex q @r{(VC Directory)}
1190@findex quit-window
1191@item q
1192Bury the VC Directory buffer, and delete its window if the window was
1193created just for that buffer.
1194
bc859d5f
CY
1195@item u
1196Unmark the file or directory on the current line. If the region is
1197active, unmark all the files in the region (@code{vc-dir-unmark}).
1198
1199@item U
3d992aa0 1200If point is on a file entry, unmark all files with the same status; if
bc859d5f
CY
1201point is on a directory entry, unmark all files in that directory tree
1202(@code{vc-dir-unmark-all-files}). With a prefix argument, unmark all
1203files and directories.
05c5ad63 1204
bc859d5f
CY
1205@item x
1206Hide files with @samp{up-to-date} status
1207(@code{vc-dir-hide-up-to-date}).
05c5ad63 1208
bc859d5f
CY
1209@item q
1210Quit the VC Directory buffer, and bury it (@code{quit-window}).
1211@end table
05c5ad63 1212
bc859d5f
CY
1213@findex vc-dir-mark
1214@findex vc-dir-mark-all-files
1215 While in the VC Directory buffer, all the files that you mark with
1216@kbd{m} (@code{vc-dir-mark}) or @kbd{M} (@code{vc-dir-mark}) are in
1217the current VC fileset. If you mark a directory entry with @kbd{m},
1218all the listed files in that directory tree are in the current VC
1219fileset. The files and directories that belong to the current VC
1220fileset are indicated with a @samp{*} character in the VC Directory
1221buffer, next to their VC status. In this way, you can set up a
1222multi-file VC fileset to be acted on by VC commands like @w{@kbd{C-x v
1223v}} (@pxref{Basic VC Editing}), @w{@kbd{C-x v =}} (@pxref{Old
1224Revisions}), and @w{@kbd{C-x v u}} (@pxref{VC Undo}).
1225
1226 The VC Directory buffer also defines some single-key shortcuts for
1227VC commands with the @kbd{C-x v} prefix: @kbd{=}, @kbd{+}, @kbd{l},
1228@kbd{i}, and @kbd{v}.
1229
1230 For example, you can commit a set of edited files by opening a VC
1231Directory buffer, where the files are listed with the @samp{edited}
1232status; marking the files; and typing @kbd{v} or @kbd{C-x v v}
1233(@code{vc-next-action}). If the version control system is
1234changeset-based, Emacs will commit the files in a single revision.
1235
1236 While in the VC Directory buffer, you can also perform search and
1237replace on the current VC fileset, with the following commands:
05c5ad63 1238
bc859d5f
CY
1239@table @kbd
1240@item S
1241Search the fileset (@code{vc-dir-search}).
05c5ad63 1242
bc859d5f
CY
1243@item Q
1244Do a regular expression query replace on the fileset
1245(@code{vc-dir-query-replace-regexp}).
05c5ad63 1246
bc859d5f
CY
1247@item M-s a C-s
1248Do an incremental search on the fileset (@code{vc-dir-isearch}).
05c5ad63 1249
bc859d5f
CY
1250@item M-s a C-M-s
1251Do an incremental regular expression search on the fileset
1252(@code{vc-dir-isearch-regexp}).
1253@end table
05c5ad63 1254
bc859d5f
CY
1255@noindent
1256Apart from acting on multiple files, these commands behave much like
1257their single-buffer counterparts (@pxref{Search}).
05c5ad63 1258
a77fe20c
GM
1259@cindex stashes in version control
1260@cindex shelves in version control
bc859d5f
CY
1261 The above commands are also available via the menu bar, and via a
1262context menu invoked by @kbd{Mouse-2}. Furthermore, some VC backends
1263use the menu to provide extra backend-specific commands. For example,
1264Git and Bazaar allow you to manipulate @dfn{stashes} and @dfn{shelves}
1265(where are a way to temporarily put aside uncommitted changes, and
1266bring them back at a later time).
05c5ad63
CY
1267
1268@node Branches
2edef1a0 1269@subsection Version Control Branches
05c5ad63 1270@cindex branch (version control)
2edef1a0
CY
1271
1272 One use of version control is to support multiple independent lines
1273of development, which are called @dfn{branches}. Branches are used
1274for maintaining separate ``stable'' and ``development'' versions of a
1275program, and for developing unrelated features in isolation from one
1276another.
1277
1278 VC's support for branch operations is currently fairly limited. For
1279decentralized version control systems, it provides commands for
1280@dfn{updating} one branch with the contents of another, and for
1281@dfn{merging} the changes made to two different branches
1282(@pxref{Merging}). For centralized version control systems, it
1283supports checking out different branches and committing into new or
1284different branches.
05c5ad63
CY
1285
1286@menu
1287* Switching Branches:: How to get to another existing branch.
2edef1a0 1288* VC Pull:: Updating the contents of a branch.
05c5ad63 1289* Merging:: Transferring changes between branches.
2edef1a0 1290* Creating Branches:: How to start a new branch.
05c5ad63
CY
1291@end menu
1292
1293@node Switching Branches
1294@subsubsection Switching between Branches
1295
2edef1a0
CY
1296 The various version control systems differ in how branches are
1297implemented, and these differences cannot be entirely concealed by VC.
1298
1299 On some decentralized version control systems, including Bazaar and
1300Mercurial in its normal mode of operation, each branch has its own
1301working directory tree, so switching between branches just involves
1302switching directories. On Git, switching between branches is done
1303using the @command{git branch} command, which changes the contents of
1304the working tree itself.
1305
1306 On centralized version control systems, you can switch between
1307branches by typing @kbd{C-u C-x v v} in an up-to-date work file
1308(@pxref{Advanced C-x v v}), and entering the revision ID for a
1309revision on another branch. On CVS, for instance, revisions on the
1310@dfn{trunk} (the main line of development) normally have IDs of the
1311form 1.1, 1.2, 1.3, @dots{}, while the first branch created from (say)
1312revision 1.2 has revision IDs 1.2.1.1, 1.2.1.2, @dots{}, the second
1313branch created from revision 1.2 has revision IDs 1.2.2.1, 1.2.2.2,
1314@dots{}, and so forth. You can also specify the @dfn{branch ID},
1315which is a branch revision ID omitting its final component
1316(e.g.@: 1.2.1), to switch to the latest revision on that branch.
1317
1318 On a locking-based system, switching to a different branch also
1319unlocks (write-protects) the working tree.
1320
1321 Once you have switched to a branch, VC commands will apply to that
1322branch until you switch away; for instance, any VC filesets that you
1323commit will be committed to that specific branch.
1324
1325@node VC Pull
1326@subsubsection Pulling Changes into a Branch
05c5ad63 1327
2edef1a0
CY
1328@table @kbd
1329@itemx C-x v +
1330On a decentralized version control system, update the current branch
1331by ``pulling in'' changes from another location.
05c5ad63 1332
2edef1a0
CY
1333On a centralized version control system, update the current VC
1334fileset.
1335@end table
05c5ad63 1336
2edef1a0
CY
1337@kindex C-x v +
1338@findex vc-pull
1339 On a decentralized version control system, the command @kbd{C-x v +}
1340(@code{vc-pull}) updates the current branch and working tree. It is
1341typically used to update a copy of a remote branch. If you supply a
1342prefix argument, the command prompts for the exact version control
1343command to use, which lets you specify where to pull changes from.
1344Otherwise, it pulls from a default location determined by the version
1345control system.
05c5ad63 1346
d3098e1e
CY
1347 Amongst decentralized version control systems, @kbd{C-x v +} is
1348currently supported only by Bazaar, Git, and Mercurial. On Bazaar, it
2edef1a0
CY
1349calls @command{bzr pull} for ordinary branches (to pull from a master
1350branch into a mirroring branch), and @command{bzr update} for a bound
1351branch (to pull from a central repository). On Git, it calls
1352@command{git pull} to fetch changes from a remote repository and merge
1353it into the current branch. On Mercurial, it calls @command{hg pull
1354-u} to fetch changesets from the default remote repository and update
1355the working directory.
05c5ad63 1356
d3098e1e
CY
1357 Prior to pulling, you can use @kbd{C-x v I} (@code{vc-log-incoming})
1358to view a log buffer of the changes to be applied. @xref{VC Change
1359Log}.
1360
2edef1a0
CY
1361 On a centralized version control system like CVS, @kbd{C-x v +}
1362updates the current VC fileset from the repository.
05c5ad63
CY
1363
1364@node Merging
1365@subsubsection Merging Branches
05c5ad63 1366@cindex merging changes
05c5ad63
CY
1367
1368@table @kbd
2edef1a0
CY
1369@itemx C-x v m
1370On a decentralized version control system, merge changes from another
1371branch into the current one.
1372
1373On a centralized version control system, merge changes from another
1374branch into the current VC fileset.
05c5ad63
CY
1375@end table
1376
2edef1a0
CY
1377 While developing a branch, you may sometimes need to @dfn{merge} in
1378changes that have already been made in another branch. This is not a
1379trivial operation, as overlapping changes may have been made to the
1380two branches.
1381
1382 On a decentralized version control system, merging is done with the
1383command @kbd{C-x v m} (@code{vc-merge}). On Bazaar, this prompts for
1384the exact arguments to pass to @command{bzr merge}, offering a
1385sensible default if possible. On Git, this prompts for the name of a
1386branch to merge from, with completion (based on the branch names known
1387to the current repository). The output from running the merge command
1388is shown in a separate buffer.
1389
1390 On a centralized version control system like CVS, @kbd{C-x v m}
1391prompts for a branch ID, or a pair of revision IDs (@pxref{Switching
1392Branches}); then it finds the changes from that branch, or the changes
1393between the two revisions you specified, and merges those changes into
1394the current VC fileset. If you just type @key{RET}, Emacs simply
1395merges any changes that were made on the same branch since you checked
1396the file out.
05c5ad63
CY
1397
1398@cindex conflicts
1399@cindex resolving conflicts
2edef1a0
CY
1400 Immediately after performing a merge, only the working tree is
1401modified, and you can review the changes produced by the merge with
1402@kbd{C-x v D} and related commands (@pxref{Old Revisions}). If the
1403two branches contained overlapping changes, merging produces a
1404@dfn{conflict}; a warning appears in the output of the merge command,
1405and @dfn{conflict markers} are inserted into each affected work file,
1406surrounding the two sets of conflicting changes. You must then
1407resolve the conflict by editing the conflicted files. Once you are
1408done, the modified files must be committed in the usual way for the
1409merge to take effect (@pxref{Basic VC Editing}).
05c5ad63 1410
2edef1a0
CY
1411@node Creating Branches
1412@subsubsection Creating New Branches
1413
1414 On centralized version control systems like CVS, Emacs supports
1415creating new branches as part of a commit operation. When committing
1416a modified VC fileset, type @kbd{C-u C-x v v} (@code{vc-next-action}
1417with a prefix argument; @pxref{Advanced C-x v v}). Then Emacs prompts
1418for a revision ID for the new revision. You should specify a suitable
1419branch ID for a branch starting at the current revision. For example,
1420if the current revision is 2.5, the branch ID should be 2.5.1, 2.5.2,
1421and so on, depending on the number of existing branches at that point.
1422
1423 To create a new branch at an older revision (one that is no longer
1424the head of a branch), first select that revision (@pxref{Switching
1425Branches}). Your procedure will then differ depending on whether you
1426are using a locking or merging-based VCS.
1427
1428 On a locking VCS, you will need to lock the old revision branch with
1429@kbd{C-x v v}. You'll be asked to confirm, when you lock the old
1430revision, that you really mean to create a new branch---if you say no,
1431you'll be offered a chance to lock the latest revision instead. On a
1432merging-based VCS you will skip this step.
1433
1434 Then make your changes and type @kbd{C-x v v} again to commit a new
1435revision. This creates a new branch starting from the selected
1436revision.
1437
1438 After the branch is created, subsequent commits create new revisions
1439on that branch. To leave the branch, you must explicitly select a
1440different revision with @kbd{C-u C-x v v}.
05c5ad63
CY
1441
1442@ifnottex
1443@include vc1-xtra.texi
1444@end ifnottex
1445
8cf51b2c
GM
1446@node Change Log
1447@section Change Logs
1448
a11d3737 1449@cindex change log
2785d024
CY
1450 Many software projects keep a @dfn{change log}. This is a file,
1451normally named @file{ChangeLog}, containing a chronological record of
1452when and how the program was changed. Sometimes, there are several
1453change log files, each recording the changes in one directory or
1454directory tree.
8cf51b2c 1455
a11d3737
RS
1456@menu
1457* Change Log Commands:: Commands for editing change log files.
1458* Format of ChangeLog:: What the change log file looks like.
1459@end menu
1460
1461@node Change Log Commands
1462@subsection Change Log Commands
1463
8cf51b2c
GM
1464@kindex C-x 4 a
1465@findex add-change-log-entry-other-window
1466 The Emacs command @kbd{C-x 4 a} adds a new entry to the change log
1467file for the file you are editing
1468(@code{add-change-log-entry-other-window}). If that file is actually
1469a backup file, it makes an entry appropriate for the file's
1470parent---that is useful for making log entries for functions that
1471have been deleted in the current version.
1472
1473 @kbd{C-x 4 a} visits the change log file and creates a new entry
1474unless the most recent entry is for today's date and your name. It
1475also creates a new item for the current file. For many languages, it
1476can even guess the name of the function or other object that was
1477changed.
1478
1479@vindex add-log-keep-changes-together
1480 When the variable @code{add-log-keep-changes-together} is
1481non-@code{nil}, @kbd{C-x 4 a} adds to any existing item for the file
1482rather than starting a new item.
1483
bd106056
CS
1484You can combine multiple changes of the same nature. If you don't
1485enter any text after the initial @kbd{C-x 4 a}, any subsequent
2785d024 1486@kbd{C-x 4 a} adds another symbol to the change log entry.
bd106056 1487
8cf51b2c
GM
1488@vindex add-log-always-start-new-record
1489 If @code{add-log-always-start-new-record} is non-@code{nil},
1490@kbd{C-x 4 a} always makes a new entry, even if the last entry
1491was made by you and on the same date.
1492
1493@vindex change-log-version-info-enabled
1494@vindex change-log-version-number-regexp-list
1495@cindex file version in change log entries
1496 If the value of the variable @code{change-log-version-info-enabled}
1497is non-@code{nil}, @kbd{C-x 4 a} adds the file's version number to the
1498change log entry. It finds the version number by searching the first
1499ten percent of the file, using regular expressions from the variable
1500@code{change-log-version-number-regexp-list}.
1501
1502@cindex Change Log mode
1503@findex change-log-mode
1504 The change log file is visited in Change Log mode. In this major
1505mode, each bunch of grouped items counts as one paragraph, and each
1506entry is considered a page. This facilitates editing the entries.
1507@kbd{C-j} and auto-fill indent each new line like the previous line;
1508this is convenient for entering the contents of an entry.
1509
d8ff7692
TZ
1510You can use the @code{next-error} command (by default bound to
1511@kbd{C-x `}) to move between entries in the Change Log, when Change
1512Log mode is on. You will jump to the actual site in the file that was
1513changed, not just to the next Change Log entry. You can also use
1514@code{previous-error} to move back in the same list.
1515
8cf51b2c
GM
1516@findex change-log-merge
1517 You can use the command @kbd{M-x change-log-merge} to merge other
1518log files into a buffer in Change Log Mode, preserving the date
1519ordering of entries.
1520
fef3436e
CY
1521 Version control systems are another way to keep track of changes in
1522your program and keep a change log. In the VC log buffer, typing
1523@kbd{C-c C-a} (@code{log-edit-insert-changelog}) inserts the relevant
2785d024 1524Change Log entry, if one exists. @xref{Log Buffer}.
8cf51b2c
GM
1525
1526@node Format of ChangeLog
05c5ad63 1527@subsection Format of ChangeLog
8cf51b2c 1528
bd106056
CS
1529 A change log entry starts with a header line that contains the
1530current date, your name (taken from the variable
1531@code{add-log-full-name}), and your email address (taken from the
1532variable @code{add-log-mailing-address}). Aside from these header
1533lines, every line in the change log starts with a space or a tab. The
1534bulk of the entry consists of @dfn{items}, each of which starts with a
1535line starting with whitespace and a star. Here are two entries, both
1536dated in May 1993, with two items and one item respectively.
8cf51b2c
GM
1537
1538@iftex
1539@medbreak
1540@end iftex
1541@smallexample
15421993-05-25 Richard Stallman <rms@@gnu.org>
1543
1544 * man.el: Rename symbols `man-*' to `Man-*'.
1545 (manual-entry): Make prompt string clearer.
1546
1547 * simple.el (blink-matching-paren-distance):
1548 Change default to 12,000.
1549
15501993-05-24 Richard Stallman <rms@@gnu.org>
1551
1552 * vc.el (minor-mode-map-alist): Don't use it if it's void.
1553 (vc-cancel-version): Doc fix.
1554@end smallexample
1555
1556 One entry can describe several changes; each change should have its
1557own item, or its own line in an item. Normally there should be a
1558blank line between items. When items are related (parts of the same
1559change, in different places), group them by leaving no blank line
1560between them.
1561
1562 You should put a copyright notice and permission notice at the
1563end of the change log file. Here is an example:
1564
1565@smallexample
1566Copyright 1997, 1998 Free Software Foundation, Inc.
1567Copying and distribution of this file, with or without modification, are
1568permitted provided the copyright notice and this notice are preserved.
1569@end smallexample
1570
1571@noindent
1572Of course, you should substitute the proper years and copyright holder.
1573
1574@node Tags
1575@section Tags Tables
7ff926e0 1576@cindex tags and tag tables
8cf51b2c 1577
7be4f7c0 1578 A @dfn{tag} is a reference to a subunit in a program or in a
3d992aa0
CY
1579document. In source code, tags reference syntactic elements of the
1580program: functions, subroutines, data types, macros, etc. In a
7be4f7c0 1581document, tags reference chapters, sections, appendices, etc. Each
6c4cfaf8 1582tag specifies the name of the file where the corresponding subunit is
7be4f7c0
EZ
1583defined, and the position of the subunit's definition in that file.
1584
1585 A @dfn{tags table} records the tags extracted by scanning the source
1586code of a certain program or a certain document. Tags extracted from
6c4cfaf8
EZ
1587generated files reference the original files, rather than the
1588generated files that were scanned during tag extraction. Examples of
1589generated files include C files generated from Cweb source files, from
1590a Yacc parser, or from Lex scanner definitions; @file{.i} preprocessed
1591C files; and Fortran files produced by preprocessing @file{.fpp}
1592source files.
1593
3d992aa0
CY
1594@cindex etags
1595 To produce a tags table, you run the @command{etags} shell command
1596on a document or the source code file. The @samp{etags} program
1597writes the tags to a @dfn{tags table file}, or @dfn{tags file} in
1598short. The conventional name for a tags file is @file{TAGS}.
1599@xref{Create Tags Table}.
6347c602 1600
3d992aa0
CY
1601 Emacs provides many commands for searching and replacing using the
1602information recorded in tags tables. For instance, the @kbd{M-.}
1603(@code{find-tag}) jumps to the location of a specified function
1604definition in its source file. @xref{Find Tag}.
8cf51b2c
GM
1605
1606@cindex C++ class browser, tags
1607@cindex tags, C++
1608@cindex class browser, C++
1609@cindex Ebrowse
3d992aa0
CY
1610 The Ebrowse facility is similar to @command{etags} but specifically
1611tailored for C++. @xref{Top,, Ebrowse, ebrowse, Ebrowse User's
1612Manual}. The Semantic package provides another way to generate and
1613use tags, separate from the @command{etags} facility.
1614@xref{Semantic}.
8cf51b2c
GM
1615
1616@menu
8838673e 1617* Tag Syntax:: Tag syntax for various types of code and text files.
3d992aa0 1618* Create Tags Table:: Creating a tags table with @command{etags}.
8cf51b2c 1619* Etags Regexps:: Create arbitrary tags using regular expressions.
8838673e
GM
1620* Select Tags Table:: How to visit a tags table.
1621* Find Tag:: Commands to find the definition of a specific tag.
1622* Tags Search:: Using a tags table for searching and replacing.
3d992aa0 1623* List Tags:: Using tags for completion, and listing them.
8cf51b2c
GM
1624@end menu
1625
1626@node Tag Syntax
1627@subsection Source File Tag Syntax
1628
1629 Here is how tag syntax is defined for the most popular languages:
1630
1631@itemize @bullet
1632@item
1633In C code, any C function or typedef is a tag, and so are definitions of
1634@code{struct}, @code{union} and @code{enum}.
1635@code{#define} macro definitions, @code{#undef} and @code{enum}
1636constants are also
1637tags, unless you specify @samp{--no-defines} when making the tags table.
1638Similarly, global variables are tags, unless you specify
1639@samp{--no-globals}, and so are struct members, unless you specify
1640@samp{--no-members}. Use of @samp{--no-globals}, @samp{--no-defines}
1641and @samp{--no-members} can make the tags table file much smaller.
1642
1643You can tag function declarations and external variables in addition
1644to function definitions by giving the @samp{--declarations} option to
3d992aa0 1645@command{etags}.
8cf51b2c
GM
1646
1647@item
1648In C++ code, in addition to all the tag constructs of C code, member
1649functions are also recognized; member variables are also recognized,
1650unless you use the @samp{--no-members} option. Tags for variables and
1651functions in classes are named @samp{@var{class}::@var{variable}} and
1652@samp{@var{class}::@var{function}}. @code{operator} definitions have
1653tag names like @samp{operator+}.
1654
1655@item
1656In Java code, tags include all the constructs recognized in C++, plus
1657the @code{interface}, @code{extends} and @code{implements} constructs.
1658Tags for variables and functions in classes are named
1659@samp{@var{class}.@var{variable}} and @samp{@var{class}.@var{function}}.
1660
1661@item
c1dabff0 1662In @LaTeX{} documents, the arguments for @code{\chapter},
8cf51b2c
GM
1663@code{\section}, @code{\subsection}, @code{\subsubsection},
1664@code{\eqno}, @code{\label}, @code{\ref}, @code{\cite},
1665@code{\bibitem}, @code{\part}, @code{\appendix}, @code{\entry},
1666@code{\index}, @code{\def}, @code{\newcommand}, @code{\renewcommand},
3d992aa0 1667@code{\newenvironment} and @code{\renewenvironment} are tags.
8cf51b2c
GM
1668
1669Other commands can make tags as well, if you specify them in the
3d992aa0 1670environment variable @env{TEXTAGS} before invoking @command{etags}. The
8cf51b2c
GM
1671value of this environment variable should be a colon-separated list of
1672command names. For example,
1673
1674@example
1675TEXTAGS="mycommand:myothercommand"
1676export TEXTAGS
1677@end example
1678
1679@noindent
1680specifies (using Bourne shell syntax) that the commands
1681@samp{\mycommand} and @samp{\myothercommand} also define tags.
1682
1683@item
1684In Lisp code, any function defined with @code{defun}, any variable
1685defined with @code{defvar} or @code{defconst}, and in general the first
1686argument of any expression that starts with @samp{(def} in column zero is
1687a tag.
1688
1689@item
1690In Scheme code, tags include anything defined with @code{def} or with a
1691construct whose name starts with @samp{def}. They also include variables
1692set with @code{set!} at top level in the file.
1693@end itemize
1694
1695 Several other languages are also supported:
1696
1697@itemize @bullet
1698
1699@item
1700In Ada code, functions, procedures, packages, tasks and types are
1701tags. Use the @samp{--packages-only} option to create tags for
1702packages only.
1703
1704In Ada, the same name can be used for different kinds of entity
1705(e.g.@:, for a procedure and for a function). Also, for things like
1706packages, procedures and functions, there is the spec (i.e.@: the
1707interface) and the body (i.e.@: the implementation). To make it
1708easier to pick the definition you want, Ada tag name have suffixes
1709indicating the type of entity:
1710
1711@table @samp
1712@item /b
1713package body.
1714@item /f
1715function.
1716@item /k
1717task.
1718@item /p
1719procedure.
1720@item /s
1721package spec.
1722@item /t
1723type.
1724@end table
1725
1726 Thus, @kbd{M-x find-tag @key{RET} bidule/b @key{RET}} will go
1727directly to the body of the package @code{bidule}, while @kbd{M-x
1728find-tag @key{RET} bidule @key{RET}} will just search for any tag
1729@code{bidule}.
1730
1731@item
eceeb5fc 1732In assembler code, labels appearing at the start of a line,
8cf51b2c
GM
1733followed by a colon, are tags.
1734
1735@item
1736In Bison or Yacc input files, each rule defines as a tag the nonterminal
1737it constructs. The portions of the file that contain C code are parsed
1738as C code.
1739
1740@item
1741In Cobol code, tags are paragraph names; that is, any word starting in
1742column 8 and followed by a period.
1743
1744@item
1745In Erlang code, the tags are the functions, records and macros defined
1746in the file.
1747
1748@item
1749In Fortran code, functions, subroutines and block data are tags.
1750
1751@item
1752In HTML input files, the tags are the @code{title} and the @code{h1},
1753@code{h2}, @code{h3} headers. Also, tags are @code{name=} in anchors
1754and all occurrences of @code{id=}.
1755
1756@item
1757In Lua input files, all functions are tags.
1758
1759@item
1760In makefiles, targets are tags; additionally, variables are tags
1761unless you specify @samp{--no-globals}.
1762
1763@item
1764In Objective C code, tags include Objective C definitions for classes,
1765class categories, methods and protocols. Tags for variables and
1766functions in classes are named @samp{@var{class}::@var{variable}} and
1767@samp{@var{class}::@var{function}}.
1768
1769@item
1770In Pascal code, the tags are the functions and procedures defined in
1771the file.
1772
1773@item
1774In Perl code, the tags are the packages, subroutines and variables
1775defined by the @code{package}, @code{sub}, @code{my} and @code{local}
1776keywords. Use @samp{--globals} if you want to tag global variables.
1777Tags for subroutines are named @samp{@var{package}::@var{sub}}. The
1778name for subroutines defined in the default package is
1779@samp{main::@var{sub}}.
1780
1781@item
1782In PHP code, tags are functions, classes and defines. Vars are tags
1783too, unless you use the @samp{--no-members} option.
1784
1785@item
1786In PostScript code, the tags are the functions.
1787
1788@item
1789In Prolog code, tags are predicates and rules at the beginning of
1790line.
1791
1792@item
1793In Python code, @code{def} or @code{class} at the beginning of a line
1794generate a tag.
1795@end itemize
1796
1797 You can also generate tags based on regexp matching (@pxref{Etags
1798Regexps}) to handle other formats and languages.
1799
1800@node Create Tags Table
1801@subsection Creating Tags Tables
3d992aa0 1802@cindex @command{etags} program
8cf51b2c 1803
3d992aa0 1804 The @command{etags} program is used to create a tags table file. It knows
8cf51b2c
GM
1805the syntax of several languages, as described in
1806@iftex
1807the previous section.
1808@end iftex
1809@ifnottex
1810@ref{Tag Syntax}.
1811@end ifnottex
3d992aa0 1812Here is how to run @command{etags}:
8cf51b2c
GM
1813
1814@example
1815etags @var{inputfiles}@dots{}
1816@end example
1817
1818@noindent
3d992aa0 1819The @command{etags} program reads the specified files, and writes a tags
0b7f2f3f
FP
1820table named @file{TAGS} in the current working directory. You can
1821optionally specify a different file name for the tags table by using the
1822@samp{--output=@var{file}} option; specifying @file{-} as a file name
1823prints the tags table to standard output.
8cf51b2c 1824
3d992aa0 1825 If the specified files don't exist, @command{etags} looks for
8cf51b2c 1826compressed versions of them and uncompresses them to read them. Under
3d992aa0 1827MS-DOS, @command{etags} also looks for file names like @file{mycode.cgz}
8cf51b2c
GM
1828if it is given @samp{mycode.c} on the command line and @file{mycode.c}
1829does not exist.
1830
3d992aa0
CY
1831 If the tags table becomes outdated due to changes in the files
1832described in it, you can update it by running the @command{etags}
1833program again. If the tags table does not record a tag, or records it
1834for the wrong file, then Emacs will not be able to find that
1835definition until you update the tags table. But if the position
1836recorded in the tags table becomes a little bit wrong (due to other
1837editing), Emacs will still be able to find the right position, with a
1838slight delay.
8cf51b2c
GM
1839
1840 Thus, there is no need to update the tags table after each edit.
1841You should update a tags table when you define new tags that you want
1842to have listed, or when you move tag definitions from one file to
1843another, or when changes become substantial.
1844
3d992aa0
CY
1845 You can make a tags table @dfn{include} another tags table, by
1846passing the @samp{--include=@var{file}} option to @command{etags}. It
1847then covers all the files covered by the included tags file, as well
1848as its own.
8cf51b2c
GM
1849
1850 If you specify the source files with relative file names when you run
3d992aa0 1851@command{etags}, the tags file will contain file names relative to the
8cf51b2c
GM
1852directory where the tags file was initially written. This way, you can
1853move an entire directory tree containing both the tags file and the
1854source files, and the tags file will still refer correctly to the source
0b7f2f3f 1855files. If the tags file is @file{-} or is in the @file{/dev} directory,
301b181a 1856however, the file names are
8cf51b2c
GM
1857made relative to the current working directory. This is useful, for
1858example, when writing the tags to @file{/dev/stdout}.
1859
1860 When using a relative file name, it should not be a symbolic link
1861pointing to a tags file in a different directory, because this would
1862generally render the file names invalid.
1863
3d992aa0 1864 If you specify absolute file names as arguments to @command{etags}, then
8cf51b2c
GM
1865the tags file will contain absolute file names. This way, the tags file
1866will still refer to the same files even if you move it, as long as the
1867source files remain in the same place. Absolute file names start with
1868@samp{/}, or with @samp{@var{device}:/} on MS-DOS and MS-Windows.
1869
3d992aa0
CY
1870 When you want to make a tags table from a great number of files,
1871you may have problems listing them on the command line, because some
1872systems have a limit on its length. You can circumvent this limit by
1873telling @command{etags} to read the file names from its standard
1874input, by typing a dash in place of the file names, like this:
8cf51b2c
GM
1875
1876@smallexample
1877find . -name "*.[chCH]" -print | etags -
1878@end smallexample
1879
3d992aa0
CY
1880 @command{etags} recognizes the language used in an input file based
1881on its file name and contents. You can specify the language
1882explicitly with the @samp{--language=@var{name}} option. You can
1883intermix these options with file names; each one applies to the file
1884names that follow it. Specify @samp{--language=auto} to tell
1885@command{etags} to resume guessing the language from the file names
1886and file contents. Specify @samp{--language=none} to turn off
1887language-specific processing entirely; then @command{etags} recognizes
1888tags by regexp matching alone (@pxref{Etags Regexps}).
8cf51b2c
GM
1889
1890 The option @samp{--parse-stdin=@var{file}} is mostly useful when
3d992aa0
CY
1891calling @command{etags} from programs. It can be used (only once) in
1892place of a file name on the command line. @command{etags} will read from
8cf51b2c
GM
1893standard input and mark the produced tags as belonging to the file
1894@var{file}.
1895
3d992aa0 1896 @samp{etags --help} outputs the list of the languages @command{etags}
8cf51b2c 1897knows, and the file name rules for guessing the language. It also prints
3d992aa0 1898a list of all the available @command{etags} options, together with a short
8cf51b2c
GM
1899explanation. If followed by one or more @samp{--language=@var{lang}}
1900options, it outputs detailed information about how tags are generated for
1901@var{lang}.
1902
1903@node Etags Regexps
1904@subsection Etags Regexps
1905
3d992aa0
CY
1906 The @samp{--regex} option to @command{etags} allows tags to be
1907recognized by regular expression matching. You can intermix this
1908option with file names; each one applies to the source files that
1909follow it. If you specify multiple @samp{--regex} options, all of
1910them are used in parallel. The syntax is:
8cf51b2c
GM
1911
1912@smallexample
1913--regex=[@var{@{language@}}]/@var{tagregexp}/[@var{nameregexp}/]@var{modifiers}
1914@end smallexample
1915
3d992aa0
CY
1916@noindent
1917The essential part of the option value is @var{tagregexp}, the regexp
1918for matching tags. It is always used anchored, that is, it only
1919matches at the beginning of a line. If you want to allow indented
1920tags, use a regexp that matches initial whitespace; start it with
1921@samp{[ \t]*}.
8cf51b2c
GM
1922
1923 In these regular expressions, @samp{\} quotes the next character, and
1924all the GCC character escape sequences are supported (@samp{\a} for
1925bell, @samp{\b} for back space, @samp{\d} for delete, @samp{\e} for
1926escape, @samp{\f} for formfeed, @samp{\n} for newline, @samp{\r} for
1927carriage return, @samp{\t} for tab, and @samp{\v} for vertical tab).
1928
1929 Ideally, @var{tagregexp} should not match more characters than are
1930needed to recognize what you want to tag. If the syntax requires you
1931to write @var{tagregexp} so it matches more characters beyond the tag
1932itself, you should add a @var{nameregexp}, to pick out just the tag.
1933This will enable Emacs to find tags more accurately and to do
1934completion on tag names more reliably. You can find some examples
1935below.
1936
1937 The @var{modifiers} are a sequence of zero or more characters that
3d992aa0 1938modify the way @command{etags} does the matching. A regexp with no
8cf51b2c
GM
1939modifiers is applied sequentially to each line of the input file, in a
1940case-sensitive way. The modifiers and their meanings are:
1941
1942@table @samp
1943@item i
1944Ignore case when matching this regexp.
1945@item m
1946Match this regular expression against the whole file, so that
1947multi-line matches are possible.
1948@item s
1949Match this regular expression against the whole file, and allow
1950@samp{.} in @var{tagregexp} to match newlines.
1951@end table
1952
1953 The @samp{-R} option cancels all the regexps defined by preceding
1954@samp{--regex} options. It too applies to the file names following
1955it. Here's an example:
1956
1957@smallexample
1958etags --regex=/@var{reg1}/i voo.doo --regex=/@var{reg2}/m \
1959 bar.ber -R --lang=lisp los.er
1960@end smallexample
1961
1962@noindent
3d992aa0
CY
1963Here @command{etags} chooses the parsing language for @file{voo.doo} and
1964@file{bar.ber} according to their contents. @command{etags} also uses
8cf51b2c
GM
1965@var{reg1} to recognize additional tags in @file{voo.doo}, and both
1966@var{reg1} and @var{reg2} to recognize additional tags in
1967@file{bar.ber}. @var{reg1} is checked against each line of
1968@file{voo.doo} and @file{bar.ber}, in a case-insensitive way, while
1969@var{reg2} is checked against the whole @file{bar.ber} file,
3d992aa0 1970permitting multi-line matches, in a case-sensitive way. @command{etags}
8cf51b2c
GM
1971uses only the Lisp tags rules, with no user-specified regexp matching,
1972to recognize tags in @file{los.er}.
1973
1974 You can restrict a @samp{--regex} option to match only files of a
1975given language by using the optional prefix @var{@{language@}}.
1976(@samp{etags --help} prints the list of languages recognized by
3d992aa0
CY
1977@command{etags}.) This is particularly useful when storing many
1978predefined regular expressions for @command{etags} in a file. The
8cf51b2c
GM
1979following example tags the @code{DEFVAR} macros in the Emacs source
1980files, for the C language only:
1981
1982@smallexample
1983--regex='@{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/'
1984@end smallexample
1985
1986@noindent
1987When you have complex regular expressions, you can store the list of
3d992aa0 1988them in a file. The following option syntax instructs @command{etags} to
8cf51b2c
GM
1989read two files of regular expressions. The regular expressions
1990contained in the second file are matched without regard to case.
1991
1992@smallexample
1993--regex=@@@var{case-sensitive-file} --ignore-case-regex=@@@var{ignore-case-file}
1994@end smallexample
1995
1996@noindent
3d992aa0 1997A regex file for @command{etags} contains one regular expression per
8cf51b2c 1998line. Empty lines, and lines beginning with space or tab are ignored.
3d992aa0 1999When the first character in a line is @samp{@@}, @command{etags} assumes
8cf51b2c
GM
2000that the rest of the line is the name of another file of regular
2001expressions; thus, one such file can include another file. All the
2002other lines are taken to be regular expressions. If the first
2003non-whitespace text on the line is @samp{--}, that line is a comment.
2004
2005 For example, we can create a file called @samp{emacs.tags} with the
2006following contents:
2007
2008@smallexample
2009 -- This is for GNU Emacs C source files
2010@{c@}/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"/\1/
2011@end smallexample
2012
2013@noindent
2014and then use it like this:
2015
2016@smallexample
2017etags --regex=@@emacs.tags *.[ch] */*.[ch]
2018@end smallexample
2019
2020 Here are some more examples. The regexps are quoted to protect them
2021from shell interpretation.
2022
2023@itemize @bullet
2024
2025@item
2026Tag Octave files:
2027
2028@smallexample
2029etags --language=none \
2030 --regex='/[ \t]*function.*=[ \t]*\([^ \t]*\)[ \t]*(/\1/' \
2031 --regex='/###key \(.*\)/\1/' \
2032 --regex='/[ \t]*global[ \t].*/' \
2033 *.m
2034@end smallexample
2035
2036@noindent
2037Note that tags are not generated for scripts, so that you have to add
2038a line by yourself of the form @samp{###key @var{scriptname}} if you
2039want to jump to it.
2040
2041@item
2042Tag Tcl files:
2043
2044@smallexample
2045etags --language=none --regex='/proc[ \t]+\([^ \t]+\)/\1/' *.tcl
2046@end smallexample
2047
2048@item
2049Tag VHDL files:
2050
2051@smallexample
2052etags --language=none \
2053 --regex='/[ \t]*\(ARCHITECTURE\|CONFIGURATION\) +[^ ]* +OF/' \
2054 --regex='/[ \t]*\(ATTRIBUTE\|ENTITY\|FUNCTION\|PACKAGE\
2055 \( BODY\)?\|PROCEDURE\|PROCESS\|TYPE\)[ \t]+\([^ \t(]+\)/\3/'
2056@end smallexample
2057@end itemize
2058
2059@node Select Tags Table
2060@subsection Selecting a Tags Table
2061
8cf51b2c 2062@findex visit-tags-table
3d992aa0 2063 Emacs has at any time one @dfn{selected} tags table. All the
8cf51b2c
GM
2064commands for working with tags tables use the selected one. To select
2065a tags table, type @kbd{M-x visit-tags-table}, which reads the tags
2066table file name as an argument, with @file{TAGS} in the default
2067directory as the default.
2068
3d992aa0 2069@vindex tags-file-name
8cf51b2c
GM
2070 Emacs does not actually read in the tags table contents until you
2071try to use them; all @code{visit-tags-table} does is store the file
2072name in the variable @code{tags-file-name}, and setting the variable
2073yourself is just as good. The variable's initial value is @code{nil};
2074that value tells all the commands for working with tags tables that
2075they must ask for a tags table file name to use.
2076
2077 Using @code{visit-tags-table} when a tags table is already loaded
2078gives you a choice: you can add the new tags table to the current list
2079of tags tables, or start a new list. The tags commands use all the tags
2080tables in the current list. If you start a new list, the new tags table
2081is used @emph{instead} of others. If you add the new table to the
2082current list, it is used @emph{as well as} the others.
2083
2084@vindex tags-table-list
2085 You can specify a precise list of tags tables by setting the variable
2086@code{tags-table-list} to a list of strings, like this:
2087
2088@c keep this on two lines for formatting in smallbook
2089@example
2090@group
2091(setq tags-table-list
2092 '("~/emacs" "/usr/local/lib/emacs/src"))
2093@end group
2094@end example
2095
2096@noindent
2097This tells the tags commands to look at the @file{TAGS} files in your
2098@file{~/emacs} directory and in the @file{/usr/local/lib/emacs/src}
2099directory. The order depends on which file you are in and which tags
2100table mentions that file, as explained above.
2101
2102 Do not set both @code{tags-file-name} and @code{tags-table-list}.
2103
2104@node Find Tag
2105@subsection Finding a Tag
2106
2107 The most important thing that a tags table enables you to do is to find
2108the definition of a specific tag.
2109
2110@table @kbd
2111@item M-.@: @var{tag} @key{RET}
2112Find first definition of @var{tag} (@code{find-tag}).
2113@item C-u M-.
2114Find next alternate definition of last tag specified.
2115@item C-u - M-.
2116Go back to previous tag found.
2117@item C-M-. @var{pattern} @key{RET}
2118Find a tag whose name matches @var{pattern} (@code{find-tag-regexp}).
2119@item C-u C-M-.
2120Find the next tag whose name matches the last pattern used.
2121@item C-x 4 .@: @var{tag} @key{RET}
2122Find first definition of @var{tag}, but display it in another window
2123(@code{find-tag-other-window}).
2124@item C-x 5 .@: @var{tag} @key{RET}
2125Find first definition of @var{tag}, and create a new frame to select the
2126buffer (@code{find-tag-other-frame}).
2127@item M-*
2128Pop back to where you previously invoked @kbd{M-.} and friends.
2129@end table
2130
2131@kindex M-.
2132@findex find-tag
3d992aa0
CY
2133 @kbd{M-.}@: (@code{find-tag}) prompts for a tag name and jumps to
2134its source definition. It works by searching through the tags table
2135for that tag's file and approximate character position, visiting that
2136file, and searching for the tag definition at ever-increasing
2137distances away from the recorded approximate position.
2138
2139 When entering the tag argument to @kbd{M-.}, the usual minibuffer
2140completion commands can be used (@pxref{Completion}), with the tag
2141names in the selected tags table as completion candidates. If you
2142specify an empty argument, the balanced expression in the buffer
2143before or around point is the default argument. @xref{Expressions}.
8cf51b2c
GM
2144
2145 You don't need to give @kbd{M-.} the full name of the tag; a part
3d992aa0
CY
2146will do. @kbd{M-.} finds tags which contain that argument as a
2147substring. However, it prefers an exact match to a substring match.
2148To find other tags that match the same substring, give @code{find-tag}
2149a numeric argument, as in @kbd{C-u M-.} or @kbd{M-0 M-.}; this does
2150not read a tag name, but continues searching the tags table's text for
2151another tag containing the same substring last used.
8cf51b2c
GM
2152
2153@kindex C-x 4 .
2154@findex find-tag-other-window
2155@kindex C-x 5 .
2156@findex find-tag-other-frame
2157 Like most commands that can switch buffers, @code{find-tag} has a
2158variant that displays the new buffer in another window, and one that
3d992aa0
CY
2159makes a new frame for it. The former is @w{@kbd{C-x 4 .}}
2160(@code{find-tag-other-window}), and the latter is @w{@kbd{C-x 5 .}}
2161(@code{find-tag-other-frame}).
8cf51b2c 2162
3d992aa0
CY
2163 To move back to previous tag definitions, use @kbd{C-u - M-.}; more
2164generally, @kbd{M-.} with a negative numeric argument. Similarly,
2165@w{@kbd{C-x 4 .}} with a negative argument finds the previous tag
2166location in another window.
8cf51b2c
GM
2167
2168@kindex M-*
2169@findex pop-tag-mark
2170@vindex find-tag-marker-ring-length
3d992aa0
CY
2171 As well as going back to places you've found tags recently, you can
2172go back to places @emph{from where} you found them, using @kbd{M-*}
2173(@code{pop-tag-mark}). Thus you can find and examine the definition
2174of something with @kbd{M-.} and then return to where you were with
2175@kbd{M-*}.
8cf51b2c
GM
2176
2177 Both @kbd{C-u - M-.} and @kbd{M-*} allow you to retrace your steps to
2178a depth determined by the variable @code{find-tag-marker-ring-length}.
2179
2180@findex find-tag-regexp
2181@kindex C-M-.
2182 The command @kbd{C-M-.} (@code{find-tag-regexp}) visits the tags that
2183match a specified regular expression. It is just like @kbd{M-.} except
2184that it does regexp matching instead of substring matching.
2185
2186@node Tags Search
2187@subsection Searching and Replacing with Tags Tables
2188@cindex search and replace in multiple files
2189@cindex multiple-file search and replace
2190
2191 The commands in this section visit and search all the files listed
2192in the selected tags table, one by one. For these commands, the tags
2193table serves only to specify a sequence of files to search. These
2194commands scan the list of tags tables starting with the first tags
2195table (if any) that describes the current file, proceed from there to
2196the end of the list, and then scan from the beginning of the list
2197until they have covered all the tables in the list.
2198
2199@table @kbd
2200@item M-x tags-search @key{RET} @var{regexp} @key{RET}
2201Search for @var{regexp} through the files in the selected tags
2202table.
2203@item M-x tags-query-replace @key{RET} @var{regexp} @key{RET} @var{replacement} @key{RET}
2204Perform a @code{query-replace-regexp} on each file in the selected tags table.
2205@item M-,
2206Restart one of the commands above, from the current location of point
2207(@code{tags-loop-continue}).
2208@end table
2209
2210@findex tags-search
2211 @kbd{M-x tags-search} reads a regexp using the minibuffer, then
2212searches for matches in all the files in the selected tags table, one
2213file at a time. It displays the name of the file being searched so you
2214can follow its progress. As soon as it finds an occurrence,
2215@code{tags-search} returns.
2216
2217@kindex M-,
2218@findex tags-loop-continue
3d992aa0
CY
2219 Having found one match, you probably want to find all the rest.
2220Type @kbd{M-,} (@code{tags-loop-continue}) to resume the
2221@code{tags-search}, finding one more match. This searches the rest of
2222the current buffer, followed by the remaining files of the tags table.
8cf51b2c
GM
2223
2224@findex tags-query-replace
2225 @kbd{M-x tags-query-replace} performs a single
2226@code{query-replace-regexp} through all the files in the tags table. It
2227reads a regexp to search for and a string to replace with, just like
2228ordinary @kbd{M-x query-replace-regexp}. It searches much like @kbd{M-x
2229tags-search}, but repeatedly, processing matches according to your
2230input. @xref{Replace}, for more information on query replace.
2231
2232@vindex tags-case-fold-search
2233@cindex case-sensitivity and tags search
2234 You can control the case-sensitivity of tags search commands by
2235customizing the value of the variable @code{tags-case-fold-search}. The
2236default is to use the same setting as the value of
2237@code{case-fold-search} (@pxref{Search Case}).
2238
2239 It is possible to get through all the files in the tags table with a
2240single invocation of @kbd{M-x tags-query-replace}. But often it is
2241useful to exit temporarily, which you can do with any input event that
ae068fdf
RS
2242has no special query replace meaning. You can resume the query
2243replace subsequently by typing @kbd{M-,}; this command resumes the
2244last tags search or replace command that you did. For instance, to
2245skip the rest of the current file, you can type @kbd{M-> M-,}.
8cf51b2c
GM
2246
2247 The commands in this section carry out much broader searches than the
2248@code{find-tag} family. The @code{find-tag} commands search only for
2249definitions of tags that match your substring or regexp. The commands
2250@code{tags-search} and @code{tags-query-replace} find every occurrence
2251of the regexp, as ordinary search commands and replace commands do in
2252the current buffer.
2253
2254 These commands create buffers only temporarily for the files that they
2255have to search (those which are not already visited in Emacs buffers).
2256Buffers in which no match is found are quickly killed; the others
2257continue to exist.
2258
3d992aa0
CY
2259 As an alternative to @code{tags-search}, you can run @command{grep}
2260as a subprocess and have Emacs show you the matching lines one by one.
8cf51b2c
GM
2261@xref{Grep Searching}.
2262
2263@node List Tags
2264@subsection Tags Table Inquiries
2265
2266@table @kbd
3d992aa0
CY
2267@item C-M-i
2268@itemx M-@key{TAB}
2269Perform completion on the text around point, using the selected tags
2270table if one is loaded (@code{completion-at-point}).
8cf51b2c
GM
2271@item M-x list-tags @key{RET} @var{file} @key{RET}
2272Display a list of the tags defined in the program file @var{file}.
2273@item M-x tags-apropos @key{RET} @var{regexp} @key{RET}
2274Display a list of all tags matching @var{regexp}.
2275@end table
2276
3d992aa0
CY
2277@cindex completion (symbol names)
2278 In most programming language modes, you can type @kbd{C-M-i} or
2279@kbd{M-@key{TAB}} (@code{completion-at-point}) to complete the symbol
2280at point. If there is a selected tags table, this command can use it
2281to generate completion candidates. @xref{Symbol Completion}.
2282
8cf51b2c 2283@findex list-tags
3d992aa0
CY
2284 @kbd{M-x list-tags} reads the name of one of the files covered by
2285the selected tags table, and displays a list of tags defined in that
2286file. Do not include a directory as part of the file name unless the
2287file name recorded in the tags table includes a directory.
8cf51b2c
GM
2288
2289@findex tags-apropos
2290@vindex tags-apropos-verbose
8cf51b2c
GM
2291@vindex tags-tag-face
2292@vindex tags-apropos-additional-actions
3d992aa0
CY
2293 @kbd{M-x tags-apropos} is like @code{apropos} for tags
2294(@pxref{Apropos}). It displays a list of tags in the selected tags
2295table whose entries match @var{regexp}. If the variable
2296@code{tags-apropos-verbose} is non-@code{nil}, it displays the names
2297of the tags files together with the tag names. You can customize the
2298appearance of the output by setting the variable @code{tags-tag-face}
2299to a face. You can display additional output by customizing the
2300variable @code{tags-apropos-additional-actions}; see its documentation
2301for details.
2302
2303@findex next-file
2304 @kbd{M-x next-file} visits files covered by the selected tags table.
2305The first time it is called, it visits the first file covered by the
2306table. Each subsequent call visits the next covered file, unless a
2307prefix argument is supplied, in which case it returns to the first
2308file.
7031be6d 2309
a42dbee1
CY
2310@node EDE
2311@section Emacs Development Environment
2312@cindex EDE (Emacs Development Environment)
2313@cindex Emacs Development Environment
2314@cindex Integrated development environment
2315
2316EDE (@dfn{Emacs Development Environment}) is a package that simplifies
2317the task of creating, building, and debugging large programs with
2318Emacs. It provides some of the features of an IDE, or @dfn{Integrated
2319Development Environment}, in Emacs.
2320
2321This section provides a brief description of EDE usage.
2322@ifnottex
2323For full details, see @ref{Top, EDE,, ede, Emacs Development Environment}.
2324@end ifnottex
2325@iftex
2326For full details on Ede, type @kbd{C-h i} and then select the EDE
2327manual.
2328@end iftex
2329
2330 EDE is implemented as a global minor mode (@pxref{Minor Modes}). To
2331enable it, type @kbd{M-x global-ede-mode} or click on the
2332@samp{Project Support (EDE)} item in the @samp{Tools} menu. You can
2333also enable EDE each time you start Emacs, by adding the following
2334line to your initialization file:
2335
2336@smallexample
2337(global-ede-mode t)
2338@end smallexample
2339
2340@noindent
2341Activating EDE adds a menu named @samp{Development} to the menu bar.
2342Many EDE commands, including the ones described below, can be invoked
2343from this menu.
2344
2345 EDE organizes files into @dfn{projects}, which correspond to
2346directory trees. The @dfn{project root} is the topmost directory of a
2347project. To define a new project, visit a file in the desired project
2348root and type @kbd{M-x ede-new}. This command prompts for a
2349@dfn{project type}, which refers to the underlying method that EDE
2350will use to manage the project (@pxref{Creating a Project, EDE,, ede,
2351Emacs Development Environment}). The most common project types are
2352@samp{Make}, which uses Makefiles, and @samp{Automake}, which uses GNU
2353Automake (@pxref{Top, Automake,, automake, Automake}). In both cases,
2354EDE also creates a file named @file{Project.ede}, which stores
2355information about the project.
2356
2357 A project may contain one or more @dfn{targets}. A target can be an
2358object file, executable program, or some other type of file, which is
2359``built'' from one or more of the files in the project.
2360
2361 To add a new @dfn{target} to a project, type @kbd{C-c . t}
2362(@code{M-x ede-new-target}). This command also asks if you wish to
2363``add'' the current file to that target, which means that the target
2364is to be built from that file. After you have defined a target, you
2365can add more files to it by typing @kbd{C-c . a}
2366(@code{ede-add-file}).
2367
2368 To build a target, type @kbd{C-c . c} (@code{ede-compile-target}).
2369To build all the targets in the project, type @kbd{C-c . C}
2370(@code{ede-compile-project}). EDE uses the file types to guess how
2371the target should be built.
2372
e14ad691
CY
2373@ifnottex
2374@include emerge-xtra.texi
2375@end ifnottex