[PATCH v2 0/7] Improve Emacs CLI error handling
Tomi Ollila
tomi.ollila at iki.fi
Sat Dec 15 19:08:58 PST 2012
On Sat, Dec 15 2012, Austin Clements <amdragon at MIT.EDU> wrote:
> This obsoletes id:1355548513-10085-1-git-send-email-amdragon at mit.edu
> and fixes the things Mark and Tomi commented on. The interdiff is
> below.
Ok, new error messages appear at the end. Good.
+1
Tomi
>
> diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
> index cf61635..8f84087 100644
> --- a/emacs/notmuch-lib.el
> +++ b/emacs/notmuch-lib.el
> @@ -326,10 +326,12 @@ the user dismisses it."
> (with-current-buffer buf
> (view-mode-enter nil #'kill-buffer)
> (let ((inhibit-read-only t))
> + (goto-char (point-max))
> + (unless (bobp)
> + (insert "\n"))
> (insert msg)
> (unless (bolp)
> - (insert "\n"))
> - (goto-char (point-min))))
> + (insert "\n"))))
> (pop-to-buffer buf)))
>
More information about the notmuch
mailing list