Function: texinfo-discard-command-and-arg

texinfo-discard-command-and-arg is a byte-compiled function defined in texinfmt.el.gz.

Signature

(texinfo-discard-command-and-arg)

Documentation

Discard both @-command and its argument in braces.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfo-discard-command-and-arg ()
  "Discard both @-command and its argument in braces."
  (goto-char texinfo-command-end)
  (forward-list 1)
  (setq texinfo-command-end (point))
  (delete-region texinfo-command-start texinfo-command-end))