]> Skullheadx's Git Forge - surf.git/commitdiff
Move -t stylefile flag to -C stylefile
authorQuentin Rameau <quinq@fifth.space>
Wed, 19 Apr 2017 16:14:56 +0000 (18:14 +0200)
committerQuentin Rameau <quinq@fifth.space>
Wed, 19 Apr 2017 22:09:01 +0000 (00:09 +0200)
surf.1
surf.c

diff --git a/surf.1 b/surf.1
index 73093082a3e6615478e5df5a1ff78ab6510e6aa0..370dceee97a46ff8f5b56dd7b7266b0991661220 100644 (file)
--- a/surf.1
+++ b/surf.1
@@ -6,9 +6,9 @@ surf \- simple webkit-based browser
 .RB [-bBdDfFgGiIkKmMnNpPsSvx]
 .RB [-a\ cookiepolicies]
 .RB [-c\ cookiefile]
+.RB [-C\ stylefile]
 .RB [-e\ xid]
 .RB [-r\ scriptfile]
-.RB [-t\ stylefile]
 .RB [-u\ useragent]
 .RB [-z\ zoomlevel]
 .RB "URI"
@@ -40,6 +40,11 @@ Specify the
 .I cookiefile
 to use.
 .TP
+.B \-C stylefile
+Specify the user
+.I stylefile.
+This does disable the site-specific styles.
+.TP
 .B \-d
 Disable the disk cache.
 .TP
@@ -102,11 +107,6 @@ Disable Javascript
 .B \-S
 Enable Javascript
 .TP
-.B \-t stylefile
-Specify the user
-.I stylefile.
-This does disable the site-specific styles.
-.TP
 .B \-u useragent 
 Specify the
 .I useragent
diff --git a/surf.c b/surf.c
index d22de3eb649723354b1076c2b8c8b34e6a9d9401..8daa1e1d5bd063adda6653ecfcb382947b4bd677 100644 (file)
--- a/surf.c
+++ b/surf.c
@@ -1679,6 +1679,9 @@ main(int argc, char *argv[])
        case 'c':
                cookiefile = EARGF(usage());
                break;
+       case 'C':
+               stylefile = EARGF(usage());
+               break;
        case 'd':
                defconfig CSETB(DiskCache, 0);
                break;
@@ -1739,9 +1742,6 @@ main(int argc, char *argv[])
        case 'S':
                defconfig CSETB(JavaScript, 1);
                break;
-       case 't':
-               stylefile = EARGF(usage());
-               break;
        case 'u':
                fulluseragent = EARGF(usage());
                break;