X-Git-Url: https://cgit.sxemacs.org/?p=riece;a=blobdiff_plain;f=lisp%2Friece.el;h=4f646db5be6024b882d5af6ab79d64cf9719c301;hp=5b70a3471f600dba1fc64c263b43bf2dc689a1c8;hb=1b78545e7589bafe056d3eb41117d78c249e0133;hpb=901672044dcd8a48b9a34103c42ce0c204492380 diff --git a/lisp/riece.el b/lisp/riece.el index 5b70a34..4f646db 100644 --- a/lisp/riece.el +++ b/lisp/riece.el @@ -540,9 +540,7 @@ Instead, these commands are available: "Submit via mail a bug report on Riece." ;; This strange form ensures that (recent-keys) is the value before ;; the bug subject string is read. - (interactive (list (with-output-to-string - (print-recent-messages 20)) - (recent-keys))) + (interactive (list (riece-recent-messages 20) (recent-keys))) (require 'reporter) (let ((reporter-prompt-for-summary-p t)) (unless riece-debug @@ -597,8 +595,8 @@ are familiar with the debugger, to get a lisp back-trace.") "(closed server)")) (setq pointer (cdr pointer)))) ;; Insert recent keystrokes. - (insert "\n\n" - "Recent keystrokes:\n-----------------\n\n") + (insert "\n\nRecent keystrokes:\n" + "-----------------\n\n") (let ((before-keys (point))) (insert (key-description recent-keys)) (save-restriction @@ -608,7 +606,7 @@ are familiar with the debugger, to get a lisp back-trace.") (search-forward " " nil t) (insert "\n")))) ;; Insert recent minibuffer messages. - (insert "\nRecent messages (most recent first):\n" + (insert "\n\nRecent messages (most recent first):\n" "-----------------------------------\n" recent-messages))))