Function: gnus-article-copy-string
gnus-article-copy-string is an interactive and byte-compiled function
defined in gnus-art.el.gz.
Signature
(gnus-article-copy-string)
Documentation
Copy the string in the button to the kill ring.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-copy-string ()
"Copy the string in the button to the kill ring."
(interactive nil gnus-article-mode)
(gnus-article-check-buffer)
(let ((data (get-text-property (point) 'gnus-string)))
(when data
(with-temp-buffer
(insert data)
(copy-region-as-kill (point-min) (point-max))
(message "Copied %s" data)))))