diff options
| author | Richard M. Stallman | 1992-08-03 19:20:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-08-03 19:20:08 +0000 |
| commit | 0d4ee84900adb489c6fbc1d7ddd6b25f8fb2c515 (patch) | |
| tree | 8eb0199012a2191ea321a4b9d8771b9f18ab0c60 | |
| parent | 043b998c9d17c4482b735240478d3da7a9b71f05 (diff) | |
| download | emacs-0d4ee84900adb489c6fbc1d7ddd6b25f8fb2c515.tar.gz emacs-0d4ee84900adb489c6fbc1d7ddd6b25f8fb2c515.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/gud.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index 76a3cef7ae0..aadb3c10cc3 100644 --- a/lisp/gud.el +++ b/lisp/gud.el | |||
| @@ -80,7 +80,8 @@ This association list has elements of the form | |||
| 80 | (or doc "") | 80 | (or doc "") |
| 81 | '(interactive "p") | 81 | '(interactive "p") |
| 82 | (list 'gud-call cstr)) | 82 | (list 'gud-call cstr)) |
| 83 | (list 'define-key 'gud-mode-map key (list 'quote func))))) | 83 | (if key |
| 84 | (list 'define-key 'gud-mode-map key (list 'quote func)))))) | ||
| 84 | 85 | ||
| 85 | ;; All debugger-specific information is collected here | 86 | ;; All debugger-specific information is collected here |
| 86 | ;; Here's how it works, in case you ever need to add a debugger to the table. | 87 | ;; Here's how it works, in case you ever need to add a debugger to the table. |