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