Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Spelling fixes, etc.



-----BEGIN PGP SIGNED MESSAGE-----

This patch fixes a number of spelling errors in some of the text files
in the Etc directory.  The term "spelling errors" is to be interpreted
liberally :-)

      *** Etc/BUGS.orig	Wed Jul 31 23:57:13 1996
      --- Etc/BUGS	Wed Jul 31 23:57:52 1996
      ***************
      *** 10,16 ****
        #include <sys/wait.h>
        #include <unistd.h>
        
      ! void main(int argc, char *argv[])
        {
            int status;
        
      --- 10,16 ----
        #include <sys/wait.h>
        #include <unistd.h>
        
      ! int main(int argc, char *argv[])
        {
            int status;
        
      *** Etc/FAQ.orig	Wed Jul 31 23:57:04 1996
      --- Etc/FAQ	Thu Aug  1 00:06:02 1996
      ***************
      *** 1261,1267 ****
        mailing list has been run by Peter Gray, Rick Ohnemus and Richard
        Coleman, all of whom deserve thanks.  The world is eternally in the
        debt of Paul Falstad for inventing zsh in the first place (though the
      ! wizzo extended completion is by Sven Wishnowsky).
        
        
        Copyright Information:
      --- 1261,1267 ----
        mailing list has been run by Peter Gray, Rick Ohnemus and Richard
        Coleman, all of whom deserve thanks.  The world is eternally in the
        debt of Paul Falstad for inventing zsh in the first place (though the
      ! wizzo extended completion is by Sven Wischnowsky).
        
        
        Copyright Information:
      *** Etc/FEATURES.orig	Wed Jul 31 23:57:00 1996
      --- Etc/FEATURES	Thu Aug  1 00:14:45 1996
      ***************
      *** 1,6 ****
        very close to ksh/sh grammar, with csh additions
        most features of ksh, bash, and tcsh
      ! 75 builtins, 89 options, 154 key bindings
        short for loops, ex: for i (*.c) echo $i
        select
        shell functions
      --- 1,7 ----
        very close to ksh/sh grammar, with csh additions
        most features of ksh, bash, and tcsh
      ! can emulate ksh or POSIX sh
      ! 81 builtins, 102 options, 162 key bindings
        short for loops, ex: for i (*.c) echo $i
        select
        shell functions
      ***************
      *** 33,40 ****
        magic-space history
        spelling correction
        array parameters
      ! $HOSTTYPE, $LINENO, $RANDOM, $SECONDS, $cdpath, $COLUMNS, $fignore,
      !   $HISTCHARS, $mailpath
        with autocd option, typing a directory name by itself is the same as
          typing "cd dirname"
        menu completion: pressing TAB repeatedly cycles through the possible matches
      --- 34,42 ----
        magic-space history
        spelling correction
        array parameters
      ! $MACHTYPE, $VENDOR and $OSTYPE identify the host machine
      ! $LINENO, $RANDOM, $SECONDS, $cdpath, $COLUMNS, $fignore, $HISTCHARS, $mailpath
      ! $UID, $EUID, $GID, $EGID and $USERNAME can be assigned to
        with autocd option, typing a directory name by itself is the same as
          typing "cd dirname"
        menu completion: pressing TAB repeatedly cycles through the possible matches
      ***************
      *** 44,50 ****
        utmp login/logout reporting
        with histverify option, performing csh-style history expansions causes the
          input line to be brought up for editing instead of being executed
      ! with sunkeyboardhack option, accidently typed trailing ` characters
          are removed from the input line (for those of you with Sun keyboards :-) )
        autoloaded functions (loaded from a file when they are first referenced)
        "cd old new" replaces "old" with "new" in directory string
      --- 46,52 ----
        utmp login/logout reporting
        with histverify option, performing csh-style history expansions causes the
          input line to be brought up for editing instead of being executed
      ! with sunkeyboardhack option, accidentally typed trailing ` characters
          are removed from the input line (for those of you with Sun keyboards :-) )
        autoloaded functions (loaded from a file when they are first referenced)
        "cd old new" replaces "old" with "new" in directory string
      ***************
      *** 63,67 ****
        command scheduling (like at(1), but in the shell's context)
        tty mode freezing
        up to 9 startup files (but you only need 1 or 2)
      ! 8-bit clean
      ! which -a cmd lists all occurences of "cmd" in the path
      --- 65,69 ----
        command scheduling (like at(1), but in the shell's context)
        tty mode freezing
        up to 9 startup files (but you only need 1 or 2)
      ! really 8-bit clean, and we mean it this time
      ! which -a cmd lists all occurrences of "cmd" in the path
      *** Etc/NEWS.orig	Wed Jul 31 23:57:16 1996
      --- Etc/NEWS	Thu Aug  1 00:02:49 1996
      ***************
      *** 27,36 ****
        
        ${~spec}, ${=spec} and ${^spec} used to toggle the effect of
        globsubst/shwordsplit/rcexpandparam.  Now these force the corresponding
      ! option. ~, = or ^ can be doubled to force the relevant option off for the
      ! substitution.
        
      ! Explicitely requested word splitting like ${=spec} or ${(s:delim:)spec}
        will be executed even if the substitution is double quoted.
        
        The right-hand side of assignments are no longer globbed by default hence
      --- 27,36 ----
        
        ${~spec}, ${=spec} and ${^spec} used to toggle the effect of
        globsubst/shwordsplit/rcexpandparam.  Now these force the corresponding
      ! option on. ~, = or ^ can be doubled to force the relevant option off for
      ! the substitution.
        
      ! Explicitly requested word splitting like ${=spec} or ${(s:delim:)spec}
        will be executed even if the substitution is double quoted.
        
        The right-hand side of assignments are no longer globbed by default hence
      ***************
      *** 37,43 ****
        assignment foo=* will assign '*' as a value of foo.  Use the foo=( * )
        array assignment syntax to get the old behaviour.  Alternatively the
        GLOB_ASSIGN can be set to emulate the old behaviour but the usage of this
      ! option is strongly discouraged and this optiom may be completely removed in
        the future.
        
        When foo is an array parameter ${#foo} will always return the length of the
      --- 37,43 ----
        assignment foo=* will assign '*' as a value of foo.  Use the foo=( * )
        array assignment syntax to get the old behaviour.  Alternatively the
        GLOB_ASSIGN can be set to emulate the old behaviour but the usage of this
      ! option is strongly discouraged and this option may be completely removed in
        the future.
        
        When foo is an array parameter ${#foo} will always return the length of the
      ***************
      *** 47,56 ****
        When the prompt_subst option is set prompts are fully expanded using
        parameter expansion, command substitution and arithmetic expansion.
        In 2.5 backquote substitution was not performed in the prompts so this
      ! cange might cause problems in some startup scripts if ` is used literaly
        in prompts.
        
      ! history substitution is now not performed if the history escape caracter
        appears in a single-quoted string.  This may break some interactive shell
        functions which use \! in single-quoted strings.
        
      --- 47,56 ----
        When the prompt_subst option is set prompts are fully expanded using
        parameter expansion, command substitution and arithmetic expansion.
        In 2.5 backquote substitution was not performed in the prompts so this
      ! change might cause problems in some startup scripts if ` is used literally
        in prompts.
        
      ! History substitution is now not performed if the history escape character
        appears in a single-quoted string.  This may break some interactive shell
        functions which use \! in single-quoted strings.
        
      ***************
      *** 64,70 ****
        
        The privileged (-p) option is automatically set on invocation if euid != uid
        or egid != gid.  If this option is set no user startup files are sourced.
      ! The shell will drop privileges when thisoption is unset.
        
        The =number substitution for accessing the directory stack is changed to
        ~number to allow =command substitution when a command name begins with a 
      --- 64,70 ----
        
        The privileged (-p) option is automatically set on invocation if euid != uid
        or egid != gid.  If this option is set no user startup files are sourced.
      ! The shell will drop privileges when this option is unset.
        
        The =number substitution for accessing the directory stack is changed to
        ~number to allow =command substitution when a command name begins with a 
      ***************
      *** 74,84 ****
        reading and writing.  To match a number use <->.
        
        Option letters -1 and -C for PRINT_EXIT_VALUE and NO_CLOBBER are swapped:
      ! `set -C' sets noclobber and `set -1' sets PRINT_EXIT_VALUE.
        
        AUTO_PUSHD behaviour is changed.  Now cd without arguments will always go
        to the $HOME directory even if AUTO_PUSHD is set and PUSHD_TO_HOME is not
      ! set.  If you prefered the old behaviour you can alias cd to pushd.
        
        IFS word splitting with SH_WORD_SPLIT and the splitting of the input in the
        read builtin has changed in cases when IFS contains characters other than
      --- 74,84 ----
        reading and writing.  To match a number use <->.
        
        Option letters -1 and -C for PRINT_EXIT_VALUE and NO_CLOBBER are swapped:
      ! `set -C' sets NO_CLOBBER and `set -1' sets PRINT_EXIT_VALUE.
        
        AUTO_PUSHD behaviour is changed.  Now cd without arguments will always go
        to the $HOME directory even if AUTO_PUSHD is set and PUSHD_TO_HOME is not
      ! set.  If you preferred the old behaviour you can alias cd to pushd.
        
        IFS word splitting with SH_WORD_SPLIT and the splitting of the input in the
        read builtin has changed in cases when IFS contains characters other than
      ***************
      *** 124,130 ****
        
        New options ALWAYS_LAST_PROMPT, ALWAYS_TO_END, AUTO_PARAM_KEYS,
        COMPLETE_ALIASES, COMPLETE_IN_WORD, CSH_JUNKIE_HISTORY, GLOB_SUBST,
      ! LIST_AMBIGOUS, MAGIC_EQUAL_SUBST, NO_FLOW_CONTROL, PROMPT_SUBST
        
        New option -m to many builtins makes arguments subject to pattern
        matching.
      --- 124,130 ----
        
        New options ALWAYS_LAST_PROMPT, ALWAYS_TO_END, AUTO_PARAM_KEYS,
        COMPLETE_ALIASES, COMPLETE_IN_WORD, CSH_JUNKIE_HISTORY, GLOB_SUBST,
      ! LIST_AMBIGUOUS, MAGIC_EQUAL_SUBST, NO_FLOW_CONTROL, PROMPT_SUBST
        
        New option -m to many builtins makes arguments subject to pattern
        matching.

-----BEGIN PGP SIGNATURE-----
Version: 2.6.i

iQCVAgUBMf/p6nD/+HJTpU/hAQGGygQArawJf063fltGsRGitDDoR4wIGkYJ8meD
qEW4f+bPO1/Krj1UsIvAd67XozFuHpavpuYwVxQudF1csEtg6mXkHPeJ6pgUXA7C
LrhcekpBivLCsgblBfsndXD6upnEj9JtBWXA4jOfrQw5vQxliqwhJkyZmHwSQtYp
Ova4aGCqUaA=
=OsoS
-----END PGP SIGNATURE-----



Messages sorted by: Reverse Date, Date, Thread, Author