public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Add support for readline 8.2
@ 2022-03-20 13:11 Andreas Schwab
  2022-03-21 11:09 ` Andrew Burgess
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Schwab @ 2022-03-20 13:11 UTC (permalink / raw)
  To: gdb-patches

In readline 8.2 the type of rl_completer_word_break_characters changed to
include const.
---
 gdb/completer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gdb/completer.c b/gdb/completer.c
index d3900ae2014..a51c16ac7f8 100644
--- a/gdb/completer.c
+++ b/gdb/completer.c
@@ -36,7 +36,7 @@
    calling a hook instead so we eliminate the CLI dependency.  */
 #include "gdbcmd.h"
 
-/* Needed for rl_completer_word_break_characters() and for
+/* Needed for rl_completer_word_break_characters and for
    rl_filename_completion_function.  */
 #include "readline/readline.h"
 
@@ -2011,7 +2011,7 @@ gdb_completion_word_break_characters_throw ()
       rl_basic_quote_characters = NULL;
     }
 
-  return rl_completer_word_break_characters;
+  return (char *) rl_completer_word_break_characters;
 }
 
 char *
-- 
2.35.0


-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."

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

* Re: [PATCH] Add support for readline 8.2
  2022-03-20 13:11 [PATCH] Add support for readline 8.2 Andreas Schwab
@ 2022-03-21 11:09 ` Andrew Burgess
  0 siblings, 0 replies; 2+ messages in thread
From: Andrew Burgess @ 2022-03-21 11:09 UTC (permalink / raw)
  To: Andreas Schwab, gdb-patches

Andreas Schwab <schwab@linux-m68k.org> writes:

> In readline 8.2 the type of rl_completer_word_break_characters changed to
> include const.

LGTM.

Thanks,
Andrew


> ---
>  gdb/completer.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gdb/completer.c b/gdb/completer.c
> index d3900ae2014..a51c16ac7f8 100644
> --- a/gdb/completer.c
> +++ b/gdb/completer.c
> @@ -36,7 +36,7 @@
>     calling a hook instead so we eliminate the CLI dependency.  */
>  #include "gdbcmd.h"
>  
> -/* Needed for rl_completer_word_break_characters() and for
> +/* Needed for rl_completer_word_break_characters and for
>     rl_filename_completion_function.  */
>  #include "readline/readline.h"
>  
> @@ -2011,7 +2011,7 @@ gdb_completion_word_break_characters_throw ()
>        rl_basic_quote_characters = NULL;
>      }
>  
> -  return rl_completer_word_break_characters;
> +  return (char *) rl_completer_word_break_characters;
>  }
>  
>  char *
> -- 
> 2.35.0
>
>
> -- 
> Andreas Schwab, schwab@linux-m68k.org
> GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
> "And now for something completely different."


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

end of thread, other threads:[~2022-03-21 11:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-20 13:11 [PATCH] Add support for readline 8.2 Andreas Schwab
2022-03-21 11:09 ` Andrew Burgess

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).