match documentation in el_push

This commit is contained in:
christos 2009-02-05 19:15:44 +00:00
parent d052ee7b7f
commit 1dc5f9b89b
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: histedit.h,v 1.34 2008/04/05 23:53:26 christos Exp $ */
/* $NetBSD: histedit.h,v 1.35 2009/02/05 19:15:44 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -92,7 +92,7 @@ void el_reset(EditLine *);
*/
const char *el_gets(EditLine *, int *);
int el_getc(EditLine *, char *);
void el_push(EditLine *, char *);
void el_push(EditLine *, const char *);
/*
* Beep!

View File

@ -1,4 +1,4 @@
/* $NetBSD: read.c,v 1.42 2009/01/18 12:17:24 lukem Exp $ */
/* $NetBSD: read.c,v 1.43 2009/02/05 19:15:44 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: read.c,v 1.42 2009/01/18 12:17:24 lukem Exp $");
__RCSID("$NetBSD: read.c,v 1.43 2009/02/05 19:15:44 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@ -213,7 +213,7 @@ read_preread(EditLine *el)
* Push a macro
*/
public void
el_push(EditLine *el, char *str)
el_push(EditLine *el, const char *str)
{
c_macro_t *ma = &el->el_chared.c_macro;