summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2005-04-11 22:32:24 +0000
committerNick Roberts <nickrob@snap.net.nz>2005-04-11 22:32:24 +0000
commit6f120f70bc696c1146c0ccd6fa17d68b0e9920e4 (patch)
tree942b4c8bf5855bc807160817a132deb7c28240dd /lisp
parentc80b39457c91a34cf23a72134cf10f90f5c13f70 (diff)
downloademacs-6f120f70bc696c1146c0ccd6fa17d68b0e9920e4.tar.gz
emacs-6f120f70bc696c1146c0ccd6fa17d68b0e9920e4.tar.bz2
emacs-6f120f70bc696c1146c0ccd6fa17d68b0e9920e4.zip
(gud-display-line): GUD uses its own
overlay arrow now so don't set overlay-arrow-string. (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/gud.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index 1f9284db9cb..bf0b709e43a 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -1417,7 +1417,7 @@ and source-file directory for your debugger."
output))
-(defcustom gud-pdb-command-name "pydb"
+(defcustom gud-pdb-command-name "pdb"
"File name for executing the Python debugger.
This should be an executable on your path, or an absolute file name."
:type 'string
@@ -2614,7 +2614,6 @@ Obeying it means displaying in another window the specified file and line."
(widen)
(goto-line line)
(setq pos (point))
- (setq overlay-arrow-string "=>")
(or gud-overlay-arrow-position
(setq gud-overlay-arrow-position (make-marker)))
(set-marker gud-overlay-arrow-position (point) (current-buffer)))