#!      /bin/csh -f
#
# Copyright 1993, 1994, 1995 by the Regents of the University of California.
# see the file "Copyright" in the distribution for conditions of use.
#
#
#       Edit a file
#

retry:
echo -n "Enter file names: "
set files = $<
set y = ( $files )
if( $#y == 0 ) then
	echo No file name specified.
	exit
endif

foreach file ( $files )
	source $MENU_LIB/edit_file
end
