mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
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:
parent
c232824e58
commit
1eb01a4975
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3976
@ -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,
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user