comparison lisp/man.el @ 35603:8f8be2a8aed8

(Man-default-man-entry, Man-mode): Doc fix.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 26 Jan 2001 11:43:10 +0000
parents b5e119e4bfcb
children 5394dc1db9f4
comparison
equal deleted inserted replaced
35602:149710cb0ef0 35603:8f8be2a8aed8
504 ;; ====================================================================== 504 ;; ======================================================================
505 ;; default man entry: get word under point 505 ;; default man entry: get word under point
506 506
507 (defsubst Man-default-man-entry () 507 (defsubst Man-default-man-entry ()
508 "Make a guess at a default manual entry. 508 "Make a guess at a default manual entry.
509 This guess is based on the text surrounding the cursor, and the 509 This guess is based on the text surrounding the cursor."
510 default section number is selected from `Man-auto-section-alist'."
511 (let (word) 510 (let (word)
512 (save-excursion 511 (save-excursion
513 ;; Default man entry title is any word the cursor is on, or if 512 ;; Default man entry title is any word the cursor is on, or if
514 ;; cursor not on a word, then nearest preceding word. 513 ;; cursor not on a word, then nearest preceding word.
515 (setq word (current-word)) 514 (setq word (current-word))
829 \"\\[describe-variable] <variable-name> RET\" for more information: 828 \"\\[describe-variable] <variable-name> RET\" for more information:
830 829
831 `Man-notify-method' What happens when manpage formatting is done. 830 `Man-notify-method' What happens when manpage formatting is done.
832 `Man-downcase-section-letters-flag' Force section letters to lower case. 831 `Man-downcase-section-letters-flag' Force section letters to lower case.
833 `Man-circular-pages-flag' Treat multiple manpage list as circular. 832 `Man-circular-pages-flag' Treat multiple manpage list as circular.
834 `Man-auto-section-alist' List of major modes and their section numbers.
835 `Man-section-translations-alist' List of section numbers and their Un*x equiv. 833 `Man-section-translations-alist' List of section numbers and their Un*x equiv.
836 `Man-filter-list' Background manpage filter command. 834 `Man-filter-list' Background manpage filter command.
837 `Man-mode-line-format' Mode line format for Man mode buffers. 835 `Man-mode-line-format' Mode line format for Man mode buffers.
838 `Man-mode-map' Keymap bindings for Man mode buffers. 836 `Man-mode-map' Keymap bindings for Man mode buffers.
839 `Man-mode-hook' Normal hook run on entry to Man mode. 837 `Man-mode-hook' Normal hook run on entry to Man mode.