# eg: `make DODEBUG=true tests'
DODEBUG = false
-# If you want a static binary, turn this on. I can't think
-# of many situations where anybody would ever want it static,
-# but...
+# If you want a static binary, turn this on.
DOSTATIC = false
# This will choke on a non-debian system
#define BB_FREE
//#define BB_FREERAMDISK
//#define BB_FSCK_MINIX
-//#define BB_GREP
+#define BB_GREP
#define BB_GUNZIP
#define BB_GZIP
//#define BB_HALT
if ((ret = read(inputFd, &c, 1)) < 1)
return ret;
+ fprintf(stderr, "\n\nkey=%d (%c)\n\n", c, c);
+ /* Go to the next line */
+ xwrite(outputFd, "\n", 1);
+ /* Rewrite the prompt */
+ xwrite(outputFd, prompt, strlen(prompt));
+ /* Rewrite the command */
+ xwrite(outputFd, parsenextc, len);
+
switch (c) {
case 1:
/* Control-a -- Beginning of line */
len--;
}
break;
+
+ //case '5': case '6': /* pgup/pgdown */
+
+ case '7':
+ /* rxvt home */
case '1':
/* Home (Ctrl-A) */
input_home(outputFd, &cursor);
break;
+ case '8':
+ /* rxvt END */
case '4':
/* End (Ctrl-E) */
input_end(outputFd, &cursor, len);
if ((ret = read(inputFd, &c, 1)) < 1)
return ret;
+ fprintf(stderr, "\n\nkey=%d (%c)\n\n", c, c);
+ /* Go to the next line */
+ xwrite(outputFd, "\n", 1);
+ /* Rewrite the prompt */
+ xwrite(outputFd, prompt, strlen(prompt));
+ /* Rewrite the command */
+ xwrite(outputFd, parsenextc, len);
+
switch (c) {
case 1:
/* Control-a -- Beginning of line */
len--;
}
break;
+
+ //case '5': case '6': /* pgup/pgdown */
+
+ case '7':
+ /* rxvt home */
case '1':
/* Home (Ctrl-A) */
input_home(outputFd, &cursor);
break;
+ case '8':
+ /* rxvt END */
case '4':
/* End (Ctrl-E) */
input_end(outputFd, &cursor, len);