Mercurial > emacs
annotate lisp/textmodes/nroff-mode.el @ 41109:0bcf2d7f0112
(values, values-list, multiple-value-list, multiple-value-apply, nth-value):
Use defsubst rather than defalias, to get better doc strings.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 15 Nov 2001 23:57:43 +0000 |
parents | d16a58a98f40 |
children | 24d4032aaa07 |
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 |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1994, 1995 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 | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
36 | 24 |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
25 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
26 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
27 ;; 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
|
28 ;; 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
|
29 ;; 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
|
30 ;; 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
|
31 ;; 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
|
32 |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
33 ;; Paragraph filling and line-counting currently don't respect comments, |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
34 ;; as they should. |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
35 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
36 ;;; Code: |
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
37 |
19475 | 38 (defgroup nroff nil |
39 "Nroff mode." | |
20082
5aeeb9b32ee4
(nroff): Moved from `editing' to `wp'.
Karl Heuer <kwzh@gnu.org>
parents:
19475
diff
changeset
|
40 :group 'wp |
19475 | 41 :prefix "nroff-") |
42 | |
43 (defcustom nroff-electric-mode nil | |
44 "*Non-nil means automatically closing requests when you insert an open." | |
45 :group 'nroff | |
46 :type 'boolean) | |
18425
847ee3e08152
(nroff-electric-mode): New defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
47 |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
48 (defvar nroff-mode-map |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
49 (let ((map (make-sparse-keymap))) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
50 (define-key map "\t" 'tab-to-tab-stop) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
51 (define-key map "\es" 'center-line) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
52 (define-key map "\e?" 'count-text-lines) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
53 (define-key map "\n" 'electric-nroff-newline) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
54 (define-key map "\en" 'forward-text-line) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
55 (define-key map "\ep" 'backward-text-line) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
56 map) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
57 "Major mode keymap for `nroff-mode'.") |
36 | 58 |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
59 (defvar nroff-mode-syntax-table |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
60 (let ((st (copy-syntax-table text-mode-syntax-table))) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
61 ;; " isn't given string quote syntax in text-mode but it |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
62 ;; (arguably) should be for use round nroff arguments (with ` and |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
63 ;; ' used otherwise). |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
64 (modify-syntax-entry ?\" "\" 2" st) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
65 ;; Comments are delimited by \" and newline. |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
66 (modify-syntax-entry ?\\ "\\ 1" st) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
67 (modify-syntax-entry ?\n "> 1" st) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
68 st) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
69 "Syntax table used while in `nroff-mode'.") |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
70 |
19475 | 71 (defcustom nroff-font-lock-keywords |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
72 (list |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
73 ;; Directives are . or ' at start of line, followed by |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
74 ;; optional whitespace, then command (which my be longer than |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
75 ;; 2 characters in groff). Perhaps the arguments should be |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
76 ;; fontified as well. |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
77 "^[.']\\s-*\\sw+" |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
78 ;; There are numerous groff escapes; the following get things |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
79 ;; like \-, \(em (standard troff) and \f[bar] (groff |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
80 ;; variants). This won't currently do groff's \A'foo' and |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
81 ;; the like properly. One might expect it to highlight an escape's |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
82 ;; arguments in common cases, like \f. |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
83 (concat "\\\\" ; backslash |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
84 "\\(" ; followed by various possibilities |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
85 (mapconcat 'identity |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
86 '("[f*n]*\\[.+]" ; some groff extensions |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
87 "(.." ; two chars after ( |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
88 "[^(\"]" ; single char escape |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
89 ) "\\|") |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
90 "\\)") |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
91 ) |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
92 "Font-lock highlighting control in `nroff-mode'." |
19475 | 93 :group 'nroff |
94 :type '(repeat regexp)) | |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
95 |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
96 ;;;###autoload |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
97 (define-derived-mode nroff-mode text-mode "Nroff" |
36 | 98 "Major mode for editing text intended for nroff to format. |
99 \\{nroff-mode-map} | |
233 | 100 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. |
101 Also, try `nroff-electric-mode', for automatically inserting | |
36 | 102 closing requests for requests that are used in matched pairs." |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
103 (set (make-local-variable 'font-lock-defaults) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
104 ;; SYNTAX-BEGIN is set to backward-paragraph to avoid slow-down |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
105 ;; near the end of large buffers due to searching to buffer's |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
106 ;; beginning. |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
107 '(nroff-font-lock-keywords nil t nil backward-paragraph)) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
108 (set (make-local-variable 'nroff-electric-mode) nil) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
109 (set (make-local-variable 'outline-regexp) "\\.H[ ]+[1-7]+ ") |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
110 (set (make-local-variable 'outline-level) 'nroff-outline-level) |
36 | 111 ;; now define a bunch of variables for use by commands in this mode |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
112 (set (make-local-variable 'page-delimiter) "^\\.\\(bp\\|SK\\|OP\\)") |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
113 (set (make-local-variable 'paragraph-start) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
114 (concat "[.']\\|" paragraph-start)) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
115 (set (make-local-variable 'paragraph-separate) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
116 (concat "[.']\\|" paragraph-separate)) |
36 | 117 ;; comment syntax added by mit-erl!gildea 18 Apr 86 |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
118 (set (make-local-variable 'comment-start) "\\\" ") |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
119 (set (make-local-variable 'comment-start-skip) "\\\\\"[ \t]*") |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
120 (set (make-local-variable 'comment-column) 24) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
121 (set (make-local-variable 'comment-indent-function) 'nroff-comment-indent)) |
36 | 122 |
6075
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
123 (defun nroff-outline-level () |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
124 (save-excursion |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
125 (looking-at outline-regexp) |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
126 (skip-chars-forward ".H ") |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
127 (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
|
128 |
36 | 129 ;;; Compute how much to indent a comment in nroff/troff source. |
130 ;;; By mit-erl!gildea April 86 | |
131 (defun nroff-comment-indent () | |
132 "Compute indent for an nroff/troff comment. | |
133 Puts a full-stop before comments on a line by themselves." | |
134 (let ((pt (point))) | |
135 (unwind-protect | |
136 (progn | |
137 (skip-chars-backward " \t") | |
138 (if (bolp) | |
139 (progn | |
140 (setq pt (1+ pt)) | |
141 (insert ?.) | |
142 1) | |
143 (if (save-excursion | |
144 (backward-char 1) | |
145 (looking-at "^[.']")) | |
146 1 | |
147 (max comment-column | |
148 (* 8 (/ (+ (current-column) | |
149 9) 8)))))) ; add 9 to ensure at least two blanks | |
150 (goto-char pt)))) | |
151 | |
152 (defun count-text-lines (start end &optional print) | |
153 "Count lines in region, except for nroff request lines. | |
154 All lines not starting with a period are counted up. | |
155 Interactively, print result in echo area. | |
156 Noninteractively, return number of non-request lines from START to END." | |
157 (interactive "r\np") | |
158 (if print | |
159 (message "Region has %d text lines" (count-text-lines start end)) | |
160 (save-excursion | |
161 (save-restriction | |
162 (narrow-to-region start end) | |
163 (goto-char (point-min)) | |
164 (- (buffer-size) (forward-text-line (buffer-size))))))) | |
165 | |
166 (defun forward-text-line (&optional cnt) | |
167 "Go forward one nroff text line, skipping lines of nroff requests. | |
168 An argument is a repeat count; if negative, move backward." | |
169 (interactive "p") | |
170 (if (not cnt) (setq cnt 1)) | |
171 (while (and (> cnt 0) (not (eobp))) | |
172 (forward-line 1) | |
173 (while (and (not (eobp)) (looking-at "[.'].")) | |
174 (forward-line 1)) | |
175 (setq cnt (- cnt 1))) | |
176 (while (and (< cnt 0) (not (bobp))) | |
177 (forward-line -1) | |
178 (while (and (not (bobp)) | |
179 (looking-at "[.'].")) | |
180 (forward-line -1)) | |
181 (setq cnt (+ cnt 1))) | |
182 cnt) | |
183 | |
184 (defun backward-text-line (&optional cnt) | |
185 "Go backward one nroff text line, skipping lines of nroff requests. | |
186 An argument is a repeat count; negative means move forward." | |
187 (interactive "p") | |
188 (forward-text-line (- cnt))) | |
189 | |
190 (defconst nroff-brace-table | |
191 '((".(b" . ".)b") | |
192 (".(l" . ".)l") | |
193 (".(q" . ".)q") | |
194 (".(c" . ".)c") | |
195 (".(x" . ".)x") | |
196 (".(z" . ".)z") | |
197 (".(d" . ".)d") | |
198 (".(f" . ".)f") | |
199 (".LG" . ".NL") | |
200 (".SM" . ".NL") | |
201 (".LD" . ".DE") | |
202 (".CD" . ".DE") | |
203 (".BD" . ".DE") | |
204 (".DS" . ".DE") | |
205 (".DF" . ".DE") | |
206 (".FS" . ".FE") | |
207 (".KS" . ".KE") | |
208 (".KF" . ".KE") | |
209 (".LB" . ".LE") | |
210 (".AL" . ".LE") | |
211 (".BL" . ".LE") | |
212 (".DL" . ".LE") | |
213 (".ML" . ".LE") | |
214 (".RL" . ".LE") | |
215 (".VL" . ".LE") | |
216 (".RS" . ".RE") | |
217 (".TS" . ".TE") | |
218 (".EQ" . ".EN") | |
219 (".PS" . ".PE") | |
220 (".BS" . ".BE") | |
221 (".G1" . ".G2") ; grap | |
222 (".na" . ".ad b") | |
223 (".nf" . ".fi") | |
224 (".de" . ".."))) | |
225 | |
226 (defun electric-nroff-newline (arg) | |
227 "Insert newline for nroff mode; special if electric-nroff mode. | |
233 | 228 In `electric-nroff-mode', if ending a line containing an nroff opening request, |
36 | 229 automatically inserts the matching closing request after point." |
230 (interactive "P") | |
231 (let ((completion (save-excursion | |
232 (beginning-of-line) | |
233 (and (null arg) | |
234 nroff-electric-mode | |
235 (<= (point) (- (point-max) 3)) | |
236 (cdr (assoc (buffer-substring (point) | |
237 (+ 3 (point))) | |
238 nroff-brace-table))))) | |
239 (needs-nl (not (looking-at "[ \t]*$")))) | |
240 (if (null completion) | |
241 (newline (prefix-numeric-value arg)) | |
242 (save-excursion | |
243 (insert "\n\n" completion) | |
244 (if needs-nl (insert "\n"))) | |
245 (forward-char 1)))) | |
246 | |
247 (defun electric-nroff-mode (&optional arg) | |
233 | 248 "Toggle `nroff-electric-newline' minor mode. |
249 `nroff-electric-newline' forces Emacs to check for an nroff request at the | |
250 beginning of the line, and insert the matching closing request if necessary. | |
251 This command toggles that mode (off->on, on->off), with an argument, | |
252 turns it on iff arg is positive, otherwise off." | |
36 | 253 (interactive "P") |
254 (or (eq major-mode 'nroff-mode) (error "Must be in nroff mode")) | |
255 (or (assq 'nroff-electric-mode minor-mode-alist) | |
256 (setq minor-mode-alist (append minor-mode-alist | |
257 (list '(nroff-electric-mode | |
258 " Electric"))))) | |
259 (setq nroff-electric-mode | |
260 (cond ((null arg) (null nroff-electric-mode)) | |
261 (t (> (prefix-numeric-value arg) 0))))) | |
262 | |
18383 | 263 (provide 'nroff-mode) |
264 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
265 ;;; nroff-mode.el ends here |