Variable: electric-quote-chars

electric-quote-chars is a customizable variable defined in electric.el.gz.

Value

(8216 8217 8220 8221)

Documentation

Curved quote characters for electric-quote-mode(var)/electric-quote-mode(fun).

This list's members correspond to left single quote, right single quote, left double quote, and right double quote, respectively.

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

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/electric.el.gz
(defcustom electric-quote-chars '(? ? ? ?)
  "Curved quote characters for `electric-quote-mode'.
This list's members correspond to left single quote, right single
quote, left double quote, and right double quote, respectively."
  :version "26.1"
  :type '(list character character character character)
  :safe #'(lambda (x)
	    (pcase x
	      (`(,(pred characterp) ,(pred characterp)
		 ,(pred characterp) ,(pred characterp))
	       t)))
  :group 'electricity)