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