blob: e720b2237c884f9235c0375998accef953e7a9b4 (
plain) (
blame)
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
|
###############################################################################
# #
# Lout setup file for C program printing #
# #
# Jeffrey H. Kingston #
# 23 February 2000 #
# #
###############################################################################
###############################################################################
# #
# The @SysInclude { cprintf } line #
# #
# This line causes Lout to read the definitions for C, and should #
# not be touched. #
# #
###############################################################################
@SysInclude { cprintf }
###############################################################################
# #
# The @CPSetup @Use clause #
# #
# To change the default value of any option, delete the # at the start of #
# its line and change the value between braces. #
# #
###############################################################################
@Use { @CPSetup
# style { fixed } # fixed, varying, or symbol
# pipe { } # pipe source through this
# fixedfont { Courier } # font family if fixed
# fixedstrings { Base } # string face if fixed
# fixedidentifiers { Base } # identifier face if fixed
# fixedcomments { Base } # comment face if fixed
# fixedkeywords { Base } # keyword face if fixed
# fixednumbers { Base } # number face if fixed
# fixedoperators { Base } # operator face if fixed
# fixedsize { -1.0p } # font size if fixed
# fixedline { 1.0vx } # line-space if fixed
# fixedtabin { 8 } # tab interval if fixed
# fixedtabout { 8s } # tab width if fixed
# varyingfont { } # font family if varying
# varyingstrings { Slope } # string face if varying
# varyingidentifiers { Slope } # identifier face if varying
# varyingcomments { Base } # comment face if varying
# varyingkeywords { Bold } # keyword face if varying
# varyingnumbers { Base } # number face if varying
# varyingoperators { Base } # operator face if varying
# varyingsize { 1.0f } # font size if varying
# varyingline { 1.0vx } # line-space if varying
# varyingtabin { 8 } # tab interval if varying
# varyingtabout { 3f } # tab width if varying
# symbolfont { } # font family if symbol
# symbolstrings { Slope } # string face if symbol
# symbolidentifiers { Slope } # identifier face if symbol
# symbolcomments { Base } # comment face if symbol
# symbolkeywords { Bold } # keyword face if symbol
# symbolnumbers { Base } # number face if symbol
# symboloperators { Base } # operator face if symbol
# symbolsize { 1.0f } # font size if symbol
# symbolline { 1.0vx } # line-space if symbol
# symboltabin { 8 } # tab interval if symbol
# symboltabout { 3f } # tab width if symbol
}
|