diff options
| author | Stefan Monnier | 2004-03-28 21:33:53 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-28 21:33:53 +0000 |
| commit | da19d9ce3a6ba214e15a33b8a5e5ae113ac073de (patch) | |
| tree | 8d5f200cde05141a4a4380728e4f45dc5ce27ec3 | |
| parent | dbefaa008de0ee0997504861950aa4b13178e2dc (diff) | |
| download | emacs-da19d9ce3a6ba214e15a33b8a5e5ae113ac073de.tar.gz emacs-da19d9ce3a6ba214e15a33b8a5e5ae113ac073de.zip | |
(gdb-post-prompt): Fix test.
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 08a5a2ccbd3..31589184293 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el | |||
| @@ -778,7 +778,8 @@ output from the current command if that happens to be appropriate." | |||
| 778 | (gdb-invalidate-registers) | 778 | (gdb-invalidate-registers) |
| 779 | (gdb-invalidate-locals) | 779 | (gdb-invalidate-locals) |
| 780 | (gdb-invalidate-threads) | 780 | (gdb-invalidate-threads) |
| 781 | (unless (eq window-system 'mac) | 781 | (unless (eq system-type 'darwin) ;Breaks on Darwin's GDB-5.3. |
| 782 | ;; FIXME: with GDB-6 on Darwin, this might very well work. | ||
| 782 | (dolist (frame (frame-list)) | 783 | (dolist (frame (frame-list)) |
| 783 | (when (string-equal (frame-parameter frame 'name) "Speedbar") | 784 | (when (string-equal (frame-parameter frame 'name) "Speedbar") |
| 784 | (setq gdb-var-changed t) ; force update | 785 | (setq gdb-var-changed t) ; force update |