aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorMiles Bader2007-07-15 02:05:20 +0000
committerMiles Bader2007-07-15 02:05:20 +0000
commit7eb1e4534e88a32fe5e549e630fdabf3e062be2b (patch)
tree34fc72789f1cfbfeb067cf507f8871c322df300a /src/coding.c
parent76d11d2cf9623e9f4c38e8239c4444ffc1fae485 (diff)
parent6f8a87c027ebd6f9cfdac5c0df97d651227bec62 (diff)
downloademacs-7eb1e4534e88a32fe5e549e630fdabf3e062be2b.tar.gz
emacs-7eb1e4534e88a32fe5e549e630fdabf3e062be2b.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 803-813) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 51-58) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 233-236) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-25
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 8dc20ef6a3a..2b7a7422d5c 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -7472,6 +7472,8 @@ They may specify a coding system, a cons of coding systems,
7472or a function symbol to call. 7472or a function symbol to call.
7473In the last case, we call the function with one argument, 7473In the last case, we call the function with one argument,
7474which is a list of all the arguments given to this function. 7474which is a list of all the arguments given to this function.
7475If the function can't decide a coding system, it can return
7476`undecided' so that the normal code-detection is performed.
7475 7477
7476If OPERATION is `insert-file-contents', the argument corresponding to 7478If OPERATION is `insert-file-contents', the argument corresponding to
7477TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a 7479TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a
@@ -7973,7 +7975,9 @@ and the cdr part is used for encoding.
7973If VAL is a function symbol, the function must return a coding system 7975If VAL is a function symbol, the function must return a coding system
7974or a cons of coding systems which are used as above. The function is 7976or a cons of coding systems which are used as above. The function is
7975called with an argument that is a list of the arguments with which 7977called with an argument that is a list of the arguments with which
7976`find-operation-coding-system' was called. 7978`find-operation-coding-system' was called. If the function can't decide
7979a coding system, it can return `undecided' so that the normal
7980code-detection is performed.
7977 7981
7978See also the function `find-operation-coding-system' 7982See also the function `find-operation-coding-system'
7979and the variable `auto-coding-alist'. */); 7983and the variable `auto-coding-alist'. */);