-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
executable file
·337 lines (322 loc) · 6.96 KB
/
main.c
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
/* $Id: main.c,v 1.9 2001/05/25 15:59:06 amura Exp $ */
/*
* Mainline
*/
/*
* $Log: main.c,v $
* Revision 1.9 2001/05/25 15:59:06 amura
* WIN32 version support AUTOSAVE feature
*
* Revision 1.8 2001/05/25 15:36:53 amura
* now buffers have only one mark (before windows have one mark)
*
* Revision 1.7 2000/12/14 18:12:14 amura
* use alloca() and more memory secure
*
* Revision 1.6 2000/09/21 17:28:31 amura
* replace macro _WIN32 to WIN32 for Cygwin
*
* Revision 1.5 2000/09/01 19:36:02 amura
* support KANJI filename on WIN32
*
* Revision 1.4 2000/07/25 15:06:18 amura
* handle Kanji filename for win32
*
* Revision 1.3 2000/07/18 12:51:25 amura
* cleaning code
*
* Revision 1.2 2000/06/27 01:49:44 amura
* import to CVS
*
* Revision 1.1 2000/06/01 05:34:17 amura
* Initial revision
*
*/
#include "config.h" /* 90.12.20 by S.Yoshida */
#include "def.h"
#ifndef NO_MACRO
#include "macro.h"
#endif
int thisflag; /* Flags, this command */
int lastflag; /* Flags, last command */
int curgoal; /* Goal column */
BUFFER *curbp; /* Current buffer */
WINDOW *curwp; /* Current window */
BUFFER *bheadp; /* BUFFER listhead */
WINDOW *wheadp = (WINDOW *)NULL; /* WINDOW listhead */
char pat[NPAT]; /* Pattern */
#ifndef NO_DPROMPT
extern char prompt[], *promptp; /* delayed prompting */
#endif
static VOID edinit();
#ifdef WIN32
VOID
Main(int argc, char**argv)
#else /* WIN32 */
main(argc, argv)
int argc;
char **argv;
#endif /* WIN32 */
{
#ifndef NO_STARTUP
char *startupfile();
#endif
#ifdef ADDOPT
int gotoline();
char *startupfunc = (char *)NULL;
int line = 0;
int fgoto = FALSE;
#ifndef NO_STARTUP
char *ngrcfile = (char *)NULL;
#endif
#endif
char *cp;
VOID vtinit(), makename(), eerase();
BUFFER *tmpbp; /* 91.02.17 by N.Yuasa */
BUFFER *findbuffer();
#ifdef KANJI
extern int global_kexpect;
#endif
#ifdef ADDFUNC /* 90.12.28 by S.Yoshida */
if (argc > 1 && argv[1][0] == '-') {
switch (argv[1][1]) {
case 'v':
printversion();
exit(GOOD);
case 'c':
printversion();
printoptions();
exit(GOOD);
case '-':
--argc;
argv++;
break;
#ifdef ADDOPT
#ifndef NO_STARTUP
case 'I':
if (argv[1][2])
ngrcfile = &argv[1][2];
else {
ngrcfile = argv[2];
--argc;
argv++;
}
--argc;
argv++;
break;
#endif /* NO_STARTUP */
case 'f':
if (argv[1][2])
startupfunc = &argv[1][2];
else {
startupfunc = argv[2];
--argc;
argv++;
}
--argc;
argv++;
break;
#endif /* ADDOPT */
#ifdef KANJI
case 'S':
global_kexpect = SJIS;
break;
case 'J':
global_kexpect = JIS;
break;
case 'E':
global_kexpect = EUC;
break;
case 'W':
global_kexpect = UTF8;
break;
#endif
default:
break;
}
}
#endif
#ifdef SYSINIT
SYSINIT; /* system dependent. */
#endif
vtinit(); /* Virtual terminal. */
#ifndef NO_DIR
dirinit(); /* Get current directory */
#endif
edinit(); /* Buffers, windows. */
#ifdef ADDOPT
# ifndef NO_STARTUP
ttykeymapinit(ngrcfile); /* Symbols, bindings. */
# else
ttykeymapinit(); /* Symbols, bindings. */
# endif
#else
ttykeymapinit(); /* Symbols, bindings. */
#endif
/* doing update() before reading files causes the error messages from
* the file I/O show up on the screen. (and also an extra display
* of the mode line if there are files specified on the command line.)
*/
update();
#ifndef NO_STARTUP /* User startup file. */
#ifdef ADDOPT
if ((cp = startupfile(ngrcfile, (char *)NULL)) != NULL)
#else
if ((cp = startupfile((char *)NULL)) != NULL)
#endif
(VOID) load(cp);
#endif /* NO_STARTUP */
while (--argc > 0) {
#ifdef ADDOPT
if ((!fgoto) && argv[1][0] == '+'){
line = atoi(&argv[1][1]);
++argv;
fgoto = TRUE;
continue;
}
#endif /* ADDOPT */
#if defined(KANJI)&&(defined(MSDOS)||defined(HUMAN68K)||defined(WIN32))
{
char argve[NFILEN];
strncpy(argve, *++argv, NFILEN);
argve[NFILEN-1] = 0;
bufstoe(argve, strlen(argve) + 1);
cp = adjustname(argve);
}
#else
cp = adjustname(*++argv);
#endif /* KANJI and (MSDOS or HUMAN68K or WIN32) */
#ifndef NO_DIRED /* 91.01.16 by S.Yoshida */
if (ffisdir(cp)) {
eargset(cp);
(VOID) dired(0, 1);
#ifdef ADDOPT /* 92.03.16 by Gen KUROKI */
if (fgoto) {
gotoline(1,line);
fgoto = FALSE;
}
#endif /* ADDOPT */
continue;
}
#endif /* NO_DIRED */
if ((tmpbp = findbuffer(cp)) == NULL) break; /* 91.02.17 by N.Yuasa */
else curbp = tmpbp;
(VOID) showbuffer(curbp, curwp, 0);
(VOID) readin(cp);
#ifdef READONLY /* 91.01.16 by S.Yoshida */
if (fchkreadonly(curbp->b_fname)) {
/* If no write permission, */
curbp->b_flag |= BFRONLY; /* mark as read-only. */
ewprintf("File is write protected");
}
#ifdef ADDOPT /* 92.03.16 by Gen KUROKI */
if (fgoto) {
gotoline(1,line);
fgoto = FALSE;
}
#endif /* ADDOPT */
}
#endif /* READONLY */
thisflag = 0; /* Fake last flags. */
#ifdef ADDOPT
if (startupfunc) {
extern PF name_function pro((char *));
PF fn;
fn = name_function(startupfunc);
if (fn) {
(*fn)(FFRAND, 1);
}
}
#endif /* ADDOPT */
for(;;) {
#ifdef C_ALLOCA
(void)alloca(0); /* for garbage correction */
#endif
#ifndef NO_DPROMPT
*(promptp = prompt) = '\0';
if(epresf == KPROMPT) eerase();
#endif
update();
lastflag = thisflag;
thisflag = 0;
switch(doin()) {
case TRUE: break;
case ABORT:
ewprintf("Quit"); /* and fall through */
case FALSE:
default:
ttbeep();
#ifdef KANJI
kgetkeyflush();
#endif
#ifndef NO_MACRO
macrodef = FALSE;
#endif
}
}
#ifndef WIN32
return 0;
#endif
}
/*
* Initialize default buffer and window.
*/
static VOID
edinit() {
register BUFFER *bp;
register WINDOW *wp;
bheadp = NULL;
bp = bfind("*scratch*", TRUE); /* Text buffer. */
wp = (WINDOW *)malloc(sizeof(WINDOW)); /* Initial window. */
if (bp==NULL || wp==NULL) panic("edinit");
curbp = bp; /* Current ones. */
wheadp = wp;
curwp = wp;
wp->w_wndp = NULL; /* Initialize window. */
wp->w_bufp = bp;
bp->b_nwnd = 1; /* Displayed. */
wp->w_linep = wp->w_dotp = bp->b_linep;
wp->w_lines = 0;
wp->w_doto = 0;
bp->b_markp = NULL;
bp->b_marko = 0;
wp->w_toprow = 0;
wp->w_ntrows = nrow-2; /* 2 = mode, echo. */
wp->w_force = 0;
wp->w_flag = WFMODE|WFHARD; /* Full. */
}
/*
* Quit command. If an argument, always
* quit. Otherwise confirm if a buffer has been
* changed and not written out. Normally bound
* to "C-X C-C".
*/
/*ARGSUSED*/
quit(f, n)
{
register int s;
VOID vttidy();
if ((s = anycb(FALSE)) == ABORT) return ABORT;
if (s == FALSE
|| eyesno("Some modified buffers exist, really exit") == TRUE) {
vttidy();
#ifndef NO_DIR
dirend();
#endif
#ifdef SYSCLEANUP
SYSCLEANUP;
#endif
exit(GOOD);
}
return TRUE;
}
/*
* User abort. Should be called by any input routine that sees a C-g
* to abort whatever C-g is aborting these days. Currently does
* nothing.
*/
/*ARGSUSED*/
ctrlg(f, n)
{
return ABORT;
}