diff options
| author | Dave Love | 1999-10-19 17:56:01 +0000 |
|---|---|---|
| committer | Dave Love | 1999-10-19 17:56:01 +0000 |
| commit | 4f36dd62bb2d88592dbb3cb8c67ed87dae71084d (patch) | |
| tree | c96f4c20348d8ac803839e761dc858268565647a | |
| parent | b5f5bc317a5ae156d91da5851f3e2a323ffb6f68 (diff) | |
| download | emacs-4f36dd62bb2d88592dbb3cb8c67ed87dae71084d.tar.gz emacs-4f36dd62bb2d88592dbb3cb8c67ed87dae71084d.zip | |
Mention vc-ignore-vc-files.
Doc ange-ftp port number.
Modify file-name-handler-alist text.
| -rw-r--r-- | man/files.texi | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/man/files.texi b/man/files.texi index 375615731d2..dfd8087e424 100644 --- a/man/files.texi +++ b/man/files.texi | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | @c This is part of the Emacs manual. | 1 | @c This is part of the Emacs manual. |
| 2 | @c Copyright (C) 1985, 86, 87, 93, 94, 95, 1997 Free Software Foundation, Inc. | 2 | @c Copyright (C) 1985,86,87,93,94,95,97,1999 Free Software Foundation, Inc. |
| 3 | @c See file emacs.texi for copying conditions. | 3 | @c See file emacs.texi for copying conditions. |
| 4 | @node Files, Buffers, Fixit, Top | 4 | @node Files, Buffers, Fixit, Top |
| 5 | @chapter File Handling | 5 | @chapter File Handling |
| @@ -2012,6 +2012,16 @@ headers. | |||
| 2012 | There are many ways of customizing VC. The options you can set fall | 2012 | There are many ways of customizing VC. The options you can set fall |
| 2013 | into four categories, described in the following sections. | 2013 | into four categories, described in the following sections. |
| 2014 | 2014 | ||
| 2015 | @vindex vc-ignore-vc-files | ||
| 2016 | @cindex Version control, deactivating | ||
| 2017 | In addition, it is possible to turn VC on and off generally by setting | ||
| 2018 | the variable @code{vc-ignore-vc-files}. Normally VC will notice the | ||
| 2019 | presence of version control on a file you visit and automatically invoke | ||
| 2020 | the relevant program to check the file's state. Change | ||
| 2021 | @code{vc-ignore-vc-files} if this isn't the right thing, for instance, | ||
| 2022 | if you edit files under version control but don't have the relevant | ||
| 2023 | version control programs available. | ||
| 2024 | |||
| 2015 | @menu | 2025 | @menu |
| 2016 | * Backend Options:: Customizing the back-end to your needs. | 2026 | * Backend Options:: Customizing the back-end to your needs. |
| 2017 | * VC Workfile Handling:: Various options concerning working files. | 2027 | * VC Workfile Handling:: Various options concerning working files. |
| @@ -2362,6 +2372,7 @@ compiling it. | |||
| 2362 | @group | 2372 | @group |
| 2363 | /@var{host}:@var{filename} | 2373 | /@var{host}:@var{filename} |
| 2364 | /@var{user}@@@var{host}:@var{filename} | 2374 | /@var{user}@@@var{host}:@var{filename} |
| 2375 | /@var{user}@@@var{host}#@var{port}:@var{filename} | ||
| 2365 | @end group | 2376 | @end group |
| 2366 | @end example | 2377 | @end example |
| 2367 | 2378 | ||
| @@ -2369,7 +2380,8 @@ compiling it. | |||
| 2369 | When you do this, Emacs uses the FTP program to read and write files on | 2380 | When you do this, Emacs uses the FTP program to read and write files on |
| 2370 | the specified host. It logs in through FTP using your user name or the | 2381 | the specified host. It logs in through FTP using your user name or the |
| 2371 | name @var{user}. It may ask you for a password from time to time; this | 2382 | name @var{user}. It may ask you for a password from time to time; this |
| 2372 | is used for logging in on @var{host}. | 2383 | is used for logging in on @var{host}. The form using @var{port} allows |
| 2384 | you to access servers running on a non-default TCP port. | ||
| 2373 | 2385 | ||
| 2374 | @cindex ange-ftp | 2386 | @cindex ange-ftp |
| 2375 | @vindex ange-ftp-default-user | 2387 | @vindex ange-ftp-default-user |
| @@ -2380,8 +2392,10 @@ that means to use your own user name. But if you set the variable | |||
| 2380 | @code{ange-ftp}.) | 2392 | @code{ange-ftp}.) |
| 2381 | 2393 | ||
| 2382 | @vindex file-name-handler-alist | 2394 | @vindex file-name-handler-alist |
| 2383 | You can entirely turn off the FTP file name feature by setting the | 2395 | You can entirely turn off the FTP file name feature by removing the |
| 2384 | variable @code{file-name-handler-alist} to @code{nil}. | 2396 | entries @var{ange-ftp-completion-hook-function} and |
| 2397 | @var{ange-ftp-hook-function} from the variable | ||
| 2398 | @code{file-name-handler-alist}. | ||
| 2385 | 2399 | ||
| 2386 | @node Quoted File Names | 2400 | @node Quoted File Names |
| 2387 | @section Quoted File Names | 2401 | @section Quoted File Names |