(gnus-article-browse-html-article): Fix typo in doc string.
authorReiner Steib <Reiner.Steib@gmx.de>
Sat, 24 Mar 2007 19:26:02 +0000 (19:26 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Sat, 24 Mar 2007 19:26:02 +0000 (19:26 +0000)
(gnus-button-alist): Also catch `<f1> k ...'.

lisp/ChangeLog
lisp/gnus-art.el

index 38f56d2..90f310b 100644 (file)
@@ -1,3 +1,9 @@
+2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
+       string.
+       (gnus-button-alist): Also catch `<f1> k ...'.
+
 2007-03-24  Simon Josefsson  <simon@josefsson.org>
 
        * hashcash.el (hashcash-generate-payment-async): Don't crash if
 2007-03-24  Simon Josefsson  <simon@josefsson.org>
 
        * hashcash.el (hashcash-generate-payment-async): Don't crash if
        (gnus-button-alist): Add mid\\|message-id.
        (gnus-button-fetch-group): Extend for use in
        `browse-url-browser-function'.
        (gnus-button-alist): Add mid\\|message-id.
        (gnus-button-fetch-group): Extend for use in
        `browse-url-browser-function'.
-       (gnus-button-url-regexp): Try to catch URL with parentheses as in
-       WikiPedia URL.
+       (gnus-button-url-regexp): Try to catch paired parentheses like in
+       Wikipedia URLs.
 
        * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
        Suggested by Simon Krahnke <overlord@gmx.li>.
 
        * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
        Suggested by Simon Krahnke <overlord@gmx.li>.
index 9e45350..c94f2b2 100644 (file)
@@ -2839,7 +2839,7 @@ Recurse into multiparts."
 Warning: Spammers use links to images in HTML articles to verify
 whether you have read the message.  As
 `gnus-article-browse-html-article' passes the unmodified HTML
 Warning: Spammers use links to images in HTML articles to verify
 whether you have read the message.  As
 `gnus-article-browse-html-article' passes the unmodified HTML
-content to the browser without eliminatin these \"web bugs\" you
+content to the browser without eliminating these \"web bugs\" you
 should only use it for mails from trusted senders."
   ;; Cf. `mm-w3m-safe-url-regexp'
   (interactive)
 should only use it for mails from trusted senders."
   ;; Cf. `mm-w3m-safe-url-regexp'
   (interactive)
@@ -6473,7 +6473,7 @@ groups."
             (punct "!?:;.,"))
         (concat
          "\\(?:"
             (punct "!?:;.,"))
         (concat
          "\\(?:"
-         ;; Match paired parentheses, e.g. in WikiPedia URLs:
+         ;; Match paired parentheses, e.g. in Wikipedia URLs:
          "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "[" chars "]"
          "\\|"
          "[" chars punct     "]+" "[" chars "]"
          "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "[" chars "]"
          "\\|"
          "[" chars punct     "]+" "[" chars "]"
@@ -6953,7 +6953,7 @@ positives are possible."
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2)
     ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+v[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2)
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2)
     ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+v[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2)
-    ("`\\(\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^']+\\)\\)'"
+    ("`\\(\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^']+\\)\\)'"
      ;; Unlike the other regexps we really have to require quoting
      ;; here to determine where it ends.
      1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3)
      ;; Unlike the other regexps we really have to require quoting
      ;; here to determine where it ends.
      1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3)