aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2005-10-25 01:18:56 +0000
committerNick Roberts2005-10-25 01:18:56 +0000
commitd12d5866fcfe4c4c1b8aa9aa34eb7cee58fac3fa (patch)
tree07362409e69b8054f1a29b3cb6693c35c899cf9a
parent56da68fc4043323cd05b01058ac6a250373794f6 (diff)
downloademacs-d12d5866fcfe4c4c1b8aa9aa34eb7cee58fac3fa.tar.gz
emacs-d12d5866fcfe4c4c1b8aa9aa34eb7cee58fac3fa.zip
(gdb-put-breakpoint-icon): Correct help-echo.
Display hand pointer and help-echo on disabled icon too.
-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 61b537bfc44..dae1b3e811b 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -2515,7 +2515,7 @@ BUFFER nil or omitted means use the current buffer."
2515 (putstring (if enabled "B" "b")) 2515 (putstring (if enabled "B" "b"))
2516 (source-window (get-buffer-window (current-buffer) 0))) 2516 (source-window (get-buffer-window (current-buffer) 0)))
2517 (add-text-properties 2517 (add-text-properties
2518 0 1 '(help-echo "mouse-1: set/clear bkpt, mouse-3: enable/disable bkpt") 2518 0 1 '(help-echo "mouse-1: clear bkpt, mouse-3: enable/disable bkpt")
2519 putstring) 2519 putstring)
2520 (if enabled 2520 (if enabled
2521 (add-text-properties 2521 (add-text-properties
@@ -2557,10 +2557,10 @@ BUFFER nil or omitted means use the current buffer."
2557 (find-image `((:type xpm :data 2557 (find-image `((:type xpm :data
2558 ,breakpoint-xpm-data 2558 ,breakpoint-xpm-data
2559 :conversion disabled 2559 :conversion disabled
2560 :ascent 100) 2560 :ascent 100 :pointer hand)
2561 (:type pbm :data 2561 (:type pbm :data
2562 ,breakpoint-disabled-pbm-data 2562 ,breakpoint-disabled-pbm-data
2563 :ascent 100)))))) 2563 :ascent 100 :pointer hand))))))
2564 (+ start 1) 2564 (+ start 1)
2565 putstring 2565 putstring
2566 'left-margin)) 2566 'left-margin))