Variable: tcl-electric-hash-style

tcl-electric-hash-style is a customizable variable defined in tcl.el.gz.

Value

nil

Documentation

Style of electric hash insertion to use.

Possible values are backslash, meaning that \ quoting should be done; quote, meaning that " quoting should be done; smart, meaning that the choice between backslash and quote should be made depending on the number of hashes inserted; or nil, meaning that no quoting should be done. Any other value for this variable is taken to mean smart. The default is nil.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
(defcustom tcl-electric-hash-style nil ;; 'smart
  "Style of electric hash insertion to use.
Possible values are `backslash', meaning that `\\' quoting should be
done; `quote', meaning that `\"' quoting should be done; `smart',
meaning that the choice between `backslash' and `quote' should be
made depending on the number of hashes inserted; or nil, meaning that
no quoting should be done.  Any other value for this variable is
taken to mean `smart'.  The default is nil."
  :type '(choice (const backslash) (const quote) (const smart) (const nil)))