Variable: last-code-conversion-error

last-code-conversion-error is a variable defined in coding.c.

Value

nil

Documentation

Error status of the last code conversion.

When an error was detected in the last code conversion, this variable is set to one of the following symbols.
  insufficient-source
  inconsistent-eol
  invalid-source
  interrupted
  insufficient-memory
When no error was detected, the value doesn't change. So, to check the error status of a code conversion by this variable, you must explicitly set this variable to nil before performing code conversion.

Source Code

// Defined in /usr/src/emacs/src/coding.c
  DEFVAR_LISP ("last-code-conversion-error", Vlast_code_conversion_error,
	       doc: /*
Error status of the last code conversion.

When an error was detected in the last code conversion, this variable
is set to one of the following symbols.
  `insufficient-source'
  `inconsistent-eol'
  `invalid-source'
  `interrupted'
  `insufficient-memory'
When no error was detected, the value doesn't change.  So, to check
the error status of a code conversion by this variable, you must
explicitly set this variable to nil before performing code
conversion.  */);