Mercurial > emacs
annotate lisp/textmodes/nroff-mode.el @ 9116:c49e28d99238
(POSIX_SIGNALS): Define it.
(sigsetmask): Add #undef.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 27 Sep 1994 01:58:00 +0000 |
parents | cc7cd83ccf3f |
children | 7872c31968be |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
1 ;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1985, 1986, 1994 Free Software Foundation, Inc. |
845 | 4 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: wp |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
7 |
36 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
789
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
24 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
25 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
26 ;; This package is a major mode for editing nroff source code. It knows |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
27 ;; about various nroff constructs, ms, mm, and me macros, and will fill |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
28 ;; and indent paragraphs properly in their presence. It also includes |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
29 ;; a command to count text lines (excluding nroff constructs), a command |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
30 ;; to center a line, and movement commands that know how to skip macros. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
31 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
32 ;;; Code: |
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
33 |
36 | 34 (defvar nroff-mode-abbrev-table nil |
35 "Abbrev table used while in nroff mode.") | |
6488
c6cb2f4a7ae8
(nroff-mode-abbrev-table): Call define-abbrev-table.
Karl Heuer <kwzh@gnu.org>
parents:
6273
diff
changeset
|
36 (define-abbrev-table 'nroff-mode-abbrev-table ()) |
36 | 37 |
38 (defvar nroff-mode-map nil | |
233 | 39 "Major mode keymap for nroff mode.") |
36 | 40 (if (not nroff-mode-map) |
41 (progn | |
42 (setq nroff-mode-map (make-sparse-keymap)) | |
43 (define-key nroff-mode-map "\t" 'tab-to-tab-stop) | |
44 (define-key nroff-mode-map "\es" 'center-line) | |
45 (define-key nroff-mode-map "\e?" 'count-text-lines) | |
46 (define-key nroff-mode-map "\n" 'electric-nroff-newline) | |
47 (define-key nroff-mode-map "\en" 'forward-text-line) | |
48 (define-key nroff-mode-map "\ep" 'backward-text-line))) | |
49 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
50 ;;;###autoload |
36 | 51 (defun nroff-mode () |
52 "Major mode for editing text intended for nroff to format. | |
53 \\{nroff-mode-map} | |
233 | 54 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. |
55 Also, try `nroff-electric-mode', for automatically inserting | |
36 | 56 closing requests for requests that are used in matched pairs." |
57 (interactive) | |
58 (kill-all-local-variables) | |
59 (use-local-map nroff-mode-map) | |
60 (setq mode-name "Nroff") | |
61 (setq major-mode 'nroff-mode) | |
62 (set-syntax-table text-mode-syntax-table) | |
63 (setq local-abbrev-table nroff-mode-abbrev-table) | |
64 (make-local-variable 'nroff-electric-mode) | |
3143
40f18bdaf972
(nroff-mode): Don't leave nroff-electric-mode void.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
65 (setq nroff-electric-mode nil) |
6075
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
66 (make-local-variable 'outline-regexp) |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
67 (setq outline-regexp "\\.H[ ]+[1-7]+ ") |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
68 (make-local-variable 'outline-level) |
6273
e645df5b5148
(nroff-mode): Deleted garbage character.
Karl Heuer <kwzh@gnu.org>
parents:
6075
diff
changeset
|
69 (setq outline-level 'nroff-outline-level) |
36 | 70 ;; now define a bunch of variables for use by commands in this mode |
71 (make-local-variable 'page-delimiter) | |
72 (setq page-delimiter "^\\.\\(bp\\|SK\\|OP\\)") | |
73 (make-local-variable 'paragraph-start) | |
74 (setq paragraph-start (concat "^[.']\\|" paragraph-start)) | |
75 (make-local-variable 'paragraph-separate) | |
76 (setq paragraph-separate (concat "^[.']\\|" paragraph-separate)) | |
77 ;; comment syntax added by mit-erl!gildea 18 Apr 86 | |
78 (make-local-variable 'comment-start) | |
79 (setq comment-start "\\\" ") | |
80 (make-local-variable 'comment-start-skip) | |
81 (setq comment-start-skip "\\\\\"[ \t]*") | |
82 (make-local-variable 'comment-column) | |
83 (setq comment-column 24) | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
84 (make-local-variable 'comment-indent-function) |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
85 (setq comment-indent-function 'nroff-comment-indent) |
36 | 86 (run-hooks 'text-mode-hook 'nroff-mode-hook)) |
87 | |
6075
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
88 (defun nroff-outline-level () |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
89 (save-excursion |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
90 (looking-at outline-regexp) |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
91 (skip-chars-forward ".H ") |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
92 (string-to-int (buffer-substring (point) (+ 1 (point)))))) |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
93 |
36 | 94 ;;; Compute how much to indent a comment in nroff/troff source. |
95 ;;; By mit-erl!gildea April 86 | |
96 (defun nroff-comment-indent () | |
97 "Compute indent for an nroff/troff comment. | |
98 Puts a full-stop before comments on a line by themselves." | |
99 (let ((pt (point))) | |
100 (unwind-protect | |
101 (progn | |
102 (skip-chars-backward " \t") | |
103 (if (bolp) | |
104 (progn | |
105 (setq pt (1+ pt)) | |
106 (insert ?.) | |
107 1) | |
108 (if (save-excursion | |
109 (backward-char 1) | |
110 (looking-at "^[.']")) | |
111 1 | |
112 (max comment-column | |
113 (* 8 (/ (+ (current-column) | |
114 9) 8)))))) ; add 9 to ensure at least two blanks | |
115 (goto-char pt)))) | |
116 | |
117 (defun count-text-lines (start end &optional print) | |
118 "Count lines in region, except for nroff request lines. | |
119 All lines not starting with a period are counted up. | |
120 Interactively, print result in echo area. | |
121 Noninteractively, return number of non-request lines from START to END." | |
122 (interactive "r\np") | |
123 (if print | |
124 (message "Region has %d text lines" (count-text-lines start end)) | |
125 (save-excursion | |
126 (save-restriction | |
127 (narrow-to-region start end) | |
128 (goto-char (point-min)) | |
129 (- (buffer-size) (forward-text-line (buffer-size))))))) | |
130 | |
131 (defun forward-text-line (&optional cnt) | |
132 "Go forward one nroff text line, skipping lines of nroff requests. | |
133 An argument is a repeat count; if negative, move backward." | |
134 (interactive "p") | |
135 (if (not cnt) (setq cnt 1)) | |
136 (while (and (> cnt 0) (not (eobp))) | |
137 (forward-line 1) | |
138 (while (and (not (eobp)) (looking-at "[.'].")) | |
139 (forward-line 1)) | |
140 (setq cnt (- cnt 1))) | |
141 (while (and (< cnt 0) (not (bobp))) | |
142 (forward-line -1) | |
143 (while (and (not (bobp)) | |
144 (looking-at "[.'].")) | |
145 (forward-line -1)) | |
146 (setq cnt (+ cnt 1))) | |
147 cnt) | |
148 | |
149 (defun backward-text-line (&optional cnt) | |
150 "Go backward one nroff text line, skipping lines of nroff requests. | |
151 An argument is a repeat count; negative means move forward." | |
152 (interactive "p") | |
153 (forward-text-line (- cnt))) | |
154 | |
155 (defconst nroff-brace-table | |
156 '((".(b" . ".)b") | |
157 (".(l" . ".)l") | |
158 (".(q" . ".)q") | |
159 (".(c" . ".)c") | |
160 (".(x" . ".)x") | |
161 (".(z" . ".)z") | |
162 (".(d" . ".)d") | |
163 (".(f" . ".)f") | |
164 (".LG" . ".NL") | |
165 (".SM" . ".NL") | |
166 (".LD" . ".DE") | |
167 (".CD" . ".DE") | |
168 (".BD" . ".DE") | |
169 (".DS" . ".DE") | |
170 (".DF" . ".DE") | |
171 (".FS" . ".FE") | |
172 (".KS" . ".KE") | |
173 (".KF" . ".KE") | |
174 (".LB" . ".LE") | |
175 (".AL" . ".LE") | |
176 (".BL" . ".LE") | |
177 (".DL" . ".LE") | |
178 (".ML" . ".LE") | |
179 (".RL" . ".LE") | |
180 (".VL" . ".LE") | |
181 (".RS" . ".RE") | |
182 (".TS" . ".TE") | |
183 (".EQ" . ".EN") | |
184 (".PS" . ".PE") | |
185 (".BS" . ".BE") | |
186 (".G1" . ".G2") ; grap | |
187 (".na" . ".ad b") | |
188 (".nf" . ".fi") | |
189 (".de" . ".."))) | |
190 | |
191 (defun electric-nroff-newline (arg) | |
192 "Insert newline for nroff mode; special if electric-nroff mode. | |
233 | 193 In `electric-nroff-mode', if ending a line containing an nroff opening request, |
36 | 194 automatically inserts the matching closing request after point." |
195 (interactive "P") | |
196 (let ((completion (save-excursion | |
197 (beginning-of-line) | |
198 (and (null arg) | |
199 nroff-electric-mode | |
200 (<= (point) (- (point-max) 3)) | |
201 (cdr (assoc (buffer-substring (point) | |
202 (+ 3 (point))) | |
203 nroff-brace-table))))) | |
204 (needs-nl (not (looking-at "[ \t]*$")))) | |
205 (if (null completion) | |
206 (newline (prefix-numeric-value arg)) | |
207 (save-excursion | |
208 (insert "\n\n" completion) | |
209 (if needs-nl (insert "\n"))) | |
210 (forward-char 1)))) | |
211 | |
212 (defun electric-nroff-mode (&optional arg) | |
233 | 213 "Toggle `nroff-electric-newline' minor mode. |
214 `nroff-electric-newline' forces Emacs to check for an nroff request at the | |
215 beginning of the line, and insert the matching closing request if necessary. | |
216 This command toggles that mode (off->on, on->off), with an argument, | |
217 turns it on iff arg is positive, otherwise off." | |
36 | 218 (interactive "P") |
219 (or (eq major-mode 'nroff-mode) (error "Must be in nroff mode")) | |
220 (or (assq 'nroff-electric-mode minor-mode-alist) | |
221 (setq minor-mode-alist (append minor-mode-alist | |
222 (list '(nroff-electric-mode | |
223 " Electric"))))) | |
224 (setq nroff-electric-mode | |
225 (cond ((null arg) (null nroff-electric-mode)) | |
226 (t (> (prefix-numeric-value arg) 0))))) | |
227 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
228 ;;; nroff-mode.el ends here |