From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18292 invoked by alias); 4 Mar 2011 12:57:53 -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: 28853 Received: (qmail 23454 invoked from network); 4 Mar 2011 12:57:50 -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=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.1 Received-SPF: none (ns1.primenet.com.au: domain at bewatermyfriend.org does not designate permitted sender hosts) From: Frank Terbeck To: zsh-workers@zsh.org Subject: PATCH: Typo: preceed -> precede Date: Fri, 4 Mar 2011 13:55:24 +0100 Message-Id: <1299243324-29444-1-git-send-email-ft@bewatermyfriend.org> X-Mailer: git-send-email 1.7.4.1.140.g89781 X-Df-Sender: 430444 Caught by debian's lintian tool. --- ChangeLog | 2 +- Doc/Zsh/contrib.yo | 2 +- Doc/Zsh/expn.yo | 2 +- Functions/Chpwd/cdr | 2 +- Src/builtin.c | 2 +- Src/prompt.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 69b8925..a82616a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1272,7 +1272,7 @@ * users/15011: Completion/Unix/Type/_path_files, Doc/Zsh/compsys.yo: add path-completion style to allow - completion of preceeding directories in files to be be turned + completion of preceding directories in files to be be turned off. 2010-04-13 Peter Stephenson diff --git a/Doc/Zsh/contrib.yo b/Doc/Zsh/contrib.yo index 926c7b3..c5808fb 100644 --- a/Doc/Zsh/contrib.yo +++ b/Doc/Zsh/contrib.yo @@ -355,7 +355,7 @@ subsect(Use) All direct user interaction is via the tt(cdr) function. The argument to cdr is a number var(N) corresponding to the var(N)th most -recently changed-to directory. 1 is the immediately preceeding directory; +recently changed-to directory. 1 is the immediately preceding directory; the current directory is remembered but is not offered as a destination. Note that if you have multiple windows open 1 may refer to a directory changed to in another window; you can avoid this by having per-terminal diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index d246c3c..9c44913 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -381,7 +381,7 @@ Each part of a command argument that takes the form `tt(LPAR())var(list)tt(RPAR())' or `tt(=LPAR())var(list)tt(RPAR())' -is subject to process substitution. The expression may be preceeded +is subject to process substitution. The expression may be preceded or followed by other strings except that, to prevent clashes with commonly occurring strings and patterns, the last form must occur at the start of a command argument, and the forms diff --git a/Functions/Chpwd/cdr b/Functions/Chpwd/cdr index 3025a9d..4f39910 100644 --- a/Functions/Chpwd/cdr +++ b/Functions/Chpwd/cdr @@ -15,7 +15,7 @@ # changing directory permanently, see below. # # The argument to cdr is a number corresponding to the Nth most recently -# changed-to directory starting at 1 for the immediately preceeding +# changed-to directory starting at 1 for the immediately preceding # directory (the current directory is remembered but is not offered as a # destination). You can use directory arguments if you set the # recent-dirs-default style, see below; however, it should be noted diff --git a/Src/builtin.c b/Src/builtin.c index 6dbfa75..cda5e68 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -4713,7 +4713,7 @@ zexit(int val, int from_where) */ in_exit = -1; /* - * We want to do all remaining processing regardless of preceeding + * We want to do all remaining processing regardless of preceding * errors. */ errflag = 0; diff --git a/Src/prompt.c b/Src/prompt.c index a91ac54..715f4b5 100644 --- a/Src/prompt.c +++ b/Src/prompt.c @@ -1205,7 +1205,7 @@ prompttrunc(int arg, int truncchar, int doprint, int endchar, if (truncatleft) { /* * To truncate at the left, selectively copy - * maxwidth bytes from the main prompt, preceeded + * maxwidth bytes from the main prompt, preceded * by the truncation string in full. * * We're overwriting the string containing the -- 1.7.4.1.140.g89781