~ubuntu-branches/ubuntu/vivid/openipmi/vivid

« back to all changes in this revision

Viewing changes to libedit/read.c

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2006-09-15 17:56:24 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060915175624-ljk0mg3xtcm65tvm
Tags: 2.0.7-1
* new upstream release from 2006-06-08
  Thanks to John Wright <john.wright hp.com> for initial work
  (closes: Bug#380149)
* updated Standards Version
* new binaries openipmicmd, openipmish, rmcp_ping

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      $NetBSD: read.c,v 1.39 2005/08/02 12:11:14 christos Exp $       */
 
2
 
 
3
/*-
 
4
 * Copyright (c) 1992, 1993
 
5
 *      The Regents of the University of California.  All rights reserved.
 
6
 *
 
7
 * This code is derived from software contributed to Berkeley by
 
8
 * Christos Zoulas of Cornell University.
 
9
 *
 
10
 * Redistribution and use in source and binary forms, with or without
 
11
 * modification, are permitted provided that the following conditions
 
12
 * are met:
 
13
 * 1. Redistributions of source code must retain the above copyright
 
14
 *    notice, this list of conditions and the following disclaimer.
 
15
 * 2. Redistributions in binary form must reproduce the above copyright
 
16
 *    notice, this list of conditions and the following disclaimer in the
 
17
 *    documentation and/or other materials provided with the distribution.
 
18
 * 3. Neither the name of the University nor the names of its contributors
 
19
 *    may be used to endorse or promote products derived from this software
 
20
 *    without specific prior written permission.
 
21
 *
 
22
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
23
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
24
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
25
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
26
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
27
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
28
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
29
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
30
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
31
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
32
 * SUCH DAMAGE.
 
33
 */
 
34
 
 
35
#include "sys.h"
 
36
#if !defined(lint) && !defined(SCCSID)
 
37
#if 0
 
38
static char sccsid[] = "@(#)read.c      8.1 (Berkeley) 6/4/93";
 
39
#else
 
40
__RCSID("$NetBSD: read.c,v 1.39 2005/08/02 12:11:14 christos Exp $");
 
41
#endif
 
42
#endif /* not lint && not SCCSID */
 
43
 
 
44
/*
 
45
 * read.c: Clean this junk up! This is horrible code.
 
46
 *         Terminal read functions
 
47
 */
 
48
#include <errno.h>
 
49
#include <fcntl.h>
 
50
#include <unistd.h>
 
51
#include <stdlib.h>
 
52
#include "el.h"
 
53
 
 
54
#define OKCMD   -1
 
55
 
 
56
private int     read__fixio(int, int);
 
57
private int     read_preread(EditLine *);
 
58
private int     read_char(EditLine *, char *);
 
59
private int     read_getcmd(EditLine *, el_action_t *, char *);
 
60
 
 
61
/* read_init():
 
62
 *      Initialize the read stuff
 
63
 */
 
64
protected int
 
65
read_init(EditLine *el)
 
66
{
 
67
        /* builtin read_char */
 
68
        el->el_read.read_char = read_char;
 
69
        return 0;
 
70
}
 
71
 
 
72
 
 
73
/* el_read_setfn():
 
74
 *      Set the read char function to the one provided.
 
75
 *      If it is set to EL_BUILTIN_GETCFN, then reset to the builtin one.
 
76
 */
 
77
protected int
 
78
el_read_setfn(EditLine *el, el_rfunc_t rc)
 
79
{
 
80
        el->el_read.read_char = (rc == EL_BUILTIN_GETCFN) ? read_char : rc;
 
81
        return 0;
 
82
}
 
83
 
 
84
 
 
85
/* el_read_getfn():
 
86
 *      return the current read char function, or EL_BUILTIN_GETCFN
 
87
 *      if it is the default one
 
88
 */
 
89
protected el_rfunc_t
 
90
el_read_getfn(EditLine *el)
 
91
{
 
92
       return (el->el_read.read_char == read_char) ?
 
93
            EL_BUILTIN_GETCFN : el->el_read.read_char;
 
94
}
 
95
 
 
96
 
 
97
#ifndef MIN
 
98
#define MIN(A,B) ((A) < (B) ? (A) : (B))
 
99
#endif
 
100
 
 
101
#ifdef DEBUG_EDIT
 
102
private void
 
103
read_debug(EditLine *el)
 
104
{
 
105
 
 
106
        if (el->el_line.cursor > el->el_line.lastchar)
 
107
                (void) fprintf(el->el_errfile, "cursor > lastchar\r\n");
 
108
        if (el->el_line.cursor < el->el_line.buffer)
 
109
                (void) fprintf(el->el_errfile, "cursor < buffer\r\n");
 
110
        if (el->el_line.cursor > el->el_line.limit)
 
111
                (void) fprintf(el->el_errfile, "cursor > limit\r\n");
 
112
        if (el->el_line.lastchar > el->el_line.limit)
 
113
                (void) fprintf(el->el_errfile, "lastchar > limit\r\n");
 
114
        if (el->el_line.limit != &el->el_line.buffer[EL_BUFSIZ - 2])
 
115
                (void) fprintf(el->el_errfile, "limit != &buffer[EL_BUFSIZ-2]\r\n");
 
116
}
 
117
#endif /* DEBUG_EDIT */
 
118
 
 
119
 
 
120
/* read__fixio():
 
121
 *      Try to recover from a read error
 
122
 */
 
123
/* ARGSUSED */
 
124
private int
 
125
read__fixio(int fd __attribute__((__unused__)), int e)
 
126
{
 
127
 
 
128
        switch (e) {
 
129
        case -1:                /* Make sure that the code is reachable */
 
130
 
 
131
#ifdef EWOULDBLOCK
 
132
        case EWOULDBLOCK:
 
133
#ifndef TRY_AGAIN
 
134
#define TRY_AGAIN
 
135
#endif
 
136
#endif /* EWOULDBLOCK */
 
137
 
 
138
#if defined(POSIX) && defined(EAGAIN)
 
139
#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
 
140
        case EAGAIN:
 
141
#ifndef TRY_AGAIN
 
142
#define TRY_AGAIN
 
143
#endif
 
144
#endif /* EWOULDBLOCK && EWOULDBLOCK != EAGAIN */
 
145
#endif /* POSIX && EAGAIN */
 
146
 
 
147
                e = 0;
 
148
#ifdef TRY_AGAIN
 
149
#if defined(F_SETFL) && defined(O_NDELAY)
 
150
                if ((e = fcntl(fd, F_GETFL, 0)) == -1)
 
151
                        return (-1);
 
152
 
 
153
                if (fcntl(fd, F_SETFL, e & ~O_NDELAY) == -1)
 
154
                        return (-1);
 
155
                else
 
156
                        e = 1;
 
157
#endif /* F_SETFL && O_NDELAY */
 
158
 
 
159
#ifdef FIONBIO
 
160
                {
 
161
                        int zero = 0;
 
162
 
 
163
                        if (ioctl(fd, FIONBIO, (ioctl_t) & zero) == -1)
 
164
                                return (-1);
 
165
                        else
 
166
                                e = 1;
 
167
                }
 
168
#endif /* FIONBIO */
 
169
 
 
170
#endif /* TRY_AGAIN */
 
171
                return (e ? 0 : -1);
 
172
 
 
173
        case EINTR:
 
174
                return (0);
 
175
 
 
176
        default:
 
177
                return (-1);
 
178
        }
 
179
}
 
180
 
 
181
 
 
182
/* read_preread():
 
183
 *      Try to read the stuff in the input queue;
 
184
 */
 
185
private int
 
186
read_preread(EditLine *el)
 
187
{
 
188
        int chrs = 0;
 
189
 
 
190
        if (el->el_tty.t_mode == ED_IO)
 
191
                return (0);
 
192
 
 
193
#ifdef FIONREAD
 
194
        (void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
 
195
        if (chrs > 0) {
 
196
                char buf[EL_BUFSIZ];
 
197
 
 
198
                chrs = read(el->el_infd, buf,
 
199
                    (size_t) MIN(chrs, EL_BUFSIZ - 1));
 
200
                if (chrs > 0) {
 
201
                        buf[chrs] = '\0';
 
202
                        el_push(el, buf);
 
203
                }
 
204
        }
 
205
#endif /* FIONREAD */
 
206
 
 
207
        return (chrs > 0);
 
208
}
 
209
 
 
210
 
 
211
/* el_push():
 
212
 *      Push a macro
 
213
 */
 
214
public void
 
215
el_push(EditLine *el, char *str)
 
216
{
 
217
        c_macro_t *ma = &el->el_chared.c_macro;
 
218
 
 
219
        if (str != NULL && ma->level + 1 < EL_MAXMACRO) {
 
220
                ma->level++;
 
221
                if ((ma->macro[ma->level] = el_strdup(str)) != NULL)
 
222
                        return;
 
223
                ma->level--;
 
224
        }
 
225
#if 0 /* TCM - why on earth would you beep here? */
 
226
        term_beep(el);
 
227
#endif
 
228
        term__flush();
 
229
}
 
230
 
 
231
 
 
232
/* read_getcmd():
 
233
 *      Return next command from the input stream.
 
234
 */
 
235
private int
 
236
read_getcmd(EditLine *el, el_action_t *cmdnum, char *ch)
 
237
{
 
238
        el_action_t cmd;
 
239
        int num;
 
240
 
 
241
        do {
 
242
                if ((num = el_getc(el, ch)) != 1)       /* if EOF or error */
 
243
                        return (num);
 
244
 
 
245
#ifdef  KANJI
 
246
                if ((*ch & 0200)) {
 
247
                        el->el_state.metanext = 0;
 
248
                        cmd = CcViMap[' '];
 
249
                        break;
 
250
                } else
 
251
#endif /* KANJI */
 
252
 
 
253
                if (el->el_state.metanext) {
 
254
                        el->el_state.metanext = 0;
 
255
                        *ch |= 0200;
 
256
                }
 
257
                cmd = el->el_map.current[(unsigned char) *ch];
 
258
                if (cmd == ED_SEQUENCE_LEAD_IN) {
 
259
                        key_value_t val;
 
260
                        switch (key_get(el, ch, &val)) {
 
261
                        case XK_CMD:
 
262
                                cmd = val.cmd;
 
263
                                break;
 
264
                        case XK_STR:
 
265
                                el_push(el, val.str);
 
266
                                break;
 
267
#ifdef notyet
 
268
                        case XK_EXE:
 
269
                                /* XXX: In the future to run a user function */
 
270
                                RunCommand(val.str);
 
271
                                break;
 
272
#endif
 
273
                        default:
 
274
                                EL_ABORT((el->el_errfile, "Bad XK_ type \n"));
 
275
                                break;
 
276
                        }
 
277
                }
 
278
                if (el->el_map.alt == NULL)
 
279
                        el->el_map.current = el->el_map.key;
 
280
        } while (cmd == ED_SEQUENCE_LEAD_IN);
 
281
        *cmdnum = cmd;
 
282
        return (OKCMD);
 
283
}
 
284
 
 
285
 
 
286
/* read_char():
 
287
 *      Read a character from the tty.
 
288
 */
 
289
private int
 
290
read_char(EditLine *el, char *cp)
 
291
{
 
292
        int num_read;
 
293
        int tried = 0;
 
294
 
 
295
        while ((num_read = read(el->el_infd, cp, 1)) == -1)
 
296
                if (!tried && read__fixio(el->el_infd, errno) == 0)
 
297
                        tried = 1;
 
298
                else {
 
299
                        *cp = '\0';
 
300
                        return (-1);
 
301
                }
 
302
 
 
303
        return (num_read);
 
304
}
 
305
 
 
306
 
 
307
/* el_getc():
 
308
 *      Read a character
 
309
 */
 
310
public int
 
311
el_getc(EditLine *el, char *cp)
 
312
{
 
313
        int num_read;
 
314
        c_macro_t *ma = &el->el_chared.c_macro;
 
315
 
 
316
        term__flush();
 
317
        for (;;) {
 
318
                if (ma->level < 0) {
 
319
                        if (!read_preread(el))
 
320
                                break;
 
321
                }
 
322
                if (ma->level < 0)
 
323
                        break;
 
324
 
 
325
                if (ma->macro[ma->level][ma->offset] == '\0') {
 
326
                        el_free(ma->macro[ma->level--]);
 
327
                        ma->offset = 0;
 
328
                        continue;
 
329
                }
 
330
                *cp = ma->macro[ma->level][ma->offset++] & 0377;
 
331
                if (ma->macro[ma->level][ma->offset] == '\0') {
 
332
                        /* Needed for QuoteMode On */
 
333
                        el_free(ma->macro[ma->level--]);
 
334
                        ma->offset = 0;
 
335
                }
 
336
                return (1);
 
337
        }
 
338
 
 
339
#ifdef DEBUG_READ
 
340
        (void) fprintf(el->el_errfile, "Turning raw mode on\n");
 
341
#endif /* DEBUG_READ */
 
342
        if (tty_rawmode(el) < 0)/* make sure the tty is set up correctly */
 
343
                return (0);
 
344
 
 
345
#ifdef DEBUG_READ
 
346
        (void) fprintf(el->el_errfile, "Reading a character\n");
 
347
#endif /* DEBUG_READ */
 
348
        num_read = (*el->el_read.read_char)(el, cp);
 
349
#ifdef DEBUG_READ
 
350
        (void) fprintf(el->el_errfile, "Got it %c\n", *cp);
 
351
#endif /* DEBUG_READ */
 
352
        return (num_read);
 
353
}
 
354
 
 
355
protected void
 
356
read_prepare(EditLine *el)
 
357
{
 
358
        if (el->el_flags & HANDLE_SIGNALS)
 
359
                sig_set(el);
 
360
        if (el->el_flags & NO_TTY)
 
361
                return;
 
362
        if ((el->el_flags & (UNBUFFERED|EDIT_DISABLED)) == UNBUFFERED)
 
363
                tty_rawmode(el);
 
364
 
 
365
        /* This is relatively cheap, and things go terribly wrong if
 
366
           we have the wrong size. */
 
367
        el_resize(el);
 
368
        re_clear_display(el);   /* reset the display stuff */
 
369
        ch_reset(el, 0);
 
370
        re_refresh(el);         /* print the prompt */
 
371
 
 
372
        if (el->el_flags & UNBUFFERED)
 
373
                term__flush();
 
374
}
 
375
 
 
376
protected void
 
377
read_finish(EditLine *el)
 
378
{
 
379
        if ((el->el_flags & UNBUFFERED) == 0)
 
380
                (void) tty_cookedmode(el);
 
381
        if (el->el_flags & HANDLE_SIGNALS)
 
382
                sig_clr(el);
 
383
}
 
384
 
 
385
public const char *
 
386
el_gets(EditLine *el, int *nread)
 
387
{
 
388
        int retval;
 
389
        el_action_t cmdnum = 0;
 
390
        int num;                /* how many chars we have read at NL */
 
391
        char ch;
 
392
        int crlf = 0;
 
393
#ifdef FIONREAD
 
394
        c_macro_t *ma = &el->el_chared.c_macro;
 
395
#endif /* FIONREAD */
 
396
 
 
397
        if (el->el_flags & NO_TTY) {
 
398
                char *cp = el->el_line.buffer;
 
399
                size_t idx;
 
400
 
 
401
                while ((*el->el_read.read_char)(el, cp) == 1) {
 
402
                        /* make sure there is space for next character */
 
403
                        if (cp + 1 >= el->el_line.limit) {
 
404
                                idx = (cp - el->el_line.buffer);
 
405
                                if (!ch_enlargebufs(el, 2))
 
406
                                        break;
 
407
                                cp = &el->el_line.buffer[idx];
 
408
                        }
 
409
                        cp++;
 
410
                        if (el->el_flags & UNBUFFERED)
 
411
                                break;
 
412
                        if (cp[-1] == '\r' || cp[-1] == '\n')
 
413
                                break;
 
414
                }
 
415
 
 
416
                el->el_line.cursor = el->el_line.lastchar = cp;
 
417
                *cp = '\0';
 
418
                if (nread)
 
419
                        *nread = el->el_line.cursor - el->el_line.buffer;
 
420
                return (el->el_line.buffer);
 
421
        }
 
422
 
 
423
 
 
424
#ifdef FIONREAD
 
425
        if (el->el_tty.t_mode == EX_IO && ma->level < 0) {
 
426
                long chrs = 0;
 
427
 
 
428
                (void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
 
429
                if (chrs == 0) {
 
430
                        if (tty_rawmode(el) < 0) {
 
431
                                if (nread)
 
432
                                        *nread = 0;
 
433
                                return (NULL);
 
434
                        }
 
435
                }
 
436
        }
 
437
#endif /* FIONREAD */
 
438
 
 
439
        if ((el->el_flags & UNBUFFERED) == 0)
 
440
                read_prepare(el);
 
441
 
 
442
        if (el->el_flags & EDIT_DISABLED) {
 
443
                char *cp;
 
444
                size_t idx;
 
445
                if ((el->el_flags & UNBUFFERED) == 0)
 
446
                        cp = el->el_line.buffer;
 
447
                else
 
448
                        cp = el->el_line.lastchar;
 
449
 
 
450
                term__flush();
 
451
 
 
452
                while ((*el->el_read.read_char)(el, cp) == 1) {
 
453
                        /* make sure there is space next character */
 
454
                        if (cp + 1 >= el->el_line.limit) {
 
455
                                idx = (cp - el->el_line.buffer);
 
456
                                if (!ch_enlargebufs(el, 2))
 
457
                                        break;
 
458
                                cp = &el->el_line.buffer[idx];
 
459
                        }
 
460
                        if (*cp == 4)   /* ought to be stty eof */
 
461
                                break;
 
462
                        cp++;
 
463
                        crlf = cp[-1] == '\r' || cp[-1] == '\n';
 
464
                        if (el->el_flags & UNBUFFERED)
 
465
                                break;
 
466
                        if (crlf)
 
467
                                break;
 
468
                }
 
469
 
 
470
                el->el_line.cursor = el->el_line.lastchar = cp;
 
471
                *cp = '\0';
 
472
                if (nread)
 
473
                        *nread = el->el_line.cursor - el->el_line.buffer;
 
474
                return (el->el_line.buffer);
 
475
        }
 
476
 
 
477
        for (num = OKCMD; num == OKCMD;) {      /* while still editing this
 
478
                                                 * line */
 
479
#ifdef DEBUG_EDIT
 
480
                read_debug(el);
 
481
#endif /* DEBUG_EDIT */
 
482
                /* if EOF or error */
 
483
                if ((num = read_getcmd(el, &cmdnum, &ch)) != OKCMD) {
 
484
#ifdef DEBUG_READ
 
485
                        (void) fprintf(el->el_errfile,
 
486
                            "Returning from el_gets %d\n", num);
 
487
#endif /* DEBUG_READ */
 
488
                        break;
 
489
                }
 
490
                if ((unsigned int)cmdnum >= el->el_map.nfunc) { /* BUG CHECK command */
 
491
#ifdef DEBUG_EDIT
 
492
                        (void) fprintf(el->el_errfile,
 
493
                            "ERROR: illegal command from key 0%o\r\n", ch);
 
494
#endif /* DEBUG_EDIT */
 
495
                        continue;       /* try again */
 
496
                }
 
497
                /* now do the real command */
 
498
#ifdef DEBUG_READ
 
499
                {
 
500
                        el_bindings_t *b;
 
501
                        for (b = el->el_map.help; b->name; b++)
 
502
                                if (b->func == cmdnum)
 
503
                                        break;
 
504
                        if (b->name)
 
505
                                (void) fprintf(el->el_errfile,
 
506
                                    "Executing %s\n", b->name);
 
507
                        else
 
508
                                (void) fprintf(el->el_errfile,
 
509
                                    "Error command = %d\n", cmdnum);
 
510
                }
 
511
#endif /* DEBUG_READ */
 
512
                /* vi redo needs these way down the levels... */
 
513
                el->el_state.thiscmd = cmdnum;
 
514
                el->el_state.thisch = ch;
 
515
                if (el->el_map.type == MAP_VI &&
 
516
                    el->el_map.current == el->el_map.key &&
 
517
                    el->el_chared.c_redo.pos < el->el_chared.c_redo.lim) {
 
518
                        if (cmdnum == VI_DELETE_PREV_CHAR &&
 
519
                            el->el_chared.c_redo.pos != el->el_chared.c_redo.buf
 
520
                            && isprint((unsigned char)el->el_chared.c_redo.pos[-1]))
 
521
                                el->el_chared.c_redo.pos--;
 
522
                        else
 
523
                                *el->el_chared.c_redo.pos++ = ch;
 
524
                }
 
525
                retval = (*el->el_map.func[cmdnum]) (el, ch);
 
526
#ifdef DEBUG_READ
 
527
                (void) fprintf(el->el_errfile,
 
528
                        "Returned state %d\n", retval );
 
529
#endif /* DEBUG_READ */
 
530
 
 
531
                /* save the last command here */
 
532
                el->el_state.lastcmd = cmdnum;
 
533
 
 
534
                /* use any return value */
 
535
                switch (retval) {
 
536
                case CC_CURSOR:
 
537
                        re_refresh_cursor(el);
 
538
                        break;
 
539
 
 
540
                case CC_REDISPLAY:
 
541
                        re_clear_lines(el);
 
542
                        re_clear_display(el);
 
543
                        /* FALLTHROUGH */
 
544
 
 
545
                case CC_REFRESH:
 
546
                        re_refresh(el);
 
547
                        break;
 
548
 
 
549
                case CC_REFRESH_BEEP:
 
550
                        re_refresh(el);
 
551
                        term_beep(el);
 
552
                        break;
 
553
 
 
554
                case CC_NORM:   /* normal char */
 
555
                        break;
 
556
 
 
557
                case CC_ARGHACK:        /* Suggested by Rich Salz */
 
558
                        /* <rsalz@pineapple.bbn.com> */
 
559
                        continue;       /* keep going... */
 
560
 
 
561
                case CC_EOF:    /* end of file typed */
 
562
                        if ((el->el_flags & UNBUFFERED) == 0)
 
563
                                num = 0;
 
564
                        else if (num == -1) {
 
565
                                *el->el_line.lastchar++ = CONTROL('d');
 
566
                                el->el_line.cursor = el->el_line.lastchar;
 
567
                                num = 1;
 
568
                        }
 
569
                        break;
 
570
 
 
571
                case CC_NEWLINE:        /* normal end of line */
 
572
                        num = el->el_line.lastchar - el->el_line.buffer;
 
573
                        break;
 
574
 
 
575
                case CC_FATAL:  /* fatal error, reset to known state */
 
576
#ifdef DEBUG_READ
 
577
                        (void) fprintf(el->el_errfile,
 
578
                            "*** editor fatal ERROR ***\r\n\n");
 
579
#endif /* DEBUG_READ */
 
580
                        /* put (real) cursor in a known place */
 
581
                        re_clear_display(el);   /* reset the display stuff */
 
582
                        ch_reset(el, 1);        /* reset the input pointers */
 
583
                        re_refresh(el); /* print the prompt again */
 
584
                        break;
 
585
 
 
586
                case CC_ERROR:
 
587
                default:        /* functions we don't know about */
 
588
#ifdef DEBUG_READ
 
589
                        (void) fprintf(el->el_errfile,
 
590
                            "*** editor ERROR ***\r\n\n");
 
591
#endif /* DEBUG_READ */
 
592
                        term_beep(el);
 
593
                        term__flush();
 
594
                        break;
 
595
                }
 
596
                el->el_state.argument = 1;
 
597
                el->el_state.doingarg = 0;
 
598
                el->el_chared.c_vcmd.action = NOP;
 
599
                if (el->el_flags & UNBUFFERED)
 
600
                        break;
 
601
        }
 
602
 
 
603
        term__flush();          /* flush any buffered output */
 
604
        /* make sure the tty is set up correctly */
 
605
        if ((el->el_flags & UNBUFFERED) == 0) {
 
606
                read_finish(el);
 
607
                if (nread)
 
608
                        *nread = num;
 
609
        } else {
 
610
                if (nread)
 
611
                        *nread = el->el_line.lastchar - el->el_line.buffer;
 
612
        }
 
613
        return (num ? el->el_line.buffer : NULL);
 
614
}