Changeset 4140 for trunk/src/coding.c
- Timestamp:
- 08/10/06 11:19:54 (2 years ago)
- Files:
-
- trunk/src/coding.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/coding.c
r4131 r4140 7540 7540 if (! NILP (Ffboundp (val))) 7541 7541 { 7542 val = safe_call1 (val, Flist (nargs, args)); 7542 /* We use call1 rather than safe_call1 7543 so as to get bug reports about functions called here 7544 which don't handle the current interface. */ 7545 val = call1 (val, Flist (nargs, args)); 7543 7546 if (CONSP (val)) 7544 7547 return val; … … 7966 7969 and the cdr part is used for encoding. 7967 7970 If VAL is a function symbol, the function must return a coding system 7968 or a cons of coding systems which are used as above. The function gets 7969 the arguments with which `find-operation-coding-system' was called. 7971 or a cons of coding systems which are used as above. The function is 7972 called with an argument that is a list of the arguments with which 7973 `find-operation-coding-system' was called. 7970 7974 7971 7975 See also the function `find-operation-coding-system'
