svn commit: trunk/busybox/shell
vda at busybox.net
vda at busybox.net
Fri Nov 28 04:01:03 UTC 2008
Author: vda
Date: 2008-11-27 20:01:03 -0800 (Thu, 27 Nov 2008)
New Revision: 24171
Log:
ash: add FIXME
Modified:
trunk/busybox/shell/ash.c
Changeset:
Modified: trunk/busybox/shell/ash.c
===================================================================
--- trunk/busybox/shell/ash.c 2008-11-28 03:50:46 UTC (rev 24170)
+++ trunk/busybox/shell/ash.c 2008-11-28 04:01:03 UTC (rev 24171)
@@ -9156,6 +9156,11 @@
INT_ON;
}
+//FIXME: BASH_COMPAT with "...&" does TWO pungetc():
+//it peeks whether it is &>, and then pushes back both chars.
+//This function needs to save last *next_to_pgetc to buf[0]
+//to make two pungetc() reliable. Currently,
+// pgetc (out of buf: does preadfd), pgetc, pungetc, pungetc won't work...
static int
preadfd(void)
{
@@ -9251,9 +9256,9 @@
* "pgetc" needs refilling.
*/
- /* -90 is -BIGNUM. Below we use -99 to mark "EOF on read",
+ /* -90 is our -BIGNUM. Below we use -99 to mark "EOF on read",
* pungetc() may increment it a few times.
- * Assuming it won't increment it to 0.
+ * Assuming it won't increment it to less than -90.
*/
if (g_parsefile->left_in_line < -90 || g_parsefile->buf == NULL) {
pgetc_debug("preadbuffer PEOF1");
More information about the busybox-cvs
mailing list