Variable: default-process-coding-system

default-process-coding-system is a variable defined in coding.c.

Value

(undecided-unix . utf-8-unix)

Documentation

Cons of coding systems used for process I/O by default.

The car part is used for decoding a process output, the cdr part is used for encoding a text to be sent to a process.

View in manual

Probably introduced at or before Emacs version 20.1.

Source Code

// Defined in /usr/src/emacs/src/coding.c
  DEFVAR_LISP ("default-process-coding-system",
	       Vdefault_process_coding_system,
	       doc: /* Cons of coding systems used for process I/O by default.
The car part is used for decoding a process output,
the cdr part is used for encoding a text to be sent to a process.  */);