+2010-11-27 Glenn Morris <rgm@gnu.org>
+
+ * mail/emacsbug.el (report-emacs-bug-create-existing-bugs-buffer):
+ Replace undefined CL functions.
+
2010-11-26 Eli Zaretskii <eliz@gnu.org>
* simple.el (prog-mode): Set bidi-paragraph-direction to
(if bugs
(setq bug-choice-widget
(apply 'widget-create 'radio-button-choice
- :value (car (first bugs))
+ :value (caar bugs)
(let (items)
(dolist (bug bugs)
(push (list
'url-link
:format (concat "Bug#" (number-to-string (third bug))
- ": " (second bug) "\n %[%v%]\n")
+ ": " (cadr bug) "\n %[%v%]\n")
;; FIXME: Why is only the link of the
;; active item clickable?
(first bug))
(let ((val (widget-value bug-choice-widget)))
;; TODO: Do something!
(message "Appending to bug %s!"
- (third (assoc val bug-alist)))))
+ (nth 2 (assoc val bug-alist)))))
"Append to chosen bug"))
(widget-insert " ")
(widget-create 'push-button