Mercurial > emacs
annotate lisp/man.el @ 6632:652dc23b83fd
(tex-start-shell): Use shell-mode-map (instead of comint-mode-map) because
it's bit a nicer.
Change the "require" from comint to shell for the same reason.
author | Edward M. Reingold <reingold@emr.cs.iit.edu> |
---|---|
date | Fri, 01 Apr 1994 16:57:56 +0000 |
parents | b872dcd6cbbd |
children | 7251020c1c79 |
rev | line source |
---|---|
3235 | 1 ;;; man.el --- browse UNIX manual pages |
2 | |
3 ;; Copyright (C) 1993 Free Software Foundation, Inc. | |
4 | |
5 ;; Author: Barry A. Warsaw <bwarsaw@cen.com> | |
6 ;; Last-Modified: 31-Jul-1991 | |
7 ;; Version: 1.1 | |
8 ;; Keywords: help | |
9 ;; Adapted-By: ESR | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; This code provides a function, manual-entry, with which you can | |
30 ;; browse UNIX manual pages. Formatting is done in background so that | |
31 ;; you can continue to use your Emacs while processing is going on. | |
32 ;; | |
33 ;; The mode also supports hypertext-like following of manual page SEE | |
34 ;; ALSO references, and other features. See below or do `?' in a | |
35 ;; manual page buffer for details. | |
36 | |
37 ;; ========== Credits and History ========== | |
38 ;; In mid 1991, several people posted some interesting improvements to | |
39 ;; man.el from the standard emacs 18.57 distribution. I liked many of | |
40 ;; these, but wanted everthing in one single package, so I decided | |
41 ;; to encorporate them into a single manual browsing mode. While | |
42 ;; much of the code here has been rewritten, and some features added, | |
43 ;; these folks deserve lots of credit for providing the initial | |
44 ;; excellent packages on which this one is based. | |
45 | |
46 ;; Nick Duffek <duffek@chaos.cs.brandeis.edu>, posted a very nice | |
47 ;; improvement which retrieved and cleaned the manpages in a | |
48 ;; background process, and which correctly deciphered such options as | |
49 ;; man -k. | |
50 | |
51 ;; Eric Rose <erose@jessica.stanford.edu>, submitted manual.el which | |
52 ;; provided a very nice manual browsing mode. | |
53 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3307
diff
changeset
|
54 ;; This package was available as `superman.el' from the LCD package |
3235 | 55 ;; for some time before it was accepted into Emacs 19. The entry |
56 ;; point and some other names have been changed to make it a drop-in | |
57 ;; replacement for the old man.el package. | |
58 | |
59 ;; ========== Features ========== | |
60 ;; + Runs "man" in the background and pipes the results through a | |
61 ;; series of sed and awk scripts so that all retrieving and cleaning | |
62 ;; is done in the background. The cleaning commands are configurable. | |
63 ;; + Syntax is the same as Un*x man | |
64 ;; + Functionality is the same as Un*x man, including "man -k" and | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
65 ;; "man <section>", etc. |
3235 | 66 ;; + Provides a manual browsing mode with keybindings for traversing |
67 ;; the sections of a manpage, following references in the SEE ALSO | |
68 ;; section, and more. | |
69 ;; + Multiple manpages created with the same man command are put into | |
70 ;; a narrowed buffer circular list. | |
71 | |
72 ;;; Code: | |
73 | |
74 (require 'assoc) | |
75 | |
76 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv | |
77 ;; user variables | |
78 | |
79 (defvar Man-notify 'friendly | |
80 "*Selects the behavior when manpage is ready. | |
81 This variable may have one of the following values: | |
82 | |
4915
c0523a78e6a5
(Man-frame-parameters): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4444
diff
changeset
|
83 newframe -- put the manpage in its own frame (see `Man-frame-parameters') |
3235 | 84 bully -- make the manpage the current buffer and only window |
85 aggressive -- make the manpage the current buffer in the other window | |
86 friendly -- display manpage in other window but don't make current | |
87 polite -- don't display manpage, but prints message when ready (beeps) | |
88 quiet -- like `polite', but don't beep | |
89 meek -- make no indication that manpage is ready | |
90 | |
91 Any other value of `Man-notify' is equivalent to `meek'.") | |
92 | |
4915
c0523a78e6a5
(Man-frame-parameters): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4444
diff
changeset
|
93 (defvar Man-frame-parameters nil |
c0523a78e6a5
(Man-frame-parameters): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4444
diff
changeset
|
94 "*Frame parameter list for creating a new frame for a manual page.") |
c0523a78e6a5
(Man-frame-parameters): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4444
diff
changeset
|
95 |
3235 | 96 (defvar Man-reuse-okay-p t |
97 "*Reuse a manpage buffer if possible. | |
98 When t, and a manpage buffer already exists with the same invocation, | |
99 man just indicates the manpage is ready according to the value of | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
100 `Man-notify'. When nil, it always fires off a background process, putting |
3235 | 101 the results in a uniquely named buffer.") |
102 | |
103 (defvar Man-downcase-section-letters-p t | |
104 "*Letters in sections are converted to lower case. | |
105 Some Un*x man commands can't handle uppercase letters in sections, for | |
106 example \"man 2V chmod\", but they are often displayed in the manpage | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
107 with the upper case letter. When this variable is t, the section |
3235 | 108 letter (e.g., \"2V\") is converted to lowercase (e.g., \"2v\") before |
109 being sent to the man background process.") | |
110 | |
111 (defvar Man-circular-pages-p t | |
112 "*If t, the manpage list is treated as circular for traversal.") | |
113 | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
114 ;; I changed this to nil because it is a bad idea |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
115 ;; to fail to recognize things in other sections. |
3235 | 116 (defvar Man-auto-section-alist |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
117 nil |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
118 ;; '((c-mode . ("2" "3")) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
119 ;; (c++-mode . ("2" "3")) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
120 ;; (c++-c-mode . ("2" "3")) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
121 ;; (shell-mode . ("1" "8")) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
122 ;; (cmushell-mode . ("1" "8")) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
123 ;; (text-mode . "1") |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
124 ;; ) |
3235 | 125 "*Association list of major modes and their default section numbers. |
126 List is of the form: (MAJOR-MODE . [SECTION | (SECTION*)]). If current | |
127 major mode is not in list, then the default is to check for manpages | |
128 in all sections.") | |
129 | |
130 (defvar Man-section-translations-alist | |
131 '(("3C++" . "3") | |
4378
088883bdcd70
(Man-section-translations-alist): Add entries for xlib.
Richard M. Stallman <rms@gnu.org>
parents:
4377
diff
changeset
|
132 ("3X" . "3") ; Xlib man pages |
088883bdcd70
(Man-section-translations-alist): Add entries for xlib.
Richard M. Stallman <rms@gnu.org>
parents:
4377
diff
changeset
|
133 ("3X11" . "3") |
3235 | 134 ("1-UCB" . "")) |
135 "*Association list of bogus sections to real section numbers. | |
136 Some manpages (e.g. the Sun C++ 2.1 manpages) have section numbers in | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
137 their references which Un*x `man' does not recognize. This |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3307
diff
changeset
|
138 association list is used to translate those sections, when found, to |
3235 | 139 the associated section number.") |
140 | |
141 (defvar Man-filter-list | |
142 '(("sed " | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
143 (;;"-e 's/.\010//g'" |
3235 | 144 "-e '/[Nn]o such file or directory/d'" |
6292
a52a879c385c
(Man-filter-list): Don't insist on `...done' after `wait'.
Richard M. Stallman <rms@gnu.org>
parents:
5572
diff
changeset
|
145 "-e '/Reformatting page. Wait/d'" |
a52a879c385c
(Man-filter-list): Don't insist on `...done' after `wait'.
Richard M. Stallman <rms@gnu.org>
parents:
5572
diff
changeset
|
146 "-e '/Reformatting entry. Wait/d'" |
6358
250e69a75938
(Man-filter-list): Extend footer pattern for hpux.
Karl Heuer <kwzh@gnu.org>
parents:
6353
diff
changeset
|
147 "-e '/^ *\\([A-Za-z][A-Za-z.]*([0-9A-Za-z][-0-9A-Za-z+]*)\\).*\\1$/d'" |
3235 | 148 "-e '/^[ \\t]*Hewlett-Packard Company[ \\t]*- [0-9]* -.*$/d'" |
149 "-e '/^[ \\t]*Hewlett-Packard[ \\t]*- [0-9]* -.*$/d'" | |
6613
b872dcd6cbbd
(Man-filter-list): New footer format to delete.
Karl Heuer <kwzh@gnu.org>
parents:
6373
diff
changeset
|
150 "-e '/^ *- [0-9]* - *Formatted:.*[0-9]$/d'" |
3235 | 151 "-e '/^ *Page [0-9]*.*(printed [0-9\\/]*)$/d'" |
152 "-e '/^Printed [0-9].*[0-9]$/d'" | |
3659
296caa999ccf
(Man-filter-list): Add an element for X man pages.
Richard M. Stallman <rms@gnu.org>
parents:
3644
diff
changeset
|
153 "-e '/^[ \\t]*X Version 1[01].*Release [0-9]/d'" |
4968
1607732e7712
(Man-filter-list): Include anything starting with
Richard M. Stallman <rms@gnu.org>
parents:
4915
diff
changeset
|
154 "-e '/^[A-za-z].*Last change:/d'" |
3235 | 155 "-e '/^Sun Release [0-9].*[0-9]$/d'" |
156 "-e '/^\\n$/D'" | |
157 )) | |
4329
dfabe5b99500
(Man-filter-list): Insert \n newlines in awk script.
Richard M. Stallman <rms@gnu.org>
parents:
4203
diff
changeset
|
158 ("awk '\n" |
dfabe5b99500
(Man-filter-list): Insert \n newlines in awk script.
Richard M. Stallman <rms@gnu.org>
parents:
4203
diff
changeset
|
159 ("BEGIN { blankline=0; anonblank=0; }\n" |
dfabe5b99500
(Man-filter-list): Insert \n newlines in awk script.
Richard M. Stallman <rms@gnu.org>
parents:
4203
diff
changeset
|
160 "/^$/ { if (anonblank==0) next; }\n" |
dfabe5b99500
(Man-filter-list): Insert \n newlines in awk script.
Richard M. Stallman <rms@gnu.org>
parents:
4203
diff
changeset
|
161 "{ anonblank=1; }\n" |
dfabe5b99500
(Man-filter-list): Insert \n newlines in awk script.
Richard M. Stallman <rms@gnu.org>
parents:
4203
diff
changeset
|
162 "/^$/ { blankline++; next; }\n" |
dfabe5b99500
(Man-filter-list): Insert \n newlines in awk script.
Richard M. Stallman <rms@gnu.org>
parents:
4203
diff
changeset
|
163 "{ if (blankline>0) { print \"\"; blankline=0; } print $0; }\n" |
3235 | 164 "'" |
165 )) | |
166 ) | |
167 "*Manpage cleaning filter command phrases. | |
168 This variable contains an association list of the following form: | |
169 | |
170 '((command-string (phrase-string*))*) | |
171 | |
172 Each phrase-string is concatenated onto the command-string to form a | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
173 command filter. The (standard) output (and standard error) of the Un*x |
3235 | 174 man command is piped through each command filter in the order the |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
175 commands appear in the association list. The final output is placed in |
3235 | 176 the manpage buffer.") |
177 | |
178 (defvar Man-mode-line-format | |
179 '("" mode-line-modified | |
180 mode-line-buffer-identification " " | |
181 global-mode-string | |
4009
4edc10a61fa7
(Man-mode-line-format): Add a space after global-mode-string.
Richard M. Stallman <rms@gnu.org>
parents:
4002
diff
changeset
|
182 " " Man-page-mode-string |
3235 | 183 " %[(" mode-name minor-mode-alist mode-line-process ")%]----" |
184 (-3 . "%p") "-%-") | |
185 "*Mode line format for manual mode buffer.") | |
186 | |
187 (defvar Man-mode-map nil | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
188 "*Keymap for Man mode.") |
3235 | 189 |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
190 (defvar Man-mode-hook nil |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
191 "*Normal hook run when Man mode is enabled.") |
3235 | 192 |
6358
250e69a75938
(Man-filter-list): Extend footer pattern for hpux.
Karl Heuer <kwzh@gnu.org>
parents:
6353
diff
changeset
|
193 (defvar Man-cooked-hook nil |
6362 | 194 "*Normal hook run after removing backspaces but before Man-mode processing.") |
6358
250e69a75938
(Man-filter-list): Extend footer pattern for hpux.
Karl Heuer <kwzh@gnu.org>
parents:
6353
diff
changeset
|
195 |
4980
50708e8b133b
(Man-section-regexp): Allow section names l, n, L, N.
Richard M. Stallman <rms@gnu.org>
parents:
4968
diff
changeset
|
196 (defvar Man-section-regexp "[0-9][a-zA-Z+]*\\|[LNln]" |
3235 | 197 "*Regular expression describing a manpage section within parentheses.") |
198 | |
4377
09cb5e07f8a3
(Man-build-references-alist): When setting word,
Richard M. Stallman <rms@gnu.org>
parents:
4334
diff
changeset
|
199 (defvar Man-heading-regexp "^ ?[A-Z]" |
3235 | 200 "*Regular expression describing a manpage heading entry.") |
201 | |
202 (defvar Man-see-also-regexp "SEE ALSO" | |
203 "*Regular expression for SEE ALSO heading (or your equivalent). | |
204 This regexp should not start with a `^' character.") | |
205 | |
4377
09cb5e07f8a3
(Man-build-references-alist): When setting word,
Richard M. Stallman <rms@gnu.org>
parents:
4334
diff
changeset
|
206 (defvar Man-first-heading-regexp "^ ?NAME$\\|^ ?No manual entry for .*$" |
3235 | 207 "*Regular expression describing first heading on a manpage. |
208 This regular expression should start with a `^' character.") | |
209 | |
4377
09cb5e07f8a3
(Man-build-references-alist): When setting word,
Richard M. Stallman <rms@gnu.org>
parents:
4334
diff
changeset
|
210 (defvar Man-reference-regexp |
09cb5e07f8a3
(Man-build-references-alist): When setting word,
Richard M. Stallman <rms@gnu.org>
parents:
4334
diff
changeset
|
211 "[-a-zA-Z0-9_][-a-zA-Z0-9_.]*\\(([0-9][a-zA-Z+]*)\\)?" |
3235 | 212 "*Regular expression describing a reference in the SEE ALSO section.") |
213 | |
3833
70551a213fae
* man.el (Man-switches): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3714
diff
changeset
|
214 (defvar Man-switches "" |
70551a213fae
* man.el (Man-switches): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3714
diff
changeset
|
215 "*Switches passed to the man command, as a single string.") |
3235 | 216 |
5108
8c482171bb10
(Man-specified-section-option): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4980
diff
changeset
|
217 ;; Would someone like to provide a good test for being on Solaris? |
8c482171bb10
(Man-specified-section-option): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4980
diff
changeset
|
218 ;; We could give it its own value of system-type, but that has drawbacks; |
8c482171bb10
(Man-specified-section-option): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4980
diff
changeset
|
219 ;; it would require changes in lots of places that test system-type. |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
220 (defvar Man-specified-section-option |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
221 (if (string-match "-solaris[0-9.]*$" system-configuration) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
222 "-s" |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
223 "") |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
224 "*Option that indicates a specified a manual section name.") |
5108
8c482171bb10
(Man-specified-section-option): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4980
diff
changeset
|
225 |
3235 | 226 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
227 ;; end user variables | |
228 | |
229 ;; other variables and keymap initializations | |
230 (make-variable-buffer-local 'Man-sections-alist) | |
231 (make-variable-buffer-local 'Man-refpages-alist) | |
232 (make-variable-buffer-local 'Man-page-list) | |
233 (make-variable-buffer-local 'Man-current-page) | |
234 (make-variable-buffer-local 'Man-page-mode-string) | |
6363
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
235 (make-variable-buffer-local 'Man-original-frame) |
3235 | 236 |
237 (setq-default Man-sections-alist nil) | |
238 (setq-default Man-refpages-alist nil) | |
239 (setq-default Man-page-list nil) | |
240 (setq-default Man-current-page 0) | |
241 (setq-default Man-page-mode-string "1 (of 1)") | |
242 | |
243 (if Man-mode-map | |
244 nil | |
245 (setq Man-mode-map (make-keymap)) | |
246 (suppress-keymap Man-mode-map) | |
247 (define-key Man-mode-map " " 'scroll-up) | |
248 (define-key Man-mode-map "\177" 'scroll-down) | |
249 (define-key Man-mode-map "n" 'Man-next-section) | |
250 (define-key Man-mode-map "p" 'Man-previous-section) | |
251 (define-key Man-mode-map "\en" 'Man-next-manpage) | |
252 (define-key Man-mode-map "\ep" 'Man-previous-manpage) | |
253 (define-key Man-mode-map "," 'beginning-of-buffer) | |
254 (define-key Man-mode-map "." 'end-of-buffer) | |
255 (define-key Man-mode-map "r" 'Man-follow-manual-reference) | |
256 (define-key Man-mode-map "t" 'toggle-truncate-lines) | |
257 (define-key Man-mode-map "g" 'Man-goto-section) | |
258 (define-key Man-mode-map "s" 'Man-goto-see-also-section) | |
259 (define-key Man-mode-map "q" 'Man-quit) | |
260 (define-key Man-mode-map "m" 'manual-entry) | |
261 (define-key Man-mode-map "?" 'describe-mode) | |
262 ) | |
263 | |
264 | |
265 ;; ====================================================================== | |
266 ;; utilities | |
267 | |
268 (defun Man-page-mode-string () | |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
269 "Formats part of the mode line for Man mode." |
3235 | 270 (format "%d (of %d)" Man-current-page (length Man-page-list))) |
271 | |
272 (defun Man-delete-trailing-newline (str) | |
273 (if (string= (substring str (1- (length str))) "\n") | |
274 (substring str 0 (1- (length str))) | |
275 str)) | |
276 | |
277 (defun Man-build-man-command () | |
278 "Builds the entire background manpage and cleaning command." | |
6353
f00fc681daa4
(Man-build-man-command): Redirect desc 2 to /dev/null.
Richard M. Stallman <rms@gnu.org>
parents:
6292
diff
changeset
|
279 (let ((command (concat "man " Man-switches " %s 2>/dev/null")) |
3235 | 280 (flist Man-filter-list)) |
281 (while flist | |
282 (let ((pcom (car (car flist))) | |
283 (pargs (car (cdr (car flist))))) | |
284 (setq flist (cdr flist)) | |
285 (if (or (not (stringp pcom)) | |
286 (not (listp pargs))) | |
287 (error "malformed Man-filter-list.")) | |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
288 (setq command (concat command " | " pcom |
3235 | 289 (mapconcat '(lambda (phrase) phrase) |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
290 pargs " "))))) |
3235 | 291 command)) |
292 | |
293 (defun Man-downcase (man-args) | |
294 "Downcases section letters in MAN-ARGS." | |
295 (let ((newargs "") | |
296 (s 0) | |
297 mstart mend | |
298 (len (length man-args))) | |
299 (while (and (< s len) | |
300 (setq mstart (string-match Man-section-regexp man-args s))) | |
301 (setq mend (match-end 0) | |
302 newargs (concat newargs (substring man-args s mstart))) | |
303 (setq newargs (concat newargs (downcase | |
304 (substring man-args mstart mend))) | |
305 s mend)) | |
306 (concat newargs (substring man-args s len)))) | |
307 | |
308 (defun Man-translate-references (ref) | |
309 "Translates REF from \"chmod(2V)\" to \"2v chmod\" style." | |
310 (if (string-match (concat "(" Man-section-regexp ")$") ref) | |
311 (let* ((word (progn (string-match "(" ref) | |
312 (substring ref 0 (1- (match-end 0))))) | |
313 (section-re (concat "(\\(" Man-section-regexp "\\))")) | |
314 (section (if (string-match section-re ref) | |
315 (substring ref (match-beginning 1) (match-end 1)) | |
316 "")) | |
317 (slist Man-section-translations-alist) | |
318 ) | |
319 (if Man-downcase-section-letters-p | |
320 (setq section (Man-downcase section))) | |
321 (while slist | |
322 (let ((s1 (car (car slist))) | |
323 (s2 (cdr (car slist)))) | |
324 (setq slist (cdr slist)) | |
325 (if Man-downcase-section-letters-p | |
326 (setq s1 (Man-downcase s1))) | |
327 (if (not (string= s1 section)) nil | |
328 (setq section (if Man-downcase-section-letters-p | |
329 (Man-downcase s2) | |
330 s2) | |
331 slist nil)))) | |
5108
8c482171bb10
(Man-specified-section-option): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4980
diff
changeset
|
332 (concat Man-specified-section-option section " " word)) |
3235 | 333 ref)) |
334 | |
335 (defun Man-linepos (&optional position col-p) | |
336 "Return the character position at various line/buffer positions. | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
337 Preserves the state of point, mark, etc. Optional arg POSITION can be one |
3235 | 338 of the following symbols: |
339 bol == beginning of line | |
340 boi == beginning of indentation | |
341 eol == end of line [default] | |
342 bob == beginning of buffer | |
343 eob == end of buffer | |
344 | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
345 Optional arg COL-P, if non-nil, means to return |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
346 the current column instead of character position." |
3235 | 347 (let ((tpnt (point)) |
348 rval) | |
349 (cond | |
350 ((eq position 'bol) (beginning-of-line)) | |
351 ((eq position 'boi) (back-to-indentation)) | |
352 ((eq position 'bob) (goto-char (point-min))) | |
353 ((eq position 'eob) (goto-char (point-max))) | |
354 (t (end-of-line))) | |
355 (setq rval (if col-p (current-column) (point))) | |
356 (goto-char tpnt) | |
357 rval)) | |
358 | |
359 | |
360 ;; ====================================================================== | |
361 ;; default man entry and get word under point | |
362 | |
363 (defun Man-default-man-args (manword) | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
364 "Build the default man args from MANWORD and buffer's major mode." |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
365 (let ((sections (cdr (assq major-mode Man-auto-section-alist)))) |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
366 (cond |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
367 ((null sections) manword) |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
368 ((consp sections) |
5572
f1e5e8a324a5
(Man-default-man-args): Use Man-specified-section-option.
Richard M. Stallman <rms@gnu.org>
parents:
5269
diff
changeset
|
369 (mapconcat (lambda (n) (concat Man-specified-section-option |
f1e5e8a324a5
(Man-default-man-args): Use Man-specified-section-option.
Richard M. Stallman <rms@gnu.org>
parents:
5269
diff
changeset
|
370 n " " manword)) |
f1e5e8a324a5
(Man-default-man-args): Use Man-specified-section-option.
Richard M. Stallman <rms@gnu.org>
parents:
5269
diff
changeset
|
371 sections " ")) |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
372 (t |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
373 (concat sections " " manword))))) |
3235 | 374 |
375 (defun Man-default-man-entry () | |
376 "Make a guess at a default manual entry. | |
377 This guess is based on the text surrounding the cursor, and the | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
378 default section number is selected from `Man-auto-section-alist'." |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
379 (let (default-title) |
3235 | 380 (save-excursion |
381 | |
382 ;; Default man entry title is any word the cursor is on, | |
383 ;; or if cursor not on a word, then nearest preceding | |
384 ;; word. | |
385 (and (not (looking-at "[a-zA-Z_]")) | |
386 (skip-chars-backward "^a-zA-Z_")) | |
387 (skip-chars-backward "(a-zA-Z_0-9") | |
388 (and (looking-at "(") (forward-char 1)) | |
389 (setq default-title | |
390 (buffer-substring | |
391 (point) | |
392 (progn (skip-chars-forward "a-zA-Z0-9_") (point)))) | |
393 | |
394 ;; If looking at something like ioctl(2) or brc(1M), include | |
395 ;; section number in default-entry | |
396 (if (looking-at "[ \t]*([ \t]*[0-9][a-zA-Z]?[ \t]*)") | |
397 (progn (skip-chars-forward "^0-9") | |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
398 (setq default-title |
5572
f1e5e8a324a5
(Man-default-man-args): Use Man-specified-section-option.
Richard M. Stallman <rms@gnu.org>
parents:
5269
diff
changeset
|
399 (concat Man-specified-section-option |
f1e5e8a324a5
(Man-default-man-args): Use Man-specified-section-option.
Richard M. Stallman <rms@gnu.org>
parents:
5269
diff
changeset
|
400 (buffer-substring |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
401 (point) |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
402 (progn |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
403 (skip-chars-forward "0-9a-zA-Z") |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
404 (point))) |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
405 " " |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
406 default-title))) |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
407 (setq default-title (Man-default-man-args default-title))) |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
408 default-title))) |
3235 | 409 |
410 | |
411 ;; ====================================================================== | |
412 ;; top level command and background process sentinel | |
413 | |
4444 | 414 ;;; This alias makes completion more predictable if ignoring case. |
415 ;;;###autoload | |
416 (defalias 'man 'manual-entry) | |
417 | |
3235 | 418 ;;;###autoload |
419 (defun manual-entry (arg) | |
420 "Get a Un*x manual page and put it in a buffer. | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
421 This command is the top-level command in the man package. It runs a Un*x |
3235 | 422 command to retrieve and clean a manpage in the background and places the |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
423 results in a Man mode (manpage browsing) buffer. See variable |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
424 `Man-notify' for what happens when the buffer is ready. |
6373
284634d109ee
(manual-entry): Document what the arg does.
Karl Heuer <kwzh@gnu.org>
parents:
6363
diff
changeset
|
425 Normally, if a buffer already exists for this man page, it will display |
284634d109ee
(manual-entry): Document what the arg does.
Karl Heuer <kwzh@gnu.org>
parents:
6363
diff
changeset
|
426 immediately; either a prefix argument or a nil value to `Man-reuse-okay-p' |
284634d109ee
(manual-entry): Document what the arg does.
Karl Heuer <kwzh@gnu.org>
parents:
6363
diff
changeset
|
427 overrides this and forces the man page to be regenerated." |
3235 | 428 (interactive "P") |
429 (let* ((default-entry (Man-default-man-entry)) | |
430 (man-args | |
431 (read-string (format "Manual-entry: %s" | |
432 (if (string= default-entry "") "" | |
433 (format "(default: %s) " | |
434 default-entry)))))) | |
435 (and (string= man-args "") | |
436 (if (string= default-entry "") | |
437 (error "No man args given.") | |
438 (setq man-args default-entry))) | |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
439 |
3644
9e251319cdc8
* man.el (manual-entry): Recognize the subject(section) syntax.
Jim Blandy <jimb@redhat.com>
parents:
3619
diff
changeset
|
440 ;; Recognize the subject(section) syntax. |
4002
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
441 (setq man-args (Man-translate-references man-args)) |
511feb3c2874
* man.el (Man-build-man-command): Don't leave a pipe symbol at the
Jim Blandy <jimb@redhat.com>
parents:
3909
diff
changeset
|
442 |
4968
1607732e7712
(Man-filter-list): Include anything starting with
Richard M. Stallman <rms@gnu.org>
parents:
4915
diff
changeset
|
443 ;; This is apparently already done correctly via Man-translate-references. |
1607732e7712
(Man-filter-list): Include anything starting with
Richard M. Stallman <rms@gnu.org>
parents:
4915
diff
changeset
|
444 ;; (if Man-downcase-section-letters-p |
1607732e7712
(Man-filter-list): Include anything starting with
Richard M. Stallman <rms@gnu.org>
parents:
4915
diff
changeset
|
445 ;; (setq man-args (Man-downcase man-args))) |
3235 | 446 (Man-getpage-in-background man-args (consp arg)) |
447 )) | |
448 | |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
449 (defun Man-getpage-in-background (topic &optional override-reuse-p) |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
450 "Uses TOPIC to build and fire off the manpage and cleaning command. |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
451 Optional OVERRIDE-REUSE-P, when non-nil, means to |
3235 | 452 start a background process even if a buffer already exists and |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
453 `Man-reuse-okay-p' is non-nil." |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
454 (let* ((man-args topic) |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
455 (bufname (concat "*man " man-args "*")) |
3235 | 456 (buffer (get-buffer bufname))) |
457 (if (and Man-reuse-okay-p | |
458 (not override-reuse-p) | |
459 buffer) | |
460 (Man-notify-when-ready buffer) | |
6353
f00fc681daa4
(Man-build-man-command): Redirect desc 2 to /dev/null.
Richard M. Stallman <rms@gnu.org>
parents:
6292
diff
changeset
|
461 (require 'env) |
3235 | 462 (message "Invoking man %s in background..." man-args) |
463 (setq buffer (generate-new-buffer bufname)) | |
6363
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
464 (save-excursion |
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
465 (set-buffer buffer) |
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
466 (setq Man-original-frame (selected-frame))) |
4175
3e4fa4423f5a
(Man-getpage-in-background): Copy process-environment
Richard M. Stallman <rms@gnu.org>
parents:
4009
diff
changeset
|
467 (let ((process-environment (copy-sequence process-environment))) |
3713
c77a3da2d08d
(Man-getpage-in-background): Use TERM=dumb to prevent
Richard M. Stallman <rms@gnu.org>
parents:
3659
diff
changeset
|
468 ;; Prevent any attempt to use display terminal fanciness. |
c77a3da2d08d
(Man-getpage-in-background): Use TERM=dumb to prevent
Richard M. Stallman <rms@gnu.org>
parents:
3659
diff
changeset
|
469 (setenv "TERM" "dumb") |
c77a3da2d08d
(Man-getpage-in-background): Use TERM=dumb to prevent
Richard M. Stallman <rms@gnu.org>
parents:
3659
diff
changeset
|
470 (set-process-sentinel |
c77a3da2d08d
(Man-getpage-in-background): Use TERM=dumb to prevent
Richard M. Stallman <rms@gnu.org>
parents:
3659
diff
changeset
|
471 (start-process "man" buffer "sh" "-c" |
3714
a1edd269b2f4
(Man-getpage-in-background): Move close paren.
Richard M. Stallman <rms@gnu.org>
parents:
3713
diff
changeset
|
472 (format (Man-build-man-command) man-args)) |
a1edd269b2f4
(Man-getpage-in-background): Move close paren.
Richard M. Stallman <rms@gnu.org>
parents:
3713
diff
changeset
|
473 'Man-bgproc-sentinel)) |
a1edd269b2f4
(Man-getpage-in-background): Move close paren.
Richard M. Stallman <rms@gnu.org>
parents:
3713
diff
changeset
|
474 ))) |
3235 | 475 |
476 (defun Man-notify-when-ready (man-buffer) | |
477 "Notify the user when MAN-BUFFER is ready. | |
3307
1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3235
diff
changeset
|
478 See the variable `Man-notify' for the different notification behaviors." |
3235 | 479 (cond |
4915
c0523a78e6a5
(Man-frame-parameters): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4444
diff
changeset
|
480 ((eq Man-notify 'newframe) |
c0523a78e6a5
(Man-frame-parameters): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4444
diff
changeset
|
481 (set-buffer man-buffer) |
c0523a78e6a5
(Man-frame-parameters): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4444
diff
changeset
|
482 (new-frame Man-frame-parameters)) |
3307
1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3235
diff
changeset
|
483 ((eq Man-notify 'bully) |
6363
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
484 (and (frame-live-p Man-original-frame) |
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
485 (select-frame Man-original-frame)) |
3235 | 486 (pop-to-buffer man-buffer) |
487 (delete-other-windows)) | |
3307
1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3235
diff
changeset
|
488 ((eq Man-notify 'aggressive) |
6363
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
489 (and (frame-live-p Man-original-frame) |
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
490 (select-frame Man-original-frame)) |
3235 | 491 (pop-to-buffer man-buffer)) |
3307
1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3235
diff
changeset
|
492 ((eq Man-notify 'friendly) |
6363
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
493 (and (frame-live-p Man-original-frame) |
e5d9ea7852bf
(Man-original-frame): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6362
diff
changeset
|
494 (select-frame Man-original-frame)) |
3235 | 495 (display-buffer man-buffer 'not-this-window)) |
3307
1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3235
diff
changeset
|
496 ((eq Man-notify 'polite) |
3235 | 497 (beep) |
498 (message "Manual buffer %s is ready." (buffer-name man-buffer))) | |
3307
1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3235
diff
changeset
|
499 ((eq Man-notify 'quiet) |
3235 | 500 (message "Manual buffer %s is ready." (buffer-name man-buffer))) |
3307
1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3235
diff
changeset
|
501 ((or (eq Man-notify 'meek) |
3235 | 502 t) |
503 (message "")) | |
504 )) | |
505 | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
506 (defun Man-set-fonts () |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
507 (goto-char (point-min)) |
4203
b42338a458a5
(Man-set-fonts): Don't look for another char after
Richard M. Stallman <rms@gnu.org>
parents:
4175
diff
changeset
|
508 (while (re-search-forward "\\(.\b\\)+" nil t) |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
509 (let ((st (match-beginning 0)) (en (match-end 0))) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
510 (goto-char st) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
511 (if window-system |
4203
b42338a458a5
(Man-set-fonts): Don't look for another char after
Richard M. Stallman <rms@gnu.org>
parents:
4175
diff
changeset
|
512 (put-text-property st (if (= en (point-max)) en (1+ en)) 'face |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
513 (if (looking-at "_") 'underline 'bold))) |
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
514 (while (and (< (point) en) (looking-at ".\b")) |
4203
b42338a458a5
(Man-set-fonts): Don't look for another char after
Richard M. Stallman <rms@gnu.org>
parents:
4175
diff
changeset
|
515 (replace-match ""))))) |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
516 |
3235 | 517 (defun Man-bgproc-sentinel (process msg) |
518 "Manpage background process sentinel." | |
519 (let ((Man-buffer (process-buffer process)) | |
520 (delete-buff nil) | |
521 (err-mess nil)) | |
522 (if (null (buffer-name Man-buffer)) ;; deleted buffer | |
523 (set-process-buffer process nil) | |
524 (save-excursion | |
525 (set-buffer Man-buffer) | |
526 (goto-char (point-min)) | |
527 (cond ((or (looking-at "No \\(manual \\)*entry for") | |
528 (looking-at "[^\n]*: nothing appropriate$")) | |
529 (setq err-mess (buffer-substring (point) (Man-linepos 'eol)) | |
530 delete-buff t) | |
531 ) | |
532 ((not (and (eq (process-status process) 'exit) | |
533 (= (process-exit-status process) 0))) | |
534 (setq err-mess | |
535 (concat (buffer-name Man-buffer) | |
536 ": process " | |
537 (let ((eos (1- (length msg)))) | |
538 (if (= (aref msg eos) ?\n) | |
539 (substring msg 0 eos) msg)))) | |
540 (goto-char (point-max)) | |
541 (insert (format "\nprocess %s" msg)) | |
542 ))) | |
543 (if delete-buff | |
544 (kill-buffer Man-buffer) | |
545 (save-window-excursion | |
546 (save-excursion | |
547 (set-buffer Man-buffer) | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
548 (Man-set-fonts) |
6358
250e69a75938
(Man-filter-list): Extend footer pattern for hpux.
Karl Heuer <kwzh@gnu.org>
parents:
6353
diff
changeset
|
549 (run-hooks 'Man-cooked-hook) |
3235 | 550 (Man-mode) |
551 (set-buffer-modified-p nil))) | |
552 (Man-notify-when-ready Man-buffer)) | |
553 | |
554 (if err-mess | |
555 (error err-mess)) | |
556 ))) | |
557 | |
558 | |
559 ;; ====================================================================== | |
560 ;; set up manual mode in buffer and build alists | |
561 | |
562 (defun Man-mode () | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
563 "A mode for browsing Un*x manual pages. |
3235 | 564 |
565 The following man commands are available in the buffer. Try | |
566 \"\\[describe-key] <key> RET\" for more information: | |
567 | |
568 \\[manual-entry] Prompt to retrieve a new manpage. | |
569 \\[Man-follow-manual-reference] Retrieve reference in SEE ALSO section. | |
570 \\[Man-next-manpage] Jump to next manpage in circular list. | |
571 \\[Man-previous-manpage] Jump to previous manpage in circular list. | |
572 \\[Man-next-section] Jump to next manpage section. | |
573 \\[Man-previous-section] Jump to previous manpage section. | |
574 \\[Man-goto-section] Go to a manpage section. | |
575 \\[Man-goto-see-also-section] Jumps to the SEE ALSO manpage section. | |
576 \\[Man-quit] Deletes the manpage, its buffer, and window. | |
577 \\[describe-mode] Prints this help text. | |
578 | |
579 The following variables may be of some use. Try | |
580 \"\\[describe-variable] <variable-name> RET\" for more information: | |
581 | |
582 Man-notify What happens when manpage formatting is done. | |
583 Man-reuse-okay-p Okay to reuse already formatted buffer? | |
584 Man-downcase-section-letters-p Force section letters to lower case? | |
585 Man-circular-pages-p Multiple manpage list treated as circular? | |
586 Man-auto-section-alist List of major modes and their section numbers. | |
587 Man-section-translations-alist List of section numbers and their Un*x equiv. | |
588 Man-filter-list Background manpage filter command. | |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
589 Man-mode-line-format Mode line format for Man mode buffers. |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
590 Man-mode-map Keymap bindings for Man mode buffers. |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
591 Man-mode-hook Normal hook run on entry to Man mode. |
3235 | 592 Man-section-regexp Regexp describing manpage section letters. |
593 Man-heading-regexp Regexp describing section headers. | |
594 Man-see-also-regexp Regexp for SEE ALSO section (or your equiv). | |
595 Man-first-heading-regexp Regexp for first heading on a manpage. | |
596 Man-reference-regexp Regexp matching a references in SEE ALSO. | |
3833
70551a213fae
* man.el (Man-switches): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3714
diff
changeset
|
597 Man-switches Background `man' command switches. |
3235 | 598 |
599 The following key bindings are currently in effect in the buffer: | |
600 \\{Man-mode-map}" | |
601 (interactive) | |
602 (setq major-mode 'Man-mode | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
603 mode-name "Man" |
3235 | 604 buffer-auto-save-file-name nil |
605 mode-line-format Man-mode-line-format | |
606 truncate-lines t | |
607 buffer-read-only t) | |
608 (buffer-disable-undo (current-buffer)) | |
609 (auto-fill-mode -1) | |
610 (use-local-map Man-mode-map) | |
611 (goto-char (point-min)) | |
612 (Man-build-page-list) | |
3619
062dbb10173d
(Man-mode): Run Man-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
613 (Man-goto-page 1) |
062dbb10173d
(Man-mode): Run Man-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
614 (run-hooks 'Man-mode-hook)) |
3235 | 615 |
616 (defun Man-build-section-alist () | |
617 "Build the association list of manpage sections." | |
618 (setq Man-sections-alist nil) | |
619 (goto-char (point-min)) | |
620 (while (re-search-forward Man-heading-regexp (point-max) t) | |
621 (aput 'Man-sections-alist | |
622 (buffer-substring (Man-linepos 'bol) (Man-linepos))) | |
623 (forward-line 1) | |
624 )) | |
625 | |
626 (defun Man-build-references-alist () | |
627 "Build the association list of references (in the SEE ALSO section)." | |
628 (setq Man-refpages-alist nil) | |
629 (save-excursion | |
630 (if (Man-find-section Man-see-also-regexp) | |
631 (let ((start (progn (forward-line 1) (point))) | |
632 (end (progn | |
633 (Man-next-section 1) | |
634 (point))) | |
635 hyphenated | |
636 (runningpoint -1)) | |
637 (narrow-to-region start end) | |
638 (goto-char (point-min)) | |
639 (back-to-indentation) | |
640 (while (and (not (eobp)) (/= (point) runningpoint)) | |
641 (setq runningpoint (point)) | |
4377
09cb5e07f8a3
(Man-build-references-alist): When setting word,
Richard M. Stallman <rms@gnu.org>
parents:
4334
diff
changeset
|
642 (let* ((eow (re-search-forward Man-reference-regexp end t)) |
09cb5e07f8a3
(Man-build-references-alist): When setting word,
Richard M. Stallman <rms@gnu.org>
parents:
4334
diff
changeset
|
643 (word (buffer-substring (match-beginning 0) (match-end 0))) |
3235 | 644 (len (1- (length word)))) |
645 (if (not eow) nil | |
646 (if hyphenated | |
647 (setq word (concat hyphenated word) | |
648 hyphenated nil)) | |
649 (if (= (aref word len) ?-) | |
650 (setq hyphenated (substring word 0 len)) | |
651 (aput 'Man-refpages-alist word)))) | |
652 (skip-chars-forward " \t\n,")) | |
653 )))) | |
654 | |
655 (defun Man-build-page-list () | |
656 "Build the list of separate manpages in the buffer." | |
657 (setq Man-page-list nil) | |
658 (save-excursion | |
659 (let ((page-start (Man-linepos 'bob)) | |
660 (page-end (Man-linepos 'eob)) | |
661 (regexp Man-first-heading-regexp)) | |
662 (goto-char (point-min)) | |
663 (re-search-forward regexp (point-max) t) | |
664 (while (not (eobp)) | |
665 (if (re-search-forward regexp (point-max) t) | |
666 (progn | |
667 (setq page-end (Man-linepos 'bol)) | |
668 (end-of-line)) | |
669 (goto-char (point-max)) | |
670 (setq page-end (point))) | |
671 (setq Man-page-list (append Man-page-list | |
672 (list (cons page-start page-end))) | |
673 page-start page-end) | |
674 )))) | |
675 | |
676 | |
677 ;; ====================================================================== | |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
678 ;; Man mode commands |
3235 | 679 |
680 (defun Man-next-section (n) | |
681 "Move point to Nth next section (default 1)." | |
682 (interactive "p") | |
683 (if (looking-at Man-heading-regexp) | |
684 (forward-line 1)) | |
685 (if (re-search-forward Man-heading-regexp (point-max) t n) | |
686 (beginning-of-line) | |
687 (goto-char (point-max)))) | |
688 | |
689 (defun Man-previous-section (n) | |
690 "Move point to Nth previous section (default 1)." | |
691 (interactive "p") | |
692 (if (looking-at Man-heading-regexp) | |
693 (forward-line -1)) | |
694 (if (re-search-backward Man-heading-regexp (point-min) t n) | |
695 (beginning-of-line) | |
696 (goto-char (point-min)))) | |
697 | |
698 (defun Man-find-section (section) | |
699 "Move point to SECTION if it exists, otherwise don't move point. | |
700 Returns t if section is found, nil otherwise." | |
701 (let ((curpos (point))) | |
702 (goto-char (point-min)) | |
4334
b39cd3621215
* man.el (Man-find-section): HP/UX man pages have section names
Jim Blandy <jimb@redhat.com>
parents:
4329
diff
changeset
|
703 (if (re-search-forward (concat "^\\s-?" section) (point-max) t) |
3235 | 704 (progn (beginning-of-line) t) |
705 (goto-char curpos) | |
706 nil) | |
707 )) | |
708 | |
709 (defun Man-goto-section () | |
710 "Query for section to move point to." | |
711 (interactive) | |
712 (aput 'Man-sections-alist | |
713 (let* ((default (aheadsym Man-sections-alist)) | |
714 (completion-ignore-case t) | |
715 chosen | |
716 (prompt (concat "Go to section: (default " default ") "))) | |
717 (setq chosen (completing-read prompt Man-sections-alist)) | |
718 (if (or (not chosen) | |
719 (string= chosen "")) | |
720 default | |
721 chosen))) | |
722 (Man-find-section (aheadsym Man-sections-alist))) | |
723 | |
724 (defun Man-goto-see-also-section () | |
725 "Move point the the \"SEE ALSO\" section. | |
3909
192e7aa8389a
(Man-auto-section-alist): Default value nil.
Richard M. Stallman <rms@gnu.org>
parents:
3833
diff
changeset
|
726 Actually the section moved to is described by `Man-see-also-regexp'." |
3235 | 727 (interactive) |
728 (if (not (Man-find-section Man-see-also-regexp)) | |
729 (error (concat "No " Man-see-also-regexp | |
730 " section found in current manpage.")))) | |
731 | |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
732 (defun Man-follow-manual-reference (arg reference) |
3235 | 733 "Get one of the manpages referred to in the \"SEE ALSO\" section. |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
734 Specify which reference to use; default is based on word at point. |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
735 Prefix argument ARG is passed to `Man-getpage-in-background'." |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
736 (interactive |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
737 (if (not Man-refpages-alist) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
738 (error "No references in current man page") |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
739 (list current-prefix-arg |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
740 (let* ((default (or |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
741 (car (all-completions |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
742 (save-excursion |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
743 (skip-syntax-backward "w()") |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
744 (skip-chars-forward " \t") |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
745 (let ((word (current-word))) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
746 ;; strip a trailing '-': |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
747 (if (string-match "-$" word) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
748 (substring word 0 (match-beginning 0)) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
749 word))) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
750 Man-refpages-alist)) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
751 (aheadsym Man-refpages-alist))) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
752 chosen |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
753 (prompt (concat "Refer to: (default " default ") "))) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
754 (setq chosen (completing-read prompt Man-refpages-alist nil t)) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
755 (if (or (not chosen) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
756 (string= chosen "")) |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
757 default |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
758 chosen))))) |
3235 | 759 (if (not Man-refpages-alist) |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
760 (error "No references found in current manpage") |
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
761 (aput 'Man-refpages-alist reference) |
3235 | 762 (Man-getpage-in-background |
763 (Man-translate-references (aheadsym Man-refpages-alist)) | |
5269
c6588bd7dd93
(Man-specified-section-option): Test system-configuration.
Richard M. Stallman <rms@gnu.org>
parents:
5108
diff
changeset
|
764 arg))) |
3235 | 765 |
766 (defun Man-quit () | |
767 "Kill the buffer containing the manpage." | |
768 (interactive) | |
769 (let ((buff (current-buffer))) | |
770 (delete-windows-on buff) | |
771 (kill-buffer buff))) | |
772 | |
773 (defun Man-goto-page (page) | |
774 "Go to the manual page on page PAGE." | |
775 (interactive | |
776 (if (not Man-page-list) | |
777 (error "You're looking at the only manpage in the buffer.") | |
778 (format "nGo to manpage [1-%d]: " (length Man-page-list)))) | |
779 (if (or (< page 1) | |
780 (> page (length Man-page-list))) | |
781 (error "No manpage %d found" page)) | |
782 (let* ((page-range (nth (1- page) Man-page-list)) | |
783 (page-start (car page-range)) | |
784 (page-end (cdr page-range))) | |
785 (setq Man-current-page page | |
786 Man-page-mode-string (Man-page-mode-string)) | |
787 (widen) | |
788 (goto-char page-start) | |
789 (narrow-to-region page-start page-end) | |
790 (Man-build-section-alist) | |
3659
296caa999ccf
(Man-filter-list): Add an element for X man pages.
Richard M. Stallman <rms@gnu.org>
parents:
3644
diff
changeset
|
791 ;; Don't let bugs in Man-build-references-alist |
296caa999ccf
(Man-filter-list): Add an element for X man pages.
Richard M. Stallman <rms@gnu.org>
parents:
3644
diff
changeset
|
792 ;; interfere with ordinary use of this package. |
296caa999ccf
(Man-filter-list): Add an element for X man pages.
Richard M. Stallman <rms@gnu.org>
parents:
3644
diff
changeset
|
793 (condition-case nil |
296caa999ccf
(Man-filter-list): Add an element for X man pages.
Richard M. Stallman <rms@gnu.org>
parents:
3644
diff
changeset
|
794 (Man-build-references-alist) |
296caa999ccf
(Man-filter-list): Add an element for X man pages.
Richard M. Stallman <rms@gnu.org>
parents:
3644
diff
changeset
|
795 (error)) |
3235 | 796 (widen) |
797 (narrow-to-region page-start page-end) | |
798 (goto-char (point-min)))) | |
799 | |
800 | |
801 (defun Man-next-manpage () | |
802 "Find the next manpage entry in the buffer." | |
803 (interactive) | |
804 (if (= (length Man-page-list) 1) | |
805 (error "This is the only manpage in the buffer.")) | |
806 (if (< Man-current-page (length Man-page-list)) | |
807 (Man-goto-page (1+ Man-current-page)) | |
808 (if Man-circular-pages-p | |
809 (Man-goto-page 1) | |
810 (error "You're looking at the last manpage in the buffer.")))) | |
811 | |
812 (defun Man-previous-manpage () | |
813 "Find the previous manpage entry in the buffer." | |
814 (interactive) | |
815 (if (= (length Man-page-list) 1) | |
816 (error "This is the only manpage in the buffer.")) | |
817 (if (> Man-current-page 1) | |
818 (Man-goto-page (1- Man-current-page)) | |
819 (if Man-circular-pages-p | |
820 (Man-goto-page (length Man-page-list)) | |
821 (error "You're looking at the first manpage in the buffer.")))) | |
3833
70551a213fae
* man.el (Man-switches): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3714
diff
changeset
|
822 |
70551a213fae
* man.el (Man-switches): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3714
diff
changeset
|
823 (provide 'man) |
70551a213fae
* man.el (Man-switches): New variable.
Jim Blandy <jimb@redhat.com>
parents:
3714
diff
changeset
|
824 |
3235 | 825 ;;; man.el ends here |