emacs-lisp/package.el (package--read-pkg-desc): Fix tar-desc reference.
[emacs.git] / lisp / man.el
blobd9124c24e00b20909bda6bab79f99f2339bae7e5
1 ;;; man.el --- browse UNIX manual pages -*- coding: utf-8 -*-
3 ;; Copyright (C) 1993-1994, 1996-1997, 2001-2015 Free Software
4 ;; Foundation, Inc.
6 ;; Author: Barry A. Warsaw <bwarsaw@cen.com>
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Keywords: help
9 ;; Adapted-By: ESR, pot
11 ;; This file is part of GNU Emacs.
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 3 of the License, or
16 ;; (at your option) any later version.
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.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; This code provides a function, `man', with which you can browse
29 ;; UNIX manual pages. Formatting is done in background so that you
30 ;; can continue to use your Emacs while processing is going on.
32 ;; The mode also supports hypertext-like following of manual page SEE
33 ;; ALSO references, and other features. See below or do `?' in a
34 ;; manual page buffer for details.
36 ;; ========== Credits and History ==========
37 ;; In mid 1991, several people posted some interesting improvements to
38 ;; man.el from the standard Emacs 18.57 distribution. I liked many of
39 ;; these, but wanted everything in one single package, so I decided
40 ;; to incorporate them into a single manual browsing mode. While
41 ;; much of the code here has been rewritten, and some features added,
42 ;; these folks deserve lots of credit for providing the initial
43 ;; excellent packages on which this one is based.
45 ;; Nick Duffek <duffek@chaos.cs.brandeis.edu>, posted a very nice
46 ;; improvement which retrieved and cleaned the manpages in a
47 ;; background process, and which correctly deciphered such options as
48 ;; man -k.
50 ;; Eric Rose <erose@jessica.stanford.edu>, submitted manual.el which
51 ;; provided a very nice manual browsing mode.
53 ;; This package was available as `superman.el' from the LCD package
54 ;; for some time before it was accepted into Emacs 19. The entry
55 ;; point and some other names have been changed to make it a drop-in
56 ;; replacement for the old man.el package.
58 ;; Francesco Potortì <pot@cnuce.cnr.it> cleaned it up thoroughly,
59 ;; making it faster, more robust and more tolerant of different
60 ;; systems' man idiosyncrasies.
62 ;; ========== Features ==========
63 ;; + Runs "man" in the background and pipes the results through a
64 ;; series of sed and awk scripts so that all retrieving and cleaning
65 ;; is done in the background. The cleaning commands are configurable.
66 ;; + Syntax is the same as Un*x man
67 ;; + Functionality is the same as Un*x man, including "man -k" and
68 ;; "man <section>", etc.
69 ;; + Provides a manual browsing mode with keybindings for traversing
70 ;; the sections of a manpage, following references in the SEE ALSO
71 ;; section, and more.
72 ;; + Multiple manpages created with the same man command are put into
73 ;; a narrowed buffer circular list.
75 ;; ============= TODO ===========
76 ;; - Add a command for printing.
77 ;; - The awk script deletes multiple blank lines. This behavior does
78 ;; not allow to understand if there was indeed a blank line at the
79 ;; end or beginning of a page (after the header, or before the
80 ;; footer). A different algorithm should be used. It is easy to
81 ;; compute how many blank lines there are before and after the page
82 ;; headers, and after the page footer. But it is possible to compute
83 ;; the number of blank lines before the page footer by heuristics
84 ;; only. Is it worth doing?
85 ;; - Allow a user option to mean that all the manpages should go in
86 ;; the same buffer, where they can be browsed with M-n and M-p.
89 ;;; Code:
91 (require 'ansi-color)
92 (require 'cl-lib)
93 (require 'button)
95 (defgroup man nil
96 "Browse UNIX manual pages."
97 :prefix "Man-"
98 :group 'external
99 :group 'help)
101 (defvar Man-notify)
103 (defcustom Man-filter-list nil
104 "Manpage cleaning filter command phrases.
105 This variable contains a list of the following form:
107 '((command-string phrase-string*)*)
109 Each phrase-string is concatenated onto the command-string to form a
110 command filter. The (standard) output (and standard error) of the Un*x
111 man command is piped through each command filter in the order the
112 commands appear in the association list. The final output is placed in
113 the manpage buffer."
114 :type '(repeat (list (string :tag "Command String")
115 (repeat :inline t
116 (string :tag "Phrase String"))))
117 :group 'man)
119 (defvar Man-uses-untabify-flag t
120 "Non-nil means use `untabify' instead of `Man-untabify-command'.")
121 (defvar Man-sed-script nil
122 "Script for sed to nuke backspaces and ANSI codes from manpages.")
124 (defcustom Man-fontify-manpage-flag t
125 "Non-nil means make up the manpage with fonts."
126 :type 'boolean
127 :group 'man)
129 (defface Man-overstrike
130 '((t (:inherit bold)))
131 "Face to use when fontifying overstrike."
132 :group 'man
133 :version "24.3")
135 (defface Man-underline
136 '((t (:inherit underline)))
137 "Face to use when fontifying underlining."
138 :group 'man
139 :version "24.3")
141 (defface Man-reverse
142 '((t (:inherit highlight)))
143 "Face to use when fontifying reverse video."
144 :group 'man
145 :version "24.3")
147 (defvar Man-ansi-color-map (let ((ansi-color-faces-vector
148 [ default Man-overstrike default Man-underline
149 Man-underline default default Man-reverse ]))
150 (ansi-color-make-color-map))
151 "The value used here for `ansi-color-map'.")
153 ;; Use the value of the obsolete user option Man-notify, if set.
154 (defcustom Man-notify-method (if (boundp 'Man-notify) Man-notify 'friendly)
155 "Selects the behavior when manpage is ready.
156 This variable may have one of the following values, where (sf) means
157 that the frames are switched, so the manpage is displayed in the frame
158 where the man command was called from:
160 newframe -- put the manpage in its own frame (see `Man-frame-parameters')
161 pushy -- make the manpage the current buffer in the current window
162 bully -- make the manpage the current buffer and only window (sf)
163 aggressive -- make the manpage the current buffer in the other window (sf)
164 friendly -- display manpage in the other window but don't make current (sf)
165 polite -- don't display manpage, but prints message and beep when ready
166 quiet -- like `polite', but don't beep
167 meek -- make no indication that the manpage is ready
169 Any other value of `Man-notify-method' is equivalent to `meek'."
170 :type '(radio (const newframe) (const pushy) (const bully)
171 (const aggressive) (const friendly)
172 (const polite) (const quiet) (const meek))
173 :group 'man)
175 (defcustom Man-width nil
176 "Number of columns for which manual pages should be formatted.
177 If nil, use the width of the window where the manpage is displayed.
178 If non-nil, use the width of the frame where the manpage is displayed.
179 The value also can be a positive integer for a fixed width."
180 :type '(choice (const :tag "Window width" nil)
181 (const :tag "Frame width" t)
182 (integer :tag "Fixed width" :value 65))
183 :group 'man)
185 (defcustom Man-frame-parameters nil
186 "Frame parameter list for creating a new frame for a manual page."
187 :type 'sexp
188 :group 'man)
190 (defcustom Man-downcase-section-letters-flag t
191 "Non-nil means letters in sections are converted to lower case.
192 Some Un*x man commands can't handle uppercase letters in sections, for
193 example \"man 2V chmod\", but they are often displayed in the manpage
194 with the upper case letter. When this variable is t, the section
195 letter (e.g., \"2V\") is converted to lowercase (e.g., \"2v\") before
196 being sent to the man background process."
197 :type 'boolean
198 :group 'man)
200 (defcustom Man-circular-pages-flag t
201 "Non-nil means the manpage list is treated as circular for traversal."
202 :type 'boolean
203 :group 'man)
205 (defcustom Man-section-translations-alist
206 (list
207 '("3C++" . "3")
208 ;; Some systems have a real 3x man section, so let's comment this.
209 ;; '("3X" . "3") ; Xlib man pages
210 '("3X11" . "3")
211 '("1-UCB" . ""))
212 "Association list of bogus sections to real section numbers.
213 Some manpages (e.g. the Sun C++ 2.1 manpages) have section numbers in
214 their references which Un*x `man' does not recognize. This
215 association list is used to translate those sections, when found, to
216 the associated section number."
217 :type '(repeat (cons (string :tag "Bogus Section")
218 (string :tag "Real Section")))
219 :group 'man)
221 ;; FIXME see comments at ffap-c-path.
222 (defcustom Man-header-file-path
223 (let ((arch (with-temp-buffer
224 (when (eq 0 (ignore-errors
225 (call-process "gcc" nil '(t nil) nil
226 "-print-multiarch")))
227 (goto-char (point-min))
228 (buffer-substring (point) (line-end-position)))))
229 (base '("/usr/include" "/usr/local/include")))
230 (if (zerop (length arch))
231 base
232 (append base (list (expand-file-name arch "/usr/include")))))
233 "C Header file search path used in Man."
234 :version "24.1" ; add multiarch
235 :type '(repeat string)
236 :group 'man)
238 (defcustom Man-name-local-regexp (concat "^" (regexp-opt '("NOM" "NAME")) "$")
239 "Regexp that matches the text that precedes the command's name.
240 Used in `bookmark-set' to get the default bookmark name."
241 :version "24.1"
242 :type 'string :group 'bookmark)
244 (defcustom manual-program "man"
245 "Program used by `man' to produce man pages."
246 :type 'string
247 :group 'man)
249 (defcustom Man-untabify-command "pr"
250 "Program used by `man' for untabifying."
251 :type 'string
252 :group 'man)
254 (defcustom Man-untabify-command-args (list "-t" "-e")
255 "List of arguments to be passed to `Man-untabify-command' (which see)."
256 :type '(repeat string)
257 :group 'man)
259 (defcustom Man-sed-command "sed"
260 "Program used by `man' to process sed scripts."
261 :type 'string
262 :group 'man)
264 (defcustom Man-awk-command "awk"
265 "Program used by `man' to process awk scripts."
266 :type 'string
267 :group 'man)
269 (defcustom Man-mode-hook nil
270 "Hook run when Man mode is enabled."
271 :type 'hook
272 :group 'man)
274 (defcustom Man-cooked-hook nil
275 "Hook run after removing backspaces but before `Man-mode' processing."
276 :type 'hook
277 :group 'man)
279 (defvar Man-name-regexp "[-a-zA-Z0-9_­+][-a-zA-Z0-9_.:­+]*"
280 "Regular expression describing the name of a manpage (without section).")
282 (defvar Man-section-regexp "[0-9][a-zA-Z0-9+]*\\|[LNln]"
283 "Regular expression describing a manpage section within parentheses.")
285 (defvar Man-page-header-regexp
286 (if (string-match "-solaris2\\." system-configuration)
287 (concat "^[-A-Za-z0-9_].*[ \t]\\(" Man-name-regexp
288 "(\\(" Man-section-regexp "\\))\\)$")
289 (concat "^[ \t]*\\(" Man-name-regexp
290 "(\\(" Man-section-regexp "\\))\\).*\\1"))
291 "Regular expression describing the heading of a page.")
293 (defvar Man-heading-regexp "^\\([A-Z][A-Z0-9 /-]+\\)$"
294 "Regular expression describing a manpage heading entry.")
296 (defvar Man-see-also-regexp "SEE ALSO"
297 "Regular expression for SEE ALSO heading (or your equivalent).
298 This regexp should not start with a `^' character.")
300 ;; This used to have leading space [ \t]*, but was removed because it
301 ;; causes false page splits on an occasional NAME with leading space
302 ;; inside a manpage. And `Man-heading-regexp' doesn't have [ \t]* anyway.
303 (defvar Man-first-heading-regexp "^NAME$\\|^[ \t]*No manual entry fo.*$"
304 "Regular expression describing first heading on a manpage.
305 This regular expression should start with a `^' character.")
307 (defvar Man-reference-regexp
308 (concat "\\(" Man-name-regexp
309 "\\(\n[ \t]+" Man-name-regexp "\\)*\\)[ \t]*(\\("
310 Man-section-regexp "\\))")
311 "Regular expression describing a reference to another manpage.")
313 (defvar Man-apropos-regexp
314 (concat "\\\[\\(" Man-name-regexp "\\)\\\][ \t]*(\\(" Man-section-regexp "\\))")
315 "Regular expression describing a reference to manpages in \"man -k output\".")
317 (defvar Man-synopsis-regexp "SYNOPSIS"
318 "Regular expression for SYNOPSIS heading (or your equivalent).
319 This regexp should not start with a `^' character.")
321 (defvar Man-files-regexp "FILES\\>"
322 ;; Add \> so as not to match mount(8)'s FILESYSTEM INDEPENDENT MOUNT OPTIONS.
323 "Regular expression for FILES heading (or your equivalent).
324 This regexp should not start with a `^' character.")
326 (defvar Man-include-regexp "#[ \t]*include[ \t]*"
327 "Regular expression describing the #include (directive of cpp).")
329 (defvar Man-file-name-regexp "[^<>\", \t\n]+"
330 "Regular expression describing <> in #include line (directive of cpp).")
332 (defvar Man-normal-file-prefix-regexp "[/~$]"
333 "Regular expression describing a file path appeared in FILES section.")
335 (defvar Man-header-regexp
336 (concat "\\(" Man-include-regexp "\\)"
337 "[<\"]"
338 "\\(" Man-file-name-regexp "\\)"
339 "[>\"]")
340 "Regular expression describing references to header files.")
342 (defvar Man-normal-file-regexp
343 (concat Man-normal-file-prefix-regexp Man-file-name-regexp)
344 "Regular expression describing references to normal files.")
346 ;; This includes the section as an optional part to catch hyphenated
347 ;; references to manpages.
348 (defvar Man-hyphenated-reference-regexp
349 (concat "\\(" Man-name-regexp "\\)\\((\\(" Man-section-regexp "\\))\\)?")
350 "Regular expression describing a reference in the SEE ALSO section.")
352 (defcustom Man-switches ""
353 "Switches passed to the man command, as a single string.
354 For example, the -a switch lets you see all the manpages for a
355 specified subject, if your `man' program supports it."
356 :type 'string
357 :group 'man)
359 (defvar Man-specified-section-option
360 (if (string-match "-solaris[0-9.]*$" system-configuration)
361 "-s"
363 "Option that indicates a specified a manual section name.")
365 (defvar Man-support-local-filenames 'auto-detect
366 "Internal cache for the value of the function `Man-support-local-filenames'.
367 `auto-detect' means the value is not yet determined.
368 Otherwise, the value is whatever the function
369 `Man-support-local-filenames' should return.")
371 (defcustom man-imenu-title "Contents"
372 "The title to use if man adds a Contents menu to the menubar."
373 :version "24.4"
374 :type 'string
375 :group 'man)
378 ;; other variables and keymap initializations
379 (defvar Man-original-frame)
380 (make-variable-buffer-local 'Man-original-frame)
381 (defvar Man-arguments)
382 (make-variable-buffer-local 'Man-arguments)
383 (put 'Man-arguments 'permanent-local t)
385 (defvar Man--sections nil)
386 (make-variable-buffer-local 'Man--sections)
387 (defvar Man--refpages nil)
388 (make-variable-buffer-local 'Man--refpages)
389 (defvar Man-page-list nil)
390 (make-variable-buffer-local 'Man-page-list)
391 (defvar Man-current-page 0)
392 (make-variable-buffer-local 'Man-current-page)
393 (defvar Man-page-mode-string "1 of 1")
394 (make-variable-buffer-local 'Man-page-mode-string)
396 (defconst Man-sysv-sed-script "\
397 /\b/ { s/_\b//g
398 s/\b_//g
399 s/o\b+/o/g
400 s/+\bo/o/g
401 :ovstrk
402 s/\\(.\\)\b\\1/\\1/g
403 t ovstrk
405 /\e\\[[0-9][0-9]*m/ s///g"
406 "Script for sysV-like sed to nuke backspaces and ANSI codes from manpages.")
408 (defconst Man-berkeley-sed-script "\
409 /\b/ { s/_\b//g\\
410 s/\b_//g\\
411 s/o\b+/o/g\\
412 s/+\bo/o/g\\
413 :ovstrk\\
414 s/\\(.\\)\b\\1/\\1/g\\
415 t ovstrk\\
417 /\e\\[[0-9][0-9]*m/ s///g"
418 "Script for berkeley-like sed to nuke backspaces and ANSI codes from manpages.")
420 (defvar Man-topic-history nil "Topic read history.")
422 (defvar Man-mode-syntax-table
423 (let ((table (copy-syntax-table (standard-syntax-table))))
424 (modify-syntax-entry ?. "w" table)
425 (modify-syntax-entry ?_ "w" table)
426 (modify-syntax-entry ?: "w" table) ; for PDL::Primitive in Perl man pages
427 table)
428 "Syntax table used in Man mode buffers.")
430 (defvar Man-mode-map
431 (let ((map (make-sparse-keymap)))
432 (suppress-keymap map)
433 (set-keymap-parent map button-buffer-map)
435 (define-key map [?\S-\ ] 'scroll-down-command)
436 (define-key map " " 'scroll-up-command)
437 (define-key map "\177" 'scroll-down-command)
438 (define-key map "n" 'Man-next-section)
439 (define-key map "p" 'Man-previous-section)
440 (define-key map "\en" 'Man-next-manpage)
441 (define-key map "\ep" 'Man-previous-manpage)
442 (define-key map ">" 'end-of-buffer)
443 (define-key map "<" 'beginning-of-buffer)
444 (define-key map "." 'beginning-of-buffer)
445 (define-key map "r" 'Man-follow-manual-reference)
446 (define-key map "g" 'Man-goto-section)
447 (define-key map "s" 'Man-goto-see-also-section)
448 (define-key map "k" 'Man-kill)
449 (define-key map "q" 'Man-quit)
450 (define-key map "u" 'Man-update-manpage)
451 (define-key map "m" 'man)
452 ;; Not all the man references get buttons currently. The text in the
453 ;; manual page can contain references to other man pages
454 (define-key map "\r" 'man-follow)
455 (define-key map "?" 'describe-mode)
457 (easy-menu-define nil map
458 "`Man-mode' menu."
459 '("Man"
460 ["Next Section" Man-next-section t]
461 ["Previous Section" Man-previous-section t]
462 ["Go To Section..." Man-goto-section t]
463 ["Go To \"SEE ALSO\" Section" Man-goto-see-also-section
464 :active (cl-member Man-see-also-regexp Man--sections
465 :test #'string-match-p)]
466 ["Follow Reference..." Man-follow-manual-reference
467 :active Man--refpages
468 :help "Go to a manpage referred to in the \"SEE ALSO\" section"]
469 "--"
470 ["Next Manpage" Man-next-manpage
471 :active (> (length Man-page-list) 1)]
472 ["Previous Manpage" Man-previous-manpage
473 :active (> (length Man-page-list) 1)]
474 "--"
475 ["Man..." man t]
476 ["Kill Buffer" Man-kill t]
477 ["Quit" Man-quit t]))
478 map)
479 "Keymap for Man mode.")
481 ;; buttons
482 (define-button-type 'Man-abstract-xref-man-page
483 'follow-link t
484 'help-echo "mouse-2, RET: display this man page"
485 'func nil
486 'action #'Man-xref-button-action)
488 (defun Man-xref-button-action (button)
489 (let ((target (button-get button 'Man-target-string)))
490 (funcall
491 (button-get button 'func)
492 (cond ((null target)
493 (button-label button))
494 ((functionp target)
495 (funcall target (button-start button)))
496 (t target)))))
498 (define-button-type 'Man-xref-man-page
499 :supertype 'Man-abstract-xref-man-page
500 'func 'man-follow)
503 (define-button-type 'Man-xref-header-file
504 'action (lambda (button)
505 (let ((w (button-get button 'Man-target-string)))
506 (unless (Man-view-header-file w)
507 (error "Cannot find header file: %s" w))))
508 'follow-link t
509 'help-echo "mouse-2: display this header file")
511 (define-button-type 'Man-xref-normal-file
512 'action (lambda (button)
513 (let ((f (substitute-in-file-name
514 (button-get button 'Man-target-string))))
515 (if (file-exists-p f)
516 (if (file-readable-p f)
517 (view-file f)
518 (error "Cannot read a file: %s" f))
519 (error "Cannot find a file: %s" f))))
520 'follow-link t
521 'help-echo "mouse-2: display this file")
524 ;; ======================================================================
525 ;; utilities
527 (defun Man-init-defvars ()
528 "Used for initializing variables based on display's color support.
529 This is necessary if one wants to dump man.el with Emacs."
531 ;; Avoid possible error in call-process by using a directory that must exist.
532 (let ((default-directory "/"))
533 (setq Man-sed-script
534 (cond
535 (Man-fontify-manpage-flag
536 nil)
537 ((eq 0 (call-process Man-sed-command nil nil nil Man-sysv-sed-script))
538 Man-sysv-sed-script)
539 ((eq 0 (call-process Man-sed-command nil nil nil Man-berkeley-sed-script))
540 Man-berkeley-sed-script)
542 nil))))
544 (setq Man-filter-list
545 ;; Avoid trailing nil which confuses customize.
546 (apply 'list
547 (cons
548 Man-sed-command
549 (if (eq system-type 'windows-nt)
550 ;; Windows needs ".." quoting, not '..'.
551 (list
552 "-e \"/Reformatting page. Wait/d\""
553 "-e \"/Reformatting entry. Wait/d\""
554 "-e \"/^[ \t][ \t]*-[ \t][0-9]*[ \t]-[ \t]*Formatted:.*[0-9]$/d\""
555 "-e \"/^[ \t]*Page[ \t][0-9]*.*(printed[ \t][0-9\\/]*)$/d\""
556 "-e \"/^Printed[ \t][0-9].*[0-9]$/d\""
557 "-e \"/^[ \t]*X[ \t]Version[ \t]1[01].*Release[ \t][0-9]/d\""
558 "-e \"/^[A-Za-z].*Last[ \t]change:/d\""
559 "-e \"/[ \t]*Copyright [0-9]* UNIX System Laboratories, Inc.$/d\""
560 "-e \"/^[ \t]*Rev\\..*Page [0-9][0-9]*$/d\"")
561 (list
562 (if Man-sed-script
563 (concat "-e '" Man-sed-script "'")
565 "-e '/^[\001-\032][\001-\032]*$/d'"
566 "-e '/\e[789]/s///g'"
567 "-e '/Reformatting page. Wait/d'"
568 "-e '/Reformatting entry. Wait/d'"
569 "-e '/^[ \t]*Hewlett-Packard[ \t]Company[ \t]*-[ \t][0-9]*[ \t]-/d'"
570 "-e '/^[ \t]*Hewlett-Packard[ \t]*-[ \t][0-9]*[ \t]-.*$/d'"
571 "-e '/^[ \t][ \t]*-[ \t][0-9]*[ \t]-[ \t]*Formatted:.*[0-9]$/d'"
572 "-e '/^[ \t]*Page[ \t][0-9]*.*(printed[ \t][0-9\\/]*)$/d'"
573 "-e '/^Printed[ \t][0-9].*[0-9]$/d'"
574 "-e '/^[ \t]*X[ \t]Version[ \t]1[01].*Release[ \t][0-9]/d'"
575 "-e '/^[A-Za-z].*Last[ \t]change:/d'"
576 "-e '/^Sun[ \t]Release[ \t][0-9].*[0-9]$/d'"
577 "-e '/[ \t]*Copyright [0-9]* UNIX System Laboratories, Inc.$/d'"
578 "-e '/^[ \t]*Rev\\..*Page [0-9][0-9]*$/d'"
580 ;; Windows doesn't support multi-line commands, so don't
581 ;; invoke Awk there.
582 (unless (eq system-type 'windows-nt)
583 (cons
584 Man-awk-command
585 (list
586 "'\n"
587 "BEGIN { blankline=0; anonblank=0; }\n"
588 "/^$/ { if (anonblank==0) next; }\n"
589 "{ anonblank=1; }\n"
590 "/^$/ { blankline++; next; }\n"
591 "{ if (blankline>0) { print \"\"; blankline=0; } print $0; }\n"
594 (if (not Man-uses-untabify-flag)
595 ;; The outer list will be stripped off by apply.
596 (list (cons
597 Man-untabify-command
598 Man-untabify-command-args))
602 (defsubst Man-make-page-mode-string ()
603 "Formats part of the mode line for Man mode."
604 (format "%s page %d of %d"
605 (or (nth 2 (nth (1- Man-current-page) Man-page-list))
607 Man-current-page
608 (length Man-page-list)))
610 (defsubst Man-build-man-command ()
611 "Builds the entire background manpage and cleaning command."
612 (let ((command (concat manual-program " " Man-switches
613 (cond
614 ;; Already has %s
615 ((string-match "%s" manual-program) "")
616 ;; Stock MS-DOS shells cannot redirect stderr;
617 ;; `call-process' below sends it to /dev/null,
618 ;; so we don't need `2>' even with DOS shells
619 ;; which do support stderr redirection.
620 ((not (fboundp 'start-process)) " %s")
621 ((concat " %s 2>" null-device)))))
622 (flist Man-filter-list))
623 (while (and flist (car flist))
624 (let ((pcom (car (car flist)))
625 (pargs (cdr (car flist))))
626 (setq command
627 (concat command " | " pcom " "
628 (mapconcat (lambda (phrase)
629 (if (not (stringp phrase))
630 (error "Malformed Man-filter-list"))
631 phrase)
632 pargs " ")))
633 (setq flist (cdr flist))))
634 command))
637 (defun Man-translate-cleanup (string)
638 "Strip leading, trailing and middle spaces."
639 (when (stringp string)
640 ;; Strip leading and trailing
641 (if (string-match "^[ \t\f\r\n]*\\(.+[^ \t\f\r\n]\\)" string)
642 (setq string (match-string 1 string)))
643 ;; middle spaces
644 (setq string (replace-regexp-in-string "[\t\r\n]" " " string))
645 (setq string (replace-regexp-in-string " +" " " string))
646 string))
648 (defun Man-translate-references (ref)
649 "Translates REF from \"chmod(2V)\" to \"2v chmod\" style.
650 Leave it as is if already in that style. Possibly downcase and
651 translate the section (see the `Man-downcase-section-letters-flag'
652 and the `Man-section-translations-alist' variables)."
653 (let ((name "")
654 (section "")
655 (slist Man-section-translations-alist))
656 (setq ref (Man-translate-cleanup ref))
657 (cond
658 ;; "chmod(2V)" case ?
659 ((string-match (concat "^" Man-reference-regexp "$") ref)
660 (setq name (replace-regexp-in-string "[\n\t ]" "" (match-string 1 ref))
661 section (match-string 3 ref)))
662 ;; "2v chmod" case ?
663 ((string-match (concat "^\\(" Man-section-regexp
664 "\\) +\\(" Man-name-regexp "\\)$") ref)
665 (setq name (match-string 2 ref)
666 section (match-string 1 ref))))
667 (if (string= name "")
668 ref ; Return the reference as is
669 (if Man-downcase-section-letters-flag
670 (setq section (downcase section)))
671 (while slist
672 (let ((s1 (car (car slist)))
673 (s2 (cdr (car slist))))
674 (setq slist (cdr slist))
675 (if Man-downcase-section-letters-flag
676 (setq s1 (downcase s1)))
677 (if (not (string= s1 section)) nil
678 (setq section (if Man-downcase-section-letters-flag
679 (downcase s2)
681 slist nil))))
682 (concat Man-specified-section-option section " " name))))
684 (defun Man-support-local-filenames ()
685 "Return non-nil if the man command supports local filenames.
686 Different man programs support this feature in different ways.
687 The default Debian man program (\"man-db\") has a `--local-file'
688 \(or `-l') option for this purpose. The default Red Hat man
689 program has no such option, but interprets any name containing
690 a \"/\" as a local filename. The function returns either `man-db'
691 `man', or nil."
692 (if (eq Man-support-local-filenames 'auto-detect)
693 (setq Man-support-local-filenames
694 (with-temp-buffer
695 (let ((default-directory
696 ;; Ensure that `default-directory' exists and is readable.
697 (if (file-accessible-directory-p default-directory)
698 default-directory
699 (expand-file-name "~/"))))
700 (ignore-errors
701 (call-process manual-program nil t nil "--help")))
702 (cond ((search-backward "--local-file" nil 'move)
703 'man-db)
704 ;; This feature seems to be present in at least ver 1.4f,
705 ;; which is about 20 years old.
706 ;; I don't know if this version has an official name?
707 ((looking-at "^man, versione? [1-9]")
708 'man))))
709 Man-support-local-filenames))
712 ;; ======================================================================
713 ;; default man entry: get word near point
715 (defun Man-default-man-entry (&optional pos)
716 "Guess default manual entry based on the text near position POS.
717 POS defaults to `point'."
718 (let (word start column distance)
719 (save-excursion
720 (when pos (goto-char pos))
721 (setq pos (point))
722 ;; The default title is the nearest entry-like object before or
723 ;; after POS.
724 (if (and (skip-chars-backward " \ta-zA-Z0-9+")
725 (not (zerop (skip-chars-backward "(")))
726 ;; Try to handle the special case where POS is on a
727 ;; section number.
728 (looking-at
729 (concat "([ \t]*\\(" Man-section-regexp "\\)[ \t]*)"))
730 ;; We skipped a valid section number backwards, look at
731 ;; preceding text.
732 (or (and (skip-chars-backward ",; \t")
733 (not (zerop (skip-chars-backward "-a-zA-Z0-9._+:"))))
734 ;; Not a valid entry, move POS after closing paren.
735 (not (setq pos (match-end 0)))))
736 ;; We have a candidate, make `start' record its starting
737 ;; position.
738 (setq start (point))
739 ;; Otherwise look at char before POS.
740 (goto-char pos)
741 (if (not (zerop (skip-chars-backward "-a-zA-Z0-9._+:")))
742 ;; Our candidate is just before or around POS.
743 (setq start (point))
744 ;; Otherwise record the current column and look backwards.
745 (setq column (current-column))
746 (skip-chars-backward ",; \t")
747 ;; Record the distance traveled.
748 (setq distance (- column (current-column)))
749 (when (looking-back
750 (concat "([ \t]*\\(?:" Man-section-regexp "\\)[ \t]*)"))
751 ;; Skip section number backwards.
752 (goto-char (match-beginning 0))
753 (skip-chars-backward " \t"))
754 (if (not (zerop (skip-chars-backward "-a-zA-Z0-9._+:")))
755 (progn
756 ;; We have a candidate before POS ...
757 (setq start (point))
758 (goto-char pos)
759 (if (and (skip-chars-forward ",; \t")
760 (< (- (current-column) column) distance)
761 (looking-at "[-a-zA-Z0-9._+:]"))
762 ;; ... but the one after POS is better.
763 (setq start (point))
764 ;; ... and anything after POS is worse.
765 (goto-char start)))
766 ;; No candidate before POS.
767 (goto-char pos)
768 (skip-chars-forward ",; \t")
769 (setq start (point)))))
770 ;; We have found a suitable starting point, try to skip at least
771 ;; one character.
772 (skip-chars-forward "-a-zA-Z0-9._+:")
773 (setq word (buffer-substring-no-properties start (point)))
774 ;; If there is a continuation at the end of line, check the
775 ;; following line too, eg:
776 ;; see this-
777 ;; command-here(1)
778 ;; Note: This code gets executed iff our entry is after POS.
779 (when (looking-at "[ \t\r\n]+\\([-a-zA-Z0-9._+:]+\\)([0-9])")
780 (setq word (concat word (match-string-no-properties 1)))
781 ;; Make sure the section number gets included by the code below.
782 (goto-char (match-end 1)))
783 (when (string-match "[-._]+$" word)
784 (setq word (substring word 0 (match-beginning 0))))
785 ;; The following was commented out since the preceding code
786 ;; should not produce a leading "*" in the first place.
787 ;;; ;; If looking at something like *strcat(... , remove the '*'
788 ;;; (when (string-match "^*" word)
789 ;;; (setq word (substring word 1)))
790 (concat
791 word
792 (and (not (string-equal word ""))
793 ;; If looking at something like ioctl(2) or brc(1M),
794 ;; include the section number in the returned value.
795 (looking-at
796 (concat "[ \t]*([ \t]*\\(" Man-section-regexp "\\)[ \t]*)"))
797 (format "(%s)" (match-string-no-properties 1)))))))
800 ;; ======================================================================
801 ;; Top level command and background process sentinel
803 ;; For compatibility with older versions.
804 ;;;###autoload
805 (defalias 'manual-entry 'man)
807 (defvar Man-completion-cache nil
808 ;; On my machine, "man -k" is so fast that a cache makes no sense,
809 ;; but apparently that's not the case in all cases, so let's add a cache.
810 "Cache of completion table of the form (PREFIX . TABLE).")
812 (defvar Man-man-k-use-anchor
813 ;; man-db or man-1.*
814 (memq system-type '(gnu gnu/linux gnu/kfreebsd))
815 "If non-nil prepend ^ to the prefix passed to \"man -k\" for completion.
816 The value should be nil if \"man -k ^PREFIX\" may omit some man
817 pages whose names start with PREFIX.
819 Currently, the default value depends on `system-type' and is
820 non-nil where the standard man programs are known to behave
821 properly. Setting the value to nil always gives correct results
822 but computing the list of completions may take a bit longer.")
824 (defun Man-parse-man-k ()
825 "Parse \"man -k\" output and return the list of page names.
827 The current buffer should contain the output of a command of the
828 form \"man -k keyword\", which is traditionally also available with
829 apropos(1).
831 While POSIX man(1p) is a bit vague about what to expect here,
832 this function tries to parse some commonly used formats, which
833 can be described in the following informal way, with square brackets
834 indicating optional parts and whitespace being interpreted
835 somewhat loosely.
837 foo[, bar [, ...]] [other stuff] (sec) - description
838 foo(sec)[, bar(sec) [, ...]] [other stuff] - description
840 For more details and some regression tests, please see
841 test/automated/man-tests.el in the emacs repository."
842 (goto-char (point-min))
843 ;; See man-tests for data about which systems use which format (hopefully we
844 ;; will be able to simplify the code if/when some of those formats aren't
845 ;; used any more).
846 (let (table)
847 (while (search-forward-regexp "^\\([^ \t,\n]+\\)\\(.*?\\)\
848 \\(?:[ \t]\\(([^ \t,\n]+?)\\)\\)?\\(?:[ \t]+- ?\\(.*\\)\\)?$" nil t)
849 (let ((section (match-string 3))
850 (description (match-string 4))
851 (bound (match-end 2)))
852 (goto-char (match-end 1))
853 (while
854 (progn
855 ;; The first regexp grouping may already match the section
856 ;; tacked on to the name, which is ok since for the formats we
857 ;; claim to support the third (non-shy) grouping does not
858 ;; match in this case, i.e., section is nil.
859 (push (propertize (concat (match-string 1) section)
860 'help-echo description)
861 table)
862 (search-forward-regexp "\\=, *\\([^ \t,]+\\)" bound t)))))
863 (nreverse table)))
865 (defun Man-completion-table (string pred action)
866 (cond
867 ;; This ends up returning t for pretty much any string, and hence leads to
868 ;; spurious "complete but not unique" messages. And since `man' doesn't
869 ;; require-match anyway, there's not point being clever.
870 ;;((eq action 'lambda) (not (string-match "([^)]*\\'" string)))
871 ((equal string "-k")
872 ;; Let SPC (minibuffer-complete-word) insert the space.
873 (complete-with-action action '("-k ") string pred))
875 (let ((table (cdr Man-completion-cache))
876 (section nil)
877 (prefix string))
878 (when (string-match "\\`\\([[:digit:]].*?\\) " string)
879 (setq section (match-string 1 string))
880 (setq prefix (substring string (match-end 0))))
881 (unless (and Man-completion-cache
882 (string-prefix-p (car Man-completion-cache) prefix))
883 (with-temp-buffer
884 (setq default-directory "/") ;; in case inherited doesn't exist
885 ;; Actually for my `man' the arg is a regexp.
886 ;; POSIX says it must be ERE and "man-db" seems to agree,
887 ;; whereas under MacOSX it seems to be BRE-style and doesn't
888 ;; accept backslashes at all. Let's not bother to
889 ;; quote anything.
890 (let ((process-environment (copy-sequence process-environment)))
891 (setenv "COLUMNS" "999") ;; don't truncate long names
892 ;; manual-program might not even exist. And since it's
893 ;; run differently in Man-getpage-in-background, an error
894 ;; here may not necessarily mean that we'll also get an
895 ;; error later.
896 (ignore-errors
897 (call-process manual-program nil '(t nil) nil
898 "-k" (concat (when (or Man-man-k-use-anchor
899 (string-equal prefix ""))
900 "^")
901 prefix))))
902 (setq table (Man-parse-man-k)))
903 ;; Cache the table for later reuse.
904 (setq Man-completion-cache (cons prefix table)))
905 ;; The table may contain false positives since the match is made
906 ;; by "man -k" not just on the manpage's name.
907 (if section
908 (let ((re (concat "(" (regexp-quote section) ")\\'")))
909 (dolist (comp (prog1 table (setq table nil)))
910 (if (string-match re comp)
911 (push (substring comp 0 (match-beginning 0)) table)))
912 (completion-table-with-context (concat section " ") table
913 prefix pred action))
914 ;; If the current text looks like a possible section name,
915 ;; then add a completion entry that just adds a space so SPC
916 ;; can be used to insert a space.
917 (if (string-match "\\`[[:digit:]]" string)
918 (push (concat string " ") table))
919 (let ((res (complete-with-action action table string pred)))
920 ;; In case we're completing to a single name that exists in
921 ;; several sections, the longest prefix will look like "foo(".
922 (if (and (stringp res)
923 (string-match "([^(]*\\'" res)
924 ;; In case the paren was already in `prefix', don't
925 ;; remove it.
926 (> (match-beginning 0) (length prefix)))
927 (substring res 0 (match-beginning 0))
928 res)))))))
930 ;;;###autoload
931 (defun man (man-args)
932 "Get a Un*x manual page and put it in a buffer.
933 This command is the top-level command in the man package.
934 It runs a Un*x command to retrieve and clean a manpage in the
935 background and places the results in a `Man-mode' browsing
936 buffer. The variable `Man-width' defines the number of columns in
937 formatted manual pages. The buffer is displayed immediately.
938 The variable `Man-notify-method' defines how the buffer is displayed.
939 If a buffer already exists for this man page, it will be displayed
940 without running the man command.
942 For a manpage from a particular section, use either of the
943 following. \"cat(1)\" is how cross-references appear and is
944 passed to man as \"1 cat\".
946 cat(1)
947 1 cat
949 To see manpages from all sections related to a subject, use an
950 \"all pages\" option (which might be \"-a\" if it's not the
951 default), then step through with `Man-next-manpage' (\\<Man-mode-map>\\[Man-next-manpage]) etc.
952 Add to `Man-switches' to make this option permanent.
954 -a chmod
956 An explicit filename can be given too. Use -l if it might
957 otherwise look like a page name.
959 /my/file/name.1.gz
960 -l somefile.1
962 An \"apropos\" query with -k gives a buffer of matching page
963 names or descriptions. The pattern argument is usually an
964 \"egrep\" style regexp.
966 -k pattern"
968 (interactive
969 (list (let* ((default-entry (Man-default-man-entry))
970 ;; ignore case because that's friendly for bizarre
971 ;; caps things like the X11 function names and because
972 ;; "man" itself is case-insensitive on the command line
973 ;; so you're accustomed not to bother about the case
974 ;; ("man -k" is case-insensitive similarly, so the
975 ;; table has everything available to complete)
976 (completion-ignore-case t)
977 Man-completion-cache ;Don't cache across calls.
978 (input (completing-read
979 (format "Manual entry%s"
980 (if (string= default-entry "")
981 ": "
982 (format " (default %s): " default-entry)))
983 'Man-completion-table
984 nil nil nil 'Man-topic-history default-entry)))
985 (if (string= input "")
986 (error "No man args given")
987 input))))
989 ;; Possibly translate the "subject(section)" syntax into the
990 ;; "section subject" syntax and possibly downcase the section.
991 (setq man-args (Man-translate-references man-args))
993 (Man-getpage-in-background man-args))
995 ;;;###autoload
996 (defun man-follow (man-args)
997 "Get a Un*x manual page of the item under point and put it in a buffer."
998 (interactive (list (Man-default-man-entry)))
999 (if (or (not man-args)
1000 (string= man-args ""))
1001 (error "No item under point")
1002 (man man-args)))
1004 (defmacro Man-start-calling (&rest body)
1005 "Start the man command in `body' after setting up the environment"
1006 `(let ((process-environment (copy-sequence process-environment))
1007 ;; The following is so Awk script gets \n intact
1008 ;; But don't prevent decoding of the outside.
1009 (coding-system-for-write 'raw-text-unix)
1010 ;; We must decode the output by a coding system that the
1011 ;; system's locale suggests in multibyte mode.
1012 (coding-system-for-read locale-coding-system)
1013 ;; Avoid possible error by using a directory that always exists.
1014 (default-directory
1015 (if (and (file-directory-p default-directory)
1016 (not (find-file-name-handler default-directory
1017 'file-directory-p)))
1018 default-directory
1019 "/")))
1020 ;; Prevent any attempt to use display terminal fanciness.
1021 (setenv "TERM" "dumb")
1022 ;; In Debian Woody, at least, we get overlong lines under X
1023 ;; unless COLUMNS or MANWIDTH is set. This isn't a problem on
1024 ;; a tty. man(1) says:
1025 ;; MANWIDTH
1026 ;; If $MANWIDTH is set, its value is used as the line
1027 ;; length for which manual pages should be formatted.
1028 ;; If it is not set, manual pages will be formatted
1029 ;; with a line length appropriate to the current ter-
1030 ;; minal (using an ioctl(2) if available, the value of
1031 ;; $COLUMNS, or falling back to 80 characters if nei-
1032 ;; ther is available).
1033 (when (or window-system
1034 (not (or (getenv "MANWIDTH") (getenv "COLUMNS"))))
1035 ;; Since the page buffer is displayed beforehand,
1036 ;; we can select its window and get the window/frame width.
1037 (setenv "COLUMNS" (number-to-string
1038 (cond
1039 ((and (integerp Man-width) (> Man-width 0))
1040 Man-width)
1041 (Man-width
1042 (if (window-live-p (get-buffer-window (current-buffer) t))
1043 (with-selected-window (get-buffer-window (current-buffer) t)
1044 (frame-width))
1045 (frame-width)))
1047 (if (window-live-p (get-buffer-window (current-buffer) t))
1048 (with-selected-window (get-buffer-window (current-buffer) t)
1049 (window-width))
1050 (window-width)))))))
1051 ;; Since man-db 2.4.3-1, man writes plain text with no escape
1052 ;; sequences when stdout is not a tty. In 2.5.0, the following
1053 ;; env-var was added to allow control of this (see Debian Bug#340673).
1054 (setenv "MAN_KEEP_FORMATTING" "1")
1055 ,@body))
1057 (defun Man-getpage-in-background (topic)
1058 "Use TOPIC to build and fire off the manpage and cleaning command.
1059 Return the buffer in which the manpage will appear."
1060 (let* ((man-args topic)
1061 (bufname (concat "*Man " man-args "*"))
1062 (buffer (get-buffer bufname)))
1063 (if buffer
1064 (Man-notify-when-ready buffer)
1065 (require 'env)
1066 (message "Invoking %s %s in the background" manual-program man-args)
1067 (setq buffer (generate-new-buffer bufname))
1068 (with-current-buffer buffer
1069 (Man-notify-when-ready buffer)
1070 (setq buffer-undo-list t)
1071 (setq Man-original-frame (selected-frame))
1072 (setq Man-arguments man-args)
1073 (Man-mode)
1074 (setq mode-line-process
1075 (concat " " (propertize (if Man-fontify-manpage-flag
1076 "[formatting...]"
1077 "[cleaning...]")
1078 'face 'mode-line-emphasis)))
1079 (Man-start-calling
1080 (if (fboundp 'start-process)
1081 (let ((proc (start-process
1082 manual-program buffer
1083 (if (memq system-type '(cygwin windows-nt))
1084 shell-file-name
1085 "sh")
1086 shell-command-switch
1087 (format (Man-build-man-command) man-args))))
1088 (set-process-sentinel proc 'Man-bgproc-sentinel)
1089 (set-process-filter proc 'Man-bgproc-filter))
1090 (let* ((inhibit-read-only t)
1091 (exit-status
1092 (call-process shell-file-name nil (list buffer nil) nil
1093 shell-command-switch
1094 (format (Man-build-man-command) man-args)))
1095 (msg ""))
1096 (or (and (numberp exit-status)
1097 (= exit-status 0))
1098 (and (numberp exit-status)
1099 (setq msg
1100 (format "exited abnormally with code %d"
1101 exit-status)))
1102 (setq msg exit-status))
1103 (if Man-fontify-manpage-flag
1104 (Man-fontify-manpage)
1105 (Man-cleanup-manpage))
1106 (Man-bgproc-sentinel bufname msg))))))
1107 buffer))
1109 (defun Man-update-manpage ()
1110 "Reformat current manpage by calling the man command again synchronously."
1111 (interactive)
1112 (when (eq Man-arguments nil)
1113 ;;this shouldn't happen unless it is not in a Man buffer."
1114 (error "Man-arguments not initialized"))
1115 (let ((old-pos (point))
1116 (text (current-word))
1117 (old-size (buffer-size))
1118 (inhibit-read-only t)
1119 (buffer-read-only nil))
1120 (erase-buffer)
1121 (Man-start-calling
1122 (call-process shell-file-name nil (list (current-buffer) nil) nil
1123 shell-command-switch
1124 (format (Man-build-man-command) Man-arguments)))
1125 (if Man-fontify-manpage-flag
1126 (Man-fontify-manpage)
1127 (Man-cleanup-manpage))
1128 (goto-char old-pos)
1129 ;;restore the point, not strictly right.
1130 (unless (or (eq text nil) (= old-size (buffer-size)))
1131 (let ((case-fold-search nil))
1132 (if (> old-size (buffer-size))
1133 (search-backward text nil t))
1134 (search-forward text nil t)))))
1136 (defun Man-notify-when-ready (man-buffer)
1137 "Notify the user when MAN-BUFFER is ready.
1138 See the variable `Man-notify-method' for the different notification behaviors."
1139 (let ((saved-frame (with-current-buffer man-buffer
1140 Man-original-frame)))
1141 (pcase Man-notify-method
1142 (`newframe
1143 ;; Since we run asynchronously, perhaps while Emacs is waiting
1144 ;; for input, we must not leave a different buffer current. We
1145 ;; can't rely on the editor command loop to reselect the
1146 ;; selected window's buffer.
1147 (save-excursion
1148 (let ((frame (make-frame Man-frame-parameters)))
1149 (set-window-buffer (frame-selected-window frame) man-buffer)
1150 (set-window-dedicated-p (frame-selected-window frame) t)
1151 (or (display-multi-frame-p frame)
1152 (select-frame frame)))))
1153 (`pushy
1154 (switch-to-buffer man-buffer))
1155 (`bully
1156 (and (frame-live-p saved-frame)
1157 (select-frame saved-frame))
1158 (pop-to-buffer man-buffer)
1159 (delete-other-windows))
1160 (`aggressive
1161 (and (frame-live-p saved-frame)
1162 (select-frame saved-frame))
1163 (pop-to-buffer man-buffer))
1164 (`friendly
1165 (and (frame-live-p saved-frame)
1166 (select-frame saved-frame))
1167 (display-buffer man-buffer 'not-this-window))
1168 (`polite
1169 (beep)
1170 (message "Manual buffer %s is ready" (buffer-name man-buffer)))
1171 (`quiet
1172 (message "Manual buffer %s is ready" (buffer-name man-buffer)))
1173 (_ ;; meek
1174 (message ""))
1177 (defun Man-softhyphen-to-minus ()
1178 ;; \255 is SOFT HYPHEN in Latin-N. Versions of Debian man, at
1179 ;; least, emit it even when not in a Latin-N locale.
1180 (unless (eq t (compare-strings "latin-" 0 nil
1181 current-language-environment 0 6 t))
1182 (goto-char (point-min))
1183 (let ((str "\255"))
1184 (if enable-multibyte-characters
1185 (setq str (string-as-multibyte str)))
1186 (while (search-forward str nil t) (replace-match "-")))))
1188 (defun Man-fontify-manpage ()
1189 "Convert overstriking and underlining to the correct fonts.
1190 Same for the ANSI bold and normal escape sequences."
1191 (interactive)
1192 (goto-char (point-min))
1193 ;; Fontify ANSI escapes.
1194 (let ((ansi-color-apply-face-function
1195 (lambda (beg end face)
1196 (when face
1197 (put-text-property beg end 'face face))))
1198 (ansi-color-map Man-ansi-color-map))
1199 (ansi-color-apply-on-region (point-min) (point-max)))
1200 ;; Other highlighting.
1201 (let ((buffer-undo-list t))
1202 (if (< (buffer-size) (position-bytes (point-max)))
1203 ;; Multibyte characters exist.
1204 (progn
1205 (goto-char (point-min))
1206 (while (and (search-forward "__\b\b" nil t) (not (eobp)))
1207 (backward-delete-char 4)
1208 (put-text-property (point) (1+ (point)) 'face 'Man-underline))
1209 (goto-char (point-min))
1210 (while (search-forward "\b\b__" nil t)
1211 (backward-delete-char 4)
1212 (put-text-property (1- (point)) (point) 'face 'Man-underline))))
1213 (goto-char (point-min))
1214 (while (and (search-forward "_\b" nil t) (not (eobp)))
1215 (backward-delete-char 2)
1216 (put-text-property (point) (1+ (point)) 'face 'Man-underline))
1217 (goto-char (point-min))
1218 (while (search-forward "\b_" nil t)
1219 (backward-delete-char 2)
1220 (put-text-property (1- (point)) (point) 'face 'Man-underline))
1221 (goto-char (point-min))
1222 (while (re-search-forward "\\(.\\)\\(\b+\\1\\)+" nil t)
1223 (replace-match "\\1")
1224 (put-text-property (1- (point)) (point) 'face 'Man-overstrike))
1225 (goto-char (point-min))
1226 (while (re-search-forward "o\b\\+\\|\\+\bo" nil t)
1227 (replace-match "o")
1228 (put-text-property (1- (point)) (point) 'face 'bold))
1229 (goto-char (point-min))
1230 (while (re-search-forward "[-|]\\(\b[-|]\\)+" nil t)
1231 (replace-match "+")
1232 (put-text-property (1- (point)) (point) 'face 'bold))
1233 ;; When the header is longer than the manpage name, groff tries to
1234 ;; condense it to a shorter line interspersed with ^H. Remove ^H with
1235 ;; their preceding chars (but don't put Man-overstrike). (Bug#5566)
1236 (goto-char (point-min))
1237 (while (re-search-forward ".\b" nil t) (backward-delete-char 2))
1238 (goto-char (point-min))
1239 ;; Try to recognize common forms of cross references.
1240 (Man-highlight-references)
1241 (Man-softhyphen-to-minus)
1242 (goto-char (point-min))
1243 (while (re-search-forward Man-heading-regexp nil t)
1244 (put-text-property (match-beginning 0)
1245 (match-end 0)
1246 'face 'Man-overstrike))))
1248 (defun Man-highlight-references (&optional xref-man-type)
1249 "Highlight the references on mouse-over.
1250 References include items in the SEE ALSO section,
1251 header file (#include <foo.h>), and files in FILES.
1252 If optional argument XREF-MAN-TYPE is non-nil, it used as the
1253 button type for items in SEE ALSO section. If it is nil, the
1254 default type, `Man-xref-man-page' is used for the buttons."
1255 ;; `Man-highlight-references' is used from woman.el, too.
1256 ;; woman.el doesn't set `Man-arguments'.
1257 (unless Man-arguments
1258 (setq Man-arguments ""))
1259 (if (string-match "-k " Man-arguments)
1260 (progn
1261 (Man-highlight-references0 nil Man-reference-regexp 1
1262 'Man-default-man-entry
1263 (or xref-man-type 'Man-xref-man-page))
1264 (Man-highlight-references0 nil Man-apropos-regexp 1
1265 'Man-default-man-entry
1266 (or xref-man-type 'Man-xref-man-page)))
1267 (Man-highlight-references0 Man-see-also-regexp Man-reference-regexp 1
1268 'Man-default-man-entry
1269 (or xref-man-type 'Man-xref-man-page))
1270 (Man-highlight-references0 Man-synopsis-regexp Man-header-regexp 0 2
1271 'Man-xref-header-file)
1272 (Man-highlight-references0 Man-files-regexp Man-normal-file-regexp 0 0
1273 'Man-xref-normal-file)))
1275 (defun Man-highlight-references0 (start-section regexp button-pos target type)
1276 ;; Based on `Man-build-references-alist'
1277 (when (or (null start-section)
1278 (Man-find-section start-section))
1279 (let ((end (if start-section
1280 (progn
1281 (forward-line 1)
1282 (back-to-indentation)
1283 (save-excursion
1284 (Man-next-section 1)
1285 (point)))
1286 (goto-char (point-min))
1287 nil)))
1288 (while (re-search-forward regexp end t)
1289 ;; An overlay button is preferable because the underlying text
1290 ;; may have text property highlights (Bug#7881).
1291 (make-button
1292 (match-beginning button-pos)
1293 (match-end button-pos)
1294 'type type
1295 'Man-target-string (cond
1296 ((numberp target)
1297 (match-string target))
1298 ((functionp target)
1299 target)
1300 (t nil)))))))
1302 (defun Man-cleanup-manpage (&optional interactive)
1303 "Remove overstriking and underlining from the current buffer.
1304 Normally skip any jobs that should have been done by the sed script,
1305 but when called interactively, do those jobs even if the sed
1306 script would have done them."
1307 (interactive "p")
1308 (if (or interactive (not Man-sed-script))
1309 (progn
1310 (goto-char (point-min))
1311 (while (search-forward "_\b" nil t) (backward-delete-char 2))
1312 (goto-char (point-min))
1313 (while (search-forward "\b_" nil t) (backward-delete-char 2))
1314 (goto-char (point-min))
1315 (while (re-search-forward "\\(.\\)\\(\b\\1\\)+" nil t)
1316 (replace-match "\\1"))
1317 (goto-char (point-min))
1318 (while (re-search-forward "\e\\[[0-9]+m" nil t) (replace-match ""))
1319 (goto-char (point-min))
1320 (while (re-search-forward "o\b\\+\\|\\+\bo" nil t) (replace-match "o"))
1322 (goto-char (point-min))
1323 (while (re-search-forward "[-|]\\(\b[-|]\\)+" nil t) (replace-match "+"))
1324 ;; When the header is longer than the manpage name, groff tries to
1325 ;; condense it to a shorter line interspersed with ^H. Remove ^H with
1326 ;; their preceding chars (but don't put Man-overstrike). (Bug#5566)
1327 (goto-char (point-min))
1328 (while (re-search-forward ".\b" nil t) (backward-delete-char 2))
1329 (Man-softhyphen-to-minus))
1331 (defun Man-bgproc-filter (process string)
1332 "Manpage background process filter.
1333 When manpage command is run asynchronously, PROCESS is the process
1334 object for the manpage command; when manpage command is run
1335 synchronously, PROCESS is the name of the buffer where the manpage
1336 command is run. Second argument STRING is the entire string of output."
1337 (save-excursion
1338 (let ((Man-buffer (process-buffer process)))
1339 (if (null (buffer-name Man-buffer)) ;; deleted buffer
1340 (set-process-buffer process nil)
1342 (with-current-buffer Man-buffer
1343 (let ((inhibit-read-only t)
1344 (beg (marker-position (process-mark process))))
1345 (save-excursion
1346 (goto-char beg)
1347 (insert string)
1348 (save-restriction
1349 (narrow-to-region
1350 (save-excursion
1351 (goto-char beg)
1352 (line-beginning-position))
1353 (point))
1354 (if Man-fontify-manpage-flag
1355 (Man-fontify-manpage)
1356 (Man-cleanup-manpage)))
1357 (set-marker (process-mark process) (point-max)))))))))
1359 (defun Man-bgproc-sentinel (process msg)
1360 "Manpage background process sentinel.
1361 When manpage command is run asynchronously, PROCESS is the process
1362 object for the manpage command; when manpage command is run
1363 synchronously, PROCESS is the name of the buffer where the manpage
1364 command is run. Second argument MSG is the exit message of the
1365 manpage command."
1366 (let ((Man-buffer (if (stringp process) (get-buffer process)
1367 (process-buffer process)))
1368 (delete-buff nil)
1369 (err-mess nil))
1371 (if (null (buffer-name Man-buffer)) ;; deleted buffer
1372 (or (stringp process)
1373 (set-process-buffer process nil))
1375 (with-current-buffer Man-buffer
1376 (save-excursion
1377 (let ((case-fold-search nil))
1378 (goto-char (point-min))
1379 (cond ((or (looking-at "No \\(manual \\)*entry for")
1380 (looking-at "[^\n]*: nothing appropriate$"))
1381 (setq err-mess (buffer-substring (point)
1382 (progn
1383 (end-of-line) (point)))
1384 delete-buff t))
1386 ;; "-k foo", successful exit, but no output (from man-db)
1387 ;; ENHANCE-ME: share the check for -k with
1388 ;; `Man-highlight-references'. The \\s- bits here are
1389 ;; meant to allow for multiple options with -k among them.
1390 ((and (string-match "\\(\\`\\|\\s-\\)-k\\s-" Man-arguments)
1391 (eq (process-status process) 'exit)
1392 (= (process-exit-status process) 0)
1393 (= (point-min) (point-max)))
1394 (setq err-mess (format "%s: no matches" Man-arguments)
1395 delete-buff t))
1397 ((or (stringp process)
1398 (not (and (eq (process-status process) 'exit)
1399 (= (process-exit-status process) 0))))
1400 (or (zerop (length msg))
1401 (progn
1402 (setq err-mess
1403 (concat (buffer-name Man-buffer)
1404 ": process "
1405 (let ((eos (1- (length msg))))
1406 (if (= (aref msg eos) ?\n)
1407 (substring msg 0 eos) msg))))
1408 (goto-char (point-max))
1409 (insert (format "\nprocess %s" msg))))
1411 (if delete-buff
1412 (if (window-live-p (get-buffer-window Man-buffer t))
1413 (quit-restore-window
1414 (get-buffer-window Man-buffer t) 'kill)
1415 (kill-buffer Man-buffer))
1417 (run-hooks 'Man-cooked-hook)
1419 (Man-build-page-list)
1420 (Man-strip-page-headers)
1421 (Man-unindent)
1422 (Man-goto-page 1 t)
1424 (if (not Man-page-list)
1425 (let ((args Man-arguments))
1426 (if (window-live-p (get-buffer-window (current-buffer) t))
1427 (quit-restore-window
1428 (get-buffer-window (current-buffer) t) 'kill)
1429 (kill-buffer (current-buffer)))
1430 (message "Can't find the %s manpage"
1431 (Man-page-from-arguments args)))
1433 (if Man-fontify-manpage-flag
1434 (message "%s man page formatted"
1435 (Man-page-from-arguments Man-arguments))
1436 (message "%s man page cleaned up"
1437 (Man-page-from-arguments Man-arguments)))
1438 (unless (and (processp process)
1439 (not (eq (process-status process) 'exit)))
1440 (setq mode-line-process nil))
1441 (set-buffer-modified-p nil)))))
1443 (if err-mess
1444 (message "%s" err-mess))
1445 ))))
1447 (defun Man-page-from-arguments (args)
1448 ;; Skip arguments and only print the page name.
1449 (mapconcat
1450 'identity
1451 (delete nil
1452 (mapcar
1453 (lambda (elem)
1454 (and (not (string-match "^-" elem))
1455 elem))
1456 (split-string args " ")))
1457 " "))
1460 ;; ======================================================================
1461 ;; set up manual mode in buffer and build alists
1463 (defvar bookmark-make-record-function)
1465 (put 'Man-mode 'mode-class 'special)
1467 (define-derived-mode Man-mode fundamental-mode "Man"
1468 "A mode for browsing Un*x manual pages.
1470 The following man commands are available in the buffer. Try
1471 \"\\[describe-key] <key> RET\" for more information:
1473 \\[man] Prompt to retrieve a new manpage.
1474 \\[Man-follow-manual-reference] Retrieve reference in SEE ALSO section.
1475 \\[Man-next-manpage] Jump to next manpage in circular list.
1476 \\[Man-previous-manpage] Jump to previous manpage in circular list.
1477 \\[Man-next-section] Jump to next manpage section.
1478 \\[Man-previous-section] Jump to previous manpage section.
1479 \\[Man-goto-section] Go to a manpage section.
1480 \\[Man-goto-see-also-section] Jumps to the SEE ALSO manpage section.
1481 \\[Man-quit] Deletes the manpage window, bury its buffer.
1482 \\[Man-kill] Deletes the manpage window, kill its buffer.
1483 \\[describe-mode] Prints this help text.
1485 The following variables may be of some use. Try
1486 \"\\[describe-variable] <variable-name> RET\" for more information:
1488 `Man-notify-method' What happens when manpage is ready to display.
1489 `Man-downcase-section-letters-flag' Force section letters to lower case.
1490 `Man-circular-pages-flag' Treat multiple manpage list as circular.
1491 `Man-section-translations-alist' List of section numbers and their Un*x equiv.
1492 `Man-filter-list' Background manpage filter command.
1493 `Man-mode-map' Keymap bindings for Man mode buffers.
1494 `Man-mode-hook' Normal hook run on entry to Man mode.
1495 `Man-section-regexp' Regexp describing manpage section letters.
1496 `Man-heading-regexp' Regexp describing section headers.
1497 `Man-see-also-regexp' Regexp for SEE ALSO section (or your equiv).
1498 `Man-first-heading-regexp' Regexp for first heading on a manpage.
1499 `Man-reference-regexp' Regexp matching a references in SEE ALSO.
1500 `Man-switches' Background `man' command switches.
1502 The following key bindings are currently in effect in the buffer:
1503 \\{Man-mode-map}"
1504 (setq buffer-auto-save-file-name nil
1505 mode-line-buffer-identification
1506 (list (default-value 'mode-line-buffer-identification)
1507 " {" 'Man-page-mode-string "}")
1508 truncate-lines t
1509 buffer-read-only t)
1510 (buffer-disable-undo)
1511 (auto-fill-mode -1)
1512 (setq imenu-generic-expression (list (list nil Man-heading-regexp 0)))
1513 (imenu-add-to-menubar man-imenu-title)
1514 (set (make-local-variable 'outline-regexp) Man-heading-regexp)
1515 (set (make-local-variable 'outline-level) (lambda () 1))
1516 (set (make-local-variable 'bookmark-make-record-function)
1517 'Man-bookmark-make-record))
1519 (defsubst Man-build-section-alist ()
1520 "Build the list of manpage sections."
1521 (setq Man--sections nil)
1522 (goto-char (point-min))
1523 (let ((case-fold-search nil))
1524 (while (re-search-forward Man-heading-regexp (point-max) t)
1525 (let ((section (match-string 1)))
1526 (unless (member section Man--sections)
1527 (push section Man--sections)))
1528 (forward-line 1))))
1530 (defsubst Man-build-references-alist ()
1531 "Build the list of references (in the SEE ALSO section)."
1532 (setq Man--refpages nil)
1533 (save-excursion
1534 (if (Man-find-section Man-see-also-regexp)
1535 (let ((start (progn (forward-line 1) (point)))
1536 (end (progn
1537 (Man-next-section 1)
1538 (point)))
1539 hyphenated
1540 (runningpoint -1))
1541 (save-restriction
1542 (narrow-to-region start end)
1543 (goto-char (point-min))
1544 (back-to-indentation)
1545 (while (and (not (eobp)) (/= (point) runningpoint))
1546 (setq runningpoint (point))
1547 (if (re-search-forward Man-hyphenated-reference-regexp end t)
1548 (let* ((word (match-string 0))
1549 (len (1- (length word))))
1550 (if hyphenated
1551 (setq word (concat hyphenated word)
1552 hyphenated nil
1553 ;; Update len, in case a reference spans
1554 ;; more than two lines (paranoia).
1555 len (1- (length word))))
1556 (if (memq (aref word len) '(?- ?­))
1557 (setq hyphenated (substring word 0 len)))
1558 (and (string-match Man-reference-regexp word)
1559 (not (member word Man--refpages))
1560 (push word Man--refpages))))
1561 (skip-chars-forward " \t\n,"))))))
1562 (setq Man--refpages (nreverse Man--refpages)))
1564 (defun Man-build-page-list ()
1565 "Build the list of separate manpages in the buffer."
1566 (setq Man-page-list nil)
1567 (let ((page-start (point-min))
1568 (page-end (point-max))
1569 (header ""))
1570 (goto-char page-start)
1571 (while (not (eobp))
1572 (setq header
1573 (if (looking-at Man-page-header-regexp)
1574 (match-string 1)
1575 nil))
1576 ;; Go past both the current and the next Man-first-heading-regexp
1577 (if (re-search-forward Man-first-heading-regexp nil 'move 2)
1578 (let ((p (progn (beginning-of-line) (point))))
1579 ;; We assume that the page header is delimited by blank
1580 ;; lines and that it contains at most one blank line. So
1581 ;; if we back by three blank lines we will be sure to be
1582 ;; before the page header but not before the possible
1583 ;; previous page header.
1584 (search-backward "\n\n" nil t 3)
1585 (if (re-search-forward Man-page-header-regexp p 'move)
1586 (beginning-of-line))))
1587 (setq page-end (point))
1588 (setq Man-page-list (append Man-page-list
1589 (list (list (copy-marker page-start)
1590 (copy-marker page-end)
1591 header))))
1592 (setq page-start page-end)
1595 (defun Man-strip-page-headers ()
1596 "Strip all the page headers but the first from the manpage."
1597 (let ((inhibit-read-only t)
1598 (case-fold-search nil)
1599 (header ""))
1600 (dolist (page Man-page-list)
1601 (and (nth 2 page)
1602 (goto-char (car page))
1603 (re-search-forward Man-first-heading-regexp nil t)
1604 (setq header (buffer-substring (car page) (match-beginning 0)))
1605 ;; Since the awk script collapses all successive blank
1606 ;; lines into one, and since we don't want to get rid of
1607 ;; the fast awk script, one must choose between adding
1608 ;; spare blank lines between pages when there were none and
1609 ;; deleting blank lines at page boundaries when there were
1610 ;; some. We choose the first, so we comment the following
1611 ;; line.
1612 ;; (setq header (concat "\n" header)))
1613 (while (search-forward header (nth 1 page) t)
1614 (replace-match ""))))))
1616 (defun Man-unindent ()
1617 "Delete the leading spaces that indent the manpage."
1618 (let ((inhibit-read-only t)
1619 (case-fold-search nil))
1620 (dolist (page Man-page-list)
1621 (let ((indent "")
1622 (nindent 0))
1623 (narrow-to-region (car page) (car (cdr page)))
1624 (if Man-uses-untabify-flag
1625 ;; The space characters inserted by `untabify' inherit
1626 ;; sticky text properties, which is unnecessary and looks
1627 ;; ugly with underlining (Bug#11408).
1628 (let ((text-property-default-nonsticky
1629 (cons '(face . t) text-property-default-nonsticky)))
1630 (untabify (point-min) (point-max))))
1631 (if (catch 'unindent
1632 (goto-char (point-min))
1633 (if (not (re-search-forward Man-first-heading-regexp nil t))
1634 (throw 'unindent nil))
1635 (beginning-of-line)
1636 (setq indent (buffer-substring (point)
1637 (progn
1638 (skip-chars-forward " ")
1639 (point))))
1640 (setq nindent (length indent))
1641 (if (zerop nindent)
1642 (throw 'unindent nil))
1643 (setq indent (concat indent "\\|$"))
1644 (goto-char (point-min))
1645 (while (not (eobp))
1646 (if (looking-at indent)
1647 (forward-line 1)
1648 (throw 'unindent nil)))
1649 (goto-char (point-min)))
1650 (while (not (eobp))
1651 (or (eolp)
1652 (delete-char nindent))
1653 (forward-line 1)))
1654 ))))
1657 ;; ======================================================================
1658 ;; Man mode commands
1660 (defun Man-next-section (n)
1661 "Move point to Nth next section (default 1)."
1662 (interactive "p")
1663 (let ((case-fold-search nil)
1664 (start (point)))
1665 (if (looking-at Man-heading-regexp)
1666 (forward-line 1))
1667 (if (re-search-forward Man-heading-regexp (point-max) t n)
1668 (beginning-of-line)
1669 (goto-char (point-max))
1670 ;; The last line doesn't belong to any section.
1671 (forward-line -1))
1672 ;; But don't move back from the starting point (can happen if `start'
1673 ;; is somewhere on the last line).
1674 (if (< (point) start) (goto-char start))))
1676 (defun Man-previous-section (n)
1677 "Move point to Nth previous section (default 1)."
1678 (interactive "p")
1679 (let ((case-fold-search nil))
1680 (if (looking-at Man-heading-regexp)
1681 (forward-line -1))
1682 (if (re-search-backward Man-heading-regexp (point-min) t n)
1683 (beginning-of-line)
1684 (goto-char (point-min)))))
1686 (defun Man-find-section (section)
1687 "Move point to SECTION if it exists, otherwise don't move point.
1688 Returns t if section is found, nil otherwise."
1689 (let ((curpos (point))
1690 (case-fold-search nil))
1691 (goto-char (point-min))
1692 (if (re-search-forward (concat "^" section) (point-max) t)
1693 (progn (beginning-of-line) t)
1694 (goto-char curpos)
1695 nil)
1698 (defvar Man--last-section nil)
1700 (defun Man-goto-section (section)
1701 "Move point to SECTION."
1702 (interactive
1703 (let* ((default (if (member Man--last-section Man--sections)
1704 Man--last-section
1705 (car Man--sections)))
1706 (completion-ignore-case t)
1707 (prompt (concat "Go to section (default " default "): "))
1708 (chosen (completing-read prompt Man--sections
1709 nil nil nil nil default)))
1710 (list chosen)))
1711 (setq Man--last-section section)
1712 (unless (Man-find-section section)
1713 (error "Section %s not found" section)))
1716 (defun Man-goto-see-also-section ()
1717 "Move point to the \"SEE ALSO\" section.
1718 Actually the section moved to is described by `Man-see-also-regexp'."
1719 (interactive)
1720 (if (not (Man-find-section Man-see-also-regexp))
1721 (error "%s" (concat "No " Man-see-also-regexp
1722 " section found in the current manpage"))))
1724 (defun Man-possibly-hyphenated-word ()
1725 "Return a possibly hyphenated word at point.
1726 If the word starts at the first non-whitespace column, and the
1727 previous line ends with a hyphen, return the last word on the previous
1728 line instead. Thus, if a reference to \"tcgetpgrp(3V)\" is hyphenated
1729 as \"tcgetp-grp(3V)\", and point is at \"grp(3V)\", we return
1730 \"tcgetp-\" instead of \"grp\"."
1731 (save-excursion
1732 (skip-syntax-backward "w()")
1733 (skip-chars-forward " \t")
1734 (let ((beg (point))
1735 (word (current-word)))
1736 (when (eq beg (save-excursion
1737 (back-to-indentation)
1738 (point)))
1739 (end-of-line 0)
1740 (if (eq (char-before) ?-)
1741 (setq word (current-word))))
1742 word)))
1744 (defvar Man--last-refpage nil)
1746 (defun Man-follow-manual-reference (reference)
1747 "Get one of the manpages referred to in the \"SEE ALSO\" section.
1748 Specify which REFERENCE to use; default is based on word at point."
1749 (interactive
1750 (if (not Man--refpages)
1751 (error "There are no references in the current man page")
1752 (list
1753 (let* ((default (or
1754 (car (all-completions
1755 (let ((word
1756 (or (Man-possibly-hyphenated-word)
1757 "")))
1758 ;; strip a trailing '-':
1759 (if (string-match "-$" word)
1760 (substring word 0
1761 (match-beginning 0))
1762 word))
1763 Man--refpages))
1764 (if (member Man--last-refpage Man--refpages)
1765 Man--last-refpage
1766 (car Man--refpages))))
1767 (defaults
1768 (mapcar 'substring-no-properties
1769 (cons default Man--refpages)))
1770 (prompt (concat "Refer to (default " default "): "))
1771 (chosen (completing-read prompt Man--refpages
1772 nil nil nil nil defaults)))
1773 chosen))))
1774 (if (not Man--refpages)
1775 (error "Can't find any references in the current manpage")
1776 (setq Man--last-refpage reference)
1777 (Man-getpage-in-background
1778 (Man-translate-references reference))))
1780 (defun Man-kill ()
1781 "Kill the buffer containing the manpage."
1782 (interactive)
1783 (quit-window t))
1785 (defun Man-quit ()
1786 "Bury the buffer containing the manpage."
1787 (interactive)
1788 (quit-window))
1790 (defun Man-goto-page (page &optional noerror)
1791 "Go to the manual page on page PAGE."
1792 (interactive
1793 (if (not Man-page-list)
1794 (error "Not a man page buffer")
1795 (if (= (length Man-page-list) 1)
1796 (error "You're looking at the only manpage in the buffer")
1797 (list (read-minibuffer (format "Go to manpage [1-%d]: "
1798 (length Man-page-list)))))))
1799 (if (and (not Man-page-list) (not noerror))
1800 (error "Not a man page buffer"))
1801 (when Man-page-list
1802 (if (or (< page 1)
1803 (> page (length Man-page-list)))
1804 (user-error "No manpage %d found" page))
1805 (let* ((page-range (nth (1- page) Man-page-list))
1806 (page-start (car page-range))
1807 (page-end (car (cdr page-range))))
1808 (setq Man-current-page page
1809 Man-page-mode-string (Man-make-page-mode-string))
1810 (widen)
1811 (goto-char page-start)
1812 (narrow-to-region page-start page-end)
1813 (Man-build-section-alist)
1814 (Man-build-references-alist)
1815 (goto-char (point-min)))))
1818 (defun Man-next-manpage ()
1819 "Find the next manpage entry in the buffer."
1820 (interactive)
1821 (if (= (length Man-page-list) 1)
1822 (error "This is the only manpage in the buffer"))
1823 (if (< Man-current-page (length Man-page-list))
1824 (Man-goto-page (1+ Man-current-page))
1825 (if Man-circular-pages-flag
1826 (Man-goto-page 1)
1827 (error "You're looking at the last manpage in the buffer"))))
1829 (defun Man-previous-manpage ()
1830 "Find the previous manpage entry in the buffer."
1831 (interactive)
1832 (if (= (length Man-page-list) 1)
1833 (error "This is the only manpage in the buffer"))
1834 (if (> Man-current-page 1)
1835 (Man-goto-page (1- Man-current-page))
1836 (if Man-circular-pages-flag
1837 (Man-goto-page (length Man-page-list))
1838 (error "You're looking at the first manpage in the buffer"))))
1840 ;; Header file support
1841 (defun Man-view-header-file (file)
1842 "View a header file specified by FILE from `Man-header-file-path'."
1843 (let ((path Man-header-file-path)
1844 complete-path)
1845 (while path
1846 (setq complete-path (expand-file-name file (car path))
1847 path (cdr path))
1848 (if (file-readable-p complete-path)
1849 (progn (view-file complete-path)
1850 (setq path nil))
1851 (setq complete-path nil)))
1852 complete-path))
1854 ;;; Bookmark Man Support
1855 (declare-function bookmark-make-record-default
1856 "bookmark" (&optional no-file no-context posn))
1857 (declare-function bookmark-prop-get "bookmark" (bookmark prop))
1858 (declare-function bookmark-default-handler "bookmark" (bmk))
1859 (declare-function bookmark-get-bookmark-record "bookmark" (bmk))
1861 (defun Man-default-bookmark-title ()
1862 "Default bookmark name for Man or WoMan pages.
1863 Uses `Man-name-local-regexp'."
1864 (save-excursion
1865 (goto-char (point-min))
1866 (when (re-search-forward Man-name-local-regexp nil t)
1867 (skip-chars-forward "\n\t ")
1868 (buffer-substring-no-properties (point) (line-end-position)))))
1870 (defun Man-bookmark-make-record ()
1871 "Make a bookmark entry for a Man buffer."
1872 `(,(Man-default-bookmark-title)
1873 ,@(bookmark-make-record-default 'no-file)
1874 (location . ,(concat "man " Man-arguments))
1875 (man-args . ,Man-arguments)
1876 (handler . Man-bookmark-jump)))
1878 ;;;###autoload
1879 (defun Man-bookmark-jump (bookmark)
1880 "Default bookmark handler for Man buffers."
1881 (let* ((man-args (bookmark-prop-get bookmark 'man-args))
1882 ;; Let bookmark.el do the window handling.
1883 ;; This let-binding needs to be active during the call to both
1884 ;; Man-getpage-in-background and accept-process-output.
1885 (Man-notify-method 'meek)
1886 (buf (Man-getpage-in-background man-args))
1887 (proc (get-buffer-process buf)))
1888 (while (and proc (eq (process-status proc) 'run))
1889 (accept-process-output proc))
1890 (bookmark-default-handler
1891 `("" (buffer . ,buf) . ,(bookmark-get-bookmark-record bookmark)))))
1894 ;; Init the man package variables, if not already done.
1895 (Man-init-defvars)
1897 (provide 'man)
1899 ;;; man.el ends here