Function: actypes::link-to-rfc

actypes::link-to-rfc is an interactive and byte-compiled function defined in hactypes.el.

Signature

(actypes::link-to-rfc RFC-NUM)

Documentation

Retrieve and display an Internet rfc given by RFC-NUM.

RFC-NUM may be a string or an integer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact link-to-rfc (rfc-num)
  "Retrieve and display an Internet rfc given by RFC-NUM.
RFC-NUM may be a string or an integer."
  (interactive "nRFC number to retrieve: ")
  (when (or (stringp rfc-num) (integerp rfc-num))
    (browse-url-emacs (hpath:rfc rfc-num))))