Show
Ignore:
Timestamp:
08/10/06 11:19:54 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/coding.c

    r4131 r4140  
    75407540          if (! NILP (Ffboundp (val))) 
    75417541            { 
    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)); 
    75437546              if (CONSP (val)) 
    75447547                return val; 
     
    79667969and the cdr part is used for encoding. 
    79677970If 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. 
     7971or a cons of coding systems which are used as above.  The function is 
     7972called with an argument that is a list of the arguments with which 
     7973`find-operation-coding-system' was called. 
    79707974 
    79717975See also the function `find-operation-coding-system'