Variable: electric-quote-inhibit-functions

electric-quote-inhibit-functions is a variable defined in electric.el.gz.

Value

nil

Documentation

List of functions that should inhibit electric quoting.

When the variable electric-quote-mode(var)/electric-quote-mode(fun) is non-nil, Emacs will call these functions in order after the user has typed an ` or
' character. If one of them returns non-nil, electric quote
substitution is inhibited. The functions are called after the
` or ' character has been inserted with point directly
after the inserted character. The functions in this hook should not move point or change the current buffer.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/electric.el.gz
(defvar electric-quote-inhibit-functions ()
  "List of functions that should inhibit electric quoting.
When the variable `electric-quote-mode' is non-nil, Emacs will
call these functions in order after the user has typed an \\=` or
\\=' character.  If one of them returns non-nil, electric quote
substitution is inhibited.  The functions are called after the
\\=` or \\=' character has been inserted with point directly
after the inserted character.  The functions in this hook should
not move point or change the current buffer.")