diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2005-01-19 06:55:57 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2005-01-19 06:55:57 +0000 |
commit | f30943417b9d10cb624616fe516afd113ebde324 (patch) | |
tree | e4fda0cbd083111d494bf7e546e155ce976f5695 /lisp/progmodes/gdb-ui.el | |
parent | 2c60b6d3c0cdacc9e9ac391b3823a4f21f22144c (diff) | |
download | emacs-f30943417b9d10cb624616fe516afd113ebde324.tar.gz emacs-f30943417b9d10cb624616fe516afd113ebde324.tar.bz2 emacs-f30943417b9d10cb624616fe516afd113ebde324.zip |
(gdb-put-breakpoint-icon): Add help-echo for
breakpoint image symbol in margin.
Diffstat (limited to 'lisp/progmodes/gdb-ui.el')
-rw-r--r-- | lisp/progmodes/gdb-ui.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index ad081c2ac9e..993d440cd0c 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el @@ -1836,6 +1836,9 @@ BUFFER nil or omitted means use the current buffer." (let ((start (progn (beginning-of-line) (- (point) 1))) (end (progn (end-of-line) (+ (point) 1))) (putstring (if enabled "B" "b"))) + (add-text-properties + 0 1 '(help-echo "mouse-1: set/clear bkpt, mouse-3: enable/disable bkpt") + putstring) (if enabled (add-text-properties 0 1 `(gdb-bptno ,bptno gdb-enabled t) putstring) (add-text-properties |