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