Function: dcl-save-all-options

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

Signature

(dcl-save-all-options)

Documentation

Save all dcl-mode options for this buffer.

Saves or updates all dcl-mode related options 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-all-options ()
  "Save all `dcl-mode' options for this buffer.
Saves or updates all `dcl-mode' related options in a `Local Variables:'
section at the end of the current buffer."
  (interactive "*")
  (mapcar (lambda (option-assoc)
	    (let* ((option (car option-assoc)))
	      (dcl-save-local-variable option "$! ")))
	  dcl-option-alist))