Mercurial > emacs
changeset 48517:2941d71711f3
(tooltip-gud-print-command): Add server prefix to the
print command for gdb to keep it out of the command history.
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Sat, 23 Nov 2002 14:10:19 +0000 |
parents | 6b42d956b7a5 |
children | 0eb01081d9f5 |
files | lisp/tooltip.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/tooltip.el Sat Nov 23 14:09:26 2002 +0000 +++ b/lisp/tooltip.el Sat Nov 23 14:10:19 2002 +0000 @@ -482,7 +482,8 @@ (when tooltip-gud-dereference (setq expr (concat "*" expr))) (case tooltip-gud-debugger - ((gdb dbx) (concat "print " expr)) + (gdb (concat "server print " expr)) + (dbx (concat "print " expr)) (xdb (concat "p " expr)) (sdb (concat expr "/")) (perldb expr)))