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
|
/* $Header: /nw/tony/src/stevie/src/RCS/param.c,v 1.10 89/08/02 10:59:10 tony Exp $
*
* Code to handle user-settable parameters. This is all pretty much table-
* driven. To add a new parameter, put it in the params array, and add a
* macro for it in param.h. If it's a numeric parameter, add any necessary
* bounds checks to doset(). String parameters aren't currently supported.
*/
#include "stevie.h"
extern long CursorSize;
struct param params[] = {
{ "tabstop", "ts", 4, P_NUM },
{ "scroll", "scroll", 12, P_NUM },
{ "report", "report", 5, P_NUM },
{ "lines", "lines", 25, P_NUM },
{ "vbell", "vb", TRUE, P_BOOL },
{ "showmatch", "sm", FALSE, P_BOOL },
{ "wrapscan", "ws", TRUE, P_BOOL },
{ "errorbells", "eb", FALSE, P_BOOL },
{ "showmode", "mo", FALSE, P_BOOL },
{ "backup", "bk", FALSE, P_BOOL },
{ "return", "cr", TRUE, P_BOOL },
{ "list", "list", FALSE, P_BOOL },
{ "ignorecase", "ic", FALSE, P_BOOL },
{ "autoindent", "ai", FALSE, P_BOOL },
{ "number", "nu", FALSE, P_BOOL },
{ "modelines", "ml", FALSE, P_BOOL },
{ "tildeop", "to", FALSE, P_BOOL },
{ "terse", "terse", FALSE, P_BOOL },
{ "cursorsize", "cs", 25, P_NUM },
{ "highlightsearch", "hs", TRUE, P_BOOL },
{ "columns", "co", 80, P_NUM },
{ "hardtabs", "ht", FALSE, P_BOOL },
{ "shiftwidth", "sw", 4, P_NUM },
{ "", "", 0, 0, } /* end marker */
};
static void showparms();
void wchangescreen();
void
doset(arg)
char *arg; /* parameter string */
{
register int i;
register char *s;
bool_t did_lines = FALSE;
bool_t state = TRUE; /* new state of boolean parms. */
if (arg == NULL) {
showparms(FALSE);
return;
}
if (strncmp(arg, "all", 3) == 0) {
showparms(TRUE);
return;
}
if (strncmp(arg, "no", 2) == 0) {
state = FALSE;
arg += 2;
}
for (i=0; params[i].fullname[0] != NUL ;i++) {
s = params[i].fullname;
if (strncmp(arg, s, strlen(s)) == 0) /* matched full name */
break;
s = params[i].shortname;
if (strncmp(arg, s, strlen(s)) == 0) /* matched short name */
break;
}
if (params[i].fullname[0] != NUL) { /* found a match */
if (params[i].flags & P_NUM) {
did_lines = ((i == P_LI) || (i == P_CO));
if (arg[strlen(s)] != '=' || state == FALSE)
emsg("Invalid set of numeric parameter");
else {
params[i].value = atoi(arg+strlen(s)+1);
params[i].flags |= P_CHANGED;
}
} else /* boolean */ {
if (arg[strlen(s)] == '=')
emsg("Invalid set of boolean parameter");
else {
params[i].value = state;
params[i].flags |= P_CHANGED;
}
}
} else
emsg("Unrecognized 'set' option");
/*
* Update the screen in case we changed something like "tabstop"
* or "list" that will change its appearance.
*/
updatescreen();
CursorSize = P(P_CS);
VisibleCursor();
if (did_lines) {
Rows = P(P_LI);
Columns = P(P_CO);
screenalloc(); /* allocate new screen buffers */
screenclear();
(void)wchangescreen(Rows, Columns);
updatescreen();
}
/*
* Check the bounds for numeric parameters here
*/
if (P(P_TS) <= 0 || P(P_TS) > 32) {
emsg("Invalid tab size specified");
P(P_TS) = 8;
return;
}
if (P(P_SS) <= 0 || P(P_SS) > Rows) {
emsg("Invalid scroll size specified");
P(P_SS) = 12;
return;
}
#ifndef TILDEOP
if (P(P_TO)) {
emsg("Tilde-operator not enabled");
P(P_TO) = FALSE;
return;
}
#endif
/*
* Check for another argument, and call doset() recursively, if
* found. If any argument results in an error, no further
* parameters are processed.
*/
while (*arg != ' ' && *arg != '\t') { /* skip to next white space */
if (*arg == NUL)
return; /* end of parameter list */
arg++;
}
while (*arg == ' ' || *arg == '\t') /* skip to next non-white */
arg++;
if (*arg)
doset(arg); /* recurse on next parameter */
}
static void
showparms(all)
bool_t all; /* show ALL parameters */
{
register struct param *p;
char buf[64];
gotocmd(TRUE, 0);
outstr("Parameters:\r\n");
for (p = ¶ms[0]; p->fullname[0] != NUL ;p++) {
if (!all && ((p->flags & P_CHANGED) == 0))
continue;
if (p->flags & P_BOOL)
sprintf(buf, "\t%s%s\r\n",
(p->value ? "" : "no"), p->fullname);
else
sprintf(buf, "\t%s=%d\r\n", p->fullname, p->value);
outstr(buf);
}
wait_return();
}
|