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