blob: 3edfbacf256818fc36407f655517e1e7611911f3 (
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
84
85
86
87
88
89
90
91
|
Description: Fix the manual page syntax
The .TQ macro does not expect the actual text as an argument!
Forwarded: no
Author: Peter Pentchev <roam@ringlet.net>
Last-Update: 2009-08-23
--- a/doc/gforth.1
+++ b/doc/gforth.1
@@ -57,18 +57,21 @@
.SH OPTIONS
.BI "\-\-help"
-.TQ "\-h"
+.TQ
+.BI "\-h"
Lists the available options, including some not described here (see
also the manual).
.TP
.BI "\-\-image\-file " "file"
-.TQ "\-i " "file"
+.TQ
+.BI "\-i " "file"
Loads the Forth image
.I file
instead of the default \fCgforth.fi\fR.
.TP
.BI "\-\-path " "path"
-.TQ "\-p " "path"
+.TQ
+.BI "\-p " "path"
Uses
.I path
for searching the image file and Forth source code
@@ -80,7 +83,8 @@
list.
.TP
.BI "\-\-dictionary\-size " "size"
-.TQ "\-m " "size"
+.TQ
+.BI "\-m " "size"
Allocate
.I size
space for the Forth dictionary space instead of
@@ -94,21 +98,24 @@
\fCe\fR is used.
.TP
.BI "\-\-data\-stack\-size " "size"
-.TQ "\-d " "size"
+.TQ
+.BI "\-d " "size"
Allocate
.I size
space for the data stack instead of using the
default specified in the image (typically 16K).
.TP
.BI "\-\-return\-stack\-size " "size"
-.TQ "\-r " "size"
+.TQ
+.BI "\-r " "size"
Allocate
.I size
space for the return stack instead of using the
default specified in the image (typically 16K).
.TP
.BI "\-\-fp\-stack\-size " "size"
-.TQ "\-f " "size"
+.TQ
+.BI "\-f " "size"
Allocate
.I size
space for the floating point stack instead of
@@ -118,7 +125,8 @@
refers to floating point numbers.
.TP
.BI "\-\-locals\-stack\-size " "size"
-.TQ "\-l " "size"
+.TQ
+.BI "\-l " "size"
Allocate
.I size
space for the locals stack instead of using the
@@ -126,7 +134,8 @@
.TP
.BI "\-\-evaluate " "forth"
-.TQ "\-e " "forth"
+.TQ
+.BI "\-e " "forth"
Evaluates the
.I forth
code. This option takes only one argument; if you want to evaluate
|