diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-28 21:49:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-28 21:49:35 +0000 |
commit | 16776e8d91859cccebe3421528bf0c78bd78bc43 (patch) | |
tree | 219ea9f74e2d5de0591da846f2f8def1f88169ad /lisp/gud.el | |
parent | dad1bbe25663bc0c6c6f0960d25258a9a1a3e15e (diff) | |
download | emacs-16776e8d91859cccebe3421528bf0c78bd78bc43.tar.gz |
Use ctl-x-map to bind C-x SPC.
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 421bb15b337..4655dd37eac 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -47,7 +47,7 @@ "Prefix of all GUD commands valid in C buffers.") (global-set-key (concat gud-key-prefix "\C-l") 'gud-refresh) -(global-set-key "\C-x " 'gud-break) ;; backward compatibility hack +(define-key ctl-x-map " " 'gud-break) ;; backward compatibility hack ;; ====================================================================== ;; the overloading mechanism |