Function: texinfo-clear

texinfo-clear is a byte-compiled function defined in texinfmt.el.gz.

Signature

(texinfo-clear)

Documentation

Clear the value of the flag.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfo-clear ()
  "Clear the value of the flag."
  (let* ((arg (texinfo-parse-arg-discard))
         (flag (car (read-from-string arg)))
         ;; (value (substring arg (cdr (read-from-string arg))))
         )
    (put flag 'texinfo-whether-setp 'flag-cleared)
    (put flag 'texinfo-set-value "")))