aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-12-02 19:03:06 -0800
committerGlenn Morris2010-12-02 19:03:06 -0800
commitf62f063dd0141c16191057eced0d5c07ff9808f5 (patch)
treeeed810615aae69befcf3070b3fb36127f689c9fb
parentc879436a90358f40d439794d453bd532a86d392a (diff)
downloademacs-f62f063dd0141c16191057eced0d5c07ff9808f5.tar.gz
emacs-f62f063dd0141c16191057eced0d5c07ff9808f5.zip
emacsbug.el trivia.
* lisp/mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer): Remove more undefined cl functions.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/mail/emacsbug.el4
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 812fa2deba5..76f3d6ff082 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12010-12-03 Glenn Morris <rgm@gnu.org> 12010-12-03 Glenn Morris <rgm@gnu.org>
2 2
3 * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
4 Remove more undefined cl functions.
5
3 * vc/diff.el (diff-sentinel): Make new arguments optional. 6 * vc/diff.el (diff-sentinel): Make new arguments optional.
4 * ibuf-ext.el (diff-sentinel): Update declaration. 7 * ibuf-ext.el (diff-sentinel): Update declaration.
5 8
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index a00f4c3a46e..5bc6a7edd82 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -399,11 +399,11 @@ and send the mail again%s."
399 (dolist (bug bugs) 399 (dolist (bug bugs)
400 (push (list 400 (push (list
401 'url-link 401 'url-link
402 :format (concat "Bug#" (number-to-string (third bug)) 402 :format (concat "Bug#" (number-to-string (nth 2 bug))
403 ": " (cadr bug) "\n %[%v%]\n") 403 ": " (cadr bug) "\n %[%v%]\n")
404 ;; FIXME: Why is only the link of the 404 ;; FIXME: Why is only the link of the
405 ;; active item clickable? 405 ;; active item clickable?
406 (first bug)) 406 (car bug))
407 items)) 407 items))
408 (nreverse items)))) 408 (nreverse items))))
409 (widget-insert "No bugs maching your keywords found.\n")) 409 (widget-insert "No bugs maching your keywords found.\n"))