diff options
| author | Nick Roberts | 2006-05-15 11:17:47 +0000 |
|---|---|---|
| committer | Nick Roberts | 2006-05-15 11:17:47 +0000 |
| commit | e6f0d1c8452e2d58a099472890bd7dda16b1c300 (patch) | |
| tree | 30a82bbd0507095aa2c5fe5496fe13aada7884ab | |
| parent | ca9b119b1d57aeb2e8a497e134ba6f299fcdc215 (diff) | |
| download | emacs-e6f0d1c8452e2d58a099472890bd7dda16b1c300.tar.gz emacs-e6f0d1c8452e2d58a099472890bd7dda16b1c300.zip | |
(gud-tooltip-tips): Add missing argument to
call to gdb-tooltip-print.
| -rw-r--r-- | lisp/progmodes/gud.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 5be88668353..d2e6cfc4ae4 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el | |||
| @@ -3480,7 +3480,8 @@ so they have been disabled.")) | |||
| 3480 | gdb-server-prefix "macro expand " expr "\n") | 3480 | gdb-server-prefix "macro expand " expr "\n") |
| 3481 | `(lambda () (gdb-tooltip-print-1 ,expr)))) | 3481 | `(lambda () (gdb-tooltip-print-1 ,expr)))) |
| 3482 | (gdb-enqueue-input | 3482 | (gdb-enqueue-input |
| 3483 | (list (concat cmd "\n") 'gdb-tooltip-print))) | 3483 | (list (concat cmd "\n") |
| 3484 | `(lambda () (gdb-tooltip-print ,expr))))) | ||
| 3484 | (setq gud-tooltip-original-filter (process-filter process)) | 3485 | (setq gud-tooltip-original-filter (process-filter process)) |
| 3485 | (set-process-filter process 'gud-tooltip-process-output) | 3486 | (set-process-filter process 'gud-tooltip-process-output) |
| 3486 | (gud-basic-call cmd)) | 3487 | (gud-basic-call cmd)) |