Function: texinfo-format-deftypefun
texinfo-format-deftypefun is a byte-compiled function defined in
texinfmt.el.gz.
Signature
(texinfo-format-deftypefun PARSED-ARGS)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfo-format-deftypefun (parsed-args)
;; Specialized typed-function-like or typed-variable-like entity:
;; @deftypefun data-type name args...
;; In Info, `Function: data-type name ARGS'
;; @deftypevar data-type name
;; In Info, `Variable: data-type name'
;; Note: args in lower case, unless modified in command line.
;; Use cdr of texinfo-defun-type to determine category:
(let ((category (car (cdr texinfo-defun-type)))
(data-type (car parsed-args))
(name (car (cdr parsed-args)))
(args (cdr (cdr parsed-args))))
(insert " -- " category ": " data-type " " name)
(while args
(insert " " (car args))
(setq args (cdr args)))))