Displaying 3 results from an estimated 3 matches for "histev".
Did you mean:
hist2v
2010 Jul 09
1
dash klibc DEBUG more compile trouble
...error: ?EL_EDITOR? undeclared (first use in this function)
usr/dash/histedit.c:132: warning: implicit declaration of function ?el_source?
usr/dash/histedit.c:141: warning: implicit declaration of function ?history_end?
usr/dash/histedit.c: In function ?sethistsize?:
usr/dash/histedit.c:153: error: ?HistEvent? undeclared (first use in this function)
usr/dash/histedit.c:153: error: expected ?;? before ?he?
usr/dash/histedit.c:155: error: ?hist? undeclared (first use in this function)
usr/dash/histedit.c:159: warning: implicit declaration of function ?history?
usr/dash/histedit.c:159: error: ?he? undec...
2019 Jan 25
0
[klibc:update-dash] input: Move all input state into parsefile
...ft = q - parsenextc - 1;
- if (parsenleft < 0)
+ parsefile->nleft = q - parsefile->nextc - 1;
+ if (parsefile->nleft < 0)
goto again;
break;
}
}
- parselleft = more;
+ parsefile->lleft = more;
savec = *q;
*q = '\0';
@@ -298,13 +272,13 @@ again:
HistEvent he;
INTOFF;
history(hist, &he, whichprompt == 1? H_ENTER : H_APPEND,
- parsenextc);
+ parsefile->nextc);
INTON;
}
#endif
if (vflag) {
- out2str(parsenextc);
+ out2str(parsefile->nextc);
#ifdef FLUSHERR
flushout(out2);
#endif
@@ -312,7 +286,7 @@ again:...
2020 Mar 28
0
[klibc:update-dash] dash: input: Move all input state into parsefile
...ft = q - parsenextc - 1;
- if (parsenleft < 0)
+ parsefile->nleft = q - parsefile->nextc - 1;
+ if (parsefile->nleft < 0)
goto again;
break;
}
}
- parselleft = more;
+ parsefile->lleft = more;
savec = *q;
*q = '\0';
@@ -298,13 +272,13 @@ again:
HistEvent he;
INTOFF;
history(hist, &he, whichprompt == 1? H_ENTER : H_APPEND,
- parsenextc);
+ parsefile->nextc);
INTON;
}
#endif
if (vflag) {
- out2str(parsenextc);
+ out2str(parsefile->nextc);
#ifdef FLUSHERR
flushout(out2);
#endif
@@ -312,7 +286,7 @@ again:...