From: Nick Roberts Date: Sat, 16 Feb 2008 07:03:15 +0000 (+0000) Subject: (gud-gdb): Don't reset gdb-ready. X-Git-Tag: emacs-pretest-23.0.90~7926 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=517045bc37831d78eb0b24a0ee20e7a011641d95;p=emacs.git (gud-gdb): Don't reset gdb-ready. (gdb-ready): Move declaration to gdb-ui.el. --- diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 4e9d73c0a00..f8daa99675e 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -63,7 +63,7 @@ (defgroup gud nil "Grand Unified Debugger mode for gdb and other debuggers under Emacs. -Supported debuggers include gdb, sdb, dbx, xdb, perldb, pdb (Python), jdb." +Supported debuggers include gdb, sdb, dbx, xdb, perldb, pdb (Python) and jdb." :group 'processes :group 'tools) @@ -109,8 +109,6 @@ If SOFT is non-nil, returns nil if the symbol doesn't already exist." "Non-nil if debugged program is running. Used to grey out relevant toolbar icons.") -(defvar gdb-ready nil) - (defvar gud-target-name "--unknown--" "The apparent name of the program being debugged in a gud buffer.") @@ -771,7 +769,6 @@ directory and source-file directory for your debugger." (setq paragraph-start comint-prompt-regexp) (setq gdb-first-prompt t) (setq gud-running nil) - (setq gdb-ready nil) (setq gud-filter-pending-text nil) (run-hooks 'gud-gdb-mode-hook)) @@ -2307,7 +2304,6 @@ gud, see `gud-mode'." (gud-def gud-run "run" nil "Run the program.") ;if VM start using jdb (gud-def gud-print "print %e" "\C-p" "Evaluate Java expression at point.") - (setq comint-prompt-regexp "^> \\|^[^ ]+\\[[0-9]+\\] ") (setq paragraph-start comint-prompt-regexp) (run-hooks 'jdb-mode-hook) @@ -2867,7 +2863,7 @@ Obeying it means displaying in another window the specified file and line." (set-marker-insertion-type gud-delete-prompt-marker t)) (unless (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) 'jdb) - (insert (concat expr " = ")))))) + (insert (concat expr " = ")))))) expr)) ;; The next eight functions are hacked from gdbsrc.el by