finger office address less Berkeley-centric
[unix-history] / usr / src / old / more / more.c
CommitLineData
8b7ec80f 1#ifndef lint
d3e7b534 2static char *sccsid = "@(#)more.c 4.22 (Berkeley) 85/02/21";
8b7ec80f 3#endif
35bd36fc 4
ffa58356
ES
5/*
6** more.c - General purpose tty output filter and file perusal program
7**
8** by Eric Shienbrood, UC Berkeley
35bd36fc
BJ
9**
10** modified by Geoff Peck, UCB to add underlining, single spacing
11** modified by John Foderaro, UCB to add -c and MORE environment variable
ffa58356
ES
12*/
13
ffa58356 14#include <stdio.h>
4a56d647 15#include <sys/types.h>
ffa58356
ES
16#include <ctype.h>
17#include <signal.h>
18#include <errno.h>
19#include <sgtty.h>
20#include <setjmp.h>
ffa58356 21#include <sys/stat.h>
ffa58356 22
8b7ec80f
SL
23#define HELPFILE "/usr/lib/more.help"
24#define VI "/usr/ucb/vi"
ffa58356
ES
25
26#define Fopen(s,m) (Currline = 0,file_pos=0,fopen(s,m))
27#define Ftell(f) file_pos
28#define Fseek(f,off) (file_pos=off,fseek(f,off,0))
29#define Getc(f) (++file_pos, getc(f))
30#define Ungetc(c,f) (--file_pos, ungetc(c,f))
31
ffa58356
ES
32#define MBIT CBREAK
33#define stty(fd,argp) ioctl(fd,TIOCSETN,argp)
ffa58356
ES
34
35#define TBUFSIZ 1024
36#define LINSIZ 256
37#define ctrl(letter) ('letter' & 077)
38#define RUBOUT '\177'
39#define ESC '\033'
40#define QUIT '\034'
41
d730d1dc 42struct sgttyb otty, savetty;
ffa58356
ES
43long file_pos, file_size;
44int fnum, no_intty, no_tty, slow_tty;
45int dum_opt, dlines, onquit(), end_it();
ffa58356 46int onsusp();
ffa58356
ES
47int nscroll = 11; /* Number of lines scrolled by 'd' */
48int fold_opt = 1; /* Fold long lines */
49int stop_opt = 1; /* Stop after form feeds */
35bd36fc
BJ
50int ssp_opt = 0; /* Suppress white space */
51int ul_opt = 1; /* Underline as best we can */
ffa58356
ES
52int promptlen;
53int Currline; /* Line we are currently at */
54int startup = 1;
55int firstf = 1;
56int notell = 1;
4a56d647
CL
57int docrterase = 0;
58int docrtkill = 0;
ffa58356
ES
59int bad_so; /* True if overwriting does not turn off standout */
60int inwait, Pause, errors;
61int within; /* true if we are within a file,
62 false if we are between files */
35bd36fc 63int hard, dumb, noscroll, hardtabs, clreol;
ffa58356
ES
64int catch_susp; /* We should catch the SIGTSTP signal */
65char **fnames; /* The list of file names */
66int nfiles; /* Number of files left to process */
67char *shell; /* The name of the shell to use */
68int shellp; /* A previous shell command exists */
69char ch;
70jmp_buf restore;
ffa58356
ES
71char Line[LINSIZ]; /* Line buffer */
72int Lpp = 24; /* lines per page */
73char *Clear; /* clear screen */
74char *eraseln; /* erase line */
75char *Senter, *Sexit;/* enter and exit standout mode */
35bd36fc
BJ
76char *ULenter, *ULexit; /* enter and exit underline mode */
77char *chUL; /* underline character */
78char *chBS; /* backspace character */
38ccf597
BJ
79char *Home; /* go to home */
80char *cursorm; /* cursor movement */
81char cursorhome[40]; /* contains cursor movement to home */
35bd36fc 82char *EodClr; /* clear rest of screen */
ffa58356
ES
83char *tgetstr();
84int Mcol = 80; /* number of columns */
85int Wrap = 1; /* set if automargins */
2c880657
JK
86int soglitch; /* terminal has standout mode glitch */
87int ulglitch; /* terminal has underline mode glitch */
88int pstate = 0; /* current UL state */
ffa58356 89long fseek();
38ccf597 90char *getenv();
ffa58356
ES
91struct {
92 long chrctr, line;
93} context, screen_start;
94extern char PC; /* pad character */
95extern short ospeed;
96
97
98main(argc, argv)
99int argc;
100char *argv[];
101{
102 register FILE *f;
103 register char *s;
104 register char *p;
105 register char ch;
106 register int left;
d730d1dc 107 int prnames = 0;
ffa58356
ES
108 int initopt = 0;
109 int srchopt = 0;
110 int clearit = 0;
111 int initline;
112 char initbuf[80];
113 FILE *checkf();
114
115 nfiles = argc;
116 fnames = argv;
117 initterm ();
88cdaae7
RC
118 nscroll = Lpp/2 - 1;
119 if (nscroll <= 0)
120 nscroll = 1;
38ccf597 121 if(s = getenv("MORE")) argscan(s);
ffa58356
ES
122 while (--nfiles > 0) {
123 if ((ch = (*++fnames)[0]) == '-') {
38ccf597 124 argscan(*fnames+1);
ffa58356
ES
125 }
126 else if (ch == '+') {
127 s = *fnames;
128 if (*++s == '/') {
129 srchopt++;
130 for (++s, p = initbuf; p < initbuf + 79 && *s != '\0';)
131 *p++ = *s++;
132 *p = '\0';
133 }
134 else {
135 initopt++;
136 for (initline = 0; *s != '\0'; s++)
137 if (isdigit (*s))
138 initline = initline*10 + *s -'0';
139 --initline;
140 }
141 }
142 else break;
143 }
35bd36fc 144 /* allow clreol only if Home and eraseln and EodClr strings are
38ccf597
BJ
145 * defined, and in that case, make sure we are in noscroll mode
146 */
147 if(clreol)
148 {
35bd36fc
BJ
149 if ((*Home == '\0') || (*eraseln == '\0') || (*EodClr == '\0'))
150 clreol = 0;
38ccf597
BJ
151 else noscroll = 1;
152 }
153
ffa58356
ES
154 if (dlines == 0)
155 dlines = Lpp - (noscroll ? 1 : 2);
156 left = dlines;
157 if (nfiles > 1)
158 prnames++;
159 if (!no_intty && nfiles == 0) {
160 fputs("Usage: ",stderr);
161 fputs(argv[0],stderr);
162 fputs(" [-dfln] [+linenum | +/pattern] name1 name2 ...\n",stderr);
163 exit(1);
164 }
165 else
166 f = stdin;
167 if (!no_tty) {
168 signal(SIGQUIT, onquit);
169 signal(SIGINT, end_it);
ffa58356
ES
170 if (signal (SIGTSTP, SIG_IGN) == SIG_DFL) {
171 signal(SIGTSTP, onsusp);
172 catch_susp++;
173 }
d730d1dc 174 stty (fileno(stderr), &otty);
ffa58356
ES
175 }
176 if (no_intty) {
177 if (no_tty)
178 copy_file (stdin);
179 else {
180 if ((ch = Getc (f)) == '\f')
35bd36fc 181 doclear();
ffa58356
ES
182 else {
183 Ungetc (ch, f);
35bd36fc
BJ
184 if (noscroll && (ch != EOF)) {
185 if (clreol)
186 home ();
187 else
188 doclear ();
38ccf597 189 }
ffa58356
ES
190 }
191 if (srchopt)
38ccf597 192 {
ffa58356 193 search (initbuf, stdin, 1);
35bd36fc
BJ
194 if (noscroll)
195 left--;
38ccf597 196 }
ffa58356
ES
197 else if (initopt)
198 skiplns (initline, stdin);
199 screen (stdin, left);
200 }
201 no_intty = 0;
202 prnames++;
203 firstf = 0;
204 }
205
206 while (fnum < nfiles) {
207 if ((f = checkf (fnames[fnum], &clearit)) != NULL) {
208 context.line = context.chrctr = 0;
209 Currline = 0;
210 if (firstf) setjmp (restore);
211 if (firstf) {
212 firstf = 0;
213 if (srchopt)
38ccf597 214 {
ffa58356 215 search (initbuf, f, 1);
35bd36fc
BJ
216 if (noscroll)
217 left--;
38ccf597 218 }
ffa58356
ES
219 else if (initopt)
220 skiplns (initline, f);
221 }
222 else if (fnum < nfiles && !no_tty) {
223 setjmp (restore);
224 left = command (fnames[fnum], f);
225 }
226 if (left != 0) {
35bd36fc
BJ
227 if ((noscroll || clearit) && (file_size != 0x7fffffffffffffffL))
228 if (clreol)
229 home ();
230 else
231 doclear ();
ffa58356
ES
232 if (prnames) {
233 if (bad_so)
234 erase (0);
35bd36fc
BJ
235 if (clreol)
236 cleareol ();
ffa58356
ES
237 pr("::::::::::::::");
238 if (promptlen > 14)
239 erase (14);
38ccf597
BJ
240 printf ("\n");
241 if(clreol) cleareol();
242 printf("%s\n", fnames[fnum]);
243 if(clreol) cleareol();
244 printf("::::::::::::::\n", fnames[fnum]);
ffa58356
ES
245 if (left > Lpp - 4)
246 left = Lpp - 4;
247 }
248 if (no_tty)
249 copy_file (f);
250 else {
251 within++;
252 screen(f, left);
253 within = 0;
254 }
255 }
256 setjmp (restore);
257 fflush(stdout);
258 fclose(f);
259 screen_start.line = screen_start.chrctr = 0L;
260 context.line = context.chrctr = 0L;
261 }
262 fnum++;
263 firstf = 0;
264 }
265 reset_tty ();
266 exit(0);
267}
268
38ccf597
BJ
269argscan(s)
270char *s;
271{
718f6e88
KL
272 for (dlines = 0; *s != '\0'; s++)
273 {
274 switch (*s)
275 {
276 case '0': case '1': case '2':
277 case '3': case '4': case '5':
278 case '6': case '7': case '8':
279 case '9':
280 dlines = dlines*10 + *s - '0';
281 break;
282 case 'd':
283 dum_opt = 1;
284 break;
285 case 'l':
286 stop_opt = 0;
287 break;
288 case 'f':
289 fold_opt = 0;
290 break;
291 case 'p':
292 noscroll++;
293 break;
294 case 'c':
295 clreol++;
296 break;
297 case 's':
298 ssp_opt = 1;
299 break;
300 case 'u':
301 ul_opt = 0;
302 break;
303 }
304 }
38ccf597
BJ
305}
306
307
ffa58356
ES
308/*
309** Check whether the file named by fs is an ASCII file which the user may
310** access. If it is, return the opened file. Otherwise return NULL.
311*/
312
313FILE *
314checkf (fs, clearfirst)
315register char *fs;
316int *clearfirst;
317{
318 struct stat stbuf;
319 register FILE *f;
320 char c;
321
322 if (stat (fs, &stbuf) == -1) {
323 fflush(stdout);
35bd36fc
BJ
324 if (clreol)
325 cleareol ();
ffa58356
ES
326 perror(fs);
327 return (NULL);
328 }
329 if ((stbuf.st_mode & S_IFMT) == S_IFDIR) {
330 printf("\n*** %s: directory ***\n\n", fs);
331 return (NULL);
332 }
333 if ((f=Fopen(fs, "r")) == NULL) {
334 fflush(stdout);
335 perror(fs);
336 return (NULL);
337 }
338 c = Getc(f);
339
340 /* Try to see whether it is an ASCII file */
341
342 switch ((c | *f->_ptr << 8) & 0177777) {
343 case 0405:
344 case 0407:
345 case 0410:
346 case 0411:
347 case 0413:
348 case 0177545:
349 printf("\n******** %s: Not a text file ********\n\n", fs);
350 fclose (f);
351 return (NULL);
352 default:
353 break;
354 }
355 if (c == '\f')
356 *clearfirst = 1;
357 else {
358 *clearfirst = 0;
359 Ungetc (c, f);
360 }
361 if ((file_size = stbuf.st_size) == 0)
362 file_size = 0x7fffffffffffffffL;
363 return (f);
364}
365
366/*
367** A real function, for the tputs routine in termlib
368*/
369
370putch (ch)
371char ch;
372{
373 putchar (ch);
374}
375
376/*
377** Print out the contents of the file f, one screenful at a time.
378*/
379
380#define STOP -10
381
382screen (f, num_lines)
383register FILE *f;
384register int num_lines;
385{
386 register int c;
387 register int nchars;
35bd36fc
BJ
388 int length; /* length of current line */
389 static int prev_len = 1; /* length of previous line */
ffa58356
ES
390
391 for (;;) {
392 while (num_lines > 0 && !Pause) {
393 if ((nchars = getline (f, &length)) == EOF)
38ccf597 394 {
35bd36fc
BJ
395 if (clreol)
396 clreos();
ffa58356 397 return;
38ccf597 398 }
35bd36fc
BJ
399 if (ssp_opt && length == 0 && prev_len == 0)
400 continue;
401 prev_len = length;
ffa58356
ES
402 if (bad_so || (Senter && *Senter == ' ') && promptlen > 0)
403 erase (0);
35bd36fc
BJ
404 /* must clear before drawing line since tabs on some terminals
405 * do not erase what they tab over.
406 */
407 if (clreol)
408 cleareol ();
ffa58356
ES
409 prbuf (Line, length);
410 if (nchars < promptlen)
411 erase (nchars); /* erase () sets promptlen to 0 */
412 else promptlen = 0;
35bd36fc
BJ
413 /* is this needed?
414 * if (clreol)
415 * cleareol(); /* must clear again in case we wrapped *
416 */
ffa58356 417 if (nchars < Mcol || !fold_opt)
2c880657 418 prbuf("\n", 1); /* will turn off UL if necessary */
ffa58356
ES
419 if (nchars == STOP)
420 break;
421 num_lines--;
422 }
2c880657
JK
423 if (pstate) {
424 tputs(ULexit, 1, putch);
425 pstate = 0;
426 }
ffa58356
ES
427 fflush(stdout);
428 if ((c = Getc(f)) == EOF)
38ccf597 429 {
35bd36fc
BJ
430 if (clreol)
431 clreos ();
ffa58356 432 return;
38ccf597
BJ
433 }
434
35bd36fc
BJ
435 if (Pause && clreol)
436 clreos ();
ffa58356
ES
437 Ungetc (c, f);
438 setjmp (restore);
439 Pause = 0; startup = 0;
440 if ((num_lines = command (NULL, f)) == 0)
441 return;
442 if (hard && promptlen > 0)
443 erase (0);
a97c843b 444 if (noscroll && num_lines >= dlines)
d730d1dc 445 {
35bd36fc
BJ
446 if (clreol)
447 home();
448 else
449 doclear ();
38ccf597 450 }
ffa58356
ES
451 screen_start.line = Currline;
452 screen_start.chrctr = Ftell (f);
453 }
454}
455
456/*
457** Come here if a quit signal is received
458*/
459
460onquit()
461{
462 signal(SIGQUIT, SIG_IGN);
463 if (!inwait) {
464 putchar ('\n');
465 if (!startup) {
466 signal(SIGQUIT, onquit);
467 longjmp (restore, 1);
468 }
469 else
470 Pause++;
471 }
472 else if (!dum_opt && notell) {
473 write (2, "[Use q or Q to quit]", 20);
474 promptlen += 20;
475 notell = 0;
476 }
477 signal(SIGQUIT, onquit);
478}
479
480/*
481** Clean up terminal state and exit. Also come here if interrupt signal received
482*/
483
484end_it ()
485{
486
487 reset_tty ();
35bd36fc
BJ
488 if (clreol) {
489 putchar ('\r');
490 clreos ();
491 fflush (stdout);
492 }
38ccf597 493 else if (!clreol && (promptlen > 0)) {
ffa58356
ES
494 kill_line ();
495 fflush (stdout);
496 }
497 else
498 write (2, "\n", 1);
499 _exit(0);
500}
501
502copy_file(f)
503register FILE *f;
504{
505 register int c;
506
507 while ((c = getc(f)) != EOF)
508 putchar(c);
509}
510
511/* Simplified printf function */
512
513printf (fmt, args)
514register char *fmt;
515int args;
516{
517 register int *argp;
518 register char ch;
519 register int ccount;
520
521 ccount = 0;
522 argp = &args;
523 while (*fmt) {
524 while ((ch = *fmt++) != '%') {
525 if (ch == '\0')
526 return (ccount);
527 ccount++;
528 putchar (ch);
529 }
530 switch (*fmt++) {
531 case 'd':
532 ccount += printd (*argp);
533 break;
534 case 's':
535 ccount += pr ((char *)*argp);
536 break;
537 case '%':
538 ccount++;
539 argp--;
540 putchar ('%');
541 break;
542 case '0':
543 return (ccount);
544 default:
545 break;
546 }
547 ++argp;
548 }
549 return (ccount);
550
551}
552
553/*
554** Print an integer as a string of decimal digits,
555** returning the length of the print representation.
556*/
557
558printd (n)
559int n;
560{
561 int a, nchars;
562
563 if (a = n/10)
564 nchars = 1 + printd(a);
565 else
566 nchars = 1;
567 putchar (n % 10 + '0');
568 return (nchars);
569}
570
571/* Put the print representation of an integer into a string */
572static char *sptr;
573
574scanstr (n, str)
575int n;
576char *str;
577{
578 sptr = str;
718f6e88 579 Sprintf (n);
ffa58356
ES
580 *sptr = '\0';
581}
582
718f6e88 583Sprintf (n)
ffa58356
ES
584{
585 int a;
586
587 if (a = n/10)
718f6e88 588 Sprintf (a);
ffa58356
ES
589 *sptr++ = n % 10 + '0';
590}
591
592static char bell = ctrl(G);
593
594strlen (s)
595char *s;
596{
597 register char *p;
598
599 p = s;
600 while (*p++)
601 ;
602 return (p - s - 1);
603}
604
605/* See whether the last component of the path name "path" is equal to the
606** string "string"
607*/
608
609tailequ (path, string)
610char *path;
611register char *string;
612{
613 register char *tail;
614
615 tail = path + strlen(path);
616 while (tail >= path)
617 if (*(--tail) == '/')
618 break;
619 ++tail;
620 while (*tail++ == *string++)
621 if (*tail == '\0')
622 return(1);
623 return(0);
624}
625
626prompt (filename)
627char *filename;
628{
35bd36fc
BJ
629 if (clreol)
630 cleareol ();
38ccf597 631 else if (promptlen > 0)
ffa58356
ES
632 kill_line ();
633 if (!hard) {
634 promptlen = 8;
2c880657 635 if (Senter && Sexit) {
ffa58356 636 tputs (Senter, 1, putch);
2c880657
JK
637 promptlen += (2 * soglitch);
638 }
35bd36fc
BJ
639 if (clreol)
640 cleareol ();
ffa58356
ES
641 pr("--More--");
642 if (filename != NULL) {
643 promptlen += printf ("(Next file: %s)", filename);
644 }
645 else if (!no_intty) {
646 promptlen += printf ("(%d%%)", (int)((file_pos * 100) / file_size));
647 }
648 if (dum_opt) {
2c880657 649 promptlen += pr("[Press space to continue, 'q' to quit.]");
ffa58356
ES
650 }
651 if (Senter && Sexit)
652 tputs (Sexit, 1, putch);
35bd36fc
BJ
653 if (clreol)
654 clreos ();
ffa58356
ES
655 fflush(stdout);
656 }
657 else
658 write (2, &bell, 1);
659 inwait++;
660}
661
662/*
663** Get a logical line
664*/
665
666getline(f, length)
667register FILE *f;
668int *length;
669{
670 register int c;
671 register char *p;
672 register int column;
673 static int colflg;
674
675 p = Line;
676 column = 0;
677 c = Getc (f);
678 if (colflg && c == '\n') {
679 Currline++;
680 c = Getc (f);
681 }
682 while (p < &Line[LINSIZ - 1]) {
683 if (c == EOF) {
684 if (p > Line) {
685 *p = '\0';
686 *length = p - Line;
687 return (column);
688 }
689 *length = p - Line;
690 return (EOF);
691 }
692 if (c == '\n') {
693 Currline++;
694 break;
695 }
696 *p++ = c;
697 if (c == '\t')
698 if (hardtabs && column < promptlen && !hard) {
699 if (eraseln && !dumb) {
700 column = 1 + (column | 7);
701 tputs (eraseln, 1, putch);
702 promptlen = 0;
703 }
704 else {
705 for (--p; column & 7 && p < &Line[LINSIZ - 1]; column++) {
706 *p++ = ' ';
707 }
708 if (column >= promptlen) promptlen = 0;
709 }
710 }
711 else
712 column = 1 + (column | 7);
d1b174c2 713 else if (c == '\b' && column > 0)
ffa58356
ES
714 column--;
715 else if (c == '\r')
716 column = 0;
717 else if (c == '\f' && stop_opt) {
718 p[-1] = '^';
719 *p++ = 'L';
720 column += 2;
721 Pause++;
722 }
723 else if (c == EOF) {
724 *length = p - Line;
725 return (column);
726 }
727 else if (c >= ' ' && c != RUBOUT)
728 column++;
729 if (column >= Mcol && fold_opt) break;
730 c = Getc (f);
731 }
732 if (column >= Mcol && Mcol > 0) {
733 if (!Wrap) {
734 *p++ = '\n';
735 }
736 }
737 colflg = column == Mcol && fold_opt;
738 *length = p - Line;
739 *p = 0;
740 return (column);
741}
742
743/*
744** Erase the rest of the prompt, assuming we are starting at column col.
745*/
746
747erase (col)
748register int col;
749{
750
751 if (promptlen == 0)
752 return;
753 if (hard) {
754 putchar ('\n');
755 }
756 else {
757 if (col == 0)
758 putchar ('\r');
759 if (!dumb && eraseln)
760 tputs (eraseln, 1, putch);
761 else
762 for (col = promptlen - col; col > 0; col--)
763 putchar (' ');
764 }
765 promptlen = 0;
766}
767
768/*
769** Erase the current line entirely
770*/
771
772kill_line ()
773{
774 erase (0);
775 if (!eraseln || dumb) putchar ('\r');
776}
777
38ccf597
BJ
778/*
779 * force clear to end of line
780 */
781cleareol()
782{
35bd36fc 783 tputs(eraseln, 1, putch);
38ccf597
BJ
784}
785
35bd36fc 786clreos()
38ccf597 787{
35bd36fc 788 tputs(EodClr, 1, putch);
38ccf597
BJ
789}
790
ffa58356
ES
791/*
792** Print string and return number of characters
793*/
794
795pr(s1)
796char *s1;
797{
798 register char *s;
799 register char c;
800
801 for (s = s1; c = *s++; )
802 putchar(c);
803 return (s - s1 - 1);
804}
805
806
807/* Print a buffer of n characters */
808
809prbuf (s, n)
810register char *s;
811register int n;
812{
2c880657 813 register char c; /* next output character */
35bd36fc 814 register int state; /* next output char's UL state */
2c880657 815#define wouldul(s,n) ((n) >= 2 && (((s)[0] == '_' && (s)[1] == '\b') || ((s)[1] == '\b' && (s)[2] == '_')))
35bd36fc
BJ
816
817 while (--n >= 0)
818 if (!ul_opt)
819 putchar (*s++);
820 else {
2c880657
JK
821 if (*s == ' ' && pstate == 0 && ulglitch && wouldul(s+1, n-1)) {
822 s++;
823 continue;
824 }
825 if (state = wouldul(s, n)) {
826 c = (*s == '_')? s[2] : *s ;
35bd36fc 827 n -= 2;
2c880657
JK
828 s += 3;
829 } else
35bd36fc 830 c = *s++;
2c880657
JK
831 if (state != pstate) {
832 if (c == ' ' && state == 0 && ulglitch && wouldul(s, n-1))
833 state = 1;
834 else
835 tputs(state ? ULenter : ULexit, 1, putch);
35bd36fc 836 }
2c880657
JK
837 if (c != ' ' || pstate == 0 || state != 0 || ulglitch == 0)
838 putchar(c);
35bd36fc
BJ
839 if (state && *chUL) {
840 pr(chBS);
841 tputs(chUL, 1, putch);
842 }
2c880657 843 pstate = state;
35bd36fc 844 }
ffa58356
ES
845}
846
847/*
848** Clear the screen
849*/
850
851doclear()
852{
853 if (Clear && !hard) {
854 tputs(Clear, 1, putch);
855
856 /* Put out carriage return so that system doesn't
857 ** get confused by escape sequences when expanding tabs
858 */
859 putchar ('\r');
860 promptlen = 0;
861 }
862}
863
38ccf597
BJ
864/*
865 * Go to home position
866 */
867home()
868{
869 tputs(Home,1,putch);
870}
871
ffa58356
ES
872static int lastcmd, lastarg, lastp;
873static int lastcolon;
874char shell_line[132];
875
876/*
877** Read a command and do it. A command consists of an optional integer
878** argument followed by the command character. Return the number of lines
879** to display in the next screenful. If there is nothing more to display
880** in the current file, zero is returned.
881*/
882
883command (filename, f)
884char *filename;
885register FILE *f;
886{
887 register int nlines;
888 register int retval;
889 register char c;
890 char colonch;
891 FILE *helpf;
892 int done;
893 char comchar, cmdbuf[80], *p;
894
895#define ret(val) retval=val;done++;break
896
897 done = 0;
898 if (!errors)
899 prompt (filename);
900 else
901 errors = 0;
902 if (MBIT == RAW && slow_tty) {
903 otty.sg_flags |= MBIT;
d730d1dc 904 stty(fileno(stderr), &otty);
ffa58356
ES
905 }
906 for (;;) {
907 nlines = number (&comchar);
908 lastp = colonch = 0;
909 if (comchar == '.') { /* Repeat last command */
910 lastp++;
911 comchar = lastcmd;
912 nlines = lastarg;
913 if (lastcmd == ':')
914 colonch = lastcolon;
915 }
916 lastcmd = comchar;
917 lastarg = nlines;
918 if (comchar == otty.sg_erase) {
919 kill_line ();
920 prompt (filename);
921 continue;
922 }
923 switch (comchar) {
924 case ':':
925 retval = colon (filename, colonch, nlines);
926 if (retval >= 0)
927 done++;
928 break;
929 case ' ':
930 case 'z':
931 if (nlines == 0) nlines = dlines;
932 else if (comchar == 'z') dlines = nlines;
933 ret (nlines);
934 case 'd':
935 case ctrl(D):
936 if (nlines != 0) nscroll = nlines;
937 ret (nscroll);
938 case RUBOUT:
939 case 'q':
940 case 'Q':
941 end_it ();
942 case 's':
943 case 'f':
944 if (nlines == 0) nlines++;
945 if (comchar == 'f')
946 nlines *= dlines;
947 putchar ('\r');
948 erase (0);
35bd36fc
BJ
949 printf ("\n");
950 if (clreol)
951 cleareol ();
952 printf ("...skipping %d line", nlines);
ffa58356 953 if (nlines > 1)
35bd36fc 954 pr ("s\n");
ffa58356 955 else
35bd36fc
BJ
956 pr ("\n");
957
958 if (clreol)
959 cleareol ();
960 pr ("\n");
961
ffa58356
ES
962 while (nlines > 0) {
963 while ((c = Getc (f)) != '\n')
964 if (c == EOF) {
965 retval = 0;
966 done++;
967 goto endsw;
968 }
969 Currline++;
970 nlines--;
971 }
972 ret (dlines);
973 case '\n':
974 if (nlines != 0)
975 dlines = nlines;
976 else
977 nlines = 1;
978 ret (nlines);
979 case '\f':
980 if (!no_intty) {
981 doclear ();
982 Fseek (f, screen_start.chrctr);
983 Currline = screen_start.line;
984 ret (dlines);
985 }
986 else {
987 write (2, &bell, 1);
988 break;
989 }
990 case '\'':
991 if (!no_intty) {
992 kill_line ();
993 pr ("\n***Back***\n\n");
994 Fseek (f, context.chrctr);
995 Currline = context.line;
996 ret (dlines);
997 }
998 else {
999 write (2, &bell, 1);
1000 break;
1001 }
1002 case '=':
1003 kill_line ();
1004 promptlen = printd (Currline);
1005 fflush (stdout);
1006 break;
1007 case 'n':
1008 lastp++;
1009 case '/':
1010 if (nlines == 0) nlines++;
1011 kill_line ();
1012 pr ("/");
1013 promptlen = 1;
1014 fflush (stdout);
1015 if (lastp) {
1016 write (2,"\r", 1);
1017 search (NULL, f, nlines); /* Use previous r.e. */
1018 }
1019 else {
1020 ttyin (cmdbuf, 78, '/');
1021 write (2, "\r", 1);
1022 search (cmdbuf, f, nlines);
1023 }
38ccf597 1024 ret (dlines-1);
ffa58356
ES
1025 case '!':
1026 do_shell (filename);
1027 break;
1028 case 'h':
1029 if ((helpf = fopen (HELPFILE, "r")) == NULL)
1030 error ("Can't open help file");
1031 if (noscroll) doclear ();
1032 copy_file (helpf);
1033 close (helpf);
1034 prompt (filename);
1035 break;
1036 case 'v': /* This case should go right before default */
1037 if (!no_intty) {
1038 kill_line ();
1039 cmdbuf[0] = '+';
1040 scanstr (Currline, &cmdbuf[1]);
1041 pr ("vi "); pr (cmdbuf); putchar (' '); pr (fnames[fnum]);
1042 execute (filename, VI, "vi", cmdbuf, fnames[fnum], 0);
1043 break;
1044 }
1045 default:
2c880657
JK
1046 if (dum_opt) {
1047 kill_line ();
1048 if (Senter && Sexit) {
1049 tputs (Senter, 1, putch);
1050 promptlen = pr ("[Press 'h' for instructions.]") + (2 * soglitch);
1051 tputs (Sexit, 1, putch);
1052 }
1053 else
1054 promptlen = pr ("[Press 'h' for instructions.]");
1055 fflush (stdout);
1056 }
1057 else
1058 write (2, &bell, 1);
ffa58356
ES
1059 break;
1060 }
1061 if (done) break;
1062 }
1063 putchar ('\r');
1064endsw:
1065 inwait = 0;
1066 notell++;
1067 if (MBIT == RAW && slow_tty) {
1068 otty.sg_flags &= ~MBIT;
d730d1dc 1069 stty(fileno(stderr), &otty);
ffa58356
ES
1070 }
1071 return (retval);
1072}
1073
1074char ch;
1075
1076/*
1077 * Execute a colon-prefixed command.
1078 * Returns <0 if not a command that should cause
1079 * more of the file to be printed.
1080 */
1081
1082colon (filename, cmd, nlines)
1083char *filename;
1084int cmd;
1085int nlines;
1086{
1087 if (cmd == 0)
1088 ch = readch ();
1089 else
1090 ch = cmd;
1091 lastcolon = ch;
1092 switch (ch) {
1093 case 'f':
1094 kill_line ();
1095 if (!no_intty)
1096 promptlen = printf ("\"%s\" line %d", fnames[fnum], Currline);
1097 else
1098 promptlen = printf ("[Not a file] line %d", Currline);
1099 fflush (stdout);
1100 return (-1);
1101 case 'n':
1102 if (nlines == 0) {
1103 if (fnum >= nfiles - 1)
1104 end_it ();
1105 nlines++;
1106 }
1107 putchar ('\r');
1108 erase (0);
1109 skipf (nlines);
1110 return (0);
1111 case 'p':
1112 if (no_intty) {
1113 write (2, &bell, 1);
1114 return (-1);
1115 }
1116 putchar ('\r');
1117 erase (0);
1118 if (nlines == 0)
1119 nlines++;
1120 skipf (-nlines);
1121 return (0);
1122 case '!':
1123 do_shell (filename);
1124 return (-1);
1125 case 'q':
1126 case 'Q':
1127 end_it ();
1128 default:
1129 write (2, &bell, 1);
1130 return (-1);
1131 }
1132}
1133
1134/*
1135** Read a decimal number from the terminal. Set cmd to the non-digit which
1136** terminates the number.
1137*/
1138
1139number(cmd)
1140char *cmd;
1141{
1142 register int i;
1143
1144 i = 0; ch = otty.sg_kill;
1145 for (;;) {
1146 ch = readch ();
1147 if (ch >= '0' && ch <= '9')
1148 i = i*10 + ch - '0';
1149 else if (ch == otty.sg_kill)
1150 i = 0;
1151 else {
1152 *cmd = ch;
1153 break;
1154 }
1155 }
1156 return (i);
1157}
1158
1159do_shell (filename)
1160char *filename;
1161{
1162 char cmdbuf[80];
1163
1164 kill_line ();
1165 pr ("!");
1166 fflush (stdout);
1167 promptlen = 1;
1168 if (lastp)
1169 pr (shell_line);
1170 else {
1171 ttyin (cmdbuf, 78, '!');
1172 if (expand (shell_line, cmdbuf)) {
1173 kill_line ();
1174 promptlen = printf ("!%s", shell_line);
1175 }
1176 }
1177 fflush (stdout);
1178 write (2, "\n", 1);
1179 promptlen = 0;
1180 shellp = 1;
1181 execute (filename, shell, shell, "-c", shell_line, 0);
1182}
1183
1184/*
1185** Search for nth ocurrence of regular expression contained in buf in the file
1186*/
1187
1188search (buf, file, n)
1189char buf[];
1190FILE *file;
1191register int n;
1192{
1193 long startline = Ftell (file);
1194 register long line1 = startline;
1195 register long line2 = startline;
1196 register long line3 = startline;
1197 register int lncount;
1198 int saveln, rv, re_exec();
1199 char *s, *re_comp();
1200
1201 context.line = saveln = Currline;
1202 context.chrctr = startline;
1203 lncount = 0;
1204 if ((s = re_comp (buf)) != 0)
1205 error (s);
1206 while (!feof (file)) {
1207 line3 = line2;
1208 line2 = line1;
1209 line1 = Ftell (file);
1210 rdline (file);
1211 lncount++;
1212 if ((rv = re_exec (Line)) == 1)
1213 if (--n == 0) {
1214 if (lncount > 3 || (lncount > 1 && no_intty))
38ccf597
BJ
1215 {
1216 pr ("\n");
35bd36fc
BJ
1217 if (clreol)
1218 cleareol ();
38ccf597
BJ
1219 pr("...skipping\n");
1220 }
ffa58356
ES
1221 if (!no_intty) {
1222 Currline -= (lncount >= 3 ? 3 : lncount);
1223 Fseek (file, line3);
35bd36fc
BJ
1224 if (noscroll)
1225 if (clreol) {
1226 home ();
1227 cleareol ();
d730d1dc 1228 }
35bd36fc
BJ
1229 else
1230 doclear ();
ffa58356
ES
1231 }
1232 else {
1233 kill_line ();
35bd36fc
BJ
1234 if (noscroll)
1235 if (clreol) {
d730d1dc 1236 home ();
35bd36fc 1237 cleareol ();
d730d1dc 1238 }
35bd36fc
BJ
1239 else
1240 doclear ();
ffa58356
ES
1241 pr (Line);
1242 putchar ('\n');
1243 }
1244 break;
1245 }
1246 else if (rv == -1)
1247 error ("Regular expression botch");
1248 }
1249 if (feof (file)) {
1250 if (!no_intty) {
ffa58356 1251 file->_flag &= ~_IOEOF; /* why doesn't fseek do this ??!!??! */
ffa58356
ES
1252 Currline = saveln;
1253 Fseek (file, startline);
1254 }
1255 else {
1256 pr ("\nPattern not found\n");
1257 end_it ();
1258 }
1259 error ("Pattern not found");
1260 }
1261}
1262
1263execute (filename, cmd, args)
1264char *filename;
1265char *cmd, *args;
1266{
1267 int id;
2c880657 1268 int n;
ffa58356
ES
1269
1270 fflush (stdout);
1271 reset_tty ();
2c880657 1272 for (n = 10; (id = fork ()) < 0 && n > 0; n--)
ffa58356
ES
1273 sleep (5);
1274 if (id == 0) {
2c880657
JK
1275 if (!isatty(0)) {
1276 close(0);
1277 open("/dev/tty", 0);
1278 }
ffa58356
ES
1279 execv (cmd, &args);
1280 write (2, "exec failed\n", 12);
1281 exit (1);
1282 }
2c880657
JK
1283 if (id > 0) {
1284 signal (SIGINT, SIG_IGN);
1285 signal (SIGQUIT, SIG_IGN);
1286 if (catch_susp)
1287 signal(SIGTSTP, SIG_DFL);
1288 while (wait(0) > 0);
1289 signal (SIGINT, end_it);
1290 signal (SIGQUIT, onquit);
1291 if (catch_susp)
1292 signal(SIGTSTP, onsusp);
1293 } else
1294 write(2, "can't fork\n", 11);
ffa58356
ES
1295 set_tty ();
1296 pr ("------------------------\n");
1297 prompt (filename);
1298}
1299/*
1300** Skip n lines in the file f
1301*/
1302
1303skiplns (n, f)
1304register int n;
1305register FILE *f;
1306{
1307 register char c;
1308
1309 while (n > 0) {
1310 while ((c = Getc (f)) != '\n')
1311 if (c == EOF)
1312 return;
1313 n--;
1314 Currline++;
1315 }
1316}
1317
1318/*
1319** Skip nskip files in the file list (from the command line). Nskip may be
1320** negative.
1321*/
1322
1323skipf (nskip)
1324register int nskip;
1325{
1326 if (nskip == 0) return;
1327 if (nskip > 0) {
1328 if (fnum + nskip > nfiles - 1)
1329 nskip = nfiles - fnum - 1;
1330 }
1331 else if (within)
1332 ++fnum;
1333 fnum += nskip;
1334 if (fnum < 0)
1335 fnum = 0;
35bd36fc 1336 pr ("\n...Skipping ");
38ccf597 1337 pr ("\n");
35bd36fc
BJ
1338 if (clreol)
1339 cleareol ();
38ccf597 1340 pr ("...Skipping ");
ffa58356
ES
1341 pr (nskip > 0 ? "to file " : "back to file ");
1342 pr (fnames[fnum]);
38ccf597 1343 pr ("\n");
35bd36fc
BJ
1344 if (clreol)
1345 cleareol ();
38ccf597 1346 pr ("\n");
ffa58356
ES
1347 --fnum;
1348}
1349
1350/*----------------------------- Terminal I/O -------------------------------*/
1351
1352initterm ()
1353{
1354 char buf[TBUFSIZ];
8cb6d801 1355 static char clearbuf[TBUFSIZ];
ffa58356 1356 char *clearptr, *padstr;
ffa58356 1357 int ldisc;
4a56d647 1358 int lmode;
54decef9 1359 char *term;
d730d1dc 1360 int tgrp;
d3e7b534 1361 struct winsize win;
ffa58356 1362
d730d1dc
CL
1363retry:
1364 if (!(no_tty = gtty(fileno(stdout), &otty))) {
4a56d647
CL
1365 if (ioctl(fileno(stdout), TIOCLGET, &lmode) < 0) {
1366 perror("TIOCLGET");
1367 exit(1);
1368 }
1369 docrterase = ((lmode & LCRTERA) != 0);
1370 docrtkill = ((lmode & LCRTKIL) != 0);
d730d1dc 1371 /*
4a56d647
CL
1372 * Wait until we're in the foreground before we save the
1373 * the terminal modes.
d730d1dc
CL
1374 */
1375 if (ioctl(fileno(stdout), TIOCGPGRP, &tgrp) < 0) {
4a56d647 1376 perror("TIOCGPGRP");
d730d1dc
CL
1377 exit(1);
1378 }
1379 if (tgrp != getpgrp(0)) {
1380 kill(0, SIGTTOU);
1381 goto retry;
1382 }
8828eef4 1383 if ((term = getenv("TERM")) == 0 || tgetent(buf, term) <= 0) {
35bd36fc 1384 dumb++; ul_opt = 0;
ffa58356
ES
1385 }
1386 else {
d3e7b534
JB
1387 if (ioctl(fileno(stdout), TIOCGWINSZ, &win) < 0) {
1388 Lpp = tgetnum("li");
1389 Mcol = tgetnum("co");
1390 } else {
1391 if ((Lpp = win.ws_row) == 0)
1392 Lpp = tgetnum("li");
1393 if ((Mcol = win.ws_col) == 0)
1394 Mcol = tgetnum("co");
1395 }
1396 if ((Lpp <= 0) || tgetflag("hc")) {
ffa58356
ES
1397 hard++; /* Hard copy terminal */
1398 Lpp = 24;
1399 }
d3e7b534
JB
1400 if (Mcol <= 0)
1401 Mcol = 80;
1402
ffa58356
ES
1403 if (tailequ (fnames[0], "page") || !hard && tgetflag("ns"))
1404 noscroll++;
ffa58356
ES
1405 Wrap = tgetflag("am");
1406 bad_so = tgetflag ("xs");
1407 clearptr = clearbuf;
1408 eraseln = tgetstr("ce",&clearptr);
1409 Clear = tgetstr("cl", &clearptr);
1410 Senter = tgetstr("so", &clearptr);
1411 Sexit = tgetstr("se", &clearptr);
2c880657
JK
1412 if ((soglitch = tgetnum("sg")) < 0)
1413 soglitch = 0;
35bd36fc
BJ
1414
1415 /*
1416 * Set up for underlining: some terminals don't need it;
1417 * others have start/stop sequences, still others have an
1418 * underline char sequence which is assumed to move the
1419 * cursor forward one character. If underline sequence
1420 * isn't available, settle for standout sequence.
1421 */
1422
1423 if (tgetflag("ul") || tgetflag("os"))
1424 ul_opt = 0;
1425 if ((chUL = tgetstr("uc", &clearptr)) == NULL )
1426 chUL = "";
2c880657
JK
1427 if (((ULenter = tgetstr("us", &clearptr)) == NULL ||
1428 (ULexit = tgetstr("ue", &clearptr)) == NULL) && !*chUL) {
1429 if ((ULenter = Senter) == NULL || (ULexit = Sexit) == NULL) {
1430 ULenter = "";
1431 ULexit = "";
1432 } else
1433 ulglitch = soglitch;
1434 } else {
1435 if ((ulglitch = tgetnum("ug")) < 0)
1436 ulglitch = 0;
1437 }
d730d1dc 1438
ffa58356
ES
1439 if (padstr = tgetstr("pc", &clearptr))
1440 PC = *padstr;
38ccf597 1441 Home = tgetstr("ho",&clearptr);
ddbe1116 1442 if (Home == 0 || *Home == '\0')
38ccf597 1443 {
35bd36fc
BJ
1444 if ((cursorm = tgetstr("cm", &clearptr)) != NULL) {
1445 strcpy(cursorhome, tgoto(cursorm, 0, 0));
38ccf597
BJ
1446 Home = cursorhome;
1447 }
1448 }
35bd36fc 1449 EodClr = tgetstr("cd", &clearptr);
ffa58356
ES
1450 }
1451 if ((shell = getenv("SHELL")) == NULL)
1452 shell = "/bin/sh";
1453 }
d730d1dc
CL
1454 no_intty = gtty(fileno(stdin), &otty);
1455 gtty(fileno(stderr), &otty);
8828eef4 1456 savetty = otty;
ffa58356
ES
1457 ospeed = otty.sg_ospeed;
1458 slow_tty = ospeed < B1200;
1459 hardtabs = !(otty.sg_flags & XTABS);
1460 if (!no_tty) {
1461 otty.sg_flags &= ~ECHO;
1462 if (MBIT == CBREAK || !slow_tty)
1463 otty.sg_flags |= MBIT;
1464 }
1465}
1466
1467readch ()
1468{
1469 char ch;
1470 extern int errno;
1471
1472 if (read (2, &ch, 1) <= 0)
1473 if (errno != EINTR)
1474 exit(0);
1475 else
1476 ch = otty.sg_kill;
1477 return (ch);
1478}
1479
1480static char BS = '\b';
4a56d647 1481static char *BSB = "\b \b";
ffa58356 1482static char CARAT = '^';
4a56d647
CL
1483#define ERASEONECHAR \
1484 if (docrterase) \
1485 write (2, BSB, sizeof(BSB)); \
1486 else \
1487 write (2, &BS, sizeof(BS));
ffa58356
ES
1488
1489ttyin (buf, nmax, pchar)
1490char buf[];
1491register int nmax;
1492char pchar;
1493{
1494 register char *sptr;
1495 register char ch;
1496 register int slash = 0;
1497 int maxlen;
1498 char cbuf;
1499
1500 sptr = buf;
1501 maxlen = 0;
1502 while (sptr - buf < nmax) {
1503 if (promptlen > maxlen) maxlen = promptlen;
1504 ch = readch ();
1505 if (ch == '\\') {
1506 slash++;
1507 }
1508 else if ((ch == otty.sg_erase) && !slash) {
1509 if (sptr > buf) {
1510 --promptlen;
4a56d647 1511 ERASEONECHAR
ffa58356
ES
1512 --sptr;
1513 if ((*sptr < ' ' && *sptr != '\n') || *sptr == RUBOUT) {
1514 --promptlen;
4a56d647 1515 ERASEONECHAR
ffa58356
ES
1516 }
1517 continue;
1518 }
1519 else {
1520 if (!eraseln) promptlen = maxlen;
1521 longjmp (restore, 1);
1522 }
1523 }
1524 else if ((ch == otty.sg_kill) && !slash) {
1525 if (hard) {
1526 show (ch);
1527 putchar ('\n');
1528 putchar (pchar);
1529 }
1530 else {
1531 putchar ('\r');
1532 putchar (pchar);
1533 if (eraseln)
1534 erase (1);
4a56d647
CL
1535 else if (docrtkill)
1536 while (promptlen-- > 1)
1537 write (2, BSB, sizeof(BSB));
ffa58356
ES
1538 promptlen = 1;
1539 }
1540 sptr = buf;
1541 fflush (stdout);
1542 continue;
1543 }
1544 if (slash && (ch == otty.sg_kill || ch == otty.sg_erase)) {
4a56d647 1545 ERASEONECHAR
ffa58356
ES
1546 --sptr;
1547 }
1548 if (ch != '\\')
1549 slash = 0;
1550 *sptr++ = ch;
1551 if ((ch < ' ' && ch != '\n' && ch != ESC) || ch == RUBOUT) {
1552 ch += ch == RUBOUT ? -0100 : 0100;
1553 write (2, &CARAT, 1);
1554 promptlen++;
1555 }
1556 cbuf = ch;
1557 if (ch != '\n' && ch != ESC) {
1558 write (2, &cbuf, 1);
1559 promptlen++;
1560 }
1561 else
1562 break;
1563 }
1564 *--sptr = '\0';
1565 if (!eraseln) promptlen = maxlen;
1566 if (sptr - buf >= nmax - 1)
1567 error ("Line too long");
1568}
1569
1570expand (outbuf, inbuf)
1571char *outbuf;
1572char *inbuf;
1573{
1574 register char *instr;
1575 register char *outstr;
1576 register char ch;
1577 char temp[200];
1578 int changed = 0;
1579
1580 instr = inbuf;
1581 outstr = temp;
1582 while ((ch = *instr++) != '\0')
1583 switch (ch) {
1584 case '%':
1585 if (!no_intty) {
1586 strcpy (outstr, fnames[fnum]);
1587 outstr += strlen (fnames[fnum]);
1588 changed++;
1589 }
1590 else
1591 *outstr++ = ch;
1592 break;
1593 case '!':
1594 if (!shellp)
1595 error ("No previous command to substitute for");
1596 strcpy (outstr, shell_line);
1597 outstr += strlen (shell_line);
1598 changed++;
1599 break;
1600 case '\\':
1601 if (*instr == '%' || *instr == '!') {
1602 *outstr++ = *instr++;
1603 break;
1604 }
1605 default:
1606 *outstr++ = ch;
1607 }
1608 *outstr++ = '\0';
1609 strcpy (outbuf, temp);
1610 return (changed);
1611}
1612
1613show (ch)
1614register char ch;
1615{
1616 char cbuf;
1617
1618 if ((ch < ' ' && ch != '\n' && ch != ESC) || ch == RUBOUT) {
1619 ch += ch == RUBOUT ? -0100 : 0100;
1620 write (2, &CARAT, 1);
1621 promptlen++;
1622 }
1623 cbuf = ch;
1624 write (2, &cbuf, 1);
1625 promptlen++;
1626}
1627
1628error (mess)
1629char *mess;
1630{
35bd36fc
BJ
1631 if (clreol)
1632 cleareol ();
1633 else
1634 kill_line ();
ffa58356
ES
1635 promptlen += strlen (mess);
1636 if (Senter && Sexit) {
1637 tputs (Senter, 1, putch);
1638 pr(mess);
1639 tputs (Sexit, 1, putch);
1640 }
1641 else
1642 pr (mess);
1643 fflush(stdout);
1644 errors++;
1645 longjmp (restore, 1);
1646}
1647
1648
1649set_tty ()
1650{
1651 otty.sg_flags |= MBIT;
1652 otty.sg_flags &= ~ECHO;
d730d1dc 1653 stty(fileno(stderr), &otty);
ffa58356
ES
1654}
1655
1656reset_tty ()
1657{
2c880657
JK
1658 if (pstate) {
1659 tputs(ULexit, 1, putch);
1660 fflush(stdout);
1661 pstate = 0;
1662 }
ffa58356
ES
1663 otty.sg_flags |= ECHO;
1664 otty.sg_flags &= ~MBIT;
d730d1dc 1665 stty(fileno(stderr), &savetty);
ffa58356
ES
1666}
1667
1668rdline (f)
1669register FILE *f;
1670{
1671 register char c;
1672 register char *p;
1673
1674 p = Line;
1675 while ((c = Getc (f)) != '\n' && c != EOF && p - Line < LINSIZ - 1)
1676 *p++ = c;
1677 if (c == '\n')
1678 Currline++;
1679 *p = '\0';
1680}
1681
1682/* Come here when we get a suspend signal from the terminal */
1683
ffa58356
ES
1684onsusp ()
1685{
910bcc08
MK
1686 /* ignore SIGTTOU so we don't get stopped if csh grabs the tty */
1687 signal(SIGTTOU, SIG_IGN);
ffa58356
ES
1688 reset_tty ();
1689 fflush (stdout);
910bcc08 1690 signal(SIGTTOU, SIG_DFL);
ffa58356 1691 /* Send the TSTP signal to suspend our process group */
2d4fa3b8
SL
1692 signal(SIGTSTP, SIG_DFL);
1693 sigsetmask(0);
ffa58356
ES
1694 kill (0, SIGTSTP);
1695 /* Pause for station break */
1696
1697 /* We're back */
1698 signal (SIGTSTP, onsusp);
1699 set_tty ();
1700 if (inwait)
1701 longjmp (restore);
1702}