diff options
| author | Miles Bader | 2007-07-09 08:00:55 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-07-09 08:00:55 +0000 |
| commit | 1011c48763982d02797a7058556d29f639f6efca (patch) | |
| tree | 5f1b7529b4cc483b73475b89245633c5848b8a5e /src/coding.c | |
| parent | 6f06dac7b57b8d73f4b26a855cd9862630192029 (diff) | |
| parent | 69e4c7c4bacf19e9e004605fcb1c067e478beffe (diff) | |
| download | emacs-1011c48763982d02797a7058556d29f639f6efca.tar.gz emacs-1011c48763982d02797a7058556d29f639f6efca.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 803-805)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-227
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index e7ff19f3929..e4ecbf50f62 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -8390,6 +8390,8 @@ They may specify a coding system, a cons of coding systems, | |||
| 8390 | or a function symbol to call. | 8390 | or a function symbol to call. |
| 8391 | In the last case, we call the function with one argument, | 8391 | In the last case, we call the function with one argument, |
| 8392 | which is a list of all the arguments given to this function. | 8392 | which is a list of all the arguments given to this function. |
| 8393 | If the function can't decide a coding system, it can return | ||
| 8394 | `undecided' so that the normal code-detection is performed. | ||
| 8393 | 8395 | ||
| 8394 | If OPERATION is `insert-file-contents', the argument corresponding to | 8396 | If OPERATION is `insert-file-contents', the argument corresponding to |
| 8395 | TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a | 8397 | TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a |
| @@ -9613,8 +9615,11 @@ the file contents. | |||
| 9613 | If VAL is a cons of coding systems, the car part is used for decoding, | 9615 | If VAL is a cons of coding systems, the car part is used for decoding, |
| 9614 | and the cdr part is used for encoding. | 9616 | and the cdr part is used for encoding. |
| 9615 | If VAL is a function symbol, the function must return a coding system | 9617 | If VAL is a function symbol, the function must return a coding system |
| 9616 | or a cons of coding systems which are used as above. The function gets | 9618 | or a cons of coding systems which are used as above. The function is |
| 9617 | the arguments with which `find-operation-coding-systems' was called. | 9619 | called with an argument that is a list of the arguments with which |
| 9620 | `find-operation-coding-system' was called. If the function can't decide | ||
| 9621 | a coding system, it can return `undecided' so that the normal | ||
| 9622 | code-detection is performed. | ||
| 9618 | 9623 | ||
| 9619 | See also the function `find-operation-coding-system' | 9624 | See also the function `find-operation-coding-system' |
| 9620 | and the variable `auto-coding-alist'. */); | 9625 | and the variable `auto-coding-alist'. */); |