home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / info / emacs-6 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  49KB  |  847 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Spelling,  Prev: Fixing Case,  Up: Fixit
  4. Checking and Correcting Spelling
  5. ================================
  6.    This section describes the commands to check the spelling of a single
  7. word or of a portion of a buffer.  These commands work with the spelling
  8. checker program Ispell, which is not part of Emacs.  *Note Ispell: (The
  9. Ispell Manual)Top.
  10. `M-$'
  11.      Check and correct spelling of word at point (`ispell-word').
  12. `M-x ispell-buffer'
  13.      Check and correct spelling of each word in the buffer.
  14. `M-x ispell-region'
  15.      Check and correct spelling of each word in the region.
  16. `M-x ispell-message'
  17.      Check and correct spelling of each word in a draft mail message,
  18.      excluding cited material.
  19. `M-x ispell-complete-word'
  20.      Complete the word before point based on the spelling dictionary.
  21. `M-x ispell-change-dictionary RET DICT RET'
  22.      Restart the ispell process, using DICT as the dictionary.
  23. `M-x ispell-kill-ispell'
  24.      Kill the Ispell subprocess.
  25.    To check the spelling of the word around or next to point, and
  26. optionally correct it as well, use the command `M-$' (`ispell-word').
  27. If the word is not correct, the command offers you various alternatives
  28. for what to do about it.
  29.    To check the entire current buffer, use `M-x ispell-buffer'.  Use
  30. `M-x ispell-region' to check just the current region.  To check
  31. spelling in an email message you are writing, use `M-x ispell-message';
  32. that checks the whole buffer, but does not check material that is
  33. indented or appears to be cited from other messages.
  34.    Each time these commands encounter an incorrect word, they ask you
  35. what to do.  It displays a list of alternatives, usually including
  36. several "near-misses"--words that are close to the word being checked.
  37. Then you must type a character.  Here are the valid responses:
  38. `SPC'
  39.      Skip this word--continue to consider it incorrect, but don't
  40.      change it here.
  41. `r NEW RET'
  42.      Replace the word (just this time) with NEW.
  43. `R NEW RET'
  44.      Replace the word with NEW, and do a `query-replace' so you can
  45.      replace it elsewhere in the buffer if you wish.
  46. `DIGIT'
  47.      Replace the word (just this time) with one of the displayed
  48.      near-misses.  Each near-miss is listed with a digit; type that
  49.      digit to select it.
  50.      Accept the incorrect word--treat it as correct, but only in this
  51.      editing session.
  52.      Accept the incorrect word--treat it as correct, but only in this
  53.      editing session and for this buffer.
  54.      Insert this word in your private dictionary file so that Ispell
  55.      will consider it correct it from now on, even in future sessions.
  56.      Insert a lower-case version of this word in your private dictionary
  57.      file.
  58.      Like `i', but you can also specify dictionary completion
  59.      information.
  60. `l WORD RET'
  61.      Look in the dictionary for words that match WORD.  These words
  62.      become the new list of "near-misses"; you can select one of them to
  63.      replace with by typing a digit.  You can use `*' in WORD as a
  64.      wildcard.
  65. `C-g'
  66.      Quit interactive spell checking.  You can restart it again
  67.      afterward with `C-u M-$'.
  68.      Same as `C-g'.
  69.      Quit interactive spell checking and move point back to where it was
  70.      when you started spell checking.
  71.      Quit interactive spell checking and kill the Ispell subprocess.
  72. `C-l'
  73.      Refresh the screen.
  74. `C-z'
  75.      This key has its normal command meaning (suspend Emacs or iconify
  76.      this frame).
  77.    The command `ispell-complete-word', which is bound to the key
  78. `M-TAB' in Text mode and related modes, shows a list of completions
  79. based on spelling correction.  Insert the beginning of a word, and then
  80. type `M-TAB'; the command displays a completion list window.  To choose
  81. one of the completions listed, click `Mouse-2' on it, or move the
  82. cursor there in the completions window and type RET.  *Note Text Mode::.
  83.    Once started, the Ispell subprocess continues to run (waiting for
  84. something to do), so that subsequent spell checking commands complete
  85. more quickly.  If you want to get rid of the Ispell process, use `M-x
  86. ispell-kill-ispell'.  This is not usually necessary, since the process
  87. uses no time except when you do spelling correction.
  88.    Ispell uses two dictionaries: the standard dictionary and your
  89. private dictionary.  The variable `ispell-dictionary' specifies the file
  90. name of the standard dictionary to use.  A value of `nil' says to use
  91. the default dictionary.  The command `M-x ispell-change-dictionary'
  92. sets this variable and then restarts the Ispell subprocess, so that it
  93. will use a different dictionary.
  94. File: emacs,  Node: Files,  Next: Buffers,  Prev: Fixit,  Up: Top
  95. File Handling
  96. *************
  97.    The operating system stores data permanently in named "files".  So
  98. most of the text you edit with Emacs comes from a file and is ultimately
  99. stored in a file.
  100.    To edit a file, you must tell Emacs to read the file and prepare a
  101. buffer containing a copy of the file's text.  This is called "visiting"
  102. the file.  Editing commands apply directly to text in the buffer; that
  103. is, to the copy inside Emacs.  Your changes appear in the file itself
  104. only when you "save" the buffer back into the file.
  105.    In addition to visiting and saving files, Emacs can delete, copy,
  106. rename, and append to files, keep multiple versions of them, and operate
  107. on file directories.
  108. * Menu:
  109. * File Names::       How to type and edit file name arguments.
  110. * Visiting::         Visiting a file prepares Emacs to edit the file.
  111. * Saving::           Saving makes your changes permanent.
  112. * Reverting::        Reverting cancels all the changes not saved.
  113. * Auto Save::        Auto Save periodically protects against loss of data.
  114. * File Aliases::     Handling multiple names for one file.
  115. * Version Control::  Version control systems (RCS and SCCS).
  116. * ListDir::          Listing the contents of a file directory.
  117. * Comparing Files::  Finding where two files differ.
  118. * Misc File Ops::    Other things you can do on files.
  119. File: emacs,  Node: File Names,  Next: Visiting,  Up: Files
  120. File Names
  121. ==========
  122.    Most Emacs commands that operate on a file require you to specify the
  123. file name.  (Saving and reverting are exceptions; the buffer knows which
  124. file name to use for them.)  You enter the file name using the
  125. minibuffer (*note Minibuffer::.).  "Completion" is available, to make
  126. it easier to specify long file names.  *Note Completion::.
  127.    For most operations, there is a "default file name" which is used if
  128. you type just RET to enter an empty argument.  Normally the default
  129. file name is the name of the file visited in the current buffer; this
  130. makes it easy to operate on that file with any of the Emacs file
  131. commands.
  132.    Each buffer has a default directory, normally the same as the
  133. directory of the file visited in that buffer.  When you enter a file
  134. name without a directory, the default directory is used.  If you specify
  135. a directory in a relative fashion, with a name that does not start with
  136. a slash, it is interpreted with respect to the default directory.  The
  137. default directory is kept in the variable `default-directory', which
  138. has a separate value in every buffer.
  139.    For example, if the default file name is `/u/rms/gnu/gnu.tasks' then
  140. the default directory is `/u/rms/gnu/'.  If you type just `foo', which
  141. does not specify a directory, it is short for `/u/rms/gnu/foo'.
  142. `../.login' would stand for `/u/rms/.login'.  `new/foo' would stand for
  143. the file name `/u/rms/gnu/new/foo'.
  144.    The command `M-x pwd' prints the current buffer's default directory,
  145. and the command `M-x cd' sets it (to a value read using the
  146. minibuffer).  A buffer's default directory changes only when the `cd'
  147. command is used.  A file-visiting buffer's default directory is
  148. initialized to the directory of the file that is visited there.  If you
  149. create a buffer with `C-x b', its default directory is copied from that
  150. of the buffer that was current at the time.
  151.    The default directory actually appears in the minibuffer when the
  152. minibuffer becomes active to read a file name.  This serves two
  153. purposes: it *shows* you what the default is, so that you can type a
  154. relative file name and know with certainty what it will mean, and it
  155. allows you to *edit* the default to specify a different directory.
  156. This insertion of the default directory is inhibited if the variable
  157. `insert-default-directory' is set to `nil'.
  158.    Note that it is legitimate to type an absolute file name after you
  159. enter the minibuffer, ignoring the presence of the default directory
  160. name as part of the text.  The final minibuffer contents may look
  161. invalid, but that is not so.  For example, if the minibuffer starts out
  162. with `/usr/tmp/' and you add `/x1/rms/foo', you get
  163. `/usr/tmp//x1/rms/foo'; but Emacs ignores everything through the first
  164. slash in the double slash; the result is `/x1/rms/foo'.  *Note
  165. Minibuffer File::.
  166.    You can refer to files on other machines using a special file name
  167. syntax:
  168.      /HOST:FILENAME
  169.      /USER@HOST:FILENAME
  170. When you do this, Emacs uses the FTP program to read and write files on
  171. the specified host.  It logs in through FTP using your user name or the
  172. name USER.  It may ask you for a password from time to time; this is
  173. used for logging in on HOST.
  174.    `$' in a file name is used to substitute environment variables.  For
  175. example, if you have used the shell command `export FOO=rms/hacks' to
  176. set up an environment variable named `FOO', then you can use
  177. `/u/$FOO/test.c' or `/u/${FOO}/test.c' as an abbreviation for
  178. `/u/rms/hacks/test.c'.  The environment variable name consists of all
  179. the alphanumeric characters after the `$'; alternatively, it may be
  180. enclosed in braces after the `$'.  Note that shell commands to set
  181. environment variables affect Emacs only if done before Emacs is started.
  182.    To access a file with `$' in its name, type `$$'.  This pair is
  183. converted to a single `$' at the same time as variable substitution is
  184. performed for single `$'.  The Lisp function that performs the
  185. substitution is called `substitute-in-file-name'.  The substitution is
  186. performed only on file names read as such using the minibuffer.
  187. File: emacs,  Node: Visiting,  Next: Saving,  Prev: File Names,  Up: Files
  188. Visiting Files
  189. ==============
  190. `C-x C-f'
  191.      Visit a file (`find-file').
  192. `C-x C-r'
  193.      Visit a file for viewing, without allowing changes to it
  194.      (`find-file-read-only').
  195. `C-x C-v'
  196.      Visit a different file instead of the one visited last
  197.      (`find-alternate-file').
  198. `C-x 4 C-f'
  199.      Visit a file, in another window (`find-file-other-window').  Don't
  200.      change the selected window.
  201. `C-x 5 C-f'
  202.      Visit a file, in a new frame (`find-file-other-frame').  Don't
  203.      change the selected frame.
  204.    "Visiting" a file means copying its contents into an Emacs buffer so
  205. you can edit them.  Emacs makes a new buffer for each file that you
  206. visit.  We say that this buffer is visiting the file that it was created
  207. to hold.  Emacs constructs the buffer name from the file name by
  208. throwing away the directory, keeping just the name proper.  For example,
  209. a file named `/usr/rms/emacs.tex' would get a buffer named `emacs.tex'.
  210. If there is already a buffer with that name, a unique name is
  211. constructed by appending `<2>', `<3>', or so on, using the lowest
  212. number that makes a name that is not already in use.
  213.    Each window's mode line shows the name of the buffer that is being
  214. displayed in that window, so you can always tell what buffer you are
  215. editing.
  216.    The changes you make with editing commands are made in the Emacs
  217. buffer.  They do not take effect in the file that you visited, or any
  218. place permanent, until you "save" the buffer.  Saving the buffer means
  219. that Emacs writes the current contents of the buffer into its visited
  220. file.  *Note Saving::.
  221.    If a buffer contains changes that have not been saved, we say the
  222. buffer is "modified".  This is important because it implies that some
  223. changes will be lost if the buffer is not saved.  The mode line
  224. displays two stars near the left margin to indicate that the buffer is
  225. modified.
  226.    To visit a file, use the command `C-x C-f' (`find-file').  Follow
  227. the command with the name of the file you wish to visit, terminated by a
  228.    The file name is read using the minibuffer (*note Minibuffer::.),
  229. with defaulting and completion in the standard manner (*note File
  230. Names::.).  While in the minibuffer, you can abort `C-x C-f' by typing
  231. `C-g'.
  232.    Your confirmation that `C-x C-f' has completed successfully is the
  233. appearance of new text on the screen and a new buffer name in the mode
  234. line.  If the specified file does not exist and could not be created, or
  235. cannot be read, then you get an error, with an error message displayed
  236. in the echo area.
  237.    If you visit a file that is already in Emacs, `C-x C-f' does not make
  238. another copy.  It selects the existing buffer containing that file.
  239. However, before doing so, it checks that the file itself has not changed
  240. since you visited or saved it last.  If the file has changed, a warning
  241. message is printed.  *Note Simultaneous Editing: Interlocking.
  242.    What if you want to create a new file?  Just visit it.  Emacs prints
  243. `(New File)' in the echo area, but in other respects behaves as if you
  244. had visited an existing empty file.  If you make any changes and save
  245. them, the file is created.
  246.    If the file you specify is actually a directory, `C-x C-f' invokes
  247. Dired, the Emacs directory browser so that you can "edit" the contents
  248. of the directory (*note Dired::.).  Dired is a convenient way to delete,
  249. look at, or operate on the files in the directory.  However, if the
  250. variable `find-file-run-dired' is `nil', then it is an error to try to
  251. visit a directory.
  252.    If you visit a file that the operating system won't let you modify,
  253. Emacs makes the buffer read-only, so that you won't go ahead and make
  254. changes that you'll have trouble saving afterward.  You can make the
  255. buffer writable with `C-x C-q' (`vc-toggle-read-only').  *Note Misc
  256. Buffer::.
  257.    Occasionally you might want to visit a file as read-only in order to
  258. protect yourself from entering changes accidentally; do so by visiting
  259. the file with the command `C-x C-r' (`find-file-read-only').
  260.    If you visit a nonexistent file unintentionally (because you typed
  261. the wrong file name), use the `C-x C-v' command (`find-alternate-file')
  262. to visit the file you really wanted.  `C-x C-v' is similar to `C-x
  263. C-f', but it kills the current buffer (after first offering to save it
  264. if it is modified).  When it reads the file name to visit, it inserts
  265. the entire default file name in the buffer, with point just after the
  266. directory part; this is convenient if you made a slight error in typing
  267. the name.
  268.    `C-x 4 f' (`find-file-other-window') is like `C-x C-f' except that
  269. the buffer containing the specified file is selected in another window.
  270. The window that was selected before `C-x 4 f' continues to show the
  271. same buffer it was already showing.  If this command is used when only
  272. one window is being displayed, that window is split in two, with one
  273. window showing the same buffer as before, and the other one showing the
  274. newly requested file.  *Note Windows::.
  275.    `C-x 5 f' (`find-file-other-frame') is similar, but opens a new
  276. frame, or makes visible any existing frame showing the file you seek.
  277. This feature is available only when you are using a window system.
  278. *Note Frames::.
  279.    Two special hook variables allow extensions to modify the operation
  280. of visiting files.  Visiting a file that does not exist runs the
  281. functions in the list `find-file-not-found-hooks'; this variable holds
  282. a list of functions, and the functions are called one by one until one
  283. of them returns non-`nil'.  Any visiting of a file, whether extant or
  284. not, expects `find-file-hooks' to contain a list of functions and calls
  285. them all, one by one.  In both cases the functions receive no
  286. arguments.  Of these two variables, `find-file-not-found-hooks' takes
  287. effect first.  These variables are *not* normal hooks, and their names
  288. end in `-hooks' rather than `-hook' to indicate that fact.  *Note
  289. Hooks::.
  290.    There are several ways to specify automatically the major mode for
  291. editing the file (*note Choosing Modes::.), and to specify local
  292. variables defined for that file (*note File Variables::.).
  293. File: emacs,  Node: Saving,  Next: Reverting,  Prev: Visiting,  Up: Files
  294. Saving Files
  295. ============
  296.    "Saving" a buffer in Emacs means writing its contents back into the
  297. file that was visited in the buffer.
  298. `C-x C-s'
  299.      Save the current buffer in its visited file (`save-buffer').
  300. `C-x s'
  301.      Save any or all buffers in their visited files
  302.      (`save-some-buffers').
  303. `M-~'
  304.      Forget that the current buffer has been changed (`not-modified').
  305. `C-x C-w'
  306.      Save the current buffer in a specified file (`write-file').
  307. `M-x set-visited-file-name'
  308.      Change file the name under which the current buffer will be saved.
  309.    When you wish to save the file and make your changes permanent, type
  310. `C-x C-s' (`save-buffer').  After saving is finished, `C-x C-s'
  311. displays a message like this:
  312.      Wrote /u/rms/gnu/gnu.tasks
  313. If the selected buffer is not modified (no changes have been made in it
  314. since the buffer was created or last saved), saving is not really done,
  315. because it would have no effect.  Instead, `C-x C-s' displays a message
  316. like this in the echo area:
  317.      (No changes need to be written)
  318.    The command `C-x s' (`save-some-buffers') offers to save any or all
  319. modified buffers.  It asks you what to do with each buffer.  The
  320. possible responses are analogous to those of `query-replace':
  321.      Save this buffer and ask about the rest of the buffers.
  322.      Don't save this buffer, but ask about the rest of the buffers.
  323.      Save this buffer and all the rest with no more questions.
  324. `RET'
  325.      Terminate `save-some-buffers' without any more saving.
  326.      Save this buffer, then exit `save-some-buffers' without even asking
  327.      about other buffers.
  328. `C-r'
  329.      View the buffer that you are currently being asked about.  When
  330.      you exit View mode, you get back to `save-some-buffers', which
  331.      asks the question again.
  332. `C-h'
  333.      Display a help message about these options.
  334.    `C-x C-c', the key sequence to exit Emacs, invokes
  335. `save-some-buffers' and therefore asks the same questions.
  336.    If you have changed a buffer but you do not want to save the changes,
  337. you should take some action to prevent it.  Otherwise, each time you use
  338. `C-x s' or `C-x C-c', you are liable to save this buffer by mistake.
  339. One thing you can do is type `M-~' (`not-modified'), which clears out
  340. the indication that the buffer is modified.  If you do this, none of
  341. the save commands will believe that the buffer needs to be saved.  (`~'
  342. is often used as a mathematical symbol for `not'; thus `M-~' is `not',
  343. metafied.)  You could also use `set-visited-file-name' (see below) to
  344. mark the buffer as visiting a different file name, one which is not in
  345. use for anything important.  Alternatively, you can cancel all the
  346. changes made since the file was visited or saved, by reading the text
  347. from the file again.  This is called "reverting".  *Note Reverting::.
  348. You could also undo all the changes by repeating the undo command `C-x
  349. u' until you have undone all the changes; but reverting is easier.
  350.    `M-x set-visited-file-name' alters the name of the file that the
  351. current buffer is visiting.  It reads the new file name using the
  352. minibuffer.  Then it specifies the visited file name and changes the
  353. buffer name correspondingly (as long as the new name is not in use).
  354. `set-visited-file-name' does not save the buffer in the newly visited
  355. file; it just alters the records inside Emacs in case you do save
  356. later.  It also marks the buffer as "modified" so that `C-x C-s' in
  357. that buffer *will* save.
  358.    If you wish to mark the buffer as visiting a different file and save
  359. it right away, use `C-x C-w' (`write-file').  It is precisely
  360. equivalent to `set-visited-file-name' followed by `C-x C-s'.  `C-x C-s'
  361. used on a buffer that is not visiting with a file has the same effect
  362. as `C-x C-w'; that is, it reads a file name, marks the buffer as
  363. visiting that file, and saves it there.  The default file name in a
  364. buffer that is not visiting a file is made by combining the buffer name
  365. with the buffer's default directory.
  366.    If Emacs is about to save a file and sees that the date of the latest
  367. version on disk does not match what Emacs last read or wrote, Emacs
  368. notifies you of this fact, because it probably indicates a problem
  369. caused by simultaneous editing and requires your immediate attention.
  370. *Note Simultaneous Editing: Interlocking.
  371.    If the variable `require-final-newline' is non-`nil', Emacs puts a
  372. newline at the end of any file that doesn't already end in one, every
  373. time a file is saved or written.
  374. * Menu:
  375. * Backup::        How Emacs saves the old version of your file.
  376. * Interlocking::  How Emacs protects against simultaneous editing
  377.                     of one file by two users.
  378. File: emacs,  Node: Backup,  Next: Interlocking,  Up: Saving
  379. Backup Files
  380. ------------
  381.    On most operating systems, rewriting a file automatically destroys
  382. all record of what the file used to contain.  Thus, saving a file from
  383. Emacs throws away the old contents of the file--or it would, except that
  384. Emacs carefully copies the old contents to another file, called the
  385. "backup" file, before actually saving.  (This assumes that the variable
  386. `make-backup-files' is non-`nil'.  Backup files are not written if this
  387. variable is `nil'.)
  388.    At your option, Emacs can keep either a single backup file or a
  389. series of numbered backup files for each file that you edit.
  390.    Emacs makes a backup for a file only the first time the file is saved
  391. from one buffer.  No matter how many times you save a file, its backup
  392. file continues to contain the contents from before the file was visited.
  393. Normally this means that the backup file contains the contents from
  394. before the current editing session; however, if you kill the buffer and
  395. then visit the file again, a new backup file will be made by the next
  396. save.
  397. * Menu:
  398. * Names: Backup Names.        How backup files are named;
  399.                   choosing single or numbered backup files.
  400. * Deletion: Backup Deletion.    Emacs deletes excess numbered backups.
  401. * Copying: Backup Copying.    Backups can be made by copying or renaming.
  402. File: emacs,  Node: Backup Names,  Next: Backup Deletion,  Up: Backup
  403. Single or Numbered Backups
  404. ..........................
  405.    If you choose to have a single backup file (this is the default),
  406. the backup file's name is constructed by appending `~' to the file name
  407. being edited; thus, the backup file for `eval.c' would be `eval.c~'.
  408.    If you choose to have a series of numbered backup files, backup file
  409. names are made by appending `.~', the number, and another `~' to the
  410. original file name.  Thus, the backup files of `eval.c' would be called
  411. `eval.c.~1~', `eval.c.~2~', and so on, through names like
  412. `eval.c.~259~' and beyond.
  413.    If protection stops you from writing backup files under the usual
  414. names, the backup file is written as `%backup%~' in your home directory.
  415. Only one such file can exist, so only the most recently made such
  416. backup is available.
  417.    The choice of single backup or numbered backups is controlled by the
  418. variable `version-control'.  Its possible values are
  419.      Make numbered backups.
  420. `nil'
  421.      Make numbered backups for files that have numbered backups already.
  422.      Otherwise, make single backups.
  423. `never'
  424.      Do not in any case make numbered backups; always make single
  425.      backups.
  426. You can set `version-control' locally in an individual buffer to
  427. control the making of backups for that buffer's file.  For example,
  428. Rmail mode locally sets `version-control' to `never' to make sure that
  429. there is only one backup for an Rmail file.  *Note Locals::.
  430.    If you set the environment variable `VERSION_CONTROL', to tell
  431. various GNU utilities what to do with backup files, Emacs also obeys the
  432. environment variable by setting the Lisp variable `version-control'
  433. accordingly at startup.  If the environment variable's value is `t' or
  434. `numbered', then `version-control' becomes `t'; if the value is `nil'
  435. or `existing', then `version-control' becomes `nil'; if it is `never'
  436. or `simple', then `version-control' becomes `never'.
  437.    For files under version control (*note Version Control::.), the
  438. variable `vc-make-backup-files' determines whether to make backup
  439. files.  By default, it is `nil', since backup files are redundant when
  440. you store all the previous versions in a version control system.  *Note
  441. Editing with VC::.
  442. File: emacs,  Node: Backup Deletion,  Next: Backup Copying,  Prev: Backup Names,  Up: Backup
  443. Automatic Deletion of Backups
  444. .............................
  445.    To prevent unlimited consumption of disk space, Emacs can delete
  446. numbered backup versions automatically.  Generally Emacs keeps the
  447. first few backups and the latest few backups, deleting any in between.
  448. This happens every time a new backup is made.
  449.    The two variables `kept-old-versions' and `kept-new-versions'
  450. control this deletion.  Their values are, respectively the number of
  451. oldest (lowest-numbered) backups to keep and the number of newest
  452. (highest-numbered) ones to keep, each time a new backup is made.
  453. Recall that these values are used just after a new backup version is
  454. made; that newly made backup is included in the count in
  455. `kept-new-versions'.  By default, both variables are 2.
  456.    If `delete-old-versions' is non-`nil', the excess middle versions
  457. are deleted without a murmur.  If it is `nil', the default, then you
  458. are asked whether the excess middle versions should really be deleted.
  459.    Dired's `.' (Period) command can also be used to delete old versions.
  460. *Note Dired Deletion::.
  461. File: emacs,  Node: Backup Copying,  Prev: Backup Deletion,  Up: Backup
  462. Copying vs. Renaming
  463. ....................
  464.    Backup files can be made by copying the old file or by renaming it.
  465. This makes a difference when the old file has multiple names.  If the
  466. old file is renamed into the backup file, then the alternate names
  467. become names for the backup file.  If the old file is copied instead,
  468. then the alternate names remain names for the file that you are
  469. editing, and the contents accessed by those names will be the new
  470. contents.
  471.    The method of making a backup file may also affect the file's owner
  472. and group.  If copying is used, these do not change.  If renaming is
  473. used, you become the file's owner, and the file's group becomes the
  474. default (different operating systems have different defaults for the
  475. group).
  476.    Having the owner change is usually a good idea, because then the
  477. owner always shows who last edited the file.  Also, the owners of the
  478. backups show who produced those versions.  Occasionally there is a file
  479. whose owner should not change; it is a good idea for such files to
  480. contain local variable lists to set `backup-by-copying-when-mismatch'
  481. locally (*note File Variables::.).
  482.    The choice of renaming or copying is controlled by three variables.
  483. Renaming is the default choice.  If the variable `backup-by-copying' is
  484. non-`nil', copying is used.  Otherwise, if the variable
  485. `backup-by-copying-when-linked' is non-`nil', then copying is used for
  486. files that have multiple names, but renaming may still used when the
  487. file being edited has only one name.  If the variable
  488. `backup-by-copying-when-mismatch' is non-`nil', then copying is used if
  489. renaming would cause the file's owner or group to change.
  490. File: emacs,  Node: Interlocking,  Prev: Backup,  Up: Saving
  491. Protection against Simultaneous Editing
  492. ---------------------------------------
  493.    Simultaneous editing occurs when two users visit the same file, both
  494. make changes, and then both save them.  If nobody were informed that
  495. this was happening, whichever user saved first would later find that his
  496. changes were lost.  On some systems, Emacs notices immediately when the
  497. second user starts to change the file, and issues an immediate warning.
  498.    For the sake of systems where that is not possible, and in case
  499. someone else proceeds to change the file despite the warning, Emacs also
  500. checks when the file is saved, and issues a second warning if you are
  501. about to overwrite a file containing another user's changes.  You can
  502. prevent loss of the other user's work by taking the proper corrective
  503. action at that time.
  504.    When you make the first modification in an Emacs buffer that is
  505. visiting a file, Emacs records that  the file is "locked" by you.  (It
  506. does this by writing another file in a directory reserved for this
  507. purpose.)  The lock is removed when you save the changes.  The idea is
  508. that the file is locked whenever an Emacs buffer visiting it has
  509. unsaved changes.
  510.    If you begin to modify the buffer while the visited file is locked by
  511. someone else, this constitutes a "collision".  When Emacs detects a
  512. collision, it asks you what to do, by calling the Lisp function
  513. `ask-user-about-lock'.  You can redefine this function for the sake of
  514. customization.  The standard definition of this function asks you a
  515. question and accepts three possible answers:
  516.      Steal the lock.  Whoever was already changing the file loses the
  517.      lock, and you gain the lock.
  518.      Proceed.  Go ahead and edit the file despite its being locked by
  519.      someone else.
  520.      Quit.  This causes an error (`file-locked') and the modification
  521.      you were trying to make in the buffer does not actually take place.
  522.    Note that locking works on the basis of a file name; if a file has
  523. multiple names, Emacs does not realize that the two names are the same
  524. file and cannot prevent two users from editing it simultaneously under
  525. different names.  However, basing locking on names means that Emacs can
  526. interlock the editing of new files that will not really exist until
  527. they are saved.
  528.    Some systems are not configured to allow Emacs to make locks.  On
  529. these systems, Emacs cannot detect trouble in advance, but it still can
  530. detect the collision when you try to save a file and overwrite someone
  531. else's changes.
  532.    Every time Emacs saves a buffer, it first checks the
  533. last-modification date of the existing file on disk to verify that it
  534. has not changed since the file was last visited or saved.  If the date
  535. does not match, it implies that changes were made in the file in some
  536. other way, and these changes are about to be lost if Emacs actually
  537. does save.  To prevent this, Emacs prints a warning message and asks
  538. for confirmation before saving.  Occasionally you will know why the
  539. file was changed and know that it does not matter; then you can answer
  540. `yes' and proceed.  Otherwise, you should cancel the save with `C-g'
  541. and investigate the situation.
  542.    The first thing you should do when notified that simultaneous
  543. editing has already taken place is to list the directory with `C-u C-x
  544. C-d' (*note Directory Listing: ListDir.).  This  shows the file's
  545. current author.  You should attempt to contact him to warn him not to
  546. continue editing.  Often the next step is to save the contents of your
  547. Emacs buffer under a different name, and use `diff' to compare the two
  548. files.
  549.    Simultaneous editing checks are also made when you visit with `C-x
  550. C-f' a file that is already visited and when you start to modify a
  551. file.  This is not strictly necessary, but it can cause you to find out
  552. about the collision earlier, when perhaps correction takes less work.
  553. File: emacs,  Node: Reverting,  Next: Auto Save,  Prev: Saving,  Up: Files
  554. Reverting a Buffer
  555. ==================
  556.    If you have made extensive changes to a file and then change your
  557. mind about them, you can get rid of them by reading in the previous
  558. version of the file.  To do this, use `M-x revert-buffer', which
  559. operates on the current buffer.  Since reverting a buffer
  560. unintentionally could lose a lot of work, you must confirm this command
  561. with `yes'.
  562.    `revert-buffer' keeps point at the same distance (measured in
  563. characters) from the beginning of the file.  If the file was edited only
  564. slightly, you will be at approximately the same piece of text after
  565. reverting as before.  If you have made drastic changes, the same value
  566. of point in the old file may address a totally different piece of text.
  567.    Reverting marks the buffer as "not modified" until another change is
  568. made.
  569.    Some kinds of buffers whose contents reflect data bases other than
  570. files, such as Dired buffers, can also be reverted.  For them,
  571. reverting means recalculating their contents from the appropriate data
  572. base.  Buffers created randomly with `C-x b' cannot be reverted;
  573. `revert-buffer' reports an error when asked to do so.
  574. File: emacs,  Node: Auto Save,  Next: File Aliases,  Prev: Reverting,  Up: Files
  575. Auto-Saving: Protection Against Disasters
  576. =========================================
  577.    Emacs saves all the visited files from time to time (based on
  578. counting your keystrokes) without being asked.  This is called
  579. "auto-saving".  It prevents you from losing more than a limited amount
  580. of work if the system crashes.
  581.    When Emacs determines that it is time for auto-saving, each buffer is
  582. considered, and is auto-saved if auto-saving is turned on for it and it
  583. has been changed since the last time it was auto-saved.  The message
  584. `Auto-saving...' is displayed in the echo area during auto-saving, if
  585. any files are actually auto-saved.  Errors occurring during auto-saving
  586. are caught so that they do not interfere with the execution of commands
  587. you have been typing.
  588. * Menu:
  589. * Files: Auto Save Files.       The file where auto-saved changes are
  590.                                   actually made until you save the file.
  591. * Control: Auto Save Control.   Controlling when and how often to auto-save.
  592. * Recover::                Recovering text from auto-save files.
  593. File: emacs,  Node: Auto Save Files,  Next: Auto Save Control,  Up: Auto Save
  594. Auto-Save Files
  595. ---------------
  596.    Auto-saving does not normally save in the files that you visited,
  597. because it can be very undesirable to save a program that is in an
  598. inconsistent state when you have made half of a planned change.
  599. Instead, auto-saving is done in a different file called the "auto-save
  600. file", and the visited file is changed only when you request saving
  601. explicitly (such as with `C-x C-s').
  602.    Normally, the auto-save file name is made by appending `#' to the
  603. front and rear of the visited file name.  Thus, a buffer visiting file
  604. `foo.c' is auto-saved in a file `#foo.c#'.  Most buffers that are not
  605. visiting files are auto-saved only if you request it explicitly; when
  606. they are auto-saved, the auto-save file name is made by appending `#%'
  607. to the front and `#' to the rear of buffer name.  For example, the
  608. `*mail*' buffer in which you compose messages to be sent is auto-saved
  609. in a file named `#%*mail*#'.  Auto-save file names are made this way
  610. unless you reprogram parts of Emacs to do something different (the
  611. functions `make-auto-save-file-name' and `auto-save-file-name-p').  The
  612. file name to be used for auto-saving in a buffer is calculated when
  613. auto-saving is turned on in that buffer.
  614.    When you delete a substantial part of the text in a large buffer,
  615. auto save turns off temporarily in that buffer.  This is so that if you
  616. delete text accidentally, it is likely to remain present in the auto
  617. save file.  To reenable auto-saving after this happens, simply save the
  618. file explicitly with `C-x C-s'.  Using `C-u 1 M-x auto-save-mode' also
  619. cancels this particular state.
  620.    If you want auto-saving to be done in the visited file, set the
  621. variable `auto-save-visited-file-name' to be non-`nil'.  In this mode,
  622. there is really no difference between auto-saving and explicit saving.
  623.    A buffer's auto-save file is deleted when you save the buffer in its
  624. visited file.  To inhibit this, set the variable
  625. `delete-auto-save-files' to `nil'.  Changing the visited file name with
  626. `C-x C-w' or `set-visited-file-name' renames any auto-save file to go
  627. with the new visited name.
  628.    When you delete a large amount of a buffer's text, auto-saving turns
  629. off in that buffer.  This is because if you deleted the text
  630. unintentionally, you might find the auto-save file more useful if it
  631. contains the deleted text.  To restart auto-saving in that buffer, save
  632. the buffer with `C-x C-s', or use `M-x auto-save'.
  633. File: emacs,  Node: Auto Save Control,  Next: Recover,  Prev: Auto Save Files,  Up: Auto Save
  634. Controlling Auto-Saving
  635. -----------------------
  636.    Each time you visit a file, auto-saving is turned on for that file's
  637. buffer if the variable `auto-save-default' is non-`nil' (but not in
  638. batch mode; *note Entering Emacs::.).  The default for this variable is
  639. `t', so auto-saving is the usual practice for file-visiting buffers.
  640. Auto-saving can be turned on or off for any existing buffer with the
  641. command `M-x auto-save-mode'.  Like other minor mode commands, `M-x
  642. auto-save-mode' turns auto-saving on with a positive argument, off with
  643. a zero or negative argument; with no argument, it toggles.
  644.    Emacs does auto-saving periodically based on counting how many
  645. characters you have typed since the last time auto-saving was done.
  646. The variable `auto-save-interval' specifies how many characters there
  647. are between auto-saves.  By default, it is 300.
  648.    Auto-saving also takes place when you stop typing for a while.  The
  649. variable `auto-save-timeout' says how many seconds Emacs should wait
  650. before it does an auto save (and perhaps also a garbage collection).
  651. (The actual time period is longer if the current buffer is long; this
  652. is a heuristic which aims to keep out of your way when you are editing
  653. long buffers in which auto-save takes an appreciable amount of time.)
  654. Auto-saving during idle periods accomplishes two things: first, it
  655. makes sure all your work is saved if you go away from the terminal for
  656. a while; second, it may avoid some auto-saving while you are actually
  657. typing.
  658.    Emacs also does auto-saving whenever it gets a fatal error.  This
  659. includes killing the Emacs job with a shell command such as `kill
  660. %emacs', or disconnecting a phone line or network connection.
  661.    You can request an auto-save explicitly with the command `M-x
  662. do-auto-save'.
  663. File: emacs,  Node: Recover,  Prev: Auto Save Control,  Up: Auto Save
  664. Recovering Data from Auto-Saves
  665. -------------------------------
  666.    The way to use the contents of an auto-save file to recover from a
  667. loss of data is with the command `M-x recover-file RET FILE RET'.  This
  668. visits FILE and then (after your confirmation) restores the contents
  669. from from its auto-save file `#FILE#'.  You can then save with `C-x
  670. C-s' to put the recovered text into FILE itself.  For example, to
  671. recover file `foo.c' from its auto-save file `#foo.c#', do:
  672.      M-x recover-file RET foo.c RET
  673.      yes RET
  674.      C-x C-s
  675.    Before asking for confirmation, `M-x recover-file' displays a
  676. directory listing describing the specified file and the auto-save file,
  677. so you can compare their sizes and dates.  If the auto-save file is
  678. older, `M-x recover-file' does not offer to read it.
  679. File: emacs,  Node: File Aliases,  Next: Version Control,  Prev: Auto Save,  Up: Files
  680. File Name Aliases
  681. =================
  682.    Symbolic links and hard links both make it possible for several file
  683. names to refer to the same file.  Hard links are alternate names that
  684. refer directly to the file; all the names are equally valid, and no one
  685. of them is preferred.  By contrast, a symbolic link is a kind of defined
  686. alias: when `foo' is a symbolic link to `bar', you can use either name
  687. to refer to the file, but `bar' is the real name, while `foo' is just
  688. an alias.  More complex cases occur when symbolic links point to
  689. directories.
  690.    If you visit two names for the same file, normally Emacs makes two
  691. different buffers, but it warns you about the situation.
  692.    If you wish to avoid visiting the same file in two buffers under
  693. different names, set the variable `find-file-existing-other-name' to a
  694. non-`nil' value.  Then `find-file' uses the existing buffer visiting
  695. the file, no matter which of the file's names you specify.
  696.    If the variable `find-file-visit-truename' is non-`nil', then the
  697. file name recorded for a buffer is the file's "truename" (made by
  698. replacing all symbolic links with their target names), rather than the
  699. name you specify.  Setting `find-file-visit-truename' also implies the
  700. effect of `find-file-existing-other-name'.
  701. File: emacs,  Node: Version Control,  Next: ListDir,  Prev: File Aliases,  Up: Files
  702. Version Control
  703. ===============
  704.    "Version control systems" are packages that can record multiple
  705. versions of a source file, usually storing the unchanged parts of the
  706. file just once.  Version control systems also record history information
  707. such as the creation time of each version, who created it, and a
  708. description of what was changed in that version.
  709.    The GNU project recommends the version control system known as RCS,
  710. which is free software and available from the Free Software Foundation.
  711. Emacs supports use of either RCS or SCCS (a proprietary, but widely
  712. used, version control system that is not quite as powerful as RCS)
  713. through a facility called VC.  The same Emacs commands work with either
  714. RCS or SCCS, so you hardly have to know which one of them you are using.
  715. * Menu:
  716. * Concepts of VC::              Basic version control information;
  717.                                   checking files in and out.
  718. * Editing with VC::             Commands for editing a file maintained
  719.                                   with version control.
  720. * Variables for Check-in/out::  Variables that affect the commands used
  721.                                   to check files in or out.
  722. * Log Entries::                 Logging your changes.
  723. * Change Logs and VC::          Generating a change log file from log
  724.                                   entries.
  725. * Old Versions::                Examining and comparing old versions.
  726. * VC Status::                   Commands to view the VC status of files and
  727.                                   look at log entries.
  728. * Renaming and VC::             A command to rename both the source and
  729.                                   master file correctly.
  730. * Snapshots::                   How to make and use snapshots, a set of
  731.                                   file versions that can be treated as a unit.
  732. * Version Headers::             Inserting version control headers into
  733.                                   working files.
  734. File: emacs,  Node: Concepts of VC,  Next: Editing with VC,  Up: Version Control
  735. Concepts of Version Control
  736. ---------------------------
  737.    When a file is under version control, we also say that it is
  738. "registered" in the version control system.  Each registered file has a
  739. corresponding "master file" which represents the file's present state
  740. plus its change history, so that you can reconstruct from it either the
  741. current version or any specified earlier version.  Usually the master
  742. file also records a "log entry" for each version describing what was
  743. changed in that version.
  744.    The file that is maintained under version control is sometimes called
  745. the "work file" corresponding to its master file.
  746.    To examine a file, you "check it out".  This extracts a version of
  747. the source file (typically, the most recent) from the master file.  If
  748. you want to edit the file, you must check it out "locked".  Only one
  749. user can do this at a time for any given source file.  (This kind of
  750. locking is completely unrelated to the locking that Emacs uses to
  751. detect simultaneous editing of a file.)
  752.    When you are done with your editing, you must "check in" the new
  753. version.  This records the new version in the master file, and unlocks
  754. the source file so that other people can lock it and thus modify it.
  755.    Checkin and checkout are the basic operations of version control.
  756. You can do both of them with a single Emacs command: `C-x C-q'
  757. (`vc-toggle-read-only').
  758.    A "snapshot" is a coherent collection of versions of the various
  759. files that make up a program.  *Note Snapshots::.
  760. File: emacs,  Node: Editing with VC,  Next: Variables for Check-in/out,  Prev: Concepts of VC,  Up: Version Control
  761. Editing with Version Control
  762. ----------------------------
  763.    When you visit a file that is maintained using version control, the
  764. mode line displays `RCS' or `SCCS' to inform you that version control
  765. is in use, and also (in case you care) which low-level system the file
  766. is actually stored in.  Normally, such a source file is read-only, and
  767. the mode line indicates this with `%%'.  With RCS, the mode line also
  768. indicates the number of the head version, which is normally also the
  769. version you are looking at.
  770.    These are the commands for editing a file maintained with version
  771. control:
  772. `C-x C-q'
  773.      Check the visited file in or out.
  774. `C-x v v'
  775.      Check the visited file in or out, or register it for version
  776.      control if it isn't already registered.
  777. `C-x v u'
  778.      Revert the buffer and the file to the last checked in version.
  779. `C-x v c'
  780.      Remove the last-entered change from the master for the visited
  781.      file.  This undoes your last check-in.
  782. `C-x v i'
  783.      Register the visited file in version control.
  784. (`C-x v' is the prefix key for version control commands; all of these
  785. commands except for `C-x C-q' start with `C-x v'.)
  786.    When you want to modify a file maintained with version control, type
  787. `C-x C-q' (`vc-toggle-read-only').  This "checks out" the file, and
  788. tells RCS or SCCS to lock the file.  This means making the file
  789. writable for you (but not for anyone else).
  790.    When you are finished editing the file, type `C-x C-q' again.  When
  791. used on a file that is checked out, this command checks the file in.
  792. But check-in does not start immediately; first, you must enter the "log
  793. entry"--a description of the changes in the new version.  `C-x C-q'
  794. pops up a buffer for you to enter this in.  When you are finished
  795. typing in the log entry, type `C-c C-c' to terminate it; this is when
  796. actual check-in takes place.
  797.    Checking in your changes unlocks the file, so that other users can
  798. lock it and modify it.
  799.    To specify the version number for the new version, use the command
  800. `C-u C-x v v' to do the checkin.  `C-x v v' (`vc-next-action') is the
  801. command that `C-x C-q' uses to do the "real work" when the visited file
  802. uses version control.  When used for checkin, and given a numeric
  803. argument, it reads the version number with the minibuffer.
  804.    Emacs does not save backup files for source files that are maintained
  805. with version control.  If you want to make backup files despite version
  806. control, set the variable `vc-make-backup-files' to a non-`nil' value.
  807.    Normally the work file exists all the time, whether it is locked or
  808. not.  If you set `vc-keep-workfiles' to `nil', then checking in a new
  809. version with `C-x C-q' deletes the work file; but any attempt to visit
  810. the file with Emacs creates it again.
  811.    It is not impossible to lock a file that someone else has locked.  If
  812. you try to check out a file that is locked, `C-x C-q' asks you whether
  813. you want to "steal the lock."  If you say yes, the file becomes locked
  814. by you, but a message is sent to the person who had formerly locked the
  815. file, to inform him of what has happened.  The mode line indicates that
  816. a file is locked by someone else by displaying the login name of that
  817. person, before the version number.
  818.    If you want to discard your current set of changes and revert to the
  819. last version checked in, use `C-x v u' (`vc-revert-buffer').  This
  820. cancels your last check-out, leaving the file unlocked.  If you want to
  821. make a different set of changes, you must first check the file out
  822. again.  `C-x v u' requires confirmation, unless it sees that you
  823. haven't made any changes since the last checked-in version.
  824.    `C-x v u' is also the command to use to unlock a file if you lock it
  825. and then decide not to change it.
  826.    You can cancel a change after checking it in, with `C-x v c'
  827. (`vc-cancel-version').  This command discards all record of the most
  828. recent checked in version.  `C-x v c' also offers to revert your
  829. workfile and buffer to the previous version (the one that precedes the
  830. version that is deleted).  If you say `no', then the buffer and
  831. workfile do not change.
  832.    Be careful when invoking `C-x v c', as it is easy to throw away a
  833. lot of work with it.  To help you be careful, this command always
  834. requires confirmation with `yes'.
  835.    You can register the visited file for version control using
  836. `C-x v i' (`vc-register').  If the variable `vc-default-back-end' is
  837. non-`nil', it specifies which version control system to use; otherwise,
  838. this uses RCS if it is installed on your system, and SCCS otherwise.
  839. After `C-x v i', the file is unlocked and read-only.  Type `C-x C-q' if
  840. you wish to lock and edit it.
  841.    The initial version number for a newly registered file is 1.1.  To
  842. specify a different number, give `C-x v i' a numeric argument; then it
  843. reads the initial version number using the minibuffer.
  844.    If `vc-initial-comment' is non-`nil', `C-x v i' reads an initial
  845. comment (much like a log entry) to describe the purpose of this source
  846. file.
  847.