el.c revision 1.71.2.2 1 1.71.2.2 tls /* $NetBSD: el.c,v 1.71.2.2 2014/08/20 00:02:17 tls Exp $ */
2 1.2 lukem
3 1.1 cgd /*-
4 1.1 cgd * Copyright (c) 1992, 1993
5 1.1 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Christos Zoulas of Cornell University.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.32 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 cgd * may be used to endorse or promote products derived from this software
20 1.1 cgd * without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 cgd * SUCH DAMAGE.
33 1.1 cgd */
34 1.1 cgd
35 1.29 christos #include "config.h"
36 1.1 cgd #if !defined(lint) && !defined(SCCSID)
37 1.2 lukem #if 0
38 1.1 cgd static char sccsid[] = "@(#)el.c 8.2 (Berkeley) 1/3/94";
39 1.2 lukem #else
40 1.71.2.2 tls __RCSID("$NetBSD: el.c,v 1.71.2.2 2014/08/20 00:02:17 tls Exp $");
41 1.2 lukem #endif
42 1.1 cgd #endif /* not lint && not SCCSID */
43 1.1 cgd
44 1.1 cgd /*
45 1.1 cgd * el.c: EditLine interface functions
46 1.1 cgd */
47 1.1 cgd #include <sys/types.h>
48 1.1 cgd #include <sys/param.h>
49 1.1 cgd #include <string.h>
50 1.1 cgd #include <stdlib.h>
51 1.19 lukem #include <stdarg.h>
52 1.55 christos #include <ctype.h>
53 1.56 christos #include <locale.h>
54 1.59 christos #include <langinfo.h>
55 1.1 cgd #include "el.h"
56 1.1 cgd
57 1.1 cgd /* el_init():
58 1.1 cgd * Initialize editline and set default parameters.
59 1.1 cgd */
60 1.1 cgd public EditLine *
61 1.19 lukem el_init(const char *prog, FILE *fin, FILE *fout, FILE *ferr)
62 1.1 cgd {
63 1.71.2.1 tls return el_init_fd(prog, fin, fout, ferr, fileno(fin), fileno(fout),
64 1.71.2.1 tls fileno(ferr));
65 1.71.2.1 tls }
66 1.71.2.1 tls
67 1.71.2.1 tls public EditLine *
68 1.71.2.1 tls el_init_fd(const char *prog, FILE *fin, FILE *fout, FILE *ferr,
69 1.71.2.1 tls int fdin, int fdout, int fderr)
70 1.71.2.1 tls {
71 1.67 christos EditLine *el = el_malloc(sizeof(*el));
72 1.1 cgd
73 1.19 lukem if (el == NULL)
74 1.68 christos return NULL;
75 1.1 cgd
76 1.19 lukem memset(el, 0, sizeof(EditLine));
77 1.1 cgd
78 1.44 christos el->el_infile = fin;
79 1.19 lukem el->el_outfile = fout;
80 1.19 lukem el->el_errfile = ferr;
81 1.44 christos
82 1.71.2.1 tls el->el_infd = fdin;
83 1.71.2.1 tls el->el_outfd = fdout;
84 1.71.2.1 tls el->el_errfd = fderr;
85 1.44 christos
86 1.56 christos el->el_prog = Strdup(ct_decode_string(prog, &el->el_scratch));
87 1.56 christos if (el->el_prog == NULL) {
88 1.36 christos el_free(el);
89 1.36 christos return NULL;
90 1.36 christos }
91 1.19 lukem
92 1.19 lukem /*
93 1.19 lukem * Initialize all the modules. Order is important!!!
94 1.19 lukem */
95 1.19 lukem el->el_flags = 0;
96 1.56 christos #ifdef WIDECHAR
97 1.59 christos if (setlocale(LC_CTYPE, NULL) != NULL){
98 1.59 christos if (strcmp(nl_langinfo(CODESET), "UTF-8") == 0)
99 1.56 christos el->el_flags |= CHARSET_IS_UTF8;
100 1.56 christos }
101 1.56 christos #endif
102 1.19 lukem
103 1.64 christos if (terminal_init(el) == -1) {
104 1.36 christos el_free(el->el_prog);
105 1.25 christos el_free(el);
106 1.25 christos return NULL;
107 1.25 christos }
108 1.66 christos (void) keymacro_init(el);
109 1.19 lukem (void) map_init(el);
110 1.19 lukem if (tty_init(el) == -1)
111 1.19 lukem el->el_flags |= NO_TTY;
112 1.19 lukem (void) ch_init(el);
113 1.19 lukem (void) search_init(el);
114 1.19 lukem (void) hist_init(el);
115 1.19 lukem (void) prompt_init(el);
116 1.19 lukem (void) sig_init(el);
117 1.23 christos (void) read_init(el);
118 1.1 cgd
119 1.68 christos return el;
120 1.19 lukem }
121 1.1 cgd
122 1.1 cgd
123 1.1 cgd /* el_end():
124 1.1 cgd * Clean up.
125 1.1 cgd */
126 1.1 cgd public void
127 1.19 lukem el_end(EditLine *el)
128 1.1 cgd {
129 1.1 cgd
130 1.19 lukem if (el == NULL)
131 1.19 lukem return;
132 1.1 cgd
133 1.19 lukem el_reset(el);
134 1.19 lukem
135 1.64 christos terminal_end(el);
136 1.66 christos keymacro_end(el);
137 1.19 lukem map_end(el);
138 1.19 lukem tty_end(el);
139 1.19 lukem ch_end(el);
140 1.19 lukem search_end(el);
141 1.19 lukem hist_end(el);
142 1.19 lukem prompt_end(el);
143 1.19 lukem sig_end(el);
144 1.19 lukem
145 1.67 christos el_free(el->el_prog);
146 1.56 christos #ifdef WIDECHAR
147 1.67 christos el_free(el->el_scratch.cbuff);
148 1.67 christos el_free(el->el_scratch.wbuff);
149 1.67 christos el_free(el->el_lgcyconv.cbuff);
150 1.67 christos el_free(el->el_lgcyconv.wbuff);
151 1.56 christos #endif
152 1.67 christos el_free(el);
153 1.19 lukem }
154 1.1 cgd
155 1.1 cgd
156 1.1 cgd /* el_reset():
157 1.1 cgd * Reset the tty and the parser
158 1.1 cgd */
159 1.1 cgd public void
160 1.19 lukem el_reset(EditLine *el)
161 1.1 cgd {
162 1.19 lukem
163 1.19 lukem tty_cookedmode(el);
164 1.40 christos ch_reset(el, 0); /* XXX: Do we want that? */
165 1.1 cgd }
166 1.1 cgd
167 1.1 cgd
168 1.1 cgd /* el_set():
169 1.1 cgd * set the editline parameters
170 1.1 cgd */
171 1.1 cgd public int
172 1.56 christos FUN(el,set)(EditLine *el, int op, ...)
173 1.1 cgd {
174 1.44 christos va_list ap;
175 1.27 christos int rv = 0;
176 1.1 cgd
177 1.19 lukem if (el == NULL)
178 1.68 christos return -1;
179 1.44 christos va_start(ap, op);
180 1.22 wiz
181 1.19 lukem switch (op) {
182 1.19 lukem case EL_PROMPT:
183 1.51 christos case EL_RPROMPT: {
184 1.51 christos el_pfunc_t p = va_arg(ap, el_pfunc_t);
185 1.52 christos
186 1.56 christos rv = prompt_set(el, p, 0, op, 1);
187 1.52 christos break;
188 1.52 christos }
189 1.52 christos
190 1.60 christos case EL_RESIZE: {
191 1.60 christos el_zfunc_t p = va_arg(ap, el_zfunc_t);
192 1.60 christos void *arg = va_arg(ap, void *);
193 1.60 christos rv = ch_resizefun(el, p, arg);
194 1.60 christos break;
195 1.60 christos }
196 1.60 christos
197 1.71.2.2 tls case EL_ALIAS_TEXT: {
198 1.71.2.2 tls el_afunc_t p = va_arg(ap, el_afunc_t);
199 1.71.2.2 tls void *arg = va_arg(ap, void *);
200 1.71.2.2 tls rv = ch_aliasfun(el, p, arg);
201 1.71.2.2 tls break;
202 1.71.2.2 tls }
203 1.71.2.2 tls
204 1.52 christos case EL_PROMPT_ESC:
205 1.52 christos case EL_RPROMPT_ESC: {
206 1.52 christos el_pfunc_t p = va_arg(ap, el_pfunc_t);
207 1.56 christos int c = va_arg(ap, int);
208 1.51 christos
209 1.56 christos rv = prompt_set(el, p, c, op, 1);
210 1.50 christos break;
211 1.51 christos }
212 1.13 simonb
213 1.19 lukem case EL_TERMINAL:
214 1.64 christos rv = terminal_set(el, va_arg(ap, char *));
215 1.19 lukem break;
216 1.1 cgd
217 1.19 lukem case EL_EDITOR:
218 1.56 christos rv = map_set_editor(el, va_arg(ap, Char *));
219 1.1 cgd break;
220 1.1 cgd
221 1.19 lukem case EL_SIGNAL:
222 1.44 christos if (va_arg(ap, int))
223 1.19 lukem el->el_flags |= HANDLE_SIGNALS;
224 1.19 lukem else
225 1.19 lukem el->el_flags &= ~HANDLE_SIGNALS;
226 1.1 cgd break;
227 1.1 cgd
228 1.19 lukem case EL_BIND:
229 1.19 lukem case EL_TELLTC:
230 1.19 lukem case EL_SETTC:
231 1.19 lukem case EL_ECHOTC:
232 1.19 lukem case EL_SETTY:
233 1.19 lukem {
234 1.56 christos const Char *argv[20];
235 1.19 lukem int i;
236 1.19 lukem
237 1.70 christos for (i = 1; i < (int)__arraycount(argv); i++)
238 1.56 christos if ((argv[i] = va_arg(ap, Char *)) == NULL)
239 1.19 lukem break;
240 1.19 lukem
241 1.19 lukem switch (op) {
242 1.19 lukem case EL_BIND:
243 1.56 christos argv[0] = STR("bind");
244 1.19 lukem rv = map_bind(el, i, argv);
245 1.19 lukem break;
246 1.19 lukem
247 1.19 lukem case EL_TELLTC:
248 1.56 christos argv[0] = STR("telltc");
249 1.64 christos rv = terminal_telltc(el, i, argv);
250 1.19 lukem break;
251 1.19 lukem
252 1.19 lukem case EL_SETTC:
253 1.56 christos argv[0] = STR("settc");
254 1.64 christos rv = terminal_settc(el, i, argv);
255 1.19 lukem break;
256 1.19 lukem
257 1.19 lukem case EL_ECHOTC:
258 1.56 christos argv[0] = STR("echotc");
259 1.64 christos rv = terminal_echotc(el, i, argv);
260 1.19 lukem break;
261 1.19 lukem
262 1.19 lukem case EL_SETTY:
263 1.56 christos argv[0] = STR("setty");
264 1.19 lukem rv = tty_stty(el, i, argv);
265 1.19 lukem break;
266 1.19 lukem
267 1.19 lukem default:
268 1.19 lukem rv = -1;
269 1.20 christos EL_ABORT((el->el_errfile, "Bad op %d\n", op));
270 1.19 lukem break;
271 1.19 lukem }
272 1.1 cgd break;
273 1.19 lukem }
274 1.19 lukem
275 1.19 lukem case EL_ADDFN:
276 1.19 lukem {
277 1.56 christos Char *name = va_arg(ap, Char *);
278 1.56 christos Char *help = va_arg(ap, Char *);
279 1.44 christos el_func_t func = va_arg(ap, el_func_t);
280 1.1 cgd
281 1.19 lukem rv = map_addfunc(el, name, help, func);
282 1.1 cgd break;
283 1.19 lukem }
284 1.19 lukem
285 1.19 lukem case EL_HIST:
286 1.19 lukem {
287 1.44 christos hist_fun_t func = va_arg(ap, hist_fun_t);
288 1.67 christos void *ptr = va_arg(ap, void *);
289 1.1 cgd
290 1.19 lukem rv = hist_set(el, func, ptr);
291 1.59 christos if (!(el->el_flags & CHARSET_IS_UTF8))
292 1.59 christos el->el_flags &= ~NARROW_HISTORY;
293 1.1 cgd break;
294 1.19 lukem }
295 1.1 cgd
296 1.19 lukem case EL_EDITMODE:
297 1.44 christos if (va_arg(ap, int))
298 1.19 lukem el->el_flags &= ~EDIT_DISABLED;
299 1.19 lukem else
300 1.19 lukem el->el_flags |= EDIT_DISABLED;
301 1.19 lukem rv = 0;
302 1.1 cgd break;
303 1.13 simonb
304 1.23 christos case EL_GETCFN:
305 1.23 christos {
306 1.44 christos el_rfunc_t rc = va_arg(ap, el_rfunc_t);
307 1.23 christos rv = el_read_setfn(el, rc);
308 1.58 christos el->el_flags &= ~NARROW_READ;
309 1.23 christos break;
310 1.23 christos }
311 1.23 christos
312 1.24 christos case EL_CLIENTDATA:
313 1.44 christos el->el_data = va_arg(ap, void *);
314 1.24 christos break;
315 1.24 christos
316 1.34 christos case EL_UNBUFFERED:
317 1.44 christos rv = va_arg(ap, int);
318 1.34 christos if (rv && !(el->el_flags & UNBUFFERED)) {
319 1.34 christos el->el_flags |= UNBUFFERED;
320 1.34 christos read_prepare(el);
321 1.34 christos } else if (!rv && (el->el_flags & UNBUFFERED)) {
322 1.34 christos el->el_flags &= ~UNBUFFERED;
323 1.34 christos read_finish(el);
324 1.34 christos }
325 1.35 christos rv = 0;
326 1.35 christos break;
327 1.35 christos
328 1.35 christos case EL_PREP_TERM:
329 1.44 christos rv = va_arg(ap, int);
330 1.35 christos if (rv)
331 1.38 christos (void) tty_rawmode(el);
332 1.35 christos else
333 1.38 christos (void) tty_cookedmode(el);
334 1.34 christos rv = 0;
335 1.34 christos break;
336 1.34 christos
337 1.44 christos case EL_SETFP:
338 1.44 christos {
339 1.44 christos FILE *fp;
340 1.44 christos int what;
341 1.44 christos
342 1.44 christos what = va_arg(ap, int);
343 1.44 christos fp = va_arg(ap, FILE *);
344 1.44 christos
345 1.44 christos rv = 0;
346 1.44 christos switch (what) {
347 1.44 christos case 0:
348 1.44 christos el->el_infile = fp;
349 1.44 christos el->el_infd = fileno(fp);
350 1.44 christos break;
351 1.44 christos case 1:
352 1.44 christos el->el_outfile = fp;
353 1.61 christos el->el_outfd = fileno(fp);
354 1.44 christos break;
355 1.44 christos case 2:
356 1.44 christos el->el_errfile = fp;
357 1.61 christos el->el_errfd = fileno(fp);
358 1.44 christos break;
359 1.44 christos default:
360 1.44 christos rv = -1;
361 1.44 christos break;
362 1.44 christos }
363 1.44 christos break;
364 1.44 christos }
365 1.44 christos
366 1.45 christos case EL_REFRESH:
367 1.45 christos re_clear_display(el);
368 1.45 christos re_refresh(el);
369 1.64 christos terminal__flush(el);
370 1.45 christos break;
371 1.45 christos
372 1.19 lukem default:
373 1.19 lukem rv = -1;
374 1.27 christos break;
375 1.1 cgd }
376 1.1 cgd
377 1.44 christos va_end(ap);
378 1.68 christos return rv;
379 1.19 lukem }
380 1.1 cgd
381 1.1 cgd
382 1.10 lukem /* el_get():
383 1.10 lukem * retrieve the editline parameters
384 1.10 lukem */
385 1.10 lukem public int
386 1.56 christos FUN(el,get)(EditLine *el, int op, ...)
387 1.10 lukem {
388 1.42 christos va_list ap;
389 1.19 lukem int rv;
390 1.10 lukem
391 1.42 christos if (el == NULL)
392 1.42 christos return -1;
393 1.42 christos
394 1.42 christos va_start(ap, op);
395 1.42 christos
396 1.19 lukem switch (op) {
397 1.19 lukem case EL_PROMPT:
398 1.51 christos case EL_RPROMPT: {
399 1.51 christos el_pfunc_t *p = va_arg(ap, el_pfunc_t *);
400 1.56 christos rv = prompt_get(el, p, 0, op);
401 1.56 christos break;
402 1.56 christos }
403 1.56 christos case EL_PROMPT_ESC:
404 1.56 christos case EL_RPROMPT_ESC: {
405 1.56 christos el_pfunc_t *p = va_arg(ap, el_pfunc_t *);
406 1.56 christos Char *c = va_arg(ap, Char *);
407 1.51 christos
408 1.51 christos rv = prompt_get(el, p, c, op);
409 1.19 lukem break;
410 1.51 christos }
411 1.10 lukem
412 1.19 lukem case EL_EDITOR:
413 1.56 christos rv = map_get_editor(el, va_arg(ap, const Char **));
414 1.10 lukem break;
415 1.10 lukem
416 1.19 lukem case EL_SIGNAL:
417 1.42 christos *va_arg(ap, int *) = (el->el_flags & HANDLE_SIGNALS);
418 1.19 lukem rv = 0;
419 1.10 lukem break;
420 1.10 lukem
421 1.19 lukem case EL_EDITMODE:
422 1.42 christos *va_arg(ap, int *) = !(el->el_flags & EDIT_DISABLED);
423 1.19 lukem rv = 0;
424 1.10 lukem break;
425 1.10 lukem
426 1.19 lukem case EL_TERMINAL:
427 1.64 christos terminal_get(el, va_arg(ap, const char **));
428 1.33 christos rv = 0;
429 1.10 lukem break;
430 1.10 lukem
431 1.42 christos case EL_GETTC:
432 1.19 lukem {
433 1.42 christos static char name[] = "gettc";
434 1.42 christos char *argv[20];
435 1.19 lukem int i;
436 1.10 lukem
437 1.70 christos for (i = 1; i < (int)__arraycount(argv); i++)
438 1.42 christos if ((argv[i] = va_arg(ap, char *)) == NULL)
439 1.19 lukem break;
440 1.19 lukem
441 1.69 christos argv[0] = name;
442 1.69 christos rv = terminal_gettc(el, i, argv);
443 1.10 lukem break;
444 1.10 lukem }
445 1.13 simonb
446 1.23 christos case EL_GETCFN:
447 1.42 christos *va_arg(ap, el_rfunc_t *) = el_read_getfn(el);
448 1.24 christos rv = 0;
449 1.24 christos break;
450 1.24 christos
451 1.24 christos case EL_CLIENTDATA:
452 1.42 christos *va_arg(ap, void **) = el->el_data;
453 1.34 christos rv = 0;
454 1.34 christos break;
455 1.34 christos
456 1.34 christos case EL_UNBUFFERED:
457 1.71 christos *va_arg(ap, int *) = (el->el_flags & UNBUFFERED) != 0;
458 1.23 christos rv = 0;
459 1.23 christos break;
460 1.19 lukem
461 1.44 christos case EL_GETFP:
462 1.44 christos {
463 1.44 christos int what;
464 1.44 christos FILE **fpp;
465 1.44 christos
466 1.44 christos what = va_arg(ap, int);
467 1.44 christos fpp = va_arg(ap, FILE **);
468 1.44 christos rv = 0;
469 1.44 christos switch (what) {
470 1.44 christos case 0:
471 1.44 christos *fpp = el->el_infile;
472 1.44 christos break;
473 1.44 christos case 1:
474 1.44 christos *fpp = el->el_outfile;
475 1.44 christos break;
476 1.44 christos case 2:
477 1.44 christos *fpp = el->el_errfile;
478 1.44 christos break;
479 1.44 christos default:
480 1.44 christos rv = -1;
481 1.44 christos break;
482 1.44 christos }
483 1.44 christos break;
484 1.44 christos }
485 1.19 lukem default:
486 1.19 lukem rv = -1;
487 1.44 christos break;
488 1.19 lukem }
489 1.42 christos va_end(ap);
490 1.10 lukem
491 1.68 christos return rv;
492 1.19 lukem }
493 1.10 lukem
494 1.10 lukem
495 1.1 cgd /* el_line():
496 1.1 cgd * Return editing info
497 1.1 cgd */
498 1.56 christos public const TYPE(LineInfo) *
499 1.56 christos FUN(el,line)(EditLine *el)
500 1.1 cgd {
501 1.19 lukem
502 1.68 christos return (const TYPE(LineInfo) *)(void *)&el->el_line;
503 1.1 cgd }
504 1.1 cgd
505 1.1 cgd
506 1.1 cgd /* el_source():
507 1.1 cgd * Source a file
508 1.1 cgd */
509 1.1 cgd public int
510 1.19 lukem el_source(EditLine *el, const char *fname)
511 1.1 cgd {
512 1.19 lukem FILE *fp;
513 1.19 lukem size_t len;
514 1.27 christos char *ptr;
515 1.64 christos char *path = NULL;
516 1.56 christos const Char *dptr;
517 1.64 christos int error = 0;
518 1.19 lukem
519 1.19 lukem fp = NULL;
520 1.19 lukem if (fname == NULL) {
521 1.29 christos #ifdef HAVE_ISSETUGID
522 1.27 christos static const char elpath[] = "/.editrc";
523 1.65 christos size_t plen = sizeof(elpath);
524 1.27 christos
525 1.19 lukem if (issetugid())
526 1.68 christos return -1;
527 1.19 lukem if ((ptr = getenv("HOME")) == NULL)
528 1.68 christos return -1;
529 1.65 christos plen += strlen(ptr);
530 1.67 christos if ((path = el_malloc(plen * sizeof(*path))) == NULL)
531 1.68 christos return -1;
532 1.65 christos (void)snprintf(path, plen, "%s%s", ptr, elpath);
533 1.19 lukem fname = path;
534 1.27 christos #else
535 1.27 christos /*
536 1.27 christos * If issetugid() is missing, always return an error, in order
537 1.27 christos * to keep from inadvertently opening up the user to a security
538 1.27 christos * hole.
539 1.27 christos */
540 1.68 christos return -1;
541 1.27 christos #endif
542 1.19 lukem }
543 1.19 lukem if (fp == NULL)
544 1.19 lukem fp = fopen(fname, "r");
545 1.64 christos if (fp == NULL) {
546 1.64 christos el_free(path);
547 1.68 christos return -1;
548 1.64 christos }
549 1.19 lukem
550 1.19 lukem while ((ptr = fgetln(fp, &len)) != NULL) {
551 1.63 christos if (*ptr == '\n')
552 1.63 christos continue; /* Empty line. */
553 1.56 christos dptr = ct_decode_string(ptr, &el->el_scratch);
554 1.56 christos if (!dptr)
555 1.56 christos continue;
556 1.56 christos if (len > 0 && dptr[len - 1] == '\n')
557 1.19 lukem --len;
558 1.55 christos
559 1.55 christos /* loop until first non-space char or EOL */
560 1.56 christos while (*dptr != '\0' && Isspace(*dptr))
561 1.56 christos dptr++;
562 1.56 christos if (*dptr == '#')
563 1.55 christos continue; /* ignore, this is a comment line */
564 1.64 christos if ((error = parse_line(el, dptr)) == -1)
565 1.64 christos break;
566 1.1 cgd }
567 1.1 cgd
568 1.64 christos el_free(path);
569 1.19 lukem (void) fclose(fp);
570 1.68 christos return error;
571 1.1 cgd }
572 1.1 cgd
573 1.1 cgd
574 1.1 cgd /* el_resize():
575 1.1 cgd * Called from program when terminal is resized
576 1.1 cgd */
577 1.1 cgd public void
578 1.19 lukem el_resize(EditLine *el)
579 1.1 cgd {
580 1.19 lukem int lins, cols;
581 1.19 lukem sigset_t oset, nset;
582 1.19 lukem
583 1.19 lukem (void) sigemptyset(&nset);
584 1.19 lukem (void) sigaddset(&nset, SIGWINCH);
585 1.19 lukem (void) sigprocmask(SIG_BLOCK, &nset, &oset);
586 1.19 lukem
587 1.19 lukem /* get the correct window size */
588 1.64 christos if (terminal_get_size(el, &lins, &cols))
589 1.64 christos terminal_change_size(el, lins, cols);
590 1.1 cgd
591 1.19 lukem (void) sigprocmask(SIG_SETMASK, &oset, NULL);
592 1.9 christos }
593 1.14 lukem
594 1.9 christos
595 1.9 christos /* el_beep():
596 1.9 christos * Called from the program to beep
597 1.9 christos */
598 1.9 christos public void
599 1.19 lukem el_beep(EditLine *el)
600 1.9 christos {
601 1.19 lukem
602 1.64 christos terminal_beep(el);
603 1.1 cgd }
604 1.10 lukem
605 1.10 lukem
606 1.10 lukem /* el_editmode()
607 1.10 lukem * Set the state of EDIT_DISABLED from the `edit' command.
608 1.10 lukem */
609 1.10 lukem protected int
610 1.10 lukem /*ARGSUSED*/
611 1.56 christos el_editmode(EditLine *el, int argc, const Char **argv)
612 1.10 lukem {
613 1.56 christos const Char *how;
614 1.10 lukem
615 1.19 lukem if (argv == NULL || argc != 2 || argv[1] == NULL)
616 1.68 christos return -1;
617 1.10 lukem
618 1.19 lukem how = argv[1];
619 1.56 christos if (Strcmp(how, STR("on")) == 0) {
620 1.19 lukem el->el_flags &= ~EDIT_DISABLED;
621 1.39 christos tty_rawmode(el);
622 1.56 christos } else if (Strcmp(how, STR("off")) == 0) {
623 1.39 christos tty_cookedmode(el);
624 1.19 lukem el->el_flags |= EDIT_DISABLED;
625 1.39 christos }
626 1.19 lukem else {
627 1.56 christos (void) fprintf(el->el_errfile, "edit: Bad value `" FSTR "'.\n",
628 1.56 christos how);
629 1.68 christos return -1;
630 1.19 lukem }
631 1.68 christos return 0;
632 1.19 lukem }
633