summary refs log tree commit diff
path: root/src/eval.h
diff options
context:
space:
mode:
authorherbert <herbert@gondor.apana.org.au>2005-03-28 20:28:01 +1000
committerHerbert Xu <herbert@gondor.apana.org.au>2005-09-26 18:33:05 +1000
commit71d448c29c85afd16a4feb68b23fde6c8cf02875 (patch)
tree2414dda91f580f2c124522b41c244f0eb528acfa /src/eval.h
parentRemoved unnecessary inclusion of eval.h from parser.c. (diff)
downloaddash-71d448c29c85afd16a4feb68b23fde6c8cf02875.tar.gz
dash-71d448c29c85afd16a4feb68b23fde6c8cf02875.zip
Added eflag fixes for trap and minusc.
Let evaltree handle traps from cmdloop.
Reset evalskip after minusc is executed.
Stop executing traps once SKIPEVAL is seen.
Diffstat (limited to 'src/eval.h')
-rw-r--r--src/eval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.h b/src/eval.h
index 3d0a9a6..bd2cee0 100644
--- a/src/eval.h
+++ b/src/eval.h
@@ -51,7 +51,7 @@ struct backcmd {		/* result of evalbackcmd */
 	struct job *jp;		/* job structure for command */
 };
 
-void evalstring(char *);
+int evalstring(char *, int);
 union node;	/* BLETCH for ansi C */
 void evaltree(union node *, int);
 void evalbackcmd(union node *, struct backcmd *);