diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2010-05-19 17:36:09 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2010-05-19 17:36:09 +0000 |
commit | f982b5610e37d47c7c9cd160218566bd78adaeac (patch) | |
tree | 75d782b9cb5fb8ef615d37dc88b8251446010a3f /bin/ksh/proto.h | |
parent | b34968693c2ac4f8e4a2ad1e2a47542a5f69e689 (diff) |
properly keep track of the line number after a trap.
this fixes pr 6195. diff from manuel giraud, thanks.
ok kili@
Diffstat (limited to 'bin/ksh/proto.h')
-rw-r--r-- | bin/ksh/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/proto.h b/bin/ksh/proto.h index 07985e79577..bbd1327c0a2 100644 --- a/bin/ksh/proto.h +++ b/bin/ksh/proto.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.h,v 1.32 2009/01/29 23:27:26 jaredy Exp $ */ +/* $OpenBSD: proto.h,v 1.33 2010/05/19 17:36:08 jasper Exp $ */ /* * prototypes for PD-KSH @@ -159,7 +159,7 @@ void mbset(char *); void mpset(char *); /* main.c */ int include(const char *, int, char **, int); -int command(const char *); +int command(const char *, int); int shell(Source *volatile, int volatile); void unwind(int) __attribute__((__noreturn__)); void newenv(int); |