blob: 87fa9021e4a75d972507aabd879d8fa2b3cab260 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
.\" sciteco.tmac
.\"
.\" grosciteco is similar to grotty, so we can
.\" inherit its definitions:
.nroff
.do mso tty.tmac
.
.\" Groff only supports .device as of v1.20, while
.\" much older versions are sometimes in use (especially
.\" on OS X).
.\" This is as close as I could get in reproducing it,
.\" but there are still subtle differences...
.if !ddevice \{\
.de device
. ie '\\n(.z'' \
. nop \!x X \\$*
. el \
. nop \!.device \\$@
..
.\}
.
.\"
.\" Define topics at the current document position.
.\" This is handled by grosciteco to create a topic index
.\" at the top of the file which is in turn read by SciTECO
.\" to build a global help topic index.
.\"
.\" NOTE: We let Troff handle the argument processing, since
.\" parsing them in SciTECO would be tricky.
.\"
.de SCITECO_TOPIC
. while \\n(.$ \{\
. device sciteco_topic:\\$1
. shift 1
. \}
..
.
.\"
.\" grosciteco does not handle font families right now
.\" and probably will never do because of the limited
.\" number of Scintilla styles available.
.\" But even if we did, we sometimes have to enforce
.\" a fixed-width font for drawings and tables, since
.\" they can only be "typeset" with glyphs by Scintilla.
.\"
.de SCITECO_TT
. if \\n(.$ .ll \\$*
. device sciteco_tt
..
.
.de SCITECO_TT_END
. if '\\$1'SP' .sp
. device sciteco_tt_end
. ll 65535n
. nr LL \\n[.l]u
..
.
.\"
.\" Effectively disable paragraph filling in man pages.
.\" Word wrapping will be performed by Scintilla.
.\"
.ll 65535n
.\" for ms, mdoc, man
.nr LL \n[.l]u
.
.\" set title length for man pages
.nr LT 90n
.
.\"
.\" remove hyphenation
.\"
.nh
.nr HY 0
.
.de hy
..
.de nh
..
.
.\" avoid line breaks after hyphen-like characters.
.cflags 0 -\[hy]\[em]\[en]
.
.\" end of file, make sure this is the last line
|