diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2002-01-31 15:04:33 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2002-01-31 15:04:33 +0000 |
commit | 149aafd65ee260f6071aeacbe07fa99df21ecce3 (patch) | |
tree | 925c9a66ce4f8b5d307869a14cb2d5399ff58304 | |
parent | 5d11abfa3bf4f3a133f654c730cde752939376a1 (diff) | |
download | zsh-149aafd65ee260f6071aeacbe07fa99df21ecce3.tar.gz zsh-149aafd65ee260f6071aeacbe07fa99df21ecce3.tar.xz zsh-149aafd65ee260f6071aeacbe07fa99df21ecce3.zip |
16493: correct typos
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Src/params.c | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog index 393281cf8..d5a506fec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2002-01-31 Oliver Kiddle <opk@zsh.org> + * Derek Peschel: 16493: Src/params.c: correct typos + * Derek Peschel: 16492: Src/params.c, Src/input.c, Doc/Zsh/params.yo: add RPROMPT2 variable for right prompts in multi-line commands diff --git a/Src/params.c b/Src/params.c index ba4776423..bf2b29ca1 100644 --- a/Src/params.c +++ b/Src/params.c @@ -225,7 +225,7 @@ IPDEF9F("@", &pparams, NULL, PM_ARRAY|PM_SPECIAL|PM_DONTIMPORT|PM_READONLY), #define IPDEF10(A,B,C) {NULL,A,PM_ARRAY|PM_SPECIAL,BR(NULL),SFN(C),GFN(B),stdunsetfn,10,NULL,NULL,NULL,0} /* The following parameters are not avaible in sh/ksh compatibility * - * mode. All of these has sh compatible equivalents. */ + * mode. All of these have sh compatible equivalents. */ IPDEF1("ARGC", poundgetfn, nullintsetfn, PM_READONLY), IPDEF2("HISTCHARS", histcharsgetfn, histcharssetfn, PM_DONTIMPORT), IPDEF4("status", &lastval), @@ -459,7 +459,7 @@ getvaluearr(Value v) } /* - * Split environment string into (name, vlaue) pair. + * Split environment string into (name, value) pair. * this is used to avoid in-place editing of environment table * that results in core dump on some systems */ @@ -520,7 +520,7 @@ createparamtable(void) /* Add the standard non-special parameters which have to * * be initialized before we copy the environment variables. * - * We don't want to override whatever values the users has * + * We don't want to override whatever values the user has * * given them in the environment. */ opts[ALLEXPORT] = 0; setiparam("MAILCHECK", 60); @@ -3153,8 +3153,8 @@ findenv(char *name, int *pos) return 0; } -/* Given *name = "foo", it searchs the environment for string * - * "foo=bar", and returns a pointer to the beginning of "bar" */ +/* Given *name = "foo", it searches the environment for string * + * "foo=bar", and returns a pointer to the beginning of "bar" */ /**/ mod_export char * @@ -3209,7 +3209,7 @@ addenv(char *name, char *value, int flags) /* * Under Cygwin we must use putenv() to maintain consistency. * Unfortunately, current version (1.1.2) copies argument and may - * silently reuse exisiting environment string. This tries to + * silently reuse existing environment string. This tries to * check for both cases */ if (findenv(name, &pos)) { @@ -3312,7 +3312,7 @@ convbase(char *s, zlong v, int base) /* * Convert a floating point value for output. * Unlike convbase(), this has its own internal storage and returns - * a value from the heap; + * a value from the heap. */ /**/ |