# HG changeset patch # User Nick Roberts # Date 1147691867 0 # Node ID 1ba52dfffa46e95812b2e66bb0c735dec99517d5 # Parent dc0cc3e03033325932a61cc59bc29bc51c8995f8 (gud-tooltip-tips): Add missing argument to call to gdb-tooltip-print. diff -r dc0cc3e03033 -r 1ba52dfffa46 lisp/progmodes/gud.el --- a/lisp/progmodes/gud.el Mon May 15 11:17:07 2006 +0000 +++ b/lisp/progmodes/gud.el Mon May 15 11:17:47 2006 +0000 @@ -3480,7 +3480,8 @@ gdb-server-prefix "macro expand " expr "\n") `(lambda () (gdb-tooltip-print-1 ,expr)))) (gdb-enqueue-input - (list (concat cmd "\n") 'gdb-tooltip-print))) + (list (concat cmd "\n") + `(lambda () (gdb-tooltip-print ,expr))))) (setq gud-tooltip-original-filter (process-filter process)) (set-process-filter process 'gud-tooltip-process-output) (gud-basic-call cmd))