diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-31 05:54:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-31 05:54:07 +0000 |
commit | c8f12a6b1592b877b3bb6c4305cdcb3fcea6ba40 (patch) | |
tree | b6ca12ca7f8cf31856ee578a40826db4f8048082 /lisp/gud.el | |
parent | d2688800104cb66c2602f61602e864d0412c4c64 (diff) | |
download | emacs-c8f12a6b1592b877b3bb6c4305cdcb3fcea6ba40.tar.gz |
(gud-def): Don't use gud-key-prefix at compile time.
Diffstat (limited to 'lisp/gud.el')
-rw-r--r-- | lisp/gud.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index 53f2acf8cb0..7be667ba8ba 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -106,7 +106,7 @@ we're in the GUD buffer)." (list 'quote func))) (if key (list 'global-set-key - (concat gud-key-prefix key) + (list 'concat 'gud-key-prefix key) (list 'quote func))))) ;; Where gud-display-frame should put the debugging arrow. This is |