diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-04-17 04:35:15 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-04-17 04:35:15 +0000 |
commit | 65c35dc6576e7bb8fc453a7c876d574978d44c8f (patch) | |
tree | 2777c8080a653bb0278989fec463317e24210057 /lisp/textmodes/two-column.el | |
parent | fc08c36736e40754b591009c905cdc5736495e38 (diff) | |
download | emacs-65c35dc6576e7bb8fc453a7c876d574978d44c8f.tar.gz |
(tc-dissociate): Renamed from tc-kill-association.
Move binding to C-x 6 d.
Diffstat (limited to 'lisp/textmodes/two-column.el')
-rw-r--r-- | lisp/textmodes/two-column.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/two-column.el b/lisp/textmodes/two-column.el index a024f96ed50..76fc38b6d02 100644 --- a/lisp/textmodes/two-column.el +++ b/lisp/textmodes/two-column.el @@ -236,7 +236,7 @@ (define-key tc-mode-map "1" 'tc-merge) (define-key tc-mode-map "2" 'tc-two-columns) (define-key tc-mode-map "b" 'tc-associate-buffer) - (define-key tc-mode-map "k" 'tc-kill-association) + (define-key tc-mode-map "e" 'tc-dissociate) (define-key tc-mode-map "\C-l" 'tc-recenter) (define-key tc-mode-map "o" 'tc-associated-buffer) (define-key tc-mode-map "s" 'tc-split) @@ -472,7 +472,7 @@ See \\[tc-two-columns] and `lisp/two-column.el' for further details." (next-line 1))))) ;;;###autoload -(defun tc-kill-association () +(defun tc-dissociate () "Turn off two-column minor mode in current and associated buffer. If the associated buffer is unmodified and empty, it is killed." (interactive) |