Deleted Added
full compact
1,2c1
< /* $FreeBSD: head/contrib/libreadline/util.c 136759 2004-10-21 20:10:14Z peter $ */
<
---
> /* $FreeBSD: head/contrib/libreadline/util.c 157188 2006-03-27 23:11:32Z ache $ */
5c4
< /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
---
> /* Copyright (C) 1987-2005 Free Software Foundation, Inc.
48a48
> #include "rlmbutil.h"
82a83,98
> #if defined (HANDLE_MULTIBYTE)
> int
> _rl_walphabetic (wc)
> wchar_t wc;
> {
> int c;
>
> if (iswalnum (wc))
> return (1);
>
> c = wc & 0177;
> return (_rl_allow_pathname_alphabetic_chars &&
> strchr (pathname_alphabetic_chars, c) != NULL);
> }
> #endif
>
89c105
< _rl_init_argument ();
---
> _rl_reset_argument ();