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