*** bash-2.05a/builtins/declare.def.orig Wed Sep 12 04:32:08 2001 --- bash-2.05a/builtins/declare.def Tue Feb 12 17:51:12 2002 *************** *** 19,29 **** with Bash; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. $PRODUCES declare.c ! $BUILTIN declare ! $FUNCTION declare_builtin ! $SHORT_DOC declare [-afFrxi] [-p] name[=value] ... Declare variables and/or give them attributes. If no NAMEs are given, then display the values of variables instead. The -p option will display the attributes and values of each NAME. --- 19,39 ---- with Bash; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. + ====================================================================== + This 'Makefile.in' was modified by SAKAIDA Masaaki. + + Change Logs + 1. Change BUILTIN 'declare' to 'declares' + 2. Change FUNCTION 'declare_builtin' to 'declares_builtin' + 3. Change FUNCTION 'set_builtin' to 'sets_builtin' + + ====================================================================== + $PRODUCES declare.c ! $BUILTIN declares ! $FUNCTION declares_builtin ! $SHORT_DOC declares [-afFrxi] [-p] name[=value] ... Declare variables and/or give them attributes. If no NAMEs are given, then display the values of variables instead. The -p option will display the attributes and values of each NAME. *************** *** 49,57 **** $END $BUILTIN typeset ! $FUNCTION declare_builtin $SHORT_DOC typeset [-afFrxi] [-p] name[=value] ... ! Obsolete. See `declare'. $END #include --- 59,67 ---- $END $BUILTIN typeset ! $FUNCTION declares_builtin $SHORT_DOC typeset [-afFrxi] [-p] name[=value] ... ! Obsolete. See `declares'. $END #include *************** *** 77,83 **** /* Declare or change variable attributes. */ int ! declare_builtin (list) register WORD_LIST *list; { return (declare_internal (list, 0)); --- 87,93 ---- /* Declare or change variable attributes. */ int ! declares_builtin (list) register WORD_LIST *list; { return (declare_internal (list, 0)); *************** *** 184,190 **** else { if (flags_on == 0) ! set_builtin ((WORD_LIST *)NULL); else set_or_show_attributes ((WORD_LIST *)NULL, flags_on, nodefs); } --- 194,200 ---- else { if (flags_on == 0) ! sets_builtin ((WORD_LIST *)NULL); else set_or_show_attributes ((WORD_LIST *)NULL, flags_on, nodefs); }