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