1 ;;; man.el --- read in and display parts of Unix manual.
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
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)
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.
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.
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)
38 topic
(substring topic
(match-beginning 1)
40 (with-output-to-temp-buffer (concat "*" topic
" Manual Entry*")
41 (buffer-disable-undo standard-output
)
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
)
49 (if (and section
(or (file-exists-p
50 (setq name
(concat manual-formatted-dir-prefix
51 (substring section
0 1)
55 (setq name
(concat manual-formatted-dir-prefix
58 topic
"." section
)))))
59 (insert-man-file name
)
61 (let* ((dir (car dirlist
))
62 (name1 (concat dir
"/" topic
"."
66 (1+ (or (string-match "\\.[^./]*$" dir
)
69 (if (file-exists-p name1
)
70 (insert-man-file name1
)
73 (setq completions
(file-name-all-completions
74 (concat topic
"." (or section
""))
77 (insert-man-file (concat dir
"/" (car completions
)))
78 (setq completions
(cdr completions
))))
80 (goto-char (point-max)))
81 (setq dirlist
(cdr dirlist
)))))
83 (if (= (buffer-size) 0)
85 (message "No formatted entry, invoking man %s%s..."
86 (if section
(concat section
" ") "") topic
)
88 (call-process manual-program nil t nil section topic
)
89 (call-process manual-program nil t nil topic
))
90 (if (< (buffer-size) 80)
92 (goto-char (point-min))
94 (error (buffer-substring 1 (point)))))))
96 (message "Cleaning manual entry for %s..." topic
)
98 (set-buffer-modified-p nil
)
99 (setq buffer-read-only t
)
100 (view-mode nil
'bury-buffer
)
103 ;; Hint: BS stands for more things than "back space"
104 (defun nuke-nroff-bs ()
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
)
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 (setq start
(save-excursion (forward-line -
10) (point)))
115 (setq end
(save-excursion (forward-line 4) (point)))
116 (delete-region start end
)))
117 ;; Catch the final footer.
118 (goto-char (point-max))
119 (delete-region (point) (save-excursion (forward-line -
7) (point)))
121 ;; Nuke underlining and overstriking (only by the same letter)
122 (goto-char (point-min))
123 (while (search-forward "\b" nil t
)
124 (let* ((preceding (char-after (- (point) 2)))
125 (following (following-char)))
126 (cond ((= preceding following
)
129 ((and (= preceding ?o
) (= following ?\
+))
137 (delete-region (1- (point)) (1+ (point)))))))
139 ;; Zap ESC7, ESC8, and ESC9.
140 ;; This is for Sun man pages like "man 1 csh"
141 (goto-char (point-min))
142 (while (re-search-forward "\e[789]" nil t
)
145 ;; Convert o^H+ into o.
146 (goto-char (point-min))
147 (while (re-search-forward "o\010\\+" nil t
)
150 ;; Nuke the dumb reformatting message
151 (goto-char (point-min))
152 (while (re-search-forward "Reformatting page. Wait... done\n\n" nil t
)
155 ;; Crunch blank lines
156 (goto-char (point-min))
157 (while (re-search-forward "\n\n\n\n*" nil t
)
158 (replace-match "\n\n"))
160 ;; Nuke blanks lines at start.
161 (goto-char (point-min))
162 (skip-chars-forward "\n")
163 (delete-region (point-min) (point)))
166 (defun insert-man-file (name)
167 ;; Insert manual file (unpacked as necessary) into buffer
168 (if (or (equal (substring name -
2) ".Z")
169 (string-match "/cat[0-9][a-z]?\\.Z/" name
))
170 (call-process "zcat" name t nil
)
171 (if (equal (substring name -
2) ".z")
172 (call-process "pcat" nil t nil name
)
173 (insert-file-contents name
))))