readline.c revision 1.16 1 1.16 christos /* $NetBSD: readline.c,v 1.16 2001/01/04 15:55:53 christos Exp $ */
2 1.1 christos
3 1.1 christos /*-
4 1.1 christos * Copyright (c) 1997 The NetBSD Foundation, Inc.
5 1.1 christos * All rights reserved.
6 1.1 christos *
7 1.1 christos * This code is derived from software contributed to The NetBSD Foundation
8 1.1 christos * by Jaromir Dolecek.
9 1.1 christos *
10 1.1 christos * Redistribution and use in source and binary forms, with or without
11 1.1 christos * modification, are permitted provided that the following conditions
12 1.1 christos * are met:
13 1.1 christos * 1. Redistributions of source code must retain the above copyright
14 1.1 christos * notice, this list of conditions and the following disclaimer.
15 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 christos * notice, this list of conditions and the following disclaimer in the
17 1.1 christos * documentation and/or other materials provided with the distribution.
18 1.1 christos * 3. All advertising materials mentioning features or use of this software
19 1.1 christos * must display the following acknowledgement:
20 1.1 christos * This product includes software developed by the NetBSD
21 1.1 christos * Foundation, Inc. and its contributors.
22 1.1 christos * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 christos * contributors may be used to endorse or promote products derived
24 1.1 christos * from this software without specific prior written permission.
25 1.1 christos *
26 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 christos * POSSIBILITY OF SUCH DAMAGE.
37 1.1 christos */
38 1.1 christos
39 1.1 christos #include <sys/cdefs.h>
40 1.1 christos #if !defined(lint) && !defined(SCCSID)
41 1.16 christos __RCSID("$NetBSD: readline.c,v 1.16 2001/01/04 15:55:53 christos Exp $");
42 1.1 christos #endif /* not lint && not SCCSID */
43 1.1 christos
44 1.1 christos #include <sys/types.h>
45 1.1 christos #include <sys/stat.h>
46 1.1 christos #include <stdio.h>
47 1.1 christos #include <dirent.h>
48 1.1 christos #include <string.h>
49 1.1 christos #include <pwd.h>
50 1.1 christos #include <ctype.h>
51 1.1 christos #include <stdlib.h>
52 1.1 christos #include <unistd.h>
53 1.1 christos #include <limits.h>
54 1.1 christos #include "histedit.h"
55 1.1 christos #include "readline.h"
56 1.1 christos #include "sys.h"
57 1.1 christos #include "el.h"
58 1.12 jdolecek #include "fcns.h" /* for EL_NUM_FCNS */
59 1.1 christos
60 1.1 christos /* for rl_complete() */
61 1.11 lukem #define TAB '\r'
62 1.1 christos
63 1.1 christos /* see comment at the #ifdef for sense of this */
64 1.11 lukem #define GDB_411_HACK
65 1.1 christos
66 1.1 christos /* readline compatibility stuff - look at readline sources/documentation */
67 1.1 christos /* to see what these variables mean */
68 1.11 lukem const char *rl_library_version = "EditLine wrapper";
69 1.11 lukem char *rl_readline_name = "";
70 1.11 lukem FILE *rl_instream = NULL;
71 1.11 lukem FILE *rl_outstream = NULL;
72 1.11 lukem int rl_point = 0;
73 1.11 lukem int rl_end = 0;
74 1.11 lukem char *rl_line_buffer = NULL;
75 1.11 lukem
76 1.11 lukem int history_base = 1; /* probably never subject to change */
77 1.11 lukem int history_length = 0;
78 1.11 lukem int max_input_history = 0;
79 1.11 lukem char history_expansion_char = '!';
80 1.11 lukem char history_subst_char = '^';
81 1.11 lukem char *history_no_expand_chars = " \t\n=(";
82 1.11 lukem Function *history_inhibit_expansion_function = NULL;
83 1.11 lukem
84 1.11 lukem int rl_inhibit_completion = 0;
85 1.11 lukem int rl_attempted_completion_over = 0;
86 1.11 lukem char *rl_basic_word_break_characters = " \t\n\"\\'`@$><=;|&{(";
87 1.11 lukem char *rl_completer_word_break_characters = NULL;
88 1.11 lukem char *rl_completer_quote_characters = NULL;
89 1.11 lukem CPFunction *rl_completion_entry_function = NULL;
90 1.11 lukem CPPFunction *rl_attempted_completion_function = NULL;
91 1.1 christos
92 1.12 jdolecek /*
93 1.12 jdolecek * This is set to character indicating type of completion being done by
94 1.12 jdolecek * rl_complete_internal(); this is available for application completion
95 1.12 jdolecek * functions.
96 1.12 jdolecek */
97 1.12 jdolecek int rl_completion_type = 0;
98 1.12 jdolecek
99 1.12 jdolecek /*
100 1.12 jdolecek * If more than this number of items results from query for possible
101 1.12 jdolecek * completions, we ask user if they are sure to really display the list.
102 1.12 jdolecek */
103 1.12 jdolecek int rl_completion_query_items = 100;
104 1.12 jdolecek
105 1.12 jdolecek /*
106 1.15 jdolecek * List of characters which are word break characters, but should be left
107 1.15 jdolecek * in the parsed text when it is passed to the completion function.
108 1.15 jdolecek * Shell uses this to help determine what kind of completing to do.
109 1.12 jdolecek */
110 1.15 jdolecek char *rl_special_prefixes = (char *)NULL;
111 1.15 jdolecek
112 1.15 jdolecek /*
113 1.15 jdolecek * This is the character appended to the completed words if at the end of
114 1.15 jdolecek * the line. Default is ' ' (a space).
115 1.15 jdolecek */
116 1.15 jdolecek int rl_completion_append_character = ' ';
117 1.15 jdolecek
118 1.15 jdolecek /* stuff below is used internally by libedit for readline emulation */
119 1.15 jdolecek
120 1.15 jdolecek /* if not zero, non-unique completions always show list of possible matches */
121 1.12 jdolecek static int _rl_complete_show_all = 0;
122 1.12 jdolecek
123 1.1 christos static History *h = NULL;
124 1.1 christos static EditLine *e = NULL;
125 1.12 jdolecek static int el_rl_complete_cmdnum = 0;
126 1.1 christos
127 1.1 christos /* internal functions */
128 1.11 lukem static unsigned char _el_rl_complete(EditLine *, int);
129 1.11 lukem static char *_get_prompt(EditLine *);
130 1.11 lukem static HIST_ENTRY *_move_history(int);
131 1.11 lukem static int _history_search_gen(const char *, int, int);
132 1.11 lukem static int _history_expand_command(const char *, size_t, char **);
133 1.11 lukem static char *_rl_compat_sub(const char *, const char *,
134 1.11 lukem const char *, int);
135 1.11 lukem static int rl_complete_internal(int);
136 1.12 jdolecek static int _rl_qsort_string_compare(const void *, const void *);
137 1.1 christos
138 1.1 christos /*
139 1.9 jdolecek * needed for prompt switching in readline()
140 1.1 christos */
141 1.11 lukem static char *el_rl_prompt = NULL;
142 1.11 lukem
143 1.5 christos
144 1.5 christos /* ARGSUSED */
145 1.1 christos static char *
146 1.11 lukem _get_prompt(EditLine *el)
147 1.1 christos {
148 1.11 lukem return (el_rl_prompt);
149 1.1 christos }
150 1.1 christos
151 1.11 lukem
152 1.1 christos /*
153 1.1 christos * generic function for moving around history
154 1.1 christos */
155 1.2 christos static HIST_ENTRY *
156 1.11 lukem _move_history(int op)
157 1.1 christos {
158 1.1 christos HistEvent ev;
159 1.1 christos static HIST_ENTRY rl_he;
160 1.1 christos
161 1.1 christos if (history(h, &ev, op) != 0)
162 1.1 christos return (HIST_ENTRY *) NULL;
163 1.1 christos
164 1.1 christos rl_he.line = ev.str;
165 1.1 christos rl_he.data = "";
166 1.1 christos
167 1.11 lukem return (&rl_he);
168 1.1 christos }
169 1.1 christos
170 1.1 christos
171 1.7 simonb /*
172 1.7 simonb * READLINE compatibility stuff
173 1.1 christos */
174 1.1 christos
175 1.1 christos /*
176 1.1 christos * initialize rl compat stuff
177 1.1 christos */
178 1.1 christos int
179 1.11 lukem rl_initialize(void)
180 1.1 christos {
181 1.1 christos HistEvent ev;
182 1.1 christos const LineInfo *li;
183 1.12 jdolecek int i;
184 1.1 christos
185 1.1 christos if (e != NULL)
186 1.1 christos el_end(e);
187 1.1 christos if (h != NULL)
188 1.1 christos history_end(h);
189 1.1 christos
190 1.1 christos if (!rl_instream)
191 1.1 christos rl_instream = stdin;
192 1.1 christos if (!rl_outstream)
193 1.1 christos rl_outstream = stdout;
194 1.4 christos e = el_init(rl_readline_name, rl_instream, rl_outstream, stderr);
195 1.1 christos
196 1.1 christos h = history_init();
197 1.1 christos if (!e || !h)
198 1.11 lukem return (-1);
199 1.1 christos
200 1.4 christos history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */
201 1.1 christos history_length = 0;
202 1.1 christos max_input_history = INT_MAX;
203 1.1 christos el_set(e, EL_HIST, history, h);
204 1.1 christos
205 1.1 christos /* for proper prompt printing in readline() */
206 1.1 christos el_rl_prompt = strdup("");
207 1.1 christos el_set(e, EL_PROMPT, _get_prompt);
208 1.1 christos el_set(e, EL_SIGNAL, 1);
209 1.1 christos
210 1.1 christos /* set default mode to "emacs"-style and read setting afterwards */
211 1.1 christos /* so this can be overriden */
212 1.1 christos el_set(e, EL_EDITOR, "emacs");
213 1.1 christos
214 1.12 jdolecek /*
215 1.12 jdolecek * Word completition - this has to go AFTER rebinding keys
216 1.12 jdolecek * to emacs-style.
217 1.12 jdolecek */
218 1.1 christos el_set(e, EL_ADDFN, "rl_complete",
219 1.11 lukem "ReadLine compatible completition function",
220 1.11 lukem _el_rl_complete);
221 1.1 christos el_set(e, EL_BIND, "^I", "rl_complete", NULL);
222 1.1 christos
223 1.12 jdolecek /*
224 1.12 jdolecek * Find out where the rl_complete function was added; this is
225 1.12 jdolecek * used later to detect that lastcmd was also rl_complete.
226 1.12 jdolecek */
227 1.12 jdolecek for(i=EL_NUM_FCNS; i < e->el_map.nfunc; i++) {
228 1.12 jdolecek if (e->el_map.func[i] == _el_rl_complete) {
229 1.12 jdolecek el_rl_complete_cmdnum = i;
230 1.12 jdolecek break;
231 1.12 jdolecek }
232 1.12 jdolecek }
233 1.12 jdolecek
234 1.1 christos /* read settings from configuration file */
235 1.1 christos el_source(e, NULL);
236 1.1 christos
237 1.12 jdolecek /*
238 1.12 jdolecek * Unfortunately, some applications really do use rl_point
239 1.12 jdolecek * and rl_line_buffer directly.
240 1.12 jdolecek */
241 1.1 christos li = el_line(e);
242 1.5 christos /* LINTED const cast */
243 1.1 christos rl_line_buffer = (char *) li->buffer;
244 1.1 christos rl_point = rl_end = 0;
245 1.1 christos
246 1.11 lukem return (0);
247 1.1 christos }
248 1.1 christos
249 1.11 lukem
250 1.1 christos /*
251 1.1 christos * read one line from input stream and return it, chomping
252 1.1 christos * trailing newline (if there is any)
253 1.1 christos */
254 1.1 christos char *
255 1.1 christos readline(const char *prompt)
256 1.1 christos {
257 1.1 christos HistEvent ev;
258 1.3 thorpej int count;
259 1.1 christos const char *ret;
260 1.1 christos
261 1.1 christos if (e == NULL || h == NULL)
262 1.1 christos rl_initialize();
263 1.1 christos
264 1.9 jdolecek /* update prompt accordingly to what has been passed */
265 1.11 lukem if (!prompt)
266 1.11 lukem prompt = "";
267 1.1 christos if (strcmp(el_rl_prompt, prompt) != 0) {
268 1.1 christos free(el_rl_prompt);
269 1.1 christos el_rl_prompt = strdup(prompt);
270 1.1 christos }
271 1.1 christos /* get one line from input stream */
272 1.1 christos ret = el_gets(e, &count);
273 1.1 christos
274 1.1 christos if (ret && count > 0) {
275 1.1 christos char *foo;
276 1.5 christos int lastidx;
277 1.1 christos
278 1.1 christos foo = strdup(ret);
279 1.1 christos lastidx = count - 1;
280 1.1 christos if (foo[lastidx] == '\n')
281 1.1 christos foo[lastidx] = '\0';
282 1.1 christos
283 1.1 christos ret = foo;
284 1.1 christos } else
285 1.1 christos ret = NULL;
286 1.1 christos
287 1.1 christos history(h, &ev, H_GETSIZE);
288 1.1 christos history_length = ev.num;
289 1.1 christos
290 1.5 christos /* LINTED const cast */
291 1.1 christos return (char *) ret;
292 1.1 christos }
293 1.1 christos
294 1.1 christos /*
295 1.1 christos * history functions
296 1.1 christos */
297 1.1 christos
298 1.1 christos /*
299 1.1 christos * is normally called before application starts to use
300 1.1 christos * history expansion functions
301 1.1 christos */
302 1.1 christos void
303 1.11 lukem using_history(void)
304 1.1 christos {
305 1.1 christos if (h == NULL || e == NULL)
306 1.1 christos rl_initialize();
307 1.1 christos }
308 1.1 christos
309 1.11 lukem
310 1.1 christos /*
311 1.1 christos * substitute ``what'' with ``with'', returning resulting string; if
312 1.1 christos * globally == 1, substitutes all occurences of what, otherwise only the
313 1.1 christos * first one
314 1.1 christos */
315 1.11 lukem static char *
316 1.11 lukem _rl_compat_sub(const char *str, const char *what, const char *with,
317 1.11 lukem int globally)
318 1.11 lukem {
319 1.11 lukem char *result;
320 1.11 lukem const char *temp, *new;
321 1.11 lukem int len, with_len, what_len, add;
322 1.11 lukem size_t size, i;
323 1.1 christos
324 1.1 christos result = malloc((size = 16));
325 1.1 christos temp = str;
326 1.1 christos with_len = strlen(with);
327 1.1 christos what_len = strlen(what);
328 1.1 christos len = 0;
329 1.1 christos do {
330 1.1 christos new = strstr(temp, what);
331 1.1 christos if (new) {
332 1.1 christos i = new - temp;
333 1.1 christos add = i + with_len;
334 1.1 christos if (i + add + 1 >= size) {
335 1.1 christos size += add + 1;
336 1.1 christos result = realloc(result, size);
337 1.1 christos }
338 1.11 lukem (void) strncpy(&result[len], temp, i);
339 1.1 christos len += i;
340 1.11 lukem (void) strcpy(&result[len], with); /* safe */
341 1.1 christos len += with_len;
342 1.1 christos temp = new + what_len;
343 1.1 christos } else {
344 1.1 christos add = strlen(temp);
345 1.1 christos if (len + add + 1 >= size) {
346 1.1 christos size += add + 1;
347 1.1 christos result = realloc(result, size);
348 1.1 christos }
349 1.11 lukem (void) strcpy(&result[len], temp); /* safe */
350 1.1 christos len += add;
351 1.1 christos temp = NULL;
352 1.1 christos }
353 1.10 jdolecek } while (temp && globally);
354 1.1 christos result[len] = '\0';
355 1.1 christos
356 1.11 lukem return (result);
357 1.1 christos }
358 1.1 christos
359 1.11 lukem
360 1.1 christos /*
361 1.1 christos * the real function doing history expansion - takes as argument command
362 1.1 christos * to do and data upon which the command should be executed
363 1.1 christos * does expansion the way I've understood readline documentation
364 1.1 christos * word designator ``%'' isn't supported (yet ?)
365 1.1 christos *
366 1.1 christos * returns 0 if data was not modified, 1 if it was and 2 if the string
367 1.1 christos * should be only printed and not executed; in case of error,
368 1.1 christos * returns -1 and *result points to NULL
369 1.1 christos * it's callers responsibility to free() string returned in *result
370 1.1 christos */
371 1.1 christos static int
372 1.11 lukem _history_expand_command(const char *command, size_t cmdlen, char **result)
373 1.11 lukem {
374 1.11 lukem char **arr, *tempcmd, *line, *search = NULL, *cmd;
375 1.11 lukem const char *event_data = NULL;
376 1.11 lukem static char *from = NULL, *to = NULL;
377 1.11 lukem int start = -1, end = -1, max, i, idx;
378 1.11 lukem int h_on = 0, t_on = 0, r_on = 0, e_on = 0, p_on = 0, g_on = 0;
379 1.11 lukem int event_num = 0, retval;
380 1.11 lukem size_t cmdsize;
381 1.1 christos
382 1.1 christos *result = NULL;
383 1.1 christos
384 1.5 christos cmd = alloca(cmdlen + 1);
385 1.11 lukem (void) strncpy(cmd, command, cmdlen);
386 1.5 christos cmd[cmdlen] = 0;
387 1.1 christos
388 1.1 christos idx = 1;
389 1.1 christos /* find out which event to take */
390 1.1 christos if (cmd[idx] == history_expansion_char) {
391 1.1 christos event_num = history_length;
392 1.1 christos idx++;
393 1.1 christos } else {
394 1.11 lukem int off, num;
395 1.5 christos size_t len;
396 1.1 christos off = idx;
397 1.1 christos while (cmd[off] && !strchr(":^$*-%", cmd[off]))
398 1.1 christos off++;
399 1.1 christos num = atoi(&cmd[idx]);
400 1.1 christos if (num != 0) {
401 1.1 christos event_num = num;
402 1.1 christos if (num < 0)
403 1.1 christos event_num += history_length + 1;
404 1.1 christos } else {
405 1.1 christos int prefix = 1, curr_num;
406 1.1 christos HistEvent ev;
407 1.1 christos
408 1.1 christos len = off - idx;
409 1.1 christos if (cmd[idx] == '?') {
410 1.1 christos idx++, len--;
411 1.1 christos if (cmd[off - 1] == '?')
412 1.1 christos len--;
413 1.1 christos else if (cmd[off] != '\n' && cmd[off] != '\0')
414 1.11 lukem return (-1);
415 1.1 christos prefix = 0;
416 1.1 christos }
417 1.1 christos search = alloca(len + 1);
418 1.11 lukem (void) strncpy(search, &cmd[idx], len);
419 1.1 christos search[len] = '\0';
420 1.1 christos
421 1.1 christos if (history(h, &ev, H_CURR) != 0)
422 1.11 lukem return (-1);
423 1.1 christos curr_num = ev.num;
424 1.1 christos
425 1.1 christos if (prefix)
426 1.1 christos retval = history_search_prefix(search, -1);
427 1.1 christos else
428 1.1 christos retval = history_search(search, -1);
429 1.1 christos
430 1.1 christos if (retval == -1) {
431 1.1 christos fprintf(rl_outstream, "%s: Event not found\n",
432 1.11 lukem search);
433 1.11 lukem return (-1);
434 1.1 christos }
435 1.1 christos if (history(h, &ev, H_CURR) != 0)
436 1.11 lukem return (-1);
437 1.1 christos event_data = ev.str;
438 1.1 christos
439 1.1 christos /* roll back to original position */
440 1.1 christos history(h, &ev, H_NEXT_EVENT, curr_num);
441 1.1 christos }
442 1.1 christos idx = off;
443 1.1 christos }
444 1.1 christos
445 1.1 christos if (!event_data && event_num >= 0) {
446 1.2 christos HIST_ENTRY *rl_he;
447 1.1 christos rl_he = history_get(event_num);
448 1.1 christos if (!rl_he)
449 1.11 lukem return (0);
450 1.1 christos event_data = rl_he->line;
451 1.1 christos } else
452 1.11 lukem return (-1);
453 1.1 christos
454 1.1 christos if (cmd[idx] != ':')
455 1.11 lukem return (-1);
456 1.1 christos cmd += idx + 1;
457 1.1 christos
458 1.1 christos /* recognize cmd */
459 1.1 christos if (*cmd == '^')
460 1.1 christos start = end = 1, cmd++;
461 1.1 christos else if (*cmd == '$')
462 1.1 christos start = end = -1, cmd++;
463 1.1 christos else if (*cmd == '*')
464 1.1 christos start = 1, end = -1, cmd++;
465 1.4 christos else if (isdigit((unsigned char) *cmd)) {
466 1.1 christos const char *temp;
467 1.1 christos int shifted = 0;
468 1.1 christos
469 1.1 christos start = atoi(cmd);
470 1.1 christos temp = cmd;
471 1.4 christos for (; isdigit((unsigned char) *cmd); cmd++);
472 1.1 christos if (temp != cmd)
473 1.1 christos shifted = 1;
474 1.1 christos if (shifted && *cmd == '-') {
475 1.4 christos if (!isdigit((unsigned char) *(cmd + 1)))
476 1.1 christos end = -2;
477 1.1 christos else {
478 1.1 christos end = atoi(cmd + 1);
479 1.4 christos for (; isdigit((unsigned char) *cmd); cmd++);
480 1.1 christos }
481 1.1 christos } else if (shifted && *cmd == '*')
482 1.1 christos end = -1, cmd++;
483 1.1 christos else if (shifted)
484 1.1 christos end = start;
485 1.1 christos }
486 1.1 christos if (*cmd == ':')
487 1.1 christos cmd++;
488 1.1 christos
489 1.1 christos line = strdup(event_data);
490 1.1 christos for (; *cmd; cmd++) {
491 1.1 christos if (*cmd == ':')
492 1.1 christos continue;
493 1.1 christos else if (*cmd == 'h')
494 1.1 christos h_on = 1 | g_on, g_on = 0;
495 1.1 christos else if (*cmd == 't')
496 1.1 christos t_on = 1 | g_on, g_on = 0;
497 1.1 christos else if (*cmd == 'r')
498 1.1 christos r_on = 1 | g_on, g_on = 0;
499 1.1 christos else if (*cmd == 'e')
500 1.1 christos e_on = 1 | g_on, g_on = 0;
501 1.1 christos else if (*cmd == 'p')
502 1.1 christos p_on = 1 | g_on, g_on = 0;
503 1.1 christos else if (*cmd == 'g')
504 1.1 christos g_on = 2;
505 1.1 christos else if (*cmd == 's' || *cmd == '&') {
506 1.11 lukem char *what, *with, delim;
507 1.11 lukem int len, from_len;
508 1.5 christos size_t size;
509 1.1 christos
510 1.1 christos if (*cmd == '&' && (from == NULL || to == NULL))
511 1.1 christos continue;
512 1.1 christos else if (*cmd == 's') {
513 1.1 christos delim = *(++cmd), cmd++;
514 1.1 christos size = 16;
515 1.5 christos what = realloc(from, size);
516 1.1 christos len = 0;
517 1.1 christos for (; *cmd && *cmd != delim; cmd++) {
518 1.1 christos if (*cmd == '\\'
519 1.1 christos && *(cmd + 1) == delim)
520 1.1 christos cmd++;
521 1.1 christos if (len >= size)
522 1.1 christos what = realloc(what,
523 1.1 christos (size <<= 1));
524 1.1 christos what[len++] = *cmd;
525 1.1 christos }
526 1.1 christos what[len] = '\0';
527 1.1 christos from = what;
528 1.1 christos if (*what == '\0') {
529 1.1 christos free(what);
530 1.1 christos if (search)
531 1.1 christos from = strdup(search);
532 1.1 christos else {
533 1.1 christos from = NULL;
534 1.11 lukem return (-1);
535 1.1 christos }
536 1.1 christos }
537 1.1 christos cmd++; /* shift after delim */
538 1.1 christos if (!*cmd)
539 1.1 christos continue;
540 1.1 christos
541 1.1 christos size = 16;
542 1.5 christos with = realloc(to, size);
543 1.1 christos len = 0;
544 1.1 christos from_len = strlen(from);
545 1.1 christos for (; *cmd && *cmd != delim; cmd++) {
546 1.1 christos if (len + from_len + 1 >= size) {
547 1.1 christos size += from_len + 1;
548 1.1 christos with = realloc(with, size);
549 1.1 christos }
550 1.1 christos if (*cmd == '&') {
551 1.1 christos /* safe */
552 1.11 lukem (void) strcpy(&with[len], from);
553 1.1 christos len += from_len;
554 1.1 christos continue;
555 1.1 christos }
556 1.1 christos if (*cmd == '\\'
557 1.1 christos && (*(cmd + 1) == delim
558 1.1 christos || *(cmd + 1) == '&'))
559 1.1 christos cmd++;
560 1.1 christos with[len++] = *cmd;
561 1.1 christos }
562 1.1 christos with[len] = '\0';
563 1.1 christos to = with;
564 1.1 christos
565 1.7 simonb tempcmd = _rl_compat_sub(line, from, to,
566 1.1 christos (g_on) ? 1 : 0);
567 1.1 christos free(line);
568 1.5 christos line = tempcmd;
569 1.1 christos g_on = 0;
570 1.1 christos }
571 1.1 christos }
572 1.1 christos }
573 1.1 christos
574 1.1 christos arr = history_tokenize(line);
575 1.1 christos free(line); /* no more needed */
576 1.1 christos if (arr && *arr == NULL)
577 1.1 christos free(arr), arr = NULL;
578 1.1 christos if (!arr)
579 1.11 lukem return (-1);
580 1.1 christos
581 1.1 christos /* find out max valid idx to array of array */
582 1.1 christos max = 0;
583 1.1 christos for (i = 0; arr[i]; i++)
584 1.1 christos max++;
585 1.1 christos max--;
586 1.1 christos
587 1.1 christos /* set boundaries to something relevant */
588 1.1 christos if (start < 0)
589 1.1 christos start = 1;
590 1.1 christos if (end < 0)
591 1.1 christos end = max - ((end < -1) ? 1 : 0);
592 1.1 christos
593 1.1 christos /* check boundaries ... */
594 1.1 christos if (start > max || end > max || start > end)
595 1.11 lukem return (-1);
596 1.1 christos
597 1.1 christos for (i = 0; i <= max; i++) {
598 1.11 lukem char *temp;
599 1.1 christos if (h_on && (i == 1 || h_on > 1) &&
600 1.1 christos (temp = strrchr(arr[i], '/')))
601 1.1 christos *(temp + 1) = '\0';
602 1.1 christos if (t_on && (i == 1 || t_on > 1) &&
603 1.1 christos (temp = strrchr(arr[i], '/')))
604 1.11 lukem (void) strcpy(arr[i], temp + 1);
605 1.1 christos if (r_on && (i == 1 || r_on > 1) &&
606 1.1 christos (temp = strrchr(arr[i], '.')))
607 1.1 christos *temp = '\0';
608 1.1 christos if (e_on && (i == 1 || e_on > 1) &&
609 1.1 christos (temp = strrchr(arr[i], '.')))
610 1.11 lukem (void) strcpy(arr[i], temp);
611 1.1 christos }
612 1.1 christos
613 1.5 christos cmdsize = 1, cmdlen = 0;
614 1.5 christos tempcmd = malloc(cmdsize);
615 1.1 christos for (i = start; start <= i && i <= end; i++) {
616 1.11 lukem int arr_len;
617 1.1 christos
618 1.1 christos arr_len = strlen(arr[i]);
619 1.5 christos if (cmdlen + arr_len + 1 >= cmdsize) {
620 1.5 christos cmdsize += arr_len + 1;
621 1.5 christos tempcmd = realloc(tempcmd, cmdsize);
622 1.1 christos }
623 1.11 lukem (void) strcpy(&tempcmd[cmdlen], arr[i]); /* safe */
624 1.5 christos cmdlen += arr_len;
625 1.5 christos tempcmd[cmdlen++] = ' '; /* add a space */
626 1.5 christos }
627 1.5 christos while (cmdlen > 0 && isspace((unsigned char) tempcmd[cmdlen - 1]))
628 1.5 christos cmdlen--;
629 1.5 christos tempcmd[cmdlen] = '\0';
630 1.1 christos
631 1.5 christos *result = tempcmd;
632 1.1 christos
633 1.1 christos for (i = 0; i <= max; i++)
634 1.1 christos free(arr[i]);
635 1.1 christos free(arr), arr = (char **) NULL;
636 1.1 christos return (p_on) ? 2 : 1;
637 1.1 christos }
638 1.1 christos
639 1.11 lukem
640 1.1 christos /*
641 1.1 christos * csh-style history expansion
642 1.1 christos */
643 1.1 christos int
644 1.11 lukem history_expand(char *str, char **output)
645 1.11 lukem {
646 1.11 lukem int i, retval = 0, idx;
647 1.11 lukem size_t size;
648 1.11 lukem char *temp, *result;
649 1.1 christos
650 1.1 christos if (h == NULL || e == NULL)
651 1.1 christos rl_initialize();
652 1.1 christos
653 1.1 christos *output = strdup(str); /* do it early */
654 1.1 christos
655 1.1 christos if (str[0] == history_subst_char) {
656 1.1 christos /* ^foo^foo2^ is equivalent to !!:s^foo^foo2^ */
657 1.1 christos temp = alloca(4 + strlen(str) + 1);
658 1.1 christos temp[0] = temp[1] = history_expansion_char;
659 1.1 christos temp[2] = ':';
660 1.1 christos temp[3] = 's';
661 1.11 lukem (void) strcpy(temp + 4, str);
662 1.1 christos str = temp;
663 1.1 christos }
664 1.11 lukem #define ADD_STRING(what, len) \
665 1.1 christos { \
666 1.1 christos if (idx + len + 1 > size) \
667 1.1 christos result = realloc(result, (size += len + 1)); \
668 1.1 christos (void)strncpy(&result[idx], what, len); \
669 1.1 christos idx += len; \
670 1.1 christos result[idx] = '\0'; \
671 1.1 christos }
672 1.1 christos
673 1.1 christos result = NULL;
674 1.1 christos size = idx = 0;
675 1.1 christos for (i = 0; str[i];) {
676 1.5 christos int start, j, loop_again;
677 1.5 christos size_t len;
678 1.1 christos
679 1.1 christos loop_again = 1;
680 1.1 christos start = j = i;
681 1.1 christos loop:
682 1.1 christos for (; str[j]; j++) {
683 1.1 christos if (str[j] == '\\' &&
684 1.1 christos str[j + 1] == history_expansion_char) {
685 1.11 lukem (void) strcpy(&str[j], &str[j + 1]);
686 1.1 christos continue;
687 1.1 christos }
688 1.1 christos if (!loop_again) {
689 1.1 christos if (str[j] == '?') {
690 1.1 christos while (str[j] && str[++j] != '?');
691 1.1 christos if (str[j] == '?')
692 1.1 christos j++;
693 1.4 christos } else if (isspace((unsigned char) str[j]))
694 1.1 christos break;
695 1.1 christos }
696 1.1 christos if (str[j] == history_expansion_char
697 1.1 christos && !strchr(history_no_expand_chars, str[j + 1])
698 1.1 christos && (!history_inhibit_expansion_function ||
699 1.11 lukem (*history_inhibit_expansion_function)(str, j) == 0))
700 1.1 christos break;
701 1.1 christos }
702 1.1 christos
703 1.1 christos if (str[j] && str[j + 1] != '#' && loop_again) {
704 1.1 christos i = j;
705 1.1 christos j++;
706 1.1 christos if (str[j] == history_expansion_char)
707 1.1 christos j++;
708 1.1 christos loop_again = 0;
709 1.1 christos goto loop;
710 1.1 christos }
711 1.1 christos len = i - start;
712 1.1 christos temp = &str[start];
713 1.1 christos ADD_STRING(temp, len);
714 1.1 christos
715 1.1 christos if (str[i] == '\0' || str[i] != history_expansion_char
716 1.1 christos || str[i + 1] == '#') {
717 1.1 christos len = j - i;
718 1.1 christos temp = &str[i];
719 1.1 christos ADD_STRING(temp, len);
720 1.1 christos if (start == 0)
721 1.1 christos retval = 0;
722 1.1 christos else
723 1.1 christos retval = 1;
724 1.1 christos break;
725 1.1 christos }
726 1.11 lukem retval = _history_expand_command(&str[i], (size_t) (j - i),
727 1.11 lukem &temp);
728 1.1 christos if (retval != -1) {
729 1.1 christos len = strlen(temp);
730 1.1 christos ADD_STRING(temp, len);
731 1.1 christos }
732 1.1 christos i = j;
733 1.1 christos } /* for(i ...) */
734 1.1 christos
735 1.1 christos if (retval == 2) {
736 1.1 christos add_history(temp);
737 1.1 christos #ifdef GDB_411_HACK
738 1.1 christos /* gdb 4.11 has been shipped with readline, where */
739 1.1 christos /* history_expand() returned -1 when the line */
740 1.1 christos /* should not be executed; in readline 2.1+ */
741 1.1 christos /* it should return 2 in such a case */
742 1.1 christos retval = -1;
743 1.1 christos #endif
744 1.1 christos }
745 1.1 christos free(*output);
746 1.1 christos *output = result;
747 1.1 christos
748 1.11 lukem return (retval);
749 1.1 christos }
750 1.1 christos
751 1.11 lukem
752 1.1 christos /*
753 1.9 jdolecek * Parse the string into individual tokens, similarily to how shell would do it.
754 1.1 christos */
755 1.1 christos char **
756 1.11 lukem history_tokenize(const char *str)
757 1.1 christos {
758 1.11 lukem int size = 1, result_idx = 0, i, start;
759 1.5 christos size_t len;
760 1.1 christos char **result = NULL, *temp, delim = '\0';
761 1.1 christos
762 1.1 christos for (i = 0; str[i]; i++) {
763 1.4 christos while (isspace((unsigned char) str[i]))
764 1.1 christos i++;
765 1.1 christos start = i;
766 1.1 christos for (; str[i]; i++) {
767 1.9 jdolecek if (str[i] == '\\') {
768 1.14 jdolecek if (str[i+1] != '\0')
769 1.9 jdolecek i++;
770 1.9 jdolecek } else if (str[i] == delim)
771 1.1 christos delim = '\0';
772 1.1 christos else if (!delim &&
773 1.11 lukem (isspace((unsigned char) str[i]) ||
774 1.11 lukem strchr("()<>;&|$", str[i])))
775 1.1 christos break;
776 1.1 christos else if (!delim && strchr("'`\"", str[i]))
777 1.1 christos delim = str[i];
778 1.1 christos }
779 1.1 christos
780 1.1 christos if (result_idx + 2 >= size) {
781 1.1 christos size <<= 1;
782 1.1 christos result = realloc(result, size * sizeof(char *));
783 1.1 christos }
784 1.1 christos len = i - start;
785 1.1 christos temp = malloc(len + 1);
786 1.11 lukem (void) strncpy(temp, &str[start], len);
787 1.1 christos temp[len] = '\0';
788 1.1 christos result[result_idx++] = temp;
789 1.1 christos result[result_idx] = NULL;
790 1.1 christos }
791 1.1 christos
792 1.11 lukem return (result);
793 1.1 christos }
794 1.1 christos
795 1.11 lukem
796 1.1 christos /*
797 1.1 christos * limit size of history record to ``max'' events
798 1.1 christos */
799 1.1 christos void
800 1.11 lukem stifle_history(int max)
801 1.1 christos {
802 1.1 christos HistEvent ev;
803 1.1 christos
804 1.1 christos if (h == NULL || e == NULL)
805 1.1 christos rl_initialize();
806 1.1 christos
807 1.4 christos if (history(h, &ev, H_SETSIZE, max) == 0)
808 1.1 christos max_input_history = max;
809 1.1 christos }
810 1.1 christos
811 1.11 lukem
812 1.1 christos /*
813 1.1 christos * "unlimit" size of history - set the limit to maximum allowed int value
814 1.1 christos */
815 1.1 christos int
816 1.11 lukem unstifle_history(void)
817 1.1 christos {
818 1.1 christos HistEvent ev;
819 1.1 christos int omax;
820 1.1 christos
821 1.4 christos history(h, &ev, H_SETSIZE, INT_MAX);
822 1.1 christos omax = max_input_history;
823 1.1 christos max_input_history = INT_MAX;
824 1.11 lukem return (omax); /* some value _must_ be returned */
825 1.1 christos }
826 1.1 christos
827 1.11 lukem
828 1.1 christos int
829 1.11 lukem history_is_stifled(void)
830 1.1 christos {
831 1.11 lukem
832 1.1 christos /* cannot return true answer */
833 1.1 christos return (max_input_history != INT_MAX);
834 1.1 christos }
835 1.1 christos
836 1.11 lukem
837 1.1 christos /*
838 1.1 christos * read history from a file given
839 1.1 christos */
840 1.1 christos int
841 1.11 lukem read_history(const char *filename)
842 1.1 christos {
843 1.1 christos HistEvent ev;
844 1.1 christos
845 1.1 christos if (h == NULL || e == NULL)
846 1.1 christos rl_initialize();
847 1.11 lukem return (history(h, &ev, H_LOAD, filename));
848 1.1 christos }
849 1.1 christos
850 1.11 lukem
851 1.1 christos /*
852 1.1 christos * write history to a file given
853 1.1 christos */
854 1.1 christos int
855 1.11 lukem write_history(const char *filename)
856 1.1 christos {
857 1.1 christos HistEvent ev;
858 1.1 christos
859 1.1 christos if (h == NULL || e == NULL)
860 1.1 christos rl_initialize();
861 1.11 lukem return (history(h, &ev, H_SAVE, filename));
862 1.1 christos }
863 1.1 christos
864 1.11 lukem
865 1.1 christos /*
866 1.1 christos * returns history ``num''th event
867 1.1 christos *
868 1.1 christos * returned pointer points to static variable
869 1.1 christos */
870 1.2 christos HIST_ENTRY *
871 1.11 lukem history_get(int num)
872 1.1 christos {
873 1.1 christos static HIST_ENTRY she;
874 1.1 christos HistEvent ev;
875 1.1 christos int i = 1, curr_num;
876 1.1 christos
877 1.1 christos if (h == NULL || e == NULL)
878 1.1 christos rl_initialize();
879 1.1 christos
880 1.1 christos /* rewind to beginning */
881 1.1 christos if (history(h, &ev, H_CURR) != 0)
882 1.11 lukem return (NULL);
883 1.1 christos curr_num = ev.num;
884 1.1 christos if (history(h, &ev, H_LAST) != 0)
885 1.11 lukem return (NULL); /* error */
886 1.1 christos while (i < num && history(h, &ev, H_PREV) == 0)
887 1.1 christos i++;
888 1.1 christos if (i != num)
889 1.11 lukem return (NULL); /* not so many entries */
890 1.1 christos
891 1.1 christos she.line = ev.str;
892 1.1 christos she.data = NULL;
893 1.1 christos
894 1.1 christos /* rewind history to the same event it was before */
895 1.1 christos (void) history(h, &ev, H_FIRST);
896 1.1 christos (void) history(h, &ev, H_NEXT_EVENT, curr_num);
897 1.1 christos
898 1.11 lukem return (&she);
899 1.1 christos }
900 1.1 christos
901 1.11 lukem
902 1.1 christos /*
903 1.1 christos * add the line to history table
904 1.1 christos */
905 1.1 christos int
906 1.11 lukem add_history(const char *line)
907 1.1 christos {
908 1.1 christos HistEvent ev;
909 1.1 christos
910 1.1 christos if (h == NULL || e == NULL)
911 1.1 christos rl_initialize();
912 1.1 christos
913 1.1 christos (void) history(h, &ev, H_ENTER, line);
914 1.1 christos if (history(h, &ev, H_GETSIZE) == 0)
915 1.1 christos history_length = ev.num;
916 1.1 christos
917 1.1 christos return (!(history_length > 0)); /* return 0 if all is okay */
918 1.1 christos }
919 1.1 christos
920 1.11 lukem
921 1.1 christos /*
922 1.1 christos * clear the history list - delete all entries
923 1.1 christos */
924 1.1 christos void
925 1.11 lukem clear_history(void)
926 1.1 christos {
927 1.1 christos HistEvent ev;
928 1.11 lukem
929 1.1 christos history(h, &ev, H_CLEAR);
930 1.1 christos }
931 1.1 christos
932 1.11 lukem
933 1.1 christos /*
934 1.1 christos * returns offset of the current history event
935 1.1 christos */
936 1.1 christos int
937 1.11 lukem where_history(void)
938 1.1 christos {
939 1.1 christos HistEvent ev;
940 1.1 christos int curr_num, off;
941 1.1 christos
942 1.1 christos if (history(h, &ev, H_CURR) != 0)
943 1.11 lukem return (0);
944 1.1 christos curr_num = ev.num;
945 1.1 christos
946 1.1 christos history(h, &ev, H_FIRST);
947 1.1 christos off = 1;
948 1.1 christos while (ev.num != curr_num && history(h, &ev, H_NEXT) == 0)
949 1.1 christos off++;
950 1.1 christos
951 1.11 lukem return (off);
952 1.1 christos }
953 1.1 christos
954 1.11 lukem
955 1.1 christos /*
956 1.1 christos * returns current history event or NULL if there is no such event
957 1.1 christos */
958 1.2 christos HIST_ENTRY *
959 1.11 lukem current_history(void)
960 1.1 christos {
961 1.11 lukem
962 1.11 lukem return (_move_history(H_CURR));
963 1.1 christos }
964 1.1 christos
965 1.11 lukem
966 1.1 christos /*
967 1.1 christos * returns total number of bytes history events' data are using
968 1.1 christos */
969 1.1 christos int
970 1.11 lukem history_total_bytes(void)
971 1.1 christos {
972 1.1 christos HistEvent ev;
973 1.1 christos int curr_num, size;
974 1.1 christos
975 1.1 christos if (history(h, &ev, H_CURR) != 0)
976 1.11 lukem return (-1);
977 1.1 christos curr_num = ev.num;
978 1.1 christos
979 1.1 christos history(h, &ev, H_FIRST);
980 1.1 christos size = 0;
981 1.1 christos do
982 1.1 christos size += strlen(ev.str);
983 1.1 christos while (history(h, &ev, H_NEXT) == 0);
984 1.1 christos
985 1.1 christos /* get to the same position as before */
986 1.1 christos history(h, &ev, H_PREV_EVENT, curr_num);
987 1.1 christos
988 1.11 lukem return (size);
989 1.1 christos }
990 1.1 christos
991 1.11 lukem
992 1.1 christos /*
993 1.1 christos * sets the position in the history list to ``pos''
994 1.1 christos */
995 1.1 christos int
996 1.11 lukem history_set_pos(int pos)
997 1.1 christos {
998 1.1 christos HistEvent ev;
999 1.1 christos int off, curr_num;
1000 1.1 christos
1001 1.1 christos if (pos > history_length || pos < 0)
1002 1.11 lukem return (-1);
1003 1.1 christos
1004 1.1 christos history(h, &ev, H_CURR);
1005 1.1 christos curr_num = ev.num;
1006 1.1 christos history(h, &ev, H_FIRST);
1007 1.1 christos off = 0;
1008 1.1 christos while (off < pos && history(h, &ev, H_NEXT) == 0)
1009 1.1 christos off++;
1010 1.1 christos
1011 1.1 christos if (off != pos) { /* do a rollback in case of error */
1012 1.1 christos history(h, &ev, H_FIRST);
1013 1.1 christos history(h, &ev, H_NEXT_EVENT, curr_num);
1014 1.11 lukem return (-1);
1015 1.1 christos }
1016 1.11 lukem return (0);
1017 1.1 christos }
1018 1.1 christos
1019 1.11 lukem
1020 1.1 christos /*
1021 1.1 christos * returns previous event in history and shifts pointer accordingly
1022 1.1 christos */
1023 1.2 christos HIST_ENTRY *
1024 1.11 lukem previous_history(void)
1025 1.1 christos {
1026 1.11 lukem
1027 1.11 lukem return (_move_history(H_PREV));
1028 1.1 christos }
1029 1.1 christos
1030 1.11 lukem
1031 1.1 christos /*
1032 1.1 christos * returns next event in history and shifts pointer accordingly
1033 1.1 christos */
1034 1.2 christos HIST_ENTRY *
1035 1.11 lukem next_history(void)
1036 1.1 christos {
1037 1.11 lukem
1038 1.11 lukem return (_move_history(H_NEXT));
1039 1.1 christos }
1040 1.1 christos
1041 1.11 lukem
1042 1.1 christos /*
1043 1.1 christos * generic history search function
1044 1.1 christos */
1045 1.1 christos static int
1046 1.11 lukem _history_search_gen(const char *str, int direction, int pos)
1047 1.11 lukem {
1048 1.11 lukem HistEvent ev;
1049 1.11 lukem const char *strp;
1050 1.11 lukem int curr_num;
1051 1.1 christos
1052 1.1 christos if (history(h, &ev, H_CURR) != 0)
1053 1.11 lukem return (-1);
1054 1.1 christos curr_num = ev.num;
1055 1.1 christos
1056 1.1 christos for (;;) {
1057 1.1 christos strp = strstr(ev.str, str);
1058 1.1 christos if (strp && (pos < 0 || &ev.str[pos] == strp))
1059 1.1 christos return (int) (strp - ev.str);
1060 1.1 christos if (history(h, &ev, direction < 0 ? H_PREV : H_NEXT) != 0)
1061 1.1 christos break;
1062 1.1 christos }
1063 1.1 christos
1064 1.1 christos history(h, &ev, direction < 0 ? H_NEXT_EVENT : H_PREV_EVENT, curr_num);
1065 1.1 christos
1066 1.11 lukem return (-1);
1067 1.1 christos }
1068 1.1 christos
1069 1.11 lukem
1070 1.1 christos /*
1071 1.1 christos * searches for first history event containing the str
1072 1.1 christos */
1073 1.1 christos int
1074 1.11 lukem history_search(const char *str, int direction)
1075 1.1 christos {
1076 1.11 lukem
1077 1.11 lukem return (_history_search_gen(str, direction, -1));
1078 1.1 christos }
1079 1.1 christos
1080 1.11 lukem
1081 1.1 christos /*
1082 1.1 christos * searches for first history event beginning with str
1083 1.1 christos */
1084 1.1 christos int
1085 1.11 lukem history_search_prefix(const char *str, int direction)
1086 1.1 christos {
1087 1.11 lukem
1088 1.11 lukem return (_history_search_gen(str, direction, 0));
1089 1.1 christos }
1090 1.1 christos
1091 1.11 lukem
1092 1.1 christos /*
1093 1.1 christos * search for event in history containing str, starting at offset
1094 1.1 christos * abs(pos); continue backward, if pos<0, forward otherwise
1095 1.1 christos */
1096 1.5 christos /* ARGSUSED */
1097 1.1 christos int
1098 1.11 lukem history_search_pos(const char *str, int direction, int pos)
1099 1.1 christos {
1100 1.11 lukem HistEvent ev;
1101 1.11 lukem int curr_num, off;
1102 1.1 christos
1103 1.1 christos off = (pos > 0) ? pos : -pos;
1104 1.1 christos pos = (pos > 0) ? 1 : -1;
1105 1.1 christos
1106 1.1 christos if (history(h, &ev, H_CURR) != 0)
1107 1.11 lukem return (-1);
1108 1.1 christos curr_num = ev.num;
1109 1.1 christos
1110 1.1 christos if (history_set_pos(off) != 0 || history(h, &ev, H_CURR) != 0)
1111 1.11 lukem return (-1);
1112 1.1 christos
1113 1.1 christos
1114 1.1 christos for (;;) {
1115 1.1 christos if (strstr(ev.str, str))
1116 1.11 lukem return (off);
1117 1.1 christos if (history(h, &ev, (pos < 0) ? H_PREV : H_NEXT) != 0)
1118 1.1 christos break;
1119 1.1 christos }
1120 1.1 christos
1121 1.1 christos /* set "current" pointer back to previous state */
1122 1.1 christos history(h, &ev, (pos < 0) ? H_NEXT_EVENT : H_PREV_EVENT, curr_num);
1123 1.1 christos
1124 1.11 lukem return (-1);
1125 1.1 christos }
1126 1.1 christos
1127 1.1 christos
1128 1.1 christos /********************************/
1129 1.11 lukem /* completition functions */
1130 1.1 christos
1131 1.1 christos /*
1132 1.1 christos * does tilde expansion of strings of type ``~user/foo''
1133 1.1 christos * if ``user'' isn't valid user name or ``txt'' doesn't start
1134 1.1 christos * w/ '~', returns pointer to strdup()ed copy of ``txt''
1135 1.1 christos *
1136 1.1 christos * it's callers's responsibility to free() returned string
1137 1.1 christos */
1138 1.2 christos char *
1139 1.11 lukem tilde_expand(char *txt)
1140 1.1 christos {
1141 1.11 lukem struct passwd *pass;
1142 1.11 lukem char *temp;
1143 1.11 lukem size_t len = 0;
1144 1.1 christos
1145 1.1 christos if (txt[0] != '~')
1146 1.11 lukem return (strdup(txt));
1147 1.1 christos
1148 1.1 christos temp = strchr(txt + 1, '/');
1149 1.1 christos if (temp == NULL)
1150 1.1 christos temp = strdup(txt + 1);
1151 1.1 christos else {
1152 1.1 christos len = temp - txt + 1; /* text until string after slash */
1153 1.1 christos temp = malloc(len);
1154 1.11 lukem (void) strncpy(temp, txt + 1, len - 2);
1155 1.1 christos temp[len - 2] = '\0';
1156 1.1 christos }
1157 1.1 christos pass = getpwnam(temp);
1158 1.1 christos free(temp); /* value no more needed */
1159 1.1 christos if (pass == NULL)
1160 1.11 lukem return (strdup(txt));
1161 1.1 christos
1162 1.1 christos /* update pointer txt to point at string immedially following */
1163 1.1 christos /* first slash */
1164 1.1 christos txt += len;
1165 1.1 christos
1166 1.1 christos temp = malloc(strlen(pass->pw_dir) + 1 + strlen(txt) + 1);
1167 1.11 lukem (void) sprintf(temp, "%s/%s", pass->pw_dir, txt);
1168 1.1 christos
1169 1.11 lukem return (temp);
1170 1.1 christos }
1171 1.1 christos
1172 1.11 lukem
1173 1.1 christos /*
1174 1.1 christos * return first found file name starting by the ``text'' or NULL if no
1175 1.1 christos * such file can be found
1176 1.1 christos * value of ``state'' is ignored
1177 1.1 christos *
1178 1.1 christos * it's caller's responsibility to free returned string
1179 1.1 christos */
1180 1.11 lukem char *
1181 1.11 lukem filename_completion_function(const char *text, int state)
1182 1.11 lukem {
1183 1.11 lukem static DIR *dir = NULL;
1184 1.11 lukem static char *filename = NULL, *dirname = NULL;
1185 1.11 lukem static size_t filename_len = 0;
1186 1.11 lukem struct dirent *entry;
1187 1.11 lukem char *temp;
1188 1.11 lukem size_t len;
1189 1.1 christos
1190 1.1 christos if (state == 0 || dir == NULL) {
1191 1.1 christos if (dir != NULL) {
1192 1.1 christos closedir(dir);
1193 1.1 christos dir = NULL;
1194 1.1 christos }
1195 1.1 christos temp = strrchr(text, '/');
1196 1.1 christos if (temp) {
1197 1.1 christos temp++;
1198 1.1 christos filename = realloc(filename, strlen(temp) + 1);
1199 1.11 lukem (void) strcpy(filename, temp);
1200 1.1 christos len = temp - text; /* including last slash */
1201 1.1 christos dirname = realloc(dirname, len + 1);
1202 1.11 lukem (void) strncpy(dirname, text, len);
1203 1.1 christos dirname[len] = '\0';
1204 1.1 christos } else {
1205 1.1 christos filename = strdup(text);
1206 1.1 christos dirname = NULL;
1207 1.1 christos }
1208 1.1 christos
1209 1.1 christos /* support for ``~user'' syntax */
1210 1.1 christos if (dirname && *dirname == '~') {
1211 1.1 christos temp = tilde_expand(dirname);
1212 1.1 christos dirname = realloc(dirname, strlen(temp) + 1);
1213 1.11 lukem (void) strcpy(dirname, temp); /* safe */
1214 1.12 jdolecek free(temp); /* no longer needed */
1215 1.1 christos }
1216 1.1 christos /* will be used in cycle */
1217 1.1 christos filename_len = strlen(filename);
1218 1.1 christos if (filename_len == 0)
1219 1.11 lukem return (NULL); /* no expansion possible */
1220 1.1 christos
1221 1.1 christos dir = opendir(dirname ? dirname : ".");
1222 1.1 christos if (!dir)
1223 1.11 lukem return (NULL); /* cannot open the directory */
1224 1.1 christos }
1225 1.1 christos /* find the match */
1226 1.5 christos while ((entry = readdir(dir)) != NULL) {
1227 1.1 christos /* otherwise, get first entry where first */
1228 1.1 christos /* filename_len characters are equal */
1229 1.1 christos if (entry->d_name[0] == filename[0]
1230 1.6 christos #if defined(__SVR4) || defined(__linux__)
1231 1.6 christos && strlen(entry->d_name) >= filename_len
1232 1.6 christos #else
1233 1.1 christos && entry->d_namlen >= filename_len
1234 1.4 christos #endif
1235 1.1 christos && strncmp(entry->d_name, filename,
1236 1.11 lukem filename_len) == 0)
1237 1.1 christos break;
1238 1.1 christos }
1239 1.1 christos
1240 1.1 christos if (entry) { /* match found */
1241 1.1 christos
1242 1.11 lukem struct stat stbuf;
1243 1.6 christos #if defined(__SVR4) || defined(__linux__)
1244 1.6 christos len = strlen(entry->d_name) +
1245 1.6 christos #else
1246 1.1 christos len = entry->d_namlen +
1247 1.4 christos #endif
1248 1.11 lukem ((dirname) ? strlen(dirname) : 0) + 1 + 1;
1249 1.1 christos temp = malloc(len);
1250 1.11 lukem (void) sprintf(temp, "%s%s",
1251 1.11 lukem dirname ? dirname : "", entry->d_name); /* safe */
1252 1.1 christos
1253 1.1 christos /* test, if it's directory */
1254 1.1 christos if (stat(temp, &stbuf) == 0 && S_ISDIR(stbuf.st_mode))
1255 1.1 christos strcat(temp, "/"); /* safe */
1256 1.1 christos } else
1257 1.1 christos temp = NULL;
1258 1.1 christos
1259 1.11 lukem return (temp);
1260 1.1 christos }
1261 1.1 christos
1262 1.11 lukem
1263 1.1 christos /*
1264 1.1 christos * a completion generator for usernames; returns _first_ username
1265 1.1 christos * which starts with supplied text
1266 1.1 christos * text contains a partial username preceded by random character
1267 1.1 christos * (usually '~'); state is ignored
1268 1.1 christos * it's callers responsibility to free returned value
1269 1.1 christos */
1270 1.11 lukem char *
1271 1.11 lukem username_completion_function(const char *text, int state)
1272 1.1 christos {
1273 1.11 lukem struct passwd *pwd;
1274 1.1 christos
1275 1.1 christos if (text[0] == '\0')
1276 1.11 lukem return (NULL);
1277 1.1 christos
1278 1.1 christos if (*text == '~')
1279 1.1 christos text++;
1280 1.1 christos
1281 1.1 christos if (state == 0)
1282 1.1 christos setpwent();
1283 1.1 christos
1284 1.1 christos while ((pwd = getpwent()) && text[0] == pwd->pw_name[0]
1285 1.11 lukem && strcmp(text, pwd->pw_name) == 0);
1286 1.1 christos
1287 1.1 christos if (pwd == NULL) {
1288 1.1 christos endpwent();
1289 1.11 lukem return (NULL);
1290 1.1 christos }
1291 1.11 lukem return (strdup(pwd->pw_name));
1292 1.1 christos }
1293 1.1 christos
1294 1.11 lukem
1295 1.1 christos /*
1296 1.1 christos * el-compatible wrapper around rl_complete; needed for key binding
1297 1.1 christos */
1298 1.5 christos /* ARGSUSED */
1299 1.1 christos static unsigned char
1300 1.11 lukem _el_rl_complete(EditLine *el, int ch)
1301 1.1 christos {
1302 1.1 christos return (unsigned char) rl_complete(0, ch);
1303 1.1 christos }
1304 1.1 christos
1305 1.11 lukem
1306 1.1 christos /*
1307 1.1 christos * returns list of completitions for text given
1308 1.1 christos */
1309 1.11 lukem char **
1310 1.11 lukem completion_matches(const char *text, CPFunction *genfunc)
1311 1.11 lukem {
1312 1.11 lukem char **match_list = NULL, *retstr, *prevstr;
1313 1.12 jdolecek size_t match_list_len, max_equal, which, i;
1314 1.11 lukem int matches;
1315 1.1 christos
1316 1.1 christos if (h == NULL || e == NULL)
1317 1.1 christos rl_initialize();
1318 1.1 christos
1319 1.1 christos matches = 0;
1320 1.12 jdolecek match_list_len = 1;
1321 1.5 christos while ((retstr = (*genfunc) (text, matches)) != NULL) {
1322 1.12 jdolecek if (matches + 1 >= match_list_len) {
1323 1.12 jdolecek match_list_len <<= 1;
1324 1.1 christos match_list = realloc(match_list,
1325 1.12 jdolecek match_list_len * sizeof(char *));
1326 1.1 christos }
1327 1.1 christos match_list[++matches] = retstr;
1328 1.1 christos }
1329 1.1 christos
1330 1.1 christos if (!match_list)
1331 1.1 christos return (char **) NULL; /* nothing found */
1332 1.1 christos
1333 1.1 christos /* find least denominator and insert it to match_list[0] */
1334 1.1 christos which = 2;
1335 1.1 christos prevstr = match_list[1];
1336 1.5 christos max_equal = strlen(prevstr);
1337 1.12 jdolecek for (; which <= matches; which++) {
1338 1.1 christos for (i = 0; i < max_equal &&
1339 1.1 christos prevstr[i] == match_list[which][i]; i++)
1340 1.1 christos continue;
1341 1.1 christos max_equal = i;
1342 1.1 christos }
1343 1.1 christos
1344 1.1 christos retstr = malloc(max_equal + 1);
1345 1.11 lukem (void) strncpy(retstr, match_list[1], max_equal);
1346 1.1 christos retstr[max_equal] = '\0';
1347 1.1 christos match_list[0] = retstr;
1348 1.1 christos
1349 1.1 christos /* add NULL as last pointer to the array */
1350 1.12 jdolecek if (matches + 1 >= match_list_len)
1351 1.1 christos match_list = realloc(match_list,
1352 1.12 jdolecek (match_list_len + 1) * sizeof(char *));
1353 1.1 christos match_list[matches + 1] = (char *) NULL;
1354 1.1 christos
1355 1.11 lukem return (match_list);
1356 1.1 christos }
1357 1.1 christos
1358 1.12 jdolecek /*
1359 1.12 jdolecek * Sort function for qsort(). Just wrapper around strcasecmp().
1360 1.12 jdolecek */
1361 1.12 jdolecek static int
1362 1.12 jdolecek _rl_qsort_string_compare(i1, i2)
1363 1.12 jdolecek const void *i1, *i2;
1364 1.12 jdolecek {
1365 1.16 christos /*LINTED const castaway*/
1366 1.12 jdolecek const char *s1 = ((const char **)i1)[0];
1367 1.16 christos /*LINTED const castaway*/
1368 1.13 jdolecek const char *s2 = ((const char **)i2)[0];
1369 1.12 jdolecek
1370 1.12 jdolecek return strcasecmp(s1, s2);
1371 1.12 jdolecek }
1372 1.11 lukem
1373 1.1 christos /*
1374 1.12 jdolecek * Display list of strings in columnar format on readline's output stream.
1375 1.12 jdolecek * 'matches' is list of strings, 'len' is number of strings in 'matches',
1376 1.12 jdolecek * 'max' is maximum length of string in 'matches'.
1377 1.12 jdolecek */
1378 1.12 jdolecek void
1379 1.12 jdolecek rl_display_match_list (matches, len, max)
1380 1.12 jdolecek char **matches;
1381 1.12 jdolecek int len, max;
1382 1.12 jdolecek {
1383 1.12 jdolecek int i, idx, limit, count;
1384 1.12 jdolecek int screenwidth = e->el_term.t_size.h;
1385 1.12 jdolecek
1386 1.13 jdolecek /*
1387 1.13 jdolecek * Find out how many entries can be put on one line, count
1388 1.13 jdolecek * with two spaces between strings.
1389 1.13 jdolecek */
1390 1.13 jdolecek limit = screenwidth / (max + 2);
1391 1.12 jdolecek if (limit == 0)
1392 1.12 jdolecek limit = 1;
1393 1.12 jdolecek
1394 1.12 jdolecek /* how many lines of output */
1395 1.12 jdolecek count = len / limit;
1396 1.13 jdolecek if (count * limit < len)
1397 1.13 jdolecek count++;
1398 1.12 jdolecek
1399 1.12 jdolecek /* Sort the items if they are not already sorted. */
1400 1.16 christos qsort(&matches[1], (size_t)(len - 1), sizeof(char *),
1401 1.16 christos _rl_qsort_string_compare);
1402 1.12 jdolecek
1403 1.12 jdolecek idx = 1;
1404 1.13 jdolecek for(; count > 0; count--) {
1405 1.12 jdolecek for(i=0; i < limit && matches[idx]; i++, idx++)
1406 1.13 jdolecek fprintf(e->el_outfile, "%-*s ", max, matches[idx]);
1407 1.12 jdolecek fprintf(e->el_outfile, "\n");
1408 1.12 jdolecek }
1409 1.12 jdolecek }
1410 1.12 jdolecek
1411 1.12 jdolecek /*
1412 1.12 jdolecek * Complete the word at or before point, called by rl_complete()
1413 1.12 jdolecek * 'what_to_do' says what to do with the completion.
1414 1.12 jdolecek * `?' means list the possible completions.
1415 1.12 jdolecek * TAB means do standard completion.
1416 1.12 jdolecek * `*' means insert all of the possible completions.
1417 1.12 jdolecek * `!' means to do standard completion, and list all possible completions if
1418 1.12 jdolecek * there is more than one.
1419 1.12 jdolecek *
1420 1.12 jdolecek * Note: '*' support is not implemented
1421 1.1 christos */
1422 1.1 christos static int
1423 1.11 lukem rl_complete_internal(int what_to_do)
1424 1.1 christos {
1425 1.11 lukem CPFunction *complet_func;
1426 1.1 christos const LineInfo *li;
1427 1.12 jdolecek char *temp, **matches;
1428 1.12 jdolecek const char *ctemp;
1429 1.11 lukem size_t len;
1430 1.1 christos
1431 1.12 jdolecek rl_completion_type = what_to_do;
1432 1.12 jdolecek
1433 1.1 christos if (h == NULL || e == NULL)
1434 1.1 christos rl_initialize();
1435 1.1 christos
1436 1.1 christos complet_func = rl_completion_entry_function;
1437 1.1 christos if (!complet_func)
1438 1.1 christos complet_func = filename_completion_function;
1439 1.1 christos
1440 1.15 jdolecek /* We now look backwards for the start of a filename/variable word */
1441 1.1 christos li = el_line(e);
1442 1.16 christos ctemp = (const char *) li->cursor;
1443 1.15 jdolecek while (ctemp > li->buffer
1444 1.15 jdolecek && !strchr(rl_basic_word_break_characters, ctemp[-1])
1445 1.15 jdolecek && (!rl_special_prefixes
1446 1.15 jdolecek || !strchr(rl_special_prefixes, ctemp[-1]) ) )
1447 1.12 jdolecek ctemp--;
1448 1.12 jdolecek
1449 1.12 jdolecek len = li->cursor - ctemp;
1450 1.12 jdolecek temp = alloca(len + 1);
1451 1.12 jdolecek (void) strncpy(temp, ctemp, len);
1452 1.1 christos temp[len] = '\0';
1453 1.1 christos
1454 1.1 christos /* these can be used by function called in completion_matches() */
1455 1.1 christos /* or (*rl_attempted_completion_function)() */
1456 1.1 christos rl_point = li->cursor - li->buffer;
1457 1.1 christos rl_end = li->lastchar - li->buffer;
1458 1.1 christos
1459 1.1 christos if (!rl_attempted_completion_function)
1460 1.12 jdolecek matches = completion_matches(temp, complet_func);
1461 1.1 christos else {
1462 1.11 lukem int end = li->cursor - li->buffer;
1463 1.12 jdolecek matches = (*rl_attempted_completion_function) (temp, (int)
1464 1.11 lukem (end - len), end);
1465 1.1 christos }
1466 1.1 christos
1467 1.12 jdolecek if (matches) {
1468 1.12 jdolecek int i, retval = CC_REFRESH;
1469 1.12 jdolecek int matches_num, maxlen, match_len, match_display=1;
1470 1.1 christos
1471 1.14 jdolecek /*
1472 1.14 jdolecek * Only replace the completed string with common part of
1473 1.14 jdolecek * possible matches if there is possible completion.
1474 1.14 jdolecek */
1475 1.14 jdolecek if (matches[0][0] != '\0') {
1476 1.14 jdolecek el_deletestr(e, (int) len);
1477 1.14 jdolecek el_insertstr(e, matches[0]);
1478 1.14 jdolecek }
1479 1.12 jdolecek
1480 1.12 jdolecek if (what_to_do == '?')
1481 1.12 jdolecek goto display_matches;
1482 1.12 jdolecek
1483 1.12 jdolecek if (matches[2] == NULL && strcmp(matches[0], matches[1]) == 0) {
1484 1.12 jdolecek /*
1485 1.12 jdolecek * We found exact match. Add a space after
1486 1.12 jdolecek * it, unless we do filename completition and the
1487 1.12 jdolecek * object is a directory.
1488 1.12 jdolecek */
1489 1.12 jdolecek size_t alen = strlen(matches[0]);
1490 1.15 jdolecek if ((complet_func != filename_completion_function
1491 1.15 jdolecek || (alen > 0 && (matches[0])[alen - 1] != '/'))
1492 1.15 jdolecek && rl_completion_append_character) {
1493 1.15 jdolecek char buf[2];
1494 1.15 jdolecek buf[0] = rl_completion_append_character;
1495 1.15 jdolecek buf[1] = '\0';
1496 1.15 jdolecek el_insertstr(e, buf);
1497 1.15 jdolecek }
1498 1.12 jdolecek } else if (what_to_do == '!') {
1499 1.12 jdolecek display_matches:
1500 1.12 jdolecek /*
1501 1.12 jdolecek * More than one match and requested to list possible
1502 1.12 jdolecek * matches.
1503 1.12 jdolecek */
1504 1.12 jdolecek
1505 1.12 jdolecek for(i=1, maxlen=0; matches[i]; i++) {
1506 1.12 jdolecek match_len = strlen(matches[i]);
1507 1.12 jdolecek if (match_len > maxlen)
1508 1.12 jdolecek maxlen = match_len;
1509 1.12 jdolecek }
1510 1.12 jdolecek matches_num = i - 1;
1511 1.12 jdolecek
1512 1.12 jdolecek /* newline to get on next line from command line */
1513 1.12 jdolecek fprintf(e->el_outfile, "\n");
1514 1.12 jdolecek
1515 1.12 jdolecek /*
1516 1.12 jdolecek * If there are too many items, ask user for display
1517 1.12 jdolecek * confirmation.
1518 1.12 jdolecek */
1519 1.12 jdolecek if (matches_num > rl_completion_query_items) {
1520 1.12 jdolecek fprintf(e->el_outfile,
1521 1.12 jdolecek "Display all %d possibilities? (y or n) ",
1522 1.12 jdolecek matches_num);
1523 1.12 jdolecek fflush(e->el_outfile);
1524 1.12 jdolecek if (getc(stdin) != 'y')
1525 1.12 jdolecek match_display = 0;
1526 1.12 jdolecek fprintf(e->el_outfile, "\n");
1527 1.12 jdolecek }
1528 1.12 jdolecek
1529 1.12 jdolecek if (match_display)
1530 1.12 jdolecek rl_display_match_list(matches, matches_num,
1531 1.12 jdolecek maxlen);
1532 1.12 jdolecek retval = CC_REDISPLAY;
1533 1.12 jdolecek } else {
1534 1.1 christos /* lcd is not a valid object - further specification */
1535 1.1 christos /* is needed */
1536 1.4 christos el_beep(e);
1537 1.12 jdolecek retval = CC_NORM;
1538 1.12 jdolecek }
1539 1.1 christos
1540 1.1 christos /* free elements of array and the array itself */
1541 1.12 jdolecek for (i = 0; matches[i]; i++)
1542 1.12 jdolecek free(matches[i]);
1543 1.12 jdolecek free(matches), matches = NULL;
1544 1.1 christos
1545 1.12 jdolecek return (retval);
1546 1.1 christos }
1547 1.11 lukem return (CC_NORM);
1548 1.1 christos }
1549 1.1 christos
1550 1.11 lukem
1551 1.1 christos /*
1552 1.1 christos * complete word at current point
1553 1.1 christos */
1554 1.1 christos int
1555 1.11 lukem rl_complete(int ignore, int invoking_key)
1556 1.1 christos {
1557 1.1 christos if (h == NULL || e == NULL)
1558 1.1 christos rl_initialize();
1559 1.1 christos
1560 1.1 christos if (rl_inhibit_completion) {
1561 1.1 christos rl_insert(ignore, invoking_key);
1562 1.11 lukem return (CC_REFRESH);
1563 1.12 jdolecek } else if (e->el_state.lastcmd == el_rl_complete_cmdnum)
1564 1.12 jdolecek return rl_complete_internal('?');
1565 1.12 jdolecek else if (_rl_complete_show_all)
1566 1.12 jdolecek return rl_complete_internal('!');
1567 1.12 jdolecek else
1568 1.12 jdolecek return (rl_complete_internal(TAB));
1569 1.1 christos }
1570 1.1 christos
1571 1.11 lukem
1572 1.1 christos /*
1573 1.7 simonb * misc other functions
1574 1.1 christos */
1575 1.1 christos
1576 1.1 christos /*
1577 1.1 christos * bind key c to readline-type function func
1578 1.1 christos */
1579 1.1 christos int
1580 1.11 lukem rl_bind_key(int c, int func(int, int))
1581 1.1 christos {
1582 1.11 lukem int retval = -1;
1583 1.1 christos
1584 1.1 christos if (h == NULL || e == NULL)
1585 1.1 christos rl_initialize();
1586 1.1 christos
1587 1.1 christos if (func == rl_insert) {
1588 1.1 christos /* XXX notice there is no range checking of ``c'' */
1589 1.1 christos e->el_map.key[c] = ED_INSERT;
1590 1.1 christos retval = 0;
1591 1.1 christos }
1592 1.11 lukem return (retval);
1593 1.1 christos }
1594 1.1 christos
1595 1.11 lukem
1596 1.1 christos /*
1597 1.1 christos * read one key from input - handles chars pushed back
1598 1.1 christos * to input stream also
1599 1.1 christos */
1600 1.1 christos int
1601 1.11 lukem rl_read_key(void)
1602 1.1 christos {
1603 1.11 lukem char fooarr[2 * sizeof(int)];
1604 1.1 christos
1605 1.1 christos if (e == NULL || h == NULL)
1606 1.1 christos rl_initialize();
1607 1.1 christos
1608 1.11 lukem return (el_getc(e, fooarr));
1609 1.1 christos }
1610 1.1 christos
1611 1.11 lukem
1612 1.1 christos /*
1613 1.1 christos * reset the terminal
1614 1.1 christos */
1615 1.5 christos /* ARGSUSED */
1616 1.1 christos void
1617 1.11 lukem rl_reset_terminal(const char *p)
1618 1.1 christos {
1619 1.11 lukem
1620 1.1 christos if (h == NULL || e == NULL)
1621 1.1 christos rl_initialize();
1622 1.1 christos el_reset(e);
1623 1.1 christos }
1624 1.1 christos
1625 1.11 lukem
1626 1.1 christos /*
1627 1.1 christos * insert character ``c'' back into input stream, ``count'' times
1628 1.1 christos */
1629 1.1 christos int
1630 1.11 lukem rl_insert(int count, int c)
1631 1.1 christos {
1632 1.11 lukem char arr[2];
1633 1.1 christos
1634 1.1 christos if (h == NULL || e == NULL)
1635 1.1 christos rl_initialize();
1636 1.1 christos
1637 1.1 christos /* XXX - int -> char conversion can lose on multichars */
1638 1.1 christos arr[0] = c;
1639 1.1 christos arr[1] = '\0';
1640 1.1 christos
1641 1.1 christos for (; count > 0; count--)
1642 1.1 christos el_push(e, arr);
1643 1.1 christos
1644 1.11 lukem return (0);
1645 1.1 christos }
1646