Implement fallback handler that looks at the raw command buffer.

With database cinpilation not broken this time...
This commit is contained in:
Eric S. Raymond 2017-05-25 18:21:38 -04:00
parent 76527321b5
commit 79ef3e38c2
3 changed files with 16 additions and 5 deletions

8
misc.c
View file

@ -1,6 +1,7 @@
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "main.h"
#include "share.h" /* for SETUP */
#include "misc.h"
@ -887,7 +888,7 @@ long I, VAL;
if (!oldstyle && SETUP && OPENED == stdin)
fputs("> ", stdout);
do {
IGNORE(fgets(INLINE+1,sizeof(INLINE)-1,OPENED));
IGNORE(fgets(rawbuf,sizeof(INLINE)-1,OPENED));
} while
(!feof(OPENED) && INLINE[1] == '#');
if (feof(OPENED)) {
@ -895,9 +896,10 @@ long I, VAL;
fclose(logfp);
} else {
if (logfp && OPENED == stdin)
IGNORE(fputs(INLINE+1, logfp));
IGNORE(fputs(rawbuf, logfp));
else if (!isatty(0))
IGNORE(fputs(INLINE+1, stdout));
IGNORE(fputs(rawbuf, stdout));
strcpy(INLINE+1, rawbuf);
LNLENG=0;
for (I=1; I<=sizeof(INLINE) && INLINE[I]!=0; I++) {
VAL=INLINE[I]+1;