Function: process-inherit-coding-system-flag
process-inherit-coding-system-flag is a function defined in process.c.
Signature
(process-inherit-coding-system-flag PROCESS)
Documentation
Return the value of inherit-coding-system flag for PROCESS.
If this flag is t, buffer-file-coding-system of the buffer
associated with PROCESS will inherit the coding system used to decode
the process output.
Source Code
// Defined in /usr/src/emacs/src/process.c
{
#ifdef subprocesses
CHECK_PROCESS (process);
return XPROCESS (process)->inherit_coding_system_flag ? Qt : Qnil;
#else
/* Ignore the argument and return the value of
inherit-process-coding-system. */
return inherit_process_coding_system ? Qt : Qnil;
#endif
}