Blame SOURCES/gdb-readline62-ask-more-rh.patch

190f2a
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
190f2a
From: Fedora GDB patches <invalid@email.com>
190f2a
Date: Fri, 27 Oct 2017 21:07:50 +0200
190f2a
Subject: gdb-readline62-ask-more-rh.patch
190f2a
190f2a
;; Work around readline-6.2 incompatibility not asking for --more-- (BZ 701131).
190f2a
;;=fedora
190f2a
190f2a
diff --git a/gdb/event-top.c b/gdb/event-top.c
190f2a
--- a/gdb/event-top.c
190f2a
+++ b/gdb/event-top.c
190f2a
@@ -1183,6 +1183,13 @@ gdb_setup_readline (int editing)
190f2a
 {
190f2a
   struct ui *ui = current_ui;
190f2a
 
190f2a
+#ifdef NEED_RL_STATE_FEDORA_GDB
190f2a
+  /* 6.2 regression: no longed asks for --more--
190f2a
+     gdb.base/readline-ask.exp
190f2a
+     https://bugzilla.redhat.com/show_bug.cgi?id=701131  */
190f2a
+  RL_SETSTATE (RL_STATE_FEDORA_GDB);
190f2a
+#endif
190f2a
+
190f2a
   /* This function is a noop for the sync case.  The assumption is
190f2a
      that the sync setup is ALL done in gdb_init, and we would only
190f2a
      mess it up here.  The sync stuff should really go away over