From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15808 invoked by alias); 25 Nov 2013 16:00:08 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 32051 Received: (qmail 26728 invoked from network); 25 Nov 2013 16:00:02 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, SPF_HELO_PASS autolearn=ham version=3.3.2 X-AuditID: cbfec7f4-b7fea6d0000026ac-e6-529371a4f654 Date: Mon, 25 Nov 2013 15:49:54 +0000 From: Peter Stephenson To: zsh-workers@zsh.org Subject: Re: Helpfiles again (was Re: modify functions hierarchy (was: etc.)) Message-id: <20131125154954.14283de2@pwslap01u.europe.root.pri> In-reply-to: <691AC9C6-D832-42FC-B983-60C682AA5515@kba.biglobe.ne.jp> References: <20131113092831.2ed6ab94@pwslap01u.europe.root.pri> <20131113112112.1b080b79@pwslap01u.europe.root.pri> <131113080606.ZM11640@torch.brasslantern.com> <131117103047.ZM30518@torch.brasslantern.com> <131117130118.ZM1041@torch.brasslantern.com> <20131120192608.3af3b92c@pws-pc.ntlworld.com> <131120220100.ZM12300@torch.brasslantern.com> <20131123174827.249f9678@pws-pc.ntlworld.com> <131123114714.ZM18477@torch.brasslantern.com> <131123210612.ZM31978@torch.brasslantern.com> <20131124175649.27c2559a@pws!> <-pc.ntlworld.com@samsung.com> <131125001818.ZM26494@torch.brasslantern.com> <691AC9C6-D832-42FC-B983-60C682AA5515@kba.biglobe.ne.jp> Organization: Samsung Cambridge Solution Centre X-Mailer: Claws Mail 3.7.9 (GTK+ 2.22.0; i386-redhat-linux-gnu) MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFuphluLIzCtJLcpLzFFi42I5/e/4Zd0lhZODDBa/ZbE42PyQyYHRY9XB D0wBjFFcNimpOZllqUX6dglcGcePLGYp2MVWcezNRbYGxmmsXYycHBICJhL72t5C2WISF+6t Z+ti5OIQEljKKNE/v4MJJCEksJxJYuWt2i5GDg4WAVWJta85QcJsAoYSUzfNZgSxRQTEJc6u Pc8CYgsL+Eqc6f8EZvMK2Es0Xp4GNoZTwFXi7YodLBDzD7FLzD7aAbaYX0Bf4urfT0wQR9hL zLxyhhGiWVDix+R7YIOYBbQkNm9rYoWw5SU2r3nLPIFRYBaSsllIymYhKVvAyLyKUTS1NLmg OCk911CvODG3uDQvXS85P3cTIyQEv+xgXHzM6hCjAAejEg+vReWkICHWxLLiytxDjBIczEoi vNMMJgcJ8aYkVlalFuXHF5XmpBYfYmTi4JRqYOQ01V1TY83nYNDwclGm5spJPNvvu0UHzJuk l/Rjy/7k0A82DyZJr9YtPyBffVqvYHfMH2ObSMXqKevMZ/syrBU9Xqy7tWKCcdmdPYdm2x7o y+V5qmZl+dSuj1Ov8hyHhndOwpe5HP7M/7p8G6covD7/hJFl/RsJBuNWk6mxb1Y1cwROWi79 VImlOCPRUIu5qDgRALOpU6MfAgAA On Mon, 25 Nov 2013 23:24:36 +0900 "Jun T." wrote: > The following two files under Completion/ contain non-UTF-8 character: > > (1) Completion/Unix/Command/_systemd: line 3, name of the author. > The character is an 'e' with accent (in latin1 encoding, i.e., ISO8859-1). Hmmm.... might be safer to fudge it as "e'". There's not really any need for non-ASCII characters in functions. (Or simply convert to UTF-8 but I think the simpler the better.) (I don't think I'm going to try to post this patch...) > (2) Completion/BSD/Command/_portaudit: line 9, just before the '\' at > the end of line. The char is 0xA0 (non-breaking space in latin1 encoding?). > > I believe the 0xA0 in (2) should be replaced with a simple space 0x20. Indeed. I'll commit directly. pws