Function: gnus-button-handle-describe-key

gnus-button-handle-describe-key is a byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-button-handle-describe-key URL)

Documentation

Call describe-key when pushing the corresponding URL button.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-button-handle-describe-key (url)
  "Call `describe-key' when pushing the corresponding URL button."
  (let* ((key-string
	  (replace-regexp-in-string gnus-button-handle-describe-prefix "" url))
	 (keys (ignore-errors (kbd key-string))))
    (if keys
	(describe-key keys)
      (gnus-message 3 "Invalid key sequence in button: %s" key-string))))