Variable: ielm-fontify-input-enable

ielm-fontify-input-enable is a customizable variable defined in ielm.el.gz.

Value

t

Documentation

Enable fontification of input in ielm buffers.

This variable only has effect when creating an ielm buffer. Use the command comint-fontify-input-mode(var)/comint-fontify-input-mode(fun) to toggle fontification of input in an already existing ielm buffer.

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ielm.el.gz
;;; Input fontification

(defcustom ielm-fontify-input-enable t
  "Enable fontification of input in ielm buffers.
This variable only has effect when creating an ielm buffer.  Use
the command `comint-fontify-input-mode' to toggle fontification
of input in an already existing ielm buffer."
  :type 'boolean
  :safe 'booleanp
  :version "29.1")