From: Romain Francoise Date: Thu, 17 Aug 2006 17:56:57 +0000 (+0000) Subject: (gdb-edit-locals-value): Balance parens. X-Git-Tag: emacs-pretest-22.0.90~964 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bfe0c147d515c6e2eeca6d80ff295a125897ed17;p=emacs.git (gdb-edit-locals-value): Balance parens. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b90552008c8..86ac55cd5dc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-08-17 Romain Francoise + + * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens. + 2006-08-17 Richard Stallman * compare-w.el (compare-windows): lambda's take an arg and pass diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 61078877c31..ff16daf6436 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el @@ -3536,7 +3536,7 @@ in_scope=\"\\(.*?\\)\".*?}") (value (read-string (format "New value (%s): " var)))) (gdb-enqueue-input (list (concat gdb-server-prefix"set variable " var " = " value "\n") - 'ignore)))))) + 'ignore))))) ;; Dont display values of arrays or structures. ;; These can be expanded using gud-watch.