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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
## 01_manpage.dpatch by <medelin@mamangava>
--- a/doc/trueprint.1
+++ b/doc/trueprint.1
@@ -46,29 +46,29 @@ filetype is taken from the suffix - vali
.B "Language Suffix language option"
.TP
-C .c .h -language=c
+C .c .h \-language=c
.TP
-C++ .cxx .cpp .cc -langauge=cxx
+C++ .cxx .cpp .cc \-langauge=cxx
.br
.C .hpp .H
.TP
-Java .java -language=java
+Java .java \-language=java
.TP
-Shell .sh -language=sh
+Shell .sh \-language=sh
.TP
-Perl .pl -language=perl
+Perl .pl \-language=perl
.TP
-Pascal .pas -language=pascal
+Pascal .pas \-language=pascal
.TP
-Verilog .v -language=v
+Verilog .v \-language=v
.TP
-Pseudo C .pc .ph -language=pseudoc
+Pseudo C .pc .ph \-language=pseudoc
.TP
-Report format .rep -language=report
+Report format .rep \-language=report
.TP
-Listing .lst -language=list
+Listing .lst \-language=list
.TP
-Plain Text default -language=text
+Plain Text default \-language=text
.PP
When Trueprint starts it uses four sets of options:
.PP
@@ -99,7 +99,7 @@ otherwise use as a prefix and print diff
usage.
.TP
.B \-t <string>, \-\-language=<string>
-treat input as language. Use --help=language for list.
+treat input as language. Use \-\-help=language for list.
.TP
.B \-U <string>, \-\-username=<string>
set username for coversheet
@@ -133,16 +133,16 @@ following topics:
\- languages
.br
.B prompt
-\- format for --print-pages string
+\- format for \-\-print-pages string
.br
.B debug
-\- format for --debug string
+\- format for \-\-debug string
.br
.B header
\- format for header & footer strings
.br
.B report
-\- file format for --language=report input
+\- file format for \-\-language=report input
.br
.B environment
\- environment vars used
@@ -179,7 +179,7 @@ Wrap lines intelligently at significant
.TP
.B \-L <number>, \-\-minimum\-line\-length=<number>
minimum line length permitted by intelligent line wrap (default 10)
-.TP
+.TP
.B \-T <number>, \-\-tabsize=<number>
set tabsize (default 8)
.TP
@@ -371,8 +371,8 @@ is as follows:
Each letter turns on a set of debugging messages, and the corresponding
digit indicates the level of messages, with 1 indicating the least
number of messags and 9 turning on all messages. The letter `@' can be
-used to turn on all areas, so `--debug=@9' will turn on all messages.
-Use `--help=debug' for details of what letters turn on what areas.
+used to turn on all areas, so `\-\-debug=@9' will turn on all messages.
+Use `\-\-help=debug' for details of what letters turn on what areas.
.br
Note that this feature is not uniformly implemented - messages were
only typically added where they were needed. Also note that messages
@@ -385,23 +385,23 @@ The usage of the
option looks as follows:
.br
You specify the old version of the file or files with
-`--diff=<pathname>'. If <pathname> suffixed with the current filename is a
+`\-\-diff=<pathname>'. If <pathname> suffixed with the current filename is a
valid file then the differences between <pathname>/<filename> are displayed.
Alternatively, if <pathname> is a file and you're printing one file, then
the differences between <pathname> and the current file are displayed.
Examples how to make it are shown below:
.IP
-trueprint --diff=../old- this.c that.c
+trueprint \-\-diff=../old- this.c that.c
.PP
will print the differences between ../old-this.c and this.c, and ../old-that.c
and that.c.
.IP
-trueprint --diff=../old/ this.c that.c
+trueprint \-\-diff=../old/ this.c that.c
.PP
will print the differences between ../old/this.c and this.c, and ../old/that.c
and that.c. Note that the trailing / is important.
.IP
-trueprint --diff=this.c that.c
+trueprint \-\-diff=this.c that.c
.PP
will print the differences between this.c and that.c.
.PP
@@ -422,12 +422,12 @@ option looks as follows:
-- Print all pages that include function-name.
.br
.B `d'
--- Print all pages that have changed (this is only useful with the `--diff'
+-- Print all pages that have changed (this is only useful with the `\-\-diff'
(see above) option.
.br
.B `D'
-- Print all pages containing functions that have changed (this is only
-useful with the `--diff' (see above) option.
+useful with the `\-\-diff' (see above) option.
.br
.B `f'
-- Print the function index
@@ -437,7 +437,7 @@ useful with the `--diff' (see above) opt
.PP
For example,
.IP
---print-pages=1-5,main,f
+\-\-print-pages=1\-5,main,f
.PP
will print the function
index, pages 1 to 5, and all the pages for the function `main'.
|