aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorJim Blandy1992-08-04 04:15:43 +0000
committerJim Blandy1992-08-04 04:15:43 +0000
commite8a57935cbb4ccde7f621eeeca22141e5a5327b4 (patch)
treecb90c678fa9e79cf41c1b6a22d62b620aaf0e07f /lisp/textmodes
parent0b030df78b499fde5f8dd3f20dd24a2e002fe4ee (diff)
downloademacs-e8a57935cbb4ccde7f621eeeca22141e5a5327b4.tar.gz
emacs-e8a57935cbb4ccde7f621eeeca22141e5a5327b4.zip
entered into RCS
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/two-column.el27
1 files changed, 14 insertions, 13 deletions
diff --git a/lisp/textmodes/two-column.el b/lisp/textmodes/two-column.el
index 9fe6706b751..ee3477d9e31 100644
--- a/lisp/textmodes/two-column.el
+++ b/lisp/textmodes/two-column.el
@@ -126,8 +126,8 @@
126;; An^stata^u tri `autoload' kaj tri | Instead of three `autoload' and 126;; An^stata^u tri `autoload' kaj tri | Instead of three `autoload' and
127;; `global-set-key' vi povas uzi la | three `global-set-key' you can use 127;; `global-set-key' vi povas uzi la | three `global-set-key' you can use
128;; jenon en via dataro ~/.emacs, por | the following in your file 128;; jenon en via dataro ~/.emacs, por | the following in your file
129;; memstare ^car^gi la modalon: | ~/.emacs, to automatically load 129;; memstare ^car^gi la modalon: | ~/.emacs, to automatically load
130;; | the mode: 130;; | the mode:
131 131
132;; (global-set-key "\C-x6" 132;; (global-set-key "\C-x6"
133;; '(lambda () (interactive) 133;; '(lambda () (interactive)
@@ -138,24 +138,25 @@
138;; Se vi ^satus havi la dukolumnajn | If you'd like to have the 138;; Se vi ^satus havi la dukolumnajn | If you'd like to have the
139;; ordonojn je funkciklavo <f2>, vi | two-column commands on function 139;; ordonojn je funkciklavo <f2>, vi | two-column commands on function
140;; povas uzi la jenon en via dataro | key <f2>, you can use the 140;; povas uzi la jenon en via dataro | key <f2>, you can use the
141;; ~/.emacs: | following in your file ~/.emacs: 141;; ~/.emacs: | following in your file ~/.emacs:
142 142
143;; (define-key function-keymap "\^b" 143;; (global-set-key [f2] (function
144;; '(lambda () (interactive) 144;; (lambda ()
145;; (load-library "two-column") 145;; (interactive)
146;; (define-key function-keymap "\^b" tc-mode-map) 146;; (load-library "two-column")
147;; (call-interactively 147;; (global-set-key [f2] tc-mode-map)
148;; (cdr (assq (read-char) tc-mode-map))))) 148;; (call-interactively
149;; (cdr (assq (read-char) tc-mode-map))))))
149 150
150;; In addition to two-column editing of text, for example for writing a 151;; In addition to two-column editing of text, for example for writing a
151;; bilingual text side-by-side as shown below in the file's prolog, other 152;; bilingual text side-by-side as shown below in the file's prolog, other
152;; interesting uses have been found for this minor mode: 153;; interesting uses have been found for this minor mode:
153;; 154;;
154;; 155;;
155;; You can separate the columns with {+} C-x 6 u or <f2> u if you prefer 156;; You can separate the columns with {+} C-x 6 u or <f2> u if you prefer
156;; any string that pleases you, by {+} handles these with a prefix argument 157;; any string that pleases you, by {+} handles these with a prefix argument
157;; setting tc-separator. For {+} that enables you to declare the 158;; setting tc-separator. For {+} that enables you to declare the
158;; example "{+} " if you like to {+} desired length of such a string. 159;; example "{+} " if you like to {+} desired length of such a string.
159;; amuse yourself. 160;; amuse yourself.
160;; 161;;
161;; 162;;