diff options
| author | Richard M. Stallman | 2007-06-27 23:29:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-06-27 23:29:26 +0000 |
| commit | a3da9a06fda549e8f74772369c8f97c17d928da7 (patch) | |
| tree | 1dc53d993d94fafe37bfe1bfa717d9d02ee1258a /lispref | |
| parent | 4a7258598668d2241d41423171e1ea398c3adbd4 (diff) | |
| download | emacs-a3da9a06fda549e8f74772369c8f97c17d928da7.tar.gz emacs-a3da9a06fda549e8f74772369c8f97c17d928da7.zip | |
(Format Conversion Piecemeal): Clarify
`after-insert-file-functions' calling convention.
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/files.texi | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index fac06d0f9c8..1e5e94258b1 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-06-27 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * files.texi (Format Conversion Piecemeal): Clarify | ||
| 4 | `after-insert-file-functions' calling convention. | ||
| 5 | |||
| 1 | 2007-06-27 Michael Albinus <michael.albinus@gmx.de> | 6 | 2007-06-27 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * files.texi (Magic File Names): Remove `dired-call-process'. Add | 8 | * files.texi (Magic File Names): Remove `dired-call-process'. Add |
diff --git a/lispref/files.texi b/lispref/files.texi index 730b2b9b497..659229681b9 100644 --- a/lispref/files.texi +++ b/lispref/files.texi | |||
| @@ -3071,8 +3071,10 @@ have been dealt with by this function. | |||
| 3071 | 3071 | ||
| 3072 | @defvar after-insert-file-functions | 3072 | @defvar after-insert-file-functions |
| 3073 | Each function in this list is called by @code{insert-file-contents} | 3073 | Each function in this list is called by @code{insert-file-contents} |
| 3074 | with one argument, the number of characters inserted, and should | 3074 | with one argument, the number of characters inserted, and with point |
| 3075 | return the new character count, leaving point the same. | 3075 | at the beginning of the inserted text. Each function should leave |
| 3076 | point unchanged, and return the new character count describing the | ||
| 3077 | inserted text as modified by the function. | ||
| 3076 | @c ??? The docstring mentions a handler from `file-name-handler-alist' | 3078 | @c ??? The docstring mentions a handler from `file-name-handler-alist' |
| 3077 | @c "intercepting" `insert-file-contents'. Hmmm. --ttn | 3079 | @c "intercepting" `insert-file-contents'. Hmmm. --ttn |
| 3078 | @end defvar | 3080 | @end defvar |