Fix wrapper for EL_EDITOR, from Michael L. Hitch
This commit is contained in:
parent
21958f98cc
commit
654f9c04e7
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: eln.c,v 1.4 2010/01/12 19:40:50 christos Exp $ */
|
/* $NetBSD: eln.c,v 1.5 2010/01/19 22:38:08 christos Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2009 The NetBSD Foundation, Inc.
|
* Copyright (c) 2009 The NetBSD Foundation, Inc.
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
*/
|
*/
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#if !defined(lint) && !defined(SCCSID)
|
#if !defined(lint) && !defined(SCCSID)
|
||||||
__RCSID("$NetBSD: eln.c,v 1.4 2010/01/12 19:40:50 christos Exp $");
|
__RCSID("$NetBSD: eln.c,v 1.5 2010/01/19 22:38:08 christos Exp $");
|
||||||
#endif /* not lint && not SCCSID */
|
#endif /* not lint && not SCCSID */
|
||||||
|
|
||||||
#include "histedit.h"
|
#include "histedit.h"
|
||||||
|
@ -118,6 +118,11 @@ el_set(EditLine *el, int op, ...)
|
||||||
ret = el_wset(el, op, va_arg(ap, char *));
|
ret = el_wset(el, op, va_arg(ap, char *));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case EL_EDITOR: /* const wchar_t * */
|
||||||
|
ret = el_wset(el, op, ct_decode_string(va_arg(ap, char *),
|
||||||
|
&el->el_lgcyconv));
|
||||||
|
break;
|
||||||
|
|
||||||
case EL_SIGNAL: /* int */
|
case EL_SIGNAL: /* int */
|
||||||
case EL_EDITMODE:
|
case EL_EDITMODE:
|
||||||
case EL_UNBUFFERED:
|
case EL_UNBUFFERED:
|
||||||
|
|
Loading…
Reference in New Issue