Synch with Oort Gnus.
authoryamaoka <yamaoka>
Sun, 8 Sep 2002 23:15:06 +0000 (23:15 +0000)
committeryamaoka <yamaoka>
Sun, 8 Sep 2002 23:15:06 +0000 (23:15 +0000)
lisp/ChangeLog
lisp/gnus-art.el

index ef1e92b..faabeb5 100644 (file)
@@ -1,3 +1,7 @@
+2002-09-08  Simon Josefsson  <jas@extundo.com>
+
+       * gnus-art.el (gnus-button-alist): Buttonize man page links.
+
 2002-09-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnus-art.el (gnus-article-dumbquotes-map): Add \230.
index b45ee9e..1e0c4f9 100644 (file)
@@ -5749,7 +5749,9 @@ after replacing with the original article."
     ;; This is how URLs _should_ be embedded in text...
     ("<URL: *\\([^<>]*\\)>" 1 t gnus-button-embedded-url 1)
     ;; Raw URLs.
-    (gnus-button-url-regexp 0 t browse-url 0))
+    (gnus-button-url-regexp 0 t browse-url 0)
+    ;; man pages
+    ("\\b\\([a-z]+\\)([0-9])\\W" 0 t man 1))
   "*Alist of regexps matching buttons in article bodies.
 
 Each entry has the form (REGEXP BUTTON FORM CALLBACK PAR...), where