Re: [PATCH] cli: add a tool for starting new message in the emacs ui
authorTomi Ollila <tomi.ollila@iki.fi>
Thu, 20 Mar 2014 10:31:24 +0000 (12:31 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:00:51 +0000 (10:00 -0800)
d5/c9e07f8f41298468bf8ca00bde0d449d767d45 [new file with mode: 0644]

diff --git a/d5/c9e07f8f41298468bf8ca00bde0d449d767d45 b/d5/c9e07f8f41298468bf8ca00bde0d449d767d45
new file mode 100644 (file)
index 0000000..f41003c
--- /dev/null
@@ -0,0 +1,98 @@
+Return-Path: <tomi.ollila@iki.fi>\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 1968F431FAF\r
+       for <notmuch@notmuchmail.org>; Thu, 20 Mar 2014 03:31:37 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       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 mThNQuwEXpI3 for <notmuch@notmuchmail.org>;\r
+       Thu, 20 Mar 2014 03:31:29 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+       by olra.theworths.org (Postfix) with ESMTP id 4603D431FAE\r
+       for <notmuch@notmuchmail.org>; Thu, 20 Mar 2014 03:31:29 -0700 (PDT)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+       by guru.guru-group.fi (Postfix) with ESMTP id D07FF10009D;\r
+       Thu, 20 Mar 2014 12:31:24 +0200 (EET)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: Jani Nikula <jani@nikula.org>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH] cli: add a tool for starting new message in the emacs ui\r
+In-Reply-To: <877g7pn9bs.fsf@nikula.org>\r
+References: <1395257153-29764-1-git-send-email-jani@nikula.org>\r
+       <m2eh1x6fwt.fsf@guru.guru-group.fi> <877g7pn9bs.fsf@nikula.org>\r
+User-Agent: Notmuch/0.17+155~g3416ef5 (http://notmuchmail.org) Emacs/24.3.1\r
+       (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+       $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+       !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Thu, 20 Mar 2014 12:31:24 +0200\r
+Message-ID: <m2bnx1duv7.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\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: Thu, 20 Mar 2014 10:31:37 -0000\r
+\r
+On Wed, Mar 19 2014, Jani Nikula <jani@nikula.org> wrote:\r
+\r
+> On Wed, 19 Mar 2014, Tomi Ollila <tomi.ollila@iki.fi> wrote:\r
+>> On Wed, Mar 19 2014, Jani Nikula <jani@nikula.org> wrote:\r
+>>\r
+>>> +\r
+>>> +# Positional parameters.\r
+>>> +while [ $# -gt 0 ]; do\r
+>>> +    ELISP="${ELISP} (message-goto-to) (insert \"${1}, \")"\r
+>>> +    shift\r
+>>> +done\r
+>>\r
+>> for arg; do\r
+>\r
+> for arg in $@; ?\r
+\r
+\r
+Yes, that is less obfuscated version of that, whichever you feel more\r
+comfortable with... for more discussion about the alternatives here see:\r
+  http://www.in-ulm.de/~mascheck/various/bourne_args/\r
+(but don't look that -- it is unnecessary and only causes headache ;D)\r
+\r
+\r
+>> maybe arg=${arg//\\/\\\\}; arg=${arg//"/\\"}; \r
+>>\r
+>> ${parameter/pattern/string} -- Pattern substition in bash manual.\r
+>\r
+> I'm inclined to go with "don't do that then" ;)\r
+\r
+$ bash -c 'arg=${0//\\/\\\\}; echo ${arg//\"/\\\"}' 'this"is\a test'\r
+this\"is\\a test\r
+$ zsh -c 'arg=${0//\\/\\\\}; echo ${arg//\"/\\\"}' 'this"is\a test' \r
+this\"is\a test \r
+$ ksh -c 'arg=${0//\\/\\\\}; echo ${arg//\"/\\\"}' 'this"is\a test' \r
+this\"is\\a test\r
+\r
+Interestigly zsh on Scientific Linux 6.2 fails here (zsh 4.3.10) -- I tried\r
+various tricks and none helped. Hmm also zsh 4.3.17 on Ubuntu 12.04 fails.\r
+zsh 5.0.2 on Fedora 20 works OK. ksh & bash installed on all these 3\r
+systems work OK (and also bash 3.2.51... on Mac OS X). \r
+\r
+IMO this quoting should be done -- so I can send you email with:\r
+\r
+$ notmuch-emacs-mua '"Jani Nikula" <jani@nikula.org>'\r
+\r
+\r
+Tomi\r