emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp/progmodes gdb-ui.el [EMACS_23_1_RC]


From: Nick Roberts
Subject: [Emacs-diffs] emacs/lisp/progmodes gdb-ui.el [EMACS_23_1_RC]
Date: Thu, 24 Sep 2009 01:21:56 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Branch:         EMACS_23_1_RC
Changes by:     Nick Roberts <nickrob>  09/09/24 01:21:56

Modified files:
        lisp/progmodes : gdb-ui.el 

Log message:
        (gdb-jsonify-buffer): Catch gdb internal output.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/progmodes/gdb-ui.el?cvsroot=emacs&only_with_tag=EMACS_23_1_RC&r1=1.256.2.10&r2=1.256.2.11

Patches:
Index: gdb-ui.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/progmodes/Attic/gdb-ui.el,v
retrieving revision 1.256.2.10
retrieving revision 1.256.2.11
diff -u -b -r1.256.2.10 -r1.256.2.11
--- gdb-ui.el   19 Sep 2009 11:43:15 -0000      1.256.2.10
+++ gdb-ui.el   24 Sep 2009 01:21:56 -0000      1.256.2.11
@@ -1814,7 +1814,8 @@
 incompatible with GDB/MI output syntax."
   (save-excursion
     (goto-char (point-min))
-    (re-search-forward "\\^done," nil t)
+    ;; Sometimes missing symbol information precedes "^done" record.
+    (re-search-forward "[[:ascii:]]*?\\^done," nil t)
     (replace-match "")
     (re-search-forward "(gdb) \n" nil t)
     (replace-match "")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]