From 72cb7cfc6fff21d3fb9b3f1aa384ce4b17a4e8c0 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Thu, 19 May 2011 16:10:46 +0000 Subject: 29307, 29308 + replies: Fix some doubled words in docs and comments. --- Src/Zle/compctl.c | 2 +- Src/Zle/zle_hist.c | 2 +- Src/exec.c | 2 +- Src/hist.c | 2 +- Src/jobs.c | 2 +- Src/lex.c | 2 +- Src/math.c | 2 +- Src/params.c | 2 +- Src/subst.c | 4 ++-- 9 files changed, 10 insertions(+), 10 deletions(-) (limited to 'Src') diff --git a/Src/Zle/compctl.c b/Src/Zle/compctl.c index 170efff3f..0143370c7 100644 --- a/Src/Zle/compctl.c +++ b/Src/Zle/compctl.c @@ -1896,7 +1896,7 @@ cccleanuphookfn(UNUSED(Hookdef dummy), UNUSED(void *dat)) /* This adds a match to the list of matches. The string to add is given * * in s, the type of match is given in the global variable addwhat and * - * the parameter t (if not NULL) is a pointer to a hash node node which * + * the parameter t (if not NULL) is a pointer to a hash node which * * may be used to give other information to this function. * * * * addwhat contains either one of the special values (negative, see below) * diff --git a/Src/Zle/zle_hist.c b/Src/Zle/zle_hist.c index 347116fd5..bd5bc36d5 100644 --- a/Src/Zle/zle_hist.c +++ b/Src/Zle/zle_hist.c @@ -470,7 +470,7 @@ historysearchbackward(char **args) histpos++; /* ensure we're not on a combining character */ CCRIGHTPOS(histpos); - /* histpos from now on on is an index into the metafied string */ + /* histpos from now on is an index into the metafied string */ srch_str = zlelineasstring(zleline, histpos, 0, NULL, NULL, 0); } free(line); diff --git a/Src/exec.c b/Src/exec.c index df0101853..0e1a6c81f 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -2757,7 +2757,7 @@ execcmd(Estate state, int input, int output, int how, int last1) * A `fake exec' is possible if we have all the following conditions: * * 1) last1 flag is 1. This indicates that the current shell will not * * be needed after the current command. This is typically the case * - * when when the command is the last stage in a subshell, or is the * + * when the command is the last stage in a subshell, or is the * * last command after the option `-c'. * * 2) We don't have any traps set. * * 3) We don't have any files to delete. * diff --git a/Src/hist.c b/Src/hist.c index c94d3e4aa..c368b5f4b 100644 --- a/Src/hist.c +++ b/Src/hist.c @@ -303,7 +303,7 @@ ihgetc(void) /* If the result is a bangchar which came from history or alias * * expansion, we treat it as an escaped bangchar, unless history * * is disabled. If stophist == 1 it only means that history is * - * temporarily disabled by a !" which won't appear in in the * + * temporarily disabled by a !" which won't appear in the * * history, so we still have an escaped bang. stophist > 1 if * * history is disabled with NOBANGHIST or by someone else (e.g. * * when the lexer scans single quoted text). */ diff --git a/Src/jobs.c b/Src/jobs.c index 951f06d6e..b3ec0008c 100644 --- a/Src/jobs.c +++ b/Src/jobs.c @@ -531,7 +531,7 @@ update_job(Job jn) /* When MONITOR is set, the foreground process runs in a different * * process group from the shell, so the shell will not receive * - * terminal signals, therefore we we pretend that the shell got * + * terminal signals, therefore we pretend that the shell got * * the signal too. */ if (inforeground == 2 && isset(MONITOR) && WIFSIGNALED(status)) { int sig = WTERMSIG(status); diff --git a/Src/lex.c b/Src/lex.c index f4b22370b..fdd05efff 100644 --- a/Src/lex.c +++ b/Src/lex.c @@ -1755,7 +1755,7 @@ parse_subst_string(char *s) * additional memory should come off the heap or * otherwise. So we cheat by copying the unquoted string * into place, unless it's too long. That's not the - * normal case, but I'm worried there are are pathological + * normal case, but I'm worried there are pathological * cases with converting metafied multibyte strings. * If someone can prove there aren't I will be very happy. */ diff --git a/Src/math.c b/Src/math.c index caff06de9..377d1ac9c 100644 --- a/Src/math.c +++ b/Src/math.c @@ -46,7 +46,7 @@ mod_export mnumber zero_mnumber; /* * The last value we computed: note this isn't cleared - * until the next computation, unlike unlike yyval. + * until the next computation, unlike yyval. * Everything else is saved and returned to allow recursive calls. */ /**/ diff --git a/Src/params.c b/Src/params.c index f13401793..a59c51767 100644 --- a/Src/params.c +++ b/Src/params.c @@ -978,7 +978,7 @@ copyparam(Param tpm, Param pm, int fakecopy) * called from inside an associative array), we need the gets and sets * functions to be useful. * - * In this case we assume the the saved parameter is not itself special, + * In this case we assume the saved parameter is not itself special, * so we just use the standard functions. This is also why we switch off * PM_SPECIAL. */ diff --git a/Src/subst.c b/Src/subst.c index efa3c34fc..244c066d4 100644 --- a/Src/subst.c +++ b/Src/subst.c @@ -1594,7 +1594,7 @@ paramsubst(LinkList l, LinkNode n, char **str, int qt, int ssub) int arrasg = 0; /* * The (e) flag. As we need to do extra work not quite - * at the end, the effect of this is kludged in in several places. + * at the end, the effect of this is kludged in several places. */ int eval = 0; /* @@ -2987,7 +2987,7 @@ paramsubst(LinkList l, LinkNode n, char **str, int qt, int ssub) * TODO: again. one might naively have thought this had the * same sort of effect as the ${(t)...} flag and the ${+...} * test, although in this case we do need the value rather - * the the parameter, so maybe it's a bit different. + * the parameter, so maybe it's a bit different. */ if (getlen) { long len = 0; -- cgit 1.4.1