*** bash-2.05a/builtins/set.def.orig Tue Oct 30 03:33:31 2001 --- bash-2.05a/builtins/set.def Tue Feb 12 17:51:12 2002 *************** *** 19,24 **** --- 19,33 ---- with Bash; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. + ====================================================================== + This file was modified by SAKAIDAMasaaki. + + Change Logs + 1. Change BUILTIN 'set' to 'sets'. + 1. Change FUNCTION 'set_builtin' to 'sets_builtin'. + + ====================================================================== + $PRODUCES set.c #include *************** *** 57,65 **** extern int no_line_editing; #endif /* READLINE */ ! $BUILTIN set ! $FUNCTION set_builtin ! $SHORT_DOC set [--abefhkmnptuvxBCHP] [-o option] [arg ...] -a Mark variables which are modified or created for export. -b Notify of job termination immediately. -e Exit immediately if a command exits with a non-zero status. --- 66,74 ---- extern int no_line_editing; #endif /* READLINE */ ! $BUILTIN sets ! $FUNCTION sets_builtin ! $SHORT_DOC sets [--abefhkmnptuvxBCHP] [-o option] [arg ...] -a Mark variables which are modified or created for export. -b Notify of job termination immediately. -e Exit immediately if a command exits with a non-zero status. *************** *** 565,571 **** then print out the values of the variables instead. If LIST contains non-flags, then set $1 - $9 to the successive words of LIST. */ int ! set_builtin (list) WORD_LIST *list; { int on_or_off, flag_name, force_assignment, opts_changed; --- 574,580 ---- then print out the values of the variables instead. If LIST contains non-flags, then set $1 - $9 to the successive words of LIST. */ int ! sets_builtin (list) WORD_LIST *list; { int on_or_off, flag_name, force_assignment, opts_changed;