about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-08-31 16:01:10 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-08-31 16:01:10 +0000
commitb41c26d78ab813debcba35478f0a97468233570c (patch)
tree97ec4b21c791df058dd7639902602a81d88a0c0f /Src
parentd19602a65a0fa7c42aacbbedbd0d9e44d52055ba (diff)
downloadzsh-b41c26d78ab813debcba35478f0a97468233570c.tar.gz
zsh-b41c26d78ab813debcba35478f0a97468233570c.tar.xz
zsh-b41c26d78ab813debcba35478f0a97468233570c.zip
25570: line numbers of complex sublists were wrong, plus test
make lineno zlong in another place
Diffstat (limited to 'Src')
-rw-r--r--Src/exec.c2
-rw-r--r--Src/zsh.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Src/exec.c b/Src/exec.c
index e9f4bc1e8..06f08ffb8 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -1060,7 +1060,7 @@ execlist(Estate state, int dont_change_job, int exiting)
 		lnp1 = code2;
 	    } else if (wc_code(code2) == WC_SUBLIST) {
 		if (WC_SUBLIST_FLAGS(code2) == WC_SUBLIST_SIMPLE)
-		    lnp1 = state->pc[2];
+		    lnp1 = state->pc[1];
 		else
 		    lnp1 = WC_PIPE_LINENO(state->pc[1]);
 	    }
diff --git a/Src/zsh.h b/Src/zsh.h
index ca49c695c..011aa3634 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1063,7 +1063,7 @@ struct cmdnam {
 struct shfunc {
     struct hashnode node;
     char *filename;             /* Name of file located in */
-    int lineno;			/* line number in above file */
+    zlong lineno;		/* line number in above file */
     Eprog funcdef;		/* function definition    */
 };