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