Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: BUG: cmdstack empty
- X-seq: zsh-workers 22542
- From: Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Re: BUG: cmdstack empty
- Date: Sun, 09 Jul 2006 15:44:52 +0100
- In-reply-to: Message from Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx> of "Sat, 08 Jul 2006 10:58:10 PDT." <060708105810.ZM8725@xxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Bart Schaefer wrote:
> With the latest 4.3.2-dev-1 as of 2006-07-08:
>
> schaefer<509> foo() {
> function> [[ 1 eq 2 ]]
> zsh: condition expected: eq
> BUG: cmdstack empty
Index: Src/parse.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/parse.c,v
retrieving revision 1.55
diff -u -r1.55 parse.c
--- Src/parse.c 26 Jun 2006 10:04:09 -0000 1.55
+++ Src/parse.c 9 Jul 2006 14:44:24 -0000
@@ -1672,7 +1672,6 @@
lineno += oldlineno;
ecnpats = onp;
ecssub = oecssub;
- cmdpop();
YYERROR(oecused);
}
yylex();
Index: Src/prompt.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/prompt.c,v
retrieving revision 1.37
diff -u -r1.37 prompt.c
--- Src/prompt.c 7 Mar 2006 21:31:30 -0000 1.37
+++ Src/prompt.c 9 Jul 2006 14:44:25 -0000
@@ -31,7 +31,7 @@
#include "prompt.pro"
/* text attribute mask */
-
+
/**/
unsigned txtattrmask;
@@ -41,7 +41,7 @@
mod_export unsigned txtchange;
/* the command stack for use with %_ in prompts */
-
+
/**/
unsigned char *cmdstack;
/**/
@@ -59,7 +59,7 @@
"cmdsubst", "mathsubst", "elif-then", "heredoc",
"heredocd", "brace", "braceparam", "always",
};
-
+
/* The buffer into which an expanded and metafied prompt is being written, *
* and its size. */
@@ -1304,3 +1304,22 @@
}
return 1;
}
+
+/**/
+void
+cmdpush(int cmdtok)
+{
+ if (cmdsp >= 0 && cmdsp < CMDSTACKSZ)
+ cmdstack[cmdsp++] = (unsigned char)cmdtok;
+}
+
+/**/
+void
+cmdpop(void)
+{
+ if (cmdsp <= 0) {
+ DPUTS(1, "BUG: cmdstack empty");
+ fflush(stderr);
+ } else
+ cmdsp--;
+}
Index: Src/zsh.h
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/zsh.h,v
retrieving revision 1.91
diff -u -r1.91 zsh.h
--- Src/zsh.h 28 Jun 2006 13:12:55 -0000 1.91
+++ Src/zsh.h 9 Jul 2006 14:44:27 -0000
@@ -1768,20 +1768,6 @@
/****************************************/
#define CMDSTACKSZ 256
-#define cmdpush(X) do { \
- if (cmdsp >= 0 && cmdsp < CMDSTACKSZ) \
- cmdstack[cmdsp++]=(X); \
- } while (0)
-#ifdef DEBUG
-# define cmdpop() do { \
- if (cmdsp <= 0) { \
- fputs("BUG: cmdstack empty\n", stderr); \
- fflush(stderr); \
- } else cmdsp--; \
- } while (0)
-#else
-# define cmdpop() do { if (cmdsp > 0) cmdsp--; } while (0)
-#endif
#define CS_FOR 0
#define CS_WHILE 1
--
Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/
Messages sorted by:
Reverse Date,
Date,
Thread,
Author