(find-file-noselect-1, set-visited-file-name):
[emacs.git] / lisp / woman.el
blobf880c6810f95fa44142edc08a71b1eb7e6fdc704
1 ;;; woman.el --- browse UN*X manual pages `wo (without) man'
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006 Free Software Foundation, Inc.
6 ;; Author: Francis J. Wright <F.J.Wright@qmul.ac.uk>
7 ;; Maintainer: FSF
8 ;; Keywords: help, unix
9 ;; Adapted-By: Eli Zaretskii <eliz@gnu.org>
10 ;; Version: see `woman-version'
11 ;; URL: http://centaur.maths.qmul.ac.uk/Emacs/WoMan/
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 ;; Boston, MA 02110-1301, USA.
30 ;;; Commentary:
32 ;; WoMan implements a subset of the formatting performed by the Emacs
33 ;; `man' (or `manual-entry') command to format a UN*X manual `page'
34 ;; for display, but without calling any external programs. It is
35 ;; intended to emulate the whole of the -man macro package, plus those
36 ;; ?roff requests that are most commonly used in man pages. However,
37 ;; the emulation is modified to include the reformatting done by the
38 ;; Emacs `man' command. No hyphenation is performed.
40 ;; Advantages
42 ;; Much more direct, does not require any external programs.
43 ;; Supports completion on man page names.
45 ;; Disadvantages
47 ;; Not a complete emulation. Currently no support for eqn or tbl.
48 ;; Slightly slower for large man pages (but usually faster for
49 ;; small- and medium-size pages).
51 ;; This browser works quite well on simple well-written man files. It
52 ;; works less well on idiosyncratic files that `break the rules' or
53 ;; use the more obscure ?roff requests directly. Current test results
54 ;; are available in the file woman.status.
56 ;; WoMan supports the use of compressed man files via
57 ;; `auto-compression-mode' by turning it on if necessary. But you may
58 ;; need to adjust the user option `woman-file-compression-regexp'.
60 ;; Read on for (currently) the only documentation for WoMan!
62 ;; See also the documentation for the WoMan interactive commands and
63 ;; user option variables, all of which begin with the prefix `woman-'.
64 ;; This can be done most easily by loading WoMan and then running the
65 ;; command `woman-mini-help', or selecting the WoMan menu option `Mini
66 ;; Help' when WoMan is running.
68 ;; WoMan is still under development! Please let me know what doesn't
69 ;; work -- I am adding and improving functionality as testing shows
70 ;; that it is necessary. See below for guidance on reporting bugs.
72 ;; Recommended use
73 ;; ===============
75 ;; Put this in your .emacs:
76 ;; (autoload 'woman "woman"
77 ;; "Decode and browse a UN*X man page." t)
78 ;; (autoload 'woman-find-file "woman"
79 ;; "Find, decode and browse a specific UN*X man-page file." t)
81 ;; Then either (1 -- *RECOMMENDED*): If the `MANPATH' environment
82 ;; variable is set then WoMan will use it; otherwise you may need to
83 ;; reset the Lisp variable `woman-manpath', and you may also want to
84 ;; set the Lisp variable `woman-path'. Please see the online
85 ;; documentation for these variables. Now you can execute the
86 ;; extended command `woman', enter or select a manual entry topic,
87 ;; using completion, and if necessary select a filename, using
88 ;; completion. By default, WoMan suggests the word nearest to the
89 ;; cursor in the current buffer as the topic.
91 ;; Or (2): Execute the extended command `woman-find-file' and enter a
92 ;; filename, using completion. This mode of execution may be useful
93 ;; for temporary files outside the standard UN*X manual directory
94 ;; structure.
96 ;; Or (3): Put the next two sexpr's in your .emacs:
97 ;; (autoload 'woman-dired-find-file "woman"
98 ;; "In dired, run the WoMan man-page browser on this file." t)
99 ;; (add-hook 'dired-mode-hook
100 ;; (lambda ()
101 ;; (define-key dired-mode-map "W" 'woman-dired-find-file)))
102 ;; and open the directory containing the man page file using dired,
103 ;; put the cursor on the file, and press `W'.
105 ;; In each case, the result should (!) be a buffer in Man mode showing
106 ;; a formatted manual entry. When called from WoMan, Man mode should
107 ;; work as advertised, but modified where necessary in the context of
108 ;; WoMan. (However, `Man' will still invoke the standard Emacs
109 ;; manual-browsing facility rather than `WoMan' -- this is
110 ;; intentional!)
112 ;; (By default, WoMan will automatically define the dired keys "W" and
113 ;; "w" when it loads, but only if they are not already defined. This
114 ;; behaviour is controlled by the user option `woman-dired-keys'.
115 ;; Note that the `dired-x' (dired extra) package binds
116 ;; `dired-copy-filename-as-kill' to the key "w" (as pointed out by Jim
117 ;; Davidson), although "W" appears to be really unused. The `dired-x'
118 ;; package will over-write the WoMan binding to "w", whereas (by
119 ;; default) WoMan will not overwrite the `dired-x' binding.)
121 ;; The following is based on suggestions by Guy Gascoigne-Piggford and
122 ;; Juanma Barranquero. If you really want to square the man-woman
123 ;; circle then you might care to define the following bash function in
124 ;; .bashrc:
126 ;; man() { gnudoit -q '(raise-frame (selected-frame)) (woman' \"$1\" ')' ; }
128 ;; If you use Microsoft COMMAND.COM then you can create a file called
129 ;; man.bat somewhere in your path containing the two lines:
131 ;; @echo off
132 ;; gnudoit -q (raise-frame (selected-frame)) (woman \"%1\")
134 ;; and then (e.g. from a command prompt or the Run... option in the
135 ;; Start menu) just execute
137 ;; man man_page_name
140 ;; Using the word at point as the default topic
141 ;; ============================================
143 ;; The `woman' command uses the word nearest to point in the current
144 ;; buffer as the default topic to look up if it matches the name of a
145 ;; manual page installed on the system. The default topic can also be
146 ;; used without confirmation by setting the user-option
147 ;; `woman-use-topic-at-point' to t; thanks to Benjamin Riefenstahl for
148 ;; suggesting this functionality.
150 ;; The variable `woman-use-topic-at-point' can be rebound locally,
151 ;; which may be useful to provide special private key bindings, e.g.
153 ;; (global-set-key "\C-cw"
154 ;; (lambda ()
155 ;; (interactive)
156 ;; (let ((woman-use-topic-at-point t))
157 ;; (woman)))))
160 ;; Customization, Hooks and Imenu
161 ;; ==============================
163 ;; WoMan supports the GNU Emacs 20+ customization facility, and puts
164 ;; a customization group called `WoMan' in the `Help' group under the
165 ;; top-level `Emacs' group. In order to be able to customize WoMan
166 ;; without first loading it, add the following sexp to your .emacs:
168 ;; (defgroup woman nil
169 ;; "Browse UNIX manual pages `wo (without) man'."
170 ;; :tag "WoMan" :group 'help :load "woman")
173 ;; WoMan currently runs two hooks: `woman-pre-format-hook' immediately
174 ;; before formatting a buffer and `woman-post-format-hook' immediately
175 ;; after formatting a buffer. These hooks can be used for special
176 ;; customizations that require code to be executed, etc., although
177 ;; most customization should be possible by setting WoMan user option
178 ;; variables, e.g. in `.emacs' and should NOT require the use of the
179 ;; hooks. `woman-pre-format-hook' might be appropriate for face
180 ;; customization, whereas `woman-post-format-hook' might be
181 ;; appropriate for installing a dynamic menu using `imenu' (although
182 ;; it is better to use the built-in WoMan imenu support).
184 ;; The WoMan menu provides an option to make a contents menu for the
185 ;; current man page (using imenu). Alternatively, if you set the
186 ;; variable `woman-imenu' to `t' then WoMan will do it automatically
187 ;; for every man page. The menu title is the value of the variable
188 ;; `woman-imenu-title', which is "CONTENTS" by default. By default,
189 ;; the menu shows manual sections and subsections, but you can change
190 ;; this by changing the value of `woman-imenu-generic-expression'.
191 ;; This facility is not yet widely tested and may be fooled by obscure
192 ;; man pages that `break the rules'.
194 ;; WoMan is configured not to replace spaces in an imenu *Completion*
195 ;; buffer. For further documentation of the use of imenu, such as
196 ;; menu sorting, see the source file imenu.el, which is distributed
197 ;; with GNU Emacs.
199 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
201 ;; Howard Melman made (essentially) the following suggestions, which
202 ;; are slightly different from the expression that I currently use.
203 ;; You may prefer one of Howard's suggestions, which I think assume
204 ;; that `case-fold-search' is `t' (which it is by default):
206 ;; (setq woman-imenu-generic-expression
207 ;; '((nil "^\\( \\)?\\([A-Z][A-Z ]+[A-Z]\\)[ \t]*$" 2)))
209 ;; will give support for .SH and .SS, though it won't show the heading
210 ;; name hierarchy. If you just want .SH in the imenu then use:
212 ;; (setq woman-imenu-generic-expression
213 ;; '((nil "^\\([A-Z][A-Z ]+[A-Z]\\)[ \t]*$" 1)))
215 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
218 ;; Vertical spacing and blank lines
219 ;; ================================
221 ;; The number of consecutive blank lines in the formatted buffer
222 ;; should be either 0 or 1. A blank line should leave a space like
223 ;; .sp 1 (p. 14). Current policy is to output vertical space only
224 ;; immediately before text is output.
227 ;; Horizontal and vertical spacing and resolution
228 ;; ==============================================
230 ;; WoMan currently assumes 10 characters per inch horizontally, hence
231 ;; a horizontal resolution of 24 basic units, and 5 lines per inch
232 ;; vertically, hence a vertical resolution of 48 basic units. (nroff
233 ;; uses 240 per inch).
236 ;; The *WoMan-Log* buffer
237 ;; ======================
239 ;; This is modelled on the byte-compiler. It logs all files formatted
240 ;; by WoMan, and if WoMan finds anything that it cannot handle then it
241 ;; writes a warning to this buffer. If the variable `woman-show-log'
242 ;; is non-nil (by default it is `nil') then WoMan automatically
243 ;; displays this buffer. Many WoMan warnings can be completely
244 ;; ignored, because they are reporting the fact that WoMan has ignored
245 ;; requests that it is correct to ignore. In some future version this
246 ;; level of paranoia will be reduced, but not until WoMan is more
247 ;; reliable. At present, all warnings should be treated with some
248 ;; suspicion. Uninterpreted escape sequences are also logged (in some
249 ;; cases).
251 ;; Uninterpreted ?roff requests can optionally be left in the
252 ;; formatted buffer to indicate precisely where they occur by
253 ;; resetting the variable `woman-ignore' to `nil' (by default it is
254 ;; `t').
256 ;; Automatic initiation of woman decoding
258 ;; (Probably not a good idea. If you use it, be careful!)
260 ;; Put something like this in your .emacs. The call to
261 ;; set-visited-file-name is to avoid font-locking triggered by
262 ;; automatic major mode selection.
264 ;; (autoload 'woman-decode-region "woman")
266 ;; (setq format-alist
267 ;; (cons
268 ;; '(man "UN*X man-page source format" "\\.\\(TH\\|ig\\) "
269 ;; woman-decode-region nil nil
270 ;; (lambda (arg)
271 ;; set-visited-file-name
272 ;; (file-name-sans-extension buffer-file-name)))))
273 ;; format-alist))
276 ;; Reporting Bugs
277 ;; ==============
279 ;; If WoMan fails completely, or formats a file incorrectly
280 ;; (i.e. obviously wrongly or significantly differently from man) or
281 ;; inelegantly, then please
283 ;; (a) check that you are running the latest version of woman.el
284 ;; available from my web site (see above),
286 ;; (b) check that the problem is not already described in the file
287 ;; woman.status, also available from my web site.
289 ;; If both of the above are true then please email me the entry from
290 ;; the *WoMan-Log* buffer relating to the problem file, together with
291 ;; a brief description of the problem. Please indicate where you got
292 ;; the source file from, but do not send it to me unless I ask you to!
293 ;; Thanks. (There is at present no automated bug-reporting facility
294 ;; for WoMan.)
296 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
298 ;; NOTE:
300 ;; CASE-DEPENDENCE OF FILENAMES. By default, WoMan ignores case in
301 ;; file pathnames only when it seems appropriate. MS-Windows users
302 ;; who want complete case independence should set the NTEmacs variable
303 ;; `w32-downcase-file-names' to `t' and use all lower case when
304 ;; setting WoMan file paths.
306 ;; (1) INCOMPATIBLE CHANGE! WoMan no longer uses a persistent topic
307 ;; cache by default. (It caused too much confusion!) Explicitly set
308 ;; the variable `woman-cache-filename' to save the cache between Emacs
309 ;; sessions. This is recommended only if the command `woman' is too
310 ;; slow the first time that it is run in an Emacs session, while it
311 ;; builds its cache in main memory, which MAY be VERY slow.
313 ;; (2) The user option `woman-cache-level' controls the amount of
314 ;; information cached (in main memory and, optionally, saved to disc).
316 ;; (3) UPDATING THE CACHE. A prefix argument always causes the
317 ;; `woman' command (only) to rebuild its topic cache, and to re-save
318 ;; it to `woman-cache-filename' if this variable has a non-nil value.
319 ;; This is necessary if the NAMES (not contents) of any of the
320 ;; directories or files in the paths specified by `woman-manpath' or
321 ;; `woman-path' change. If WoMan user options that affect the cache
322 ;; are changed then WoMan will automatically update its cache file on
323 ;; disc (if one is in use) the next time it is run in a new Emacs
324 ;; session.
326 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
329 ;; TO DO
330 ;; =====
332 ;; Reconsider case sensitivity of file names.
333 ;; MUST PROCESS .if, .nr IN ORDER ENCOUNTERED IN FILE! (rcsfile, mf).
334 ;; Allow general delimiter in `\v', cf. `\h'.
335 ;; Improve major-mode documentation.
336 ;; Pre-process conditionals in macro bodies if possible for speed?
337 ;; Emulate more complete preprocessor support for tbl (.TS/.TE)
338 ;; Emulate some preprocessor support for eqn (.EQ/.EN)
339 ;; Re-write filling and adjusting code!
340 ;; Allow word wrap at comma (for long option lists)?
341 ;; Buffer list handling not quite right.
342 ;; Make 10 or 12 pitch (cpi) optional -- 12 => ll = 78
343 ;; Use unpaddable space for tabbing?
344 ;; Tidy up handling of fonts when filling and adjusting
345 ;; -- see text/text properties?
346 ;; Improve speed
347 ;; Add font-lock support (for quoted strings, etc.)?
348 ;; Optionally save large files in enriched format?
349 ;; Add apropos facility by searching NAME (?) entry in man files?
350 ;; Documentation -- optional auto-display of formatted WoMan man page?
351 ;; Implement a bug reporter?
352 ;; Support diversion and traps (to some extent) - for Tcl/tk pages?
353 ;; Add a menu of WoMan buffers?
354 ;; Fix .fc properly?
357 ;; Implementation strategy [this description is now well out of date!]
358 ;; -- three main passes, each to process respectively:
360 ;; 1) non-breaking `.' requests including font macros
361 ;; 2) \ escape sequences, mainly special characters and font changes
362 ;; 3) breaking `.' requests, mainly filling and justification
364 ;; For each pass, a control function finds and pre-processes the
365 ;; escape or request and then calls the appropriate function to
366 ;; perform the required formatting. Based originally on enriched.el
367 ;; and format.el.
369 ;; The background information that made this project possible is
370 ;; freely available courtesy of Bell Labs from
371 ;; http://cm.bell-labs.com/7thEdMan/
374 ;; Acknowledgements
375 ;; ================
377 ;; For Heather, Kathryn and Madelyn, the women in my life
378 ;; (although they will probably never use it)!
380 ;; I also thank the following for helpful suggestions, bug reports,
381 ;; code fragments, general interest, etc.:
382 ;; Jari Aalto <jari.aalto@cs.tpu.fi>
383 ;; Dean Andrews <dean@dra.com>
384 ;; Juanma Barranquero <lekktu@gmail.com>
385 ;; Karl Berry <kb@cs.umb.edu>
386 ;; Jim Chapman <jchapman@netcomuk.co.uk>
387 ;; Kin Cho <kin@neoscale.com>
388 ;; Frederic Corne <frederic.corne@erli.fr>
389 ;; Peter Craft <craft@alacritech.com>
390 ;; Charles Curley <ccurley@trib.com>
391 ;; Jim Davidson <jdavidso@teknowledge.com>
392 ;; Kevin D'Elia <Kevin.DElia@mci.com>
393 ;; John Fitch <jpff@maths.bath.ac.uk>
394 ;; Hans Frosch <jwfrosch@rish.b17c.ingr.com>
395 ;; Guy Gascoigne-Piggford <ggp@informix.com>
396 ;; Brian Gorka <gorkab@sanchez.com>
397 ;; Nicolai Henriksen <nhe@lyngso-industri.dk>
398 ;; Thomas Herchenroeder <the@software-ag.de>
399 ;; Alexander Hinds <ahinds@thegrid.net>
400 ;; Stefan Hornburg <sth@hacon.de>
401 ;; Theodore Jump <tjump@cais.com>
402 ;; David Kastrup <dak@gnu.org>
403 ;; Paul Kinnucan <paulk@mathworks.com>
404 ;; Jonas Linde <jonas@init.se>
405 ;; Andrew McRae <andrewm@optimation.co.nz>
406 ;; Howard Melman <howard@silverstream.com>
407 ;; Dennis Pixton <dennis@math.binghamton.edu>
408 ;; T. V. Raman <raman@Adobe.COM>
409 ;; Bruce Ravel <bruce.ravel@nist.gov>
410 ;; Benjamin Riefenstahl <benny@crocodial.de>
411 ;; Kevin Ruland <kruland@seistl.com>
412 ;; Tom Schutter <tom@platte.com>
413 ;; Wei-Xue Shi <wxshi@ma.neweb.ne.jp>
414 ;; Fabio Somenzi <fabio@joplin.colorado.edu>
415 ;; Karel Sprenger <ks@ic.uva.nl>
416 ;; Chris Szurgot <szurgot@itribe.net>
417 ;; Paul A. Thompson <pat@po.cwru.edu>
418 ;; Arrigo Triulzi <arrigo@maths.qmw.ac.uk>
419 ;; Geoff Voelker <voelker@cs.washington.edu>
420 ;; Eli Zaretskii <eliz@gnu.org>
423 ;;; Code:
425 (defvar woman-version "0.551 (beta)" "WoMan version information.")
427 (require 'man)
428 (require 'button)
429 (define-button-type 'WoMan-xref-man-page
430 :supertype 'Man-abstract-xref-man-page
431 'func (lambda (arg)
432 (woman
433 ;; `woman' cannot deal with arguments that contain a
434 ;; section name, like close(2), so strip the section name.
435 (if (string-match Man-reference-regexp arg)
436 (substring arg 0 (match-end 1))
437 arg))))
439 (eval-when-compile ; to avoid compiler warnings
440 (require 'dired)
441 (require 'cl)
442 (require 'apropos))
444 (defun woman-mapcan (fn x)
445 "Return concatenated list of FN applied to successive `car' elements of X.
446 FN must return a list, cons or nil. Useful for splicing into a list."
447 ;; Based on the Standard Lisp function MAPCAN but with args swapped!
448 ;; More concise implementation than the recursive one. -- dak
449 (apply #'nconc (mapcar fn x)))
451 (defun woman-parse-colon-path (paths)
452 "Explode search path string PATHS into a list of directory names.
453 Allow Cygwin colon-separated search paths on Microsoft platforms.
454 Replace null components by calling `woman-parse-man.conf'.
455 As a special case, if PATHS is nil then replace it by calling
456 `woman-parse-man.conf'."
457 ;; Based on suggestions by Jari Aalto and Eli Zaretskii.
458 ;; parse-colon-path returns nil for a null path component and
459 ;; an empty substring of MANPATH denotes the default list.
460 (if (memq system-type '(windows-nt ms-dos))
461 (cond ((null paths)
462 (mapcar 'woman-Cyg-to-Win (woman-parse-man.conf)))
463 ((string-match ";" paths)
464 ;; Assume DOS-style path-list...
465 (woman-mapcan ; splice list into list
466 (lambda (x)
467 (if x
468 (list x)
469 (mapcar 'woman-Cyg-to-Win (woman-parse-man.conf))))
470 (parse-colon-path paths)))
471 ((string-match "\\`[a-zA-Z]:" paths)
472 ;; Assume single DOS-style path...
473 paths)
475 ;; Assume UNIX/Cygwin-style path-list...
476 (woman-mapcan ; splice list into list
477 (lambda (x)
478 (mapcar 'woman-Cyg-to-Win
479 (if x (list x) (woman-parse-man.conf))))
480 (let ((path-separator ":"))
481 (parse-colon-path paths)))))
482 ;; Assume host-default-style path-list...
483 (woman-mapcan ; splice list into list
484 (lambda (x) (if x (list x) (woman-parse-man.conf)))
485 (parse-colon-path (or paths "")))))
487 (defun woman-Cyg-to-Win (file)
488 "Convert an absolute filename FILE from Cygwin to Windows form."
489 ;; Code taken from w32-symlinks.el
490 (if (eq (aref file 0) ?/)
491 ;; Try to use Cygwin mount table via `cygpath.exe'.
492 (condition-case nil
493 (with-temp-buffer
494 ;; cygpath -m file
495 (call-process "cygpath" nil t nil "-m" file)
496 (buffer-substring 1 (buffer-size)))
497 (error
498 ;; Assume no `cygpath' program available.
499 ;; Hack /cygdrive/x/ or /x/ or (obsolete) //x/ to x:/
500 (when (string-match "\\`\\(/cygdrive\\|/\\)?/./" file)
501 (if (match-string 1) ; /cygdrive/x/ or //x/ -> /x/
502 (setq file (substring file (match-end 1))))
503 (aset file 0 (aref file 1)) ; /x/ -> xx/
504 (aset file 1 ?:)) ; xx/ -> x:/
505 file))
506 file))
509 ;;; User options:
511 ;; NB: Group identifiers must be lowercase!
513 (defgroup woman nil
514 "Browse UNIX manual pages `wo (without) man'."
515 :tag "WoMan"
516 :group 'help)
518 (defcustom woman-show-log nil
519 "*If non-nil then show the *WoMan-Log* buffer if appropriate.
520 I.e. if any warning messages are written to it. Default is nil."
521 :type 'boolean
522 :group 'woman)
524 (defcustom woman-pre-format-hook nil
525 "*Hook run by WoMan immediately before formatting a buffer.
526 Change only via `Customization' or the function `add-hook'."
527 :type 'hook
528 :group 'woman)
530 (defcustom woman-post-format-hook nil
531 "*Hook run by WoMan immediately after formatting a buffer.
532 Change only via `Customization' or the function `add-hook'."
533 :type 'hook
534 :group 'woman)
537 ;; Interface options
539 (defgroup woman-interface nil
540 "Interface options for browsing UNIX manual pages `wo (without) man'."
541 :tag "WoMan Interface"
542 :group 'woman)
544 (defcustom woman-man.conf-path
545 (let ((path '("/usr/lib" "/etc")))
546 (if (eq system-type 'windows-nt)
547 (mapcar 'woman-Cyg-to-Win path)
548 path))
549 "*List of dirs to search and/or files to try for man config file.
550 A trailing separator (`/' for UNIX etc.) on directories is optional,
551 and the filename is used if a directory specified is the first to
552 contain the strings \"man\" and \".conf\" (in that order).
553 If MANPATH is not set but a config file is found then it is parsed
554 instead to provide a default value for `woman-manpath'."
555 :type '(repeat string)
556 :group 'woman-interface)
558 (defun woman-parse-man.conf ()
559 "Parse if possible configuration file for man command.
560 Used only if MANPATH is not set or contains null components.
561 Look in `woman-man.conf-path' and return a value for `woman-manpath'.
562 Concatenate data from all lines in the config file of the form
563 MANPATH /usr/man
565 MANDATORY_MANPATH /usr/man
567 OPTIONAL_MANPATH /usr/man"
568 ;; Functionality suggested by Charles Curley.
569 (let ((path woman-man.conf-path)
570 file manpath)
571 (while (and
572 path
573 (not (and
574 (file-readable-p (setq file (car path)))
575 ;; If not a file then find the file:
576 (or (not (file-directory-p file))
577 (and
578 (setq file
579 (directory-files file t "man.*\\.conf" t))
580 (file-readable-p (setq file (car file)))))
581 ;; Parse the file -- if no MANPATH data ignore it:
582 (with-temp-buffer
583 (insert-file-contents file)
584 (while (re-search-forward
585 ;; `\(?: ... \)' is a "shy group"
587 ^[ \t]*\\(?:MANDATORY_\\|OPTIONAL_\\)?MANPATH[ \t]+\\(\\S-+\\)" nil t)
588 (setq manpath (cons (match-string 1) manpath)))
589 manpath))
591 (setq path (cdr path)))
592 (nreverse manpath)))
594 (defcustom woman-manpath
595 (or (woman-parse-colon-path (getenv "MANPATH"))
596 '("/usr/man" "/usr/share/man" "/usr/local/man"))
597 "*List of DIRECTORY TREES to search for UN*X manual files.
598 Each element should be the name of a directory that contains
599 subdirectories of the form `man?', or more precisely subdirectories
600 selected by the value of `woman-manpath-man-regexp'. Non-directory
601 and unreadable files are ignored.
603 If not set then the environment variable MANPATH is used. If no such
604 environment variable is found, the default list is determined by
605 consulting the man configuration file if found, which is determined by
606 the user option `woman-man.conf-path'. An empty substring of MANPATH
607 denotes the default list.
609 Any environment variables (names must have the UN*X-style form $NAME,
610 e.g. $HOME, $EMACSDATA, $emacs_dir) are evaluated first but each
611 element must evaluate to a SINGLE directory name. Trailing `/'s are
612 ignored. (Specific directories in `woman-path' are also searched.)
614 Microsoft platforms:
615 I recommend including drive letters explicitly, e.g.
617 (\"C:/Cygwin/usr/man/\" \"C:/Cygwin/usr/local/man\").
619 The MANPATH environment variable may be set using DOS semi-colon-
620 separated or UN*X/Cygwin colon-separated syntax (but not mixed)."
621 :type '(repeat string)
622 :group 'woman-interface)
624 (defcustom woman-manpath-man-regexp "[Mm][Aa][Nn]"
625 "Regexp to match man directories UNDER `woman-manpath' directories.
626 These normally have names of the form `man?'. Its default value is
627 \"[Mm][Aa][Nn]\", which is case-insensitive mainly for the benefit of
628 Microsoft platforms. Its purpose is to avoid `cat?', `.', `..', etc."
629 ;; Based on a suggestion by Wei-Xue Shi.
630 :type 'string
631 :group 'woman-interface)
633 (defcustom woman-path
634 (if (eq system-type 'ms-dos) '("$DJDIR/info" "$DJDIR/man/cat[1-9onlp]"))
635 "*List of SPECIFIC DIRECTORIES to search for UN*X manual files.
636 For example
638 (\"/emacs/etc\").
640 These directories are searched in addition to the directory trees
641 specified in `woman-manpath'. Each element should be a directory
642 string or nil, which represents the current directory when the path is
643 expanded and cached. However, the last component (only) of each
644 directory string is treated as a regexp \(Emacs, not shell) and the
645 string is expanded into a list of matching directories. Non-directory
646 and unreadable files are ignored. The default value is nil.
648 Any environment variables (which must have the UN*X-style form $NAME,
649 e.g. $HOME, $EMACSDATA, $emacs_dir) are evaluated first but each
650 element must evaluate to a SINGLE directory name (regexp, see above).
651 For example
653 (\"$EMACSDATA\") [or equivalently (\"$emacs_dir/etc\")].
655 Trailing `/'s are discarded. (The directory trees in `woman-manpath'
656 are also searched.) On Microsoft platforms I recommend including
657 drive letters explicitly."
658 :type '(repeat (choice string (const nil)))
659 :group 'woman-interface)
661 (defcustom woman-cache-level 2
662 "*The level of topic caching.
663 1 - cache only the topic and directory lists
664 (the only level before version 0.34 - only for compatibility);
665 2 - cache also the directories for each topic
666 (faster, without using much more memory);
667 3 - cache also the actual filenames for each topic
668 (fastest, but uses twice as much memory).
669 The default value is currently 2, a good general compromise.
670 If the `woman' command is slow to find files then try 3, which may be
671 particularly beneficial with large remote-mounted man directories.
672 Run the `woman' command with a prefix argument or delete the cache
673 file `woman-cache-filename' for a change to take effect.
674 \(Values < 1 behave like 1; values > 3 behave like 3.)"
675 :type '(choice (const :tag "Minimal" 1)
676 (const :tag "Default" 2)
677 (const :tag "Maximal" 3))
678 :group 'woman-interface)
680 (defcustom woman-cache-filename nil
681 "*The full pathname of the WoMan directory and topic cache file.
682 It is used to save and restore the cache between sessions. This is
683 especially useful with remote-mounted man page files! The default
684 value of nil suppresses this action. The `standard' non-nil
685 filename is \"~/.wmncach.el\". Remember that a prefix argument forces
686 the `woman' command to update and re-write the cache."
687 :type '(choice (const :tag "None" nil)
688 (const :tag "~/.wmncach.el" "~/.wmncach.el")
689 file)
690 :group 'woman-interface)
692 (defcustom woman-dired-keys t
693 "*List of `dired' mode keys to define to run WoMan on current file.
694 E.g. '(\"w\" \"W\"), or any non-null atom to automatically define
695 \"w\" and \"W\" if they are unbound, or nil to do nothing.
696 Default is t."
697 :type '(choice (const :tag "None" nil)
698 (repeat string)
699 (other :tag "Auto" t))
700 :group 'woman-interface)
702 (defcustom woman-imenu-generic-expression
703 '((nil "\n\\([A-Z].*\\)" 1) ; SECTION, but not TITLE
704 ("*Subsections*" "^ \\([A-Z].*\\)" 1))
705 "*Imenu support for Sections and Subsections.
706 An alist with elements of the form (MENU-TITLE REGEXP INDEX) --
707 see the documentation for `imenu-generic-expression'."
708 :type 'sexp
709 :group 'woman-interface)
711 (defcustom woman-imenu nil
712 "*If non-nil then WoMan adds a Contents menu to the menubar.
713 It does this by calling `imenu-add-to-menubar'. Default is nil."
714 :type 'boolean
715 :group 'woman-interface)
717 (defcustom woman-imenu-title "CONTENTS"
718 "*The title to use if WoMan adds a Contents menu to the menubar.
719 Default is \"CONTENTS\"."
720 :type 'string
721 :group 'woman-interface)
723 (defcustom woman-use-topic-at-point-default nil
724 ;; `woman-use-topic-at-point' may be let-bound when woman is loaded,
725 ;; in which case its global value does not get defined.
726 ;; `woman-file-name' sets it to this value if it is unbound.
727 "*Default value for `woman-use-topic-at-point'."
728 :type '(choice (const :tag "Yes" t)
729 (const :tag "No" nil))
730 :group 'woman-interface)
732 (defcustom woman-use-topic-at-point woman-use-topic-at-point-default
733 "*Control use of the word at point as the default topic.
734 If non-nil the `woman' command uses the word at point automatically,
735 without interactive confirmation, if it exists as a topic."
736 :type '(choice (const :tag "Yes" t)
737 (const :tag "No" nil))
738 :group 'woman-interface)
740 (defvar woman-file-regexp nil
741 "Regexp used to select (possibly compressed) man source files, e.g.
742 \"\\.\\([0-9lmnt]\\w*\\)\\(\\.\\(g?z\\|bz2\\)\\)?\\'\".
743 Built automatically from the customizable user options
744 `woman-uncompressed-file-regexp' and `woman-file-compression-regexp'.")
746 (defvar woman-uncompressed-file-regexp) ; for the compiler
747 (defvar woman-file-compression-regexp) ; for the compiler
749 (defun set-woman-file-regexp (symbol value)
750 "Bind SYMBOL to VALUE and set `woman-file-regexp' as per user customizations.
751 Used as :set cookie by Customize when customizing the user options
752 `woman-uncompressed-file-regexp' and `woman-file-compression-regexp'."
753 (set-default symbol value)
754 (and (boundp 'woman-uncompressed-file-regexp)
755 (boundp 'woman-file-compression-regexp)
756 (setq woman-file-regexp
757 (concat woman-uncompressed-file-regexp
758 "\\("
759 (substring woman-file-compression-regexp 0 -2)
760 "\\)?\\'"))))
762 (defcustom woman-uncompressed-file-regexp
763 "\\.\\([0-9lmnt]\\w*\\)" ; disallow no extension
764 "*Do not change this unless you are sure you know what you are doing!
765 Regexp used to select man source files (ignoring any compression extension).
767 The SysV standard man pages use two character suffixes, and this is
768 becoming more common in the GNU world. For example, the man pages
769 in the ncurses package include `toe.1m', `form.3x', etc.
771 Note: an optional compression regexp will be appended, so this regexp
772 MUST NOT end with any kind of string terminator such as $ or \\'."
773 :type 'regexp
774 :set 'set-woman-file-regexp
775 :group 'woman-interface)
777 (defcustom woman-file-compression-regexp
778 "\\.\\(g?z\\|bz2\\)\\'"
779 "*Do not change this unless you are sure you know what you are doing!
780 Regexp used to match compressed man file extensions for which
781 decompressors are available and handled by auto-compression mode,
782 e.g. \"\\\\.\\\\(g?z\\\\|bz2\\\\)\\\\'\" for `gzip' or `bzip2'.
783 Should begin with \\. and end with \\' and MUST NOT be optional."
784 ;; Should be compatible with car of
785 ;; `jka-compr-file-name-handler-entry', but that is unduly
786 ;; complicated, includes an inappropriate extension (.tgz) and is
787 ;; not loaded by default!
788 :type 'regexp
789 :set 'set-woman-file-regexp
790 :group 'woman-interface)
792 (defcustom woman-use-own-frame ; window-system
793 (or (and (fboundp 'display-graphic-p) (display-graphic-p)) ; Emacs 21
794 (memq window-system '(x w32))) ; Emacs 20
795 "*If non-nil then use a dedicated frame for displaying WoMan windows.
796 Only useful when run on a graphic display such as X or MS-Windows."
797 :type 'boolean
798 :group 'woman-interface)
801 ;; Formatting options
803 (defgroup woman-formatting nil
804 "Formatting options for browsing UNIX manual pages `wo (without) man'."
805 :tag "WoMan Formatting"
806 :group 'woman)
808 (defcustom woman-fill-column 65
809 "*Right margin for formatted text -- default is 65."
810 :type 'integer
811 :group 'woman-formatting)
813 (defcustom woman-fill-frame nil
814 ;; Based loosely on a suggestion by Theodore Jump:
815 "*If non-nil then most of the window width is used."
816 :type 'boolean
817 :group 'woman-formatting)
819 (defcustom woman-default-indent 5
820 "*Default prevailing indent set by -man macros -- default is 5.
821 Set this variable to 7 to emulate GNU man formatting."
822 :type 'integer
823 :group 'woman-formatting)
825 (defcustom woman-bold-headings t
826 "*If non-nil then embolden section and subsection headings. Default is t.
827 Heading emboldening is NOT standard `man' behavior."
828 :type 'boolean
829 :group 'woman-formatting)
831 (defcustom woman-ignore t
832 "*If non-nil then unrecognized requests etc. are ignored. Default is t.
833 This gives the standard ?roff behavior. If nil then they are left in
834 the buffer, which may aid debugging."
835 :type 'boolean
836 :group 'woman-formatting)
838 (defcustom woman-preserve-ascii t
839 "*If non-nil, preserve ASCII characters in the WoMan buffer.
840 Otherwise, to save time, some backslashes and spaces may be
841 represented differently (as the values of the variables
842 `woman-escaped-escape-char' and `woman-unpadded-space-char'
843 respectively) so that the buffer content is strictly wrong even though
844 it should display correctly. This should be irrelevant unless the
845 buffer text is searched, copied or saved to a file."
846 ;; This option should probably be removed!
847 :type 'boolean
848 :group 'woman-formatting)
850 (defcustom woman-emulation 'nroff
851 "*WoMan emulation, currently either nroff or troff. Default is nroff.
852 Troff emulation is experimental and largely untested.
853 \(Add groff later?)"
854 :type '(choice (const nroff) (const troff))
855 :group 'woman-formatting)
858 ;; Faces:
860 (defgroup woman-faces nil
861 "Face options for browsing UNIX manual pages `wo (without) man'."
862 :tag "WoMan Faces"
863 :group 'woman
864 :group 'faces)
866 (defcustom woman-fontify
867 (or (and (fboundp 'display-color-p) (display-color-p))
868 (and (fboundp 'display-graphic-p) (display-graphic-p))
869 (x-display-color-p))
870 "*If non-nil then WoMan assumes that face support is available.
871 It defaults to a non-nil value if the display supports either colors
872 or different fonts."
873 :type 'boolean
874 :group 'woman-faces)
876 ;; This is overkill! Troff uses just italic; Nroff uses just underline.
877 ;; You should probably select either italic or underline as you prefer, but
878 ;; not both, although italic and underline work together perfectly well!
879 (defface woman-italic
880 `((((min-colors 88) (background light))
881 (:slant italic :underline t :foreground "red1"))
882 (((background light)) (:slant italic :underline t :foreground "red"))
883 (((background dark)) (:slant italic :underline t)))
884 "Face for italic font in man pages."
885 :group 'woman-faces)
886 ;; backward-compatibility alias
887 (put 'woman-italic-face 'face-alias 'woman-italic)
889 (defface woman-bold
890 '((((min-colors 88) (background light)) (:weight bold :foreground "blue1"))
891 (((background light)) (:weight bold :foreground "blue"))
892 (((background dark)) (:weight bold :foreground "green2")))
893 "Face for bold font in man pages."
894 :group 'woman-faces)
895 ;; backward-compatibility alias
896 (put 'woman-bold-face 'face-alias 'woman-bold)
898 ;; Brown is a good compromise: it is distinguishable from the default
899 ;; but not enough so to make font errors look terrible. (Files that use
900 ;; non-standard fonts seem to do so badly or in idiosyncratic ways!)
901 (defface woman-unknown
902 '((((background light)) (:foreground "brown"))
903 (((min-colors 88) (background dark)) (:foreground "cyan1"))
904 (((background dark)) (:foreground "cyan")))
905 "Face for all unknown fonts in man pages."
906 :group 'woman-faces)
907 ;; backward-compatibility alias
908 (put 'woman-unknown-face 'face-alias 'woman-unknown)
910 (defface woman-addition
911 '((t (:foreground "orange")))
912 "Face for all WoMan additions to man pages."
913 :group 'woman-faces)
914 ;; backward-compatibility alias
915 (put 'woman-addition-face 'face-alias 'woman-addition)
917 (defun woman-default-faces ()
918 "Set foreground colors of italic and bold faces to their default values."
919 (interactive)
920 (face-spec-set 'woman-italic (face-user-default-spec 'woman-italic))
921 (face-spec-set 'woman-bold (face-user-default-spec 'woman-bold)))
923 (defun woman-monochrome-faces ()
924 "Set foreground colors of italic and bold faces to that of the default face.
925 This is usually either black or white."
926 (interactive)
927 (set-face-foreground 'woman-italic 'unspecified)
928 (set-face-foreground 'woman-bold 'unspecified))
930 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
931 ;; Experimental font support, initially only for MS-Windows.
932 (defconst woman-font-support
933 (eq window-system 'w32) ; Support X later!
934 "If non-nil then non-ASCII characters and symbol font supported.")
936 (defun woman-select-symbol-fonts (fonts)
937 "Select symbol fonts from a list FONTS of font name strings."
938 (let (symbol-fonts)
939 ;; With NTEmacs 20.5, the PATTERN option to `x-list-fonts' does
940 ;; not seem to work and fonts may be repeated, so ...
941 (while fonts
942 (and (string-match "-Symbol-" (car fonts))
943 (not (member (car fonts) symbol-fonts))
944 (setq symbol-fonts (cons (car fonts) symbol-fonts)))
945 (setq fonts (cdr fonts)))
946 symbol-fonts))
948 (when woman-font-support
949 (make-face 'woman-symbol)
951 ;; Set the symbol font only if `woman-use-symbol-font' is true, to
952 ;; avoid unnecessarily upsetting the line spacing in NTEmacs 20.5!
954 (defcustom woman-use-extended-font t
955 "*If non-nil then may use non-ASCII characters from the default font."
956 :type 'boolean
957 :group 'woman-faces)
959 (defcustom woman-use-symbol-font nil
960 "*If non-nil then may use the symbol font.
961 It is off by default, mainly because it may change the line spacing
962 \(in NTEmacs 20.5)."
963 :type 'boolean
964 :group 'woman-faces)
966 (defconst woman-symbol-font-list
967 (or (woman-select-symbol-fonts (x-list-fonts "*" 'default))
968 (woman-select-symbol-fonts (x-list-fonts "*")))
969 "Symbol font(s), preferably same size as default when WoMan was loaded.")
971 (defcustom woman-symbol-font (car woman-symbol-font-list)
972 "*A string describing the symbol font to use for special characters.
973 It should be compatible with, and the same size as, the default text font.
974 Under MS-Windows, the default is
975 \"-*-Symbol-normal-r-*-*-*-*-96-96-p-*-ms-symbol\"."
976 :type `(choice
977 ,@(mapcar (lambda (x) (list 'const x))
978 woman-symbol-font-list)
979 string)
980 :group 'woman-faces)
984 ;; For non windows-nt ...
985 (defvar woman-use-extended-font nil)
986 (defvar woman-use-symbol-font nil)
987 (defvar woman-symbol-font nil)
988 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
991 ;;; Internal variables:
993 (defconst woman-justify-list
994 '(left right center full)
995 "Justify styles for `fill-region-as-paragraph'.")
996 (defconst woman-adjust-left 0 ; == adjust off, noadjust
997 "Adjustment indicator `l' -- adjust left margin only.")
998 (defconst woman-adjust-right 1
999 "Adjustment indicator `r' -- adjust right margin only.")
1000 (defconst woman-adjust-center 2
1001 "Adjustment indicator `c' -- center.")
1002 (defconst woman-adjust-both 3 ; default -- adj,both
1003 "Adjustment indicator `b' or `n' -- adjust both margins.")
1005 (defvar woman-adjust woman-adjust-both
1006 "Current adjustment number-register value.")
1007 (defvar woman-adjust-previous woman-adjust
1008 "Previous adjustment number-register value.")
1009 (defvar woman-justify
1010 (nth woman-adjust woman-justify-list) ; use vector?
1011 "Current justification style for `fill-region-as-paragraph'.")
1012 (defvar woman-justify-previous woman-justify
1013 "Previous justification style for `fill-region-as-paragraph'.")
1015 (defvar woman-left-margin woman-default-indent
1016 "Current left margin.")
1017 (defvar woman-prevailing-indent woman-default-indent
1018 "Current prevailing indent.")
1019 (defvar woman-interparagraph-distance 1
1020 "Interparagraph distance in lines.
1021 Set by .PD; used by .SH, .SS, .TP, .LP, .PP, .P, .IP, .HP.")
1022 (defvar woman-leave-blank-lines nil
1023 "Blank lines to leave as vertical space.")
1024 (defconst woman-tab-width 5
1025 "Default tab width set by -man macros.")
1026 (defvar woman-nofill nil
1027 "Current fill mode: nil for filling.")
1028 (defvar woman-RS-left-margin nil
1029 "Left margin stack for nested use of `.RS/.RE'.")
1030 (defvar woman-RS-prevailing-indent nil
1031 "Prevailing indent stack for nested use of `.RS/.RE'.")
1032 (defvar woman-nospace nil
1033 "Current no-space mode: nil for normal spacing.
1034 Set by `.ns' request; reset by any output or `.rs' request")
1036 (defsubst woman-reset-nospace ()
1037 "Set `woman-nospace' to nil."
1038 (setq woman-nospace nil))
1040 (defconst woman-request-regexp "^[.'][ \t]*\\(\\S +\\) *"
1041 ;; Was "^\\.[ \t]*\\([a-z0-9]+\\) *" but cvs.1 uses a macro named
1042 ;; "`" and CGI.man uses a macro named "''"!
1043 ;; CGI.man uses ' as control character in places -- it *should*
1044 ;; suppress breaks!
1045 ;; Could end with "\\( +\\|$\\)" instead of " *"
1046 "Regexp to match a ?roff request plus trailing white space.")
1048 (defvar woman-imenu-done nil
1049 "Buffer-local: set to true if function `woman-imenu' has been called.")
1050 (make-variable-buffer-local 'woman-imenu-done)
1052 ;; From imenu.el -- needed when reformatting a file in its old buffer.
1053 ;; The latest buffer index used to update the menu bar menu.
1054 (eval-when-compile
1055 (require 'imenu))
1056 (make-variable-buffer-local 'imenu--last-menubar-index-alist)
1058 (defvar woman-buffer-alist nil
1059 "An alist representing WoMan buffers that are already decoded.
1060 Each element is of the form (FILE-NAME . BUFFER-NAME).")
1062 (defvar woman-buffer-number 0
1063 "Ordinal number of current buffer entry in `woman-buffer-alist'.
1064 The ordinal numbers start from 0.")
1066 (defvar woman-if-conditions-true '(?n ?e ?o)
1067 "List of one-character built-in condition names that are true.
1068 Should include ?e, ?o (page even/odd) and either ?n (nroff) or ?t (troff).
1069 Default is '(?n ?e ?o). Set via `woman-emulation'.")
1072 ;;; Specialized utility functions:
1074 ;;; Fast deletion without saving on the kill ring (cf. simple.el):
1076 (defun woman-delete-line (&optional arg)
1077 "Delete rest of current line; if all blank then delete thru newline.
1078 With a numeric argument ARG, delete that many lines from point.
1079 Negative arguments delete lines backward."
1080 ;; This is a non-interactive version of kill-line in simple.el that
1081 ;; deletes instead of killing and assumes kill-whole-line is nil,
1082 ;; which is essential!
1083 (delete-region (point)
1084 (progn
1085 (if arg
1086 (forward-line arg)
1087 (if (eobp)
1088 (signal 'end-of-buffer nil))
1089 (if (looking-at "[ \t]*$")
1090 (forward-line 1)
1091 (end-of-line)))
1092 (point))))
1094 (defsubst woman-delete-whole-line ()
1095 "Delete current line from beginning including eol."
1096 (beginning-of-line)
1097 (woman-delete-line 1))
1099 (defsubst woman-delete-following-space ()
1100 "Delete all spaces and tabs FOLLOWING point (cf. `delete-horizontal-space')."
1101 ;; cf. delete-horizontal-space in simple.el:
1102 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
1104 (defsubst woman-delete-match (subexp)
1105 "Delete subexpression SUBEXP of buffer text matched by last search."
1106 (delete-region (match-beginning subexp) (match-end subexp)))
1108 ;; delete-char does not kill by default
1109 ;; delete-backward-char does not kill by default
1110 ;; delete-horizontal-space does not kill
1111 ;; delete-blank-lines does not kill
1114 ;;; File handling:
1116 (defvar woman-expanded-directory-path nil
1117 "Expanded directory list cache. Resetting to nil forces update.")
1119 (defvar woman-topic-all-completions nil
1120 "Expanded topic alist cache. Resetting to nil forces update.")
1122 ;;;###autoload
1123 (defun woman (&optional topic re-cache)
1124 "Browse UN*X man page for TOPIC (Without using external Man program).
1125 The major browsing mode used is essentially the standard Man mode.
1126 Choose the filename for the man page using completion, based on the
1127 topic selected from the directories specified in `woman-manpath' and
1128 `woman-path'. The directory expansions and topics are cached for
1129 speed, but a non-nil interactive argument forces the caches to be
1130 updated (e.g. to re-interpret the current directory).
1132 Used non-interactively, arguments are optional: if given then TOPIC
1133 should be a topic string and non-nil RE-CACHE forces re-caching."
1134 (interactive (list nil current-prefix-arg))
1135 ;; The following test is for non-interactive calls via gnudoit etc.
1136 (if (or (not (stringp topic)) (string-match "\\S " topic))
1137 (let ((file-name (woman-file-name topic re-cache)))
1138 (if file-name
1139 (woman-find-file file-name)
1140 (message
1141 "WoMan Error: No matching manual files found in search path")
1142 (ding))
1144 (message "WoMan Error: No topic specified in non-interactive call")
1145 (ding))
1148 ;; Allow WoMan to be called via the standard Help menu:
1149 (define-key-after menu-bar-manuals-menu [woman]
1150 '(menu-item "Read Man Page (WoMan)..." woman
1151 :help "Man-page documentation Without Man") t)
1153 (defvar woman-cached-data nil
1154 "A list of cached data used to determine cache validity.
1155 Set from the cache by `woman-read-directory-cache'.")
1157 (defun woman-cached-data ()
1158 "Generate a list of data used to determine cache validity.
1159 Called both to generate and to check the cache!"
1160 ;; Must use substituted paths because values of env vars may change!
1161 (list woman-cache-level
1162 (mapcar 'substitute-in-file-name woman-manpath)
1163 (mapcar 'substitute-in-file-name woman-path)))
1165 (defun woman-read-directory-cache ()
1166 "Load the directory and topic cache.
1167 It is loaded from the file named by the variable `woman-cache-filename'.
1168 Return t if the file exists, nil otherwise."
1169 (and
1170 woman-cache-filename
1171 (load woman-cache-filename t nil t) ; file exists
1172 (equal woman-cached-data (woman-cached-data)))) ; cache valid
1174 (defun woman-write-directory-cache ()
1175 "Save the directory and topic cache.
1176 It is saved to the file named by the variable `woman-cache-filename'."
1177 (if woman-cache-filename
1178 (save-excursion ; to restore current buffer
1179 ;; Make a temporary buffer; name starting with space "hides" it.
1180 (let ((standard-output
1181 (set-buffer (generate-new-buffer "WoMan tmp buffer")))
1182 (backup-inhibited t))
1183 ;; (switch-to-buffer standard-output t) ; only for debugging
1184 (buffer-disable-undo standard-output)
1185 (princ
1186 ";;; WoMan directory and topic cache -- generated automatically\n")
1187 (print
1188 ;; For data validity check:
1189 `(setq woman-cached-data ',(woman-cached-data)))
1190 (print
1191 `(setq woman-expanded-directory-path
1192 ',woman-expanded-directory-path))
1193 (print
1194 `(setq woman-topic-all-completions
1195 ',woman-topic-all-completions))
1196 (write-file woman-cache-filename) ; write CURRENT buffer
1197 (kill-buffer standard-output)
1198 ))))
1200 (defvaralias 'woman-topic-history 'Man-topic-history)
1201 (defvar woman-file-history nil "File-name read history.")
1203 (defun woman-file-name (topic &optional re-cache)
1204 "Get the name of the UN*X man-page file describing a chosen TOPIC.
1205 When `woman' is called interactively, the word at point may be
1206 automatically used as the topic, if the value of the user option
1207 `woman-use-topic-at-point' is non-nil. Return nil if no file can
1208 be found. Optional argument RE-CACHE, if non-nil, forces the
1209 cache to be re-read."
1210 ;; Handle the caching of the directory and topic lists:
1211 (if (and (not re-cache)
1213 (and woman-expanded-directory-path woman-topic-all-completions)
1214 (woman-read-directory-cache)))
1216 (message "Building list of manual directory expansions...")
1217 (setq woman-expanded-directory-path
1218 (woman-expand-directory-path woman-manpath woman-path))
1219 (message "Building completion list of all manual topics...")
1220 (setq woman-topic-all-completions
1221 (woman-topic-all-completions woman-expanded-directory-path))
1222 (woman-write-directory-cache))
1223 ;; There is a problem in that I want to offer case-insensitive
1224 ;; completions, but to return only a case-sensitive match. This
1225 ;; does not seem to work properly by default, so I re-do the
1226 ;; completion if necessary.
1227 (let (files
1228 (default (current-word)))
1229 (or (stringp topic)
1230 (and (if (boundp 'woman-use-topic-at-point)
1231 woman-use-topic-at-point
1232 ;; Was let-bound when file loaded, so ...
1233 (setq woman-use-topic-at-point woman-use-topic-at-point-default))
1234 (setq topic (or (current-word t) "")) ; only within or adjacent to word
1235 (test-completion topic woman-topic-all-completions))
1236 (setq topic
1237 (let* ((word-at-point (current-word))
1238 (default
1239 (when (and word-at-point
1240 (test-completion
1241 word-at-point woman-topic-all-completions))
1242 word-at-point)))
1243 (completing-read
1244 (if default
1245 (format "Manual entry (default %s): " default)
1246 "Manual entry: ")
1247 woman-topic-all-completions nil 1
1249 'woman-topic-history
1250 default))))
1251 ;; Note that completing-read always returns a string.
1252 (if (= (length topic) 0)
1253 nil ; no topic, so no file!
1254 (cond
1255 ((setq files (woman-file-name-all-completions topic)))
1256 ;; Complete topic more carefully, i.e. use the completion
1257 ;; rather than the string entered by the user:
1258 ((setq files (all-completions topic woman-topic-all-completions))
1259 (while (/= (length topic) (length (car files)))
1260 (setq files (cdr files)))
1261 (setq files (woman-file-name-all-completions (car files)))))
1262 (cond
1263 ((null files) nil) ; no file found for topic.
1264 ((null (cdr files)) (car (car files))) ; only 1 file for topic.
1266 ;; Multiple files for topic, so must select 1.
1267 ;; Unread the command event (TAB = ?\t = 9) that runs the command
1268 ;; `minibuffer-complete' in order to automatically complete the
1269 ;; minibuffer contents as far as possible.
1270 (setq unread-command-events '(9)) ; and delete any type-ahead!
1271 (completing-read "Manual file: " files nil 1
1272 (try-completion "" files) 'woman-file-history))))))
1274 (defun woman-select (predicate list)
1275 "Select unique elements for which PREDICATE is true in LIST.
1276 \(Note that this function changes the value of LIST.)"
1277 ;; Intended to be fast by avoiding recursion and list copying.
1278 (while (and list
1280 (member (car list) (cdr list))
1281 (not (funcall predicate (car list)))))
1282 (setq list (cdr list)))
1283 (if list
1284 (let ((newlist list) cdr_list)
1285 (while (setq cdr_list (cdr list))
1286 (if (and
1287 (not (member (car cdr_list) (cdr cdr_list)))
1288 (funcall predicate (car cdr_list)))
1289 (setq list cdr_list)
1290 (setcdr list (cdr cdr_list)))
1292 newlist)))
1294 (defun woman-file-readable-p (dir)
1295 "Return t if DIR is readable, otherwise log a warning."
1296 (or (file-readable-p dir)
1297 (WoMan-warn "Ignoring unreadable `manpath' directory tree `%s'!" dir)))
1299 (defun woman-directory-files (head dir)
1300 "Return a sorted list of files in directory HEAD matching regexp in DIR.
1301 Value is a sorted list of the absolute pathnames of all the files in
1302 directory HEAD, or the current directory if HEAD is nil, that match the
1303 regexp that is the final component of DIR. Log a warning if list is empty."
1304 (or (directory-files
1305 (or head (directory-file-name default-directory)) ; was "."
1307 (file-name-nondirectory dir))
1308 (WoMan-warn "No directories match `woman-path' entry `%s'!" dir)))
1310 (defun woman-file-accessible-directory-p (dir)
1311 "Return t if DIR is accessible, otherwise log a warning."
1312 (or (file-accessible-directory-p dir)
1313 (WoMan-warn "Ignoring inaccessible `man-page' directory `%s'!" dir)))
1315 (defun woman-expand-directory-path (woman-manpath woman-path)
1316 "Expand the manual directories in WOMAN-MANPATH and WOMAN-PATH.
1317 WOMAN-MANPATH should be a list of general manual directories, while
1318 WOMAN-PATH should be a list of specific manual directory regexps.
1319 Ignore any paths that are unreadable or not directories."
1320 ;; Allow each path to be a single string or a list of strings:
1321 (if (not (listp woman-manpath)) (setq woman-manpath (list woman-manpath)))
1322 (if (not (listp woman-path)) (setq woman-path (list woman-path)))
1323 (let (dir head dirs)
1324 (while woman-manpath
1325 (setq dir (car woman-manpath)
1326 woman-manpath (cdr woman-manpath))
1327 (if (and dir (woman-file-readable-p dir))
1328 ;; NB: `parse-colon-path' creates null elements for
1329 ;; redundant (semi-)colons and trailing `/'s!
1330 ;; If does not actually matter here if dir ends with `/'.
1331 ;; Need regexp "man" here to avoid "cat?", `.', `..', etc.
1332 (setq dir (woman-canonicalize-dir dir)
1333 dirs (nconc dirs (directory-files
1334 dir t woman-manpath-man-regexp)))))
1335 (while woman-path
1336 (setq dir (car woman-path)
1337 woman-path (cdr woman-path))
1338 (if (or (null dir)
1339 (null (setq dir (woman-canonicalize-dir dir)
1340 head (file-name-directory dir)))
1341 (woman-file-readable-p head))
1342 (setq dirs
1343 (if dir
1344 (nconc dirs (woman-directory-files head dir))
1345 (cons (directory-file-name default-directory) dirs))
1346 ;; was "." -- at head of list for later filtering
1348 (woman-select 'woman-file-accessible-directory-p dirs)))
1350 (defun woman-canonicalize-dir (dir)
1351 "Canonicalize the directory name DIR.
1352 Any UN*X-style environment variables are evaluated first."
1353 (setq dir (expand-file-name (substitute-in-file-name dir)))
1354 ;; A path that ends with / matches all directories in it,
1355 ;; including `.' and `..', so remove any trailing / !!!
1356 (if (string= (substring dir -1) "/")
1357 (setq dir (substring dir 0 -1)))
1358 (if (memq system-type '(windows-nt ms-dos cygwin)) ; what else?
1359 ;; Match capitalization used by `file-name-directory':
1360 (setq dir (concat (file-name-directory dir)
1361 (file-name-nondirectory dir))))
1362 dir)
1364 (defsubst woman-not-member (dir path)
1365 "Return t if DIR is not a member of the list PATH, nil otherwise.
1366 If DIR is `.' it is first replaced by the current directory."
1367 (not (member dir path)))
1369 (defun woman-topic-all-completions (path)
1370 "Return an alist of the man files in all man directories in the list PATH.
1371 The cdr of each alist element is the path-index / filename."
1372 ;; Support 3 levels of caching: each element of the alist `files'
1373 ;; will be a list of the first `woman-cache-level' elements of the
1374 ;; following list: (topic path-index filename). This alist `files'
1375 ;; is re-processed by `woman-topic-all-completions-merge'.
1376 (let (dir files (path-index 0)) ; indexing starts at zero
1377 (while path
1378 (setq dir (pop path))
1379 (if (woman-not-member dir path) ; use each directory only once!
1380 (push (woman-topic-all-completions-1 dir path-index)
1381 files))
1382 (setq path-index (1+ path-index)))
1383 ;; Uniquefy topics:
1384 ;; Concate all lists with a single nconc call to
1385 ;; avoid retraversing the first lists repeatedly -- dak
1386 (woman-topic-all-completions-merge
1387 (apply #'nconc files))))
1389 (defun woman-topic-all-completions-1 (dir path-index)
1390 "Return an alist of the man topics in directory DIR with index PATH-INDEX.
1391 A topic is a filename sans type-related extensions.
1392 Support 3 levels of caching: each element of the alist will be a list
1393 of the first `woman-cache-level' elements from the following list:
1394 \(topic path-index filename)."
1395 ;; This function used to check that each file in the directory was
1396 ;; not itself a directory, but this is very slow and should be
1397 ;; unnecessary. So let us assume that `woman-file-regexp' will
1398 ;; filter out any directories, which probably should not be there
1399 ;; anyway, i.e. it is a user error!
1401 ;; Don't sort files: we do that when merging, anyway. -- dak
1402 (let (newlst (lst (directory-files dir nil woman-file-regexp t))
1403 ;; Make an explicit regexp for stripping extension and
1404 ;; compression extension: file-name-sans-extension is a
1405 ;; far too costly function. -- dak
1406 (ext (format "\\(\\.[^.\\/]*\\)?\\(%s\\)?\\'"
1407 woman-file-compression-regexp)))
1408 ;; Use a loop instead of mapcar in order to avoid the speed
1409 ;; penalty of binding function arguments. -- dak
1410 (dolist (file lst newlst)
1411 (push
1412 (cons
1413 (if (string-match ext file)
1414 (substring file 0 (match-beginning 0))
1415 file)
1416 (and (> woman-cache-level 1)
1417 (cons
1418 path-index
1419 (and (> woman-cache-level 2)
1420 (list file)))))
1421 newlst))))
1423 (defun woman-topic-all-completions-merge (alist)
1424 "Merge the alist ALIST so that the keys are unique.
1425 Also make each path-info component into a list.
1426 \(Note that this function changes the value of ALIST.)"
1427 ;; Replaces unreadably "optimized" O(n^2) implementation.
1428 ;; Instead we use sorting to merge stuff efficiently. -- dak
1429 (let (elt newalist)
1430 ;; Sort list into reverse order
1431 (setq alist (sort alist (lambda(x y) (string< (car y) (car x)))))
1432 ;; merge duplicate keys.
1433 (if (> woman-cache-level 1)
1434 (while alist
1435 (setq elt (pop alist))
1436 (if (equal (car elt) (caar newalist))
1437 (unless (member (cdr elt) (cdar newalist))
1438 (setcdr (car newalist) (cons (cdr elt)
1439 (cdar newalist))))
1440 (setcdr elt (list (cdr elt)))
1441 (push elt newalist)))
1442 ;; woman-cache-level = 1 => elements are single-element lists ...
1443 (while alist
1444 (setq elt (pop alist))
1445 (unless (equal (car elt) (caar newalist))
1446 (push elt newalist))))
1447 newalist))
1449 (defun woman-file-name-all-completions (topic)
1450 "Return an alist of the files in all man directories that match TOPIC."
1451 ;; Support 3 levels of caching: each element of
1452 ;; woman-topic-all-completions is a list of one of the forms:
1453 ;; (topic)
1454 ;; (topic (path-index) (path-index) ... )
1455 ;; (topic (path-index filename) (path-index filename) ... )
1456 ;; where the are no duplicates in the value lists.
1457 ;; Topic must match first `word' of filename, so ...
1458 (let ((topic-regexp
1459 (concat
1460 "\\`" (regexp-quote topic) ; first `word'
1461 "\\(\\..+\\)*" ; optional subsequent `words'
1462 woman-file-regexp)) ; extension
1463 (topics woman-topic-all-completions)
1464 (path woman-expanded-directory-path)
1465 dir files)
1466 (if (cdr (car topics))
1467 ;; Use cached path-info to locate files for each topic:
1468 (let ((path-info (cdr (assoc topic topics)))
1469 filename)
1470 (while path-info
1471 (setq dir (nth (car (car path-info)) path)
1472 filename (car (cdr (car path-info)))
1473 path-info (cdr path-info)
1474 files (nconc files
1475 ;; Find the actual file name:
1476 (if filename
1477 (list (concat dir "/" filename))
1478 (directory-files dir t topic-regexp)
1479 )))))
1480 ;; Search path for the files for each topic:
1481 (while path
1482 (setq dir (car path)
1483 path (cdr path))
1484 (if (woman-not-member dir path) ; use each directory only once!
1485 (setq files (nconc files
1486 (directory-files dir t topic-regexp))))
1488 (mapcar 'list files)
1492 ;;; dired support
1494 (defun woman-dired-define-key (key)
1495 "Bind the argument KEY to the command `woman-dired-find-file'."
1496 (define-key dired-mode-map key 'woman-dired-find-file))
1498 (defsubst woman-dired-define-key-maybe (key)
1499 "If KEY is undefined in Dired, bind it to command `woman-dired-find-file'."
1500 (if (or (eq (lookup-key dired-mode-map key) 'undefined)
1501 (null (lookup-key dired-mode-map key)))
1502 (woman-dired-define-key key)))
1504 (defun woman-dired-define-keys ()
1505 "Define dired keys to run WoMan according to `woman-dired-keys'."
1506 (if woman-dired-keys
1507 (if (listp woman-dired-keys)
1508 (mapcar 'woman-dired-define-key woman-dired-keys)
1509 (woman-dired-define-key-maybe "w")
1510 (woman-dired-define-key-maybe "W")))
1511 (define-key-after (lookup-key dired-mode-map [menu-bar immediate])
1512 [woman] '("Read Man Page (WoMan)" . woman-dired-find-file) 'view))
1514 (if (featurep 'dired)
1515 (woman-dired-define-keys)
1516 (add-hook 'dired-mode-hook 'woman-dired-define-keys))
1518 ;;;###autoload
1519 (defun woman-dired-find-file ()
1520 "In dired, run the WoMan man-page browser on this file."
1521 (interactive)
1522 ;; dired-get-filename is defined in dired.el
1523 (woman-find-file (dired-get-filename)))
1526 ;;; tar-mode support
1528 (defun woman-tar-extract-file ()
1529 "In tar mode, run the WoMan man-page browser on this file."
1530 (interactive)
1531 (or (eq major-mode 'tar-mode)
1532 (error "`woman-tar-extract-file' can be used only in `tar-mode'"))
1533 (buffer-disable-undo)
1534 (let (global-font-lock-mode)
1535 (funcall (symbol-function 'tar-extract)) ; defined in tar-mode
1536 (let ((WoMan-current-file buffer-file-name)) ; used for message logging
1537 (rename-buffer
1538 (woman-make-bufname (file-name-nondirectory buffer-file-name)))
1539 (woman-process-buffer)
1540 (goto-char (point-min)))))
1542 ;; There is currently no `tar-mode-hook' so use ...
1543 (eval-after-load "tar-mode"
1544 '(progn
1545 (define-key tar-mode-map "w" 'woman-tar-extract-file)
1546 (define-key-after (lookup-key tar-mode-map [menu-bar immediate])
1547 [woman] '("Read Man Page (WoMan)" . woman-tar-extract-file) 'view)))
1550 (defvar woman-last-file-name nil
1551 "The full pathname of the last file formatted by WoMan.")
1553 (defun woman-reformat-last-file ()
1554 "Reformat last file, e.g. after changing fill column."
1555 (interactive)
1556 (if woman-last-file-name
1557 (woman-find-file woman-last-file-name t)
1558 (call-interactively 'woman-find-file)))
1560 ;;;###autoload
1561 (defun woman-find-file (file-name &optional reformat)
1562 "Find, decode and browse a specific UN*X man-page source file FILE-NAME.
1563 Use existing buffer if possible; reformat only if prefix arg given.
1564 When called interactively, optional argument REFORMAT forces reformatting
1565 of an existing WoMan buffer formatted earlier.
1566 No external programs are used, except that `gunzip' will be used to
1567 decompress the file if appropriate. See the documentation for the
1568 `woman' command for further details."
1569 (interactive "fBrowse UN*X manual file: \nP")
1570 (setq woman-last-file-name
1571 (setq file-name (expand-file-name file-name))) ; to canonicalize
1572 (let ((alist-tail woman-buffer-alist) exists)
1573 (setq woman-buffer-number 0)
1574 (while (and alist-tail (not (string= file-name (car (car alist-tail)))))
1575 (setq alist-tail (cdr alist-tail)
1576 woman-buffer-number (1+ woman-buffer-number)))
1577 (or (and (setq exists
1578 (and alist-tail (WoMan-find-buffer))) ; buffer exists
1579 (not reformat))
1580 ;; Format new buffer or reformat current buffer:
1581 (let* ((bufname (file-name-nondirectory file-name))
1582 (case-fold-search t)
1583 (compressed
1584 (not (not (string-match woman-file-compression-regexp bufname)))))
1585 (if compressed
1586 (setq bufname (file-name-sans-extension bufname)))
1587 (setq bufname (if exists
1588 (buffer-name)
1589 (woman-make-bufname bufname)))
1590 (woman-really-find-file file-name compressed bufname)
1591 (or exists
1592 (setq woman-buffer-alist
1593 (cons (cons file-name bufname) woman-buffer-alist)
1594 woman-buffer-number 0))
1596 (Man-build-section-alist)
1597 (Man-build-references-alist)
1598 (goto-char (point-min)))
1600 (defun woman-make-bufname (bufname)
1601 "Create an unambiguous buffer name from BUFNAME."
1602 (let ((dot (string-match "\\." bufname)))
1603 (if dot (setq bufname (concat
1604 (substring bufname (1+ dot)) " "
1605 (substring bufname 0 dot))))
1606 (generate-new-buffer-name ; ensure uniqueness
1607 (concat "*WoMan " bufname "*"))))
1609 (defvar woman-frame nil
1610 "Dedicated frame used for displaying WoMan windows.")
1612 (defun woman-really-find-file (filename compressed bufname)
1613 "Find, decompress, and decode a UN*X man page FILENAME.
1614 If COMPRESSED is non-nil, turn on auto-compression mode to decompress
1615 the file if necessary. Set buffer name BUFNAME and major mode.
1616 Do not call directly!"
1617 (let ((WoMan-current-file filename)) ; used for message logging
1618 (if woman-use-own-frame
1619 (select-frame
1620 (or (and (frame-live-p woman-frame) woman-frame)
1621 (setq woman-frame (make-frame)))))
1622 (switch-to-buffer (get-buffer-create bufname))
1623 (buffer-disable-undo)
1624 (setq buffer-read-only nil)
1625 (erase-buffer) ; NEEDED for reformat
1626 (woman-insert-file-contents filename compressed)
1627 ;; Set buffer's default directory to that of the file.
1628 (setq default-directory (file-name-directory filename))
1629 (set (make-local-variable 'backup-inhibited) t)
1630 (set-visited-file-name "")
1631 (woman-process-buffer)))
1633 (defun woman-process-buffer ()
1634 "The second half of `woman-really-find-file'!"
1635 (interactive)
1636 ;; Check (crudely) that this really is likely to be in UN*X
1637 ;; man-page source format, assuming we are at point-min:
1638 (goto-char (point-min))
1639 (if (re-search-forward "^[.']" 1000 t)
1640 (woman-decode-buffer)
1641 (message
1642 "File appears to be pre-formatted -- using source file may be better.")
1643 (woman-man-buffer))
1644 (woman-mode))
1646 (defun woman-man-buffer ()
1647 "Post-process an nroff-preformatted man buffer."
1648 ;; Kill all leading whitespace:
1649 (if (looking-at "\\s-+") (woman-delete-match 0))
1650 ;; Delete all page footer/header pairs:
1651 (re-search-forward ".*") ; match header
1652 ;; Footer conventionally has page number at right, so ...
1653 (let ((regex (concat
1654 "^.*[0-9]\n\\s-*" ; footer and following blank lines
1655 (regexp-quote (match-string 0)) ; header
1656 "\\s-*\n"))) ; following blank lines
1657 (while (re-search-forward regex nil 1) ; finish at eob
1658 (woman-delete-match 0)))
1659 ;; Delete last text line (footer) and all following blank lines:
1660 (re-search-backward "\\S-")
1661 (beginning-of-line)
1662 (if (looking-at ".*[0-9]$")
1663 (delete-region (point) (point-max)))
1665 ;; Squeeze multiple blank lines:
1666 (goto-char (point-min))
1667 (while (re-search-forward "^[ \t]*\n\\([ \t]*\n\\)+" nil t)
1668 (replace-match "\n" t t))
1670 ;; CJK characters are underlined by double-sized "__".
1671 ;; (Code lifted from man.el, with trivial changes.)
1672 (if (< (buffer-size) (position-bytes (point-max)))
1673 ;; Multibyte characters exist.
1674 (progn
1675 (goto-char (point-min))
1676 (while (search-forward "__\b\b" nil t)
1677 (backward-delete-char 4)
1678 (woman-set-face (point) (1+ (point)) 'woman-italic))
1679 (goto-char (point-min))
1680 (while (search-forward "\b\b__" nil t)
1681 (backward-delete-char 4)
1682 (woman-set-face (1- (point)) (point) 'woman-italic))))
1684 ;; Interpret overprinting to indicate bold face:
1685 (goto-char (point-min))
1686 (while (re-search-forward "\\(.\\)\\(\\(\b+\\1\\)+\\)" nil t)
1687 (woman-delete-match 2)
1688 (woman-set-face (1- (point)) (point) 'woman-bold))
1690 ;; Interpret underlining to indicate italic face:
1691 ;; (Must be AFTER emboldening to interpret bold _ correctly!)
1692 (goto-char (point-min))
1693 (while (search-forward "_\b" nil t)
1694 (delete-char -2)
1695 (woman-set-face (point) (1+ (point)) 'woman-italic))
1697 ;; Leave any other uninterpreted ^H's in the buffer for now! (They
1698 ;; might indicate composite special characters, which could be
1699 ;; interpreted if I knew what to expect.)
1701 ;; Optionally embolden section and subsection headings
1702 ;; (cf. `woman-imenu-generic-expression'):
1703 (cond
1704 (woman-bold-headings
1705 (goto-char (point-min))
1706 (forward-line)
1707 (while (re-search-forward "^\\( \\)?\\([A-Z].*\\)" nil t)
1708 (woman-set-face (match-beginning 2) (match-end 2) 'woman-bold))))
1711 (defun woman-insert-file-contents (filename compressed)
1712 "Insert file FILENAME into the current buffer.
1713 If COMPRESSED is t, or is non-nil and the filename implies compression,
1714 then turn on auto-compression mode to decompress the file.
1715 Leave point at end of new text. Return length of inserted text."
1716 ;; Leaves point at end of inserted text in GNU Emacs 20.3, but at
1717 ;; start in 19.34!
1718 (save-excursion
1719 (let ((case-fold-search t))
1720 ;; Co-operate with auto-compression mode:
1721 (if (and compressed
1722 (or (eq compressed t)
1723 (string-match woman-file-compression-regexp filename))
1724 ;; (not auto-compression-mode)
1725 (not (rassq 'jka-compr-handler file-name-handler-alist)) )
1726 ;; (error "Compressed file requires Auto File Decompression turned on")
1727 (auto-compression-mode 1))
1728 (nth 1
1729 (condition-case ()
1730 (insert-file-contents filename nil)
1731 (file-error
1732 ;; Run find-file-not-found-hooks until one returns non-nil.
1733 ;; (run-hook-with-args-until-success 'find-file-not-found-hooks)
1734 (insert "\n***** File " filename " not found! *****\n\n")
1739 ;;; Major mode (Man) interface:
1741 (defvar woman-mode-map nil "Keymap for woman mode.")
1743 (unless woman-mode-map
1744 (setq woman-mode-map (make-sparse-keymap))
1745 (set-keymap-parent woman-mode-map Man-mode-map)
1747 (define-key woman-mode-map "R" 'woman-reformat-last-file)
1748 (define-key woman-mode-map "w" 'woman)
1749 (define-key woman-mode-map "\en" 'WoMan-next-manpage)
1750 (define-key woman-mode-map "\ep" 'WoMan-previous-manpage)
1751 (define-key woman-mode-map [M-mouse-2] 'woman-follow-word)
1753 ;; We don't need to call `man' when we are in `woman-mode'.
1754 (define-key woman-mode-map [remap man] 'woman)
1755 (define-key woman-mode-map [remap man-follow] 'woman-follow))
1757 (defun woman-follow (topic)
1758 "Get a Un*x manual page of the item under point and put it in a buffer."
1759 (interactive (list (Man-default-man-entry)))
1760 (if (or (not topic)
1761 (string= topic ""))
1762 (error "No item under point")
1763 (woman (if (string-match Man-reference-regexp topic)
1764 (substring topic 0 (match-end 1))
1765 topic))))
1767 (defun woman-follow-word (event)
1768 "Run WoMan with word under mouse as topic.
1769 Argument EVENT is the invoking mouse event."
1770 (interactive "e") ; mouse event
1771 (goto-char (posn-point (event-start event)))
1772 (woman (or (current-word t) "")))
1774 ;; WoMan menu bar and pop-up menu:
1775 (easy-menu-define
1776 woman-menu ; (SYMBOL MAPS DOC MENU)
1777 ;; That comment was moved after the symbol `woman-menu' to make
1778 ;; find-function-search-for-symbol work. -- rost
1779 woman-mode-map
1780 "WoMan Menu"
1781 `("WoMan"
1782 ["WoMan..." woman t] ; [NAME CALLBACK ENABLE]
1783 "--"
1784 ["Next Section" Man-next-section t]
1785 ["Previous Section" Man-previous-section t]
1786 ["Goto Section..." Man-goto-section t]
1787 ["Goto See-Also Section" Man-goto-see-also-section t]
1788 ["Follow Reference..." Man-follow-manual-reference t]
1789 "--"
1790 ["Previous WoMan Buffer" WoMan-previous-manpage t]
1791 ["Next WoMan Buffer" WoMan-next-manpage t]
1792 ["Bury WoMan Buffer" Man-quit t]
1793 ["Kill WoMan Buffer" Man-kill t]
1794 "--"
1795 ;; ["Toggle Fill Frame Width" woman-toggle-fill-frame t]
1796 ["Use Full Frame Width" woman-toggle-fill-frame
1797 :active t :style toggle :selected woman-fill-frame]
1798 ["Reformat Last Man Page" woman-reformat-last-file t]
1799 ["Use Monochrome Main Faces" woman-monochrome-faces t]
1800 ["Use Default Main Faces" woman-default-faces t]
1801 ["Make Contents Menu" (woman-imenu t) (not woman-imenu-done)]
1802 "--"
1803 ["Describe (Wo)Man Mode" describe-mode t]
1804 ["Mini Help" woman-mini-help t]
1805 ,@(if (fboundp 'customize-group)
1806 '(["Customize..." (customize-group 'woman) t]))
1807 ["Show Version" (message "WoMan %s" woman-version) t]
1808 "--"
1809 ("Advanced"
1810 ["View Source" (view-file woman-last-file-name) woman-last-file-name]
1811 ["Show Log" (switch-to-buffer-other-window "*WoMan-Log*" t) t]
1812 ["Extended Font" woman-toggle-use-extended-font
1813 :included woman-font-support
1814 :active t :style toggle :selected woman-use-extended-font]
1815 ["Symbol Font" woman-toggle-use-symbol-font
1816 :included woman-font-support
1817 :active t :style toggle :selected woman-use-symbol-font]
1818 ["Font Map" woman-display-extended-fonts
1819 :included woman-font-support
1820 :active woman-use-symbol-font]
1821 "--"
1822 "Emulation"
1823 ["nroff" (woman-reset-emulation 'nroff)
1824 :active t :style radio :selected (eq woman-emulation 'nroff)]
1825 ["troff" (woman-reset-emulation 'troff)
1826 :active t :style radio :selected (eq woman-emulation 'troff)]
1830 (defun woman-toggle-use-extended-font ()
1831 "Toggle `woman-use-extended-font' and reformat, for menu use."
1832 (interactive)
1833 (setq woman-use-extended-font (not woman-use-extended-font))
1834 (woman-reformat-last-file))
1836 (defun woman-toggle-use-symbol-font ()
1837 "Toggle `woman-use-symbol-font' and reformat, for menu use."
1838 (interactive)
1839 (setq woman-use-symbol-font (not woman-use-symbol-font))
1840 (woman-reformat-last-file))
1842 (defun woman-reset-emulation (value)
1843 "Reset `woman-emulation' to VALUE and reformat, for menu use."
1844 (interactive)
1845 (setq woman-emulation value)
1846 (woman-reformat-last-file))
1848 (put 'woman-mode 'mode-class 'special)
1850 (defun woman-mode ()
1851 "Turn on (most of) Man mode to browse a buffer formatted by WoMan.
1852 WoMan is an ELisp emulation of much of the functionality of the Emacs
1853 `man' command running the standard UN*X man and ?roff programs.
1854 WoMan author: F.J.Wright@Maths.QMW.ac.uk
1855 WoMan version: see `woman-version'.
1856 See `Man-mode' for additional details."
1857 (let ((Man-build-page-list (symbol-function 'Man-build-page-list))
1858 (Man-strip-page-headers (symbol-function 'Man-strip-page-headers))
1859 (Man-unindent (symbol-function 'Man-unindent))
1860 (Man-goto-page (symbol-function 'Man-goto-page)))
1861 ;; Prevent inappropriate operations:
1862 (fset 'Man-build-page-list 'ignore)
1863 (fset 'Man-strip-page-headers 'ignore)
1864 (fset 'Man-unindent 'ignore)
1865 (fset 'Man-goto-page 'ignore)
1866 (unwind-protect
1867 (delay-mode-hooks (Man-mode))
1868 ;; Restore the status quo:
1869 (fset 'Man-build-page-list Man-build-page-list)
1870 (fset 'Man-strip-page-headers Man-strip-page-headers)
1871 (fset 'Man-unindent Man-unindent)
1872 (fset 'Man-goto-page Man-goto-page)))
1873 (setq major-mode 'woman-mode
1874 mode-name "WoMan")
1875 ;; Don't show page numbers like Man-mode does. (Online documents do
1876 ;; not have pages)
1877 (kill-local-variable 'mode-line-buffer-identification)
1878 (use-local-map woman-mode-map)
1879 ;; Imenu support:
1880 (set (make-local-variable 'imenu-generic-expression)
1881 ;; `make-local-variable' in case imenu not yet loaded!
1882 woman-imenu-generic-expression)
1883 (set (make-local-variable 'imenu-space-replacement) " ")
1884 ;; For reformat ...
1885 ;; necessary when reformatting a file in its old buffer:
1886 (setq imenu--last-menubar-index-alist nil)
1887 ;; necessary to avoid re-installing the same imenu:
1888 (setq woman-imenu-done nil)
1889 (if woman-imenu (woman-imenu))
1890 (let (buffer-read-only)
1891 (Man-highlight-references 'WoMan-xref-man-page))
1892 (set-buffer-modified-p nil)
1893 (run-mode-hooks 'woman-mode-hook))
1895 (defun woman-imenu (&optional redraw)
1896 "Add a \"Contents\" menu to the menubar.
1897 Optional argument REDRAW, if non-nil, forces mode line to be updated."
1898 (interactive)
1899 (if woman-imenu-done
1900 ;; This is PRIMARILY to avoid a bug in imenu-add-to-menubar that
1901 ;; causes it to corrupt the menu bar if it is run more than once
1902 ;; in the same buffer.
1904 (setq woman-imenu-done t)
1905 (imenu-add-to-menubar woman-imenu-title)
1906 (if redraw (force-mode-line-update))))
1908 (defun woman-toggle-fill-frame ()
1909 "Toggle formatting to fill (most of) the width of the current frame."
1910 (interactive)
1911 (setq woman-fill-frame (not woman-fill-frame))
1912 (message "Woman fill column set to %s."
1913 (if woman-fill-frame "frame width" woman-fill-column)
1916 (defun woman-mini-help ()
1917 "Display WoMan commands and user options in an `apropos' buffer."
1918 ;; Based on apropos-command in apropos.el
1919 (interactive)
1920 (require 'apropos)
1921 (let ((message
1922 (let ((standard-output (get-buffer-create "*Apropos*")))
1923 (print-help-return-message 'identity))))
1924 (setq apropos-accumulator
1925 (apropos-internal "woman"
1926 (lambda (symbol)
1927 (or (commandp symbol)
1928 (user-variable-p symbol)))))
1929 ;; Filter out any inhibited symbols:
1930 (let ((tem apropos-accumulator))
1931 (while tem
1932 (if (get (car tem) 'apropos-inhibit)
1933 (setq apropos-accumulator (delq (car tem) apropos-accumulator)))
1934 (setq tem (cdr tem))))
1935 ;; Find documentation strings:
1936 (let ((p apropos-accumulator)
1937 doc symbol)
1938 (while p
1939 (setcar p (list ; must have 3 elements:
1940 (setq symbol (car p)) ; 1. name
1941 (if (functionp symbol) ; 2. command doc
1942 (if (setq doc (documentation symbol t))
1943 (substring doc 0 (string-match "\n" doc))
1944 "(not documented)"))
1945 (if (user-variable-p symbol) ; 3. variable doc
1946 (if (setq doc (documentation-property
1947 symbol 'variable-documentation t))
1948 (substring doc 0 (string-match "\n" doc))))))
1949 (setq p (cdr p))))
1950 ;; Output the result:
1951 (and (apropos-print t nil)
1952 message
1953 (message "%s" message))))
1956 (defun WoMan-getpage-in-background (topic)
1957 "Use TOPIC to start WoMan from `Man-follow-manual-reference'."
1958 ;; topic is a string, generally of the form "section topic"
1959 (let ((s (string-match " " topic)))
1960 (if s (setq topic (substring topic (1+ s))))
1961 (woman topic)))
1963 (defvar WoMan-Man-start-time nil
1964 "Used to record formatting time used by the `man' command.")
1966 ;; Both advices are disabled because "a file in Emacs should not put
1967 ;; advice on a function in Emacs" (see Info node "(elisp)Advising
1968 ;; Functions"). Counting the formatting time is useful for
1969 ;; developping, but less applicable for daily use. The advice for
1970 ;; `Man-getpage-in-background' can be discarded, because the
1971 ;; key-binding in `woman-mode-map' has been remapped to call `woman'
1972 ;; but `man'. Michael Albinus <michael.albinus@gmx.de>
1974 ;; (defadvice Man-getpage-in-background
1975 ;; (around Man-getpage-in-background-advice (topic) activate)
1976 ;; "Use WoMan unless invoked outside a WoMan buffer or invoked explicitly.
1977 ;; Otherwise use Man and record start of formatting time."
1978 ;; (if (and (eq major-mode 'woman-mode)
1979 ;; (not (eq (caar command-history) 'man)))
1980 ;; (WoMan-getpage-in-background topic)
1981 ;; ;; Initiates man processing
1982 ;; (setq WoMan-Man-start-time (current-time))
1983 ;; ad-do-it))
1985 ;; (defadvice Man-bgproc-sentinel
1986 ;; (after Man-bgproc-sentinel-advice activate)
1987 ;; ;; Terminates man processing
1988 ;; "Report formatting time."
1989 ;; (let* ((time (current-time))
1990 ;; (time (+ (* (- (car time) (car WoMan-Man-start-time)) 65536)
1991 ;; (- (cadr time) (cadr WoMan-Man-start-time)))))
1992 ;; (message "Man formatting done in %d seconds" time)))
1995 ;;; Buffer handling:
1997 (defun WoMan-previous-manpage ()
1998 "Find the previous WoMan buffer."
1999 ;; Assumes currently in a WoMan buffer!
2000 (interactive)
2001 (WoMan-find-buffer) ; find current existing buffer
2002 (if (null (cdr woman-buffer-alist))
2003 (error "No previous WoMan buffer"))
2004 (if (>= (setq woman-buffer-number (1+ woman-buffer-number))
2005 (length woman-buffer-alist))
2006 (setq woman-buffer-number 0))
2007 (if (WoMan-find-buffer)
2009 (if (< (setq woman-buffer-number (1- woman-buffer-number)) 0)
2010 (setq woman-buffer-number (1- (length woman-buffer-alist))))
2011 (WoMan-previous-manpage)))
2013 (defun WoMan-next-manpage ()
2014 "Find the next WoMan buffer."
2015 ;; Assumes currently in a WoMan buffer!
2016 (interactive)
2017 (WoMan-find-buffer) ; find current existing buffer
2018 (if (null (cdr woman-buffer-alist))
2019 (error "No next WoMan buffer"))
2020 (if (< (setq woman-buffer-number (1- woman-buffer-number)) 0)
2021 (setq woman-buffer-number (1- (length woman-buffer-alist))))
2022 (if (WoMan-find-buffer)
2024 (WoMan-next-manpage)))
2026 (defun WoMan-find-buffer ()
2027 "Switch to buffer corresponding to `woman-buffer-number' and return it.
2028 If such a buffer does not exist then remove its association from the
2029 alist in `woman-buffer-alist' and return nil."
2030 (if (zerop woman-buffer-number)
2031 (let ((buffer (get-buffer (cdr (car woman-buffer-alist)))))
2032 (if buffer
2033 (switch-to-buffer buffer)
2034 ;; Delete alist element:
2035 (setq woman-buffer-alist (cdr woman-buffer-alist))
2036 nil))
2037 (let* ((prev-ptr (nthcdr (1- woman-buffer-number) woman-buffer-alist))
2038 (buffer (get-buffer (cdr (car (cdr prev-ptr))))))
2039 (if buffer
2040 (switch-to-buffer buffer)
2041 ;; Delete alist element:
2042 (setcdr prev-ptr (cdr (cdr prev-ptr)))
2043 (if (>= woman-buffer-number (length woman-buffer-alist))
2044 (setq woman-buffer-number 0))
2045 nil)
2049 ;;; Syntax and display tables:
2051 (defconst woman-escaped-escape-char ?\x1c
2052 ;; An arbitrary unused control character
2053 "Internal character representation of escaped escape characters.")
2054 (defconst woman-escaped-escape-string
2055 (char-to-string woman-escaped-escape-char)
2056 "Internal string representation of escaped escape characters.")
2058 (defconst woman-unpadded-space-char ?\x1d
2059 ;; An arbitrary unused control character
2060 "Internal character representation of unpadded space characters.")
2061 (defconst woman-unpadded-space-string
2062 (char-to-string woman-unpadded-space-char)
2063 "Internal string representation of unpadded space characters.")
2065 (defvar woman-syntax-table nil
2066 "Syntax table to support special characters used internally by WoMan.")
2068 (if woman-syntax-table
2070 (setq woman-syntax-table (make-syntax-table))
2071 ;; The following internal chars must NOT have whitespace syntax:
2072 (modify-syntax-entry woman-unpadded-space-char "." woman-syntax-table)
2073 (modify-syntax-entry woman-escaped-escape-char "." woman-syntax-table)
2076 (defun woman-set-buffer-display-table ()
2077 "Set up a display table for a WoMan buffer.
2078 This display table is used for displaying internal special characters, but
2079 does not interfere with any existing display table, e.g. for displaying
2080 European characters."
2081 (setq buffer-display-table
2082 ;; The following test appears to be necessary on some
2083 ;; non-Windows platforms, e.g. Solaris 2.6 when running on a
2084 ;; tty. Thanks to T. V. Raman <raman@Adobe.COM>.
2085 ;; The MS-DOS terminal also sets standard-display-table to
2086 ;; a non-nil value.
2087 (if standard-display-table ; default is nil !!!
2088 (copy-sequence standard-display-table)
2089 (make-display-table)))
2090 ;; Display the following internal chars correctly:
2091 (aset buffer-display-table woman-unpadded-space-char [?\ ])
2092 (aset buffer-display-table woman-escaped-escape-char [?\\]))
2095 ;;; The main decoding driver:
2097 (defvar font-lock-mode) ; for the compiler
2099 (defun woman-decode-buffer ()
2100 "Decode a buffer in UN*X man-page source format.
2101 No external programs are used."
2102 (interactive) ; mainly for testing
2103 (WoMan-log-begin)
2104 (run-hooks 'woman-pre-format-hook)
2106 ;; look for macro sets that woman cannot handle:
2107 (goto-char (point-min))
2108 (let ((case-fold-search nil))
2109 (unless (and (re-search-forward "^\\.SH[ \n]" (point-max) t)
2110 (progn (goto-char (point-min))
2111 (re-search-forward "^\\.TH[ \n]" (point-max) t))
2112 (progn (goto-char (point-min))
2113 (not (re-search-forward "^\\.\\([pnil]p\\|sh\\)[ \n]"
2114 (point-max) t))))
2115 (error "WoMan can only format man pages written with the usual `-man' macros")))
2117 (and (boundp 'font-lock-mode) font-lock-mode (font-lock-mode -1))
2118 ;; (fundamental-mode)
2119 (let ((start-time (current-time)) ; (HIGH LOW MICROSEC)
2120 time) ; HIGH * 2**16 + LOW seconds
2121 (message "WoMan formatting buffer...")
2122 ; (goto-char (point-min))
2123 ; (cond
2124 ; ((re-search-forward "^\\.[ \t]*TH" nil t) ; wrong format if not found?
2125 ; (beginning-of-line)
2126 ; (delete-region (point-min) (point))) ; potentially dangerous!
2127 ; (t (message "WARNING: .TH request not found -- not man-page format?")))
2128 (woman-decode-region (point-min) (point-max))
2129 (setq time (current-time)
2130 time (+ (* (- (car time) (car start-time)) 65536)
2131 (- (cadr time) (cadr start-time))))
2132 (message "WoMan formatting buffer...done in %d seconds" time)
2133 (WoMan-log-end time))
2134 (run-hooks 'woman-post-format-hook))
2136 (defvar woman-string-alist ; rebound in woman-decode-region
2137 '(("S" . "") ("R" . "(Reg.)") ("Tm" . "(TM)")
2138 ("lq" . "\"") ("rq" . "\"")
2139 ("''" . "\"") ; needed for gcc.1
2140 (".T" . "") ; output device from -T option?
2142 "Alist of strings predefined in the -man macro package `tmac.an'.")
2144 (defvar woman-negative-vertical-space nil ; rebound in woman-decode-region
2145 "Set to t if .sp N with N < 0 encountered.")
2147 (defun woman-pre-process-region (from to)
2148 "Pre-process escapes and comments in the region of text between FROM and TO.
2149 To be called on original buffer and any .so insertions."
2150 ;; Hide escaped escapes \\ and printable escapes \e very early
2151 ;; (to be re-instated as just \ very late!):
2152 (goto-char from)
2153 ;; .eo turns off escape character processing
2154 (while (re-search-forward "\\(\\\\[\\e]\\)\\|^\\.eo" to t) ; \\
2155 (if (match-string 1)
2156 (replace-match woman-escaped-escape-string t t)
2157 (woman-delete-whole-line)
2158 ;; .ec turns on escape character processing (and sets the
2159 ;; escape character to its argument, if any, which I'm ignoring
2160 ;; for now!)
2161 (while (and (re-search-forward "\\(\\\\\\)\\|^\\.ec" to t) ; \
2162 (match-string 1))
2163 (replace-match woman-escaped-escape-string t t))
2164 ;; ***** Need test for .ec arg and warning here! *****
2165 (woman-delete-whole-line)))
2167 ;; Delete comments .\"<anything>, \"<anything> and null requests.
2168 ;; (However, should null . requests cause a break?)
2169 (goto-char from)
2170 (while (re-search-forward "^[.'][ \t]*\\(\\\\\".*\\)?\n\\|\\\\\".*" to t)
2171 (woman-delete-match 0)))
2173 (defun woman-non-underline-faces ()
2174 "Prepare non-underlined versions of underlined faces."
2175 (let ((face-list (face-list)))
2176 (while face-list
2177 (let* ((face (car face-list))
2178 (face-name (symbol-name face)))
2179 (if (and (string-match "\\`woman-" face-name)
2180 (face-underline-p face))
2181 (let ((face-no-ul (intern (concat face-name "-no-ul"))))
2182 (copy-face face face-no-ul)
2183 (set-face-underline-p face-no-ul nil))))
2184 (setq face-list (cdr face-list)))))
2186 ;; Preprocessors
2187 ;; =============
2189 ;; This information is based on documentation for the man command by
2190 ;; Graeme W. Wilford <G.Wilford@ee.surrey.ac.uk>
2192 ;; First, the environment variable $MANROFFSEQ is interrogated, and if
2193 ;; not set then the initial line of the nroff file is parsed for a
2194 ;; preprocessor string. To contain a valid preprocessor string, the
2195 ;; first line must resemble
2197 ;; '\" <string>
2199 ;; where string can be any combination of the following letters that
2200 ;; specify the sequence of preprocessors to run before nroff or
2201 ;; troff/groff. Not all installations will have a full set of
2202 ;; preprocessors. Some of the preprocessors and the letters used to
2203 ;; designate them are: eqn (e), grap (g), pic (p), tbl (t), vgrind
2204 ;; (v), refer (r). This option overrides the $MANROFFSEQ environment
2205 ;; variable. zsoelim is always run as the very first preprocessor.
2207 (defvar woman-emulate-tbl nil
2208 "True if WoMan should emulate the tbl preprocessor.
2209 This applies to text between .TE and .TS directives.
2210 Currently set only from '\" t in the first line of the source file.")
2212 (defun woman-decode-region (from to)
2213 "Decode the region between FROM and TO in UN*X man-page source format."
2214 ;; Suitable for use in format-alist.
2215 ;; But this requires care to control major mode implied font locking.
2216 ;; Must return the new end of file. See format.el for details.
2217 ;; NB: The `to' argument is bogus: it is not currently used, and if
2218 ;; it were it would need to be a marker rather than a position!
2219 ;; First force the correct environment:
2220 (let ((case-fold-search nil) ; This is necessary!
2221 (woman-string-alist woman-string-alist)
2222 (woman-fill-column woman-fill-column)
2223 woman-negative-vertical-space)
2224 (setq woman-left-margin woman-default-indent
2225 woman-prevailing-indent woman-default-indent
2226 woman-interparagraph-distance 1
2227 woman-leave-blank-lines nil
2228 woman-RS-left-margin nil
2229 woman-RS-prevailing-indent nil
2230 woman-adjust woman-adjust-both
2231 woman-justify (nth woman-adjust woman-justify-list)
2232 woman-nofill nil)
2234 (setq woman-if-conditions-true
2235 (cons (string-to-char (symbol-name woman-emulation)) '(?e ?o)))
2237 ;; Prepare non-underlined versions of underlined faces:
2238 (woman-non-underline-faces)
2239 ;; Set font of `woman-symbol' face to `woman-symbol-font' if
2240 ;; `woman-symbol-font' is well defined.
2241 (and woman-use-symbol-font
2242 (stringp woman-symbol-font)
2243 (set-face-font 'woman-symbol woman-symbol-font
2244 (and (frame-live-p woman-frame) woman-frame)))
2246 ;; Set syntax and display tables:
2247 (set-syntax-table woman-syntax-table)
2248 (woman-set-buffer-display-table)
2250 ;; Based loosely on a suggestion by Theodore Jump:
2251 (if (or woman-fill-frame
2252 (not (and (integerp woman-fill-column) (> woman-fill-column 0))))
2253 (setq woman-fill-column (- (window-width) woman-default-indent)))
2255 ;; Check for preprocessor requests:
2256 (goto-char from)
2257 (if (looking-at "'\\\\\"[ \t]*\\([a-z]+\\)")
2258 (let ((letters (append (match-string 1) nil)))
2259 (if (memq ?t letters)
2260 (setq woman-emulate-tbl t
2261 letters (delete ?t letters)))
2262 (if letters
2263 (WoMan-warn "Unhandled preprocessor request letters %s"
2264 (concat letters)))
2265 (woman-delete-line 1)))
2267 (woman-pre-process-region from nil)
2268 ;; Process ignore requests, macro definitions,
2269 ;; conditionals and switch source requests:
2270 (woman0-roff-buffer from)
2272 ;; Process \k escapes BEFORE changing tab width (?):
2273 (goto-char from)
2274 (woman-mark-horizonal-position)
2276 ;; Set buffer-local variables:
2277 (setq fill-column woman-fill-column
2278 tab-width woman-tab-width)
2280 ;; Hide unpaddable and digit-width spaces \(space) and \0:
2281 (goto-char from)
2282 (while (re-search-forward "\\\\[ 0]" nil t)
2283 (replace-match woman-unpadded-space-string t t))
2285 ;; Discard optional hyphen \%; concealed newlines \<newline>;
2286 ;; point-size change function \sN,\s+N, \s-N:
2287 (goto-char from)
2288 (while (re-search-forward "\\\\\\([%\n]\\|s[-+]?[0-9]+\\)" nil t)
2289 (woman-delete-match 0))
2291 ;; BEWARE: THIS SHOULD PROBABLY ALL BE DONE MUCH LATER!!!!!
2292 ;; Process trivial escapes \-, \`, \.
2293 ;; (\' must be done after tab processing!):
2294 (goto-char from)
2295 (while (re-search-forward "\\\\\\([-`.]\\)" nil t)
2296 (replace-match "\\1"))
2297 ;; NB: Must keep ALL zero-width characters \&, \|, and \^ until
2298 ;; ALL requests processed!
2300 ;; Process no-break requests and macros (including font-change macros):
2301 (goto-char from)
2302 (woman1-roff-buffer)
2304 ;; Process strings and special character escapes \(xx:
2305 ;; (Must do this BEFORE fontifying!)
2306 (goto-char from)
2307 (woman-strings)
2308 ;; Special chars moved after translation in
2309 ;; `woman2-process-escapes' (for pic.1):
2310 ; (goto-char from)
2311 ; (woman-special-characters)
2313 ;; Process standard font-change requests and escapes:
2314 (goto-char from)
2315 (woman-change-fonts)
2317 ;; 1/2 em vertical motion \d, \u and general local vertical motion
2318 ;; \v'+/-N' simulated using TeX ^ and _ symbols for now.
2319 (goto-char from)
2320 (let ((first t)) ; assume no nesting!
2321 (while (re-search-forward "\\\\\\([du]\\|v'[^']*'\\)" nil t)
2322 (let* ((esc (match-string 1))
2323 (repl (if (or (= (aref esc 0) ?u)
2324 (and (>= (length esc) 2) (= (aref esc 2) ?-)))
2325 "^" "_")))
2326 (cond (first
2327 (replace-match repl nil t)
2328 (put-text-property (1- (point)) (point) 'face 'woman-addition)
2329 (WoMan-warn
2330 "Initial vertical motion escape \\%s simulated" esc)
2331 (WoMan-log
2332 " by TeX `%s' in woman-addition-face!" repl))
2334 (woman-delete-match 0)
2335 (WoMan-warn
2336 "Terminal vertical motion escape \\%s ignored!" esc)))
2337 (setq first (not first))
2340 ; ;; \h'+/-N' local horizontal motion.
2341 ; ;; N may include width escape \w'...'
2342 ; ;; Implement arbitrary forward motion and non-overlapping backward
2343 ; ;; motion.
2344 ; (goto-char from)
2345 ; (while (re-search-forward
2346 ; ;; Delimiter can be a special char escape sequence \(.. or
2347 ; ;; a single normal char (usually '):
2348 ; "\\\\h\\(\\\\(..\\|.\\)\\(|\\)?"
2349 ; nil t)
2350 ; (let ((from (match-beginning 0))
2351 ; (delim (regexp-quote (match-string 1)))
2352 ; (absolute (match-string 2)) ; absolute position?
2353 ; (N (woman-parse-numeric-arg)) ; distance
2354 ; to
2355 ; msg) ; for warning
2356 ; (if (not (looking-at delim))
2357 ; ;; Warn but leave escape in buffer unprocessed:
2358 ; (WoMan-warn
2359 ; "Local horizontal motion (%s) delimiter error!"
2360 ; (buffer-substring from (1+ (point)))) ; point at end of arg
2361 ; (setq to (match-end 0)
2362 ; ;; For possible warning -- save before deleting:
2363 ; msg (buffer-substring from to))
2364 ; (delete-region from to)
2365 ; (if absolute ; make relative
2366 ; (setq N (- N (current-column))))
2367 ; (if (>= N 0)
2368 ; ;; Move forward by inserting hard spaces:
2369 ; (insert-char woman-unpadded-space-char N)
2370 ; ;; Move backwards by deleting space,
2371 ; ;; first backwards then forwards:
2372 ; (while (and
2373 ; (<= (setq N (1+ N)) 0)
2374 ; (cond ((memq (preceding-char) '(?\ ?\t))
2375 ; (delete-backward-char 1) t)
2376 ; ((memq (following-char) '(?\ ?\t))
2377 ; (delete-char 1) t)
2378 ; (t nil))))
2379 ; (if (<= N 0)
2380 ; (WoMan-warn
2381 ; "Negative horizontal motion (%s) would overwrite!" msg))))
2382 ; ))
2384 ;; Process formatting macros
2385 (goto-char from)
2386 (woman2-roff-buffer)
2388 ;; Go back and process negative vertical space if necessary:
2389 (if woman-negative-vertical-space
2390 (woman-negative-vertical-space from))
2392 (if woman-preserve-ascii
2393 ;; Re-instate escaped escapes to just `\' and unpaddable
2394 ;; spaces to just `space', without inheriting any text
2395 ;; properties. This is not necessary, UNLESS the buffer is to
2396 ;; be saved as ASCII.
2397 (progn
2398 (goto-char from)
2399 (while (search-forward woman-escaped-escape-string nil t)
2400 (delete-char -1) (insert ?\\))
2401 (goto-char from)
2402 (while (search-forward woman-unpadded-space-string nil t)
2403 (delete-char -1) (insert ?\ ))
2406 ;; Must return the new end of file if used in format-alist.
2407 (point-max)))
2409 (defun woman-horizontal-escapes (to)
2410 "Process \\h'+/-N' local horizontal motion escapes upto TO.
2411 Implements arbitrary forward and non-overlapping backward motion.
2412 Preserves location of `point'."
2413 ;; Moved from `woman-decode-region' for version 0.50.
2414 ;; N may include width escape \w'...' (but may already be processed!
2415 (let ((from (point)))
2416 (while (re-search-forward
2417 ;; Delimiter can be a special char escape sequence \(.. or
2418 ;; a single normal char (usually '):
2419 "\\\\h\\(\\\\(..\\|.\\)\\(|\\)?"
2420 to t)
2421 (let ((from (match-beginning 0))
2422 (delim (regexp-quote (match-string 1)))
2423 (absolute (match-string 2)) ; absolute position?
2424 (N (woman-parse-numeric-arg)) ; distance
2426 msg) ; for warning
2427 (if (not (looking-at delim))
2428 ;; Warn but leave escape in buffer unprocessed:
2429 (WoMan-warn
2430 "Local horizontal motion (%s) delimiter error!"
2431 (buffer-substring from (1+ (point)))) ; point at end of arg
2432 (setq to (match-end 0)
2433 ;; For possible warning -- save before deleting:
2434 msg (buffer-substring from to))
2435 (delete-region from to)
2436 (if absolute ; make relative
2437 (setq N (- N (current-column))))
2438 (if (>= N 0)
2439 ;; Move forward by inserting hard spaces:
2440 (insert-char woman-unpadded-space-char N)
2441 ;; Move backwards by deleting space,
2442 ;; first backwards then forwards:
2443 (while (and
2444 (<= (setq N (1+ N)) 0)
2445 (cond ((memq (preceding-char) '(?\ ?\t))
2446 (delete-backward-char 1) t)
2447 ((memq (following-char) '(?\ ?\t))
2448 (delete-char 1) t)
2449 (t nil))))
2450 (if (<= N 0)
2451 (WoMan-warn
2452 "Negative horizontal motion (%s) would overwrite!" msg))))
2454 (goto-char from)))
2458 ;; Process ignore requests (.ig), conditionals (.if etc.),
2459 ;; source-switch (.so), macro definitions (.de etc.) and macro
2460 ;; expansions.
2462 (defvar woman0-if-to) ; marker bound in woman0-roff-buffer
2463 (defvar woman0-macro-alist) ; bound in woman0-roff-buffer
2464 (defvar woman0-search-regex) ; bound in woman0-roff-buffer
2465 (defvar woman0-search-regex-start ; bound in woman0-roff-buffer
2466 "^[.'][ \t]*\\(ig\\|if\\|ie\\|el\\|so\\|rn\\|de\\|am")
2467 (defconst woman0-search-regex-end "\\)\\([ \t]+\\|$\\)")
2468 ;; May need other terminal characters, e.g. \, but NOT \n!
2469 ;; Alternatively, force maximal match (Posix?)
2471 (defvar woman0-rename-alist) ; bound in woman0-roff-buffer
2473 (defun woman0-roff-buffer (from)
2474 "Process conditional-type requests and user-defined macros.
2475 Start at FROM and re-scan new text as appropriate."
2476 (goto-char from)
2477 (let ((woman0-if-to (make-marker))
2478 request woman0-macro-alist
2479 (woman0-search-regex-start woman0-search-regex-start)
2480 (woman0-search-regex
2481 (concat woman0-search-regex-start woman0-search-regex-end))
2482 woman0-rename-alist)
2483 (set-marker-insertion-type woman0-if-to t)
2484 (while (re-search-forward woman0-search-regex nil t)
2485 (setq request (match-string 1))
2486 (cond ((string= request "ig") (woman0-ig))
2487 ((string= request "if") (woman0-if "if"))
2488 ((string= request "ie") (woman0-if "ie"))
2489 ((string= request "el") (woman0-el))
2490 ((string= request "so") (woman0-so))
2491 ((string= request "rn") (woman0-rn))
2492 ((string= request "de") (woman0-de))
2493 ((string= request "am") (woman0-de 'append))
2494 (t (woman0-macro request))))
2495 (set-marker woman0-if-to nil)
2496 (woman0-rename)
2497 ;; Should now re-run `woman0-roff-buffer' if any renaming was
2498 ;; done, but let's just hope this is not necessary for now!
2501 (defun woman0-ig ()
2502 ".ig yy -- Discard input up to `.yy', which defaults to `..')."
2503 ;; The terminal request MUST begin with . (not ')!
2504 (looking-at "\\(\\S +\\)?")
2505 (beginning-of-line)
2506 (let ((yy (or (match-string 1) "."))
2507 (from (point)))
2508 (if (re-search-forward
2509 (concat "^\\.[ \t]*" (regexp-quote yy) ".*\n") nil t)
2510 (delete-region from (point))
2511 (WoMan-warn
2512 "ig request ignored -- terminator `.%s' not found!" yy)
2513 (woman-delete-line 1))
2516 (defsubst woman0-process-escapes (from to)
2517 "Process escapes within an if/ie condition between FROM and TO."
2518 (woman-strings to)
2519 (goto-char from) ; necessary!
2520 ;; Strip font-change escapes:
2521 (while (re-search-forward "\\\\f\\(\\[[^]]+\\]\\|(..\\|.\\)" to t)
2522 (woman-delete-match 0))
2523 (goto-char from) ; necessary!
2524 (woman2-process-escapes to 'numeric))
2526 (defun woman0-if (request)
2527 ".if/ie c anything -- Discard unless c evaluates to true.
2528 Remember condition for use by a subsequent `.el'.
2529 REQUEST is the invoking directive without the leading dot."
2530 ;; c evaluates to a one-character built-in condition name or
2531 ;; 'string1'string2' or a number > 0, prefix ! negates.
2532 ;; \{ ... \} for multi-line use.
2533 ;; Leaves point at start of new text.
2534 (woman-delete-match 0)
2535 ;; (delete-horizontal-space)
2536 ;; Process escapes in condition:
2537 (let ((from (point)) negated n (c 0))
2538 (set-marker woman0-if-to
2539 (save-excursion (skip-syntax-forward "^ ") (point)))
2540 ;; Process condition:
2541 (if (setq negated (= (following-char) ?!)) (delete-char 1))
2542 (cond
2543 ;; ((looking-at "[no]") (setq c t)) ; accept n(roff) and o(dd page)
2544 ;; ((looking-at "[te]") (setq c nil)) ; reject t(roff) and e(ven page)
2545 ((looking-at "[ntoe]")
2546 (setq c (memq (following-char) woman-if-conditions-true)))
2547 ;; Unrecognised letter so reject:
2548 ((looking-at "[A-Za-z]") (setq c nil)
2549 (WoMan-warn "%s %s -- unrecognized condition name rejected!"
2550 request (match-string 0)))
2551 ;; Accept strings if identical:
2552 ((save-restriction
2553 (narrow-to-region from woman0-if-to)
2554 ;; String delimiter can be any non-numeric character,
2555 ;; including a special character escape:
2556 (looking-at "\\(\\\\(..\\|[^0-9]\\)\\(.*\\)\\1\\(.*\\)\\1\\'"))
2557 (let ((end1 (copy-marker (match-end 2) t))) ; End of first string.
2558 ;; Delete 2nd and 3rd delimiters to avoid processing them:
2559 (delete-region (match-end 3) woman0-if-to)
2560 (delete-region (match-end 2) (match-beginning 3))
2561 (goto-char (match-end 1))
2562 (woman0-process-escapes (point) woman0-if-to)
2563 (setq c (string= (buffer-substring (point) end1)
2564 (buffer-substring end1 woman0-if-to)))
2565 (set-marker end1 nil)
2566 (goto-char from)))
2567 ;; Accept numeric value if > 0:
2568 ((numberp (setq n (progn
2569 (woman0-process-escapes from woman0-if-to)
2570 (woman-parse-numeric-arg))))
2571 (setq c (> n 0))
2572 (goto-char from))
2574 (if (eq c 0)
2575 (woman-if-ignore woman0-if-to request) ; ERROR!
2576 (woman-if-body request woman0-if-to (eq c negated)))
2579 (defun woman-if-body (request to delete) ; should be reversed as `accept'?
2580 "Process if-body, including \\{ ... \\}.
2581 REQUEST is the invoking directive without the leading dot.
2582 If TO is non-nil then delete the if-body.
2583 If DELETE is non-nil then delete from point."
2584 ;; Assume concealed newlines already processed.
2585 (let ((from (point)))
2586 (if to (delete-region (point) to))
2587 (delete-horizontal-space)
2588 (cond (;;(looking-at "[^{\n]*\\\\{\\s *") ; multi-line
2589 ;; allow escaped newlines:
2590 (looking-at "[^{\n]*\\(\\\\\n\\)*\\\\{\\s *\\(\\\\\n\\)*") ; multi-line
2591 ;; including preceding .if(s) and following newline
2592 (let ((from (point)))
2593 (woman-delete-match 0)
2594 ;; Allow for nested \{ ... \} -- BUT BEWARE that this
2595 ;; algorithm only supports one level of nesting!
2596 (while
2597 (and (re-search-forward
2598 ;; "\\(\\\\{\\)\\|\\(\n[.']\\)?[ \t]*\\\\}[ \t]*"
2599 ;; Interpret bogus `el \}' as `el \{',
2600 ;; especially for Tcl/Tk man pages:
2601 "\\(\\\\{\\|el[ \t]*\\\\}\\)\\|\\(\n[.']\\)?[ \t]*\\\\}[ \t]*")
2602 (match-string 1))
2603 (re-search-forward "\\\\}"))
2604 (delete-region (if delete from (match-beginning 0)) (point))
2605 (if (looking-at "^$") (delete-char 1))
2607 (delete (woman-delete-line 1)) ; single-line
2609 ;; Process matching .el anything:
2610 (cond ((string= request "ie")
2611 ;; Discard unless previous .ie c `evaluated to false'.
2612 (cond ((re-search-forward "^[.'][ \t]*el[ \t]*" nil t)
2613 (woman-delete-match 0)
2614 (woman-if-body "el" nil (not delete)))))
2615 ;; Got here after processing a single-line `.ie' as a body
2616 ;; clause to be discarded:
2617 ((string= request "el")
2618 (cond ((re-search-forward "^[.'][ \t]*el[ \t]*" nil t)
2619 (woman-delete-match 0)
2620 (woman-if-body "el" nil t))))
2622 (goto-char from)
2625 (defun woman0-el ()
2626 "Isolated .el request -- should not happen!"
2627 (WoMan-warn "el request without matching `ie' rejected!")
2628 (cond (woman-ignore
2629 (woman-delete-match 0)
2630 (delete-horizontal-space)
2631 (woman-if-body "el" nil t))
2632 (t ; Ignore -- leave in buffer
2633 ;; This does not work too well, but it's only for debugging!
2634 (skip-chars-forward "^ \t")
2635 (if (looking-at "[ \t]*\\{") (search-forward "\\}"))
2636 (forward-line 1))))
2638 (defun woman-if-ignore (to request)
2639 "Ignore but warn about an if request ending at TO, named REQUEST."
2640 (WoMan-warn-ignored request "ignored -- condition not handled!")
2641 (if woman-ignore
2642 (woman-if-body request to t)
2643 ;; Ignore -- leave in buffer
2644 ;; This does not work too well, but it's only for debugging!
2645 (skip-chars-forward "^ \t")
2646 (if (looking-at "[ \t]*\\{") (search-forward "\\}"))
2647 (forward-line 1)))
2649 (defun woman0-so ()
2650 ".so filename -- Switch source file. `.so' requests may be nested."
2651 ;; Leaves point at start of new text.
2652 ;; (skip-chars-forward " \t")
2653 (let* ((beg (point))
2654 (end (progn (woman-forward-arg 'unquote) (point)))
2655 (name (buffer-substring beg end))
2656 (filename name))
2657 ;; If the specified file does not exist in this ...
2658 (or (file-exists-p filename)
2659 ;; or the parent directory ...
2660 (file-exists-p
2661 (setq filename (concat "../" name)))
2662 ;; then use the WoMan search mechanism to find the filename ...
2663 (setq filename
2664 (woman-file-name
2665 (file-name-sans-extension
2666 (file-name-nondirectory name))))
2667 ;; Cannot find the file, so ...
2668 (kill-buffer (current-buffer))
2669 (error "File `%s' not found" name))
2670 (beginning-of-line)
2671 (woman-delete-line 1)
2672 (let* ((from (point))
2673 (length (woman-insert-file-contents filename 0))
2674 (to (copy-marker (+ from length) t)))
2675 (woman-pre-process-region from to)
2676 (set-marker to nil)
2677 (goto-char from)
2681 ;;; Process macro definitions:
2683 (defun woman0-rn ()
2684 "Process .rn xx yy -- rename macro xx to yy."
2685 ;; For now, done backwards AFTER all macro expansion.
2686 ;; Should also allow requests and strings to be renamed!
2687 (if (eolp) ; ignore if no argument
2689 (let* ((beg (point))
2690 (end (progn (woman-forward-arg 'unquote 'concat) (point)))
2691 (old (buffer-substring beg end))
2692 new)
2693 (if (eolp) ; ignore if no argument
2695 (setq beg (point)
2696 end (progn (woman-forward-arg 'unquote) (point))
2697 new (buffer-substring beg end)
2698 woman0-rename-alist (cons (cons new old) woman0-rename-alist)))
2700 (woman-delete-whole-line))
2702 (defun woman0-rename ()
2703 "Effect renaming required by .rn requests."
2704 ;; For now, do this backwards AFTER all macro expansion.
2705 (while woman0-rename-alist
2706 (let* ((new (car woman0-rename-alist))
2707 (old (cdr new))
2708 (new (car new)))
2709 (setq woman0-rename-alist (cdr woman0-rename-alist))
2710 (goto-char (point-min))
2711 (setq new (concat "^[.'][ \t]*" (regexp-quote new)))
2712 (setq old (concat "." old))
2713 (while (re-search-forward new nil t)
2714 (replace-match old nil t)))))
2716 (defconst woman-unescape-regex
2717 (concat woman-escaped-escape-string
2718 "\\(" woman-escaped-escape-string "\\)?"))
2720 (defsubst woman-unescape (macro)
2721 "Replace escape sequences in the body of MACRO.
2722 Replaces || by |, but | by \, where | denotes the internal escape."
2723 (let (start)
2724 (while (setq start (string-match woman-unescape-regex macro start))
2725 (setq macro
2726 (if (match-string 1 macro)
2727 (replace-match "" t t macro 1)
2728 (replace-match "\\" t t macro))
2729 start (1+ start)))
2730 macro))
2732 (defun woman0-de (&optional append)
2733 "Process .de/am xx yy -- (re)define/append macro xx; end at `..'.
2734 \(Should be up to call of yy, which defaults to `.')
2735 Optional argument APPEND, if non-nil, means append macro."
2736 ;; Modelled on woman-strings. BEWARE: Processing of .am is a hack!
2737 ;; Add support for .rm?
2738 ;; (skip-chars-forward " \t")
2739 (if (eolp) ; ignore if no argument
2741 (looking-at "[^ \t\n]+") ; macro name
2742 (let* ((macro (match-string 0)) from
2743 (previous (assoc macro woman0-macro-alist)))
2744 (if (not previous)
2745 (setq woman0-search-regex-start
2746 (concat woman0-search-regex-start "\\|" (regexp-quote macro))
2747 woman0-search-regex
2748 (concat woman0-search-regex-start woman0-search-regex-end)
2750 ;; Macro body runs from start of next line to line
2751 ;; beginning with `..'."
2752 ;; The terminal request MUST begin with `.' (not ')!
2753 (forward-line)
2754 (setq from (point))
2755 (re-search-forward "^\\.[ \t]*\\.")
2756 (beginning-of-line)
2757 (let ((body (woman-unescape (buffer-substring from (point)))))
2758 (if (and append previous)
2759 (setq previous (cdr previous)
2760 body (concat body (cdr previous))
2761 append (car previous)
2763 (setq macro (cons macro (cons append body))))
2764 ;; This should be an update, but consing a new string
2765 ;; onto the front of the alist has the same effect:
2766 (setq woman0-macro-alist (cons macro woman0-macro-alist))
2767 (forward-line)
2768 (delete-region from (point))
2769 (backward-char) ; return to end of .de/am line
2771 (beginning-of-line) ; delete .de/am line
2772 (woman-delete-line 1))
2774 (defun woman0-macro (request)
2775 "Process the macro call named REQUEST."
2776 ;; Leaves point at start of new text.
2777 (let ((macro (assoc request woman0-macro-alist)))
2778 (if macro
2779 (woman-interpolate-macro (cdr macro))
2780 ;; SHOULD DELETE THE UNINTERPRETED REQUEST!!!!!
2781 ;; Output this message once only per call (cf. strings)?
2782 (WoMan-warn "Undefined macro %s not interpolated!" request))))
2784 (defun woman-interpolate-macro (macro)
2785 "Interpolate (.de) or append (.am) expansion of MACRO into the buffer."
2786 ;; Could make this more efficient by checking which arguments are
2787 ;; actually used in the expansion!
2788 (skip-chars-forward " \t")
2789 ;; Process arguments:
2790 (let ((argno 0) (append (car macro))
2791 argno-string formal-arg from actual-arg start)
2792 (setq macro (cdr macro))
2793 (while (not (eolp))
2794 ;; Get next actual arg:
2795 (setq argno (1+ argno))
2796 (setq argno-string (format "%d" argno))
2797 (setq formal-arg (concat "\\\\\\$" argno-string)) ; regexp
2798 (setq from (point))
2799 (woman-forward-arg 'unquote 'noskip)
2800 (setq actual-arg (buffer-substring from (point)))
2801 (skip-chars-forward " \t") ; now skip following whitespace!
2802 ;; Replace formal arg with actual arg:
2803 (setq start nil)
2804 (while (setq start (string-match formal-arg macro start))
2805 (setq macro (replace-match actual-arg t t macro)))
2807 ;; Delete any remaining formal arguments:
2808 (setq start nil)
2809 (while
2810 (setq start (string-match "\\\\\\$." macro start))
2811 (setq macro (replace-match "" t t macro)))
2812 ;; Replace .$ number register with actual arg:
2813 ;; (Do this properly via register mechanism later!)
2814 (setq start nil)
2815 (while
2816 (setq start (string-match "\\\\n(\\.\\$" macro start)) ; regexp
2817 (setq macro (replace-match argno-string t t macro)))
2818 (if append
2819 (forward-char)
2820 (beginning-of-line)
2821 (woman-delete-line 1))
2822 (save-excursion ; leave point at start of new text
2823 (insert macro))))
2826 ;;; Process strings:
2828 (defun woman-match-name ()
2829 "Match and move over name of form: x, (xx or [xxx...].
2830 Applies to number registers, fonts, strings/macros/diversions, and
2831 special characters."
2832 (cond ((= (following-char) ?\[ )
2833 (forward-char)
2834 (re-search-forward "[^]]+")
2835 (forward-char)) ; skip closing ]
2836 ((= (following-char) ?\( )
2837 (forward-char)
2838 (re-search-forward ".."))
2839 (t (re-search-forward "."))))
2841 (defun woman-strings (&optional to)
2842 "Process ?roff string requests and escape sequences up to buffer position TO.
2843 Strings are defined/updated by `.ds xx string' requests and
2844 interpolated by `\*x' and `\*(xx' escapes."
2845 ;; Add support for .as and .rm?
2846 (while
2847 ;; Find .ds requests and \* escapes:
2848 (re-search-forward "\\(^[.'][ \t]*ds\\)\\|\\\\\\*" to t)
2849 (cond ((match-string 1) ; .ds
2850 (skip-chars-forward " \t")
2851 (if (eolp) ; ignore if no argument
2853 (re-search-forward "[^ \t\n]+")
2854 (let ((string (match-string 0)))
2855 (skip-chars-forward " \t")
2856 ; (setq string
2857 ; (cons string
2858 ; ;; hack (?) for CGI.man!
2859 ; (cond ((looking-at "\"\"") "\"")
2860 ; ((looking-at ".*") (match-string 0)))
2861 ; ))
2862 ;; Above hack causes trouble in arguments!
2863 (looking-at ".*")
2864 (setq string (cons string (match-string 0)))
2865 ;; This should be an update, but consing a new string
2866 ;; onto the front of the alist has the same effect:
2867 (setq woman-string-alist (cons string woman-string-alist))
2869 (beginning-of-line)
2870 (woman-delete-line 1))
2871 (t ; \*
2872 (let ((beg (match-beginning 0)))
2873 (woman-match-name)
2874 (let* ((stringname (match-string 0))
2875 (string (assoc stringname woman-string-alist)))
2876 (cond (string
2877 (delete-region beg (point))
2878 ;; Temporary hack in case string starts with a
2879 ;; control character:
2880 (if (bolp) (insert-before-markers "\\&"))
2881 (insert-before-markers (cdr string)))
2883 (WoMan-warn "Undefined string %s not interpolated!"
2884 stringname)
2885 (cond (woman-ignore
2886 ;; Output above message once only per call
2887 (delete-region beg (point))
2888 (setq woman-string-alist
2889 (cons (cons stringname "")
2890 woman-string-alist))))
2897 ;;; Process special character escapes \(xx:
2899 (defconst woman-special-characters
2900 ;; To be built heuristically as required!
2901 ;; MUST insert all characters as strings for correct conversion to
2902 ;; multibyte representation!
2903 '(("em" "--" "\276" . t) ; 3/4 Em dash
2904 ("bu" "*" "\267" . t) ; bullet
2905 ("fm" "'") ; foot mark
2906 ("co" "(C)" "\251") ; copyright
2908 ("pl" "+" "+" . t) ; math plus
2909 ("mi" "-" "-" . t) ; math minus
2910 ("**" "*" "*" . t) ; math star
2911 ("aa" "'" "\242" . t) ; acute accent
2912 ("ul" "_") ; underrule
2914 ("*S" "Sigma" "S" . t) ; Sigma
2916 (">=" ">=" "\263" . t) ; >=
2917 ("<=" "<=" "\243" . t) ; <=
2918 ("->" "->" "\256" . t) ; right arrow
2919 ("<-" "<-" "\254" . t) ; left arrow
2920 ("mu" " x " "\264" . t) ; multiply
2921 ("+-" "+/-" "\261" . t) ; plus-minus
2922 ("bv" "|") ; bold vertical
2924 ;; groff etc. extensions:
2925 ("lq" "\"")
2926 ("rq" "\"")
2927 ("aq" "'")
2928 ("ha" "^")
2929 ("ti" "~")
2931 "Alist of special character codes with ASCII and extended-font equivalents.
2932 Each alist elements has the form
2933 (input-string ascii-string extended-font-string . use-symbol-font)
2934 where
2935 * `\\(input-string' is the ?roff encoding,
2936 * `ascii-string' is the (multi-character) ASCII simulation,
2937 * `extended-font-string' is the single-character string representing
2938 the character position in the extended 256-character font, and
2939 * `use-symbol-font' is t to indicate use of the symbol font or nil,
2940 i.e. omitted, to indicate use of the default font.
2941 Any element may be nil. Avoid control character codes (0 to \\37, \\180
2942 to \\237) in `extended-font-string' for now, since they can be
2943 displayed only with a modified display table.
2945 Use the WoMan command `woman-display-extended-fonts' or a character
2946 map accessory to help construct this alist.")
2948 (defsubst woman-replace-match (newtext &optional face)
2949 "Replace text matched by last search with NEWTEXT and return t.
2950 Set NEWTEXT in face FACE if specified."
2951 (woman-delete-match 0)
2952 (insert-before-markers newtext)
2953 (if face (put-text-property (1- (point)) (point) 'face 'woman-symbol))
2956 (defun woman-special-characters (to)
2957 "Process special character escapes \\(xx, \\[xxx] up to buffer position TO.
2958 \(This must be done AFTER translation, which may use special characters.)"
2959 (while (re-search-forward "\\\\\\(?:(\\(..\\)\\|\\[\\([[^]]+\\)\\]\\)" to t)
2960 (let* ((name (or (match-string-no-properties 1)
2961 (match-string-no-properties 2)))
2962 (replacement (assoc name woman-special-characters)))
2963 (unless
2964 (and
2965 replacement
2966 (cond ((and (cddr replacement)
2967 (if (nthcdr 3 replacement)
2968 ;; Need symbol font:
2969 (if woman-use-symbol-font
2970 (woman-replace-match (nth 2 replacement)
2971 'woman-symbol))
2972 ;; Need extended font:
2973 (if woman-use-extended-font
2974 (woman-replace-match (nth 2 replacement))))))
2975 ((cadr replacement) ; Use ASCII simulation
2976 (woman-replace-match (cadr replacement)))))
2977 (WoMan-warn (concat "Special character "
2978 (if (match-string 1) "\\(%s" "\\[%s]")
2979 " not interpolated!") name)
2980 (if woman-ignore (woman-delete-match 0))))
2983 (defun woman-display-extended-fonts ()
2984 "Display table of glyphs of graphic characters and their octal codes.
2985 All the octal codes in the ranges [32..127] and [160..255] are displayed
2986 together with the corresponding glyphs from the default and symbol fonts.
2987 Useful for constructing the alist variable `woman-special-characters'."
2988 (interactive)
2989 (with-output-to-temp-buffer "*WoMan Extended Font Map*"
2990 (save-excursion
2991 (set-buffer standard-output)
2992 (let ((i 32))
2993 (while (< i 256)
2994 (insert (format "\\%03o " i) (string i) " " (string i))
2995 (put-text-property (1- (point)) (point)
2996 'face 'woman-symbol)
2997 (insert " ")
2998 (setq i (1+ i))
2999 (when (= i 128) (setq i 160) (insert "\n"))
3000 (if (zerop (% i 8)) (insert "\n")))
3002 (print-help-return-message)))
3005 ;;; Formatting macros that do not cause a break:
3007 (defvar request) ; Bound locally by woman1-roff-buffer
3008 (defvar unquote) ; Bound locally by woman1-roff-buffer
3010 (defun woman-unquote (to)
3011 "Delete any double-quote characters between point and TO.
3012 Leave point at TO (which should be a marker)."
3013 (let (in-quote)
3014 (while (search-forward "\"" to 1)
3015 (if (and in-quote (looking-at "\""))
3016 ;; Repeated double-quote represents single double-quote
3017 (delete-char 1)
3018 (if (or in-quote (looking-at ".*\"")) ; paired
3019 (delete-char -1))
3020 (setq in-quote (not in-quote))
3022 (if in-quote
3023 (WoMan-warn "Unpaired \" in .%s arguments." request))
3026 (defsubst woman-unquote-args ()
3027 "Delete any double-quote characters up to the end of the line."
3028 (woman-unquote (save-excursion (end-of-line) (point-marker))))
3030 (defun woman1-roff-buffer ()
3031 "Process non-breaking requests."
3032 (let ((case-fold-search t)
3033 request fn unquote)
3034 (while
3035 ;; Find next control line:
3036 (re-search-forward woman-request-regexp nil t)
3037 (cond
3038 ;; Construct woman function to call:
3039 ((setq fn (intern-soft
3040 (concat "woman1-"
3041 (setq request (match-string 1)))))
3042 (if (get fn 'notfont) ; not a font-change request
3043 (funcall fn)
3044 ;; Delete request or macro name:
3045 (woman-delete-match 0)
3046 ;; If no args then apply to next line else unquote args
3047 ;; (unquote is used by called function):
3048 (setq unquote (not (eolp)))
3049 (if (eolp) (delete-char 1))
3050 ; ;; Hide leading control character in unquoted argument:
3051 ; (cond ((memq (following-char) '(?. ?'))
3052 ; (insert "\\&")
3053 ; (beginning-of-line)))
3054 ;; Call the appropriate function:
3055 (funcall fn)
3056 ;; Hide leading control character in quoted argument (only):
3057 (if (and unquote (memq (following-char) '(?. ?')))
3058 (insert "\\&"))
3060 )))))
3062 ;;; Font-changing macros:
3064 (defun woman1-B ()
3065 ".B -- Set words of current line in bold font."
3066 (woman1-B-or-I ".ft B\n"))
3068 (defun woman1-I ()
3069 ".I -- Set words of current line in italic font."
3070 (woman1-B-or-I ".ft I\n"))
3072 (defun woman1-B-or-I (B-or-I)
3073 ".B/I -- Set words of current line in bold/italic font.
3074 B-OR-I is the appropriate complete control line."
3075 ;; Should NOT concatenate the arguments!
3076 (insert B-or-I) ; because it might be a control line
3077 ;; Return to bol to process .SM/.B, .B/.if etc.
3078 ;; or start of first arg to hide leading control char.
3079 (save-excursion
3080 (if unquote
3081 (woman-unquote-args)
3082 (while (looking-at "^[.']") (forward-line))
3083 (end-of-line)
3084 (delete-horizontal-space))
3085 (insert "\\fR")))
3087 (defun woman1-SM ()
3088 ".SM -- Set the current line in small font, i.e. IGNORE!"
3089 nil)
3091 (defalias 'woman1-SB 'woman1-B)
3092 ;; .SB -- Set the current line in small bold font, i.e. just embolden!
3093 ;; (This is what /usr/local/share/groff/tmac/tmac.an does. The
3094 ;; Linux man.7 is wrong about this!)
3096 (defun woman1-BI ()
3097 ".BI -- Join words of current line alternating bold and italic fonts."
3098 (woman1-alt-fonts (list "\\fB" "\\fI")))
3100 (defun woman1-BR ()
3101 ".BR -- Join words of current line alternating bold and Roman fonts."
3102 (woman1-alt-fonts (list "\\fB" "\\fR")))
3104 (defun woman1-IB ()
3105 ".IB -- Join words of current line alternating italic and bold fonts."
3106 (woman1-alt-fonts (list "\\fI" "\\fB")))
3108 (defun woman1-IR ()
3109 ".IR -- Join words of current line alternating italic and Roman fonts."
3110 (woman1-alt-fonts (list "\\fI" "\\fR")))
3112 (defun woman1-RB ()
3113 ".RB -- Join words of current line alternating Roman and bold fonts."
3114 (woman1-alt-fonts (list "\\fR" "\\fB")))
3116 (defun woman1-RI ()
3117 ".RI -- Join words of current line alternating Roman and italic fonts."
3118 (woman1-alt-fonts (list "\\fR" "\\fI")))
3120 (defun woman1-alt-fonts (fonts)
3121 "Join words using alternating fonts in FONTS, which MUST be a dynamic list."
3122 (nconc fonts fonts) ; circular list!
3123 (insert (car fonts))
3124 ;; Return to start of first arg to hide leading control char:
3125 (save-excursion
3126 (setq fonts (cdr fonts))
3127 (woman-forward-arg unquote 'concat) ; unquote is bound above
3128 (while (not (eolp))
3129 (insert (car fonts))
3130 (setq fonts (cdr fonts))
3131 (woman-forward-arg unquote 'concat)) ; unquote is bound above
3132 (insert "\\fR")
3135 (defun woman-forward-arg (&optional unquote concat)
3136 "Move forward over one ?roff argument, optionally unquoting and/or joining.
3137 If optional arg UNQUOTE is non-nil then delete any argument quotes.
3138 If optional arg CONCAT is non-nil then join arguments."
3139 (if (eq (following-char) ?\")
3140 (progn
3141 (if unquote (delete-char 1) (forward-char))
3142 (re-search-forward "\"\\|$")
3143 ;; Repeated double-quote represents single double-quote
3144 (while (eq (following-char) ?\") ; paired
3145 (if unquote (delete-char 1) (forward-char))
3146 (re-search-forward "\"\\|$"))
3147 (if (eq (preceding-char) ?\")
3148 (if unquote (delete-backward-char 1))
3149 (WoMan-warn "Unpaired \" in .%s arguments." request)
3151 ;; (re-search-forward "[^\\\n] \\|$") ; inconsistent
3152 (skip-syntax-forward "^ "))
3153 (cond ((null concat) (skip-chars-forward " \t")) ; don't skip eol!
3154 ((eq concat 'noskip)) ; do not skip following whitespace
3155 (t (woman-delete-following-space)))
3159 ;; The following requests are not explicit font-change requests and
3160 ;; so are flagged `notfont' to turn off automatic request deletion
3161 ;; and further processing.
3163 (put 'woman1-TP 'notfont t)
3164 (defun woman1-TP ()
3165 ".TP -- After tag line, reset font to Roman for paragraph body."
3166 ;; Same for .IP, but forward only 1 line?
3167 (save-excursion
3168 ;; May be an `irrelevant' control line in the way, so ...
3169 (forward-line)
3170 (forward-line (if (looking-at "\\.\\S-+[ \t]*$") 2 1))
3171 ;; May be looking at control line, so ...
3172 (insert ".ft R\n")))
3174 (put 'woman1-ul 'notfont t)
3175 (defun woman1-ul ()
3176 ".ul N -- Underline (italicize) the next N input lines, default N = 1."
3177 (let ((N (if (eolp) 1 (woman-parse-numeric-arg)))) ; woman-get-numeric-arg ?
3178 (woman-delete-whole-line)
3179 (insert ".ft I\n")
3180 (forward-line N)
3181 (insert ".ft R\n")
3184 ;;; Other non-breaking requests:
3186 ;; Hyphenation
3187 ;; Warnings commented out.
3189 (put 'woman1-nh 'notfont t)
3190 (defun woman1-nh ()
3191 ".nh -- No hyphenation, i.e. IGNORE!"
3192 ;; Must be handled here to avoid breaking!
3193 ;; (WoMan-log-1 ".nh request ignored -- hyphenation not supported!")
3194 (woman-delete-whole-line))
3196 (put 'woman1-hy 'notfont t)
3197 (defun woman1-hy ()
3198 ".hy N -- Set hyphenation mode to N, i.e. IGNORE!"
3199 ;; (WoMan-log-1 ".hy request ignored -- hyphenation not supported!")
3200 (woman-delete-whole-line))
3202 (put 'woman1-hc 'notfont t)
3203 (defun woman1-hc ()
3204 ".hc c -- Set hyphenation character to c, i.e. delete it!"
3205 (let ((c (char-to-string (following-char))))
3206 ;; (WoMan-log
3207 ;; "Hyphenation character %s deleted -- hyphenation not supported!" c)
3208 (woman-delete-whole-line)
3209 (setq c (concat "\\(" c "\\)\\|^[.'][ \t]*hc"))
3210 (save-excursion
3211 (while (and (re-search-forward c nil t)
3212 (match-string 1))
3213 (delete-char -1)))
3216 (put 'woman1-hw 'notfont t)
3217 (defun woman1-hw ()
3218 ".hw words -- Set hyphenation exception words, i.e. IGNORE!"
3219 ;; (WoMan-log-1 ".hw request ignored -- hyphenation not supported!")
3220 (woman-delete-whole-line))
3222 ;;; Other non-breaking requests correctly ignored by nroff:
3224 (put 'woman1-ps 'notfont t)
3225 (defalias 'woman1-ps 'woman-delete-whole-line)
3226 ;; .ps -- Point size -- IGNORE!
3228 (put 'woman1-ss 'notfont t)
3229 (defalias 'woman1-ss 'woman-delete-whole-line)
3230 ;; .ss -- Space-character size -- IGNORE!
3232 (put 'woman1-cs 'notfont t)
3233 (defalias 'woman1-cs 'woman-delete-whole-line)
3234 ;; .cs -- Constant character space (width) mode -- IGNORE!
3236 (put 'woman1-ne 'notfont t)
3237 (defalias 'woman1-ne 'woman-delete-whole-line)
3238 ;; .ne -- Need vertical space -- IGNORE!
3240 (put 'woman1-vs 'notfont t)
3241 (defalias 'woman1-vs 'woman-delete-whole-line)
3242 ;; .vs -- Vertical base line spacing -- IGNORE!
3244 (put 'woman1-bd 'notfont t)
3245 (defalias 'woman1-bd 'woman-delete-whole-line)
3246 ;; .bd -- Embolden font -- IGNORE!
3248 ;;; Non-breaking SunOS-specific macros:
3250 (defun woman1-TX ()
3251 ".TX t p -- Resolve SunOS abbrev t and join to p (usually punctuation)."
3252 (insert "SunOS ")
3253 (woman-forward-arg 'unquote 'concat))
3255 (put 'woman1-IX 'notfont t)
3256 (defalias 'woman1-IX 'woman-delete-whole-line)
3257 ;; .IX -- Index macro, for Sun internal use -- IGNORE!
3260 ;;; Direct font selection:
3262 (defconst woman-font-alist
3263 '(("R" . default)
3264 ("I" . woman-italic)
3265 ("B" . woman-bold)
3266 ("P" . previous)
3267 ("1" . default)
3268 ("2" . woman-italic)
3269 ("3" . woman-bold) ; used in bash.1
3271 "Alist of ?roff font indicators and woman font variables and names.")
3273 (defun woman-change-fonts ()
3274 "Process font changes."
3275 ;; ***** NEEDS REVISING IF IT WORKS OK *****
3276 ;; Paragraph .LP/PP/HP/IP/TP and font .B/.BI etc. macros reset font.
3277 ;; Should .SH/.SS reset font?
3278 ;; Font size setting macros (?) should reset font.
3279 (let ((font-alist woman-font-alist) ; for local updating
3280 (previous-pos (point))
3281 (previous-font 'default)
3282 (current-font 'default))
3283 (while
3284 ;; Find font requests, paragraph macros and font escapes:
3285 (re-search-forward
3286 "^[.'][ \t]*\\(\\(\\ft\\)\\|\\(.P\\)\\)\\|\\(\\\\f\\)" nil 1)
3287 (let (font beg notfont)
3288 ;; Match font indicator and leave point at end of sequence:
3289 (cond ((match-string 2)
3290 ;; .ft request found
3291 (setq beg (match-beginning 0))
3292 (skip-chars-forward " \t")
3293 (if (eolp) ; default is previous font
3294 (setq font previous-font)
3295 (looking-at "[^ \t\n]+"))
3296 (forward-line)) ; end of control line and \n
3297 ((match-string 3)
3298 ;; Macro that resets font found
3299 (setq font 'default))
3300 ((match-string 4)
3301 ;; \f escape found
3302 (setq beg (match-beginning 0))
3303 (woman-match-name))
3304 (t (setq notfont t)))
3305 (if notfont
3307 ;; Get font name:
3308 (or font
3309 (let ((fontstring (match-string 0)))
3310 (setq font (assoc fontstring font-alist)
3311 ;; NB: font-alist contains VARIABLE NAMES.
3312 font (if font
3313 (cdr font)
3314 (WoMan-warn "Unknown font %s." fontstring)
3315 ;; Output this message once only per call ...
3316 (setq font-alist
3317 (cons (cons fontstring 'woman-unknown)
3318 font-alist))
3319 'woman-unknown)
3321 ;; Delete font control line or escape sequence:
3322 (cond (beg (delete-region beg (point))
3323 (if (eq font 'previous) (setq font previous-font))))
3324 (woman-set-face previous-pos (point) current-font)
3325 (if beg
3326 ;; Explicit font control
3327 (setq previous-pos (point)
3328 previous-font current-font)
3329 ;; Macro that resets font
3330 ;; (forward-line) ; DOES NOT WORK! but unnecessary?
3331 ;; Must process font changes in any paragraph tag!
3332 (setq previous-pos (point)
3333 previous-font 'default))
3334 (setq current-font font)
3336 ;; Set font after last request up to eob:
3337 (woman-set-face previous-pos (point) current-font)
3340 (defun woman-set-face (from to face)
3341 "Set the face of the text from FROM to TO to face FACE.
3342 Ignore the default face and underline only word characters."
3343 (or (eq face 'default) ; ignore
3344 (not woman-fontify)
3345 (if (face-underline-p face)
3346 (save-excursion
3347 (let ((face-no-ul (intern (concat (symbol-name face) "-no-ul"))))
3348 (goto-char from)
3349 (while (< (point) to)
3350 (skip-syntax-forward "w" to)
3351 (put-text-property from (point) 'face face)
3352 (setq from (point))
3353 (skip-syntax-forward "^w" to)
3354 (put-text-property from (point) 'face face-no-ul)
3355 (setq from (point))
3357 (put-text-property from to 'face face))
3361 ;;; Output translation:
3363 (defvar translations nil) ; Also bound locally by woman2-roff-buffer
3364 ;; A list of the form (\"[ace]\" (a . b) (c . d) (e . ?\ )) or nil.
3366 (defun woman-get-next-char ()
3367 "Return and delete next char in buffer, including special chars."
3368 (if ;;(looking-at "\\\\(\\(..\\)")
3369 ;; Match special \(xx and strings \*[xxx], \*(xx, \*x:
3370 (looking-at "\\\\\\((..\\|\\*\\(\\[[^]]+\\]\\|(..\\|.\\)\\)")
3371 (prog1 (match-string 0)
3372 (woman-delete-match 0))
3373 (prog1 (char-to-string (following-char))
3374 (delete-char 1))))
3376 (defun woman2-tr (to)
3377 ".tr abcde -- Translate a -> b, c -> d, ..., e -> space.
3378 Format paragraphs upto TO. Supports special chars.
3379 \(Breaks, but should not.)"
3380 ;; This should be an update, but consing onto the front of the alist
3381 ;; has the same effect and match duplicates should not matter.
3382 ;; Initialize translation data structures:
3383 (let ((matches (car translations))
3384 (alist (cdr translations))
3385 a b)
3386 ;; `matches' must be a string:
3387 (setq matches
3388 (concat (if matches (substring matches 1 -1)) "]"))
3389 ;; Process .tr arguments:
3390 (while (not (eolp)) ; (looking-at "[ \t]*$") ???
3391 (setq a (woman-get-next-char))
3392 (if (eolp)
3393 (setq b " ")
3394 (setq b (woman-get-next-char)))
3395 (setq matches
3396 (if (= (length a) 1)
3397 (concat a matches)
3398 (concat matches "\\|\\" a))
3399 alist (cons (cons a b) alist)))
3400 (delete-char 1) ; no blank line
3401 ;; Rebuild translations list:
3402 (setq matches
3403 (if (= (string-to-char matches) ?\])
3404 (substring matches 3)
3405 (concat "[" matches))
3406 translations (cons matches alist))
3407 ;; Format any following text:
3408 (woman2-format-paragraphs to)
3411 (defsubst woman-translate (to)
3412 "Translate up to marker TO. Do this last of all transformations."
3413 (if translations
3414 (let ((matches (car translations))
3415 (alist (cdr translations)))
3416 (while (re-search-forward matches to t)
3417 ;; Done like this to retain text properties and
3418 ;; support translation of special characters:
3419 (insert-before-markers-and-inherit
3420 (cdr (assoc
3421 (buffer-substring-no-properties
3422 (match-beginning 0) (match-end 0))
3423 alist)))
3424 (woman-delete-match 0))
3428 ;;; Registers:
3430 (defvar woman-registers ; these are all read-only
3431 '((".H" 24) (".V" 48) ; resolution in basic units
3432 (".g" 0) ; not groff
3433 ;; (Iff emulating groff need to implement groff italic correction
3434 ;; \/, e.g. for pic.1)
3435 (".i" left-margin) ; current indent
3436 (".j" woman-adjust) ; current adjustment
3437 (".l" fill-column) ; current line length
3438 (".s" 12) ; current point size
3439 (".u" (if woman-nofill 0 1)) ; 1/0 in fill/nofill mode
3440 (".v" 48) ; current vertical line spacing
3442 "Register alist: the key is the register name as a string.
3443 Each element has the form (KEY VALUE . INC) -- inc may be nil.
3444 Also bound locally in `woman2-roff-buffer'.")
3446 (defun woman-mark-horizonal-position ()
3447 "\\kx -- Store current horizontal position in INPUT LINE in register x."
3448 (while (re-search-forward "\\\\k\\(.\\)" nil t)
3449 (goto-char (match-beginning 0))
3450 (setq woman-registers
3451 (cons (list (match-string 1) (current-column))
3452 woman-registers))
3453 (woman-delete-match 0)))
3455 (defsubst woman2-process-escapes-to-eol (&optional numeric)
3456 "Process remaining escape sequences up to eol.
3457 Handle numeric arguments specially if optional argument NUMERIC is non-nil."
3458 (woman2-process-escapes (copy-marker (line-end-position) t) numeric))
3460 (defun woman2-nr (to)
3461 ".nr R +/-N M -- Assign +/-N (wrt to previous value, if any) to register R.
3462 The increment for auto-incrementing is set to M.
3463 Format paragraphs upto TO. (Breaks, but should not!)"
3464 (let* ((name (buffer-substring
3465 (point)
3466 (progn (skip-syntax-forward "^ ") (point))))
3467 (pm (progn ; increment
3468 (skip-chars-forward " \t")
3469 (when (memq (char-after) '(?+ ?-))
3470 (forward-char) (char-before))))
3471 (value (if (eolp) ; no value
3472 nil ; to be interpreted as zero
3473 (woman2-process-escapes-to-eol 'numeric)
3474 (woman-parse-numeric-arg)))
3475 (inc (progn ; auto-increment
3476 (skip-chars-forward " \t")
3477 (if (eolp) ; no value
3478 nil ; to be interpreted as zero ???
3479 (woman-parse-numeric-arg))))
3480 (oldvalue (assoc name woman-registers)))
3481 (when oldvalue
3482 (setq oldvalue (cdr oldvalue)) ; (value . inc)
3483 (unless inc (setq inc (cdr oldvalue))))
3484 (cond ((null value)
3485 (setq value 0) ; correct?
3486 (WoMan-warn "nr %s -- null value assigned as zero!" name))
3487 ((symbolp value)
3488 (setq value (list 'quote value))))
3489 (if pm ; increment old value
3490 (setq oldvalue (if oldvalue (car oldvalue) 0)
3491 value (if (eq pm ?+)
3492 (+ oldvalue value)
3493 (- oldvalue value))))
3494 (setq woman-registers
3495 (cons (cons name (cons value inc)) woman-registers))
3496 (woman-delete-whole-line)
3497 (woman2-format-paragraphs to)))
3500 ;;; Numeric (and "non-text") request arguments:
3502 (defsubst woman-get-numeric-arg ()
3503 "Get the value of a numeric argument at or after point.
3504 The argument can include the width function and scale indicators.
3505 Assumes 10 characters per inch. Does not move point."
3506 (woman2-process-escapes-to-eol 'numeric)
3507 (save-excursion (woman-parse-numeric-arg)))
3509 (defun woman-parse-numeric-arg ()
3510 "Get the value of a numeric expression at or after point.
3511 Unlike `woman-get-numeric-arg', leaves point after the argument.
3512 The expression may be an argument in quotes."
3513 (if (= (following-char) ?\") (forward-char))
3514 ;; Allow leading +/-:
3515 (let ((value (if (looking-at "[+-]") 0 (woman-parse-numeric-value)))
3517 (while (cond
3518 ((looking-at "[+-/*%]") ; arithmetic operators
3519 (forward-char)
3520 (setq op (intern-soft (match-string 0)))
3521 (setq value (funcall op value (woman-parse-numeric-value))))
3522 ((looking-at "[<=>]=?") ; relational operators
3523 (goto-char (match-end 0))
3524 (setq op (or (intern-soft (match-string 0))
3525 (intern-soft "=")))
3526 (setq value (if (funcall op value (woman-parse-numeric-value))
3527 1 0)))
3528 ((memq (setq op (following-char)) '(?& ?:)) ; Boolean and / or
3529 (forward-char)
3530 (setq value
3531 ;; and / or are special forms, not functions, in ELisp
3532 (if (eq op ?&)
3533 ;; and
3534 (if (> value 0)
3535 (if (> (woman-parse-numeric-value) 0) 1 0)
3536 ;; skip second operand
3537 (prog1 0 (woman-parse-numeric-value)))
3538 ;; or
3539 (if (> value 0)
3540 ;; skip second operand
3541 (prog1 1 (woman-parse-numeric-value))
3542 (if (> (woman-parse-numeric-value) 0) 1 0))
3545 ; (if (looking-at "[ \t\nRC\)\"]") ; R, C are tab types
3546 ; ()
3547 ; (WoMan-warn "Unimplemented numerical operator `%c' in %s"
3548 ; (following-char)
3549 ; (buffer-substring
3550 ; (save-excursion (beginning-of-line) (point))
3551 ; (save-excursion (end-of-line) (point))))
3552 ; (skip-syntax-forward "^ "))
3553 value
3556 (defun woman-parse-numeric-value ()
3557 "Get a single numeric value at or after point.
3558 The value can be a number register or width function (which assumes 10
3559 characters per inch) and can include scale indicators. It may be an
3560 expression in parentheses. Leaves point after the value."
3561 ;; Must replace every \' by some different single character first
3562 ;; before calling this function by calling
3563 ;; (woman2-process-escapes-to-eol 'numeric)
3564 (if (eq (following-char) ?\()
3565 ;; Treat parenthesized expression as a single value.
3566 (let (n)
3567 (forward-char)
3568 (setq n (woman-parse-numeric-arg))
3569 (skip-syntax-forward " ")
3570 (if (eq (following-char) ?\))
3571 (forward-char)
3572 (WoMan-warn "Parenthesis confusion in numeric expression!"))
3574 (let ((n (cond ((looking-at "[-+]?[.0-9]+") ; single number
3575 ;; currently needed to set match-end, even though
3576 ;; string-to-number returns 0 if number not parsed.
3577 (string-to-number (match-string 0)))
3578 ((looking-at "\\\\n\\([-+]\\)?\\(?:\
3579 \\[\\([^]]+\\)\\]\\|\(\\(..\\)\\|\\(.\\)\\)")
3580 ;; interpolate number register, maybe auto-incremented
3581 (let* ((pm (match-string-no-properties 1))
3582 (name (or (match-string-no-properties 2)
3583 (match-string-no-properties 3)
3584 (match-string-no-properties 4)))
3585 (value (assoc name woman-registers)))
3586 (if value
3587 (let (inc)
3588 (setq value (cdr value) ; (value . inc)
3589 inc (cdr value)
3590 ;; eval internal (.X) registers
3591 ;; stored as lisp variable names:
3592 value (eval (car value)))
3593 (if (and pm inc) ; auto-increment
3594 (setq value
3595 (funcall (intern-soft pm) value inc)
3596 woman-registers
3597 (cons (cons name (cons value inc))
3598 woman-registers)))
3599 value)
3600 (WoMan-warn "Undefined register %s defaulted to 0."
3601 name)
3602 0) ; default to zero
3604 ((re-search-forward
3605 ;; Delimiter can be special char escape \[xxx],
3606 ;; \(xx or single normal char (usually '):
3607 "\\=\\\\w\\(\\\\\\[[^]]+\\]\\|\\\\(..\\|.\\)" nil t)
3608 (let ((from (match-end 0))
3609 (delim (regexp-quote (match-string 1))))
3610 (if (re-search-forward delim nil t)
3611 ;; Return width of string:
3612 (- (match-beginning 0) from)
3613 (WoMan-warn "Width escape delimiter error!"))))
3615 (if (null n)
3616 ;; ERROR -- should handle this better!
3617 (progn
3618 (WoMan-warn "Numeric/register argument error: %s"
3619 (buffer-substring
3620 (point)
3621 (save-excursion (end-of-line) (point))))
3622 (skip-syntax-forward "^ ")
3624 (goto-char (match-end 0))
3625 ;; Check for scale factor:
3627 (cond
3628 ((looking-at "\\s ") nil) ; stay put!
3629 ((looking-at "[mnuv]")) ; ignore for now
3630 ((looking-at "i") (setq n (* n 10))) ; inch
3631 ((looking-at "c") (setq n (* n 3.9))) ; cm
3632 ((looking-at "P") (setq n (* n 1.7))) ; Pica
3633 ((looking-at "p") (setq n (* n 0.14))) ; point
3634 ;; NB: May be immediately followed by + or -, etc.,
3635 ;; in which case do nothing and return nil.
3637 (goto-char (match-end 0)))
3638 (if (numberp n) (round n) n))
3642 ;;; VERTICAL FORMATTING -- Formatting macros that cause a break:
3644 ;; Vertical spacing philosophy:
3645 ;; Delete all vertical space as it is encountered. Then insert
3646 ;; vertical space only before text, as required.
3648 (defun woman2-roff-buffer ()
3649 "Process breaks. Format paragraphs and headings."
3650 (let ((case-fold-search t)
3651 (to (make-marker))
3652 (canonically-space-region
3653 (symbol-function 'canonically-space-region))
3654 (insert-and-inherit (symbol-function 'insert-and-inherit))
3655 (set-text-properties (symbol-function 'set-text-properties))
3656 (woman-registers woman-registers)
3657 fn request translations
3658 tab-stop-list)
3659 (set-marker-insertion-type to t)
3660 ;; ?roff does not squeeze multiple spaces, but does fill, so...
3661 (fset 'canonically-space-region 'ignore)
3662 ;; Try to avoid spaces inheriting underlines from preceding text!
3663 (fset 'insert-and-inherit (symbol-function 'insert))
3664 (fset 'set-text-properties 'ignore)
3665 (unwind-protect
3666 (while
3667 ;; Find next control line:
3668 (re-search-forward woman-request-regexp nil t)
3669 (cond
3670 ;; Construct woman function to call:
3671 ((setq fn (intern-soft
3672 (concat "woman2-"
3673 (setq request (match-string 1)))))
3674 ;; Delete request or macro name:
3675 (woman-delete-match 0))
3676 ;; Unrecognised request:
3677 ((prog1 nil
3678 ;; (WoMan-warn ".%s request ignored!" request)
3679 (WoMan-warn-ignored request "ignored!")
3680 ;; (setq fn 'woman2-LP)
3681 ;; AVOID LEAVING A BLANK LINE!
3682 ;; (setq fn 'woman2-format-paragraphs)
3684 ;; .LP assumes it is at eol and leaves a (blank) line,
3685 ;; so leave point at end of line before paragraph:
3686 ((or (looking-at "[ \t]*$") ; no argument
3687 woman-ignore) ; ignore all
3688 ;; (beginning-of-line) (kill-line)
3689 ;; AVOID LEAVING A BLANK LINE!
3690 (beginning-of-line) (woman-delete-line 1))
3691 (t (end-of-line) (insert ?\n))
3693 (if (not (or fn
3694 (and (not (memq (following-char) '(?. ?')))
3695 (setq fn 'woman2-format-paragraphs))))
3697 ;; Find next control line:
3698 (set-marker to (woman-find-next-control-line))
3699 ;; Call the appropriate function:
3700 (funcall fn to)))
3701 (if (not (eobp)) ; This should not happen, but ...
3702 (woman2-format-paragraphs (copy-marker (point-max) t)
3703 woman-left-margin))
3704 (fset 'canonically-space-region canonically-space-region)
3705 (fset 'set-text-properties set-text-properties)
3706 (fset 'insert-and-inherit insert-and-inherit)
3707 (set-marker to nil))))
3709 (defun woman-find-next-control-line ()
3710 "Find and return start of next control line."
3711 ; (let ((to (save-excursion
3712 ; (re-search-forward "^\\." nil t))))
3713 ; (if to (1- to) (point-max)))
3714 (let (to)
3715 (save-excursion
3716 ;; Must handle
3717 ;; ...\c
3718 ;; .br (and other requests?)
3719 ;; by deleting both the \c and the following request.
3720 ;; BEWARE THAT THIS CODE MAY BE UNRELIABLE!!!!!
3721 (while
3722 (and
3723 (setq to (re-search-forward "\\(\\\\c\\)?\n[.']" nil t))
3724 (match-string 1)
3725 (looking-at "br"))
3726 (goto-char (match-beginning 0))
3727 (woman-delete-line 2)))
3728 (if to (1- to) (point-max))))
3730 (defun woman2-PD (to)
3731 ".PD d -- Set the interparagraph distance to d.
3732 Round to whole lines, default 1 line. Format paragraphs upto TO.
3733 \(Breaks, but should not.)"
3734 ;; .ie \\n[.$] .nr PD (v;\\$1)
3735 ;; .el .nr PD .4v>?\n[.V]
3736 (woman-set-interparagraph-distance)
3737 (woman2-format-paragraphs to))
3739 (defun woman-set-interparagraph-distance ()
3740 "Set the interparagraph distance from a .PD request at point."
3741 (setq woman-interparagraph-distance
3742 (if (eolp) 1 (woman-get-numeric-arg)))
3743 ;; Should allow .PD 0 to set zero line spacing
3744 (woman-delete-line 1)) ; ignore remaining args
3746 (defsubst woman-interparagraph-space ()
3747 "Set variable `woman-leave-blank-lines' from `woman-interparagraph-distance'."
3748 ; (if (> woman-interparagraph-distance 0)
3749 ; (forward-line 1) ; leave 1 blank line
3750 ; (woman-delete-line 1)) ; do not leave blank line
3751 (setq woman-leave-blank-lines woman-interparagraph-distance)
3754 (defun woman2-TH (to)
3755 ".TH n c x v m -- Begin a man page. Format paragraphs upto TO.
3756 n is the name of the page in chapter c\; x is extra commentary\;
3757 v alters page foot left; m alters page head center.
3758 \(Should set prevailing indent and tabs to 5.)"
3759 (woman-forward-arg 'unquote 'concat)
3760 (insert ?\()
3761 (woman-forward-arg 'unquote 'concat)
3762 (insert ?\))
3763 (let ((start (point)) here)
3764 (while (not (eolp))
3765 (cond ((looking-at "\"\"[ \t]")
3766 (delete-char 2)
3767 ;; (delete-horizontal-space)
3769 (delete-horizontal-space)
3770 (setq here (point))
3771 (insert " -- ")
3772 (woman-forward-arg 'unquote 'concat)
3773 ;; Delete repeated arguments:
3774 (if (string-match (buffer-substring here (point))
3775 (buffer-substring start here))
3776 (delete-region here (point)))
3778 ;; Embolden heading (point is at end of heading):
3779 (woman-set-face
3780 (save-excursion (beginning-of-line) (point)) (point) 'woman-bold)
3781 (forward-line)
3782 (delete-blank-lines)
3783 (setq woman-left-margin woman-default-indent)
3784 (setq woman-prevailing-indent woman-default-indent)
3785 (woman2-format-paragraphs to woman-left-margin))
3787 (defun woman2-SH (to)
3788 ".SH -- Sub-head. Leave blank line and subhead.
3789 Format paragraphs upto TO. Set prevailing indent to 5."
3790 (if (eolp) ; If no args then
3791 (delete-char 1) ; apply to next line
3792 (woman-unquote-args) ; else unquote to end of heading
3793 (beginning-of-line))
3794 (woman2-process-escapes-to-eol)
3795 (woman-leave-blank-lines woman-interparagraph-distance)
3796 (setq woman-leave-blank-lines nil)
3797 ;; Optionally embolden heading (point is at beginning of heading):
3798 (if woman-bold-headings
3799 (woman-set-face
3800 (point) (save-excursion (end-of-line) (point)) 'woman-bold))
3801 (forward-line)
3802 (setq woman-left-margin woman-default-indent
3803 woman-nofill nil) ; fill output lines
3804 (setq woman-prevailing-indent woman-default-indent)
3805 (woman2-format-paragraphs to woman-left-margin))
3807 (defun woman2-SS (to)
3808 ".SS -- Sub-sub-head. Like .SH but indent heading 3 spaces.
3809 Format paragraphs upto TO."
3810 (if (eolp) ; If no args then
3811 (delete-char 1)) ; apply to next line.
3812 (insert " ")
3813 (beginning-of-line)
3814 (woman2-SH to))
3816 (defun woman2-LP (to)
3817 ".LP,.PP -- Begin paragraph. Set prevailing indent to 5.
3818 Leave 1 blank line. Format paragraphs upto TO."
3819 (woman-delete-line 1) ; ignore any arguments
3820 (woman-interparagraph-space)
3821 (setq woman-prevailing-indent woman-default-indent)
3822 (woman2-format-paragraphs to woman-left-margin))
3824 (defalias 'woman2-PP 'woman2-LP)
3825 (defalias 'woman2-P 'woman2-LP)
3827 (defun woman2-ns (to)
3828 ".ns -- Turn on no-space mode. Format paragraphs upto TO."
3829 ;; Should not cause a break!
3830 (woman-delete-line 1) ; ignore argument(s)
3831 (setq woman-nospace t)
3832 (woman2-format-paragraphs to))
3834 (defun woman2-rs (to)
3835 ".rs -- Turn off no-space mode. Format paragraphs upto TO."
3836 ;; Should not cause a break!
3837 (woman-delete-line 1) ; ignore argument(s)
3838 (setq woman-nospace nil)
3839 (woman2-format-paragraphs to))
3841 (defun woman2-sp (to)
3842 ".sp N -- If N > 0 then leave 1 blank line. Format paragraphs upto TO."
3843 (let ((N (if (eolp) 1 (woman-get-numeric-arg))))
3844 (if (>= N 0)
3845 (woman-delete-line 1) ; ignore argument(s)
3846 (setq woman-negative-vertical-space t)
3847 (insert ".sp ")
3848 (forward-line))
3849 (setq woman-leave-blank-lines N)
3850 (woman2-format-paragraphs to)))
3852 (defun woman-negative-vertical-space (from)
3853 ".sp N with N < 0 => overlap following with preceding lines at FROM."
3854 ;; Run by woman-decode-region if necessary -- not usually required.
3855 (WoMan-warn "Negative vertical spacing support is experimental!")
3856 (goto-char from)
3857 (while
3858 ;; Find next control line:
3859 (re-search-forward "^\\.sp " nil t)
3860 (let ((N (woman-get-numeric-arg))
3861 overlap overwritten)
3862 (woman-delete-whole-line)
3863 (setq from (point)
3864 overlap (buffer-substring from
3865 (progn (forward-line (- N)) (point))))
3866 (delete-region from (point))
3867 (forward-line N)
3868 (let ((imax (length overlap))
3869 (i 0) c)
3870 (while (< i imax)
3871 (setq c (aref overlap i))
3872 (cond ((eq c ?\n) ; skip
3873 (forward-line))
3874 ((eolp) ; extend line
3875 ;; Insert character INCLUDING TEXT PROPERTIES:
3876 ;; (insert (substring overlap i (1+ i)))
3877 (let ((eol (string-match "\n" overlap i)))
3878 (insert (substring overlap i eol))
3879 (setq i (or eol imax)))
3881 ((eq c ?\ ) ; skip
3882 (forward-char))
3883 ((eq c ?\t) ; skip
3884 (if (eq (following-char) ?\t)
3885 (forward-char) ; both tabs, just skip
3886 (let ((i woman-tab-width))
3887 (while (> i 0)
3888 (if (eolp)
3889 (insert ?\ ) ; extend line
3890 (forward-char)) ; skip
3891 (setq i (1- i)))
3894 (if (or (eq (following-char) ?\ ) ; overwrite OK
3895 overwritten) ; warning only once per ".sp -"
3897 (setq overwritten t)
3898 (WoMan-warn
3899 "Character(s) overwritten by negative vertical spacing in line %d"
3900 (count-lines 1 (point))))
3901 (delete-char 1) (insert (substring overlap i (1+ i)))))
3902 (setq i (1+ i))
3907 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3908 ;; The following function should probably do ALL width and number
3909 ;; register interpolation.
3910 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3912 (defun woman2-process-escapes (to &optional numeric)
3913 "Process remaining escape sequences up to marker TO, preserving point.
3914 Optional argument NUMERIC, if non-nil, means the argument is numeric."
3915 (assert (and (markerp to) (marker-insertion-type to)))
3916 ;; The first two cases below could be merged (maybe)!
3917 (let ((from (point)))
3918 ;; Discard zero width filler character used to hide leading dots
3919 ;; and zero width characters \|, \^:
3920 (while (re-search-forward "\\\\[&|^]" to t)
3921 (woman-delete-match 0))
3922 (goto-char from)
3923 ;; Interrupt text processing -- CONTINUE current text with the
3924 ;; next text line (after any control lines, unless processing to
3925 ;; eol):
3926 (while (re-search-forward "\\\\c.*\n?" to t)
3927 (woman-delete-match 0))
3928 ;; but do not delete the final newline ...
3929 (if (and (or (eobp) (= (point) to)) (not (bolp)))
3930 (insert-before-markers ?\n))
3931 (goto-char from)
3932 (woman-translate to)
3933 (goto-char from)
3934 (woman-special-characters to)
3935 (goto-char from)
3936 ;; Printable version of the current escape character, ASSUMED to be `\'
3937 ;; This must be done LAST of all escape processing!
3938 ;; Done like this to preserve any text properties of the `\'
3939 (while (search-forward "\\" to t)
3940 (let ((c (following-char)))
3941 (cond ((eq c ?') ; \' -> '
3942 (delete-char -1)
3943 (cond (numeric ; except in numeric args, \' -> `
3944 (delete-char 1)
3945 (insert ?`))))
3946 ((eq c ?\( )) ; uninterpreted special character
3947 ; \(.. -- do nothing
3948 ((eq c ?t) ; non-interpreted tab \t
3949 (delete-char 1)
3950 (delete-char -1)
3951 (insert "\t"))
3952 ((and numeric
3953 (memq c '(?w ?n ?h)))) ; leave \w, \n, \h (?????)
3954 ((eq c ?l) (woman-horizontal-line))
3956 ;; \? -> ? where ? is any remaining character
3957 (WoMan-warn "Escape ignored: \\%c -> %c" c c)
3958 (delete-char -1))
3960 (goto-char from)
3961 ;; Process non-default tab settings:
3962 (cond (tab-stop-list
3963 (while (search-forward "\t" to t)
3964 (woman-tab-to-tab-stop))
3965 (goto-char from)))
3967 ;; Must replace \' by something before processing \w, done above.
3969 ;; Replace all `\w' and `\n' escapes:
3970 ;; (This may be a bit too recursive!)
3971 (while (re-search-forward "\\\\[nw]" to t)
3972 (let ((from (match-beginning 0)) N)
3973 (goto-char from)
3974 (setq N (woman-parse-numeric-value))
3975 (delete-region from (point))
3976 ;; Interpolate value:
3977 (insert-before-markers (number-to-string N))))
3978 (goto-char from)))
3980 (defun woman-horizontal-line ()
3981 "\\l'Nc' -- Draw a horizontal line of length N using character c, default _."
3982 (delete-char -1)
3983 (delete-char 1)
3984 (looking-at "\\(.\\)\\(.*\\)\\1")
3985 (forward-char 1)
3986 (let* ((to (match-end 2))
3987 (from (match-beginning 0))
3988 (N (woman-parse-numeric-arg))
3989 (c (if (< (point) to) (following-char) ?_)))
3990 (delete-region from to)
3991 (delete-char 1)
3992 (insert (make-string N c))
3995 ;;; 4. Text Filling, Adjusting, and Centering
3997 (defun woman2-br (to)
3998 ".br -- Break. Leave no blank line. Format paragraphs upto TO."
3999 (woman-delete-line 1) ; ignore any arguments
4000 (woman2-format-paragraphs to))
4002 (defun woman2-fi (to)
4003 ".fi -- Fill subsequent output lines. Leave no blank line.
4004 Format paragraphs upto TO."
4005 (setq woman-nofill nil)
4006 (woman-delete-line 1) ; ignore any arguments
4007 ;; Preserve any final blank line in the nofill region:
4008 (save-excursion
4009 (forward-line -1)
4010 (if (looking-at "[ \t]*$") (setq woman-leave-blank-lines 1)))
4011 (woman2-format-paragraphs to))
4013 (defun woman2-nf (to)
4014 ".nf -- Nofill. Subsequent lines are neither filled nor adjusted.
4015 Input text lines are copied directly to output lines without regard
4016 for the current line length. Format paragraphs upto TO."
4017 (setq woman-nofill t)
4018 (woman-delete-line 1) ; ignore any arguments
4019 (woman2-format-paragraphs to))
4021 (defun woman2-ad (to)
4022 ".ad c -- Line adjustment is begun (once fill mode is on).
4023 Set justification mode to c if specified.
4024 Format paragraphs upto TO. (Breaks, but should not.)"
4025 ;; c = l -- left, r -- right, c -- center, b or n -- both,
4026 ;; absent -- unchanged. Initial mode adj,both.
4027 (setq woman-adjust
4028 (cond ((eolp) woman-adjust-previous)
4029 ((eq (following-char) ?l) woman-adjust-left)
4030 ((eq (following-char) ?r) woman-adjust-right)
4031 ((eq (following-char) ?c) woman-adjust-center)
4032 ((memq (following-char) '(?b ?n)) woman-adjust-both)
4033 (t (woman-get-numeric-arg))
4035 woman-justify (nth woman-adjust woman-justify-list))
4036 (woman-delete-line 1) ; ignore any remaining arguments
4037 (woman2-format-paragraphs to))
4039 (defun woman2-na (to)
4040 ".na -- No adjusting. Format paragraphs upto TO.
4041 \(Breaks, but should not.)"
4042 (setq woman-adjust-previous woman-adjust
4043 woman-justify-previous woman-justify
4044 woman-adjust woman-adjust-left ; fill but do not adjust
4045 woman-justify (nth woman-adjust woman-justify-list))
4046 (woman-delete-line 1) ; ignore any arguments
4047 (woman2-format-paragraphs to))
4049 ;;; The main formatting functions:
4051 (defun woman-leave-blank-lines (&optional leave)
4052 "Delete all blank lines around point.
4053 Leave one blank line if optional argument LEAVE is non-nil and
4054 non-zero, or if LEAVE is nil and variable `woman-leave-blank-lines' is
4055 non-nil and non-zero."
4056 ;; ***** It may suffice to delete only lines ABOVE point! *****
4057 ;; NOTE: Function arguments are evaluated left to right
4058 ;; (*note (elisp)Function Forms::.).
4059 (delete-region
4060 (save-excursion
4061 (if (not (eq (skip-syntax-backward " ") 0))
4062 (forward-line)) ; forward-char ?
4063 (point))
4064 (progn (skip-syntax-forward " ")
4065 (beginning-of-line)
4066 (point)))
4067 (if woman-nospace
4069 (if (or (null leave) (eq leave 0))
4070 ;; output any `pending' vertical space ...
4071 (setq leave woman-leave-blank-lines))
4072 (if (and leave (> leave 0)) (insert-before-markers ?\n))
4074 (setq woman-leave-blank-lines nil)
4077 ;; `fill-region-as-paragraph' in `fill.el' appears to be the principal
4078 ;; text filling function, so that is what I use here.
4080 (defvar woman-temp-indent nil)
4082 (defun woman2-format-paragraphs (to &optional new-left)
4083 "Indent, fill and adjust paragraphs upto TO to current left margin.
4084 If optional arg NEW-LEFT is non-nil then reset current left margin.
4085 If `woman-nofill' is non-nil then indent without filling or adjusting."
4086 ;; Blank space should only ever be output before text.
4087 (if new-left (setq left-margin new-left))
4088 (if (looking-at "^\\s *$")
4089 ;; A blank line should leave a space like .sp 1 (p. 14).
4090 (setq woman-leave-blank-lines 1))
4091 (skip-syntax-forward " ")
4092 ;; Successive control lines are sufficiently common to be worth a
4093 ;; special case (maybe):
4094 (if (>= (point) to) ; >= as a precaution!
4096 ;; (woman-leave-blank-lines)
4097 (woman-reset-nospace)
4098 ;; (woman2-process-escapes to) ; 7 October 1999
4099 (woman2-process-escapes to 'numeric)
4100 (if woman-nofill
4101 ;; Indent without filling or adjusting ...
4102 (progn
4103 (woman-leave-blank-lines)
4104 (cond (woman-temp-indent
4105 (indent-to woman-temp-indent)
4106 (forward-line)))
4107 (indent-rigidly (point) to left-margin)
4108 (woman-horizontal-escapes to)) ; 7 October 1999
4109 ;; Fill and justify ...
4110 ;; Blank lines and initial spaces cause a break.
4111 ; (cond ((and (= (point) to) (not (looking-at ".nf"))) ; Yuk!!!
4112 ; ;; No text after a request that caused a break, so delete
4113 ; ;; any spurious blank line left:
4114 ; (forward-line -1)
4115 ; (if (looking-at "^\\s *$") (kill-line) (forward-line))))
4116 (while (< (point) to)
4117 (woman-leave-blank-lines)
4118 (let ((from (point)))
4119 ;; Indent first lin of paragraph:
4120 (indent-to (or woman-temp-indent left-margin))
4121 (woman-horizontal-escapes to) ; 7 October 1999
4122 ;; Find the beginning of the next paragraph:
4123 (forward-line)
4124 ; (if (re-search-forward "\\(^\\s *$\\)\\|\\(^\\s +\\)" to 1)
4125 ; ;; A blank line should leave a space like .sp 1 (p. 14).
4126 ; (if (eolp)
4127 ; (progn
4128 ; (skip-syntax-forward " ")
4129 ; (setq woman-leave-blank-lines 1))
4130 ; (setq woman-leave-blank-lines nil)))
4131 (and (re-search-forward "\\(^\\s *$\\)\\|\\(^\\s +\\)" to 1)
4132 ;; A blank line should leave a space like .sp 1 (p. 14).
4133 (eolp)
4134 (skip-syntax-forward " ")
4135 (setq woman-leave-blank-lines 1))
4136 ;; This shouldn't happen, but in case it does (e.g. for
4137 ;; badly-formatted manfiles with no terminating newline),
4138 ;; avoid an infinite loop.
4139 (unless (and (eolp) (eobp))
4140 (beginning-of-line))
4141 ;; If a single short line then just leave it.
4142 ;; This is necessary to preserve some table layouts.
4143 ;; PROBABLY NOT NECESSARY WITH SQUEEZE MODIFICATION !!!!!
4144 (if (or (> (count-lines from (point)) 1)
4145 (save-excursion
4146 (backward-char)
4147 (> (current-column) fill-column)))
4148 ;; ?roff does not squeeze multiple spaces
4149 ;; (fill-region-as-paragraph from (point) woman-justify t)
4150 ;; NOSQUEEZE has no effect if JUSTIFY is full, so
4151 ;; redefine canonically-space-region, see above.
4152 (progn
4153 ;; Needs a re-write of the paragraph formatter to
4154 ;; avoid this nonsense to handle temporary indents!
4155 (if (and woman-temp-indent (< woman-temp-indent left-margin))
4156 (let ((left-margin woman-temp-indent))
4157 (fill-region-as-paragraph from (point) woman-justify)
4158 (save-excursion
4159 (goto-char from)
4160 (forward-line)
4161 (setq from (point)))))
4162 (fill-region-as-paragraph from (point) woman-justify))
4164 ;; A blank line should leave a space like .sp 1 (p. 14).
4165 ;; Delete all but 1 trailing blank lines:
4166 ;;(woman-leave-blank-lines 1)
4169 (setq woman-temp-indent nil)
4170 ;; Non-white-space text has been processed, so ...
4171 ;;(setq woman-leave-blank-lines nil)
4175 ;;; Tagged, indented and hanging paragraphs:
4177 (defun woman2-TP (to)
4178 ".TP i -- Set prevailing indent to i. Format paragraphs upto TO.
4179 Begin indented paragraph with hanging tag given by next text line.
4180 If tag doesn't fit, place it on a separate line."
4181 (let ((i (woman2-get-prevailing-indent)))
4182 (woman-leave-blank-lines woman-interparagraph-distance)
4183 (woman2-tagged-paragraph to i)))
4185 (defun woman2-IP (to)
4186 ".IP x i -- Same as .TP with tag x. Format paragraphs upto TO."
4187 (woman-interparagraph-space)
4188 (if (eolp) ; no args
4189 ;; Like LP without resetting prevailing indent
4190 (woman2-format-paragraphs to (+ woman-left-margin
4191 woman-prevailing-indent))
4192 (woman-forward-arg 'unquote)
4193 (let ((i (woman2-get-prevailing-indent 'leave-eol)))
4194 (beginning-of-line)
4195 (woman-leave-blank-lines) ; must be here,
4196 (woman2-tagged-paragraph to i))))
4198 (defun woman-find-next-control-line-carefully ()
4199 "Find and return start of next control line, even if already there!"
4200 (if (looking-at "^[.']")
4201 (point)
4202 (woman-find-next-control-line)))
4204 (defun woman2-tagged-paragraph (to i)
4205 "Begin indented paragraph with hanging tag given by current text line.
4206 If tag doesn't fit, leave it on separate line.
4207 Format paragraphs upto TO. Set prevailing indent to I."
4208 (if (not (looking-at "\\s *$")) ; non-empty tag
4209 (setq woman-leave-blank-lines nil))
4211 ;; Temporary hack for bash.1 and groff_mmse.7 until code is revised
4212 ;; to process all requests uniformly:
4213 (cond ((and (= (point) to) (looking-at "^[.'][ \t]*\\(PD\\|br\\|ta\\) *"))
4214 (if (string= (match-string 1) "br")
4215 (woman-delete-line 1)
4216 (woman-delete-match 0)
4217 (if (string= (match-string 1) "ta") ; for GetInt.3
4218 (woman2-ta to)
4219 (woman-set-interparagraph-distance)))
4220 (set-marker to (woman-find-next-control-line-carefully))
4223 (let ((tag (point)))
4224 (woman-reset-nospace)
4225 ;; Format the tag:
4226 (woman2-process-escapes-to-eol)
4227 ;; TIDY UP THE FOLLOWING CODE
4228 ;; (indent-to woman-left-margin)
4229 (setq left-margin woman-left-margin)
4230 (forward-line)
4231 (fill-region-as-paragraph (save-excursion (forward-line -1) (point))
4232 (point) woman-justify)
4234 ;; Temporary hack for bash.1 until all requests processed uniformly:
4235 (cond ((and (= (point) to) (looking-at "^[.'][ \t]*PD *"))
4236 (woman-delete-match 0)
4237 (woman-set-interparagraph-distance)
4238 (set-marker to (woman-find-next-control-line-carefully))
4241 ;; Format the paragraph body, if there is one! Set indented left
4242 ;; margin anyway, because the paragraph body may begin with a
4243 ;; control line:
4244 (setq left-margin (+ woman-left-margin i))
4245 (cond ((< (point) to)
4246 (woman2-format-paragraphs to)
4247 (goto-char tag) (end-of-line)
4248 (cond ((> (setq i (- left-margin (current-column))) 0)
4249 (delete-char 1)
4250 (delete-horizontal-space)
4251 ;; Necessary to avoid spaces inheriting underlines.
4252 ;; Cannot simply delete (current-column) whitespace
4253 ;; characters because some may be tabs!
4254 (while (> i 0) (insert ? ) (setq i (1- i)))))
4255 (goto-char to) ; necessary ???
4259 (defun woman2-HP (to)
4260 ".HP i -- Set prevailing indent to i. Format paragraphs upto TO.
4261 Begin paragraph with hanging indent."
4262 (let ((i (woman2-get-prevailing-indent)))
4263 (woman-interparagraph-space)
4264 (setq woman-temp-indent woman-left-margin)
4265 (woman2-format-paragraphs to (+ woman-left-margin i))
4268 (defun woman2-get-prevailing-indent (&optional leave-eol)
4269 "Set prevailing indent to integer argument at point, and return it.
4270 If no argument then return the existing prevailing indent.
4271 Delete line from point and eol unless LEAVE-EOL is non-nil."
4272 (if (eolp)
4273 (or leave-eol (delete-char 1))
4274 (let ((i (woman-get-numeric-arg)))
4275 (woman-delete-line) (or leave-eol (delete-char 1))
4276 ;; i = 0 if the argument was not a number
4277 (if (> i 0) (setq woman-prevailing-indent i))))
4278 woman-prevailing-indent)
4280 (defmacro woman-push (value stack)
4281 "Push VALUE onto STACK."
4282 `(setq ,stack (cons ,value ,stack)))
4284 (defmacro woman-pop (variable stack)
4285 "Pop into VARIABLE the value at the top of STACK.
4286 Allow for mismatched requests!"
4287 `(if ,stack
4288 (setq ,variable (car ,stack)
4289 ,stack (cdr ,stack))))
4291 (defun woman2-RS (to)
4292 ".RS i -- Start relative indent, move left margin in distance i.
4293 Set prevailing indent to 5 for nested indents. Format paragraphs upto TO."
4294 (woman-push woman-left-margin woman-RS-left-margin)
4295 (woman-push woman-prevailing-indent woman-RS-prevailing-indent)
4296 (setq woman-left-margin (+ woman-left-margin
4297 (woman2-get-prevailing-indent))
4298 woman-prevailing-indent woman-default-indent)
4299 (woman2-format-paragraphs to woman-left-margin))
4301 (defun woman2-RE (to)
4302 ".RE -- End of relative indent. Format paragraphs upto TO.
4303 Set prevailing indent to amount of starting .RS."
4304 (woman-pop woman-left-margin woman-RS-left-margin)
4305 (woman-pop woman-prevailing-indent woman-RS-prevailing-indent)
4306 (woman-delete-line 1) ; ignore any arguments
4307 (woman2-format-paragraphs to woman-left-margin))
4310 ;;; Line Length and Indenting:
4312 (defun woman-set-arg (arg &optional previous)
4313 "Reset, increment or decrement argument ARG, which must be quoted.
4314 If no argument then use value of optional arg PREVIOUS if non-nil,
4315 otherwise set PREVIOUS. Delete the whole remaining control line."
4316 (if (eolp) ; space already skipped
4317 (set arg (if previous (eval previous) 0))
4318 (if previous (set previous (eval arg)))
4319 (woman2-process-escapes-to-eol 'numeric)
4320 (let ((pm (if (looking-at "[+-]")
4321 (prog1 (following-char)
4322 (forward-char 1))))
4323 (i (woman-parse-numeric-arg)))
4324 (cond ((null pm) (set arg i))
4325 ((= pm ?+) (set arg (+ (eval arg) i)))
4326 ((= pm ?-) (set arg (- (eval arg) i)))
4328 (beginning-of-line))
4329 (woman-delete-line 1)) ; ignore any remaining arguments
4331 ;; NEED TO RATIONALIZE NAMES FOR PREVIOUS VALUES!
4332 (defvar woman-ll-fill-column woman-fill-column)
4333 (defvar woman-in-left-margin woman-left-margin)
4335 (defun woman2-ll (to)
4336 ".ll +/-N -- Set, increment or decrement line length.
4337 Format paragraphs upto TO. (Breaks, but should not.)"
4338 (woman-set-arg 'fill-column 'woman-ll-fill-column)
4339 (woman2-format-paragraphs to))
4341 (defun woman2-in (to)
4342 ".in +/-N -- Set, increment or decrement the indent.
4343 Format paragraphs upto TO."
4344 (woman-set-arg 'left-margin 'woman-in-left-margin)
4345 (woman2-format-paragraphs to))
4347 (defun woman2-ti (to)
4348 ".ti +/-N -- Temporary indent. Format paragraphs upto TO."
4349 ;; Ignore if no argument.
4350 ;; Indent next output line only wrt current indent.
4351 ;; Current indent is not changed.
4352 (setq woman-temp-indent left-margin)
4353 (woman-set-arg 'woman-temp-indent)
4354 (woman2-format-paragraphs to nil))
4357 ;;; Tabs, Leaders, and Fields:
4359 (defun woman2-ta (to)
4360 ".ta Nt ... -- Set tabs, left type, unless t=R(right), C(centered).
4361 \(Breaks, but should not.) The tab stops are separated by spaces\;
4362 a value preceded by + represents an increment to the previous stop value.
4363 Format paragraphs upto TO."
4364 (setq tab-stop-list nil)
4365 (woman2-process-escapes-to-eol 'numeric)
4366 (save-excursion
4367 (let ((tab-stop 0))
4368 (while (not (eolp))
4369 (let ((plus (cond ((eq (following-char) ?+) (forward-char 1) t)))
4370 (i (woman-parse-numeric-arg)))
4371 (setq tab-stop (if plus (+ tab-stop i) i)))
4372 (if (memq (following-char) '(?R ?C))
4373 (setq tab-stop (cons tab-stop (following-char))))
4374 (setq tab-stop-list (cons tab-stop tab-stop-list))
4375 (skip-syntax-forward "^ ") ; skip following R, C, `;', etc.
4376 (skip-chars-forward " \t")
4378 (woman-delete-line 1) ; ignore any remaining arguments
4379 (setq tab-stop-list (reverse tab-stop-list))
4380 (woman2-format-paragraphs to))
4382 (defsubst woman-get-tab-stop (tab-stop-list)
4383 "If TAB-STOP-LIST is a cons, return its car, else return TAB-STOP-LIST."
4384 (if (consp tab-stop-list) (car tab-stop-list) tab-stop-list))
4386 (defun woman-tab-to-tab-stop ()
4387 "Insert spaces to next defined tab-stop column.
4388 The variable `tab-stop-list' is a list whose elements are either left
4389 tab stop columns or pairs (COLUMN . TYPE) where TYPE is R or C."
4390 ;; Based on tab-to-tab-stop in indent.el.
4391 ;; R & C tabs probably not quite right!
4392 (delete-backward-char 1)
4393 (let ((tabs tab-stop-list))
4394 (while (and tabs (>= (current-column)
4395 (woman-get-tab-stop (car tabs))))
4396 (setq tabs (cdr tabs)))
4397 (if tabs
4398 (let* ((tab (car tabs))
4399 (type (and (consp tab) (cdr tab)))
4400 eol n)
4401 (if type
4402 (setq tab (woman-get-tab-stop tab)
4403 eol (save-excursion (end-of-line) (point))
4404 n (save-excursion
4405 (search-forward "\t" eol t))
4406 n (- (if n (1- n) eol) (point))
4407 tab (- tab (if (eq type ?C) (/ n 2) n))) )
4408 (setq n (- tab (current-column)))
4409 (while (> n 0)
4410 (insert ?\ )
4411 (setq n (1- n))))
4412 (insert ?\ ))))
4414 (defun woman2-DT (to)
4415 ".DT -- Restore default tabs. Format paragraphs upto TO.
4416 \(Breaks, but should not.)"
4417 ;; Currently just terminates special tab processing.
4418 (setq tab-stop-list nil)
4419 (woman-delete-line 1) ; ignore any arguments
4420 (woman2-format-paragraphs to))
4422 (defun woman2-fc (to)
4423 ".fc a b -- Set field delimiter a and pad character b.
4424 Format paragraphs upto TO.
4425 A VERY FIRST ATTEMPT to make fields at least readable!
4426 Needs doing properly!"
4427 (if (eolp)
4428 (woman-delete-whole-line) ; ignore!
4429 (let ((delim (following-char))
4430 (pad ?\ ) end) ; pad defaults to space
4431 (forward-char)
4432 (skip-chars-forward " \t")
4433 (or (eolp) (setq pad (following-char)))
4434 (woman-delete-whole-line)
4435 (save-excursion
4436 (if (re-search-forward "^[.'][ \t]*fc\\s " nil t)
4437 (setq end (match-beginning 0))))
4438 ;; A field is contained between a pair of field delimiter
4439 ;; characters and consists of sub-strings separated by padding
4440 ;; indicator characters:
4441 (setq delim (string delim ?[ ?^ delim ?] ?* delim))
4442 (save-excursion
4443 (while (re-search-forward delim end t)
4444 (goto-char (match-beginning 0))
4445 (delete-char 1)
4446 (insert woman-unpadded-space-char)
4447 (goto-char (match-end 0))
4448 (delete-backward-char 1)
4449 (insert-before-markers woman-unpadded-space-char)
4450 (subst-char-in-region
4451 (match-beginning 0) (match-end 0)
4452 pad woman-unpadded-space-char t)
4455 (woman2-format-paragraphs to))
4458 ;;; Preliminary table support (.TS/.TE)
4460 (defun woman2-TS (to)
4461 ".TS -- Start of table code for the tbl processor.
4462 Format paragraphs upto TO."
4463 ;; This is a preliminary hack that seems to suffice for lilo.8.
4464 (woman-delete-line 1) ; ignore any arguments
4465 (when woman-emulate-tbl
4466 ;; Assumes column separator is \t and intercolumn spacing is 3.
4467 ;; The first line may optionally be a list of options terminated by
4468 ;; a semicolon. Currently, just delete it:
4469 (if (looking-at ".*;[ \t]*$") (woman-delete-line 1)) ;
4470 ;; The following lines must specify the format of each line of the
4471 ;; table and end with a period. Currently, just delete them:
4472 (while (not (looking-at ".*\\.[ \t]*$")) (woman-delete-line 1))
4473 (woman-delete-line 1)
4474 ;; For each column, find its width and align it:
4475 (let ((start (point)) (col 1))
4476 (while (prog1 (search-forward "\t" to t) (goto-char start))
4477 ;; Find current column width:
4478 (while (< (point) to)
4479 (when (search-forward "\t" to t)
4480 (backward-char)
4481 (if (> (current-column) col) (setq col (current-column))))
4482 (forward-line))
4483 ;; Align current column:
4484 (goto-char start)
4485 (setq col (+ col 3)) ; intercolumn space
4486 (while (< (point) to)
4487 (when (search-forward "\t" to t)
4488 (delete-char -1)
4489 (insert-char ?\ (- col (current-column))))
4490 (forward-line))
4491 (goto-char start))))
4492 ;; Format table with no filling or adjusting (cf. woman2-nf):
4493 (setq woman-nofill t)
4494 (woman2-format-paragraphs to))
4496 (defalias 'woman2-TE 'woman2-fi)
4497 ;; ".TE -- End of table code for the tbl processor."
4498 ;; Turn filling and adjusting back on.
4501 ;;; WoMan message logging:
4503 ;; The basis for this logging code was shamelessly pirated from bytecomp.el
4504 ;; by Jamie Zawinski <jwz@lucid.com> & Hallvard Furuseth <hbf@ulrik.uio.no>
4506 (defvar WoMan-current-file nil) ; bound in woman-really-find-file
4507 (defvar WoMan-Log-header-point-max nil)
4509 (defun WoMan-log-begin ()
4510 "Log the beginning of formatting in *WoMan-Log*."
4511 (let ((WoMan-current-buffer (buffer-name)))
4512 (save-excursion
4513 (set-buffer (get-buffer-create "*WoMan-Log*"))
4514 (or (eq major-mode 'view-mode) (view-mode 1))
4515 (setq buffer-read-only nil)
4516 (goto-char (point-max))
4517 (insert "\n\^L\nFormatting "
4518 (if (stringp WoMan-current-file)
4519 (concat "file " WoMan-current-file)
4520 (concat "buffer " WoMan-current-buffer))
4521 " at " (current-time-string) "\n")
4522 (setq WoMan-Log-header-point-max (point-max))
4525 (defun WoMan-log (format &rest args)
4526 "Log a message out of FORMAT control string and optional ARGS."
4527 (WoMan-log-1 (apply 'format format args)))
4529 (defun WoMan-warn (format &rest args)
4530 "Log a warning message out of FORMAT control string and optional ARGS."
4531 (setq format (apply 'format format args))
4532 (WoMan-log-1 (concat "** " format)))
4534 (defun WoMan-warn-ignored (request ignored)
4535 "Log a warning message about ignored directive REQUEST.
4536 IGNORED is a string appended to the log message."
4537 (let ((tail
4538 (buffer-substring (point)
4539 (save-excursion (end-of-line) (point)))))
4540 (if (and (> (length tail) 0)
4541 (/= (string-to-char tail) ?\ ))
4542 (setq tail (concat " " tail)))
4543 (WoMan-log-1
4544 (concat "** " request tail " request " ignored))))
4546 (defun WoMan-log-end (time)
4547 "Log the end of formatting in *WoMan-Log*.
4548 TIME specifies the time it took to format the man page, to be printed
4549 with the message."
4550 (WoMan-log-1 (format "Formatting time %d seconds." time) 'end))
4552 (defun WoMan-log-1 (string &optional end)
4553 "Log a message STRING in *WoMan-Log*.
4554 If optional argument END is non-nil then make buffer read-only after
4555 logging the message."
4556 (save-excursion
4557 (set-buffer (get-buffer-create "*WoMan-Log*"))
4558 (setq buffer-read-only nil)
4559 (goto-char (point-max))
4560 (or end (insert " ")) (insert string "\n")
4561 (if end
4562 (setq buffer-read-only t)
4563 (if woman-show-log
4564 (select-window ; to return to
4565 (prog1 (selected-window) ; WoMan window
4566 (select-window (display-buffer (current-buffer)))
4567 (cond (WoMan-Log-header-point-max
4568 (goto-char WoMan-Log-header-point-max)
4569 (forward-line -1)
4570 (recenter 0)))
4571 )))))
4572 nil) ; for woman-file-readable-p etc.
4574 (provide 'woman)
4576 ;;; arch-tag: eea35e90-552f-4712-a94b-d9ffd3db7651
4577 ;;; woman.el ends here