]> code.delx.au - gnu-emacs/blob - lisp/man.el
(shell-command-on-region):
[gnu-emacs] / lisp / man.el
1 ;;; man.el --- read in and display parts of Unix manual.
2
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: unix
7
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
12 ;; the Free Software Foundation; either version 2, or (at your option)
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
24 ;;; Code:
25
26 ;;;###autoload
27 (defun manual-entry (topic &optional section)
28 "Display the Unix manual entry for TOPIC.
29 TOPIC is either the title of the entry, or has the form TITLE(SECTION)
30 where SECTION is the desired section of the manual, as in \"tty(4)\"."
31 (interactive "sManual entry (topic): ")
32 (if (= (length topic) 0)
33 (error "Must specify topic"))
34 (if (and (null section)
35 (string-match "\\`[ \t]*\\([^( \t]+\\)[ \t]*(\\(.+\\))[ \t]*\\'" topic))
36 (setq section (substring topic (match-beginning 2)
37 (match-end 2))
38 topic (substring topic (match-beginning 1)
39 (match-end 1))))
40 (with-output-to-temp-buffer (concat "*" topic " Manual Entry*")
41 (buffer-disable-undo standard-output)
42 (save-excursion
43 (set-buffer standard-output)
44 (message "Looking for formatted entry for %s%s..."
45 topic (if section (concat "(" section ")") ""))
46 (let ((dirlist manual-formatted-dirlist)
47 (case-fold-search nil)
48 name)
49 (if (and section (or (file-exists-p
50 (setq name (concat manual-formatted-dir-prefix
51 (substring section 0 1)
52 "/"
53 topic "." section)))
54 (file-exists-p
55 (setq name (concat manual-formatted-dir-prefix
56 section
57 "/"
58 topic "." section)))))
59 (insert-man-file name)
60 (while dirlist
61 (let* ((dir (car dirlist))
62 (name1 (concat dir "/" topic "."
63 (or section
64 (substring
65 dir
66 (1+ (or (string-match "\\.[^./]*$" dir)
67 -2))))))
68 completions)
69 (if (file-exists-p name1)
70 (insert-man-file name1)
71 (condition-case ()
72 (progn
73 (setq completions (file-name-all-completions
74 (concat topic "." (or section ""))
75 dir))
76 (while completions
77 (insert-man-file (concat dir "/" (car completions)))
78 (setq completions (cdr completions))))
79 (file-error nil)))
80 (goto-char (point-max)))
81 (setq dirlist (cdr dirlist)))))
82
83 (if (= (buffer-size) 0)
84 (progn
85 (message "No formatted entry, invoking man %s%s..."
86 (if section (concat section " ") "") topic)
87 (if section
88 (call-process manual-program nil t nil section topic)
89 (call-process manual-program nil t nil topic))
90 (if (< (buffer-size) 80)
91 (progn
92 (goto-char (point-min))
93 (end-of-line)
94 (error (buffer-substring 1 (point)))))))
95
96 (message "Cleaning manual entry for %s..." topic)
97 (nuke-nroff-bs)
98 (set-buffer-modified-p nil)
99 (setq buffer-read-only t)
100 (view-mode nil 'bury-buffer)
101 (message ""))))
102
103 ;; Hint: BS stands for more things than "back space"
104 (defun nuke-nroff-bs ()
105 (interactive "*")
106 ;; Nuke headers: "MORE(1) UNIX Programmer's Manual MORE(1)"
107 ;; We expext to find a footer just before the header except at the beginning.
108 (goto-char (point-min))
109 (while (re-search-forward "^ *\\([A-Za-z][-_.A-Za-z0-9]*([0-9A-Z]+)\\).*\\1$" nil t)
110 (let (start end)
111 ;; Put START and END around footer and header and garbage blank lines.
112 ;; Fixed line counts are risky, but allow us to preserve
113 ;; significant blank lines.
114 ;; These numbers are correct for MORE BSD, at least.
115 (setq start (save-excursion (forward-line -9) (point)))
116 (setq end (save-excursion (forward-line 3) (point)))
117 (delete-region start end)))
118 ;; Catch the final footer.
119 (goto-char (point-max))
120 (delete-region (point) (save-excursion (forward-line -7) (point)))
121
122 ;; Nuke underlining and overstriking (only by the same letter)
123 (goto-char (point-min))
124 (while (search-forward "\b" nil t)
125 (let* ((preceding (char-after (- (point) 2)))
126 (following (following-char)))
127 (cond ((= preceding following)
128 ;; x\bx
129 (delete-char -2))
130 ((and (= preceding ?o) (= following ?\+))
131 ;; o\b+
132 (delete-char -2))
133 ((= preceding ?\_)
134 ;; _\b
135 (delete-char -2))
136 ((= following ?\_)
137 ;; \b_
138 (delete-region (1- (point)) (1+ (point)))))))
139
140 ;; Zap ESC7, ESC8, and ESC9.
141 ;; This is for Sun man pages like "man 1 csh"
142 (goto-char (point-min))
143 (while (re-search-forward "\e[789]" nil t)
144 (replace-match ""))
145
146 ;; Convert o^H+ into o.
147 (goto-char (point-min))
148 (while (re-search-forward "o\010\\+" nil t)
149 (replace-match "o"))
150
151 ;; Nuke the dumb reformatting message
152 (goto-char (point-min))
153 (while (re-search-forward "Reformatting page. Wait... done\n\n" nil t)
154 (replace-match ""))
155
156 ;; Crunch blank lines
157 (goto-char (point-min))
158 (while (re-search-forward "\n\n\n\n*" nil t)
159 (replace-match "\n\n"))
160
161 ;; Nuke blanks lines at start.
162 (goto-char (point-min))
163 (skip-chars-forward "\n")
164 (delete-region (point-min) (point)))
165
166
167 (defun insert-man-file (name)
168 ;; Insert manual file (unpacked as necessary) into buffer
169 (if (or (equal (substring name -2) ".Z")
170 (string-match "/cat[0-9][a-z]?\\.Z/" name))
171 (call-process "zcat" name t nil)
172 (if (equal (substring name -2) ".z")
173 (call-process "pcat" nil t nil name)
174 (insert-file-contents name))))
175
176 ;;; man.el ends here