From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18780 invoked by alias); 22 Apr 2014 01:26:04 -0000 Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org Received: (qmail 18754 invoked by uid 48); 22 Apr 2014 01:26:04 -0000 From: "Bjoern at Kautler dot net" To: gdb-prs@sourceware.org Subject: [Bug cli/16863] "set history size unlimited" not working Date: Tue, 22 Apr 2014 01:26:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: cli X-Bugzilla-Version: 7.5 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: Bjoern at Kautler dot net X-Bugzilla-Status: RESOLVED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-q2/txt/msg00099.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=3D16863 --- Comment #3 from Bj=C3=B6rn Kautler --- Ah, ok, then it seems to be fixed in the HEAD. In my 7.5 version it says "No symbol table loaded. Use the >>file<<-command= ", or if started with an executable, "No symbol 'unlimited' in current context= .". So it seems GDB tries to resolve "unlimited" as symbol in the debugee here. I probably should have posted this along with the report. --=20 You are receiving this mail because: You are on the CC list for the bug. >>From gdb-prs-return-15594-listarch-gdb-prs=sources.redhat.com@sourceware.org Tue Apr 22 01:39:48 2014 Return-Path: Delivered-To: listarch-gdb-prs@sources.redhat.com Received: (qmail 24006 invoked by alias); 22 Apr 2014 01:39:48 -0000 Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org Delivered-To: mailing list gdb-prs@sourceware.org Received: (qmail 23975 invoked by uid 48); 22 Apr 2014 01:39:47 -0000 From: "sergiodj at redhat dot com" To: gdb-prs@sourceware.org Subject: [Bug cli/16862] C-s is not working Date: Tue, 22 Apr 2014 01:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: cli X-Bugzilla-Version: 7.5 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: sergiodj at redhat dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-q2/txt/msg00100.txt.bz2 Content-length: 1141 https://sourceware.org/bugzilla/show_bug.cgi?id=16862 Sergio Durigan Junior changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |sergiodj at redhat dot com Resolution|--- |WORKSFORME --- Comment #1 from Sergio Durigan Junior --- C-s is shadowed by the terminal's flow control. Use "stty" to change this behavior if you want. You can use "stty -a" to see all keybindings that are reserved by the terminal. In order to "fix" this bug, you can either: (a) Disable the flow control, by using "stty -ixon" (b) Rebind the STOP flow control, by using "stty stop ^K", where "^K" means C-k (you can use whatever key you want). After that, you will be able to use forward-search-history as usual. As a side note, this affects readline programs (like bash), and not GDB alone. -- You are receiving this mail because: You are on the CC list for the bug.