]> git.eshelyaron.com Git - emacs.git/commitdiff
(gdb-var-update-handler-1): Include case of
authorNick Roberts <nickrob@snap.net.nz>
Sat, 19 Sep 2009 11:43:15 +0000 (11:43 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Sat, 19 Sep 2009 11:43:15 +0000 (11:43 +0000)
older GDB where there is no has_more field.

lisp/progmodes/gdb-ui.el

index f9a0b761949e8aaf33730f1d89dc6c41c9591078..0e12a33fe163fa4c1b5f322092d63632af139607 100644 (file)
@@ -3861,15 +3861,16 @@ from=\"\\(.*?\\)\"\\)")
               (var (assoc varnum gdb-var-list))
               (new-num (bindat-get-field change 'new_num_children)))
          (when var
-           (let ((scope (bindat-get-field change 'in_scope)))
+           (let ((scope (bindat-get-field change 'in_scope))
+                 (has-more (bindat-get-field change 'has_more)))
              (cond ((string-equal scope "false")
                     (if gdb-delete-out-of-scope
                         (gdb-var-delete-1 var varnum)
                       (setcar (nthcdr 5 var) 'out-of-scope)))
                    ((string-equal scope "true")
-                    (setcar (nthcdr 6 var)
-                            (bindat-get-field change 'has_more))
-                    (when (and (string-equal (nth 6 var) "0")
+                    (setcar (nthcdr 6 var) has-more)
+                    (when (and (or (not has-more)
+                                   (string-equal has-more "0"))
                                (not new-num)
                                (string-equal (nth 2 var) "0"))
                       (setcar (nthcdr 4 var)