aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTassilo Horn2010-11-23 09:00:56 +0100
committerTassilo Horn2010-11-23 09:00:56 +0100
commit331460ac64fccf8979927d641f95015c6b2c16f2 (patch)
tree872c63d6215579825d37e8ca522f5e3143da7960
parent0c32ce32b5854014510724d3c3b077dca32a70f4 (diff)
downloademacs-331460ac64fccf8979927d641f95015c6b2c16f2.tar.gz
emacs-331460ac64fccf8979927d641f95015c6b2c16f2.zip
* mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Mention
that the keywords should be comma separated.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/emacsbug.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f86ff355fa9..e6a33d39708 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-11-23 Tassilo Horn <tassilo@member.fsf.org>
2
3 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Mention
4 that the keywords should be comma separated.
5
12010-11-23 Chong Yidong <cyd@stupidchicken.com> 62010-11-23 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available. 8 * vc/vc.el (vc-merge): Use vc-BACKEND-merge-branch if available.
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index 1a8be7fc5a8..472c9791f8a 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -451,7 +451,7 @@ and send the mail again%s."
451(defun report-emacs-bug-query-existing-bugs (keywords) 451(defun report-emacs-bug-query-existing-bugs (keywords)
452 "Query for KEYWORDS at `report-emacs-bug-tracker-url', and return the result. 452 "Query for KEYWORDS at `report-emacs-bug-tracker-url', and return the result.
453The result is an alist with items of the form (URL SUBJECT NO)." 453The result is an alist with items of the form (URL SUBJECT NO)."
454 (interactive "sBug keywords: ") 454 (interactive "sBug keywords (comma separated): ")
455 (url-retrieve (concat report-emacs-bug-tracker-url 455 (url-retrieve (concat report-emacs-bug-tracker-url
456 "pkgreport.cgi?include=subject%3A" 456 "pkgreport.cgi?include=subject%3A"
457 (replace-regexp-in-string "[[:space:]]+" "+" keywords) 457 (replace-regexp-in-string "[[:space:]]+" "+" keywords)