diff options
| author | Romain Francoise | 2006-08-17 17:56:57 +0000 |
|---|---|---|
| committer | Romain Francoise | 2006-08-17 17:56:57 +0000 |
| commit | bfe0c147d515c6e2eeca6d80ff295a125897ed17 (patch) | |
| tree | f2c13ed54fda8a93334b2d903c4b24e25293a635 | |
| parent | 31ab08e6ad68add18a2ef89fcbe17138f534a851 (diff) | |
| download | emacs-bfe0c147d515c6e2eeca6d80ff295a125897ed17.tar.gz emacs-bfe0c147d515c6e2eeca6d80ff295a125897ed17.zip | |
(gdb-edit-locals-value): Balance parens.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b90552008c8..86ac55cd5dc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-08-17 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens. | ||
| 4 | |||
| 1 | 2006-08-17 Richard Stallman <rms@gnu.org> | 5 | 2006-08-17 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * compare-w.el (compare-windows): lambda's take an arg and pass | 7 | * 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=\"\\(.*?\\)\".*?}") | |||
| 3536 | (value (read-string (format "New value (%s): " var)))) | 3536 | (value (read-string (format "New value (%s): " var)))) |
| 3537 | (gdb-enqueue-input | 3537 | (gdb-enqueue-input |
| 3538 | (list (concat gdb-server-prefix"set variable " var " = " value "\n") | 3538 | (list (concat gdb-server-prefix"set variable " var " = " value "\n") |
| 3539 | 'ignore)))))) | 3539 | 'ignore))))) |
| 3540 | 3540 | ||
| 3541 | ;; Dont display values of arrays or structures. | 3541 | ;; Dont display values of arrays or structures. |
| 3542 | ;; These can be expanded using gud-watch. | 3542 | ;; These can be expanded using gud-watch. |