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