branch: scratch/rfc-mode commit e2608adbac2180e6374c9b09be9acb1c7a27ec45 Author: Daniel Martín <mardan...@yahoo.es> Commit: Daniel Martín <mardan...@yahoo.es>
Make hyperlinks clickable with the mouse too --- rfc-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rfc-mode.el b/rfc-mode.el index 2943485138..2cefd815a3 100644 --- a/rfc-mode.el +++ b/rfc-mode.el @@ -266,7 +266,8 @@ Returns t if section is found, nil otherwise." (make-text-button start end 'action `(lambda (button) (rfc-mode-read ,number)) - 'help-echo (format "Read RFC %d" number)) + 'help-echo (format "Read RFC %d" number) + 'follow-link t) (goto-char end))))))) (defun rfc-mode-header-start ()