From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14788 invoked by alias); 16 Dec 2010 12:44:46 -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: 28531 Received: (qmail 27263 invoked from network); 16 Dec 2010 12:44:44 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.212.43 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=gclnQRqbRo84NFMQwpeBFifz34ARhtiAbQK+3jp+JG4=; b=UuMBUr02HHCZAXWmlQrAbu9D2t8rQt/QBb1xZYfBVizgmrmaVu+u/jn6vmmjgdxc3S jEfklVyoo1QxyrKVEBj5pLH4gLY54mcbDX4LxcAF+ujAvJeDZOlv308jkCi5Wrdm8ArH gx6tSSFByZ7MRP+HoXNMltY2uQmpTmit2GdsM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=SrkGjZmnAwwxgTKynu+ZemIIVOpuusP6uNKFdAFg5hgWPBi7vQGC+eVI8Hl8bWfjny QsQrs0/u4SurUb3PjkS6dOZSinIRgfGAxc8JSBgb7rfJ6yfpIbh1HdevVgUui/XBmJGQ ZoqkDtX8LUmS5FGCLh9H+/P/KHry2HGUBcEyM= MIME-Version: 1.0 Date: Thu, 16 Dec 2010 13:38:51 +0100 Message-ID: Subject: Some small typo fixes From: Mikael Magnusson To: zsh workers Content-Type: text/plain; charset=UTF-8 Well, I finally accumulated enough of these to not feel incredibly silly sending them. http://mika.l3ib.org/patches/zsh-typofixes.patch >>From 885a629d035ee9003fb83375155e123a08561da2 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Thu, 26 Feb 2009 20:05:46 +0100 Subject: [PATCH] fix some typos --- Completion/Base/Utility/_combination | 2 +- Doc/Zsh/expn.yo | 2 +- Doc/Zsh/mod_clone.yo | 2 +- Doc/Zsh/options.yo | 2 +- Src/exec.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Completion/Base/Utility/_combination b/Completion/Base/Utility/_combination index d47d4ce..5e87b31 100644 --- a/Completion/Base/Utility/_combination +++ b/Completion/Base/Utility/_combination @@ -8,7 +8,7 @@ # # Example: telnet # -# Assume an user sets the style `users-hosts-ports' as for the my-accounts +# Assume a user sets the style `users-hosts-ports' as for the my-accounts # tag: # # zstyle ':completion:*:*:telnet:*:my-accounts' users-hosts-ports \ diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index 1814d6c..cb11e4a 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -1067,7 +1067,7 @@ be given, in which case widths will be used for the calculation of padding; otherwise individual multibyte characters are treated as occupying one unit of width. -IF the tt(MULTIBYTE) option is not in effect, each byte in the string is +If the tt(MULTIBYTE) option is not in effect, each byte in the string is treated as occupying one unit of width. Control characters are always assumed to be one unit wide; this allows the diff --git a/Doc/Zsh/mod_clone.yo b/Doc/Zsh/mod_clone.yo index 1124958..a0bf42b 100644 --- a/Doc/Zsh/mod_clone.yo +++ b/Doc/Zsh/mod_clone.yo @@ -37,7 +37,7 @@ as a controlling tty. That means two things: This does not apply when cloning to an bf(unused) vc. -Cloning to an used (and unprepared) terminal will result in two +Cloning to a used (and unprepared) terminal will result in two processes reading simultaneously from the same terminal, with input bytes going randomly to either process. diff --git a/Doc/Zsh/options.yo b/Doc/Zsh/options.yo index eb5ce37..a965971 100644 --- a/Doc/Zsh/options.yo +++ b/Doc/Zsh/options.yo @@ -1579,7 +1579,7 @@ example(unsetopt localtraps trap - INT fn+LPAR()RPAR() { setopt localtraps; trap '' INT; sleep 3; }) -will restore normally handling of tt(SIGINT) after the function exits. +will restore normal handling of tt(SIGINT) after the function exits. ) pindex(MULTI_FUNC_DEF) pindex(NO_MULTI_FUNC_DEF) diff --git a/Src/exec.c b/Src/exec.c index 684d93f..7d149ef 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -3325,7 +3325,7 @@ save_params(Estate state, Wordcode pc, LinkList *restore_p, LinkList *remove_p) * been done at this point. Instead, copy the * parameter: in this case, we'll insert the * copied parameter straight back into the parameter - * table so we wan't to be sure everything is + * table so we want to be sure everything is * properly set up and in permanent memory. */ tpm = (Param) zshcalloc(sizeof *tpm); -- 1.7.3 -- Mikael Magnusson