Renamed a variable from 'DB' to 'cDB', so the vi(1) will compile again.

Nice to see that people test their fixes before they commit :-(
This commit is contained in:
Poul-Henning Kamp 1994-10-28 21:39:58 +00:00
parent c232824e58
commit 1eb01a4975
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3976
3 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@ extern int My_term; /* Use Def_term regardless. */
extern char *Def_term; /* Default terminal type. */
/* Termcap capabilities. */
extern char AM, BS, CA, DA, DB, EO, HC, IN, MI, MS, NC, NS, OS,
extern char AM, BS, CA, DA, cDB, EO, HC, IN, MI, MS, NC, NS, OS,
PC, UL, XB, XN, XT, XS, XX;
extern char *AL, *BC, *BT, *CD, *CE, *CL, *CM, *CR, *CS, *DC, *DL,
*DM, *DO, *ED, *EI, *K0, *K1, *K2, *K3, *K4, *K5, *K6,

View File

@ -745,7 +745,7 @@ scrolln(starts, startw, curs, bot, top)
if (n > 0) {
/* Scroll up the screen. */
if ((!DB && SF != NULL || n == 1) && bot == curscr->maxy - 1 && top == 0) {
if ((!cDB && SF != NULL || n == 1) && bot == curscr->maxy - 1 && top == 0) {
__mvcur(oy, ox, curscr->maxy - 1, 0, 1);
if (n == 1)
goto f_nl1;

View File

@ -51,7 +51,7 @@ static void zap __P((void));
static char *sflags[] = {
/* am bs da db eo hc in mi ms */
&AM, &BS, &DA, &DB, &EO, &HC, &IN, &MI, &MS,
&AM, &BS, &DA, &cDB, &EO, &HC, &IN, &MI, &MS,
/* nc ns os ul xb xn xt xs xx */
&NC, &NS, &OS, &UL, &XB, &XN, &XT, &XS, &XX
};