aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-06-01 03:03:00 +0000
committerKarl Heuer1998-06-01 03:03:00 +0000
commit2c02e313059d4797a746cc9bd6ca88d0915aa6e7 (patch)
tree18838da99182641b5abb45500cd44a91f1170777
parent6e2c88407b6bde37780d0a6943dcba7758cb72b7 (diff)
downloademacs-2c02e313059d4797a746cc9bd6ca88d0915aa6e7.tar.gz
emacs-2c02e313059d4797a746cc9bd6ca88d0915aa6e7.zip
Bind f2 and C-x 6 prefixes
only via an autoload, not when this file is loaded.
-rw-r--r--lisp/textmodes/two-column.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/textmodes/two-column.el b/lisp/textmodes/two-column.el
index 43e188b40bf..75a8506eee5 100644
--- a/lisp/textmodes/two-column.el
+++ b/lisp/textmodes/two-column.el
@@ -159,15 +159,12 @@
159;;;###autoload (autoload '2C-command "two-column" () t 'keymap) 159;;;###autoload (autoload '2C-command "two-column" () t 'keymap)
160(fset '2C-command 2C-mode-map) 160(fset '2C-command 2C-mode-map)
161 161
162;;;###autoload
163;; This one is for historical reasons and simple keyboards, it is not 162;; This one is for historical reasons and simple keyboards, it is not
164;; at all mnemonic. All usual sequences containing 2 were used, and 163;; at all mnemonic. All usual sequences containing 2 were used, and
165;; f2 could not be set up in a standard way under Emacs 18. 164;; f2 could not be set up in a standard way under Emacs 18.
166(global-set-key "\C-x6" '2C-command) 165;;;###autoload (global-set-key "\C-x6" '2C-command)
167
168 166
169;;;###autoload 167;;;###autoload (global-set-key [f2] '2C-command)
170(global-set-key [f2] '2C-command)
171 168
172 169
173(defvar 2C-minor-mode-map 170(defvar 2C-minor-mode-map