Function: texinfmt-version
texinfmt-version is an interactive and byte-compiled function defined
in texinfmt.el.gz.
This command is obsolete since 28.1; use emacs-version(var)/emacs-version(fun) instead.
Signature
(texinfmt-version &optional HERE)
Documentation
Show the version of texinfmt.el in the minibuffer.
If optional argument HERE is non-nil, insert info at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfmt-version (&optional here)
"Show the version of texinfmt.el in the minibuffer.
If optional argument HERE is non-nil, insert info at point."
(declare (obsolete emacs-version "28.1"))
(interactive "P")
(let ((version-string
(format-message "Version of `texinfmt.el': %s" texinfmt-version)))
(if here
(insert version-string)
(if (called-interactively-p 'interactive)
(message "%s" version-string)
version-string))))