diff options
author | Harald van Dijk <harald@gigawatt.nl> | 2011-03-15 15:52:05 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2011-03-15 15:52:05 +0800 |
commit | 5bb39bb1995cb12d8da76b1d482df9be1acc2eb4 (patch) | |
tree | 09c088a97971babd2e0dd593d7601e282ed5fc69 /src/parser.h | |
parent | [EVAL] Let funcnode refer to a function definition, not its first command (diff) | |
download | dash-5bb39bb1995cb12d8da76b1d482df9be1acc2eb4.tar.gz dash-5bb39bb1995cb12d8da76b1d482df9be1acc2eb4.zip |
[SHELL] Improve LINENO support
This patch improves LINENO support by storing line numbers in the parse tree, for commands as well as for function definitions. It makes LINENO behaves properly when calling functions, and has the added benefit of improved line numbers in error messages when the last-parsed command is not the last-executed one. It removes the earlier LINENO support, and instead sets LINENO from evaltree when a command is executed Signed-off-by: Harald van Dijk <harald@gigawatt.nl> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r-- | src/parser.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h index 6bdf1c9..e6caed6 100644 --- a/src/parser.h +++ b/src/parser.h @@ -77,7 +77,6 @@ extern int tokpushback; #define NEOF ((union node *)&tokpushback) extern int whichprompt; /* 1 == PS1, 2 == PS2 */ extern int checkkwd; -extern int startlinno; /* line # where last token started */ union node *parsecmd(int); |