2016-09-28 17:08:12 +00:00
|
|
|
|
;;; man.el --- browse UNIX manual pages -*- lexical-binding: t -*-
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2019-01-01 00:59:58 +00:00
|
|
|
|
;; Copyright (C) 1993-1994, 1996-1997, 2001-2019 Free Software
|
2015-01-01 22:26:41 +00:00
|
|
|
|
;; Foundation, Inc.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Barry A. Warsaw <bwarsaw@cen.com>
|
2019-05-25 20:43:06 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; 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
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://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.
|
|
|
|
|
|
2013-10-13 00:31:19 +00:00
|
|
|
|
;; Francesco Potortì <pot@cnuce.cnr.it> cleaned it up thoroughly,
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; 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
|
2016-01-24 20:30:39 +00:00
|
|
|
|
;; not allow one to understand if there was indeed a blank line at the
|
2001-07-15 16:15:35 +00:00
|
|
|
|
;; 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)
|
2013-10-27 02:02:02 +00:00
|
|
|
|
(require 'cl-lib)
|
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:
|
|
|
|
|
|
2015-09-03 22:31:12 +00:00
|
|
|
|
((command-string phrase-string*)*)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
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.
|
2014-07-01 23:54:59 +00:00
|
|
|
|
If nil, use the width of the window where the manpage is displayed.
|
|
|
|
|
If non-nil, use the width of the frame where the manpage is displayed.
|
|
|
|
|
The value also can be a positive integer for a fixed width."
|
2004-03-23 07:33:39 +00:00
|
|
|
|
:type '(choice (const :tag "Window width" nil)
|
|
|
|
|
(const :tag "Frame width" t)
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(integer :tag "Fixed width" :value 65))
|
2004-03-23 07:33:39 +00:00
|
|
|
|
: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."
|
2016-01-30 19:48:18 +00:00
|
|
|
|
:type '(repeat (cons :format "%v"
|
|
|
|
|
(symbol :tag "Parameter")
|
|
|
|
|
(sexp :tag "Value")))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
: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
|
|
|
|
|
2017-12-31 16:20:12 +00:00
|
|
|
|
;; This is for people who have UTF-8 encoded man pages in non-UTF-8
|
|
|
|
|
;; locales, or who use Cygwin 'man' command from a native MS-Windows
|
|
|
|
|
;; build of Emacs.
|
|
|
|
|
(defcustom Man-coding-system nil
|
|
|
|
|
"Coding-system to decode output from the commands run by `man'.
|
|
|
|
|
If this is nil, `man' will use `locale-coding-system'."
|
|
|
|
|
:type 'coding-system
|
|
|
|
|
:group 'man
|
|
|
|
|
:version "26.1")
|
|
|
|
|
|
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
|
|
|
|
|
2017-08-18 08:47:29 +00:00
|
|
|
|
(defvar Man-name-regexp "[-[:alnum:]_+][-[:alnum:]_.:+]*"
|
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)
|
2017-08-18 08:47:29 +00:00
|
|
|
|
(concat "^[-[:alnum:]_].*[ \t]\\(" Man-name-regexp
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"(\\(" Man-section-regexp "\\))\\)$")
|
|
|
|
|
(concat "^[ \t]*\\(" Man-name-regexp
|
|
|
|
|
"(\\(" Man-section-regexp "\\))\\).*\\1"))
|
|
|
|
|
"Regular expression describing the heading of a page.")
|
|
|
|
|
|
2017-08-18 08:47:29 +00:00
|
|
|
|
(defvar Man-heading-regexp "^\\([[:upper:]][[:upper:]0-9 /-]+\\)$"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"Regular expression describing a manpage heading entry.")
|
|
|
|
|
|
2017-08-26 08:36:58 +00:00
|
|
|
|
(defvar Man-see-also-regexp "\\(SEE ALSO\\|VOIR AUSSI\\|SIEHE AUCH\\|VÉASE TAMBIÉN\\|VEJA TAMBÉM\\|VEDERE ANCHE\\|ZOBACZ TAKŻE\\|İLGİLİ BELGELER\\|参照\\|参见 SEE ALSO\\|參見 SEE ALSO\\)"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"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
|
2019-02-16 09:51:25 +00:00
|
|
|
|
"\\(\\([-‐]\n\\)?[ \t]+" Man-name-regexp "\\)*\\)[ \t]*(\\("
|
2011-07-03 01:35:35 +00:00
|
|
|
|
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
|
2015-09-17 23:08:20 +00:00
|
|
|
|
(concat "\\[\\(" Man-name-regexp "\\)\\][ \t]*(\\(" Man-section-regexp "\\))")
|
2005-11-06 18:01:34 +00:00
|
|
|
|
"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.")
|
|
|
|
|
|
2013-10-27 02:02:02 +00:00
|
|
|
|
(defcustom man-imenu-title "Contents"
|
|
|
|
|
"The title to use if man adds a Contents menu to the menubar."
|
|
|
|
|
:version "24.4"
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'man)
|
|
|
|
|
|
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.")
|
|
|
|
|
|
2013-09-11 03:31:56 +00:00
|
|
|
|
(defvar Man-mode-syntax-table
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(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)
|
2016-10-13 18:29:32 +00:00
|
|
|
|
(set-keymap-parent map
|
|
|
|
|
(make-composed-keymap button-buffer-map special-mode-map))
|
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 "." '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)
|
2013-11-08 04:09:56 +00:00
|
|
|
|
(define-key map "u" 'Man-update-manpage)
|
2007-08-08 19:52:03 +00:00
|
|
|
|
(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)
|
2013-10-27 02:02:02 +00:00
|
|
|
|
|
|
|
|
|
(easy-menu-define nil map
|
|
|
|
|
"`Man-mode' menu."
|
|
|
|
|
'("Man"
|
|
|
|
|
["Next Section" Man-next-section t]
|
|
|
|
|
["Previous Section" Man-previous-section t]
|
|
|
|
|
["Go To Section..." Man-goto-section t]
|
|
|
|
|
["Go To \"SEE ALSO\" Section" Man-goto-see-also-section
|
|
|
|
|
:active (cl-member Man-see-also-regexp Man--sections
|
|
|
|
|
:test #'string-match-p)]
|
|
|
|
|
["Follow Reference..." Man-follow-manual-reference
|
|
|
|
|
:active Man--refpages
|
|
|
|
|
:help "Go to a manpage referred to in the \"SEE ALSO\" section"]
|
|
|
|
|
"--"
|
|
|
|
|
["Next Manpage" Man-next-manpage
|
|
|
|
|
:active (> (length Man-page-list) 1)]
|
|
|
|
|
["Previous Manpage" Man-previous-manpage
|
|
|
|
|
:active (> (length Man-page-list) 1)]
|
|
|
|
|
"--"
|
|
|
|
|
["Man..." man t]
|
|
|
|
|
["Kill Buffer" Man-kill t]
|
2016-10-13 18:29:32 +00:00
|
|
|
|
["Quit" quit-window t]))
|
2007-08-08 19:52:03 +00:00
|
|
|
|
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.
|
Fix the MSDOS build
* config.bat:
* msdos/sedlisp.inp:
* msdos/sedlibmk.inp:
* msdos/sedleim.inp:
* msdos/sedadmin.inp:
* msdos/sed6.inp:
* msdos/sed3v2.inp:
* msdos/sed2v2.inp:
* msdos/sed1v2.inp: Adapt to Emacs 25.
* src/process.c (remove_slash_colon): Move out of "#ifdef
subprocesses" block, as it its called unconditionally. Move
ADD_SUBFEATURE calls into "#ifdef subprocesses" block, as they
reference variables only defined in that block.
* src/msdos.h: Provide prototypes for IT_set_frame_parameters,
faccessat, msdos_fatal_signal, syms_of_msdos, pthread_sigmask,
dos_keysns, dos_keyread, run_msdos_command, and
syms_of_win16select, to avoid compiler warnings.
* src/msdos.c (SYS_ENVIRON): Define to either '_environ' or
'environ', depending on the DJGPP version.
Remove declarations of externally-visible Lisp objects, like
Qbackground_color and Qreverse.
(run_msdos_command): First argument is not signed, not unsigned.
Use SYS_ENVIRON.
(sys_select): Use 'timespec_cmp' instead of 'timespec_sign', as
the latter doesn't work when 'time_t' is an unsigned data type.
This caused idle timers to behave incorrectly: they only fired
after a keyboard input event.
* src/frame.c (adjust_frame_size) [MSDOS]: Account for
FRAME_TOP_MARGIN that isn't counted in the frame's number of
lines, but dos_set_window_size needs it to be added.
* src/lread.c (INFINITY, NAN) [DJGPP < 2.05]: Provide definitions.
* src/fns.c (sort_vector_copy) [__GNUC__ < 4]: Provide a prototype
that works around compilation errors with older GCC versions.
* src/w16select.c: Don't declare QCLIPBOARD and QPRIMARY as Lisp
Objects.
* src/filelock.c [MSDOS]: Ifdef away most of the code. Provide
no-op implementations for 'lock_file' and 'unlock_file'.
(Ffile_locked_p) [MSDOS]: Always return nil. This avoids multiple
ifdefs in all users of filelock.c functionality.
* src/conf_post.h (EOVERFLOW, SIZE_MAX) [DJGPP < 2.04]: Define.
* src/emacs.c [MSDOS]: Include dosfns.h, to avoid compiler
warnings.
* src/dosfns.h: Provide prototypes for dos_cleanup,
syms_of_dosfns, and init_dosfns.
* src/deps.mk (atimer.o): Depend on msdos.h.
(emacs.o): Depend on dosfns.h.
* src/atimer.c [MSDOS]: Include msdos.h, to avoid compiler
warnings.
* lisp/window.el (window--adjust-process-windows): Skip the body
if 'process-list' is not available. This avoids failure to start
up on MS-DOS.
* lisp/vc/diff.el (diff-no-select): Test 'make-process', not
'start-process', as the latter is now available on all platforms.
* lisp/textmodes/ispell.el (ispell-async-processp): Replace
'start-process' with 'make-process' in a comment.
* lisp/term/internal.el (IT-unicode-translations): Modify and add
a few translations to display Info files with Unicode markup. Fix
an ancient off-by-one mismatch error with Unicode codepoints.
* lisp/progmodes/compile.el (compilation-start): Test
'make-process', not 'start-process', as the latter is now
available on all platforms.
* lisp/man.el (Man-build-man-command, Man-getpage-in-background):
Test 'make-process', not 'start-process', as the latter is now
available on all platforms.
* lisp/international/mule-cmds.el (set-coding-system-map): Test
'make-process', not 'start-process', as the latter is now
available on all platforms.
* lisp/eshell/esh-cmd.el (eshell-do-pipelines-synchronously): Doc
fix.
(eshell-execute-pipeline): Test 'make-process', not
'start-process', as the latter is now available on all platforms.
2016-04-30 10:45:33 +00:00
|
|
|
|
((not (fboundp 'make-process)) " %s")
|
2019-08-08 13:17:51 +00:00
|
|
|
|
((concat " %s 2>" null-device
|
|
|
|
|
;; Some MS-Windows ports of Groff
|
|
|
|
|
;; try to read stdin after exhausting
|
|
|
|
|
;; the command-line arguments; make
|
|
|
|
|
;; them exit if/when they do.
|
|
|
|
|
(if (eq system-type 'windows-nt)
|
|
|
|
|
(concat " <" 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))
|
2019-02-16 09:51:25 +00:00
|
|
|
|
section (match-string 4 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.
|
2014-05-09 07:02:00 +00:00
|
|
|
|
(if (file-accessible-directory-p default-directory)
|
|
|
|
|
default-directory
|
2011-03-02 08:31:47 +00:00
|
|
|
|
(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
|
2015-04-21 01:55:00 +00:00
|
|
|
|
(concat "([ \t]*\\(?:" Man-section-regexp "\\)[ \t]*)")
|
|
|
|
|
(line-beginning-position))
|
2007-12-31 17:53:30 +00:00
|
|
|
|
;; 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.
|
2019-02-16 09:51:25 +00:00
|
|
|
|
(when (looking-at
|
|
|
|
|
(concat
|
|
|
|
|
"‐?[ \t\r\n]+\\([-a-zA-Z0-9._+:]+\\)(" Man-section-regexp ")"))
|
|
|
|
|
(let ((1st-part word))
|
|
|
|
|
(setq word (concat word (match-string-no-properties 1)))
|
|
|
|
|
;; If they use -Tascii, we cannot know whether a hyphen at
|
|
|
|
|
;; EOL is or isn't part of the referenced manpage name.
|
|
|
|
|
;; Heuristics: if the part of the manpage before the hyphen
|
|
|
|
|
;; doesn't include a hyphen, we consider the hyphen to be
|
|
|
|
|
;; added by troff, and remove it.
|
|
|
|
|
(or (not (eq (string-to-char (substring 1st-part -1)) ?-))
|
|
|
|
|
(string-match-p "-" (substring 1st-part 0 -1))
|
|
|
|
|
(setq word (replace-regexp-in-string "-" "" word))))
|
2007-12-31 17:53:30 +00:00
|
|
|
|
;; Make sure the section number gets included by the code below.
|
|
|
|
|
(goto-char (match-end 1)))
|
2019-02-16 09:51:25 +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
|
Fix obsolete ‘test/automated’ references
* Makefile.in (mostlyclean, clean, maybeclean_dirs, distclean)
(bootstrap-clean, maintainer-clean):
Clean ‘test’, not ‘test/automated’. Test for existence of
subdirectory only for ‘test’, not for directories that should
always exist.
* admin/MAINTAINERS, etc/TODO, lisp/emacs-lisp/bytecomp.el:
* lisp/emacs-lisp/seq.el, lisp/emacs-lisp/thunk.el:
* lisp/man.el (Man-parse-man-k):
* lisp/url/url-domsuf.el, make-dist:
* test/file-organization.org:
Fix obsolete references to test/automated.
2017-03-27 18:22:54 +00:00
|
|
|
|
foo(sec)[, bar(sec) [, ...]] [other stuff] - description"
|
2013-01-10 15:01:35 +00:00
|
|
|
|
(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,
|
2016-11-06 07:33:43 +00:00
|
|
|
|
;; whereas under macOS it seems to be BRE-style and doesn't
|
2009-11-27 04:08:04 +00:00
|
|
|
|
;; 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.
|
2014-07-01 23:54:59 +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
|
2009-12-26 21:30:00 +00:00
|
|
|
|
background and places the results in a `Man-mode' browsing
|
2014-07-01 23:54:59 +00:00
|
|
|
|
buffer. The variable `Man-width' defines the number of columns in
|
|
|
|
|
formatted manual pages. The buffer is displayed immediately.
|
|
|
|
|
The variable `Man-notify-method' defines how the buffer is displayed.
|
|
|
|
|
If a buffer already exists for this man page, it will be displayed
|
|
|
|
|
without running the man command.
|
2009-12-26 21:30:00 +00:00
|
|
|
|
|
|
|
|
|
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
|
2016-05-05 19:48:33 +00:00
|
|
|
|
\"grep -E\" style regexp.
|
2009-12-26 21:30:00 +00:00
|
|
|
|
|
|
|
|
|
-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)))
|
|
|
|
|
|
2013-11-08 04:09:56 +00:00
|
|
|
|
(defmacro Man-start-calling (&rest body)
|
lisp/*.el: Fix typos and other trivial doc fixes
* lisp/allout-widgets.el (allout-widgets-auto-activation)
(allout-current-decorated-p):
* lisp/auth-source.el (auth-source-protocols):
* lisp/autorevert.el (auto-revert-set-timer):
* lisp/battery.el (battery-mode-line-limit):
* lisp/calc/calcalg3.el (math-map-binop):
* lisp/calendar/cal-dst.el (calendar-dst-find-startend):
* lisp/calendar/cal-mayan.el (calendar-mayan-long-count-to-absolute):
* lisp/calendar/calendar.el (calendar-date-echo-text)
(calendar-generate-month, calendar-string-spread)
(calendar-cursor-to-date, calendar-read, calendar-read-date)
(calendar-mark-visible-date, calendar-dayname-on-or-before):
* lisp/calendar/diary-lib.el (diary-ordinal-suffix):
* lisp/cedet/ede/autoconf-edit.el (autoconf-new-program)
(autoconf-find-last-macro, autoconf-parameter-strip):
* lisp/cedet/ede/config.el (ede-target-with-config-build):
* lisp/cedet/ede/linux.el (ede-linux--detect-architecture)
(ede-linux--get-architecture):
* lisp/cedet/semantic/complete.el (semantic-collector-calculate-cache)
(semantic-displayer-abstract, semantic-displayer-point-position):
* lisp/cedet/semantic/format.el (semantic-format-face-alist)
(semantic-format-tag-short-doc):
* lisp/cedet/semantic/fw.el (semantic-find-file-noselect):
* lisp/cedet/semantic/idle.el (semantic-idle-scheduler-work-idle-time)
(semantic-idle-breadcrumbs-display-function)
(semantic-idle-breadcrumbs-format-tag-list-function):
* lisp/cedet/semantic/lex.el (semantic-lex-map-types)
(define-lex, define-lex-block-type-analyzer):
* lisp/cedet/semantic/senator.el (senator-search-default-tag-filter):
* lisp/cedet/semantic/symref.el (semantic-symref-result)
(semantic-symref-hit-to-tag-via-db):
* lisp/cedet/semantic/symref.el (semantic-symref-tool-baseclass):
* lisp/cedet/semantic/tag.el (semantic-tag-new-variable)
(semantic-tag-new-include, semantic-tag-new-package)
(semantic-tag-set-faux, semantic-create-tag-proxy)
(semantic-tag-function-parent)
(semantic-tag-components-with-overlays):
* lisp/cedet/srecode/cpp.el (srecode-cpp-namespaces)
(srecode-semantic-handle-:c, srecode-semantic-apply-tag-to-dict):
* lisp/cedet/srecode/dictionary.el (srecode-create-dictionary)
(srecode-dictionary-add-entries, srecode-dictionary-lookup-name)
(srecode-create-dictionaries-from-tags):
* lisp/cmuscheme.el (scheme-compile-region):
* lisp/color.el (color-lab-to-lch):
* lisp/doc-view.el (doc-view-image-width)
(doc-view-set-up-single-converter):
* lisp/dynamic-setting.el (font-setting-change-default-font)
(dynamic-setting-handle-config-changed-event):
* lisp/elec-pair.el (electric-pair-text-pairs)
(electric-pair-skip-whitespace-function)
(electric-pair-string-bound-function):
* lisp/emacs-lisp/avl-tree.el (avl-tree--del-balance)
(avl-tree-member, avl-tree-mapcar, avl-tree-iter):
* lisp/emacs-lisp/bytecomp.el (byte-compile-generate-call-tree):
* lisp/emacs-lisp/checkdoc.el (checkdoc-autofix-flag)
(checkdoc-spellcheck-documentation-flag, checkdoc-ispell)
(checkdoc-ispell-current-buffer, checkdoc-ispell-interactive)
(checkdoc-ispell-message-interactive)
(checkdoc-ispell-message-text, checkdoc-ispell-start)
(checkdoc-ispell-continue, checkdoc-ispell-comments)
(checkdoc-ispell-defun):
* lisp/emacs-lisp/cl-generic.el (cl--generic-search-method):
* lisp/emacs-lisp/eieio-custom.el (eieio-read-customization-group):
* lisp/emacs-lisp/lisp.el (forward-sexp, up-list):
* lisp/emacs-lisp/package-x.el (package--archive-contents-from-file):
* lisp/emacs-lisp/package.el (package-desc)
(package--make-autoloads-and-stuff, package-hidden-regexps):
* lisp/emacs-lisp/tcover-ses.el (ses-exercise-startup):
* lisp/emacs-lisp/testcover.el (testcover-nohits)
(testcover-1value):
* lisp/epg.el (epg-receive-keys, epg-start-edit-key):
* lisp/erc/erc-backend.el (erc-server-processing-p)
(erc-split-line-length, erc-server-coding-system)
(erc-server-send, erc-message):
* lisp/erc/erc-button.el (erc-button-face, erc-button-alist)
(erc-browse-emacswiki):
* lisp/erc/erc-ezbounce.el (erc-ezbounce, erc-ezb-get-login):
* lisp/erc/erc-fill.el (erc-fill-variable-maximum-indentation):
* lisp/erc/erc-log.el (erc-current-logfile):
* lisp/erc/erc-match.el (erc-log-match-format)
(erc-text-matched-hook):
* lisp/erc/erc-netsplit.el (erc-netsplit, erc-netsplit-debug):
* lisp/erc/erc-networks.el (erc-server-alist)
(erc-networks-alist, erc-current-network):
* lisp/erc/erc-ring.el (erc-input-ring-index):
* lisp/erc/erc-speedbar.el (erc-speedbar)
(erc-speedbar-update-channel):
* lisp/erc/erc-stamp.el (erc-timestamp-only-if-changed-flag):
* lisp/erc/erc-track.el (erc-track-position-in-mode-line)
(erc-track-remove-from-mode-line, erc-modified-channels-update)
(erc-track-last-non-erc-buffer, erc-track-sort-by-importance)
(erc-track-get-active-buffer):
* lisp/erc/erc.el (erc-get-channel-user-list)
(erc-echo-notice-hook, erc-echo-notice-always-hook)
(erc-wash-quit-reason, erc-format-@nick):
* lisp/ffap.el (ffap-latex-mode):
* lisp/files.el (abort-if-file-too-large)
(dir-locals--get-sort-score, buffer-stale--default-function):
* lisp/filesets.el (filesets-tree-max-level, filesets-data)
(filesets-update-pre010505):
* lisp/gnus/gnus-agent.el (gnus-agent-flush-cache):
* lisp/gnus/gnus-art.el (gnus-article-encrypt-protocol)
(gnus-button-prefer-mid-or-mail):
* lisp/gnus/gnus-cus.el (gnus-group-parameters):
* lisp/gnus/gnus-demon.el (gnus-demon-handlers)
(gnus-demon-run-callback):
* lisp/gnus/gnus-dired.el (gnus-dired-print):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-buffer):
* lisp/gnus/gnus-range.el (gnus-range-normalize):
* lisp/gnus/gnus-spec.el (gnus-pad-form):
* lisp/gnus/gnus-srvr.el (gnus-server-agent, gnus-server-cloud)
(gnus-server-opened, gnus-server-closed, gnus-server-denied)
(gnus-server-offline):
* lisp/gnus/gnus-sum.el (gnus-refer-thread-use-nnir)
(gnus-refer-thread-limit-to-thread)
(gnus-summary-limit-include-thread, gnus-summary-refer-thread)
(gnus-summary-find-matching):
* lisp/gnus/gnus-util.el (gnus-rescale-image):
* lisp/gnus/gnus.el (gnus-summary-line-format, gnus-no-server):
* lisp/gnus/mail-source.el (mail-source-incoming-file-prefix):
* lisp/gnus/message.el (message-cite-reply-position)
(message-cite-style-outlook, message-cite-style-thunderbird)
(message-cite-style-gmail, message--send-mail-maybe-partially):
* lisp/gnus/mm-extern.el (mm-inline-external-body):
* lisp/gnus/mm-partial.el (mm-inline-partial):
* lisp/gnus/mml-sec.el (mml-secure-message-sign)
(mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
* lisp/gnus/mml2015.el (mml2015-epg-key-image)
(mml2015-epg-key-image-to-string):
* lisp/gnus/nndiary.el (nndiary-reminders, nndiary-get-new-mail):
* lisp/gnus/nnheader.el (nnheader-directory-files-is-safe):
* lisp/gnus/nnir.el (nnir-search-history)
(nnir-imap-search-other, nnir-artlist-length)
(nnir-artlist-article, nnir-artitem-group, nnir-artitem-number)
(nnir-artitem-rsv, nnir-article-group, nnir-article-number)
(nnir-article-rsv, nnir-article-ids, nnir-categorize)
(nnir-retrieve-headers-override-function)
(nnir-imap-default-search-key, nnir-hyrex-additional-switches)
(gnus-group-make-nnir-group, nnir-run-namazu, nnir-read-parms)
(nnir-read-parm, nnir-read-server-parm, nnir-search-thread):
* lisp/gnus/nnmairix.el (nnmairix-default-group)
(nnmairix-propagate-marks):
* lisp/gnus/smime.el (smime-keys, smime-crl-check)
(smime-verify-buffer, smime-noverify-buffer):
* lisp/gnus/spam-report.el (spam-report-url-ping-mm-url):
* lisp/gnus/spam.el (spam-spamassassin-positive-spam-flag-header)
(spam-spamassassin-spam-status-header, spam-sa-learn-rebuild)
(spam-classifications, spam-check-stat, spam-spamassassin-score):
* lisp/help.el (describe-minor-mode-from-symbol):
* lisp/hippie-exp.el (hippie-expand-ignore-buffers):
* lisp/htmlfontify.el (hfy-optimizations, hfy-face-resolve-face)
(hfy-begin-span):
* lisp/ibuf-ext.el (ibuffer-update-saved-filters-format)
(ibuffer-saved-filters, ibuffer-old-saved-filters-warning)
(ibuffer-filtering-qualifiers, ibuffer-repair-saved-filters)
(eval, ibuffer-unary-operand, file-extension, directory):
* lisp/image-dired.el (image-dired-cmd-pngcrush-options):
* lisp/image-mode.el (image-toggle-display):
* lisp/international/ccl.el (ccl-compile-read-multibyte-character)
(ccl-compile-write-multibyte-character):
* lisp/international/kkc.el (kkc-save-init-file):
* lisp/international/latin1-disp.el (latin1-display):
* lisp/international/ogonek.el (ogonek-name-encoding-alist)
(ogonek-information, ogonek-lookup-encoding)
(ogonek-deprefixify-region):
* lisp/isearch.el (isearch-filter-predicate)
(isearch--momentary-message):
* lisp/jsonrpc.el (jsonrpc-connection-send)
(jsonrpc-process-connection, jsonrpc-shutdown)
(jsonrpc--async-request-1):
* lisp/language/tibet-util.el (tibetan-char-p):
* lisp/mail/feedmail.el (feedmail-queue-use-send-time-for-date)
(feedmail-last-chance-hook, feedmail-before-fcc-hook)
(feedmail-send-it-immediately-wrapper, feedmail-find-eoh):
* lisp/mail/hashcash.el (hashcash-generate-payment)
(hashcash-generate-payment-async, hashcash-insert-payment)
(hashcash-verify-payment):
* lisp/mail/rmail.el (rmail-movemail-variant-in-use)
(rmail-get-attr-value):
* lisp/mail/rmailmm.el (rmail-mime-prefer-html, rmail-mime):
* lisp/mail/rmailsum.el (rmail-summary-show-message):
* lisp/mail/supercite.el (sc-raw-mode-toggle):
* lisp/man.el (Man-start-calling):
* lisp/mh-e/mh-acros.el (mh-do-at-event-location)
(mh-iterate-on-messages-in-region, mh-iterate-on-range):
* lisp/mh-e/mh-alias.el (mh-alias-system-aliases)
(mh-alias-reload, mh-alias-ali)
(mh-alias-canonicalize-suggestion, mh-alias-add-alias-to-file)
(mh-alias-add-alias):
* lisp/mouse.el (mouse-save-then-kill):
* lisp/net/browse-url.el (browse-url-default-macosx-browser):
* lisp/net/eudc.el (eudc-set, eudc-variable-protocol-value)
(eudc-variable-server-value, eudc-update-variable)
(eudc-expand-inline):
* lisp/net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
* lisp/net/eudcb-ldap.el (eudc-ldap-get-field-list):
* lisp/net/pop3.el (pop3-list):
* lisp/net/soap-client.el (soap-namespace-put)
(soap-xs-parse-sequence, soap-parse-envelope):
* lisp/net/soap-inspect.el (soap-inspect-xs-complex-type):
* lisp/nxml/rng-xsd.el (rng-xsd-date-to-days):
* lisp/org/ob-C.el (org-babel-prep-session:C)
(org-babel-load-session:C):
* lisp/org/ob-J.el (org-babel-execute:J):
* lisp/org/ob-asymptote.el (org-babel-prep-session:asymptote):
* lisp/org/ob-awk.el (org-babel-execute:awk):
* lisp/org/ob-core.el (org-babel-process-file-name):
* lisp/org/ob-ebnf.el (org-babel-execute:ebnf):
* lisp/org/ob-forth.el (org-babel-execute:forth):
* lisp/org/ob-fortran.el (org-babel-execute:fortran)
(org-babel-prep-session:fortran, org-babel-load-session:fortran):
* lisp/org/ob-groovy.el (org-babel-execute:groovy):
* lisp/org/ob-io.el (org-babel-execute:io):
* lisp/org/ob-js.el (org-babel-execute:js):
* lisp/org/ob-lilypond.el (org-babel-default-header-args:lilypond)
(org-babel-lilypond-compile-post-tangle)
(org-babel-lilypond-display-pdf-post-tangle)
(org-babel-lilypond-tangle)
(org-babel-lilypond-execute-tangled-ly)
(org-babel-lilypond-compile-lilyfile)
(org-babel-lilypond-check-for-compile-error)
(org-babel-lilypond-process-compile-error)
(org-babel-lilypond-mark-error-line)
(org-babel-lilypond-parse-error-line)
(org-babel-lilypond-attempt-to-open-pdf)
(org-babel-lilypond-attempt-to-play-midi)
(org-babel-lilypond-switch-extension)
(org-babel-lilypond-set-header-args):
* lisp/org/ob-lua.el (org-babel-prep-session:lua):
* lisp/org/ob-picolisp.el (org-babel-execute:picolisp):
* lisp/org/ob-processing.el (org-babel-prep-session:processing):
* lisp/org/ob-python.el (org-babel-prep-session:python):
* lisp/org/ob-scheme.el (org-babel-scheme-capture-current-message)
(org-babel-scheme-execute-with-geiser, org-babel-execute:scheme):
* lisp/org/ob-shen.el (org-babel-execute:shen):
* lisp/org/org-agenda.el (org-agenda-entry-types)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-time-grid, org-agenda-sorting-strategy)
(org-agenda-filter-by-category, org-agenda-forward-block):
* lisp/org/org-colview.el (org-columns--overlay-text):
* lisp/org/org-faces.el (org-verbatim, org-cycle-level-faces):
* lisp/org/org-indent.el (org-indent-set-line-properties):
* lisp/org/org-macs.el (org-get-limited-outline-regexp):
* lisp/org/org-mobile.el (org-mobile-files):
* lisp/org/org.el (org-use-fast-todo-selection)
(org-extend-today-until, org-use-property-inheritance)
(org-refresh-effort-properties, org-open-at-point-global)
(org-track-ordered-property-with-tag, org-shiftright):
* lisp/org/ox-html.el (org-html-checkbox-type):
* lisp/org/ox-man.el (org-man-source-highlight)
(org-man-verse-block):
* lisp/org/ox-publish.el (org-publish-sitemap-default):
* lisp/outline.el (outline-head-from-level):
* lisp/progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-calc-command-indent, dcl-indent-to):
* lisp/progmodes/flymake.el (flymake-make-diagnostic)
(flymake--overlays, flymake-diagnostic-functions)
(flymake-diagnostic-types-alist, flymake--backend-state)
(flymake-is-running, flymake--collect, flymake-mode):
* lisp/progmodes/gdb-mi.el (gdb-threads-list, gdb, gdb-non-stop)
(gdb-buffers, gdb-gud-context-call, gdb-jsonify-buffer):
* lisp/progmodes/grep.el (grep-error-screen-columns):
* lisp/progmodes/gud.el (gud-prev-expr):
* lisp/progmodes/ps-mode.el (ps-mode, ps-mode-target-column)
(ps-run-goto-error):
* lisp/progmodes/python.el (python-eldoc-get-doc)
(python-eldoc-function-timeout-permanent, python-eldoc-function):
* lisp/shadowfile.el (shadow-make-group):
* lisp/speedbar.el (speedbar-obj-do-check):
* lisp/textmodes/flyspell.el (flyspell-auto-correct-previous-hook):
* lisp/textmodes/reftex-cite.el (reftex-bib-or-thebib):
* lisp/textmodes/reftex-index.el (reftex-index-goto-entry)
(reftex-index-kill, reftex-index-undo):
* lisp/textmodes/reftex-parse.el (reftex-context-substring):
* lisp/textmodes/reftex.el (reftex-TeX-master-file):
* lisp/textmodes/rst.el (rst-next-hdr, rst-toc)
(rst-uncomment-region, rst-font-lock-extend-region-internal):
* lisp/thumbs.el (thumbs-mode):
* lisp/vc/ediff-util.el (ediff-restore-diff):
* lisp/vc/pcvs-defs.el (cvs-cvsroot, cvs-force-dir-tag):
* lisp/vc/vc-hg.el (vc-hg--ignore-patterns-valid-p):
* lisp/wid-edit.el (widget-field-value-set, string):
* lisp/x-dnd.el (x-dnd-version-from-flags)
(x-dnd-more-than-3-from-flags): Assorted docfixes.
2019-09-20 22:27:53 +00:00
|
|
|
|
"Start the man command in `body' after setting up the environment."
|
2013-11-08 04:09:56 +00:00
|
|
|
|
`(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.
|
2017-12-31 16:20:12 +00:00
|
|
|
|
(coding-system-for-read
|
|
|
|
|
(or coding-system-for-read ; allow overriding with "C-x RET c"
|
|
|
|
|
Man-coding-system
|
|
|
|
|
locale-coding-system))
|
2013-11-08 04:09:56 +00:00
|
|
|
|
;; Avoid possible error by using a directory that always exists.
|
|
|
|
|
(default-directory
|
|
|
|
|
(if (and (file-directory-p default-directory)
|
|
|
|
|
(not (find-file-name-handler default-directory
|
|
|
|
|
'file-directory-p)))
|
|
|
|
|
default-directory
|
|
|
|
|
"/")))
|
|
|
|
|
;; Prevent any attempt to use display terminal fanciness.
|
|
|
|
|
(setenv "TERM" "dumb")
|
|
|
|
|
;; 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).
|
|
|
|
|
(when (or window-system
|
|
|
|
|
(not (or (getenv "MANWIDTH") (getenv "COLUMNS"))))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
;; Since the page buffer is displayed beforehand,
|
|
|
|
|
;; we can select its window and get the window/frame width.
|
2013-11-08 04:09:56 +00:00
|
|
|
|
(setenv "COLUMNS" (number-to-string
|
|
|
|
|
(cond
|
|
|
|
|
((and (integerp Man-width) (> Man-width 0))
|
|
|
|
|
Man-width)
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(Man-width
|
|
|
|
|
(if (window-live-p (get-buffer-window (current-buffer) t))
|
|
|
|
|
(with-selected-window (get-buffer-window (current-buffer) t)
|
|
|
|
|
(frame-width))
|
|
|
|
|
(frame-width)))
|
|
|
|
|
(t
|
|
|
|
|
(if (window-live-p (get-buffer-window (current-buffer) t))
|
|
|
|
|
(with-selected-window (get-buffer-window (current-buffer) t)
|
|
|
|
|
(window-width))
|
|
|
|
|
(window-width)))))))
|
2013-11-08 04:09:56 +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")
|
|
|
|
|
,@body))
|
|
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(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
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(Man-notify-when-ready 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))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(setq Man-arguments man-args)
|
|
|
|
|
(Man-mode)
|
|
|
|
|
(setq mode-line-process
|
|
|
|
|
(concat " " (propertize (if Man-fontify-manpage-flag
|
|
|
|
|
"[formatting...]"
|
|
|
|
|
"[cleaning...]")
|
|
|
|
|
'face 'mode-line-emphasis)))
|
|
|
|
|
(Man-start-calling
|
Fix the MSDOS build
* config.bat:
* msdos/sedlisp.inp:
* msdos/sedlibmk.inp:
* msdos/sedleim.inp:
* msdos/sedadmin.inp:
* msdos/sed6.inp:
* msdos/sed3v2.inp:
* msdos/sed2v2.inp:
* msdos/sed1v2.inp: Adapt to Emacs 25.
* src/process.c (remove_slash_colon): Move out of "#ifdef
subprocesses" block, as it its called unconditionally. Move
ADD_SUBFEATURE calls into "#ifdef subprocesses" block, as they
reference variables only defined in that block.
* src/msdos.h: Provide prototypes for IT_set_frame_parameters,
faccessat, msdos_fatal_signal, syms_of_msdos, pthread_sigmask,
dos_keysns, dos_keyread, run_msdos_command, and
syms_of_win16select, to avoid compiler warnings.
* src/msdos.c (SYS_ENVIRON): Define to either '_environ' or
'environ', depending on the DJGPP version.
Remove declarations of externally-visible Lisp objects, like
Qbackground_color and Qreverse.
(run_msdos_command): First argument is not signed, not unsigned.
Use SYS_ENVIRON.
(sys_select): Use 'timespec_cmp' instead of 'timespec_sign', as
the latter doesn't work when 'time_t' is an unsigned data type.
This caused idle timers to behave incorrectly: they only fired
after a keyboard input event.
* src/frame.c (adjust_frame_size) [MSDOS]: Account for
FRAME_TOP_MARGIN that isn't counted in the frame's number of
lines, but dos_set_window_size needs it to be added.
* src/lread.c (INFINITY, NAN) [DJGPP < 2.05]: Provide definitions.
* src/fns.c (sort_vector_copy) [__GNUC__ < 4]: Provide a prototype
that works around compilation errors with older GCC versions.
* src/w16select.c: Don't declare QCLIPBOARD and QPRIMARY as Lisp
Objects.
* src/filelock.c [MSDOS]: Ifdef away most of the code. Provide
no-op implementations for 'lock_file' and 'unlock_file'.
(Ffile_locked_p) [MSDOS]: Always return nil. This avoids multiple
ifdefs in all users of filelock.c functionality.
* src/conf_post.h (EOVERFLOW, SIZE_MAX) [DJGPP < 2.04]: Define.
* src/emacs.c [MSDOS]: Include dosfns.h, to avoid compiler
warnings.
* src/dosfns.h: Provide prototypes for dos_cleanup,
syms_of_dosfns, and init_dosfns.
* src/deps.mk (atimer.o): Depend on msdos.h.
(emacs.o): Depend on dosfns.h.
* src/atimer.c [MSDOS]: Include msdos.h, to avoid compiler
warnings.
* lisp/window.el (window--adjust-process-windows): Skip the body
if 'process-list' is not available. This avoids failure to start
up on MS-DOS.
* lisp/vc/diff.el (diff-no-select): Test 'make-process', not
'start-process', as the latter is now available on all platforms.
* lisp/textmodes/ispell.el (ispell-async-processp): Replace
'start-process' with 'make-process' in a comment.
* lisp/term/internal.el (IT-unicode-translations): Modify and add
a few translations to display Info files with Unicode markup. Fix
an ancient off-by-one mismatch error with Unicode codepoints.
* lisp/progmodes/compile.el (compilation-start): Test
'make-process', not 'start-process', as the latter is now
available on all platforms.
* lisp/man.el (Man-build-man-command, Man-getpage-in-background):
Test 'make-process', not 'start-process', as the latter is now
available on all platforms.
* lisp/international/mule-cmds.el (set-coding-system-map): Test
'make-process', not 'start-process', as the latter is now
available on all platforms.
* lisp/eshell/esh-cmd.el (eshell-do-pipelines-synchronously): Doc
fix.
(eshell-execute-pipeline): Test 'make-process', not
'start-process', as the latter is now available on all platforms.
2016-04-30 10:45:33 +00:00
|
|
|
|
(if (fboundp 'make-process)
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(let ((proc (start-process
|
|
|
|
|
manual-program buffer
|
|
|
|
|
(if (memq system-type '(cygwin windows-nt))
|
|
|
|
|
shell-file-name
|
|
|
|
|
"sh")
|
|
|
|
|
shell-command-switch
|
|
|
|
|
(format (Man-build-man-command) man-args))))
|
|
|
|
|
(set-process-sentinel proc 'Man-bgproc-sentinel)
|
|
|
|
|
(set-process-filter proc 'Man-bgproc-filter))
|
|
|
|
|
(let* ((inhibit-read-only t)
|
|
|
|
|
(exit-status
|
|
|
|
|
(call-process shell-file-name nil (list buffer nil) nil
|
|
|
|
|
shell-command-switch
|
|
|
|
|
(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))
|
|
|
|
|
(if Man-fontify-manpage-flag
|
|
|
|
|
(Man-fontify-manpage)
|
|
|
|
|
(Man-cleanup-manpage))
|
|
|
|
|
(Man-bgproc-sentinel bufname msg))))))
|
|
|
|
|
buffer))
|
2013-11-08 04:09:56 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-update-manpage ()
|
|
|
|
|
"Reformat current manpage by calling the man command again synchronously."
|
|
|
|
|
(interactive)
|
|
|
|
|
(when (eq Man-arguments nil)
|
|
|
|
|
;;this shouldn't happen unless it is not in a Man buffer."
|
|
|
|
|
(error "Man-arguments not initialized"))
|
|
|
|
|
(let ((old-pos (point))
|
|
|
|
|
(text (current-word))
|
|
|
|
|
(old-size (buffer-size))
|
|
|
|
|
(inhibit-read-only t)
|
|
|
|
|
(buffer-read-only nil))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(Man-start-calling
|
|
|
|
|
(call-process shell-file-name nil (list (current-buffer) nil) nil
|
|
|
|
|
shell-command-switch
|
|
|
|
|
(format (Man-build-man-command) Man-arguments)))
|
|
|
|
|
(if Man-fontify-manpage-flag
|
|
|
|
|
(Man-fontify-manpage)
|
|
|
|
|
(Man-cleanup-manpage))
|
|
|
|
|
(goto-char old-pos)
|
|
|
|
|
;;restore the point, not strictly right.
|
|
|
|
|
(unless (or (eq text nil) (= old-size (buffer-size)))
|
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(if (> old-size (buffer-size))
|
|
|
|
|
(search-backward text nil t))
|
|
|
|
|
(search-forward text nil t)))))
|
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
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('newframe
|
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
|
|
|
|
;; 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)))))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('pushy
|
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
|
|
|
|
(switch-to-buffer man-buffer))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('bully
|
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
|
|
|
|
(and (frame-live-p saved-frame)
|
|
|
|
|
(select-frame saved-frame))
|
|
|
|
|
(pop-to-buffer man-buffer)
|
|
|
|
|
(delete-other-windows))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('aggressive
|
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
|
|
|
|
(and (frame-live-p saved-frame)
|
|
|
|
|
(select-frame saved-frame))
|
|
|
|
|
(pop-to-buffer man-buffer))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('friendly
|
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
|
|
|
|
(and (frame-live-p saved-frame)
|
|
|
|
|
(select-frame saved-frame))
|
|
|
|
|
(display-buffer man-buffer 'not-this-window))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('polite
|
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
|
|
|
|
(beep)
|
|
|
|
|
(message "Manual buffer %s is ready" (buffer-name man-buffer)))
|
2018-11-05 00:22:15 +00:00
|
|
|
|
('quiet
|
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
|
|
|
|
(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))
|
2017-08-30 19:00:56 +00:00
|
|
|
|
(while (search-forward "" nil t) (replace-match "-"))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(defun Man-fontify-manpage ()
|
|
|
|
|
"Convert overstriking and underlining to the correct fonts.
|
|
|
|
|
Same for the ANSI bold and normal escape sequences."
|
|
|
|
|
(interactive)
|
|
|
|
|
(goto-char (point-min))
|
2004-11-30 22:26:26 +00:00
|
|
|
|
;; Fontify ANSI escapes.
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(let ((ansi-color-apply-face-function #'ansi-color-apply-text-property-face)
|
2012-08-15 03:37:07 +00:00
|
|
|
|
(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))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(while (and (search-forward "__\b\b" nil t) (not (eobp)))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(backward-delete-char 4)
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(put-text-property (point) (1+ (point))
|
|
|
|
|
'font-lock-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)
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(put-text-property (1- (point)) (point)
|
|
|
|
|
'font-lock-face 'Man-underline))))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(while (and (search-forward "_\b" nil t) (not (eobp)))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(backward-delete-char 2)
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(put-text-property (point) (1+ (point)) 'font-lock-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)
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(put-text-property (1- (point)) (point) 'font-lock-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")
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(put-text-property (1- (point)) (point) 'font-lock-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")
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(put-text-property (1- (point)) (point) 'font-lock-face 'bold))
|
2005-01-04 20:36:28 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "[-|]\\(\b[-|]\\)+" nil t)
|
|
|
|
|
(replace-match "+")
|
2019-05-04 18:47:29 +00:00
|
|
|
|
(put-text-property (1- (point)) (point) 'font-lock-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)
|
2019-05-04 18:47:29 +00:00
|
|
|
|
'font-lock-face 'Man-overstrike))))
|
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'
|
2019-08-09 13:51:14 +00:00
|
|
|
|
(when (or (null start-section) ;; Search regardless of sections.
|
|
|
|
|
;; Section header is in this chunk.
|
2019-08-18 22:10:50 +00:00
|
|
|
|
(Man-find-section start-section))
|
2005-11-06 18:01:34 +00:00
|
|
|
|
(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")
|
|
|
|
|
(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))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(Man-softhyphen-to-minus))
|
|
|
|
|
|
|
|
|
|
(defun Man-bgproc-filter (process string)
|
|
|
|
|
"Manpage background process filter.
|
|
|
|
|
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 STRING is the entire string of output."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((Man-buffer (process-buffer process)))
|
|
|
|
|
(if (null (buffer-name Man-buffer)) ;; deleted buffer
|
|
|
|
|
(set-process-buffer process nil)
|
|
|
|
|
|
|
|
|
|
(with-current-buffer Man-buffer
|
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(beg (marker-position (process-mark process))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(insert string)
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char beg)
|
2019-08-18 22:10:50 +00:00
|
|
|
|
;; Process whole sections (Bug#36927).
|
|
|
|
|
(Man-previous-section 1)
|
|
|
|
|
(point))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(point))
|
|
|
|
|
(if Man-fontify-manpage-flag
|
|
|
|
|
(Man-fontify-manpage)
|
|
|
|
|
(Man-cleanup-manpage)))
|
|
|
|
|
(set-marker (process-mark process) (point-max)))))))))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(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)
|
2019-11-09 22:51:25 +00:00
|
|
|
|
message)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(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
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(save-excursion
|
2018-12-01 09:30:41 +00:00
|
|
|
|
(let ((case-fold-search nil)
|
|
|
|
|
(inhibit-read-only t))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(cond ((or (looking-at "No \\(manual \\)*entry for")
|
|
|
|
|
(looking-at "[^\n]*: nothing appropriate$"))
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(setq message (buffer-substring (point)
|
|
|
|
|
(progn
|
|
|
|
|
(end-of-line) (point)))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
delete-buff t))
|
|
|
|
|
|
|
|
|
|
;; "-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)))
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(setq message (format "%s: no matches" Man-arguments)
|
2014-07-01 23:54:59 +00:00
|
|
|
|
delete-buff t))
|
|
|
|
|
|
|
|
|
|
((or (stringp process)
|
|
|
|
|
(not (and (eq (process-status process) 'exit)
|
|
|
|
|
(= (process-exit-status process) 0))))
|
|
|
|
|
(or (zerop (length msg))
|
|
|
|
|
(progn
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(setq message
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(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))))
|
|
|
|
|
))
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(unless delete-buff
|
2014-07-01 23:54:59 +00:00
|
|
|
|
|
|
|
|
|
(run-hooks 'Man-cooked-hook)
|
|
|
|
|
|
|
|
|
|
(Man-build-page-list)
|
|
|
|
|
(Man-strip-page-headers)
|
|
|
|
|
(Man-unindent)
|
|
|
|
|
(Man-goto-page 1 t)
|
|
|
|
|
|
|
|
|
|
(if (not Man-page-list)
|
|
|
|
|
(let ((args Man-arguments))
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(setq delete-buff t)
|
|
|
|
|
|
2016-06-05 11:14:44 +00:00
|
|
|
|
;; Entries hyphenated due to the window's width
|
|
|
|
|
;; won't be found in the man database, so remove
|
|
|
|
|
;; the hyphenation -- assuming Groff hyphenates
|
|
|
|
|
;; either with hyphen-minus (ASCII 45, #x2d),
|
|
|
|
|
;; hyphen (#x2010) or soft hyphen (#xad) -- and
|
|
|
|
|
;; look again.
|
|
|
|
|
(if (string-match "[-‐]" args)
|
|
|
|
|
(let ((str (replace-match "" nil nil args)))
|
|
|
|
|
(Man-getpage-in-background str))
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(setq message (format "Can't find the %s manpage"
|
|
|
|
|
(Man-page-from-arguments args)))))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
|
|
|
|
|
(if Man-fontify-manpage-flag
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(setq message (format "%s man page formatted"
|
|
|
|
|
(Man-page-from-arguments Man-arguments)))
|
|
|
|
|
(setq message (format "%s man page cleaned up"
|
|
|
|
|
(Man-page-from-arguments Man-arguments))))
|
2014-07-01 23:54:59 +00:00
|
|
|
|
(unless (and (processp process)
|
|
|
|
|
(not (eq (process-status process) 'exit)))
|
|
|
|
|
(setq mode-line-process nil))
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(set-buffer-modified-p nil))))))
|
|
|
|
|
|
|
|
|
|
(when delete-buff
|
|
|
|
|
(if (window-live-p (get-buffer-window Man-buffer t))
|
|
|
|
|
(quit-restore-window
|
|
|
|
|
(get-buffer-window Man-buffer t) 'kill)
|
|
|
|
|
(kill-buffer Man-buffer)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2019-11-09 22:51:25 +00:00
|
|
|
|
(when message
|
|
|
|
|
(minibuffer-message "%s" message)))))
|
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)
|
|
|
|
|
|
2016-10-13 18:29:32 +00:00
|
|
|
|
(define-derived-mode Man-mode special-mode "Man"
|
2001-07-15 16:15:35 +00:00
|
|
|
|
"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.
|
2016-10-13 18:29:32 +00:00
|
|
|
|
\\[quit-window] Deletes the manpage window, bury its buffer.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
\\[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:
|
|
|
|
|
|
2014-07-01 23:54:59 +00:00
|
|
|
|
`Man-notify-method' What happens when manpage is ready to display.
|
2001-07-15 16:15:35 +00:00
|
|
|
|
`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}"
|
2013-09-11 03:31:56 +00:00
|
|
|
|
(setq 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 "}")
|
2016-10-13 18:29:32 +00:00
|
|
|
|
truncate-lines t)
|
2005-05-26 13:07:46 +00:00
|
|
|
|
(buffer-disable-undo)
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(auto-fill-mode -1)
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(setq imenu-generic-expression (list (list nil Man-heading-regexp 0)))
|
2013-10-27 02:02:02 +00:00
|
|
|
|
(imenu-add-to-menubar man-imenu-title)
|
2004-03-23 07:33:39 +00:00
|
|
|
|
(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)
|
2014-07-01 23:54:59 +00:00
|
|
|
|
'Man-bookmark-make-record))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
2017-11-07 14:51:37 +00:00
|
|
|
|
(defun Man-build-section-list ()
|
2012-04-28 21:59:08 +00:00
|
|
|
|
"Build the list of manpage sections."
|
2017-11-07 14:51:37 +00:00
|
|
|
|
(setq Man--sections ())
|
2001-07-15 16:15:35 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((case-fold-search nil))
|
2017-11-07 14:51:37 +00:00
|
|
|
|
(while (re-search-forward Man-heading-regexp nil t)
|
2012-04-28 21:59:08 +00:00
|
|
|
|
(let ((section (match-string 1)))
|
|
|
|
|
(unless (member section Man--sections)
|
|
|
|
|
(push section Man--sections)))
|
2017-11-07 14:51:37 +00:00
|
|
|
|
(forward-line)))
|
2017-10-25 15:57:43 +00:00
|
|
|
|
(setq Man--sections (nreverse Man--sections)))
|
2001-07-15 16:15:35 +00:00
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
|
(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))
|
|
|
|
|
|
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)
|
2017-11-07 14:51:37 +00:00
|
|
|
|
(Man-build-section-list)
|
2005-07-23 22:51:58 +00:00
|
|
|
|
(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
|