Function: dcl-save-option

dcl-save-option is an interactive and byte-compiled function defined in dcl-mode.el.gz.

Signature

(dcl-save-option OPTION)

Documentation

Save a DCL mode option for this buffer.

Saves or updates an option in a Local Variables: section at the end of the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;;-------------------------------------------------------------------------
(defun dcl-save-option (option)
  "Save a DCL mode option for this buffer.
Saves or updates an option in a `Local Variables:'
section at the end of the current buffer."
  (interactive
   (let ((option (intern (completing-read "Option: " obarray))))
     (list option)))
  (dcl-save-local-variable option))