Re: [PATCH v4 0/8] emacs: JSON-based search cleanups
authorJameson Graef Rollins <jrollins@finestructure.net>
Sun, 22 Jul 2012 18:45:48 +0000 (11:45 +1700)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:48:28 +0000 (09:48 -0800)
65/4ff4b08dc17c7e02ee245f85e18692ffc0d466 [new file with mode: 0644]

diff --git a/65/4ff4b08dc17c7e02ee245f85e18692ffc0d466 b/65/4ff4b08dc17c7e02ee245f85e18692ffc0d466
new file mode 100644 (file)
index 0000000..ae65154
--- /dev/null
@@ -0,0 +1,106 @@
+Return-Path: <jrollins@finestructure.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 45144431FAF\r
+       for <notmuch@notmuchmail.org>; Sun, 22 Jul 2012 11:46:01 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -2.29\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-2.29 tagged_above=-999 required=5\r
+       tests=[RCVD_IN_DNSWL_MED=-2.3, T_MIME_NO_TEXT=0.01] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id ST9LQcfNcTW9 for <notmuch@notmuchmail.org>;\r
+       Sun, 22 Jul 2012 11:45:58 -0700 (PDT)\r
+Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
+       [131.215.239.19])\r
+       by olra.theworths.org (Postfix) with ESMTP id D0ED5431FAE\r
+       for <notmuch@notmuchmail.org>; Sun, 22 Jul 2012 11:45:58 -0700 (PDT)\r
+Received: from earth-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
+       by earth-doxen-postvirus (Postfix) with ESMTP id 5FF9666E00B8;\r
+       Sun, 22 Jul 2012 11:45:58 -0700 (PDT)\r
+X-Spam-Scanned: at Caltech-IMSS on earth-doxen by amavisd-new\r
+Received: from finestructure.net (unknown [76.89.192.57])\r
+       (Authenticated sender: jrollins)\r
+       by earth-doxen-submit (Postfix) with ESMTP id 7B93366E00B9;\r
+       Sun, 22 Jul 2012 11:45:54 -0700 (PDT)\r
+Received: by finestructure.net (Postfix, from userid 1000)\r
+       id D54A05CF; Sun, 22 Jul 2012 11:45:52 -0700 (PDT)\r
+From: Jameson Graef Rollins <jrollins@finestructure.net>\r
+To: Austin Clements <amdragon@MIT.EDU>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH v4 0/8] emacs: JSON-based search cleanups\r
+In-Reply-To: <1342892232-5659-1-git-send-email-amdragon@mit.edu>\r
+References: <1341354059-29396-1-git-send-email-amdragon@mit.edu>\r
+       <1342892232-5659-1-git-send-email-amdragon@mit.edu>\r
+User-Agent: Notmuch/0.13.2+90~gb97ff6a (http://notmuchmail.org) Emacs/23.4.1\r
+       (x86_64-pc-linux-gnu)\r
+Date: Sun, 22 Jul 2012 11:45:48 -0700\r
+Message-ID: <87fw8j8wir.fsf@servo.finestructure.net>\r
+MIME-Version: 1.0\r
+Content-Type: multipart/signed; boundary="=-=-=";\r
+       micalg=pgp-sha256; protocol="application/pgp-signature"\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 22 Jul 2012 18:46:01 -0000\r
+\r
+--=-=-=\r
+\r
+On Sat, Jul 21 2012, Austin Clements <amdragon@MIT.EDU> wrote:\r
+> This version fixes several bugs found in the previous version.  I\r
+> replaced the insert-before-markers trick in\r
+> notmuch-search-update-result with direct point manipulation.  This\r
+> fixes the problem with authors getting unhidden when a result is\r
+> updated with point after the authors on the line (since it no longer\r
+> deletes the region with the invisibility overlay).  I also removed the\r
+> scrolling hack (which was partially necessitated by\r
+> insert-before-markers), so that archiving the last visible result will\r
+> properly scroll the buffer instead of jumping point to the middle of\r
+> the visible window.  As a result, the window may scroll when updating\r
+> a multiline result, however, it will scroll to show the entire result\r
+> (unlike an earlier version where it scrolled to cut off the result\r
+> because of an interaction with insert-before-markers).  Finally, I\r
+> fixed notmuch-search-last-thread so that it behaves like it did before\r
+> when there are no results, rather than failing with an obscure error.\r
+>\r
+> I also updated the customize documentation and NEWS to indicate that\r
+> multiline search results are considered experimental.\r
+\r
+This seems to fix the minor issues with the previous series, and seems\r
+to be behaving great.  The changes and the documentation fixes look good\r
+to me.\r
+\r
+jamie.\r
+\r
+--=-=-=\r
+Content-Type: application/pgp-signature\r
+\r
+-----BEGIN PGP SIGNATURE-----\r
+Version: GnuPG v1.4.12 (GNU/Linux)\r
+\r
+iQIcBAEBCAAGBQJQDEpcAAoJEO00zqvie6q89fUP/07h8F2HGBJChU9AAkchzmmG\r
+ciJPtBdohEKJImtrrk/mIQ4m4tUGSVvoODe/I3ITciGjBBTagxaItaSyuWq+x6f+\r
+MiJjfK0Qjwru8YKybx6jeJgEoZv/NPYvd/3Gm7kTjZAa269tpW5PtXiIzyYVQMIH\r
+7MbDerMAckW9ySxrvjamYr8D2GNX49vYJ0z/Wshjt0yHgb0+vSBjBHEMBF3Rasv/\r
+MqXKptC5z5WFNMpz89syOQTqlEJKveEgRS3y4UxLiO3D0YVTf05gJ5TBc/lCGaOX\r
+4ggxGm4VuqlI9HiYisRZDso/xmLc3ztwoM0JfrflSvwCyQq7/3Ql30G36d05UKKZ\r
+jLBX8hVwl4xV+RTq3woWUaHMH33SYHWmDybdzI3vA1azXcuVi9a875llcO2YbLB0\r
+IFw8q6WkX9KP/iAlxL7DCb3NPDpyA2ryYPZLQsNLNBU4/rphTVZGAzF4x9l/QUM/\r
+U/celaS+ycQP7Eh9KvIK2UF1FPJpI+vjbJNtG1SodAzEvkMhXz2wK2iZM9jpnky7\r
+2X38C0VcDAGiKEr9GQCCNalSMhFE9ZcLdIjKAovN8fgUhjsYfWj0Z9FIzsJ1PBmo\r
+br+4J3WBaZ3JwCBxw6PP+rvIXoGWt/tsxV96TBOqjO8/wziJkUBV6cV/tQ0tCvy9\r
+HS6Egvlsypbmwk/OScUG\r
+=x9V7\r
+-----END PGP SIGNATURE-----\r
+--=-=-=--\r