aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2006-04-07 11:20:39 +0000
committerNick Roberts2006-04-07 11:20:39 +0000
commit4d91dd05aab77cb9bd8dafcb62aaae1613916cd9 (patch)
tree08b839dfba6e1b868382296e5392b4ede701662b
parenta179cd22c543d7a9704199d054ebe23d7601151f (diff)
downloademacs-4d91dd05aab77cb9bd8dafcb62aaae1613916cd9.tar.gz
emacs-4d91dd05aab77cb9bd8dafcb62aaae1613916cd9.zip
(gdb-init-2): Set current filename using
GDB list command without argument for greater generality.
-rw-r--r--lisp/progmodes/gdb-ui.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index b969515e2fc..9f527d12f9f 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -571,9 +571,9 @@ With arg, use separate IO iff arg is positive."
571 'gdb-set-gud-minor-mode-existing-buffers-1)) 571 'gdb-set-gud-minor-mode-existing-buffers-1))
572 (setq gdb-locals-font-lock-keywords gdb-locals-font-lock-keywords-2)) 572 (setq gdb-locals-font-lock-keywords gdb-locals-font-lock-keywords-2))
573 573
574 ;; find source file and compilation directory here 574 ;; Find source file and compilation directory here.
575 (gdb-enqueue-input (list "server list main\n" 'ignore)) ; C program 575 ;; Works for C, C++, Fortran and Ada but not Java (GDB 6.4)
576 (gdb-enqueue-input (list "server list MAIN__\n" 'ignore)) ; Fortran program 576 (gdb-enqueue-input (list "server list\n" 'ignore))
577 (gdb-enqueue-input (list "server info source\n" 'gdb-source-info)) 577 (gdb-enqueue-input (list "server info source\n" 'gdb-source-info))
578 578
579 (run-hooks 'gdba-mode-hook)) 579 (run-hooks 'gdba-mode-hook))