Function: cpp-edit-toggle-unknown

cpp-edit-toggle-unknown is an interactive and byte-compiled function defined in cpp.el.gz.

Signature

(cpp-edit-toggle-unknown ARG)

Documentation

Toggle writable status for unknown conditionals.

With optional argument ARG, make them writable if ARG is positive, otherwise make them unwritable.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cpp.el.gz
(defun cpp-edit-toggle-unknown (arg)
  "Toggle writable status for unknown conditionals.
With optional argument ARG, make them writable if ARG is positive,
otherwise make them unwritable."
  (interactive "@P")
  (if (or (and (null arg) cpp-unknown-writable)
	  (<= (prefix-numeric-value arg) 0))
      (setq cpp-unknown-writable nil)
    (setq cpp-unknown-writable t))
  (cpp-edit-reset))