Function: c-ts-mode--prompt-for-style
c-ts-mode--prompt-for-style is a byte-compiled function defined in
c-ts-mode.el.gz.
Signature
(c-ts-mode--prompt-for-style)
Documentation
Prompt for an indent style and return the symbol for it.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-mode.el.gz
(defun c-ts-mode--prompt-for-style ()
"Prompt for an indent style and return the symbol for it."
(intern
(completing-read
"Style: "
'(gnu k&r linux bsd)
nil t nil nil "gnu")))