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
|
From: Patrick Schoenfeld
Subject: Fix wrong use of hyphens in the manpage
diff -urNad xtermset-0.5.2~/doc/xtermset.1 xtermset-0.5.2/doc/xtermset.1
--- xtermset-0.5.2~/doc/xtermset.1 2000-12-20 16:53:52.000000000 +0100
+++ xtermset-0.5.2/doc/xtermset.1 2008-02-25 15:12:42.613308808 +0100
@@ -2,7 +2,7 @@
.SH NAME
xtermset \- change settings of an xterm
.SH SYNOPSIS
-xtermset [-option ...]
+xtermset [\-option ...]
.SH DESCRIPTION
.B xtermset
allows you to change the characteristics of an xterm window from the
@@ -10,62 +10,62 @@
give xterm at startup.
.SH OPTIONS
.TP 8
-.I -store [<filename>]
+.I \-store [<filename>]
This option will save all the other command line options given to the
filename. If filename is omitted then the options will be written to
~/.xtermsetrc.
.TP 8
-.I -default [<filename>]
+.I \-default [<filename>]
This option will load options from the specified filename. If the filename
is omitted then the options will be loaded from ~/.xtermsetrc. Options
specified on the command line preceed those that are in the options file.
.TP 8
-.I -f, -force
+.I \-f, \-force
xtermset normally checks if you are using it on a correct terminal (xterm
(derivative) or dtterm (derivative). With this option you can override
this checking.
.TP 8
-.I -T string, -title string
+.I \-T string, \-title string
Sets the window title.
.TP 8
-.I -n string
+.I \-n string
Sets the icon name.
.TP 8
-.I -fg color
+.I \-fg color
Sets the VT100 foreground color.
.TP 8
-.I -bg color
+.I \-bg color
Sets the VT100 background color.
.TP 8
-.I -mousefg color
+.I \-mousefg color
Sets the mouse pointer foreground color.
.TP 8
-.I -mousebg color
+.I \-mousebg color
Sets the mouse pointer background color.
.TP 8
-.I -tekfg color
+.I \-tekfg color
Sets the Tektronix emulation window foreground color.
.TP 8
-.I -tekbg color
+.I \-tekbg color
Sets the Tektronix emulation window background color.
.TP 8
-.I -cr color
+.I \-cr color
Sets the text cursor color.
.TP 8
-.I -hc color
+.I \-hc color
Sets the color for highlighted (selected) text.
.TP 8
-.I -fn font-spec, -font font-spec
+.I \-fn font-spec, \-font font-spec
Sets the font.
.TP 8
-.I -geom geometry-spec, -geometry geometry-spec
+.I \-geom geometry-spec, \-geometry geometry-spec
Sets the window size and position; see X(1) for details.
.SH FILES
~/.xtermsetrc
.SH SEE ALSO
bash(1), xterm(1), X(1)
.SH BUGS
-.I -geom
+.I \-geom
does not support offsets from the left or bottom of the screen.
If the
.I geometry-spec
|