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