Update of /cvsroot/winbash/bash-1.14.2/builtins
In directory usw-pr-cvs1:/tmp/cvs-serv5345/builtins
Modified Files:
reserved.def
Log Message:
removed duplicate definition of select command docs - must have gotten messed up in the reverse patching process
Index: reserved.def
===================================================================
RCS file: /cvsroot/winbash/bash-1.14.2/builtins/reserved.def,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** reserved.def 6 Mar 2002 03:26:12 -0000 1.1.1.1
--- reserved.def 6 Mar 2002 22:37:30 -0000 1.2
***************
*** 44,62 ****
$END
- $BUILTIN select
- $SHORT_DOC select NAME [in WORDS ... ;] do COMMANDS; done
- The WORDS are expanded, generating a list of words. The
- set of expanded words is printed on the standard error, each
- preceded by a number. If `in WORDS' is not present, `in "$@"'
- is assumed. The PS3 prompt is then displayed and a line read
- from the standard input. If the line consists of the number
- corresponding to one of the displayed words, then NAME is set
- to that word. If the line is empty, WORDS and the prompt are
- redisplayed. If EOF is read, the command completes. Any other
- value read causes NAME to be set to null. The line read is saved
- in the variable REPLY. COMMANDS are executed after each selection
- until a break or return command is executed.
- $END
-
$BUILTIN case
$SHORT_DOC case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac
--- 44,47 ----
|