Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] skip_quoted (updated)
@ 2002-11-18  7:20 Adam Fedor
  2002-11-18  9:14 ` Klee Dienes
  0 siblings, 1 reply; 5+ messages in thread
From: Adam Fedor @ 2002-11-18  7:20 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 163 bytes --]

This is an updated patch that adds a new function, skip_quoted_chars, 
similar to skip_quoted. This will be used to skip past Objective-C 
symbols in linespec.c



[-- Attachment #2: newskip.patch --]
[-- Type: text/plain, Size: 1403 bytes --]

2002-11-18  Adam Fedor  <fedor@gnu.org>

        * completer.c (skip_quoted_chars): New function.
        * completer.h: Declare it.

Index: completer.c
===================================================================
RCS file: /cvs/src/src/gdb/completer.c,v
retrieving revision 1.11
diff -r1.11 completer.c
715a716,750
> /* Skip over a possibly quoted word (as defined by the standard quote
>    characters and the specified word-break characters).  Returns pointer
>    to the location after the "word". */
> 
> char *
> skip_quoted_chars (char *str, char *breakchars)
> {
>   char quote_char = '\0';
>   char *scan;
> 
>   for (scan = str; *scan != '\0'; scan++)
>     {
>       if (quote_char != '\0')
> 	{
> 	  /* Ignore everything until the matching close quote char */
> 	  if (*scan == quote_char)
> 	    {
> 	      /* Found matching close quote. */
> 	      scan++;
> 	      break;
> 	    }
> 	}
>       else if (strchr (gdb_completer_quote_characters, *scan))
> 	{
> 	  /* Found start of a quoted string. */
> 	  quote_char = *scan;
> 	}
>       else if (strchr (breakchars, *scan))
> 	{
> 	  break;
> 	}
>     }
>   return (scan);
> }
> 
Index: completer.h
===================================================================
RCS file: /cvs/src/src/gdb/completer.h,v
retrieving revision 1.6
diff -r1.6 completer.h
43a44,45
> extern char *skip_quoted_chars (char *str, char *breakchars);
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-11-20  9:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-18  7:20 [PATCH] skip_quoted (updated) Adam Fedor
2002-11-18  9:14 ` Klee Dienes
2002-11-18 18:39   ` Jim Blandy
2002-11-18 19:03     ` Adam Fedor
2002-11-20  1:12     ` Klee Dienes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox