2002-11-19 Klee Dienes <kdienes@apple.com>

Adam Fedor  <fedor@gnu.org>

        * completer.c (skip_quoted_chars): Renamed from skip_chars.  Add
        the ability to explicitly specify the quote characters and word
        break characters; if NULL is specified for either, use the old
        behavior of using the characters used by the completer.
        (skip_chars): New function.  Convenience wrapper around
        skip_quoted_chars to provide the original skip_chars behavior.
        * completer.h (skip_quoted_chars): Add prototype.
This commit is contained in:
Klee Dienes
2002-11-20 08:58:01 +00:00
parent 193eb15dba
commit 4e87b8328c
3 changed files with 39 additions and 7 deletions

View File

@@ -39,6 +39,8 @@ extern char *get_gdb_completer_quote_characters (void);
/* Exported to linespec.c */
extern char *skip_quoted (char *str);
extern char *skip_quoted_chars (char *, char *, char *);
extern char *skip_quoted (char *);
#endif /* defined (COMPLETER_H) */