Variable: crisp-mode
crisp-mode is a customizable and buffer-local variable defined in
crisp.el.gz.
Documentation
Non-nil if Crisp mode is enabled.
Use the command crisp-mode(var)/crisp-mode(fun) to change this variable.
This variable was added, or its default value changed, in Emacs 20.4.
Probably introduced at or before Emacs version 20.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/crisp.el.gz
;;;###autoload
(defcustom crisp-mode nil
"Track status of CRiSP emulation mode.
A value of nil means CRiSP mode is not enabled. A value of t
indicates CRiSP mode is enabled.
Setting this variable directly does not take effect;
use either M-x customize or the function `crisp-mode'."
:set (lambda (_symbol value) (crisp-mode (if value 1 0)))
:initialize #'custom-initialize-default
:require 'crisp
:version "20.4"
:type 'boolean)