Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] fix 'the the' typos
- X-seq: zsh-workers 29307
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] fix 'the the' typos
- Date: Tue, 17 May 2011 20:59:13 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:subject:date:message-id:x-mailer; bh=yubTSDZBAcnDQTDj3+0NyDzzm7e34eqx2j6SijDvafg=; b=fT0bgU3+YdvJfe/sLOBzh/O+09FQOL5Xx92bYbkm5/KgfT8uRS3SuF2EXsIESJZljI q7UHH2XpJiSLnbaNeCcj/cZqXD70Yi7h7mEGHDu22J7aeonYCAM1QPPdGooekE8v2O5K eNLGMsf4LSgxHIvxDaxpq5GJ5J2sRwe1kZwYs=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer; b=GN7e3/vxOzViXVb/wqsjC2bdjvGQBbt9yJrffJfIeZHI3fcQYnVoGNyEKpRTZnIdv+ 5VrYGqdCxRq2eOTuRsGutHtmArOhwkQfQuU6PR11z7hsj9iKtqLI4oz74RLrJQ2tzXKb jn0651eoyL2jel1VeTRhbE0eI1yUTm2CW1WZc=
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Thought to look for this when I saw clint's mail with teh. Maybe shouldn't
touch ChangeLog-3.0? :)
---
Completion/Base/Utility/_sep_parts | 2 +-
Completion/Unix/Command/_osc | 2 +-
Completion/compinit | 2 +-
Completion/openSUSE/Command/_osc | 2 +-
Completion/openSUSE/Command/_zypper | 2 +-
Doc/Zsh/calsys.yo | 2 +-
Doc/Zsh/compsys.yo | 4 ++--
Doc/Zsh/compwid.yo | 2 +-
Doc/Zsh/expn.yo | 2 +-
Doc/Zsh/zle.yo | 4 ++--
Etc/CONTRIBUTORS | 2 +-
Etc/ChangeLog-3.0 | 2 +-
Functions/Calendar/calendar_parse | 2 +-
Src/params.c | 2 +-
Src/subst.c | 2 +-
15 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/Completion/Base/Utility/_sep_parts b/Completion/Base/Utility/_sep_parts
index 6e6c1be..de836a6 100644
--- a/Completion/Base/Utility/_sep_parts
+++ b/Completion/Base/Utility/_sep_parts
@@ -96,7 +96,7 @@ suffixes=("")
autosuffix=()
while [[ $# -gt 0 && "$str" == *${1}* ]]; do
- # Remove anything up to the the suffix.
+ # Remove anything up to the suffix.
str="${str#*${1}}"
diff --git a/Completion/Unix/Command/_osc b/Completion/Unix/Command/_osc
index 2808f92..c15b40a 100644
--- a/Completion/Unix/Command/_osc
+++ b/Completion/Unix/Command/_osc
@@ -4,7 +4,7 @@
#
# This file is released under the GPLv2.
#
-# Based on the the zsh guide from http://zsh.dotsrc.org/Guide/zshguide06.html
+# Based on the zsh guide from http://zsh.dotsrc.org/Guide/zshguide06.html
#
# Toggle verbose completions: zstyle ':completion:*:osc:*' verbose no
# zstyle ':completion:*:osc-subcommand:*' verbose no
diff --git a/Completion/compinit b/Completion/compinit
index fc3625f..d3c5e28 100644
--- a/Completion/compinit
+++ b/Completion/compinit
@@ -26,7 +26,7 @@
# expand-or-complete, expand-or-complete-prefix, list-choices,
# menu-complete, menu-expand-or-complete, or reverse-menu-complete).
# This creates a widget behaving like <style> so that the
-# completions are chosen as given in the the rest of the file,
+# completions are chosen as given in the rest of the file,
# rather than by the context. The widget has the same name as
# the autoload file and can be bound using bindkey in the normal way.
#
diff --git a/Completion/openSUSE/Command/_osc b/Completion/openSUSE/Command/_osc
index 2808f92..c15b40a 100644
--- a/Completion/openSUSE/Command/_osc
+++ b/Completion/openSUSE/Command/_osc
@@ -4,7 +4,7 @@
#
# This file is released under the GPLv2.
#
-# Based on the the zsh guide from http://zsh.dotsrc.org/Guide/zshguide06.html
+# Based on the zsh guide from http://zsh.dotsrc.org/Guide/zshguide06.html
#
# Toggle verbose completions: zstyle ':completion:*:osc:*' verbose no
# zstyle ':completion:*:osc-subcommand:*' verbose no
diff --git a/Completion/openSUSE/Command/_zypper b/Completion/openSUSE/Command/_zypper
index 57f942d..03818ea 100644
--- a/Completion/openSUSE/Command/_zypper
+++ b/Completion/openSUSE/Command/_zypper
@@ -4,7 +4,7 @@
#
# This file is released under the GPLv2.
#
-# Based on the the zsh guide from http://zsh.dotsrc.org/Guide/zshguide06.html
+# Based on the zsh guide from http://zsh.dotsrc.org/Guide/zshguide06.html
#
# Toggle verbose completions: zstyle ':completion:*:zypper:*' verbose no
# zstyle ':completion:*:zypper-subcommand:*' verbose no
diff --git a/Doc/Zsh/calsys.yo b/Doc/Zsh/calsys.yo
index f4bd4ea..259eb23 100644
--- a/Doc/Zsh/calsys.yo
+++ b/Doc/Zsh/calsys.yo
@@ -363,7 +363,7 @@ entry. `tt(-B 1)' is equivalent to `tt(-b)'.
)
item(tt(-C) var(calfile))(
Explicitly specify a calendar file instead of the value of
-the tt(calendar-file) style or the the default tt(~/calendar).
+the tt(calendar-file) style or the default tt(~/calendar).
)
item(tt(-d))(
Move any events that have passed from the calendar file to the
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo
index 19bae00..d551049 100644
--- a/Doc/Zsh/compsys.yo
+++ b/Doc/Zsh/compsys.yo
@@ -1936,7 +1936,7 @@ changing the foreground background colour, are also available, as is the form
(or, with a numeric argument, some other) width.
After deleting this prompt the variable tt(LISTPROMPT) should be unset for
-the the removal to take effect.
+the removal to take effect.
)
kindex(list-rows-first, completion style)
item(tt(list-rows-first))(
@@ -2667,7 +2667,7 @@ most commands.
)
kindex(urls, completion style)
item(tt(urls))(
-This is used together with the the tt(urls) tag by
+This is used together with the tt(urls) tag by
functions completing URLs.
If the value consists of more than one string, or if the only string
diff --git a/Doc/Zsh/compwid.yo b/Doc/Zsh/compwid.yo
index 0668974..3042fa3 100644
--- a/Doc/Zsh/compwid.yo
+++ b/Doc/Zsh/compwid.yo
@@ -239,7 +239,7 @@ one more than the maximum selects the first. Unless the value of this
key ends in a space, the match is inserted as in a menu completion,
i.e. without automatically appending a space.
-Both tt(menu) and tt(automenu) may also specify the the number of the
+Both tt(menu) and tt(automenu) may also specify the number of the
match to insert, given after a colon. For example, `tt(menu:2)' says
to start menu completion, beginning with the second match.
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo
index 9d5c81b..023e60e 100644
--- a/Doc/Zsh/expn.yo
+++ b/Doc/Zsh/expn.yo
@@ -813,7 +813,7 @@ item(tt(@))(
In double quotes, array elements are put into separate words.
E.g., `tt("${(@)foo}")' is equivalent to `tt("${foo[@]}")' and
`tt("${(@)foo[1,2]}")' is the same as `tt("$foo[1]" "$foo[2]")'.
-This is distinct from em(field splitting) by the the tt(f), tt(s)
+This is distinct from em(field splitting) by the tt(f), tt(s)
or tt(z) flags, which still applies within each array element.
)
item(tt(A))(
diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo
index d0b4914..9424ed0 100644
--- a/Doc/Zsh/zle.yo
+++ b/Doc/Zsh/zle.yo
@@ -854,7 +854,7 @@ The name of the shell function that implements a widget defined with
either tt(zle -N) or tt(zle -C). In the former case, this is the second
argument to the tt(zle -N) command that defined the widget, or
the first argument if there was no second argument. In the latter case
-this is the the third argument to the tt(zle -C) command that defined the
+this is the third argument to the tt(zle -C) command that defined the
widget. Read-only.
)
vindex(WIDGETSTYLE)
@@ -1871,7 +1871,7 @@ executed as a shell command.
tindex(accept-line-and-down-history)
item(tt(accept-line-and-down-history) (^O) (unbound) (unbound))(
Execute the current line, and push the next history
-event on the the buffer stack.
+event on the buffer stack.
)
tindex(auto-suffix-remove)
item(tt(auto-suffix-remove))(
diff --git a/Etc/CONTRIBUTORS b/Etc/CONTRIBUTORS
index c3b80d7..f95a36f 100644
--- a/Etc/CONTRIBUTORS
+++ b/Etc/CONTRIBUTORS
@@ -271,7 +271,7 @@ Version 3.0
including further texinfo documentation updates and maintained the zsh
web pages during their tenure at www.mal.com.
-* Wayne Davison <wayne@xxxxxxxxx> improved the the zle search functions
+* Wayne Davison <wayne@xxxxxxxxx> improved the zle search functions
and made them 8-bit clean. Some other little bugfixes.
* Bart Schaefer <schaefer@xxxxxxx> submitted several bugfixes, reported
diff --git a/Etc/ChangeLog-3.0 b/Etc/ChangeLog-3.0
index c53b2fb..b551868 100644
--- a/Etc/ChangeLog-3.0
+++ b/Etc/ChangeLog-3.0
@@ -2557,7 +2557,7 @@ Fri Jul 12 17:19:02 1996 Zolt
noshortloops. If CSHJUNKIELOOPS is set accept repeat word list
end.
- * Doc/zshmisc.man: more precise definition the the syntax of
+ * Doc/zshmisc.man: more precise definition the syntax of
complex commands
* Src/parse.c: the repeat word sublist syntax does not work if
diff --git a/Functions/Calendar/calendar_parse b/Functions/Calendar/calendar_parse
index 1025a9a..fabaf74 100644
--- a/Functions/Calendar/calendar_parse
+++ b/Functions/Calendar/calendar_parse
@@ -1,7 +1,7 @@
# Parse the line passed down in the first argument as a calendar entry.
# Sets the values parsed into the associative array reply, consisting of:
# time The time as an integer (as per EPOCHSECONDS) of the (next) event.
-# text1 The text from the the line not including the date/time, but
+# text1 The text from the line not including the date/time, but
# including any WARN or RPT text. This is useful for rescheduling
# events, since the keywords need to be retained in this case.
# warntime Any warning time (WARN keyword) as an integer, else an empty
diff --git a/Src/params.c b/Src/params.c
index 3ca8e52..41c825d 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 47ff0d9..3f75dfd 100644
--- a/Src/subst.c
+++ b/Src/subst.c
@@ -3038,7 +3038,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;
--
1.7.4-rc1
Messages sorted by:
Reverse Date,
Date,
Thread,
Author