Mercurial > emacs
annotate lisp/textmodes/text-mode.el @ 32512:76e2488e5600
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 16 Oct 2000 04:13:28 +0000 |
parents | 0d9cac36402a |
children | 253f761ad37b |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
283
diff
changeset
|
1 ;;; text-mode.el --- text mode, and its idiosyncratic commands. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
283
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1985, 1992, 1994 Free Software Foundation, Inc. |
841 | 4 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
5 ;; Maintainer: FSF |
36 | 6 |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
727 | 11 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
14169 | 20 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
22 ;; Boston, MA 02111-1307, USA. | |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1576
diff
changeset
|
23 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1576
diff
changeset
|
24 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1576
diff
changeset
|
25 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1576
diff
changeset
|
26 ;; This package provides the fundamental text mode documented in the |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1576
diff
changeset
|
27 ;; Emacs user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1576
diff
changeset
|
28 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
29 ;;; Code: |
36 | 30 |
26598 | 31 (defcustom text-mode-hook nil |
32 "Normal hook run when entering Text mode and many related modes." | |
33 :type 'hook | |
28108
0d9cac36402a
(text-mode-hook): Add flyspell-mode to
Dave Love <fx@gnu.org>
parents:
27202
diff
changeset
|
34 :options '(turn-on-auto-fill flyspell-mode) |
26598 | 35 :group 'data) |
19589
8c19d570a391
(text-mode-hook): New defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18256
diff
changeset
|
36 |
19590
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
37 (defvar text-mode-variant nil |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
38 "Non-nil if this buffer's major mode is a variant of Text mode.") |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
39 |
36 | 40 (defvar text-mode-syntax-table nil |
41 "Syntax table used while in text mode.") | |
42 | |
43 (defvar text-mode-abbrev-table nil | |
44 "Abbrev table used while in text mode.") | |
45 (define-abbrev-table 'text-mode-abbrev-table ()) | |
46 | |
47 (if text-mode-syntax-table | |
48 () | |
49 (setq text-mode-syntax-table (make-syntax-table)) | |
50 (modify-syntax-entry ?\" ". " text-mode-syntax-table) | |
51 (modify-syntax-entry ?\\ ". " text-mode-syntax-table) | |
52 (modify-syntax-entry ?' "w " text-mode-syntax-table)) | |
53 | |
54 (defvar text-mode-map nil | |
55 "Keymap for Text mode. | |
56 Many other modes, such as Mail mode, Outline mode and Indented Text mode, | |
57 inherit all the commands defined in this map.") | |
58 | |
59 (if text-mode-map | |
60 () | |
61 (setq text-mode-map (make-sparse-keymap)) | |
4896
bc777b8e4b45
(text-mode-map): Bind ispell-complete-word to M-TAB.
Richard M. Stallman <rms@gnu.org>
parents:
4744
diff
changeset
|
62 (define-key text-mode-map "\e\t" 'ispell-complete-word) |
18222
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
63 (define-key text-mode-map "\t" 'indent-relative) |
36 | 64 (define-key text-mode-map "\es" 'center-line) |
65 (define-key text-mode-map "\eS" 'center-paragraph)) | |
66 | |
67 | |
68 (defun text-mode () | |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
69 "Major mode for editing text written for humans to read. |
18256
27f2dfb2c1de
(text-mode): Let all-white lines separate paragraphs.
Richard M. Stallman <rms@gnu.org>
parents:
18222
diff
changeset
|
70 In this mode, paragraphs are delimited only by blank or white lines. |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
71 You can thus get the full benefit of adaptive filling |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
72 (see the variable `adaptive-fill-mode'). |
6323 | 73 \\{text-mode-map} |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
74 Turning on Text mode runs the normal hook `text-mode-hook'." |
36 | 75 (interactive) |
76 (kill-all-local-variables) | |
77 (use-local-map text-mode-map) | |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
78 (setq local-abbrev-table text-mode-abbrev-table) |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
79 (set-syntax-table text-mode-syntax-table) |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
80 (make-local-variable 'paragraph-start) |
26544
1551195f02c3
(text-mode): Contruct paragraph-start so
Gerd Moellmann <gerd@gnu.org>
parents:
22631
diff
changeset
|
81 (setq paragraph-start (concat page-delimiter "\\|[ \t]*$")) |
27202
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
82 (if (eq ?^ (aref paragraph-start 0)) |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
83 (setq paragraph-start (substring paragraph-start 1))) |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
84 (make-local-variable 'paragraph-separate) |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
85 (setq paragraph-separate paragraph-start) |
22631
3f3121176533
(text-mode): Locally set indent-line-function.
Richard M. Stallman <rms@gnu.org>
parents:
19620
diff
changeset
|
86 (make-local-variable 'indent-line-function) |
3f3121176533
(text-mode): Locally set indent-line-function.
Richard M. Stallman <rms@gnu.org>
parents:
19620
diff
changeset
|
87 (setq indent-line-function 'indent-relative-maybe) |
36 | 88 (setq mode-name "Text") |
89 (setq major-mode 'text-mode) | |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
90 (run-hooks 'text-mode-hook)) |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
91 |
18222
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
92 (defun paragraph-indent-text-mode () |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
93 "Major mode for editing text, with leading spaces starting a paragraph. |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
94 In this mode, you do not need blank lines between paragraphs |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
95 when the first line of the following paragraph starts with whitespace. |
27202
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
96 `paragraph-indent-minor-mode' provides a similar facility as a minor mode. |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
97 Special commands: |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
98 \\{text-mode-map} |
18222
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
99 Turning on Paragraph-Indent Text mode runs the normal hooks |
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
100 `text-mode-hook' and `paragraph-indent-text-mode-hook'." |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
101 (interactive) |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
102 (kill-all-local-variables) |
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
103 (use-local-map text-mode-map) |
18222
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
104 (setq mode-name "Parindent") |
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
105 (setq major-mode 'paragraph-indent-text-mode) |
36 | 106 (setq local-abbrev-table text-mode-abbrev-table) |
107 (set-syntax-table text-mode-syntax-table) | |
18222
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
108 (run-hooks 'text-mode-hook 'paragraph-indent-text-mode-hook)) |
27202
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
109 |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
110 (defun paragraph-indent-minor-mode () |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
111 "Minor mode for editing text, with leading spaces starting a paragraph. |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
112 In this mode, you do not need blank lines between paragraphs when the |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
113 first line of the following paragraph starts with whitespace, as with |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
114 `paragraph-indent-mode'. |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
115 Turning on Paragraph-Indent minor mode runs the normal hook |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
116 `paragraph-indent-text-mode-hook'." |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
117 (interactive) |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
118 (set (make-local-variable 'paragraph-start) |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
119 (default-value 'paragraph-start)) |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
120 (set (make-local-variable 'paragraph-separate) paragraph-start) |
6047ac0aaa7c
(text-mode): Remove page-delimiter's `^' from paragraph-start.
Dave Love <fx@gnu.org>
parents:
26598
diff
changeset
|
121 (run-hooks 'paragraph-indent-text-mode-hook)) |
18132
95f6ac42b352
(spaced-text-mode): Renamed from text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
122 |
18222
b7ad635feeb8
(paragraph-indent-text-mode): Renamed from spaced-text-mode.
Richard M. Stallman <rms@gnu.org>
parents:
18132
diff
changeset
|
123 (defalias 'indented-text-mode 'text-mode) |
36 | 124 |
19620
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
125 (defun text-mode-hook-identify () |
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
126 "Mark that this mode has run `text-mode-hook'. |
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
127 This is how `toggle-text-mode-auto-fill' knows which buffers to operate on." |
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
128 (make-local-variable 'text-mode-variant) |
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
129 (setq text-mode-variant t)) |
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
130 |
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
131 (add-hook 'text-mode-hook 'text-mode-hook-identify) |
7fccc0f34e57
(text-mode-hook-identify): New function,
Richard M. Stallman <rms@gnu.org>
parents:
19590
diff
changeset
|
132 |
19590
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
133 (defun toggle-text-mode-auto-fill () |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
134 "Toggle whether to use Auto Fill in Text mode and related modes. |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
135 This command affects all buffers that use modes related to Text mode, |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
136 both existing buffers and buffers that you subsequently create." |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
137 (interactive) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
138 (let ((enable-mode (not (memq 'turn-on-auto-fill text-mode-hook))) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
139 (buffers (buffer-list))) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
140 (if enable-mode |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
141 (add-hook 'text-mode-hook 'turn-on-auto-fill) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
142 (remove-hook 'text-mode-hook 'turn-on-auto-fill)) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
143 (while buffers |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
144 (with-current-buffer (car buffers) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
145 (if text-mode-variant |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
146 (auto-fill-mode (if enable-mode 1 0)))) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
147 (setq buffers (cdr buffers))) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
148 (message "Auto Fill %s in Text modes" |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
149 (if enable-mode "enabled" "disabled")))) |
167f4700890a
(text-mode-variant): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19589
diff
changeset
|
150 |
36 | 151 (defun center-paragraph () |
152 "Center each nonblank line in the paragraph at or after point. | |
1576 | 153 See `center-line' for more info." |
36 | 154 (interactive) |
155 (save-excursion | |
156 (forward-paragraph) | |
157 (or (bolp) (newline 1)) | |
158 (let ((end (point))) | |
159 (backward-paragraph) | |
160 (center-region (point) end)))) | |
161 | |
162 (defun center-region (from to) | |
163 "Center each nonblank line starting in the region. | |
1576 | 164 See `center-line' for more info." |
36 | 165 (interactive "r") |
166 (if (> from to) | |
167 (let ((tem to)) | |
168 (setq to from from tem))) | |
169 (save-excursion | |
170 (save-restriction | |
171 (narrow-to-region from to) | |
172 (goto-char from) | |
173 (while (not (eobp)) | |
174 (or (save-excursion (skip-chars-forward " \t") (eolp)) | |
175 (center-line)) | |
176 (forward-line 1))))) | |
177 | |
13023
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
178 (defun center-line (&optional nlines) |
36 | 179 "Center the line point is on, within the width specified by `fill-column'. |
180 This means adjusting the indentation so that it equals | |
13023
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
181 the distance between the end of the text and `fill-column'. |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
182 The argument NLINES says how many lines to center." |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
183 (interactive "P") |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
184 (if nlines (setq nlines (prefix-numeric-value nlines))) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
185 (while (not (eq nlines 0)) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
186 (save-excursion |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
187 (let ((lm (current-left-margin)) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
188 line-length) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
189 (beginning-of-line) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
190 (delete-horizontal-space) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
191 (end-of-line) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
192 (delete-horizontal-space) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
193 (setq line-length (current-column)) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
194 (if (> (- fill-column lm line-length) 0) |
28108
0d9cac36402a
(text-mode-hook): Add flyspell-mode to
Dave Love <fx@gnu.org>
parents:
27202
diff
changeset
|
195 (indent-line-to |
13023
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
196 (+ lm (/ (- fill-column lm line-length) 2)))))) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
197 (cond ((null nlines) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
198 (setq nlines 0)) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
199 ((> nlines 0) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
200 (setq nlines (1- nlines)) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
201 (forward-line 1)) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
202 ((< nlines 0) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
203 (setq nlines (1+ nlines)) |
78f30dd2c8fd
(center-line): New arg NLINES.
Richard M. Stallman <rms@gnu.org>
parents:
10899
diff
changeset
|
204 (forward-line -1))))) |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
283
diff
changeset
|
205 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
283
diff
changeset
|
206 ;;; text-mode.el ends here |