2013-01-10 15:01:35 +00:00
|
|
|
|
;;; man.el --- browse UNIX manual pages -*- coding: utf-8 -*-
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2013-01-01 09:11:05 +00:00
|
|
|
|
;; Copyright (C) 1993-1994, 1996-1997, 2001-2013 Free Software
|
|
|
|
|
;; Foundation, Inc.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Barry A. Warsaw <bwarsaw@cen.com>
|
|
|
|
|
;; Maintainer: FSF
|
|
|
|
|
;; Keywords: help
|
|
|
|
|
;; Adapted-By: ESR, pot
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This code provides a function, `man', with which you can browse
|
|
|
|
|
;; UNIX manual pages. Formatting is done in background so that you
|
|
|
|
|
;; can continue to use your Emacs while processing is going on.
|
|
|
|
|
;;
|
|
|
|
|
;; The mode also supports hypertext-like following of manual page SEE
|
|
|
|
|
;; ALSO references, and other features. See below or do `?' in a
|
|
|
|
|
;; manual page buffer for details.
|
|
|
|
|
|
|
|
|
|
;; ========== Credits and History ==========
|
|
|
|
|
;; In mid 1991, several people posted some interesting improvements to
|
2007-08-08 19:52:03 +00:00
|
|
|
|
;; man.el from the standard Emacs 18.57 distribution. I liked many of
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; these, but wanted everything in one single package, so I decided
|
|
|
|
|
;; to incorporate them into a single manual browsing mode. While
|
|
|
|
|
;; much of the code here has been rewritten, and some features added,
|
|
|
|
|
;; these folks deserve lots of credit for providing the initial
|
|
|
|
|
;; excellent packages on which this one is based.
|
|
|
|
|
|
|
|
|
|
;; Nick Duffek <duffek@chaos.cs.brandeis.edu>, posted a very nice
|
|
|
|
|
;; improvement which retrieved and cleaned the manpages in a
|
|
|
|
|
;; background process, and which correctly deciphered such options as
|
|
|
|
|
;; man -k.
|
|
|
|
|
|
|
|
|
|
;; Eric Rose <erose@jessica.stanford.edu>, submitted manual.el which
|
|
|
|
|
;; provided a very nice manual browsing mode.
|
|
|
|
|
|
|
|
|
|
;; This package was available as `superman.el' from the LCD package
|
|
|
|
|
;; for some time before it was accepted into Emacs 19. The entry
|
|
|
|
|
;; point and some other names have been changed to make it a drop-in
|
|
|
|
|
;; replacement for the old man.el package.
|
|
|
|
|
|
|
|
|
|
;; Francesco Potorti` <pot@cnuce.cnr.it> cleaned it up thoroughly,
|
|
|
|
|
;; making it faster, more robust and more tolerant of different
|
|
|
|
|
;; systems' man idiosyncrasies.
|
|
|
|
|
|
|
|
|
|
;; ========== Features ==========
|
|
|
|
|
;; + Runs "man" in the background and pipes the results through a
|
|
|
|
|
;; series of sed and awk scripts so that all retrieving and cleaning
|
2007-08-08 19:44:55 +00:00
|
|
|
|
;; is done in the background. The cleaning commands are configurable.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; + Syntax is the same as Un*x man
|
|
|
|
|
;; + Functionality is the same as Un*x man, including "man -k" and
|
|
|
|
|
;; "man <section>", etc.
|
|
|
|
|
;; + Provides a manual browsing mode with keybindings for traversing
|
|
|
|
|
;; the sections of a manpage, following references in the SEE ALSO
|
|
|
|
|
;; section, and more.
|
|
|
|
|
;; + Multiple manpages created with the same man command are put into
|
|
|
|
|
;; a narrowed buffer circular list.
|
|
|
|
|
|
|
|
|
|
;; ============= TODO ===========
|
|
|
|
|
;; - Add a command for printing.
|
2008-06-27 07:34:53 +00:00
|
|
|
|
;; - The awk script deletes multiple blank lines. This behavior does
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; not allow to understand if there was indeed a blank line at the
|
|
|
|
|
;; end or beginning of a page (after the header, or before the
|
|
|
|
|
;; footer). A different algorithm should be used. It is easy to
|
|
|
|
|
;; compute how many blank lines there are before and after the page
|
|
|
|
|
;; headers, and after the page footer. But it is possible to compute
|
2001-11-30 09:13:21 +00:00
|
|
|
|
;; the number of blank lines before the page footer by heuristics
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; only. Is it worth doing?
|
|
|
|
|
;; - Allow a user option to mean that all the manpages should go in
|
|
|
|
|
;; the same buffer, where they can be browsed with M-n and M-p.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(require 'ansi-color)
|
2003-04-02 21:22:38 +00:00
|
|
|
|
(require 'button)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defgroup man nil
|
|
|
|
|
"Browse UNIX manual pages."
|
|
|
|
|
:prefix "Man-"
|
2010-02-16 14:35:45 +00:00
|
|
|
|
:group 'external
|
2001-07-15 16:15:35 +00:00
|
|
|
|
:group 'help)
|
|
|
|
|
|
|
|
|
|
(defvar Man-notify)
|
2012-08-09 13:37:31 +00:00
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(defcustom Man-filter-list nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Manpage cleaning filter command phrases.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
This variable contains a list of the following form:
|
|
|
|
|
|
|
|
|
|
'((command-string phrase-string*)*)
|
|
|
|
|
|
|
|
|
|
Each phrase-string is concatenated onto the command-string to form a
|
|
|
|
|
command filter. The (standard) output (and standard error) of the Un*x
|
|
|
|
|
man command is piped through each command filter in the order the
|
|
|
|
|
commands appear in the association list. The final output is placed in
|
|
|
|
|
the manpage buffer."
|
|
|
|
|
:type '(repeat (list (string :tag "Command String")
|
|
|
|
|
(repeat :inline t
|
|
|
|
|
(string :tag "Phrase String"))))
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
|
|
|
|
(defvar Man-uses-untabify-flag t
|
|
|
|
|
"Non-nil means use `untabify' instead of `Man-untabify-command'.")
|
|
|
|
|
(defvar Man-sed-script nil
|
|
|
|
|
"Script for sed to nuke backspaces and ANSI codes from manpages.")
|
|
|
|
|
|
|
|
|
|
(defcustom Man-fontify-manpage-flag t
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Non-nil means make up the manpage with fonts."
|
2001-07-15 16:15:35 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(defface Man-overstrike
|
|
|
|
|
'((t (:inherit bold)))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Face to use when fontifying overstrike."
|
2012-08-15 03:37:07 +00:00
|
|
|
|
:group 'man
|
2012-08-15 16:29:11 +00:00
|
|
|
|
:version "24.3")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(defface Man-underline
|
|
|
|
|
'((t (:inherit underline)))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Face to use when fontifying underlining."
|
2012-08-15 03:37:07 +00:00
|
|
|
|
:group 'man
|
2012-08-15 16:29:11 +00:00
|
|
|
|
:version "24.3")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(defface Man-reverse
|
|
|
|
|
'((t (:inherit highlight)))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Face to use when fontifying reverse video."
|
2012-08-15 03:37:07 +00:00
|
|
|
|
:group 'man
|
2012-08-15 16:29:11 +00:00
|
|
|
|
:version "24.3")
|
2012-08-15 03:37:07 +00:00
|
|
|
|
|
|
|
|
|
(defvar Man-ansi-color-map (let ((ansi-color-faces-vector
|
|
|
|
|
[ default Man-overstrike default Man-underline
|
|
|
|
|
Man-underline default default Man-reverse ]))
|
|
|
|
|
(ansi-color-make-color-map))
|
|
|
|
|
"The value used here for `ansi-color-map'.")
|
2004-11-30 22:26:26 +00:00
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; Use the value of the obsolete user option Man-notify, if set.
|
|
|
|
|
(defcustom Man-notify-method (if (boundp 'Man-notify) Man-notify 'friendly)
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Selects the behavior when manpage is ready.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
This variable may have one of the following values, where (sf) means
|
|
|
|
|
that the frames are switched, so the manpage is displayed in the frame
|
|
|
|
|
where the man command was called from:
|
|
|
|
|
|
|
|
|
|
newframe -- put the manpage in its own frame (see `Man-frame-parameters')
|
|
|
|
|
pushy -- make the manpage the current buffer in the current window
|
|
|
|
|
bully -- make the manpage the current buffer and only window (sf)
|
|
|
|
|
aggressive -- make the manpage the current buffer in the other window (sf)
|
|
|
|
|
friendly -- display manpage in the other window but don't make current (sf)
|
|
|
|
|
polite -- don't display manpage, but prints message and beep when ready
|
|
|
|
|
quiet -- like `polite', but don't beep
|
|
|
|
|
meek -- make no indication that the manpage is ready
|
|
|
|
|
|
|
|
|
|
Any other value of `Man-notify-method' is equivalent to `meek'."
|
|
|
|
|
:type '(radio (const newframe) (const pushy) (const bully)
|
|
|
|
|
(const aggressive) (const friendly)
|
|
|
|
|
(const polite) (const quiet) (const meek))
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(defcustom Man-width nil
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Number of columns for which manual pages should be formatted.
|
2004-03-23 07:33:39 +00:00
|
|
|
|
If nil, the width of the window selected at the moment of man
|
|
|
|
|
invocation is used. If non-nil, the width of the frame selected
|
|
|
|
|
at the moment of man invocation is used. The value also can be a
|
|
|
|
|
positive integer."
|
|
|
|
|
:type '(choice (const :tag "Window width" nil)
|
|
|
|
|
(const :tag "Frame width" t)
|
|
|
|
|
(integer :tag "Specific width" :value 65))
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(defcustom Man-frame-parameters nil
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Frame parameter list for creating a new frame for a manual page."
|
2001-07-15 16:15:35 +00:00
|
|
|
|
:type 'sexp
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
|
|
|
|
(defcustom Man-downcase-section-letters-flag t
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Non-nil means letters in sections are converted to lower case.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
Some Un*x man commands can't handle uppercase letters in sections, for
|
|
|
|
|
example \"man 2V chmod\", but they are often displayed in the manpage
|
|
|
|
|
with the upper case letter. When this variable is t, the section
|
|
|
|
|
letter (e.g., \"2V\") is converted to lowercase (e.g., \"2v\") before
|
|
|
|
|
being sent to the man background process."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
|
|
|
|
(defcustom Man-circular-pages-flag t
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Non-nil means the manpage list is treated as circular for traversal."
|
2001-07-15 16:15:35 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
|
|
|
|
(defcustom Man-section-translations-alist
|
|
|
|
|
(list
|
|
|
|
|
'("3C++" . "3")
|
|
|
|
|
;; Some systems have a real 3x man section, so let's comment this.
|
|
|
|
|
;; '("3X" . "3") ; Xlib man pages
|
|
|
|
|
'("3X11" . "3")
|
|
|
|
|
'("1-UCB" . ""))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
"Association list of bogus sections to real section numbers.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
Some manpages (e.g. the Sun C++ 2.1 manpages) have section numbers in
|
|
|
|
|
their references which Un*x `man' does not recognize. This
|
|
|
|
|
association list is used to translate those sections, when found, to
|
|
|
|
|
the associated section number."
|
|
|
|
|
:type '(repeat (cons (string :tag "Bogus Section")
|
|
|
|
|
(string :tag "Real Section")))
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
2012-02-22 08:34:02 +00:00
|
|
|
|
;; FIXME see comments at ffap-c-path.
|
2003-04-02 21:22:38 +00:00
|
|
|
|
(defcustom Man-header-file-path
|
2012-02-22 08:34:02 +00:00
|
|
|
|
(let ((arch (with-temp-buffer
|
|
|
|
|
(when (eq 0 (ignore-errors
|
|
|
|
|
(call-process "gcc" nil '(t nil) nil
|
|
|
|
|
"-print-multiarch")))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(buffer-substring (point) (line-end-position)))))
|
|
|
|
|
(base '("/usr/include" "/usr/local/include")))
|
|
|
|
|
(if (zerop (length arch))
|
|
|
|
|
base
|
|
|
|
|
(append base (list (expand-file-name arch "/usr/include")))))
|
2003-04-02 21:22:38 +00:00
|
|
|
|
"C Header file search path used in Man."
|
2012-02-22 08:34:02 +00:00
|
|
|
|
:version "24.1" ; add multiarch
|
2003-04-02 21:22:38 +00:00
|
|
|
|
:type '(repeat string)
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
2010-04-12 16:09:47 +00:00
|
|
|
|
(defcustom Man-name-local-regexp (concat "^" (regexp-opt '("NOM" "NAME")) "$")
|
|
|
|
|
"Regexp that matches the text that precedes the command's name.
|
2010-04-12 15:17:29 +00:00
|
|
|
|
Used in `bookmark-set' to get the default bookmark name."
|
Add missing :version tags to new defgroups and defcustoms
* window.el (window-sides-slots):
* tool-bar.el (tool-bar-position):
* term/xterm.el (xterm-extra-capabilities):
* ses.el (ses-self-reference-early-detection):
* progmodes/verilog-mode.el (verilog-auto-declare-nettype)
(verilog-auto-wire-type)
(verilog-auto-delete-trailing-whitespace)
(verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
(verilog-auto-tieoff-declaration):
* progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
(sql-oracle-statement-starters, sql-oracle-scan-on):
* progmodes/prolog.el (prolog-align-comments-flag)
(prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
(prolog-left-indent-regexp, prolog-paren-indent-p)
(prolog-paren-indent, prolog-parse-mode, prolog-keywords)
(prolog-types, prolog-mode-specificators)
(prolog-determinism-specificators, prolog-directives)
(prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
(prolog-electric-dot-flag)
(prolog-electric-dot-full-predicate-template)
(prolog-electric-underscore-flag, prolog-electric-tab-flag)
(prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
(prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
(prolog-program-switches, prolog-prompt-regexp)
(prolog-debug-on-string, prolog-debug-off-string)
(prolog-trace-on-string, prolog-trace-off-string)
(prolog-zip-on-string, prolog-zip-off-string)
(prolog-use-standard-consult-compile-method-flag)
(prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
(prolog-imenu-max-lines, prolog-info-predicate-index)
(prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
(prolog-char-quote-workaround):
* progmodes/cc-vars.el (c-defun-tactic):
* net/tramp.el (tramp-encoding-command-interactive)
(tramp-local-end-of-line):
* net/soap-client.el (soap-client):
* net/netrc.el (netrc-file):
* net/gnutls.el (gnutls):
* minibuffer.el (completion-category-overrides)
(completion-cycle-threshold)
(completion-pcm-complete-word-inserts-delimiters):
* man.el (Man-name-local-regexp):
* mail/feedmail.el (feedmail-display-full-frame):
* international/characters.el (glyphless-char-display-control):
* eshell/em-ls.el (eshell-ls-date-format):
* emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
(lisp-lambda-list-keyword-parameter-indentation)
(lisp-lambda-list-keyword-parameter-alignment):
* doc-view.el (doc-view-image-width, doc-view-unoconv-program):
* dired-x.el (dired-omit-verbose):
* cus-theme.el (custom-theme-allow-multiple-selections):
* calc/calc.el (calc-highlight-selections-with-faces)
(calc-lu-field-reference, calc-lu-power-reference)
(calc-note-threshold):
* battery.el (battery-mode-line-limit):
* arc-mode.el (archive-7z-extract, archive-7z-expunge)
(archive-7z-update):
* allout.el (allout-prefixed-keybindings)
(allout-unprefixed-keybindings)
(allout-inhibit-auto-fill-on-headline)
(allout-flattened-numbering-abbreviation):
* allout-widgets.el (allout-widgets-auto-activation)
(allout-widgets-icons-dark-subdir)
(allout-widgets-icons-light-subdir, allout-widgets-icon-types)
(allout-widgets-theme-dark-background)
(allout-widgets-theme-light-background)
(allout-widgets-item-image-properties-emacs)
(allout-widgets-item-image-properties-xemacs)
(allout-widgets-run-unit-tests-on-load)
(allout-widgets-time-decoration-activity)
(allout-widgets-hook-error-post-time)
(allout-widgets-track-decoration):
* gnus/sieve-manage.el (sieve-manage-default-stream):
* gnus/shr.el (shr):
* gnus/nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
(nnir-retrieve-headers-override-function)
(nnir-imap-default-search-key, nnir-notmuch-program)
(nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
(nnir-method-default-engines):
* gnus/message.el (message-cite-reply-position):
* gnus/gssapi.el (gssapi-program):
* gnus/gravatar.el (gravatar):
* gnus/gnus-sum.el (gnus-refer-thread-use-nnir):
* gnus/gnus-registry.el (gnus-registry-unfollowed-addresses)
(gnus-registry-max-pruned-entries):
* gnus/gnus-picon.el (gnus-picon-inhibit-top-level-domains):
* gnus/gnus-int.el (gnus-after-set-mark-hook)
(gnus-before-update-mark-hook):
* gnus/gnus-async.el (gnus-async-post-fetch-function):
* gnus/auth-source.el (auth-source-cache-expiry):
Add missing :version tags to new defcustoms and defgroups.
2012-02-11 22:13:29 +00:00
|
|
|
|
:version "24.1"
|
2010-04-12 15:17:29 +00:00
|
|
|
|
:type 'string :group 'bookmark)
|
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom manual-program "man"
|
|
|
|
|
"Program used by `man' to produce man pages."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom Man-untabify-command "pr"
|
|
|
|
|
"Program used by `man' for untabifying."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom Man-untabify-command-args (list "-t" "-e")
|
|
|
|
|
"List of arguments to be passed to `Man-untabify-command' (which see)."
|
|
|
|
|
:type '(repeat string)
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom Man-sed-command "sed"
|
|
|
|
|
"Program used by `man' to process sed scripts."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom Man-awk-command "awk"
|
|
|
|
|
"Program used by `man' to process awk scripts."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom Man-mode-hook nil
|
|
|
|
|
"Hook run when Man mode is enabled."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom Man-cooked-hook nil
|
|
|
|
|
"Hook run after removing backspaces but before `Man-mode' processing."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2013-01-10 15:01:35 +00:00
|
|
|
|
(defvar Man-name-regexp "[-a-zA-Z0-9_+][-a-zA-Z0-9_.:+]*"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"Regular expression describing the name of a manpage (without section).")
|
|
|
|
|
|
2005-12-04 02:45:20 +00:00
|
|
|
|
(defvar Man-section-regexp "[0-9][a-zA-Z0-9+]*\\|[LNln]"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"Regular expression describing a manpage section within parentheses.")
|
|
|
|
|
|
|
|
|
|
(defvar Man-page-header-regexp
|
2011-04-08 03:30:26 +00:00
|
|
|
|
(if (string-match "-solaris2\\." system-configuration)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(concat "^[-A-Za-z0-9_].*[ \t]\\(" Man-name-regexp
|
|
|
|
|
"(\\(" Man-section-regexp "\\))\\)$")
|
|
|
|
|
(concat "^[ \t]*\\(" Man-name-regexp
|
|
|
|
|
"(\\(" Man-section-regexp "\\))\\).*\\1"))
|
|
|
|
|
"Regular expression describing the heading of a page.")
|
|
|
|
|
|
2007-11-16 01:18:50 +00:00
|
|
|
|
(defvar Man-heading-regexp "^\\([A-Z][A-Z0-9 /-]+\\)$"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"Regular expression describing a manpage heading entry.")
|
|
|
|
|
|
|
|
|
|
(defvar Man-see-also-regexp "SEE ALSO"
|
|
|
|
|
"Regular expression for SEE ALSO heading (or your equivalent).
|
|
|
|
|
This regexp should not start with a `^' character.")
|
|
|
|
|
|
2007-11-16 01:18:50 +00:00
|
|
|
|
;; This used to have leading space [ \t]*, but was removed because it
|
|
|
|
|
;; causes false page splits on an occasional NAME with leading space
|
|
|
|
|
;; inside a manpage. And `Man-heading-regexp' doesn't have [ \t]* anyway.
|
|
|
|
|
(defvar Man-first-heading-regexp "^NAME$\\|^[ \t]*No manual entry fo.*$"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"Regular expression describing first heading on a manpage.
|
|
|
|
|
This regular expression should start with a `^' character.")
|
|
|
|
|
|
|
|
|
|
(defvar Man-reference-regexp
|
2011-07-03 01:35:35 +00:00
|
|
|
|
(concat "\\(" Man-name-regexp
|
|
|
|
|
"\\(\n[ \t]+" Man-name-regexp "\\)*\\)[ \t]*(\\("
|
|
|
|
|
Man-section-regexp "\\))")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"Regular expression describing a reference to another manpage.")
|
|
|
|
|
|
2005-11-06 18:01:34 +00:00
|
|
|
|
(defvar Man-apropos-regexp
|
|
|
|
|
(concat "\\\[\\(" Man-name-regexp "\\)\\\][ \t]*(\\(" Man-section-regexp "\\))")
|
|
|
|
|
"Regular expression describing a reference to manpages in \"man -k output\".")
|
|
|
|
|
|
2003-04-02 21:22:38 +00:00
|
|
|
|
(defvar Man-synopsis-regexp "SYNOPSIS"
|
|
|
|
|
"Regular expression for SYNOPSIS heading (or your equivalent).
|
|
|
|
|
This regexp should not start with a `^' character.")
|
|
|
|
|
|
2010-03-05 20:18:20 +00:00
|
|
|
|
(defvar Man-files-regexp "FILES\\>"
|
|
|
|
|
;; Add \> so as not to match mount(8)'s FILESYSTEM INDEPENDENT MOUNT OPTIONS.
|
2003-04-02 21:22:38 +00:00
|
|
|
|
"Regular expression for FILES heading (or your equivalent).
|
|
|
|
|
This regexp should not start with a `^' character.")
|
|
|
|
|
|
|
|
|
|
(defvar Man-include-regexp "#[ \t]*include[ \t]*"
|
|
|
|
|
"Regular expression describing the #include (directive of cpp).")
|
|
|
|
|
|
2006-01-12 21:22:30 +00:00
|
|
|
|
(defvar Man-file-name-regexp "[^<>\", \t\n]+"
|
2003-04-02 21:22:38 +00:00
|
|
|
|
"Regular expression describing <> in #include line (directive of cpp).")
|
|
|
|
|
|
|
|
|
|
(defvar Man-normal-file-prefix-regexp "[/~$]"
|
|
|
|
|
"Regular expression describing a file path appeared in FILES section.")
|
|
|
|
|
|
|
|
|
|
(defvar Man-header-regexp
|
|
|
|
|
(concat "\\(" Man-include-regexp "\\)"
|
|
|
|
|
"[<\"]"
|
|
|
|
|
"\\(" Man-file-name-regexp "\\)"
|
|
|
|
|
"[>\"]")
|
|
|
|
|
"Regular expression describing references to header files.")
|
|
|
|
|
|
|
|
|
|
(defvar Man-normal-file-regexp
|
|
|
|
|
(concat Man-normal-file-prefix-regexp Man-file-name-regexp)
|
|
|
|
|
"Regular expression describing references to normal files.")
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; This includes the section as an optional part to catch hyphenated
|
2010-09-25 12:04:35 +00:00
|
|
|
|
;; references to manpages.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(defvar Man-hyphenated-reference-regexp
|
|
|
|
|
(concat "\\(" Man-name-regexp "\\)\\((\\(" Man-section-regexp "\\))\\)?")
|
|
|
|
|
"Regular expression describing a reference in the SEE ALSO section.")
|
|
|
|
|
|
2012-08-09 13:37:31 +00:00
|
|
|
|
(defcustom Man-switches ""
|
2001-08-01 15:31:08 +00:00
|
|
|
|
"Switches passed to the man command, as a single string.
|
2012-08-09 13:37:31 +00:00
|
|
|
|
For example, the -a switch lets you see all the manpages for a
|
|
|
|
|
specified subject, if your `man' program supports it."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'man)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defvar Man-specified-section-option
|
|
|
|
|
(if (string-match "-solaris[0-9.]*$" system-configuration)
|
|
|
|
|
"-s"
|
|
|
|
|
"")
|
|
|
|
|
"Option that indicates a specified a manual section name.")
|
|
|
|
|
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(defvar Man-support-local-filenames 'auto-detect
|
|
|
|
|
"Internal cache for the value of the function `Man-support-local-filenames'.
|
|
|
|
|
`auto-detect' means the value is not yet determined.
|
|
|
|
|
Otherwise, the value is whatever the function
|
|
|
|
|
`Man-support-local-filenames' should return.")
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; other variables and keymap initializations
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(defvar Man-original-frame)
|
|
|
|
|
(make-variable-buffer-local 'Man-original-frame)
|
|
|
|
|
(defvar Man-arguments)
|
|
|
|
|
(make-variable-buffer-local 'Man-arguments)
|
|
|
|
|
(put 'Man-arguments 'permanent-local t)
|
|
|
|
|
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(defvar Man--sections nil)
|
|
|
|
|
(make-variable-buffer-local 'Man--sections)
|
|
|
|
|
(defvar Man--refpages nil)
|
|
|
|
|
(make-variable-buffer-local 'Man--refpages)
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(defvar Man-page-list nil)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(make-variable-buffer-local 'Man-page-list)
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(defvar Man-current-page 0)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(make-variable-buffer-local 'Man-current-page)
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(defvar Man-page-mode-string "1 of 1")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(make-variable-buffer-local 'Man-page-mode-string)
|
|
|
|
|
|
|
|
|
|
(defconst Man-sysv-sed-script "\
|
|
|
|
|
/\b/ { s/_\b//g
|
|
|
|
|
s/\b_//g
|
|
|
|
|
s/o\b+/o/g
|
|
|
|
|
s/+\bo/o/g
|
|
|
|
|
:ovstrk
|
|
|
|
|
s/\\(.\\)\b\\1/\\1/g
|
|
|
|
|
t ovstrk
|
|
|
|
|
}
|
|
|
|
|
/\e\\[[0-9][0-9]*m/ s///g"
|
|
|
|
|
"Script for sysV-like sed to nuke backspaces and ANSI codes from manpages.")
|
|
|
|
|
|
|
|
|
|
(defconst Man-berkeley-sed-script "\
|
|
|
|
|
/\b/ { s/_\b//g\\
|
|
|
|
|
s/\b_//g\\
|
|
|
|
|
s/o\b+/o/g\\
|
|
|
|
|
s/+\bo/o/g\\
|
|
|
|
|
:ovstrk\\
|
|
|
|
|
s/\\(.\\)\b\\1/\\1/g\\
|
|
|
|
|
t ovstrk\\
|
|
|
|
|
}\\
|
|
|
|
|
/\e\\[[0-9][0-9]*m/ s///g"
|
|
|
|
|
"Script for berkeley-like sed to nuke backspaces and ANSI codes from manpages.")
|
|
|
|
|
|
2006-09-02 23:28:55 +00:00
|
|
|
|
(defvar Man-topic-history nil "Topic read history.")
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(defvar man-mode-syntax-table
|
|
|
|
|
(let ((table (copy-syntax-table (standard-syntax-table))))
|
|
|
|
|
(modify-syntax-entry ?. "w" table)
|
|
|
|
|
(modify-syntax-entry ?_ "w" table)
|
2005-04-27 12:39:44 +00:00
|
|
|
|
(modify-syntax-entry ?: "w" table) ; for PDL::Primitive in Perl man pages
|
2001-07-15 16:15:35 +00:00
|
|
|
|
table)
|
|
|
|
|
"Syntax table used in Man mode buffers.")
|
|
|
|
|
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(defvar Man-mode-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(suppress-keymap map)
|
|
|
|
|
(set-keymap-parent map button-buffer-map)
|
|
|
|
|
|
2013-02-12 04:46:18 +00:00
|
|
|
|
(define-key map [?\S-\ ] 'scroll-down-command)
|
2011-10-01 20:32:01 +00:00
|
|
|
|
(define-key map " " 'scroll-up-command)
|
|
|
|
|
(define-key map "\177" 'scroll-down-command)
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(define-key map "n" 'Man-next-section)
|
|
|
|
|
(define-key map "p" 'Man-previous-section)
|
|
|
|
|
(define-key map "\en" 'Man-next-manpage)
|
|
|
|
|
(define-key map "\ep" 'Man-previous-manpage)
|
|
|
|
|
(define-key map ">" 'end-of-buffer)
|
|
|
|
|
(define-key map "<" 'beginning-of-buffer)
|
|
|
|
|
(define-key map "." 'beginning-of-buffer)
|
|
|
|
|
(define-key map "r" 'Man-follow-manual-reference)
|
|
|
|
|
(define-key map "g" 'Man-goto-section)
|
|
|
|
|
(define-key map "s" 'Man-goto-see-also-section)
|
|
|
|
|
(define-key map "k" 'Man-kill)
|
|
|
|
|
(define-key map "q" 'Man-quit)
|
|
|
|
|
(define-key map "m" 'man)
|
|
|
|
|
;; Not all the man references get buttons currently. The text in the
|
|
|
|
|
;; manual page can contain references to other man pages
|
|
|
|
|
(define-key map "\r" 'man-follow)
|
|
|
|
|
(define-key map "?" 'describe-mode)
|
|
|
|
|
map)
|
|
|
|
|
"Keymap for Man mode.")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2003-04-02 21:22:38 +00:00
|
|
|
|
;; buttons
|
2005-10-18 04:21:51 +00:00
|
|
|
|
(define-button-type 'Man-abstract-xref-man-page
|
2005-01-06 22:00:56 +00:00
|
|
|
|
'follow-link t
|
2005-10-18 04:21:51 +00:00
|
|
|
|
'help-echo "mouse-2, RET: display this man page"
|
|
|
|
|
'func nil
|
2006-12-09 17:42:28 +00:00
|
|
|
|
'action #'Man-xref-button-action)
|
|
|
|
|
|
2008-12-03 05:48:14 +00:00
|
|
|
|
(defun Man-xref-button-action (button)
|
2006-12-09 17:42:28 +00:00
|
|
|
|
(let ((target (button-get button 'Man-target-string)))
|
2008-12-03 05:48:14 +00:00
|
|
|
|
(funcall
|
2006-12-09 17:42:28 +00:00
|
|
|
|
(button-get button 'func)
|
|
|
|
|
(cond ((null target)
|
|
|
|
|
(button-label button))
|
|
|
|
|
((functionp target)
|
|
|
|
|
(funcall target (button-start button)))
|
|
|
|
|
(t target)))))
|
2005-10-18 04:21:51 +00:00
|
|
|
|
|
2008-12-03 05:48:14 +00:00
|
|
|
|
(define-button-type 'Man-xref-man-page
|
2005-10-18 04:21:51 +00:00
|
|
|
|
:supertype 'Man-abstract-xref-man-page
|
|
|
|
|
'func 'man-follow)
|
|
|
|
|
|
2003-04-02 21:22:38 +00:00
|
|
|
|
|
|
|
|
|
(define-button-type 'Man-xref-header-file
|
2003-04-03 15:49:40 +00:00
|
|
|
|
'action (lambda (button)
|
|
|
|
|
(let ((w (button-get button 'Man-target-string)))
|
|
|
|
|
(unless (Man-view-header-file w)
|
|
|
|
|
(error "Cannot find header file: %s" w))))
|
2005-01-06 22:00:56 +00:00
|
|
|
|
'follow-link t
|
2003-04-03 15:49:40 +00:00
|
|
|
|
'help-echo "mouse-2: display this header file")
|
2003-04-02 21:22:38 +00:00
|
|
|
|
|
|
|
|
|
(define-button-type 'Man-xref-normal-file
|
|
|
|
|
'action (lambda (button)
|
|
|
|
|
(let ((f (substitute-in-file-name
|
|
|
|
|
(button-get button 'Man-target-string))))
|
|
|
|
|
(if (file-exists-p f)
|
|
|
|
|
(if (file-readable-p f)
|
|
|
|
|
(view-file f)
|
|
|
|
|
(error "Cannot read a file: %s" f))
|
|
|
|
|
(error "Cannot find a file: %s" f))))
|
2005-01-06 22:00:56 +00:00
|
|
|
|
'follow-link t
|
2004-10-31 23:44:57 +00:00
|
|
|
|
'help-echo "mouse-2: display this file")
|
2003-04-02 21:22:38 +00:00
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; ======================================================================
|
|
|
|
|
;; utilities
|
|
|
|
|
|
|
|
|
|
(defun Man-init-defvars ()
|
2005-08-29 11:00:09 +00:00
|
|
|
|
"Used for initializing variables based on display's color support.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
This is necessary if one wants to dump man.el with Emacs."
|
|
|
|
|
|
|
|
|
|
;; Avoid possible error in call-process by using a directory that must exist.
|
|
|
|
|
(let ((default-directory "/"))
|
|
|
|
|
(setq Man-sed-script
|
|
|
|
|
(cond
|
|
|
|
|
(Man-fontify-manpage-flag
|
|
|
|
|
nil)
|
2004-01-03 12:12:01 +00:00
|
|
|
|
((eq 0 (call-process Man-sed-command nil nil nil Man-sysv-sed-script))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
Man-sysv-sed-script)
|
2004-01-03 12:12:01 +00:00
|
|
|
|
((eq 0 (call-process Man-sed-command nil nil nil Man-berkeley-sed-script))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
Man-berkeley-sed-script)
|
|
|
|
|
(t
|
|
|
|
|
nil))))
|
|
|
|
|
|
|
|
|
|
(setq Man-filter-list
|
|
|
|
|
;; Avoid trailing nil which confuses customize.
|
|
|
|
|
(apply 'list
|
|
|
|
|
(cons
|
|
|
|
|
Man-sed-command
|
2009-03-07 13:31:35 +00:00
|
|
|
|
(if (eq system-type 'windows-nt)
|
|
|
|
|
;; Windows needs ".." quoting, not '..'.
|
|
|
|
|
(list
|
|
|
|
|
"-e \"/Reformatting page. Wait/d\""
|
|
|
|
|
"-e \"/Reformatting entry. Wait/d\""
|
|
|
|
|
"-e \"/^[ \t][ \t]*-[ \t][0-9]*[ \t]-[ \t]*Formatted:.*[0-9]$/d\""
|
|
|
|
|
"-e \"/^[ \t]*Page[ \t][0-9]*.*(printed[ \t][0-9\\/]*)$/d\""
|
|
|
|
|
"-e \"/^Printed[ \t][0-9].*[0-9]$/d\""
|
|
|
|
|
"-e \"/^[ \t]*X[ \t]Version[ \t]1[01].*Release[ \t][0-9]/d\""
|
|
|
|
|
"-e \"/^[A-Za-z].*Last[ \t]change:/d\""
|
|
|
|
|
"-e \"/[ \t]*Copyright [0-9]* UNIX System Laboratories, Inc.$/d\""
|
|
|
|
|
"-e \"/^[ \t]*Rev\\..*Page [0-9][0-9]*$/d\"")
|
|
|
|
|
(list
|
|
|
|
|
(if Man-sed-script
|
|
|
|
|
(concat "-e '" Man-sed-script "'")
|
|
|
|
|
"")
|
|
|
|
|
"-e '/^[\001-\032][\001-\032]*$/d'"
|
|
|
|
|
"-e '/\e[789]/s///g'"
|
|
|
|
|
"-e '/Reformatting page. Wait/d'"
|
|
|
|
|
"-e '/Reformatting entry. Wait/d'"
|
|
|
|
|
"-e '/^[ \t]*Hewlett-Packard[ \t]Company[ \t]*-[ \t][0-9]*[ \t]-/d'"
|
|
|
|
|
"-e '/^[ \t]*Hewlett-Packard[ \t]*-[ \t][0-9]*[ \t]-.*$/d'"
|
|
|
|
|
"-e '/^[ \t][ \t]*-[ \t][0-9]*[ \t]-[ \t]*Formatted:.*[0-9]$/d'"
|
|
|
|
|
"-e '/^[ \t]*Page[ \t][0-9]*.*(printed[ \t][0-9\\/]*)$/d'"
|
|
|
|
|
"-e '/^Printed[ \t][0-9].*[0-9]$/d'"
|
|
|
|
|
"-e '/^[ \t]*X[ \t]Version[ \t]1[01].*Release[ \t][0-9]/d'"
|
|
|
|
|
"-e '/^[A-Za-z].*Last[ \t]change:/d'"
|
|
|
|
|
"-e '/^Sun[ \t]Release[ \t][0-9].*[0-9]$/d'"
|
|
|
|
|
"-e '/[ \t]*Copyright [0-9]* UNIX System Laboratories, Inc.$/d'"
|
|
|
|
|
"-e '/^[ \t]*Rev\\..*Page [0-9][0-9]*$/d'"
|
|
|
|
|
)))
|
|
|
|
|
;; Windows doesn't support multi-line commands, so don't
|
|
|
|
|
;; invoke Awk there.
|
|
|
|
|
(unless (eq system-type 'windows-nt)
|
|
|
|
|
(cons
|
|
|
|
|
Man-awk-command
|
|
|
|
|
(list
|
|
|
|
|
"'\n"
|
|
|
|
|
"BEGIN { blankline=0; anonblank=0; }\n"
|
|
|
|
|
"/^$/ { if (anonblank==0) next; }\n"
|
|
|
|
|
"{ anonblank=1; }\n"
|
|
|
|
|
"/^$/ { blankline++; next; }\n"
|
|
|
|
|
"{ if (blankline>0) { print \"\"; blankline=0; } print $0; }\n"
|
|
|
|
|
"'"
|
|
|
|
|
)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (not Man-uses-untabify-flag)
|
|
|
|
|
;; The outer list will be stripped off by apply.
|
|
|
|
|
(list (cons
|
|
|
|
|
Man-untabify-command
|
|
|
|
|
Man-untabify-command-args))
|
|
|
|
|
)))
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
(defsubst Man-make-page-mode-string ()
|
|
|
|
|
"Formats part of the mode line for Man mode."
|
|
|
|
|
(format "%s page %d of %d"
|
|
|
|
|
(or (nth 2 (nth (1- Man-current-page) Man-page-list))
|
|
|
|
|
"")
|
|
|
|
|
Man-current-page
|
|
|
|
|
(length Man-page-list)))
|
|
|
|
|
|
|
|
|
|
(defsubst Man-build-man-command ()
|
|
|
|
|
"Builds the entire background manpage and cleaning command."
|
|
|
|
|
(let ((command (concat manual-program " " Man-switches
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(cond
|
|
|
|
|
;; Already has %s
|
|
|
|
|
((string-match "%s" manual-program) "")
|
|
|
|
|
;; Stock MS-DOS shells cannot redirect stderr;
|
|
|
|
|
;; `call-process' below sends it to /dev/null,
|
|
|
|
|
;; so we don't need `2>' even with DOS shells
|
|
|
|
|
;; which do support stderr redirection.
|
|
|
|
|
((not (fboundp 'start-process)) " %s")
|
|
|
|
|
((concat " %s 2>" null-device)))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(flist Man-filter-list))
|
|
|
|
|
(while (and flist (car flist))
|
|
|
|
|
(let ((pcom (car (car flist)))
|
|
|
|
|
(pargs (cdr (car flist))))
|
|
|
|
|
(setq command
|
|
|
|
|
(concat command " | " pcom " "
|
|
|
|
|
(mapconcat (lambda (phrase)
|
|
|
|
|
(if (not (stringp phrase))
|
|
|
|
|
(error "Malformed Man-filter-list"))
|
|
|
|
|
phrase)
|
|
|
|
|
pargs " ")))
|
2003-07-13 17:16:31 +00:00
|
|
|
|
(setq flist (cdr flist))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
command))
|
|
|
|
|
|
2003-07-13 17:16:31 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-translate-cleanup (string)
|
|
|
|
|
"Strip leading, trailing and middle spaces."
|
|
|
|
|
(when (stringp string)
|
|
|
|
|
;; Strip leading and trailing
|
|
|
|
|
(if (string-match "^[ \t\f\r\n]*\\(.+[^ \t\f\r\n]\\)" string)
|
|
|
|
|
(setq string (match-string 1 string)))
|
|
|
|
|
;; middle spaces
|
|
|
|
|
(setq string (replace-regexp-in-string "[\t\r\n]" " " string))
|
|
|
|
|
(setq string (replace-regexp-in-string " +" " " string))
|
|
|
|
|
string))
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(defun Man-translate-references (ref)
|
|
|
|
|
"Translates REF from \"chmod(2V)\" to \"2v chmod\" style.
|
|
|
|
|
Leave it as is if already in that style. Possibly downcase and
|
2005-08-29 11:00:09 +00:00
|
|
|
|
translate the section (see the `Man-downcase-section-letters-flag'
|
|
|
|
|
and the `Man-section-translations-alist' variables)."
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(let ((name "")
|
2003-07-13 17:16:31 +00:00
|
|
|
|
(section "")
|
|
|
|
|
(slist Man-section-translations-alist))
|
|
|
|
|
(setq ref (Man-translate-cleanup ref))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(cond
|
|
|
|
|
;; "chmod(2V)" case ?
|
|
|
|
|
((string-match (concat "^" Man-reference-regexp "$") ref)
|
2011-07-03 01:35:35 +00:00
|
|
|
|
(setq name (replace-regexp-in-string "[\n\t ]" "" (match-string 1 ref))
|
|
|
|
|
section (match-string 3 ref)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; "2v chmod" case ?
|
|
|
|
|
((string-match (concat "^\\(" Man-section-regexp
|
|
|
|
|
"\\) +\\(" Man-name-regexp "\\)$") ref)
|
2001-11-30 09:13:21 +00:00
|
|
|
|
(setq name (match-string 2 ref)
|
|
|
|
|
section (match-string 1 ref))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (string= name "")
|
|
|
|
|
ref ; Return the reference as is
|
|
|
|
|
(if Man-downcase-section-letters-flag
|
|
|
|
|
(setq section (downcase section)))
|
|
|
|
|
(while slist
|
|
|
|
|
(let ((s1 (car (car slist)))
|
|
|
|
|
(s2 (cdr (car slist))))
|
|
|
|
|
(setq slist (cdr slist))
|
|
|
|
|
(if Man-downcase-section-letters-flag
|
|
|
|
|
(setq s1 (downcase s1)))
|
|
|
|
|
(if (not (string= s1 section)) nil
|
|
|
|
|
(setq section (if Man-downcase-section-letters-flag
|
|
|
|
|
(downcase s2)
|
|
|
|
|
s2)
|
|
|
|
|
slist nil))))
|
|
|
|
|
(concat Man-specified-section-option section " " name))))
|
|
|
|
|
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(defun Man-support-local-filenames ()
|
2011-03-02 08:31:47 +00:00
|
|
|
|
"Return non-nil if the man command supports local filenames.
|
|
|
|
|
Different man programs support this feature in different ways.
|
|
|
|
|
The default Debian man program (\"man-db\") has a `--local-file'
|
|
|
|
|
\(or `-l') option for this purpose. The default Red Hat man
|
|
|
|
|
program has no such option, but interprets any name containing
|
|
|
|
|
a \"/\" as a local filename. The function returns either `man-db'
|
|
|
|
|
`man', or nil."
|
|
|
|
|
(if (eq Man-support-local-filenames 'auto-detect)
|
|
|
|
|
(setq Man-support-local-filenames
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(let ((default-directory
|
|
|
|
|
;; Ensure that `default-directory' exists and is readable.
|
|
|
|
|
(if (and (file-directory-p default-directory)
|
|
|
|
|
(file-readable-p default-directory))
|
|
|
|
|
default-directory
|
|
|
|
|
(expand-file-name "~/"))))
|
|
|
|
|
(ignore-errors
|
|
|
|
|
(call-process manual-program nil t nil "--help")))
|
|
|
|
|
(cond ((search-backward "--local-file" nil 'move)
|
|
|
|
|
'man-db)
|
|
|
|
|
;; This feature seems to be present in at least ver 1.4f,
|
|
|
|
|
;; which is about 20 years old.
|
|
|
|
|
;; I don't know if this version has an official name?
|
|
|
|
|
((looking-at "^man, versione? [1-9]")
|
|
|
|
|
'man))))
|
|
|
|
|
Man-support-local-filenames))
|
2004-03-23 07:33:39 +00:00
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; ======================================================================
|
2007-12-31 17:53:30 +00:00
|
|
|
|
;; default man entry: get word near point
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2007-12-31 17:53:30 +00:00
|
|
|
|
(defun Man-default-man-entry (&optional pos)
|
|
|
|
|
"Guess default manual entry based on the text near position POS.
|
|
|
|
|
POS defaults to `point'."
|
2009-11-27 04:08:04 +00:00
|
|
|
|
(let (word start column distance)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(save-excursion
|
2007-12-31 17:53:30 +00:00
|
|
|
|
(when pos (goto-char pos))
|
|
|
|
|
(setq pos (point))
|
|
|
|
|
;; The default title is the nearest entry-like object before or
|
|
|
|
|
;; after POS.
|
|
|
|
|
(if (and (skip-chars-backward " \ta-zA-Z0-9+")
|
|
|
|
|
(not (zerop (skip-chars-backward "(")))
|
|
|
|
|
;; Try to handle the special case where POS is on a
|
|
|
|
|
;; section number.
|
|
|
|
|
(looking-at
|
|
|
|
|
(concat "([ \t]*\\(" Man-section-regexp "\\)[ \t]*)"))
|
|
|
|
|
;; We skipped a valid section number backwards, look at
|
|
|
|
|
;; preceding text.
|
|
|
|
|
(or (and (skip-chars-backward ",; \t")
|
|
|
|
|
(not (zerop (skip-chars-backward "-a-zA-Z0-9._+:"))))
|
|
|
|
|
;; Not a valid entry, move POS after closing paren.
|
|
|
|
|
(not (setq pos (match-end 0)))))
|
|
|
|
|
;; We have a candidate, make `start' record its starting
|
|
|
|
|
;; position.
|
2007-12-19 09:24:01 +00:00
|
|
|
|
(setq start (point))
|
2007-12-31 17:53:30 +00:00
|
|
|
|
;; Otherwise look at char before POS.
|
|
|
|
|
(goto-char pos)
|
2007-12-19 09:24:01 +00:00
|
|
|
|
(if (not (zerop (skip-chars-backward "-a-zA-Z0-9._+:")))
|
2007-12-31 17:53:30 +00:00
|
|
|
|
;; Our candidate is just before or around POS.
|
|
|
|
|
(setq start (point))
|
|
|
|
|
;; Otherwise record the current column and look backwards.
|
|
|
|
|
(setq column (current-column))
|
|
|
|
|
(skip-chars-backward ",; \t")
|
2011-12-04 08:02:42 +00:00
|
|
|
|
;; Record the distance traveled.
|
2007-12-31 17:53:30 +00:00
|
|
|
|
(setq distance (- column (current-column)))
|
|
|
|
|
(when (looking-back
|
|
|
|
|
(concat "([ \t]*\\(?:" Man-section-regexp "\\)[ \t]*)"))
|
|
|
|
|
;; Skip section number backwards.
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(skip-chars-backward " \t"))
|
|
|
|
|
(if (not (zerop (skip-chars-backward "-a-zA-Z0-9._+:")))
|
|
|
|
|
(progn
|
|
|
|
|
;; We have a candidate before POS ...
|
|
|
|
|
(setq start (point))
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(if (and (skip-chars-forward ",; \t")
|
|
|
|
|
(< (- (current-column) column) distance)
|
|
|
|
|
(looking-at "[-a-zA-Z0-9._+:]"))
|
|
|
|
|
;; ... but the one after POS is better.
|
|
|
|
|
(setq start (point))
|
|
|
|
|
;; ... and anything after POS is worse.
|
|
|
|
|
(goto-char start)))
|
|
|
|
|
;; No candidate before POS.
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(skip-chars-forward ",; \t")
|
|
|
|
|
(setq start (point)))))
|
|
|
|
|
;; We have found a suitable starting point, try to skip at least
|
|
|
|
|
;; one character.
|
2007-12-19 09:24:01 +00:00
|
|
|
|
(skip-chars-forward "-a-zA-Z0-9._+:")
|
|
|
|
|
(setq word (buffer-substring-no-properties start (point)))
|
|
|
|
|
;; If there is a continuation at the end of line, check the
|
|
|
|
|
;; following line too, eg:
|
|
|
|
|
;; see this-
|
|
|
|
|
;; command-here(1)
|
2007-12-31 17:53:30 +00:00
|
|
|
|
;; Note: This code gets executed iff our entry is after POS.
|
2007-12-19 09:24:01 +00:00
|
|
|
|
(when (looking-at "[ \t\r\n]+\\([-a-zA-Z0-9._+:]+\\)([0-9])")
|
2007-12-31 17:53:30 +00:00
|
|
|
|
(setq word (concat word (match-string-no-properties 1)))
|
|
|
|
|
;; Make sure the section number gets included by the code below.
|
|
|
|
|
(goto-char (match-end 1)))
|
2013-05-18 23:18:16 +00:00
|
|
|
|
(when (string-match "[-._]+$" word)
|
2007-12-19 09:24:01 +00:00
|
|
|
|
(setq word (substring word 0 (match-beginning 0))))
|
2007-12-31 17:53:30 +00:00
|
|
|
|
;; The following was commented out since the preceding code
|
|
|
|
|
;; should not produce a leading "*" in the first place.
|
|
|
|
|
;;; ;; If looking at something like *strcat(... , remove the '*'
|
|
|
|
|
;;; (when (string-match "^*" word)
|
|
|
|
|
;;; (setq word (substring word 1)))
|
|
|
|
|
(concat
|
|
|
|
|
word
|
|
|
|
|
(and (not (string-equal word ""))
|
|
|
|
|
;; If looking at something like ioctl(2) or brc(1M),
|
|
|
|
|
;; include the section number in the returned value.
|
|
|
|
|
(looking-at
|
|
|
|
|
(concat "[ \t]*([ \t]*\\(" Man-section-regexp "\\)[ \t]*)"))
|
|
|
|
|
(format "(%s)" (match-string-no-properties 1)))))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; ======================================================================
|
|
|
|
|
;; Top level command and background process sentinel
|
|
|
|
|
|
|
|
|
|
;; For compatibility with older versions.
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'manual-entry 'man)
|
|
|
|
|
|
2009-11-25 03:51:00 +00:00
|
|
|
|
(defvar Man-completion-cache nil
|
|
|
|
|
;; On my machine, "man -k" is so fast that a cache makes no sense,
|
|
|
|
|
;; but apparently that's not the case in all cases, so let's add a cache.
|
|
|
|
|
"Cache of completion table of the form (PREFIX . TABLE).")
|
|
|
|
|
|
2013-01-10 15:01:35 +00:00
|
|
|
|
(defvar Man-man-k-use-anchor
|
|
|
|
|
;; man-db or man-1.*
|
|
|
|
|
(memq system-type '(gnu gnu/linux gnu/kfreebsd))
|
|
|
|
|
"If non-nil prepend ^ to the prefix passed to \"man -k\" for completion.
|
|
|
|
|
The value should be nil if \"man -k ^PREFIX\" may omit some man
|
|
|
|
|
pages whose names start with PREFIX.
|
|
|
|
|
|
|
|
|
|
Currently, the default value depends on `system-type' and is
|
|
|
|
|
non-nil where the standard man programs are known to behave
|
|
|
|
|
properly. Setting the value to nil always gives correct results
|
|
|
|
|
but computing the list of completions may take a bit longer.")
|
|
|
|
|
|
|
|
|
|
(defun Man-parse-man-k ()
|
|
|
|
|
"Parse \"man -k\" output and return the list of page names.
|
|
|
|
|
|
|
|
|
|
The current buffer should contain the output of a command of the
|
|
|
|
|
form \"man -k keyword\", which is traditionally also available with
|
|
|
|
|
apropos(1).
|
|
|
|
|
|
|
|
|
|
While POSIX man(1p) is a bit vague about what to expect here,
|
|
|
|
|
this function tries to parse some commonly used formats, which
|
|
|
|
|
can be described in the following informal way, with square brackets
|
|
|
|
|
indicating optional parts and whitespace being interpreted
|
|
|
|
|
somewhat loosely.
|
|
|
|
|
|
|
|
|
|
foo[, bar [, ...]] [other stuff] (sec) - description
|
|
|
|
|
foo(sec)[, bar(sec) [, ...]] [other stuff] - description
|
|
|
|
|
|
|
|
|
|
For more details and some regression tests, please see
|
|
|
|
|
test/automated/man-tests.el in the emacs bzr repository."
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; See man-tests for data about which systems use which format (hopefully we
|
|
|
|
|
;; will be able to simplify the code if/when some of those formats aren't
|
|
|
|
|
;; used any more).
|
|
|
|
|
(let (table)
|
|
|
|
|
(while (search-forward-regexp "^\\([^ \t,\n]+\\)\\(.*?\\)\
|
|
|
|
|
\\(?:[ \t]\\(([^ \t,\n]+?)\\)\\)?\\(?:[ \t]+- ?\\(.*\\)\\)?$" nil t)
|
|
|
|
|
(let ((section (match-string 3))
|
|
|
|
|
(description (match-string 4))
|
|
|
|
|
(bound (match-end 2)))
|
|
|
|
|
(goto-char (match-end 1))
|
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
;; The first regexp grouping may already match the section
|
|
|
|
|
;; tacked on to the name, which is ok since for the formats we
|
|
|
|
|
;; claim to support the third (non-shy) grouping does not
|
|
|
|
|
;; match in this case, i.e., section is nil.
|
|
|
|
|
(push (propertize (concat (match-string 1) section)
|
|
|
|
|
'help-echo description)
|
|
|
|
|
table)
|
|
|
|
|
(search-forward-regexp "\\=, *\\([^ \t,]+\\)" bound t)))))
|
|
|
|
|
(nreverse table)))
|
|
|
|
|
|
2009-11-24 20:00:41 +00:00
|
|
|
|
(defun Man-completion-table (string pred action)
|
|
|
|
|
(cond
|
2011-12-01 19:38:24 +00:00
|
|
|
|
;; This ends up returning t for pretty much any string, and hence leads to
|
|
|
|
|
;; spurious "complete but not unique" messages. And since `man' doesn't
|
|
|
|
|
;; require-match anyway, there's not point being clever.
|
|
|
|
|
;;((eq action 'lambda) (not (string-match "([^)]*\\'" string)))
|
2010-05-31 16:16:02 +00:00
|
|
|
|
((equal string "-k")
|
|
|
|
|
;; Let SPC (minibuffer-complete-word) insert the space.
|
|
|
|
|
(complete-with-action action '("-k ") string pred))
|
2009-11-27 04:08:04 +00:00
|
|
|
|
(t
|
|
|
|
|
(let ((table (cdr Man-completion-cache))
|
|
|
|
|
(section nil)
|
|
|
|
|
(prefix string))
|
|
|
|
|
(when (string-match "\\`\\([[:digit:]].*?\\) " string)
|
|
|
|
|
(setq section (match-string 1 string))
|
|
|
|
|
(setq prefix (substring string (match-end 0))))
|
2009-11-25 03:51:00 +00:00
|
|
|
|
(unless (and Man-completion-cache
|
2009-11-27 04:08:04 +00:00
|
|
|
|
(string-prefix-p (car Man-completion-cache) prefix))
|
|
|
|
|
(with-temp-buffer
|
2009-12-26 21:32:51 +00:00
|
|
|
|
(setq default-directory "/") ;; in case inherited doesn't exist
|
|
|
|
|
;; Actually for my `man' the arg is a regexp.
|
|
|
|
|
;; POSIX says it must be ERE and "man-db" seems to agree,
|
2009-11-27 04:08:04 +00:00
|
|
|
|
;; whereas under MacOSX it seems to be BRE-style and doesn't
|
|
|
|
|
;; accept backslashes at all. Let's not bother to
|
|
|
|
|
;; quote anything.
|
|
|
|
|
(let ((process-environment (copy-sequence process-environment)))
|
|
|
|
|
(setenv "COLUMNS" "999") ;; don't truncate long names
|
2010-02-11 16:00:01 +00:00
|
|
|
|
;; manual-program might not even exist. And since it's
|
|
|
|
|
;; run differently in Man-getpage-in-background, an error
|
|
|
|
|
;; here may not necessarily mean that we'll also get an
|
|
|
|
|
;; error later.
|
2013-01-10 15:01:35 +00:00
|
|
|
|
(ignore-errors
|
|
|
|
|
(call-process manual-program nil '(t nil) nil
|
|
|
|
|
"-k" (concat (when (or Man-man-k-use-anchor
|
|
|
|
|
(string-equal prefix ""))
|
|
|
|
|
"^")
|
|
|
|
|
prefix))))
|
|
|
|
|
(setq table (Man-parse-man-k)))
|
|
|
|
|
;; Cache the table for later reuse.
|
|
|
|
|
(setq Man-completion-cache (cons prefix table)))
|
2009-11-24 20:00:41 +00:00
|
|
|
|
;; The table may contain false positives since the match is made
|
|
|
|
|
;; by "man -k" not just on the manpage's name.
|
2009-11-27 04:08:04 +00:00
|
|
|
|
(if section
|
|
|
|
|
(let ((re (concat "(" (regexp-quote section) ")\\'")))
|
|
|
|
|
(dolist (comp (prog1 table (setq table nil)))
|
|
|
|
|
(if (string-match re comp)
|
|
|
|
|
(push (substring comp 0 (match-beginning 0)) table)))
|
|
|
|
|
(completion-table-with-context (concat section " ") table
|
|
|
|
|
prefix pred action))
|
2009-11-28 20:28:51 +00:00
|
|
|
|
;; If the current text looks like a possible section name,
|
|
|
|
|
;; then add a completion entry that just adds a space so SPC
|
|
|
|
|
;; can be used to insert a space.
|
|
|
|
|
(if (string-match "\\`[[:digit:]]" string)
|
|
|
|
|
(push (concat string " ") table))
|
2009-11-27 04:08:04 +00:00
|
|
|
|
(let ((res (complete-with-action action table string pred)))
|
|
|
|
|
;; In case we're completing to a single name that exists in
|
|
|
|
|
;; several sections, the longest prefix will look like "foo(".
|
|
|
|
|
(if (and (stringp res)
|
|
|
|
|
(string-match "([^(]*\\'" res)
|
|
|
|
|
;; In case the paren was already in `prefix', don't
|
|
|
|
|
;; remove it.
|
|
|
|
|
(> (match-beginning 0) (length prefix)))
|
|
|
|
|
(substring res 0 (match-beginning 0))
|
|
|
|
|
res)))))))
|
2003-07-13 17:16:31 +00:00
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun man (man-args)
|
|
|
|
|
"Get a Un*x manual page and put it in a buffer.
|
2009-12-26 21:30:00 +00:00
|
|
|
|
This command is the top-level command in the man package. It
|
|
|
|
|
runs a Un*x command to retrieve and clean a manpage in the
|
|
|
|
|
background and places the results in a `Man-mode' browsing
|
|
|
|
|
buffer. See variable `Man-notify-method' for what happens when
|
|
|
|
|
the buffer is ready. If a buffer already exists for this man
|
|
|
|
|
page, it will display immediately.
|
|
|
|
|
|
|
|
|
|
For a manpage from a particular section, use either of the
|
|
|
|
|
following. \"cat(1)\" is how cross-references appear and is
|
|
|
|
|
passed to man as \"1 cat\".
|
|
|
|
|
|
|
|
|
|
cat(1)
|
|
|
|
|
1 cat
|
|
|
|
|
|
|
|
|
|
To see manpages from all sections related to a subject, use an
|
|
|
|
|
\"all pages\" option (which might be \"-a\" if it's not the
|
|
|
|
|
default), then step through with `Man-next-manpage' (\\<Man-mode-map>\\[Man-next-manpage]) etc.
|
|
|
|
|
Add to `Man-switches' to make this option permanent.
|
|
|
|
|
|
|
|
|
|
-a chmod
|
|
|
|
|
|
|
|
|
|
An explicit filename can be given too. Use -l if it might
|
|
|
|
|
otherwise look like a page name.
|
|
|
|
|
|
|
|
|
|
/my/file/name.1.gz
|
|
|
|
|
-l somefile.1
|
|
|
|
|
|
|
|
|
|
An \"apropos\" query with -k gives a buffer of matching page
|
|
|
|
|
names or descriptions. The pattern argument is usually an
|
|
|
|
|
\"egrep\" style regexp.
|
|
|
|
|
|
|
|
|
|
-k pattern"
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (let* ((default-entry (Man-default-man-entry))
|
2009-11-25 22:52:02 +00:00
|
|
|
|
;; ignore case because that's friendly for bizarre
|
|
|
|
|
;; caps things like the X11 function names and because
|
2012-07-31 13:34:20 +00:00
|
|
|
|
;; "man" itself is case-insensitive on the command line
|
2009-11-25 22:52:02 +00:00
|
|
|
|
;; so you're accustomed not to bother about the case
|
|
|
|
|
;; ("man -k" is case-insensitive similarly, so the
|
|
|
|
|
;; table has everything available to complete)
|
|
|
|
|
(completion-ignore-case t)
|
2013-01-10 15:01:35 +00:00
|
|
|
|
Man-completion-cache ;Don't cache across calls.
|
2009-11-24 20:00:41 +00:00
|
|
|
|
(input (completing-read
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
(format "Manual entry%s"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (string= default-entry "")
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
": "
|
|
|
|
|
(format " (default %s): " default-entry)))
|
2009-11-24 20:00:41 +00:00
|
|
|
|
'Man-completion-table
|
|
|
|
|
nil nil nil 'Man-topic-history default-entry)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (string= input "")
|
2001-11-30 09:13:21 +00:00
|
|
|
|
(error "No man args given")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
input))))
|
|
|
|
|
|
|
|
|
|
;; Possibly translate the "subject(section)" syntax into the
|
|
|
|
|
;; "section subject" syntax and possibly downcase the section.
|
|
|
|
|
(setq man-args (Man-translate-references man-args))
|
|
|
|
|
|
|
|
|
|
(Man-getpage-in-background man-args))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun man-follow (man-args)
|
|
|
|
|
"Get a Un*x manual page of the item under point and put it in a buffer."
|
|
|
|
|
(interactive (list (Man-default-man-entry)))
|
|
|
|
|
(if (or (not man-args)
|
|
|
|
|
(string= man-args ""))
|
|
|
|
|
(error "No item under point")
|
|
|
|
|
(man man-args)))
|
|
|
|
|
|
|
|
|
|
(defun Man-getpage-in-background (topic)
|
2010-04-12 16:09:47 +00:00
|
|
|
|
"Use TOPIC to build and fire off the manpage and cleaning command.
|
|
|
|
|
Return the buffer in which the manpage will appear."
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(let* ((man-args topic)
|
|
|
|
|
(bufname (concat "*Man " man-args "*"))
|
|
|
|
|
(buffer (get-buffer bufname)))
|
|
|
|
|
(if buffer
|
|
|
|
|
(Man-notify-when-ready buffer)
|
|
|
|
|
(require 'env)
|
|
|
|
|
(message "Invoking %s %s in the background" manual-program man-args)
|
|
|
|
|
(setq buffer (generate-new-buffer bufname))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(with-current-buffer buffer
|
2005-01-29 17:27:13 +00:00
|
|
|
|
(setq buffer-undo-list t)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(setq Man-original-frame (selected-frame))
|
|
|
|
|
(setq Man-arguments man-args))
|
|
|
|
|
(let ((process-environment (copy-sequence process-environment))
|
|
|
|
|
;; The following is so Awk script gets \n intact
|
|
|
|
|
;; But don't prevent decoding of the outside.
|
|
|
|
|
(coding-system-for-write 'raw-text-unix)
|
|
|
|
|
;; We must decode the output by a coding system that the
|
|
|
|
|
;; system's locale suggests in multibyte mode.
|
|
|
|
|
(coding-system-for-read
|
2009-09-03 06:54:57 +00:00
|
|
|
|
(if (default-value 'enable-multibyte-characters)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
locale-coding-system 'raw-text-unix))
|
|
|
|
|
;; Avoid possible error by using a directory that always exists.
|
2003-03-07 21:04:54 +00:00
|
|
|
|
(default-directory
|
|
|
|
|
(if (and (file-directory-p default-directory)
|
|
|
|
|
(not (find-file-name-handler default-directory
|
|
|
|
|
'file-directory-p)))
|
|
|
|
|
default-directory
|
|
|
|
|
"/")))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; Prevent any attempt to use display terminal fanciness.
|
|
|
|
|
(setenv "TERM" "dumb")
|
2002-10-15 17:42:29 +00:00
|
|
|
|
;; In Debian Woody, at least, we get overlong lines under X
|
|
|
|
|
;; unless COLUMNS or MANWIDTH is set. This isn't a problem on
|
|
|
|
|
;; a tty. man(1) says:
|
|
|
|
|
;; MANWIDTH
|
|
|
|
|
;; If $MANWIDTH is set, its value is used as the line
|
|
|
|
|
;; length for which manual pages should be formatted.
|
|
|
|
|
;; If it is not set, manual pages will be formatted
|
|
|
|
|
;; with a line length appropriate to the current ter-
|
|
|
|
|
;; minal (using an ioctl(2) if available, the value of
|
|
|
|
|
;; $COLUMNS, or falling back to 80 characters if nei-
|
|
|
|
|
;; ther is available).
|
2011-12-16 03:14:07 +00:00
|
|
|
|
(when (or window-system
|
|
|
|
|
(not (or (getenv "MANWIDTH") (getenv "COLUMNS"))))
|
2007-11-23 00:32:42 +00:00
|
|
|
|
;; This isn't strictly correct, since we don't know how
|
|
|
|
|
;; the page will actually be displayed, but it seems
|
|
|
|
|
;; reasonable.
|
|
|
|
|
(setenv "COLUMNS" (number-to-string
|
|
|
|
|
(cond
|
|
|
|
|
((and (integerp Man-width) (> Man-width 0))
|
|
|
|
|
Man-width)
|
|
|
|
|
(Man-width (frame-width))
|
|
|
|
|
((window-width))))))
|
2008-10-16 07:18:04 +00:00
|
|
|
|
;; Since man-db 2.4.3-1, man writes plain text with no escape
|
|
|
|
|
;; sequences when stdout is not a tty. In 2.5.0, the following
|
|
|
|
|
;; env-var was added to allow control of this (see Debian Bug#340673).
|
|
|
|
|
(setenv "MAN_KEEP_FORMATTING" "1")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (fboundp 'start-process)
|
|
|
|
|
(set-process-sentinel
|
2004-05-11 09:30:25 +00:00
|
|
|
|
(start-process manual-program buffer
|
2004-06-26 09:46:19 +00:00
|
|
|
|
(if (memq system-type '(cygwin windows-nt))
|
|
|
|
|
shell-file-name
|
|
|
|
|
"sh")
|
2004-06-19 00:50:04 +00:00
|
|
|
|
shell-command-switch
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(format (Man-build-man-command) man-args))
|
|
|
|
|
'Man-bgproc-sentinel)
|
2003-03-09 14:05:25 +00:00
|
|
|
|
(let ((exit-status
|
2004-05-11 09:30:25 +00:00
|
|
|
|
(call-process shell-file-name nil (list buffer nil) nil
|
|
|
|
|
shell-command-switch
|
2003-03-09 14:05:25 +00:00
|
|
|
|
(format (Man-build-man-command) man-args)))
|
|
|
|
|
(msg ""))
|
|
|
|
|
(or (and (numberp exit-status)
|
|
|
|
|
(= exit-status 0))
|
|
|
|
|
(and (numberp exit-status)
|
|
|
|
|
(setq msg
|
|
|
|
|
(format "exited abnormally with code %d"
|
|
|
|
|
exit-status)))
|
|
|
|
|
(setq msg exit-status))
|
2010-04-12 16:09:47 +00:00
|
|
|
|
(Man-bgproc-sentinel bufname msg)))))
|
|
|
|
|
buffer))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-notify-when-ready (man-buffer)
|
|
|
|
|
"Notify the user when MAN-BUFFER is ready.
|
|
|
|
|
See the variable `Man-notify-method' for the different notification behaviors."
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(let ((saved-frame (with-current-buffer man-buffer
|
2001-07-15 16:15:35 +00:00
|
|
|
|
Man-original-frame)))
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(pcase Man-notify-method
|
|
|
|
|
(`newframe
|
|
|
|
|
;; Since we run asynchronously, perhaps while Emacs is waiting
|
|
|
|
|
;; for input, we must not leave a different buffer current. We
|
|
|
|
|
;; can't rely on the editor command loop to reselect the
|
|
|
|
|
;; selected window's buffer.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((frame (make-frame Man-frame-parameters)))
|
|
|
|
|
(set-window-buffer (frame-selected-window frame) man-buffer)
|
|
|
|
|
(set-window-dedicated-p (frame-selected-window frame) t)
|
|
|
|
|
(or (display-multi-frame-p frame)
|
|
|
|
|
(select-frame frame)))))
|
|
|
|
|
(`pushy
|
|
|
|
|
(switch-to-buffer man-buffer))
|
|
|
|
|
(`bully
|
|
|
|
|
(and (frame-live-p saved-frame)
|
|
|
|
|
(select-frame saved-frame))
|
|
|
|
|
(pop-to-buffer man-buffer)
|
|
|
|
|
(delete-other-windows))
|
|
|
|
|
(`aggressive
|
|
|
|
|
(and (frame-live-p saved-frame)
|
|
|
|
|
(select-frame saved-frame))
|
|
|
|
|
(pop-to-buffer man-buffer))
|
|
|
|
|
(`friendly
|
|
|
|
|
(and (frame-live-p saved-frame)
|
|
|
|
|
(select-frame saved-frame))
|
|
|
|
|
(display-buffer man-buffer 'not-this-window))
|
|
|
|
|
(`polite
|
|
|
|
|
(beep)
|
|
|
|
|
(message "Manual buffer %s is ready" (buffer-name man-buffer)))
|
|
|
|
|
(`quiet
|
|
|
|
|
(message "Manual buffer %s is ready" (buffer-name man-buffer)))
|
|
|
|
|
(_ ;; meek
|
|
|
|
|
(message ""))
|
|
|
|
|
)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-softhyphen-to-minus ()
|
2002-10-15 17:42:29 +00:00
|
|
|
|
;; \255 is SOFT HYPHEN in Latin-N. Versions of Debian man, at
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; least, emit it even when not in a Latin-N locale.
|
|
|
|
|
(unless (eq t (compare-strings "latin-" 0 nil
|
|
|
|
|
current-language-environment 0 6 t))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((str "\255"))
|
|
|
|
|
(if enable-multibyte-characters
|
|
|
|
|
(setq str (string-as-multibyte str)))
|
|
|
|
|
(while (search-forward str nil t) (replace-match "-")))))
|
|
|
|
|
|
|
|
|
|
(defun Man-fontify-manpage ()
|
|
|
|
|
"Convert overstriking and underlining to the correct fonts.
|
|
|
|
|
Same for the ANSI bold and normal escape sequences."
|
|
|
|
|
(interactive)
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(message "Please wait: formatting the %s man page..." Man-arguments)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(goto-char (point-min))
|
2004-11-30 22:26:26 +00:00
|
|
|
|
;; Fontify ANSI escapes.
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(let ((ansi-color-apply-face-function
|
|
|
|
|
(lambda (beg end face)
|
|
|
|
|
(when face
|
|
|
|
|
(put-text-property beg end 'face face))))
|
|
|
|
|
(ansi-color-map Man-ansi-color-map))
|
|
|
|
|
(ansi-color-apply-on-region (point-min) (point-max)))
|
2004-11-30 22:26:26 +00:00
|
|
|
|
;; Other highlighting.
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(let ((buffer-undo-list t))
|
|
|
|
|
(if (< (buffer-size) (position-bytes (point-max)))
|
|
|
|
|
;; Multibyte characters exist.
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "__\b\b" nil t)
|
|
|
|
|
(backward-delete-char 4)
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(put-text-property (point) (1+ (point)) 'face 'Man-underline))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "\b\b__" nil t)
|
|
|
|
|
(backward-delete-char 4)
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(put-text-property (1- (point)) (point) 'face 'Man-underline))))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "_\b" nil t)
|
|
|
|
|
(backward-delete-char 2)
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(put-text-property (point) (1+ (point)) 'face 'Man-underline))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "\b_" nil t)
|
|
|
|
|
(backward-delete-char 2)
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(put-text-property (1- (point)) (point) 'face 'Man-underline))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "\\(.\\)\\(\b+\\1\\)+" nil t)
|
|
|
|
|
(replace-match "\\1")
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(put-text-property (1- (point)) (point) 'face 'Man-overstrike))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "o\b\\+\\|\\+\bo" nil t)
|
|
|
|
|
(replace-match "o")
|
|
|
|
|
(put-text-property (1- (point)) (point) 'face 'bold))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "[-|]\\(\b[-|]\\)+" nil t)
|
|
|
|
|
(replace-match "+")
|
|
|
|
|
(put-text-property (1- (point)) (point) 'face 'bold))
|
2010-02-14 00:20:31 +00:00
|
|
|
|
;; When the header is longer than the manpage name, groff tries to
|
2011-11-27 04:43:11 +00:00
|
|
|
|
;; condense it to a shorter line interspersed with ^H. Remove ^H with
|
2012-08-15 03:37:07 +00:00
|
|
|
|
;; their preceding chars (but don't put Man-overstrike). (Bug#5566)
|
2010-02-14 00:20:31 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward ".\b" nil t) (backward-delete-char 2))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Try to recognize common forms of cross references.
|
|
|
|
|
(Man-highlight-references)
|
|
|
|
|
(Man-softhyphen-to-minus)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward Man-heading-regexp nil t)
|
|
|
|
|
(put-text-property (match-beginning 0)
|
|
|
|
|
(match-end 0)
|
2012-08-15 03:37:07 +00:00
|
|
|
|
'face 'Man-overstrike)))
|
2011-07-14 17:43:29 +00:00
|
|
|
|
(message "%s man page formatted" (Man-page-from-arguments Man-arguments)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2005-10-18 04:21:51 +00:00
|
|
|
|
(defun Man-highlight-references (&optional xref-man-type)
|
2003-04-02 21:22:38 +00:00
|
|
|
|
"Highlight the references on mouse-over.
|
2005-08-29 11:00:09 +00:00
|
|
|
|
References include items in the SEE ALSO section,
|
2005-11-19 11:54:08 +00:00
|
|
|
|
header file (#include <foo.h>), and files in FILES.
|
|
|
|
|
If optional argument XREF-MAN-TYPE is non-nil, it used as the
|
|
|
|
|
button type for items in SEE ALSO section. If it is nil, the
|
|
|
|
|
default type, `Man-xref-man-page' is used for the buttons."
|
2005-11-10 04:49:19 +00:00
|
|
|
|
;; `Man-highlight-references' is used from woman.el, too.
|
|
|
|
|
;; woman.el doesn't set `Man-arguments'.
|
|
|
|
|
(unless Man-arguments
|
|
|
|
|
(setq Man-arguments ""))
|
2005-11-06 18:01:34 +00:00
|
|
|
|
(if (string-match "-k " Man-arguments)
|
|
|
|
|
(progn
|
2006-04-04 16:46:03 +00:00
|
|
|
|
(Man-highlight-references0 nil Man-reference-regexp 1
|
|
|
|
|
'Man-default-man-entry
|
2005-11-19 11:54:08 +00:00
|
|
|
|
(or xref-man-type 'Man-xref-man-page))
|
|
|
|
|
(Man-highlight-references0 nil Man-apropos-regexp 1
|
2006-04-04 16:46:03 +00:00
|
|
|
|
'Man-default-man-entry
|
2005-11-19 11:54:08 +00:00
|
|
|
|
(or xref-man-type 'Man-xref-man-page)))
|
2008-12-03 05:48:14 +00:00
|
|
|
|
(Man-highlight-references0 Man-see-also-regexp Man-reference-regexp 1
|
2006-04-04 16:46:03 +00:00
|
|
|
|
'Man-default-man-entry
|
2005-11-19 11:54:08 +00:00
|
|
|
|
(or xref-man-type 'Man-xref-man-page))
|
|
|
|
|
(Man-highlight-references0 Man-synopsis-regexp Man-header-regexp 0 2
|
|
|
|
|
'Man-xref-header-file)
|
|
|
|
|
(Man-highlight-references0 Man-files-regexp Man-normal-file-regexp 0 0
|
|
|
|
|
'Man-xref-normal-file)))
|
2003-04-02 21:22:38 +00:00
|
|
|
|
|
2005-11-06 18:01:34 +00:00
|
|
|
|
(defun Man-highlight-references0 (start-section regexp button-pos target type)
|
2003-04-02 21:22:38 +00:00
|
|
|
|
;; Based on `Man-build-references-alist'
|
2005-11-06 18:01:34 +00:00
|
|
|
|
(when (or (null start-section)
|
|
|
|
|
(Man-find-section start-section))
|
|
|
|
|
(let ((end (if start-section
|
|
|
|
|
(progn
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(Man-next-section 1)
|
|
|
|
|
(point)))
|
|
|
|
|
(goto-char (point-min))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
nil)))
|
2003-04-02 21:22:38 +00:00
|
|
|
|
(while (re-search-forward regexp end t)
|
2011-01-22 03:53:06 +00:00
|
|
|
|
;; An overlay button is preferable because the underlying text
|
|
|
|
|
;; may have text property highlights (Bug#7881).
|
|
|
|
|
(make-button
|
2003-04-02 21:22:38 +00:00
|
|
|
|
(match-beginning button-pos)
|
|
|
|
|
(match-end button-pos)
|
|
|
|
|
'type type
|
2005-11-06 18:01:34 +00:00
|
|
|
|
'Man-target-string (cond
|
2008-12-03 05:48:14 +00:00
|
|
|
|
((numberp target)
|
2005-11-06 18:01:34 +00:00
|
|
|
|
(match-string target))
|
|
|
|
|
((functionp target)
|
2006-04-04 16:46:03 +00:00
|
|
|
|
target)
|
2005-11-06 18:01:34 +00:00
|
|
|
|
(t nil)))))))
|
2003-04-02 21:22:38 +00:00
|
|
|
|
|
2004-10-26 08:27:26 +00:00
|
|
|
|
(defun Man-cleanup-manpage (&optional interactive)
|
|
|
|
|
"Remove overstriking and underlining from the current buffer.
|
|
|
|
|
Normally skip any jobs that should have been done by the sed script,
|
|
|
|
|
but when called interactively, do those jobs even if the sed
|
|
|
|
|
script would have done them."
|
|
|
|
|
(interactive "p")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(message "Please wait: cleaning up the %s man page..."
|
|
|
|
|
Man-arguments)
|
2004-10-26 08:27:26 +00:00
|
|
|
|
(if (or interactive (not Man-sed-script))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "_\b" nil t) (backward-delete-char 2))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "\b_" nil t) (backward-delete-char 2))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "\\(.\\)\\(\b\\1\\)+" nil t)
|
|
|
|
|
(replace-match "\\1"))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "\e\\[[0-9]+m" nil t) (replace-match ""))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "o\b\\+\\|\\+\bo" nil t) (replace-match "o"))
|
|
|
|
|
))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "[-|]\\(\b[-|]\\)+" nil t) (replace-match "+"))
|
2010-02-14 00:20:31 +00:00
|
|
|
|
;; When the header is longer than the manpage name, groff tries to
|
2011-11-27 04:43:11 +00:00
|
|
|
|
;; condense it to a shorter line interspersed with ^H. Remove ^H with
|
2012-08-15 03:37:07 +00:00
|
|
|
|
;; their preceding chars (but don't put Man-overstrike). (Bug#5566)
|
2010-02-14 00:20:31 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward ".\b" nil t) (backward-delete-char 2))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(Man-softhyphen-to-minus)
|
|
|
|
|
(message "%s man page cleaned up" Man-arguments))
|
|
|
|
|
|
|
|
|
|
(defun Man-bgproc-sentinel (process msg)
|
|
|
|
|
"Manpage background process sentinel.
|
|
|
|
|
When manpage command is run asynchronously, PROCESS is the process
|
|
|
|
|
object for the manpage command; when manpage command is run
|
|
|
|
|
synchronously, PROCESS is the name of the buffer where the manpage
|
|
|
|
|
command is run. Second argument MSG is the exit message of the
|
|
|
|
|
manpage command."
|
|
|
|
|
(let ((Man-buffer (if (stringp process) (get-buffer process)
|
|
|
|
|
(process-buffer process)))
|
|
|
|
|
(delete-buff nil)
|
|
|
|
|
(err-mess nil))
|
|
|
|
|
|
|
|
|
|
(if (null (buffer-name Man-buffer)) ;; deleted buffer
|
|
|
|
|
(or (stringp process)
|
|
|
|
|
(set-process-buffer process nil))
|
|
|
|
|
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(with-current-buffer Man-buffer
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(cond ((or (looking-at "No \\(manual \\)*entry for")
|
|
|
|
|
(looking-at "[^\n]*: nothing appropriate$"))
|
|
|
|
|
(setq err-mess (buffer-substring (point)
|
|
|
|
|
(progn
|
|
|
|
|
(end-of-line) (point)))
|
|
|
|
|
delete-buff t))
|
2009-12-26 22:00:47 +00:00
|
|
|
|
|
|
|
|
|
;; "-k foo", successful exit, but no output (from man-db)
|
|
|
|
|
;; ENHANCE-ME: share the check for -k with
|
|
|
|
|
;; `Man-highlight-references'. The \\s- bits here are
|
|
|
|
|
;; meant to allow for multiple options with -k among them.
|
|
|
|
|
((and (string-match "\\(\\`\\|\\s-\\)-k\\s-" Man-arguments)
|
|
|
|
|
(eq (process-status process) 'exit)
|
|
|
|
|
(= (process-exit-status process) 0)
|
|
|
|
|
(= (point-min) (point-max)))
|
|
|
|
|
(setq err-mess (format "%s: no matches" Man-arguments)
|
|
|
|
|
delete-buff t))
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
((or (stringp process)
|
|
|
|
|
(not (and (eq (process-status process) 'exit)
|
|
|
|
|
(= (process-exit-status process) 0))))
|
|
|
|
|
(or (zerop (length msg))
|
|
|
|
|
(progn
|
|
|
|
|
(setq err-mess
|
|
|
|
|
(concat (buffer-name Man-buffer)
|
|
|
|
|
": process "
|
|
|
|
|
(let ((eos (1- (length msg))))
|
|
|
|
|
(if (= (aref msg eos) ?\n)
|
|
|
|
|
(substring msg 0 eos) msg))))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert (format "\nprocess %s" msg))))
|
|
|
|
|
))
|
|
|
|
|
(if delete-buff
|
|
|
|
|
(kill-buffer Man-buffer)
|
|
|
|
|
(if Man-fontify-manpage-flag
|
|
|
|
|
(Man-fontify-manpage)
|
|
|
|
|
(Man-cleanup-manpage))
|
2005-07-23 22:51:58 +00:00
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(run-hooks 'Man-cooked-hook)
|
2005-07-23 22:51:58 +00:00
|
|
|
|
(Man-mode)
|
|
|
|
|
|
|
|
|
|
(if (not Man-page-list)
|
2011-07-14 17:39:00 +00:00
|
|
|
|
(let ((args Man-arguments))
|
2005-07-23 22:51:58 +00:00
|
|
|
|
(kill-buffer (current-buffer))
|
Add new error and function `user-error'.
* lisp/subr.el (user-error): New function.
* lisp/window.el (switch-to-buffer):
* lisp/vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
(smerge-match-conflict):
* lisp/simple.el (previous-matching-history-element)
(next-matching-history-element, goto-history-element, undo-more)
(undo-start):
* lisp/progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
(find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
(next-file, tags-loop-scan, list-tags, complete-tag):
* lisp/progmodes/compile.el (compilation-loop):
* lisp/mouse.el (mouse-minibuffer-check):
* lisp/man.el (Man-bgproc-sentinel, Man-goto-page):
* lisp/info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
(Info-history-forward, Info-follow-reference, Info-menu)
(Info-extract-menu-item, Info-extract-menu-counting)
(Info-forward-node, Info-backward-node, Info-next-menu-item)
(Info-last-menu-item, Info-next-preorder, Info-last-preorder)
(Info-next-reference, Info-prev-reference, Info-index)
(Info-index-next, Info-follow-nearest-node)
(Info-copy-current-node-name):
* lisp/imenu.el (imenu--make-index-alist)
(imenu-default-create-index-function, imenu-add-to-menubar):
* lisp/files.el (basic-save-buffer, recover-file):
* lisp/emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
* lisp/emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
(checkdoc-message-text, checkdoc-defun):
* lisp/dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
* lisp/cus-edit.el (customize-changed-options, customize-rogue)
(customize-saved, custom-variable-set, custom-variable-mark-to-save)
(custom-variable-mark-to-reset-standard)
(custom-variable-reset-backup, custom-face-mark-to-reset-standard)
(custom-file):
* lisp/completion.el (check-completion-length):
* lisp/comint.el (comint-search-arg)
(comint-previous-matching-input-string-position)
(comint-previous-matching-input)
(comint-replace-by-expanded-history-before-point, comint-send-input)
(comint-copy-old-input, comint-backward-matching-input)
(comint-goto-process-mark, comint-set-process-mark):
* lisp/calendar/calendar.el (calendar-cursor-to-date): Use it.
* lisp/bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
* src/data.c (PUT_ERROR): New macro.
(syms_of_data): Use it. Add new error type `user-error'.
* src/undo.c (user_error): New function.
(Fprimitive_undo): Use it.
* src/print.c (print_error_message): Adjust print style for `user-error'.
* src/keyboard.c (user_error): New function.
(Fexit_recursive_edit, Fabort_recursive_edit): Use it.
2012-05-04 23:16:47 +00:00
|
|
|
|
(user-error "Can't find the %s manpage"
|
|
|
|
|
(Man-page-from-arguments args)))
|
2011-07-14 17:39:00 +00:00
|
|
|
|
(set-buffer-modified-p nil))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; Restore case-fold-search before calling
|
|
|
|
|
;; Man-notify-when-ready because it may switch buffers.
|
|
|
|
|
|
|
|
|
|
(if (not delete-buff)
|
|
|
|
|
(Man-notify-when-ready Man-buffer))
|
|
|
|
|
|
|
|
|
|
(if err-mess
|
2007-12-06 17:56:42 +00:00
|
|
|
|
(error "%s" err-mess))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
))))
|
|
|
|
|
|
2011-07-14 17:43:29 +00:00
|
|
|
|
(defun Man-page-from-arguments (args)
|
|
|
|
|
;; Skip arguments and only print the page name.
|
|
|
|
|
(mapconcat
|
|
|
|
|
'identity
|
|
|
|
|
(delete nil
|
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (elem)
|
|
|
|
|
(and (not (string-match "^-" elem))
|
|
|
|
|
elem))
|
|
|
|
|
(split-string args " ")))
|
|
|
|
|
" "))
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; ======================================================================
|
|
|
|
|
;; set up manual mode in buffer and build alists
|
|
|
|
|
|
2010-04-12 16:09:47 +00:00
|
|
|
|
(defvar bookmark-make-record-function)
|
|
|
|
|
|
2005-06-12 10:11:00 +00:00
|
|
|
|
(put 'Man-mode 'mode-class 'special)
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(defun Man-mode ()
|
|
|
|
|
"A mode for browsing Un*x manual pages.
|
|
|
|
|
|
|
|
|
|
The following man commands are available in the buffer. Try
|
|
|
|
|
\"\\[describe-key] <key> RET\" for more information:
|
|
|
|
|
|
|
|
|
|
\\[man] Prompt to retrieve a new manpage.
|
|
|
|
|
\\[Man-follow-manual-reference] Retrieve reference in SEE ALSO section.
|
|
|
|
|
\\[Man-next-manpage] Jump to next manpage in circular list.
|
|
|
|
|
\\[Man-previous-manpage] Jump to previous manpage in circular list.
|
|
|
|
|
\\[Man-next-section] Jump to next manpage section.
|
|
|
|
|
\\[Man-previous-section] Jump to previous manpage section.
|
|
|
|
|
\\[Man-goto-section] Go to a manpage section.
|
|
|
|
|
\\[Man-goto-see-also-section] Jumps to the SEE ALSO manpage section.
|
|
|
|
|
\\[Man-quit] Deletes the manpage window, bury its buffer.
|
|
|
|
|
\\[Man-kill] Deletes the manpage window, kill its buffer.
|
|
|
|
|
\\[describe-mode] Prints this help text.
|
|
|
|
|
|
|
|
|
|
The following variables may be of some use. Try
|
|
|
|
|
\"\\[describe-variable] <variable-name> RET\" for more information:
|
|
|
|
|
|
|
|
|
|
`Man-notify-method' What happens when manpage formatting is done.
|
|
|
|
|
`Man-downcase-section-letters-flag' Force section letters to lower case.
|
|
|
|
|
`Man-circular-pages-flag' Treat multiple manpage list as circular.
|
|
|
|
|
`Man-section-translations-alist' List of section numbers and their Un*x equiv.
|
|
|
|
|
`Man-filter-list' Background manpage filter command.
|
|
|
|
|
`Man-mode-map' Keymap bindings for Man mode buffers.
|
|
|
|
|
`Man-mode-hook' Normal hook run on entry to Man mode.
|
|
|
|
|
`Man-section-regexp' Regexp describing manpage section letters.
|
|
|
|
|
`Man-heading-regexp' Regexp describing section headers.
|
|
|
|
|
`Man-see-also-regexp' Regexp for SEE ALSO section (or your equiv).
|
|
|
|
|
`Man-first-heading-regexp' Regexp for first heading on a manpage.
|
|
|
|
|
`Man-reference-regexp' Regexp matching a references in SEE ALSO.
|
|
|
|
|
`Man-switches' Background `man' command switches.
|
|
|
|
|
|
|
|
|
|
The following key bindings are currently in effect in the buffer:
|
|
|
|
|
\\{Man-mode-map}"
|
|
|
|
|
(interactive)
|
2005-05-26 13:07:46 +00:00
|
|
|
|
(kill-all-local-variables)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(setq major-mode 'Man-mode
|
|
|
|
|
mode-name "Man"
|
|
|
|
|
buffer-auto-save-file-name nil
|
2001-08-27 12:55:22 +00:00
|
|
|
|
mode-line-buffer-identification
|
|
|
|
|
(list (default-value 'mode-line-buffer-identification)
|
|
|
|
|
" {" 'Man-page-mode-string "}")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
truncate-lines t
|
|
|
|
|
buffer-read-only t)
|
2005-05-26 13:07:46 +00:00
|
|
|
|
(buffer-disable-undo)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(auto-fill-mode -1)
|
|
|
|
|
(use-local-map Man-mode-map)
|
|
|
|
|
(set-syntax-table man-mode-syntax-table)
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(setq imenu-generic-expression (list (list nil Man-heading-regexp 0)))
|
|
|
|
|
(set (make-local-variable 'outline-regexp) Man-heading-regexp)
|
|
|
|
|
(set (make-local-variable 'outline-level) (lambda () 1))
|
2010-04-12 15:17:29 +00:00
|
|
|
|
(set (make-local-variable 'bookmark-make-record-function)
|
2010-04-12 16:09:47 +00:00
|
|
|
|
'Man-bookmark-make-record)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(Man-build-page-list)
|
|
|
|
|
(Man-strip-page-headers)
|
|
|
|
|
(Man-unindent)
|
2005-07-23 22:51:58 +00:00
|
|
|
|
(Man-goto-page 1 t)
|
2005-05-26 13:07:46 +00:00
|
|
|
|
(run-mode-hooks 'Man-mode-hook))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defsubst Man-build-section-alist ()
|
2012-04-28 21:59:08 +00:00
|
|
|
|
"Build the list of manpage sections."
|
|
|
|
|
(setq Man--sections nil)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(while (re-search-forward Man-heading-regexp (point-max) t)
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(let ((section (match-string 1)))
|
|
|
|
|
(unless (member section Man--sections)
|
|
|
|
|
(push section Man--sections)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(forward-line 1))))
|
|
|
|
|
|
|
|
|
|
(defsubst Man-build-references-alist ()
|
2012-04-28 21:59:08 +00:00
|
|
|
|
"Build the list of references (in the SEE ALSO section)."
|
|
|
|
|
(setq Man--refpages nil)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(if (Man-find-section Man-see-also-regexp)
|
|
|
|
|
(let ((start (progn (forward-line 1) (point)))
|
|
|
|
|
(end (progn
|
|
|
|
|
(Man-next-section 1)
|
|
|
|
|
(point)))
|
|
|
|
|
hyphenated
|
|
|
|
|
(runningpoint -1))
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region start end)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(while (and (not (eobp)) (/= (point) runningpoint))
|
|
|
|
|
(setq runningpoint (point))
|
|
|
|
|
(if (re-search-forward Man-hyphenated-reference-regexp end t)
|
2001-11-30 09:13:21 +00:00
|
|
|
|
(let* ((word (match-string 0))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(len (1- (length word))))
|
|
|
|
|
(if hyphenated
|
|
|
|
|
(setq word (concat hyphenated word)
|
|
|
|
|
hyphenated nil
|
|
|
|
|
;; Update len, in case a reference spans
|
|
|
|
|
;; more than two lines (paranoia).
|
|
|
|
|
len (1- (length word))))
|
2013-01-10 15:01:35 +00:00
|
|
|
|
(if (memq (aref word len) '(?- ?))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(setq hyphenated (substring word 0 len)))
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(and (string-match Man-reference-regexp word)
|
|
|
|
|
(not (member word Man--refpages))
|
|
|
|
|
(push word Man--refpages))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(skip-chars-forward " \t\n,"))))))
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(setq Man--refpages (nreverse Man--refpages)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-build-page-list ()
|
|
|
|
|
"Build the list of separate manpages in the buffer."
|
|
|
|
|
(setq Man-page-list nil)
|
|
|
|
|
(let ((page-start (point-min))
|
|
|
|
|
(page-end (point-max))
|
|
|
|
|
(header ""))
|
|
|
|
|
(goto-char page-start)
|
|
|
|
|
;; (switch-to-buffer (current-buffer))(debug)
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(setq header
|
|
|
|
|
(if (looking-at Man-page-header-regexp)
|
2001-11-30 09:13:21 +00:00
|
|
|
|
(match-string 1)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
nil))
|
|
|
|
|
;; Go past both the current and the next Man-first-heading-regexp
|
|
|
|
|
(if (re-search-forward Man-first-heading-regexp nil 'move 2)
|
|
|
|
|
(let ((p (progn (beginning-of-line) (point))))
|
|
|
|
|
;; We assume that the page header is delimited by blank
|
|
|
|
|
;; lines and that it contains at most one blank line. So
|
|
|
|
|
;; if we back by three blank lines we will be sure to be
|
|
|
|
|
;; before the page header but not before the possible
|
|
|
|
|
;; previous page header.
|
|
|
|
|
(search-backward "\n\n" nil t 3)
|
|
|
|
|
(if (re-search-forward Man-page-header-regexp p 'move)
|
|
|
|
|
(beginning-of-line))))
|
|
|
|
|
(setq page-end (point))
|
|
|
|
|
(setq Man-page-list (append Man-page-list
|
|
|
|
|
(list (list (copy-marker page-start)
|
|
|
|
|
(copy-marker page-end)
|
|
|
|
|
header))))
|
|
|
|
|
(setq page-start page-end)
|
|
|
|
|
)))
|
|
|
|
|
|
|
|
|
|
(defun Man-strip-page-headers ()
|
|
|
|
|
"Strip all the page headers but the first from the manpage."
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(case-fold-search nil)
|
|
|
|
|
(header ""))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(dolist (page Man-page-list)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(and (nth 2 page)
|
|
|
|
|
(goto-char (car page))
|
|
|
|
|
(re-search-forward Man-first-heading-regexp nil t)
|
|
|
|
|
(setq header (buffer-substring (car page) (match-beginning 0)))
|
|
|
|
|
;; Since the awk script collapses all successive blank
|
|
|
|
|
;; lines into one, and since we don't want to get rid of
|
|
|
|
|
;; the fast awk script, one must choose between adding
|
|
|
|
|
;; spare blank lines between pages when there were none and
|
|
|
|
|
;; deleting blank lines at page boundaries when there were
|
|
|
|
|
;; some. We choose the first, so we comment the following
|
|
|
|
|
;; line.
|
|
|
|
|
;; (setq header (concat "\n" header)))
|
|
|
|
|
(while (search-forward header (nth 1 page) t)
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(replace-match ""))))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-unindent ()
|
|
|
|
|
"Delete the leading spaces that indent the manpage."
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(case-fold-search nil))
|
|
|
|
|
(dolist (page Man-page-list)
|
|
|
|
|
(let ((indent "")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(nindent 0))
|
|
|
|
|
(narrow-to-region (car page) (car (cdr page)))
|
|
|
|
|
(if Man-uses-untabify-flag
|
2012-05-06 04:19:11 +00:00
|
|
|
|
;; The space characters inserted by `untabify' inherit
|
|
|
|
|
;; sticky text properties, which is unnecessary and looks
|
|
|
|
|
;; ugly with underlining (Bug#11408).
|
|
|
|
|
(let ((text-property-default-nonsticky
|
|
|
|
|
(cons '(face . t) text-property-default-nonsticky)))
|
|
|
|
|
(untabify (point-min) (point-max))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (catch 'unindent
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (not (re-search-forward Man-first-heading-regexp nil t))
|
|
|
|
|
(throw 'unindent nil))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq indent (buffer-substring (point)
|
|
|
|
|
(progn
|
|
|
|
|
(skip-chars-forward " ")
|
|
|
|
|
(point))))
|
|
|
|
|
(setq nindent (length indent))
|
|
|
|
|
(if (zerop nindent)
|
|
|
|
|
(throw 'unindent nil))
|
|
|
|
|
(setq indent (concat indent "\\|$"))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(if (looking-at indent)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(throw 'unindent nil)))
|
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(or (eolp)
|
|
|
|
|
(delete-char nindent))
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; ======================================================================
|
|
|
|
|
;; Man mode commands
|
|
|
|
|
|
|
|
|
|
(defun Man-next-section (n)
|
|
|
|
|
"Move point to Nth next section (default 1)."
|
|
|
|
|
(interactive "p")
|
2007-08-08 19:44:55 +00:00
|
|
|
|
(let ((case-fold-search nil)
|
|
|
|
|
(start (point)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (looking-at Man-heading-regexp)
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(if (re-search-forward Man-heading-regexp (point-max) t n)
|
|
|
|
|
(beginning-of-line)
|
2007-06-04 23:42:10 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
;; The last line doesn't belong to any section.
|
2007-08-08 19:44:55 +00:00
|
|
|
|
(forward-line -1))
|
|
|
|
|
;; But don't move back from the starting point (can happen if `start'
|
|
|
|
|
;; is somewhere on the last line).
|
|
|
|
|
(if (< (point) start) (goto-char start))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-previous-section (n)
|
|
|
|
|
"Move point to Nth previous section (default 1)."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(if (looking-at Man-heading-regexp)
|
|
|
|
|
(forward-line -1))
|
|
|
|
|
(if (re-search-backward Man-heading-regexp (point-min) t n)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(goto-char (point-min)))))
|
|
|
|
|
|
|
|
|
|
(defun Man-find-section (section)
|
|
|
|
|
"Move point to SECTION if it exists, otherwise don't move point.
|
|
|
|
|
Returns t if section is found, nil otherwise."
|
|
|
|
|
(let ((curpos (point))
|
|
|
|
|
(case-fold-search nil))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (re-search-forward (concat "^" section) (point-max) t)
|
|
|
|
|
(progn (beginning-of-line) t)
|
|
|
|
|
(goto-char curpos)
|
|
|
|
|
nil)
|
|
|
|
|
))
|
|
|
|
|
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(defvar Man--last-section nil)
|
|
|
|
|
|
|
|
|
|
(defun Man-goto-section (section)
|
|
|
|
|
"Move point to SECTION."
|
|
|
|
|
(interactive
|
|
|
|
|
(let* ((default (if (member Man--last-section Man--sections)
|
|
|
|
|
Man--last-section
|
|
|
|
|
(car Man--sections)))
|
|
|
|
|
(completion-ignore-case t)
|
|
|
|
|
(prompt (concat "Go to section (default " default "): "))
|
|
|
|
|
(chosen (completing-read prompt Man--sections
|
|
|
|
|
nil nil nil nil default)))
|
|
|
|
|
(list chosen)))
|
|
|
|
|
(setq Man--last-section section)
|
|
|
|
|
(unless (Man-find-section section)
|
|
|
|
|
(error "Section %s not found" section)))
|
2010-01-09 23:53:06 +00:00
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-goto-see-also-section ()
|
2002-01-13 10:09:20 +00:00
|
|
|
|
"Move point to the \"SEE ALSO\" section.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
Actually the section moved to is described by `Man-see-also-regexp'."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (not (Man-find-section Man-see-also-regexp))
|
2007-12-06 17:56:42 +00:00
|
|
|
|
(error "%s" (concat "No " Man-see-also-regexp
|
2001-07-15 16:15:35 +00:00
|
|
|
|
" section found in the current manpage"))))
|
|
|
|
|
|
|
|
|
|
(defun Man-possibly-hyphenated-word ()
|
|
|
|
|
"Return a possibly hyphenated word at point.
|
|
|
|
|
If the word starts at the first non-whitespace column, and the
|
|
|
|
|
previous line ends with a hyphen, return the last word on the previous
|
|
|
|
|
line instead. Thus, if a reference to \"tcgetpgrp(3V)\" is hyphenated
|
|
|
|
|
as \"tcgetp-grp(3V)\", and point is at \"grp(3V)\", we return
|
|
|
|
|
\"tcgetp-\" instead of \"grp\"."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(skip-syntax-backward "w()")
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(let ((beg (point))
|
|
|
|
|
(word (current-word)))
|
|
|
|
|
(when (eq beg (save-excursion
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(point)))
|
|
|
|
|
(end-of-line 0)
|
|
|
|
|
(if (eq (char-before) ?-)
|
|
|
|
|
(setq word (current-word))))
|
|
|
|
|
word)))
|
|
|
|
|
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(defvar Man--last-refpage nil)
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(defun Man-follow-manual-reference (reference)
|
|
|
|
|
"Get one of the manpages referred to in the \"SEE ALSO\" section.
|
|
|
|
|
Specify which REFERENCE to use; default is based on word at point."
|
|
|
|
|
(interactive
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(if (not Man--refpages)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(error "There are no references in the current man page")
|
2007-12-23 17:35:52 +00:00
|
|
|
|
(list
|
|
|
|
|
(let* ((default (or
|
|
|
|
|
(car (all-completions
|
|
|
|
|
(let ((word
|
|
|
|
|
(or (Man-possibly-hyphenated-word)
|
|
|
|
|
"")))
|
|
|
|
|
;; strip a trailing '-':
|
|
|
|
|
(if (string-match "-$" word)
|
|
|
|
|
(substring word 0
|
|
|
|
|
(match-beginning 0))
|
|
|
|
|
word))
|
2012-04-28 21:59:08 +00:00
|
|
|
|
Man--refpages))
|
|
|
|
|
(if (member Man--last-refpage Man--refpages)
|
|
|
|
|
Man--last-refpage
|
|
|
|
|
(car Man--refpages))))
|
2007-12-23 17:35:52 +00:00
|
|
|
|
(defaults
|
|
|
|
|
(mapcar 'substring-no-properties
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(cons default Man--refpages)))
|
|
|
|
|
(prompt (concat "Refer to (default " default "): "))
|
|
|
|
|
(chosen (completing-read prompt Man--refpages
|
|
|
|
|
nil nil nil nil defaults)))
|
|
|
|
|
chosen))))
|
|
|
|
|
(if (not Man--refpages)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(error "Can't find any references in the current manpage")
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(setq Man--last-refpage reference)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(Man-getpage-in-background
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(Man-translate-references reference))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-kill ()
|
|
|
|
|
"Kill the buffer containing the manpage."
|
|
|
|
|
(interactive)
|
|
|
|
|
(quit-window t))
|
|
|
|
|
|
|
|
|
|
(defun Man-quit ()
|
|
|
|
|
"Bury the buffer containing the manpage."
|
|
|
|
|
(interactive)
|
|
|
|
|
(quit-window))
|
|
|
|
|
|
2005-07-24 01:03:25 +00:00
|
|
|
|
(defun Man-goto-page (page &optional noerror)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"Go to the manual page on page PAGE."
|
|
|
|
|
(interactive
|
|
|
|
|
(if (not Man-page-list)
|
2005-07-23 22:51:58 +00:00
|
|
|
|
(error "Not a man page buffer")
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(if (= (length Man-page-list) 1)
|
|
|
|
|
(error "You're looking at the only manpage in the buffer")
|
|
|
|
|
(list (read-minibuffer (format "Go to manpage [1-%d]: "
|
|
|
|
|
(length Man-page-list)))))))
|
2005-07-23 22:51:58 +00:00
|
|
|
|
(if (and (not Man-page-list) (not noerror))
|
|
|
|
|
(error "Not a man page buffer"))
|
|
|
|
|
(when Man-page-list
|
|
|
|
|
(if (or (< page 1)
|
|
|
|
|
(> page (length Man-page-list)))
|
Add new error and function `user-error'.
* lisp/subr.el (user-error): New function.
* lisp/window.el (switch-to-buffer):
* lisp/vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
(smerge-match-conflict):
* lisp/simple.el (previous-matching-history-element)
(next-matching-history-element, goto-history-element, undo-more)
(undo-start):
* lisp/progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
(find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
(next-file, tags-loop-scan, list-tags, complete-tag):
* lisp/progmodes/compile.el (compilation-loop):
* lisp/mouse.el (mouse-minibuffer-check):
* lisp/man.el (Man-bgproc-sentinel, Man-goto-page):
* lisp/info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
(Info-history-forward, Info-follow-reference, Info-menu)
(Info-extract-menu-item, Info-extract-menu-counting)
(Info-forward-node, Info-backward-node, Info-next-menu-item)
(Info-last-menu-item, Info-next-preorder, Info-last-preorder)
(Info-next-reference, Info-prev-reference, Info-index)
(Info-index-next, Info-follow-nearest-node)
(Info-copy-current-node-name):
* lisp/imenu.el (imenu--make-index-alist)
(imenu-default-create-index-function, imenu-add-to-menubar):
* lisp/files.el (basic-save-buffer, recover-file):
* lisp/emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
* lisp/emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
(checkdoc-message-text, checkdoc-defun):
* lisp/dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
* lisp/cus-edit.el (customize-changed-options, customize-rogue)
(customize-saved, custom-variable-set, custom-variable-mark-to-save)
(custom-variable-mark-to-reset-standard)
(custom-variable-reset-backup, custom-face-mark-to-reset-standard)
(custom-file):
* lisp/completion.el (check-completion-length):
* lisp/comint.el (comint-search-arg)
(comint-previous-matching-input-string-position)
(comint-previous-matching-input)
(comint-replace-by-expanded-history-before-point, comint-send-input)
(comint-copy-old-input, comint-backward-matching-input)
(comint-goto-process-mark, comint-set-process-mark):
* lisp/calendar/calendar.el (calendar-cursor-to-date): Use it.
* lisp/bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
* src/data.c (PUT_ERROR): New macro.
(syms_of_data): Use it. Add new error type `user-error'.
* src/undo.c (user_error): New function.
(Fprimitive_undo): Use it.
* src/print.c (print_error_message): Adjust print style for `user-error'.
* src/keyboard.c (user_error): New function.
(Fexit_recursive_edit, Fabort_recursive_edit): Use it.
2012-05-04 23:16:47 +00:00
|
|
|
|
(user-error "No manpage %d found" page))
|
2005-07-23 22:51:58 +00:00
|
|
|
|
(let* ((page-range (nth (1- page) Man-page-list))
|
|
|
|
|
(page-start (car page-range))
|
|
|
|
|
(page-end (car (cdr page-range))))
|
|
|
|
|
(setq Man-current-page page
|
|
|
|
|
Man-page-mode-string (Man-make-page-mode-string))
|
|
|
|
|
(widen)
|
|
|
|
|
(goto-char page-start)
|
|
|
|
|
(narrow-to-region page-start page-end)
|
|
|
|
|
(Man-build-section-alist)
|
|
|
|
|
(Man-build-references-alist)
|
|
|
|
|
(goto-char (point-min)))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun Man-next-manpage ()
|
|
|
|
|
"Find the next manpage entry in the buffer."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (= (length Man-page-list) 1)
|
|
|
|
|
(error "This is the only manpage in the buffer"))
|
|
|
|
|
(if (< Man-current-page (length Man-page-list))
|
|
|
|
|
(Man-goto-page (1+ Man-current-page))
|
|
|
|
|
(if Man-circular-pages-flag
|
|
|
|
|
(Man-goto-page 1)
|
|
|
|
|
(error "You're looking at the last manpage in the buffer"))))
|
|
|
|
|
|
|
|
|
|
(defun Man-previous-manpage ()
|
|
|
|
|
"Find the previous manpage entry in the buffer."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (= (length Man-page-list) 1)
|
|
|
|
|
(error "This is the only manpage in the buffer"))
|
|
|
|
|
(if (> Man-current-page 1)
|
|
|
|
|
(Man-goto-page (1- Man-current-page))
|
|
|
|
|
(if Man-circular-pages-flag
|
|
|
|
|
(Man-goto-page (length Man-page-list))
|
|
|
|
|
(error "You're looking at the first manpage in the buffer"))))
|
2003-04-02 21:22:38 +00:00
|
|
|
|
|
|
|
|
|
;; Header file support
|
|
|
|
|
(defun Man-view-header-file (file)
|
|
|
|
|
"View a header file specified by FILE from `Man-header-file-path'."
|
|
|
|
|
(let ((path Man-header-file-path)
|
|
|
|
|
complete-path)
|
|
|
|
|
(while path
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(setq complete-path (expand-file-name file (car path))
|
2003-04-02 21:22:38 +00:00
|
|
|
|
path (cdr path))
|
|
|
|
|
(if (file-readable-p complete-path)
|
|
|
|
|
(progn (view-file complete-path)
|
|
|
|
|
(setq path nil))
|
|
|
|
|
(setq complete-path nil)))
|
|
|
|
|
complete-path))
|
2010-04-12 15:17:29 +00:00
|
|
|
|
|
|
|
|
|
;;; Bookmark Man Support
|
2010-07-14 15:57:54 +00:00
|
|
|
|
(declare-function bookmark-make-record-default
|
|
|
|
|
"bookmark" (&optional no-file no-context posn))
|
2010-04-12 16:09:47 +00:00
|
|
|
|
(declare-function bookmark-prop-get "bookmark" (bookmark prop))
|
|
|
|
|
(declare-function bookmark-default-handler "bookmark" (bmk))
|
|
|
|
|
(declare-function bookmark-get-bookmark-record "bookmark" (bmk))
|
|
|
|
|
|
|
|
|
|
(defun Man-default-bookmark-title ()
|
|
|
|
|
"Default bookmark name for Man or WoMan pages.
|
|
|
|
|
Uses `Man-name-local-regexp'."
|
2010-04-12 15:17:29 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2010-04-12 16:09:47 +00:00
|
|
|
|
(when (re-search-forward Man-name-local-regexp nil t)
|
|
|
|
|
(skip-chars-forward "\n\t ")
|
2010-04-12 15:17:29 +00:00
|
|
|
|
(buffer-substring-no-properties (point) (line-end-position)))))
|
|
|
|
|
|
2010-04-12 16:09:47 +00:00
|
|
|
|
(defun Man-bookmark-make-record ()
|
2010-04-12 15:17:29 +00:00
|
|
|
|
"Make a bookmark entry for a Man buffer."
|
2010-04-12 16:09:47 +00:00
|
|
|
|
`(,(Man-default-bookmark-title)
|
2010-07-14 15:57:54 +00:00
|
|
|
|
,@(bookmark-make-record-default 'no-file)
|
2010-04-14 15:07:53 +00:00
|
|
|
|
(location . ,(concat "man " Man-arguments))
|
|
|
|
|
(man-args . ,Man-arguments)
|
|
|
|
|
(handler . Man-bookmark-jump)))
|
2010-04-12 15:17:29 +00:00
|
|
|
|
|
2010-04-12 16:09:47 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun Man-bookmark-jump (bookmark)
|
2010-04-12 15:17:29 +00:00
|
|
|
|
"Default bookmark handler for Man buffers."
|
2010-04-12 16:09:47 +00:00
|
|
|
|
(let* ((man-args (bookmark-prop-get bookmark 'man-args))
|
|
|
|
|
;; Let bookmark.el do the window handling.
|
|
|
|
|
;; This let-binding needs to be active during the call to both
|
|
|
|
|
;; Man-getpage-in-background and accept-process-output.
|
|
|
|
|
(Man-notify-method 'meek)
|
|
|
|
|
(buf (Man-getpage-in-background man-args))
|
|
|
|
|
(proc (get-buffer-process buf)))
|
|
|
|
|
(while (and proc (eq (process-status proc) 'run))
|
|
|
|
|
(accept-process-output proc))
|
2010-04-12 15:17:29 +00:00
|
|
|
|
(bookmark-default-handler
|
|
|
|
|
`("" (buffer . ,buf) . ,(bookmark-get-bookmark-record bookmark)))))
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; Init the man package variables, if not already done.
|
|
|
|
|
(Man-init-defvars)
|
|
|
|
|
|
|
|
|
|
(provide 'man)
|
|
|
|
|
|
|
|
|
|
;;; man.el ends here
|