Function: texinfo-format-email

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

Signature

(texinfo-format-email)

Documentation

Format email address and optional following full name.

Insert full name, if present, followed by email address surrounded by in angle brackets.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfo-format-email ()
  "Format email address and optional following full name.
Insert full name, if present, followed by email address
surrounded by in angle brackets."
  (let ((args (texinfo-format-parse-args)))
    (texinfo-discard-command)
    ;; if full-name
    (if (nth 1 args)
        (insert  (nth 1 args) " "))
    (insert "<" (nth 0 args) ">")))