]> CyberLeo.Net >> Repos - FreeBSD/releng/9.1.git/blob - lib/libedit/editline.3
Merge r240985 from head:
[FreeBSD/releng/9.1.git] / lib / libedit / editline.3
1 .\"     $NetBSD: editline.3,v 1.70 2009/07/05 21:55:24 perry Exp $
2 .\"
3 .\" Copyright (c) 1997-2003 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This file was contributed to The NetBSD Foundation by Luke Mewburn.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 .\" POSSIBILITY OF SUCH DAMAGE.
28 .\"
29 .\" $FreeBSD$
30 .\"
31 .Dd July 5, 2009
32 .Dt EDITLINE 3
33 .Os
34 .Sh NAME
35 .Nm editline ,
36 .Nm el_init ,
37 .Nm el_end ,
38 .Nm el_reset ,
39 .Nm el_gets ,
40 .Nm el_getc ,
41 .Nm el_push ,
42 .Nm el_parse ,
43 .Nm el_set ,
44 .Nm el_get ,
45 .Nm el_source ,
46 .Nm el_resize ,
47 .Nm el_line ,
48 .Nm el_insertstr ,
49 .Nm el_deletestr ,
50 .Nm history_init ,
51 .Nm history_end ,
52 .Nm history ,
53 .Nm tok_init ,
54 .Nm tok_end ,
55 .Nm tok_reset ,
56 .Nm tok_line ,
57 .Nm tok_str
58 .Nd line editor, history and tokenization functions
59 .Sh LIBRARY
60 .Lb libedit
61 .Sh SYNOPSIS
62 .In histedit.h
63 .Ft EditLine *
64 .Fn el_init "const char *prog" "FILE *fin" "FILE *fout" "FILE *ferr"
65 .Ft void
66 .Fn el_end "EditLine *e"
67 .Ft void
68 .Fn el_reset "EditLine *e"
69 .Ft const char *
70 .Fn el_gets "EditLine *e" "int *count"
71 .Ft int
72 .Fn el_getc "EditLine *e" "char *ch"
73 .Ft void
74 .Fn el_push "EditLine *e" "char *str"
75 .Ft int
76 .Fn el_parse "EditLine *e" "int argc" "const char *argv[]"
77 .Ft int
78 .Fn el_set "EditLine *e" "int op" "..."
79 .Ft int
80 .Fn el_get "EditLine *e" "int op" "..."
81 .Ft int
82 .Fn el_source "EditLine *e" "const char *file"
83 .Ft void
84 .Fn el_resize "EditLine *e"
85 .Ft const LineInfo *
86 .Fn el_line "EditLine *e"
87 .Ft int
88 .Fn el_insertstr "EditLine *e" "const char *str"
89 .Ft void
90 .Fn el_deletestr "EditLine *e" "int count"
91 .Ft History *
92 .Fn history_init
93 .Ft void
94 .Fn history_end "History *h"
95 .Ft int
96 .Fn history "History *h" "HistEvent *ev" "int op" "..."
97 .Ft Tokenizer *
98 .Fn tok_init "const char *IFS"
99 .Ft void
100 .Fn tok_end "Tokenizer *t"
101 .Ft void
102 .Fn tok_reset "Tokenizer *t"
103 .Ft int
104 .Fo tok_line
105 .Fa "Tokenizer *t" "const LineInfo *li" "int *argc" "const char **argv[]"
106 .Fa "int *cursorc" "int *cursoro"
107 .Fc
108 .Ft int
109 .Fn tok_str "Tokenizer *t" "const char *str" "int *argc" "const char **argv[]"
110 .Sh DESCRIPTION
111 The
112 .Nm
113 library provides generic line editing, history and tokenization functions,
114 similar to those found in
115 .Xr sh 1 .
116 .Pp
117 These functions are available in the
118 .Nm libedit
119 library (which needs the
120 .Nm libtermcap
121 library).
122 Programs should be linked with
123 .Fl ledit ltermcap .
124 .Sh LINE EDITING FUNCTIONS
125 The line editing functions use a common data structure,
126 .Fa EditLine ,
127 which is created by
128 .Fn el_init
129 and freed by
130 .Fn el_end .
131 .Pp
132 The following functions are available:
133 .Bl -tag -width 4n
134 .It Fn el_init
135 Initialise the line editor, and return a data structure
136 to be used by all other line editing functions.
137 .Fa prog
138 is the name of the invoking program, used when reading the
139 .Xr editrc 5
140 file to determine which settings to use.
141 .Fa fin ,
142 .Fa fout
143 and
144 .Fa ferr
145 are the input, output, and error streams (respectively) to use.
146 In this documentation, references to
147 .Dq the tty
148 are actually to this input/output stream combination.
149 .It Fn el_end
150 Clean up and finish with
151 .Fa e ,
152 assumed to have been created with
153 .Fn el_init .
154 .It Fn el_reset
155 Reset the tty and the parser.
156 This should be called after an error which may have upset the tty's
157 state.
158 .It Fn el_gets
159 Read a line from the tty.
160 .Fa count
161 is modified to contain the number of characters read.
162 Returns the line read if successful, or
163 .Dv NULL
164 if no characters were read or if an error occurred.
165 The return value may not remain valid across calls to
166 .Fn el_gets
167 and must be copied if the data is to be retained.
168 .It Fn el_getc
169 Read a character from the tty.
170 .Fa ch
171 is modified to contain the character read.
172 Returns the number of characters read if successful, \-1 otherwise.
173 .It Fn el_push
174 Pushes
175 .Fa str
176 back onto the input stream.
177 This is used by the macro expansion mechanism.
178 Refer to the description of
179 .Ic bind
180 .Fl s
181 in
182 .Xr editrc 5
183 for more information.
184 .It Fn el_parse
185 Parses the
186 .Fa argv
187 array (which is
188 .Fa argc
189 elements in size)
190 to execute builtin
191 .Nm
192 commands.
193 If the command is prefixed with
194 .Dq prog:
195 then
196 .Fn el_parse
197 will only execute the command if
198 .Dq prog
199 matches the
200 .Fa prog
201 argument supplied to
202 .Fn el_init .
203 The return value is
204 \-1 if the command is unknown,
205 0 if there was no error or
206 .Dq prog
207 did not match, or
208 1 if the command returned an error.
209 Refer to
210 .Xr editrc 5
211 for more information.
212 .It Fn el_set
213 Set
214 .Nm
215 parameters.
216 .Fa op
217 determines which parameter to set, and each operation has its
218 own parameter list.
219 .Pp
220 The following values for
221 .Fa op
222 are supported, along with the required argument list:
223 .Bl -tag -width 4n
224 .It Dv EL_PROMPT , Fa "char *(*f)(EditLine *)"
225 Define prompt printing function as
226 .Fa f ,
227 which is to return a string that contains the prompt.
228 .It Dv EL_PROMPT_ESC , Fa "char *(*f)(EditLine *)" , Fa "char c"
229 Same as
230 .Dv EL_PROMPT ,
231 but the
232 .Fa c
233 argument indicates the start/stop literal prompt character.
234 .Pp
235 If a start/stop literal character is found in the prompt, the
236 character itself
237 is not printed, but characters after it are printed directly to the
238 terminal without affecting the state of the current line.
239 A subsequent second start/stop literal character ends this behavior.
240 This is typically used to embed literal escape sequences that change the
241 color/style of the terminal in the prompt.
242 .Dv 0
243 unsets it.
244 .It Dv EL_REFRESH
245 Re-display the current line on the next terminal line.
246 .It Dv EL_RPROMPT , Fa "char *(*f)(EditLine *)"
247 Define right side prompt printing function as
248 .Fa f ,
249 which is to return a string that contains the prompt.
250 .It Dv EL_RPROMPT_ESC , Fa "char *(*f)(EditLine *)" , Fa "char c"
251 Define the right prompt printing function but with a literal escape character.
252 .It Dv EL_TERMINAL , Fa "const char *type"
253 Define terminal type of the tty to be
254 .Fa type ,
255 or to
256 .Ev TERM
257 if
258 .Fa type
259 is
260 .Dv NULL .
261 .It Dv EL_EDITOR , Fa "const char *mode"
262 Set editing mode to
263 .Fa mode ,
264 which must be one of
265 .Dq emacs
266 or
267 .Dq vi .
268 .It Dv EL_SIGNAL , Fa "int flag"
269 If
270 .Fa flag
271 is non-zero,
272 .Nm
273 will install its own signal handler for the following signals when
274 reading command input:
275 .Dv SIGCONT ,
276 .Dv SIGHUP ,
277 .Dv SIGINT ,
278 .Dv SIGQUIT ,
279 .Dv SIGSTOP ,
280 .Dv SIGTERM ,
281 .Dv SIGTSTP ,
282 and
283 .Dv SIGWINCH .
284 Otherwise, the current signal handlers will be used.
285 .It Dv EL_BIND , Fa "const char *" , Fa "..." , Dv NULL
286 Perform the
287 .Ic bind
288 builtin command.
289 Refer to
290 .Xr editrc 5
291 for more information.
292 .It Dv EL_ECHOTC , Fa "const char *" , Fa "..." , Dv NULL
293 Perform the
294 .Ic echotc
295 builtin command.
296 Refer to
297 .Xr editrc 5
298 for more information.
299 .It Dv EL_SETTC , Fa "const char *" , Fa "..." , Dv NULL
300 Perform the
301 .Ic settc
302 builtin command.
303 Refer to
304 .Xr editrc 5
305 for more information.
306 .It Dv EL_SETTY , Fa "const char *" , Fa "..." , Dv NULL
307 Perform the
308 .Ic setty
309 builtin command.
310 Refer to
311 .Xr editrc 5
312 for more information.
313 .It Dv EL_TELLTC , Fa "const char *" , Fa "..." , Dv NULL
314 Perform the
315 .Ic telltc
316 builtin command.
317 Refer to
318 .Xr editrc 5
319 for more information.
320 .It Dv EL_ADDFN , Fa "const char *name" , Fa "const char *help" , \
321 Fa "unsigned char (*func)(EditLine *e, int ch)"
322 Add a user defined function,
323 .Fn func ,
324 referred to as
325 .Fa name
326 which is invoked when a key which is bound to
327 .Fa name
328 is entered.
329 .Fa help
330 is a description of
331 .Fa name .
332 At invocation time,
333 .Fa ch
334 is the key which caused the invocation.
335 The return value of
336 .Fn func
337 should be one of:
338 .Bl -tag -width "CC_REDISPLAY"
339 .It Dv CC_NORM
340 Add a normal character.
341 .It Dv CC_NEWLINE
342 End of line was entered.
343 .It Dv CC_EOF
344 EOF was entered.
345 .It Dv CC_ARGHACK
346 Expecting further command input as arguments, do nothing visually.
347 .It Dv CC_REFRESH
348 Refresh display.
349 .It Dv CC_REFRESH_BEEP
350 Refresh display, and beep.
351 .It Dv CC_CURSOR
352 Cursor moved, so update and perform
353 .Dv CC_REFRESH .
354 .It Dv CC_REDISPLAY
355 Redisplay entire input line.
356 This is useful if a key binding outputs extra information.
357 .It Dv CC_ERROR
358 An error occurred.
359 Beep, and flush tty.
360 .It Dv CC_FATAL
361 Fatal error, reset tty to known state.
362 .El
363 .It Dv EL_HIST , Fa "History *(*func)(History *, int op, ...)" , \
364 Fa "const char *ptr"
365 Defines which history function to use, which is usually
366 .Fn history .
367 .Fa ptr
368 should be the value returned by
369 .Fn history_init .
370 .It Dv EL_EDITMODE , Fa "int flag"
371 If
372 .Fa flag
373 is non-zero,
374 editing is enabled (the default).
375 Note that this is only an indication, and does not
376 affect the operation of
377 .Nm .
378 At this time, it is the caller's responsibility to
379 check this
380 (using
381 .Fn el_get )
382 to determine if editing should be enabled or not.
383 .It Dv EL_GETCFN , Fa "int (*f)(EditLine *, char *c)"
384 Define the character reading function as
385 .Fa f ,
386 which is to return the number of characters read and store them in
387 .Fa c .
388 This function is called internally by
389 .Fn el_gets
390 and
391 .Fn el_getc .
392 The builtin function can be set or restored with the special function
393 name
394 .Dv EL_BUILTIN_GETCFN .
395 .It Dv EL_CLIENTDATA , Fa "void *data"
396 Register
397 .Fa data
398 to be associated with this EditLine structure.
399 It can be retrieved with the corresponding
400 .Fn el_get
401 call.
402 .It Dv EL_SETFP , Fa "int fd" , Fa "FILE *fp"
403 Set the current
404 .Nm editline
405 file pointer for
406 .Dq input
407 .Fa fd
408 =
409 .Dv 0 ,
410 .Dq output
411 .Fa fd
412 =
413 .Dv 1 ,
414 or
415 .Dq error
416 .Fa fd
417 =
418 .Dv 2
419 from
420 .Fa fp .
421 .El
422 .It Fn el_get
423 Get
424 .Nm
425 parameters.
426 .Fa op
427 determines which parameter to retrieve into
428 .Fa result .
429 Returns 0 if successful, \-1 otherwise.
430 .Pp
431 The following values for
432 .Fa op
433 are supported, along with actual type of
434 .Fa result :
435 .Bl -tag -width 4n
436 .It Dv EL_PROMPT , Fa "char *(*f)(EditLine *)" , Fa "char *c"
437 Return a pointer to the function that displays the prompt in
438 .Fa f .
439 If
440 .Fa c
441 is not
442 .Dv NULL ,
443 return the start/stop literal prompt character in it.
444 .It Dv EL_RPROMPT , Fa "char *(*f)(EditLine *)" , Fa "char *c"
445 Return a pointer to the function that displays the prompt in
446 .Fa f .
447 If
448 .Fa c
449 is not
450 .Dv NULL ,
451 return the start/stop literal prompt character in it.
452 .It Dv EL_EDITOR , Fa "const char *"
453 Return the name of the editor, which will be one of
454 .Dq emacs
455 or
456 .Dq vi .
457 .It Dv EL_GETTC , Fa "const char *name" , Fa "void *value"
458 Return non-zero if
459 .Fa name
460 is a valid
461 .Xr termcap 5
462 capability
463 and set
464 .Fa value
465 to the current value of that capability.
466 .It Dv EL_SIGNAL , Fa "int *"
467 Return non-zero if
468 .Nm
469 has installed private signal handlers (see
470 .Fn el_get
471 above).
472 .It Dv EL_EDITMODE , Fa "int *"
473 Return non-zero if editing is enabled.
474 .It Dv EL_GETCFN , Fa "int (**f)(EditLine *, char *)"
475 Return a pointer to the function that read characters, which is equal to
476 .Dv EL_BUILTIN_GETCFN
477 in the case of the default builtin function.
478 .It Dv EL_CLIENTDATA , Fa "void **data"
479 Retrieve
480 .Fa data
481 previously registered with the corresponding
482 .Fn el_set
483 call.
484 .It Dv EL_UNBUFFERED , Fa "int"
485 Sets or clears unbuffered mode.
486 In this mode,
487 .Fn el_gets
488 will return immediately after processing a single character.
489 .It Dv EL_PREP_TERM , Fa "int"
490 Sets or clears terminal editing mode.
491 .It Dv EL_GETFP , Fa "int fd", Fa "FILE **fp"
492 Return in
493 .Fa fp
494 the current
495 .Nm editline
496 file pointer for
497 .Dq input
498 .Fa fd
499 =
500 .Dv 0 ,
501 .Dq output
502 .Fa fd
503 =
504 .Dv 1 ,
505 or
506 .Dq error
507 .Fa fd
508 =
509 .Dv 2 .
510 .El
511 .It Fn el_source
512 Initialise
513 .Nm
514 by reading the contents of
515 .Fa file .
516 .Fn el_parse
517 is called for each line in
518 .Fa file .
519 If
520 .Fa file
521 is
522 .Dv NULL ,
523 try
524 .Pa $PWD/.editrc
525 then
526 .Pa $HOME/.editrc .
527 Refer to
528 .Xr editrc 5
529 for details on the format of
530 .Fa file .
531 .It Fn el_resize
532 Must be called if the terminal size changes.
533 If
534 .Dv EL_SIGNAL
535 has been set with
536 .Fn el_set ,
537 then this is done automatically.
538 Otherwise, it is the responsibility of the application to call
539 .Fn el_resize
540 on the appropriate occasions.
541 .It Fn el_line
542 Return the editing information for the current line in a
543 .Fa LineInfo
544 structure, which is defined as follows:
545 .Bd -literal
546 typedef struct lineinfo {
547     const char *buffer;    /* address of buffer */
548     const char *cursor;    /* address of cursor */
549     const char *lastchar;  /* address of last character */
550 } LineInfo;
551 .Ed
552 .Pp
553 .Fa buffer
554 is not NUL terminated.
555 This function may be called after
556 .Fn el_gets
557 to obtain the
558 .Fa LineInfo
559 structure pertaining to line returned by that function,
560 and from within user defined functions added with
561 .Dv EL_ADDFN .
562 .It Fn el_insertstr
563 Insert
564 .Fa str
565 into the line at the cursor.
566 Returns \-1 if
567 .Fa str
568 is empty or will not fit, and 0 otherwise.
569 .It Fn el_deletestr
570 Delete
571 .Fa count
572 characters before the cursor.
573 .El
574 .Sh HISTORY LIST FUNCTIONS
575 The history functions use a common data structure,
576 .Fa History ,
577 which is created by
578 .Fn history_init
579 and freed by
580 .Fn history_end .
581 .Pp
582 The following functions are available:
583 .Bl -tag -width 4n
584 .It Fn history_init
585 Initialise the history list, and return a data structure
586 to be used by all other history list functions.
587 .It Fn history_end
588 Clean up and finish with
589 .Fa h ,
590 assumed to have been created with
591 .Fn history_init .
592 .It Fn history
593 Perform operation
594 .Fa op
595 on the history list, with optional arguments as needed by the
596 operation.
597 .Fa ev
598 is changed accordingly to operation.
599 The following values for
600 .Fa op
601 are supported, along with the required argument list:
602 .Bl -tag -width 4n
603 .It Dv H_SETSIZE , Fa "int size"
604 Set size of history to
605 .Fa size
606 elements.
607 .It Dv H_GETSIZE
608 Get number of events currently in history.
609 .It Dv H_END
610 Cleans up and finishes with
611 .Fa h ,
612 assumed to be created with
613 .Fn history_init .
614 .It Dv H_CLEAR
615 Clear the history.
616 .It Dv H_FUNC , Fa "void *ptr" , Fa "history_gfun_t first" , \
617 Fa "history_gfun_t next" , Fa "history_gfun_t last" , \
618 Fa "history_gfun_t prev" , Fa "history_gfun_t curr" , \
619 Fa "history_sfun_t set" , Fa "history_vfun_t clear" , \
620 Fa "history_efun_t enter" , Fa "history_efun_t add"
621 Define functions to perform various history operations.
622 .Fa ptr
623 is the argument given to a function when it is invoked.
624 .It Dv H_FIRST
625 Return the first element in the history.
626 .It Dv H_LAST
627 Return the last element in the history.
628 .It Dv H_PREV
629 Return the previous element in the history.
630 .It Dv H_NEXT
631 Return the next element in the history.
632 .It Dv H_CURR
633 Return the current element in the history.
634 .It Dv H_SET
635 Set the cursor to point to the requested element.
636 .It Dv H_ADD , Fa "const char *str"
637 Append
638 .Fa str
639 to the current element of the history, or perform the
640 .Dv H_ENTER
641 operation with argument
642 .Fa str
643 if there is no current element.
644 .It Dv H_APPEND , Fa "const char *str"
645 Append
646 .Fa str
647 to the last new element of the history.
648 .It Dv H_ENTER , Fa "const char *str"
649 Add
650 .Fa str
651 as a new element to the history, and, if necessary,
652 removing the oldest entry to keep the list to the created size.
653 If
654 .Dv H_SETUNIQUE
655 was has been called with a non-zero arguments, the element
656 will not be entered into the history if its contents match
657 the ones of the current history element.
658 If the element is entered
659 .Fn history
660 returns 1, if it is ignored as a duplicate returns 0.
661 Finally
662 .Fn history
663 returns \-1 if an error occurred.
664 .It Dv H_PREV_STR , Fa "const char *str"
665 Return the closest previous event that starts with
666 .Fa str .
667 .It Dv H_NEXT_STR , Fa "const char *str"
668 Return the closest next event that starts with
669 .Fa str .
670 .It Dv H_PREV_EVENT , Fa "int e"
671 Return the previous event numbered
672 .Fa e .
673 .It Dv H_NEXT_EVENT , Fa "int e"
674 Return the next event numbered
675 .Fa e .
676 .It Dv H_LOAD , Fa "const char *file"
677 Load the history list stored in
678 .Fa file .
679 .It Dv H_SAVE , Fa "const char *file"
680 Save the history list to
681 .Fa file .
682 .It Dv H_SETUNIQUE , Fa "int unique"
683 Set flag that adjacent identical event strings should not be entered
684 into the history.
685 .It Dv H_GETUNIQUE
686 Retrieve the current setting if adjacent identical elements should
687 be entered into the history.
688 .It Dv H_DEL , Fa "int e"
689 Delete the event numbered
690 .Fa e .
691 This function is only provided for
692 .Xr readline 3
693 compatibility.
694 The caller is responsible for free'ing the string in the returned
695 .Fa HistEvent .
696 .El
697 .Pp
698 The
699 .Fn history
700 function returns \*[Ge] 0 if the operation
701 .Fa op
702 succeeds.
703 Otherwise, \-1 is returned and
704 .Fa ev
705 is updated to contain more details about the error.
706 .El
707 .Sh TOKENIZATION FUNCTIONS
708 The tokenization functions use a common data structure,
709 .Fa Tokenizer ,
710 which is created by
711 .Fn tok_init
712 and freed by
713 .Fn tok_end .
714 .Pp
715 The following functions are available:
716 .Bl -tag -width 4n
717 .It Fn tok_init
718 Initialise the tokenizer, and return a data structure
719 to be used by all other tokenizer functions.
720 .Fa IFS
721 contains the Input Field Separators, which defaults to
722 .Aq space ,
723 .Aq tab ,
724 and
725 .Aq newline
726 if
727 .Dv NULL .
728 .It Fn tok_end
729 Clean up and finish with
730 .Fa t ,
731 assumed to have been created with
732 .Fn tok_init .
733 .It Fn tok_reset
734 Reset the tokenizer state.
735 Use after a line has been successfully tokenized
736 by
737 .Fn tok_line
738 or
739 .Fn tok_str
740 and before a new line is to be tokenized.
741 .It Fn tok_line
742 Tokenize
743 .Fa li ,
744 if successful, modify
745 .Fa argv
746 to contain the words,
747 .Fa argc
748 to contain the number of words,
749 .Fa cursorc
750 (if not
751 .Dv NULL )
752 to contain the index of the word containing the cursor,
753 and
754 .Fa cursoro
755 (if not
756 .Dv NULL )
757 to contain the offset within
758 .Fa argv[cursorc]
759 of the cursor.
760 .Pp
761 Returns
762 0 if successful,
763 \-1 for an internal error,
764 1 for an unmatched single quote,
765 2 for an unmatched double quote,
766 and
767 3 for a backslash quoted
768 .Aq newline .
769 A positive exit code indicates that another line should be read
770 and tokenization attempted again.
771 .It Fn tok_str
772 A simpler form of
773 .Fn tok_line ;
774 .Fa str
775 is a NUL terminated string to tokenize.
776 .El
777 .\"XXX.Sh EXAMPLES
778 .\"XXX: provide some examples
779 .Sh SEE ALSO
780 .Xr sh 1 ,
781 .Xr signal 3 ,
782 .Xr termcap 3 ,
783 .Xr editrc 5 ,
784 .Xr termcap 5
785 .Sh HISTORY
786 The
787 .Nm
788 library first appeared in
789 .Bx 4.4 .
790 .Dv CC_REDISPLAY
791 appeared in
792 .Nx 1.3 .
793 .Dv CC_REFRESH_BEEP
794 and
795 .Dv EL_EDITMODE
796 appeared in
797 .Nx 1.4 .
798 .Dv EL_RPROMPT
799 appeared in
800 .Nx 1.5 .
801 .Sh AUTHORS
802 .An -nosplit
803 The
804 .Nm
805 library was written by
806 .An Christos Zoulas .
807 .An Luke Mewburn
808 wrote this manual and implemented
809 .Dv CC_REDISPLAY ,
810 .Dv CC_REFRESH_BEEP ,
811 .Dv EL_EDITMODE ,
812 and
813 .Dv EL_RPROMPT .
814 .Sh BUGS
815 At this time, it is the responsibility of the caller to
816 check the result of the
817 .Dv EL_EDITMODE
818 operation of
819 .Fn el_get
820 (after an
821 .Fn el_source
822 or
823 .Fn el_parse )
824 to determine if
825 .Nm
826 should be used for further input.
827 I.e.,
828 .Dv EL_EDITMODE
829 is purely an indication of the result of the most recent
830 .Xr editrc 5
831 .Ic edit
832 command.