Imported from ../bash-2.01.tar.gz.

This commit is contained in:
Jari Aalto 1997-06-05 14:59:13 +00:00
commit d166f04881
304 changed files with 14702 additions and 13012 deletions

View file

@ -34,8 +34,7 @@ $END
#include "../shell.h"
#include "bashgetopt.h"
extern int parse_and_execute ();
#include "common.h"
/* Parse the string that these words make, and execute the command found. */
int
@ -46,5 +45,5 @@ eval_builtin (list)
return (EX_USAGE);
/* Note that parse_and_execute () frees the string it is passed. */
return (list ? parse_and_execute (string_list (list), "eval", -1) : EXECUTION_SUCCESS);
return (list ? parse_and_execute (string_list (list), "eval", SEVAL_NOHIST) : EXECUTION_SUCCESS);
}