1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
|
/* exconfig.c */
/* Copyright 1995 by Steve Kirkendall */
char id_exconfig[] = "$Id: exconfig.c,v 2.87 1999/10/08 18:03:03 steve Exp $";
#include "elvis.h"
/* This variable stores the current state of ex's control structures. */
EXCTLSTATE exctlstate;
#ifdef FEATURE_ALIAS
/* These are used for storing aliases */
typedef struct alias_s
{
struct alias_s *next; /* some other alias */
char *name; /* name of this alias */
CHAR *command; /* commands for this alias */
BOOLEAN inuse; /* is this alias already being run? */
} alias_t;
BEGIN_EXTERNC
static void listalias P_((WINDOW win, alias_t *alias, BOOLEAN shortformat));
static void buildarg P_((CHAR **cmd, CHAR *arg, long len, CHAR *defarg, long deflen, BOOLEAN quote));
END_EXTERNC
static alias_t *aliases; /* This is the head of a list of aliases */
/* look up a name in the alias list. The name can be terminated with any
* non-alphanumeric character, not just '\0'. Return its name if alias,
* or NULL otherwise. Optionally ignore if already in use.
*/
char *exisalias(name, inuse)
char *name; /* name of a command, maybe an alias */
BOOLEAN inuse; /* find even if in use? (else hide in-use aliases) */
{
alias_t *alias;
/* look for alias */
for (alias = aliases; alias; alias = alias->next)
if (!strcmp(name, alias->name))
return (alias->inuse && !inuse) ? NULL : alias->name;
return NULL;
}
/* list a single alias */
static void listalias(win, alias, shortformat)
WINDOW win;
alias_t *alias;
BOOLEAN shortformat;
{
CHAR ch[4];
CHAR *start;
int len;
drawexlist(win, toCHAR(alias->name), strlen(alias->name));
if (CHARchr(alias->command, '\n') == alias->command + CHARlen(alias->command) - 1)
{
/* single-line command simply follows the alias name */
drawexlist(win, blanks, 10 - (CHARlen(alias->name) % 10));
drawexlist(win, alias->command, CHARlen(alias->command));
}
else if (shortformat)
{
/* multi-line command, but only show first line */
drawexlist(win, blanks, 10 - (CHARlen(alias->name) % 10));
ch[0] = '{';
ch[1] = ' ';
drawexlist(win, ch, 2);
for (start = alias->command, len = 0;
*start++ != '\n' && len < o_columns(win) - 16;
len++)
{
}
drawexlist(win, alias->command, len);
ch[0] = ch[1] = ch[2] = '.';
ch[3] = '\n';
drawexlist(win, ch, 4);
}
else
{
/* multi-line command is output in a fancy way */
ch[0] = ' ';
ch[1] = '{';
ch[2] = '\n';
drawexlist(win, ch, 3);
for (start = alias->command, len = 0; *start; len++)
{
if (start[len] == '\n')
{
drawexlist(win, blanks, 10);
drawexlist(win, start, len);
ch[0] = '\n';
drawexlist(win, ch, 1);
start += len + 1;
len = -1; /* will be incremented to 0 by for()*/
}
}
ch[0] = '}';
ch[1] = '\n';
drawexlist(win, ch, 2);
}
}
/* maintain the alias list */
RESULT ex_alias(xinf)
EXINFO *xinf;
{
alias_t *newalias, *alias, *lag;
int i;
/* if no aliases named, then list all */
if (!xinf->lhs)
{
for (alias = aliases; alias; alias = alias->next)
{
listalias(xinf->window, alias, True);
}
return RESULT_COMPLETE;
}
/* Try to find the named alias */
for (lag = NULL, alias = aliases;
alias && CHARcmp(xinf->lhs, toCHAR(alias->name));
lag = alias, alias = alias->next)
{
}
/* Unaliasing? */
if (xinf->command == EX_UNALIAS)
{
if (alias)
{
/* safety check */
if (alias->inuse)
{
msg(MSG_ERROR, "[s]can't unalias $1 because it is in use", alias->name);
return RESULT_ERROR;
}
/* remove it from the list, and free it */
if (lag)
lag->next = alias->next;
else
aliases = alias->next;
safefree(alias->name);
safefree(alias->command);
safefree(alias);
}
return RESULT_COMPLETE;
}
/* listing one specific alias? */
if (!xinf->rhs)
{
if (!alias)
msg(MSG_WARNING, "[S]no alias named $1", xinf->lhs);
else
listalias(xinf->window, alias, False);
return RESULT_COMPLETE;
}
/* safety check */
if (alias && alias->inuse)
{
msg(MSG_ERROR, "[s]can't redefine $1 because it is in use", alias->name);
return RESULT_ERROR;
}
/* verify that the name contains only alphanumeric characters */
for (i = 0; xinf->lhs[i]; i++)
{
if (!isalnum(xinf->lhs[i]))
{
msg(MSG_ERROR, "alias names must be alphanumeric");
return RESULT_ERROR;
}
}
/* create or alter an alias */
if (alias)
safefree(alias->command);
else
{
/* find the aliases before & after it, in ASCII order */
for (lag = NULL, alias = aliases;
alias && CHARcmp(xinf->lhs, toCHAR(alias->name)) > 0;
lag = alias, alias = alias->next)
{
}
/* allocate the new alias, and insert it into the list */
newalias = (alias_t *)safekept(1, sizeof *alias);
newalias->next = alias;
if (lag)
lag->next = newalias;
else
aliases = newalias;
newalias->name = safekdup(tochar8(xinf->lhs));
alias = newalias;
}
#ifdef DEBUG_ALLOC
alias->command = CHARkdup(xinf->rhs);
#else
alias->command = xinf->rhs;
xinf->rhs = NULL;
#endif
return RESULT_COMPLETE;
}
/* Add an argument to cmd, by calling buildCHAR() repeatedly. */
static void buildarg(cmd, arg, len, defarg, deflen, quote)
CHAR **cmd; /* the resulting string */
CHAR *arg; /* the arg to add */
long len; /* length of arg */
CHAR *defarg;/* default, used if len == 0 */
long deflen; /* length of defarg */
BOOLEAN quote; /* should backslashes be inserted? */
{
long i;
/* if normal arg is empty, then use defarg without quoting */
if (len == 0)
{
arg = defarg;
len = deflen;
quote = False;
}
/* copy characters, with optional quoting */
for (i = 0; i < len; i++, arg++)
{
if (quote && CHARchr(toCHAR("/\\^$*[."), *arg))
buildCHAR(cmd, '\\');
buildCHAR(cmd, *arg);
}
}
/* Execute an alias */
RESULT ex_doalias(xinf)
EXINFO *xinf;
{
alias_t *alias;
CHAR *cmd, *str, *defarg;
CHAR *args[11];
long lens[11];
long deflen;
int i;
char num[24];
BOOLEAN inword;
BOOLEAN anyargs, anyaddr, anybang;
BOOLEAN multiline;
BOOLEAN quote;
RESULT result = RESULT_ERROR;
/* Find the alias. It *will* exist, and use the same name pointer */
for (alias = aliases; alias->name != xinf->cmdname; alias = alias->next)
{
}
/* parse the args, if any. args[0] is the whole argument string, and
* args[1] through args[9] are the first 9 words from that string.
*/
memset(lens, 0, sizeof lens);
if (xinf->rhs)
{
args[0] = xinf->rhs;
lens[0] = CHARlen(args[0]);
args[1] = args[0];
for (i = 1, inword = True, str = args[0]; *str && i < 10; str++)
{
if (inword)
{
if (isspace(*str))
inword = False;
else
lens[i]++;
}
else if (!isspace(*str))
{
args[++i] = str;
lens[i] = 1;
inword = True;
}
}
}
/* Build a copy of the command string, with !0-!9 replaced by args[0]
* through args[9].
*/
anyargs = anyaddr = anybang = multiline = False;
for (cmd = NULL, str = alias->command; *str; str++)
{
/* if not '!' then it can't be an arg substitution */
if (*str != '!')
{
buildCHAR(&cmd, *str);
if (*str == '\n' && str[1])
multiline = True;
continue;
}
/* Allow an optional ':' after the '!'. Also allow an optional
* \ which causes backslashes to be inserted before certain
* characters in the expansion.
*/
quote = False;
deflen = 0;
defarg = args[0]; /* anything but NULL, really */
str++;
while (*str == ':' || *str == '\\' || *str == '(')
{
if (*str == ':')
str++;
else if (*str == '\\')
str++, quote = True;
else /* *str == '(' */
{
str++;
defarg = str;
for (deflen = 0; *str != ')'; deflen++)
{
if (!*str || *str == '\n')
{
msg(MSG_ERROR, "malformed !() in alias $1", alias->name);
if (cmd)
safefree(cmd);
return RESULT_ERROR;
}
str++;
}
str++;
}
}
/* which substitution is being requested? */
switch (*str)
{
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
/* insert an argument */
i = *str - '0';
buildarg(&cmd, args[i], lens[i], defarg, deflen, quote);
anyargs = True;
break;
case '*':
/* insert the whole argument string */
buildarg(&cmd, args[0], lens[0], defarg, deflen, quote);
anyargs = True;
break;
case '^':
/* insert the first argument string */
buildarg(&cmd, args[1], lens[1], defarg, deflen, quote);
anyargs = True;
break;
case '$':
/* insert the last argument string */
for (i = 1; i < QTY(lens) - 1 && lens[i + 1] > 0; i++)
{
}
buildarg(&cmd, args[i], lens[i], defarg, deflen, quote);
anyargs = True;
break;
case '!':
buildCHAR(&cmd, '!');
break;
case '?':
if (xinf->bang)
buildCHAR(&cmd, '!');
anybang = True;
break;
case '<':
if (xinf->anyaddr)
{
sprintf(num, "%ld", xinf->from);
buildstr(&cmd, num);
}
else
buildarg(&cmd, NULL, 0, defarg, deflen, quote);
anyaddr = True;
break;
case '>':
if (xinf->anyaddr)
{
sprintf(num, "%ld", xinf->to);
buildstr(&cmd, num);
}
else
buildarg(&cmd, NULL, 0, defarg, deflen, quote);
anyaddr = True;
break;
case '%':
if (xinf->anyaddr)
{
sprintf(num, "%ld,%ld", xinf->from, xinf->to);
buildstr(&cmd, num);
}
else
buildarg(&cmd, NULL, 0, defarg, deflen, quote);
anyaddr = True;
break;
default:
/* no substitution -- use a literal ! character */
if (str[-1] == ':')
buildCHAR(&cmd, '!');
buildCHAR(&cmd, str[-1]);
buildCHAR(&cmd, *str);
}
}
/* If command contained no !n strings, but the alias was invoked with
* arguments, then append the arguments to the last command line.
*/
if (!anyargs && !multiline && lens[0] > 0)
{
cmd[CHARlen(cmd) - 1] = ' '; /* convert newline to space */
buildarg(&cmd, args[0], lens[0], args[0], lens[0], False);
buildCHAR(&cmd, '\n');
anyargs = True;
}
/* Detect usage errors */
if (xinf->bang && !anybang)
msg(MSG_ERROR, "[s]the $1 alias doesn't use a ! suffix", alias->name);
else if (xinf->anyaddr && !anyaddr)
msg(MSG_ERROR, "[s]the $1 alias doesn't use addresses", alias->name);
else if (lens[0] > 0 && !anyargs)
msg(MSG_ERROR, "[s]the $1 alias doesn't use arguments", alias->name);
else
{
/* No errors - Run the command. Mark it as being "in use"
* while it is running, to prevent recursion.
*/
alias->inuse = True;
result = exstring(xinf->window, cmd, alias->name);
alias->inuse = False;
}
/* Free the copy of the command string */
safefree(cmd);
return result;
}
#endif /* FEATURE_ALIAS */
RESULT ex_args(xinf)
EXINFO *xinf;
{
int i, col, len;
char **tmp;
/* were we given a new args list? */
if (xinf->nfiles > 0)
{
/* yes, use it */
tmp = arglist;
arglist = xinf->file;
xinf->file = tmp;
for (xinf->nfiles = 0; xinf->file[xinf->nfiles]; xinf->nfiles++)
{
}
argnext = 0;
}
else
{
/* show current args list */
for (i = col = 0; arglist[i]; i++)
{
len = strlen(arglist[i]);
/* whitespace between args */
if (i == 0)
; /* no space is needed */
else if (col + len + 4 > o_columns(xinf->window))
{
drawexlist(xinf->window, toCHAR("\n"), 1);
col = 0;
}
else
{
drawexlist(xinf->window, toCHAR(" "), 1);
col++;
}
/* Output the arg. If current, enclose in '[' */
if (i == argnext - 1)
drawexlist(xinf->window, toCHAR("["), 1);
drawexlist(xinf->window, toCHAR(arglist[i]), len);
if (i == argnext - 1)
drawexlist(xinf->window, toCHAR("]"), 1);
col += len;
}
/* the final newline */
drawexlist(xinf->window, toCHAR("\n"), 1);
}
return RESULT_COMPLETE;
}
/* This table stores the names of the fonts, and the colors assigned to
* them. Initially the colors are NULL. A foreground and background are
* stored for each, although some GUIs don't allow that much control.
*/
static struct
{
char *name; /* name of the font to be colorized */
CHAR *fg; /* name of foreground color */
CHAR *bg; /* name of background color */
} colortbl[] =
{
{"normal"}, {"bold"}, {"emphasized"}, {"italic"},
{"underlined"}, {"fixed"}, {"cursor"}, {"standout"},
{"tool"},
{"scrollbar"} /* "scrollbar" must be last */
};
/* This function implements the :color command. */
RESULT ex_color(xinf)
EXINFO *xinf;
{
CHAR *args, *cp, *bg;
int i, j;
if (!gui->color)
{
msg(MSG_ERROR, "no color support");
return RESULT_ERROR;
}
if (!xinf->rhs)
{
/* list any colors which have been set */
for (i = j = 0; i < QTY(colortbl); i++)
{
if (colortbl[i].fg && colortbl[i].bg)
msg(MSG_INFO, "[sSS]color $1 $2 on $3",
colortbl[i].name, colortbl[i].fg,
colortbl[i].bg);
else if (colortbl[i].fg)
msg(MSG_INFO, "[sS]color $1 $2",
colortbl[i].name, colortbl[i].fg);
else
j++;
}
if (i == j)
msg(MSG_WARNING, "no colors have been set");
return RESULT_COMPLETE;
}
/* PARSE ARGS INTO FONT, FOREGROUND & BACKGROUND */
/* font... */
args = xinf->rhs;
if (!CHARncmp(args, toCHAR("s "), 2) && gui->scrollbar)
{
i = QTY(colortbl) - 1;
}
else
{
for (i = 0;
i < QTY(colortbl)
&& (CHARncmp(toCHAR(colortbl[i].name), args, strlen(colortbl[i].name)) || args[strlen(colortbl[i].name)] != ' ')
&& !(args[0] == (CHAR)colortbl[i].name[0] && args[1] == ' ');
i++)
{
}
}
if (i >= QTY(colortbl))
{
i = 0; /* if no name given, assume "normal" */
}
else
{
/* skip past the name */
while (*args != ' ')
{
args++;
}
while (*args == ' ')
{
args++;
}
}
/* foreground & background... */
for (bg = args; *bg && strncmp(tochar8(bg), " on ", 4); bg++)
{
}
if (*bg)
{
*bg = '\0';
for (bg += 4; *bg && isspace(*bg); bg++)
{
}
}
if (!*bg)
{
bg = (CHAR *)0;
}
/* trim trailing whitespace */
for (cp = args + CHARlen(args); --cp >= args && isspace(*cp); )
{
*cp = '\0';
}
if (!*args)
{
msg(MSG_ERROR, "missing foreground color");
return RESULT_ERROR;
}
/* call the GUI's color function */
if ((*gui->color)(xinf->window ? xinf->window->gw : (GUIWIN *)0, colortbl[i].name[0], args, bg))
{
/* redraw the window */
if (xinf->window)
{
xinf->window->di->logic = DRAW_SCRATCH;
xinf->window->di->newmsg = True;
}
/* remember the chosen colors */
if (colortbl[i].fg)
safefree(colortbl[i].fg);
colortbl[i].fg = args ? CHARkdup(args) : NULL;
if (colortbl[i].bg)
safefree(colortbl[i].bg);
colortbl[i].bg = bg ? CHARkdup(bg) : NULL;
return RESULT_COMPLETE;
}
return RESULT_ERROR;
}
# ifdef FEATURE_MKEXRC
void colorsave(custom)
BUFFER custom; /* where to stuff the color commands */
{
MARKBUF m;
int i;
char tmp[80];
/* try to make colors GUI-sensitive */
sprintf(tmp, "if gui==\"%s\"\n", tochar8(o_gui));
bufreplace(marktmp(m, custom, o_bufchars(custom)), &m, toCHAR(tmp), (long)strlen(tmp));
/* store the color commands */
for (i = 0; i < QTY(colortbl); i++)
{
if (colortbl[i].fg)
{
sprintf(tmp, "then color %s %s", colortbl[i].name, tochar8(colortbl[i].fg));
if (colortbl[i].bg)
{
strcat(tmp, " on ");
strcat(tmp, tochar8(colortbl[i].bg));
}
strcat(tmp, "\n");
bufreplace(marktmp(m, custom, o_bufchars(custom)), &m, toCHAR(tmp), (long)strlen(tmp));
}
}
}
# endif /* FEATURE_MKEXRC */
RESULT ex_comment(xinf)
EXINFO *xinf;
{
CHAR *result;
assert(xinf->command == EX_COMMENT || xinf->command == EX_ECHO
|| xinf->command == EX_CALC || xinf->command == EX_GOTO);
if (xinf->command == EX_ECHO && xinf->rhs)
{
drawextext(xinf->window, xinf->rhs, (int)CHARlen(xinf->rhs));
drawextext(xinf->window, toCHAR("\n"), 1);
}
else if (xinf->command == EX_CALC && xinf->rhs)
{
result = calculate(xinf->rhs, NULL, False);
if (!result)
{
return RESULT_ERROR;
}
drawextext(xinf->window, result, (int)CHARlen(result));
drawextext(xinf->window, toCHAR("\n"), 1);
}
else if (xinf->command == EX_GOTO && xinf->fromaddr)
{
if (xinf->fromoffset > markoffset(xinf->fromaddr)
&& xinf->fromoffset <= markoffset(xinf->toaddr))
xinf->newcurs = markalloc(markbuffer(xinf->fromaddr), xinf->fromoffset);
else
xinf->newcurs = markdup(xinf->fromaddr);
}
return RESULT_COMPLETE;
}
RESULT ex_message(xinf)
EXINFO *xinf;
{
MSGIMP imp;
RESULT result;
/* choose an importance level for this message */
switch (xinf->command)
{
case EX_MESSAGE: imp = MSG_INFO; result = RESULT_COMPLETE; break;
case EX_WARNING: imp = MSG_WARNING; result = RESULT_COMPLETE; break;
case EX_ERROR: imp = MSG_ERROR; result = RESULT_ERROR; break;
default:
#ifndef NDEBUG
abort();
#endif
;
}
/* do we have a message? */
if (!xinf->rhs)
{
/* no - fake it for :error, else just return */
if (xinf->command == MSG_ERROR)
xinf->rhs = CHARdup(toCHAR("error"));
else
return result;
}
/* don't allow bracket at the beginning -- would look like args */
if (*xinf->rhs == '[')
*xinf->rhs = '{';
/* output the message, or queue it */
msg(imp, tochar8(xinf->rhs));
/* return the result code */
return result;
}
RESULT ex_digraph(xinf)
EXINFO *xinf;
{
digaction(xinf->window, xinf->bang, xinf->rhs);
return RESULT_COMPLETE;
}
RESULT ex_display(xinf)
EXINFO *xinf;
{
if (xinf->command == EX_DISPLAY && !xinf->rhs)
{
displist(xinf->window);
}
else if (!dispset(xinf->window, tochar8(xinf->rhs)))
{
return RESULT_ERROR;
}
xinf->window->di->logic = DRAW_CHANGED;
return RESULT_COMPLETE;
}
RESULT ex_gui(xinf)
EXINFO *xinf;
{
if (!gui->guicmd)
{
msg(MSG_ERROR, "gui-specific commands not supported");
return RESULT_ERROR;
}
return (*gui->guicmd)(xinf->window ? xinf->window->gw : NULL, tochar8(xinf->rhs))
? RESULT_COMPLETE
: RESULT_ERROR;
}
RESULT ex_help(xinf)
EXINFO *xinf;
{
#ifndef DISPLAY_HTML
msg(MSG_ERROR, "help unavailable; html mode is disabled");
return RESULT_ERROR;
#else
CHAR *topic; /* topic to search for; a tag name */
char *section;/* name of help file containing topic */
CHAR *tag; /* name of tag to search for -- section#topic */
BUFFER buf; /* buffer containing help text */
MARK tagdefn;/* result of search; where cursor should move to */
OPTDESC *od; /* description struct of an option */
int i;
/* remove trailing whitespace from args */
if (xinf->lhs)
for (topic = &xinf->lhs[CHARlen(xinf->lhs)];
topic-- != xinf->lhs && isspace(*topic);
)
*topic = '\0';
if (xinf->rhs)
for (topic = &xinf->rhs[CHARlen(xinf->rhs)];
topic-- != xinf->rhs && isspace(*topic);
)
*topic = '\0';
/* construct a tag name for the requested topic */
topic = NULL;
if (!xinf->lhs)
{
/* :help */
topic = toCHAR("CONTENTS");
section = "elvis.html";
}
else if (!CHARcmp(xinf->lhs, toCHAR("ex")))
{
/* :help ex */
section = "elvisex.html";
}
else if (!CHARcmp(xinf->lhs, toCHAR("vi")))
{
/* :help vi */
section = "elvisvi.html";
}
else if ((!CHARncmp(xinf->lhs, toCHAR("se"), 2)
|| !CHARncmp(xinf->lhs, toCHAR(":se"), 3))
&& xinf->rhs)
{
/* :help set optionname */
if (optgetstr(xinf->rhs, &od))
topic = toCHAR(od->longname);
else if (xinf->rhs[0] == 'n' && xinf->rhs[1] == 'o'
&& (optgetstr(xinf->rhs + 2, &od)))
topic = toCHAR(od->longname);
else
topic = toCHAR("GROUP");
section = "elvisopt.html";
}
else if (CHARlen(xinf->lhs) > 1 && xinf->lhs[0] == ':')
{
/* :help :exname */
topic = exname(xinf->lhs + 1);
if (!topic)
topic = toCHAR("GROUP");
section = "elvisex.html";
}
else if ((topic = viname(xinf->lhs)) != NULL)
{
/* :help c (where c is a vi command, usually single-char) */
section = "elvisvi.html";
}
else if (optgetstr(xinf->lhs, &od) != NULL)
{
/* :help optionname */
topic = toCHAR(od->longname);
section = "elvisopt.html";
}
else if ((topic = exname(xinf->lhs)) != NULL)
{
/* :help exname */
section = "elvisex.html";
}
else
{
/* Can't tell what user is looking for; perhaps the user
* doesn't know the syntax of :help ? Teach them!
*/
topic = toCHAR("help");
section = "elvisex.html";
}
/* if help text not found, then give up */
buf = bufpath(o_elvispath, section, toCHAR(section));
if (!buf)
{
msg(MSG_ERROR, "[s]help not available; couldn't load $1", section);
return RESULT_ERROR;
}
/* help text uses "html" display mode */
if (optflags(o_bufdisplay(buf)) & OPT_FREE)
{
safefree(o_bufdisplay(buf));
optflags(o_bufdisplay(buf)) &= ~OPT_FREE;
}
o_bufdisplay(buf) = toCHAR("html");
/* combine section name and topic name to form a tag */
if (topic)
{
tag = (CHAR *)safealloc((int)(CHARlen(o_filename(buf)) + CHARlen(topic) + 2), sizeof(CHAR));
CHARcpy(tag, o_filename(buf));
CHARcat(tag, toCHAR("#"));
CHARcat(tag, topic);
}
else
{
tag = CHARdup(toCHAR(section));
}
/* perform tag lookup to find the the topic in the help file */
tagdefn = (*dmhtml.tagload)(tag, NULL);
if (!tagdefn)
{
msg(MSG_ERROR, "[S]no help available for $1", topic);
safefree(tag);
return RESULT_ERROR;
}
safefree(tag);
/* Try to create a new window for the help text. If that doesn't
* work, then use the original window and push the old cursor onto
* the tag stack.
*/
bufwilldo(tagdefn, False);
if ((*gui->creategw)(tochar8(o_bufname(markbuffer(tagdefn))), ""))
{
return RESULT_COMPLETE;
}
/* push the current cursor position and display mode onto tag stack */
if (o_tagstack &&
!o_internal(markbuffer(xinf->window->cursor)) &&
o_filename(markbuffer(xinf->window->cursor)))
{
if (xinf->window->tagstack[TAGSTK - 1].prevtag)
safefree(xinf->window->tagstack[TAGSTK - 1].prevtag);
if (xinf->window->tagstack[TAGSTK - 1].origin)
markfree(xinf->window->tagstack[TAGSTK - 1].origin);
for (i = TAGSTK - 1; i > 0; i--)
{
xinf->window->tagstack[i] = xinf->window->tagstack[i - 1];
}
xinf->window->tagstack[0].prevtag = (o_previoustag ? CHARdup(o_previoustag) : NULL);
xinf->window->tagstack[0].origin = markdup(xinf->window->cursor);
xinf->window->tagstack[0].display = xinf->window->md->name;
}
/* arrange for the cursor to move to the tag position */
xinf->newcurs = markdup(tagdefn);
return RESULT_COMPLETE;
#endif
}
/* Evaluate an expression, and set the "then" flag according to result */
RESULT ex_if(xinf)
EXINFO *xinf;
{
CHAR *result;
/* expression is required */
if (!xinf->rhs)
{
msg(MSG_ERROR, "missing rhs");
return RESULT_ERROR;
}
/* evaluate expression */
result = calculate(xinf->rhs, NULL, (BOOLEAN)(xinf->command == EX_EVAL));
if (!result)
{
return RESULT_ERROR;
}
if (xinf->command == EX_IF)
{
/* set "exthenflag" based on result of evaluation */
exctlstate.thenflag = calctrue(result);
return RESULT_COMPLETE;
}
else /* command == EX_EVAL */
{
/* execute the result as an ex command */
return exstring(xinf->window, result, NULL);
}
}
RESULT ex_then(xinf)
EXINFO *xinf;
{
RESULT result = RESULT_COMPLETE;
BOOLEAN washiding;
assert(xinf->command == EX_THEN || xinf->command == EX_ELSE
|| xinf->command == EX_TRY);
/* If no commands, then do nothing */
if (!xinf->rhs)
return result;
/* For :try, execute the commands unconditionally and then set the
* "exthenflag" to indicate whether the command succeeded. Otherwise
* (for :then and :else) execute the commands if "exthenflag" is set
* appropriately
*/
if (xinf->command == EX_TRY)
{
washiding = msghide(True);
exctlstate.thenflag = (BOOLEAN)(exstring(xinf->window, xinf->rhs, NULL) == RESULT_COMPLETE);
(void)msghide(washiding);
}
else if (xinf->command == EX_THEN ? exctlstate.thenflag : !exctlstate.thenflag)
{
result = exstring(xinf->window, xinf->rhs, NULL);
}
return result;
}
RESULT ex_while(xinf)
EXINFO *xinf;
{
/* If there was some other, unused test lying around, then free it. */
if (exctlstate.dotest)
safefree(exctlstate.dotest);
exctlstate.dotest = NULL;
/* expression is required */
if (!xinf->rhs)
{
msg(MSG_ERROR, "missing rhs");
return RESULT_ERROR;
}
/* store the new test */
exctlstate.dotest = xinf->rhs;
xinf->rhs = NULL;
return RESULT_COMPLETE;
}
RESULT ex_do(xinf)
EXINFO *xinf;
{
CHAR *value;
RESULT result = RESULT_COMPLETE;
/* if no :while was executed before this, then fail */
if (!exctlstate.dotest)
{
msg(MSG_ERROR, "missing :while");
return RESULT_ERROR;
}
/* while the expression is true and valid... */
while ((value = calculate(exctlstate.dotest, NULL, False)) != NULL
&& calctrue(value))
{
/* Run the command. If no command, then display result */
if (xinf->rhs)
result = exstring(xinf->window, xinf->rhs, NULL);
else
{
drawextext(xinf->window, value, CHARlen(value));
drawextext(xinf->window, toCHAR("\n"), 1);
}
/* is the user getting bored? */
if (guipoll(False))
break;
}
/* free the exdotest expression */
safefree(exctlstate.dotest);
exctlstate.dotest = NULL;
/* if test could not be evaluated, then this command fails */
if (!value)
return RESULT_ERROR;
return result;
}
/* Implements the :switch command -- evaluate an expression, and store the
* result for use in later :case statements.
*/
RESULT ex_switch(xinf)
EXINFO *xinf;
{
/* free the old switch value, if any */
if (exctlstate.switchvalue)
safefree(exctlstate.switchvalue);
exctlstate.switchvalue = NULL;
exctlstate.switchcarry = False;
/* verify that we were given an expression */
if (!xinf->rhs)
{
msg(MSG_ERROR, "missing rhs");
return RESULT_ERROR;
}
/* compute a new value */
exctlstate.switchvalue = calculate(xinf->rhs, NULL, False);
if (exctlstate.switchvalue)
{
exctlstate.switchvalue = CHARdup(exctlstate.switchvalue);
return RESULT_COMPLETE;
}
return RESULT_ERROR;
}
/* This implements the :case and :default commands. It tests the value from
* a previous :switch command, and conditionally executes a command.
*/
RESULT ex_case(xinf)
EXINFO *xinf;
{
/* check syntax */
if (xinf->command == EX_CASE && !xinf->lhs)
{
msg(MSG_ERROR, "missing lhs");
return RESULT_ERROR;
}
if (xinf->command == EX_DEFAULT && !xinf->rhs)
{
msg(MSG_ERROR, "missing ex command");
return RESULT_ERROR;
}
/* if a previous case matched, then do nothing here... unless the
* previous match had no ex command line, and is therefor trying to
* execute this case's command line.
*/
if (!exctlstate.switchvalue && !exctlstate.switchcarry)
return RESULT_COMPLETE;
/* The :default command doesn't care about values, and we don't care
* when a previous match had no ex command line eithe. Otherwise we
* need to check the :switch value against this case's value.
*/
if (!exctlstate.switchcarry && xinf->command != EX_DEFAULT)
{
if (CHARcmp(exctlstate.switchvalue, xinf->lhs))
/* no match, so skip this case */
return RESULT_COMPLETE;
}
/* It *DOES* match. Clobber the exswitchvalue so each :switch will
* only match (at most) one case. This also allows is to detect
* the default condition later.
*/
if (exctlstate.switchvalue)
{
safefree(exctlstate.switchvalue);
exctlstate.switchvalue = NULL;
}
exctlstate.switchcarry = False;
/* Execute the command for this case. If there is no command, then
* set a flag to indicate that the next case should match.
*/
if (xinf->rhs)
return exstring(xinf->window, xinf->rhs, NULL);
exctlstate.switchcarry = True;
return RESULT_COMPLETE;
}
/* This implemented :map, :unmap, :abbr, :unabbr, :break, and :unbreak */
RESULT ex_map(xinf)
EXINFO *xinf;
{
CHAR *line;
MAPFLAGS flags;
int len;
assert(xinf->command == EX_MAP || xinf->command == EX_ABBR
|| xinf->command == EX_UNMAP || xinf->command == EX_UNABBR
|| xinf->command == EX_BREAK || xinf->command == EX_UNBREAK);
/* check for missing mandatory arguments */
if ((xinf->command == EX_MAP || xinf->command == EX_ABBR)
&& xinf->lhs && !xinf->rhs)
{
msg(MSG_ERROR, "missing rhs");
return RESULT_ERROR;
}
if ((xinf->command == EX_UNMAP || xinf->command == EX_UNABBR
|| xinf->command == EX_BREAK || xinf->command == EX_UNBREAK)
&& !xinf->lhs)
{
msg(MSG_ERROR, "missing lhs");
return RESULT_ERROR;
}
/* choose which flags to map */
if (xinf->command == EX_ABBR || xinf->command == EX_UNABBR)
{
flags = MAP_ABBR|(xinf->bang ? MAP_COMMAND : MAP_INPUT);
}
else if (xinf->rhs && !CHARncmp(xinf->rhs, toCHAR("visual "), 7))
{
flags = (MAP_INPUT|MAP_ASCMD|MAP_OPEN);
if (!xinf->bang)
flags |= MAP_COMMAND;
}
else
{
flags = xinf->bang ? (MAP_INPUT|MAP_OPEN) : MAP_COMMAND;
}
/* either list, unmap, or map */
if (!xinf->lhs)
{
while ((line = maplist(flags & (MAP_INPUT|MAP_COMMAND|MAP_ABBR), &len)) != (CHAR *)0)
{
/* can't list maps before the first window is created */
if (xinf->window)
drawextext(xinf->window, line, len);
}
}
else if (!xinf->rhs)
{
(void)mapdelete(xinf->lhs, (int)CHARlen(xinf->lhs), flags,
(BOOLEAN)(xinf->command == EX_UNMAP || xinf->command == EX_UNABBR),
(BOOLEAN)(xinf->command == EX_BREAK));
}
else
{
mapinsert(xinf->lhs, (int)CHARlen(xinf->lhs), xinf->rhs, (int)CHARlen(xinf->rhs), (CHAR *)0, flags);
}
return RESULT_COMPLETE;
}
RESULT ex_set(xinf)
EXINFO *xinf;
{
CHAR outbuf[5000];
static CHAR empty[1];
CHAR *value;
int i;
if (xinf->command == EX_LET)
{
i = 0;
if (!xinf->rhs)
{
goto MissingRHS;
}
/* copy name into outbuf[], so we can nul-terminate it */
for ( ; xinf->rhs && isalnum(xinf->rhs[i]); i++)
{
outbuf[i] = xinf->rhs[i];
}
outbuf[i] = '\0';
/* skip whitespace */
while (isspace(xinf->rhs[i]))
{
i++;
}
/* skip '=' */
if (xinf->rhs[i] != '=' || !outbuf[0])
{
goto MissingRHS;
}
i++;
/* skip whitespace after the '=' */
while (isspace(xinf->rhs[i]))
{
i++;
}
if (!xinf->rhs[i])
{
MissingRHS:
msg(MSG_ERROR, "missing rhs");
return RESULT_ERROR;
}
/* evaluate the expression */
value = calculate(&xinf->rhs[i], NULL, False);
if (!value)
/* error message already given */
return RESULT_ERROR;
/* store the result */
if (!optputstr(outbuf, value, xinf->bang))
/* error message already given */
return RESULT_ERROR;
}
else if (xinf->command == EX_LOCAL)
{
if (!xinf->rhs)
{
msg(MSG_ERROR, "missing rhs");
return RESULT_ERROR;
}
if (!optset(xinf->bang, xinf->rhs, NULL, 0))
{
return RESULT_ERROR;
}
}
else /* command == EX_SET */
{
if (!optset(xinf->bang, xinf->rhs ? xinf->rhs : empty, outbuf, QTY(outbuf)))
{
return RESULT_ERROR;
}
if (*outbuf)
{
drawexlist(windefault, outbuf, (int)CHARlen(outbuf));
}
}
return RESULT_COMPLETE;
}
RESULT ex_version(xinf)
EXINFO *xinf;
{
msg(MSG_INFO, "[s]elvis $1", VERSION);
#ifdef COPY1
msg(MSG_INFO, "[s]$1", COPY1);
#endif
#ifdef COPY2
msg(MSG_INFO, "[s]$1", COPY2);
#endif
#ifdef COPY3
msg(MSG_INFO, "[s]$1", COPY3);
#endif
#ifdef COPY4
msg(MSG_INFO, "[s]$1", COPY4);
#endif
#ifdef COPY5
msg(MSG_INFO, "[s]$1", COPY5);
#endif
#ifdef PORTEDBY
msg(MSG_INFO, "[s]Ported to (os) by $1", PORTEDBY);
#endif
return RESULT_COMPLETE;
}
RESULT ex_qall(xinf)
EXINFO *xinf;
{
WINDOW win, except;
WINDOW orig;
RESULT result;
BOOLEAN didorig;
assert(xinf->command == EX_QALL || xinf->command == EX_PRESERVE
|| xinf->command == EX_ONLY);
/* If :preserve, then turn off the tempsession flag */
if (xinf->command == EX_PRESERVE)
{
o_tempsession = False;
}
/* if :only, then use EX_CLOSE but don't close this window */
if (xinf->command == EX_ONLY)
{
xinf->command = EX_CLOSE;
except = xinf->window;
}
else
{
xinf->command = EX_QUIT;
except = NULL;
}
/* run the command on each window, except possibly this one */
orig = xinf->window;
for (win = winofbuf(NULL, NULL), result = RESULT_COMPLETE, didorig = False;
win;
win = winofbuf(win, NULL))
{
/* maybe skip the current window */
if (win == except)
{
didorig = True;
continue;
}
xinf->window = win;
if (ex_xit(xinf) != RESULT_COMPLETE)
{
result = RESULT_ERROR;
}
else if (win != orig)
{
/* Need to explicitly delete all windows except the
* current one. The current one will go away
* automatically when the ex_qall() function exits.
*/
(*gui->destroygw)(win->gw, False);
win = didorig ? orig : NULL;
}
else
{
didorig = True;
}
}
return result;
}
RESULT ex_xit(xinf)
EXINFO *xinf;
{
BUFFER buf; /* the buffer to be saved */
MARKBUF top, bottom;
STATE *state;
BUFFER b; /* other buffers */
static long morechgs; /* change counter at last "more files" warning */
static BUFFER morebuf; /* buffer which morechgs value refers to */
assert(xinf->command == EX_CLOSE || xinf->command == EX_QUIT
|| xinf->command == EX_XIT || xinf->command == EX_WQUIT);
/* Save the buffer, if :wquit or modified and :xit */
buf = markbuffer(xinf->window->cursor);
if (xinf->command == EX_WQUIT ||
(o_modified(buf) && xinf->command == EX_XIT))
{
/* Write to named file or the buffer's original file.
* If can't write, then fail.
*/
if (xinf->nfiles == 1
? !bufwrite(marktmp(top, buf, 0), marktmp(bottom, buf, o_bufchars(buf)), xinf->file[0], xinf->bang)
: !bufsave(buf, xinf->bang, True))
{
/* an error message has already been output */
return RESULT_ERROR;
}
}
/* if :q on a modified buffer, and no other window is showing this
* buffer, then either (without !) complain or (with !) turn off the
* modified flag.
*/
if (xinf->command == EX_QUIT
&& o_modified(buf)
&& winofbuf(NULL, buf) == xinf->window
&& winofbuf(xinf->window, buf) == NULL)
{
if (xinf->bang)
{
o_modified(buf) = False;
}
else
{
msg(MSG_ERROR, "[S]$1 modified, not saved", o_bufname(buf));
return RESULT_ERROR;
}
}
/* If this is the last window, then make sure *ALL* user buffers
* have been saved. Exception: If :close! and this session isn't
* temporary, then we don't need to check buffers.
*/
if ((morebuf != markbuffer(xinf->window->cursor) || morebuf->changes != morechgs || xinf->command == EX_CLOSE)
&& !(xinf->command == EX_CLOSE && xinf->bang && o_tempsession)
&& winofbuf(NULL, NULL) == xinf->window && !winofbuf(xinf->window, NULL))
{
/* remember some stuff which should prevent us from warning
* the user more than once.
*/
morebuf = markbuffer(xinf->window->cursor);
morechgs = morebuf->changes;
/* check all buffers */
for (b = elvis_buffers; b; b = buflist(b))
{
if (!o_internal(b) && o_modified(b)
&& (xinf->command == EX_CLOSE || b != buf))
{
/* We've found a modified, unsaved user buffer.
* If the command is :q! then we want to
* discard all buffers; otherwise we want to
* warn the user that other buffers need to
* be checked.
*/
if (xinf->command == EX_QUIT && xinf->bang)
o_modified(b) = False;
else
{
msg(MSG_ERROR, "check other buffers");
return RESULT_ERROR;
}
}
}
/* also check for more files to edit */
if (arglist && (argnext < 0 || arglist[argnext])
&& (xinf->command != EX_QUIT || !xinf->bang))
{
msg(MSG_WARNING, "more files");
return RESULT_ERROR;
}
}
/* If :close, then set the "retain" flag on the window's main buffer. */
if (xinf->command == EX_CLOSE)
{
o_retain(markbuffer(xinf->window->cursor)) = True;
}
/* Arrange for the state stack to pop everything. This will cause
* the window to be closed, eventually.
*/
for (state = xinf->window->state; state; state = state->pop)
{
state->flags |= ELVIS_POP;
}
return RESULT_COMPLETE;
}
|