diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-11-14 22:04:03 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-11-14 22:04:03 +0000 |
commit | 927e778570087ee7dbae3245e2bd0cd787d7ce6b (patch) | |
tree | 9a2285f36a2026cbe0d6a75b912482292fc19d71 /bin/ksh/edit.h | |
parent | 44878276ee07b9b57ddadb0f9a8694c887f5b926 (diff) |
quote metachars when completing filenames from jdolecek@netbsd. ok millert@
Diffstat (limited to 'bin/ksh/edit.h')
-rw-r--r-- | bin/ksh/edit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ksh/edit.h b/bin/ksh/edit.h index fd29701cc06..d8f3641d399 100644 --- a/bin/ksh/edit.h +++ b/bin/ksh/edit.h @@ -1,4 +1,4 @@ -/* $OpenBSD: edit.h,v 1.2 1996/08/19 20:08:48 downsj Exp $ */ +/* $OpenBSD: edit.h,v 1.3 1999/11/14 22:04:02 d Exp $ */ /* NAME: * edit.h - globals for edit modes @@ -57,6 +57,7 @@ int x_cf_glob ARGS((int flags, const char *buf, int buflen, int pos, int *startp int x_longest_prefix ARGS((int nwords, char *const *words)); int x_basename ARGS((const char *s, const char *se)); void x_free_words ARGS((int nwords, char **words)); +int x_escape ARGS((const char *, size_t, int (*)(const char *s, size_t len))); /* emacs.c */ int x_emacs ARGS((char *buf, size_t len)); void x_init_emacs ARGS((void)); |