diff options
| author | Eli Zaretskii | 2013-02-23 12:55:13 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2013-02-23 12:55:13 +0200 |
| commit | 39ef03af997b197fd313abd38f3eef866e38d7ca (patch) | |
| tree | e7be074d186bc773bd6b931950e906ab9d5c3092 | |
| parent | cee1a690ee32abe67ef2d43fb9a9ad9f792de405 (diff) | |
| download | emacs-39ef03af997b197fd313abd38f3eef866e38d7ca.tar.gz emacs-39ef03af997b197fd313abd38f3eef866e38d7ca.zip | |
Minor improvements in the ELisp manual.
doc/lispref/files.texi (Magic File Names): Improve wording and indexing.
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 9d541978cbc..722e741a119 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-02-23 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * files.texi (Magic File Names): Improve wording and indexing. | ||
| 4 | |||
| 1 | 2013-02-19 Glenn Morris <rgm@gnu.org> | 5 | 2013-02-19 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * text.texi (Change Hooks): Fix typo. | 7 | * text.texi (Change Hooks): Fix typo. |
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index c976f5b2ec4..49269d71bf9 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -2643,7 +2643,7 @@ no prefix argument is given, and @code{nil} otherwise. | |||
| 2643 | 2643 | ||
| 2644 | You can implement special handling for certain file names. This is | 2644 | You can implement special handling for certain file names. This is |
| 2645 | called making those names @dfn{magic}. The principal use for this | 2645 | called making those names @dfn{magic}. The principal use for this |
| 2646 | feature is in implementing remote file names (@pxref{Remote Files,, | 2646 | feature is in implementing access to remote files (@pxref{Remote Files,, |
| 2647 | Remote Files, emacs, The GNU Emacs Manual}). | 2647 | Remote Files, emacs, The GNU Emacs Manual}). |
| 2648 | 2648 | ||
| 2649 | To define a kind of magic file name, you must supply a regular | 2649 | To define a kind of magic file name, you must supply a regular |
| @@ -2651,6 +2651,7 @@ expression to define the class of names (all those that match the | |||
| 2651 | regular expression), plus a handler that implements all the primitive | 2651 | regular expression), plus a handler that implements all the primitive |
| 2652 | Emacs file operations for file names that match. | 2652 | Emacs file operations for file names that match. |
| 2653 | 2653 | ||
| 2654 | @cindex file handler | ||
| 2654 | @vindex file-name-handler-alist | 2655 | @vindex file-name-handler-alist |
| 2655 | The variable @code{file-name-handler-alist} holds a list of handlers, | 2656 | The variable @code{file-name-handler-alist} holds a list of handlers, |
| 2656 | together with regular expressions that determine when to apply each | 2657 | together with regular expressions that determine when to apply each |