aboutsummaryrefslogtreecommitdiffstats
path: root/www/w3m/files/patch-aw
blob: 848f9b68f5ccf7182d135c38307a2b2155bc5f7c (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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
diff -Nru --exclude config.h --exclude XXMakefile --exclude tagtable.c ../w3m-0.1.11-pre/etc.c ./etc.c
--- ../w3m-0.1.11-pre/etc.c Fri Dec  8 01:14:57 2000
+++ ./etc.c Fri Dec  8 01:28:24 2000
@@ -277,7 +277,7 @@
     int do_copy = FALSE;
     int size = (len < s->length) ? len : s->length;
 
-    if (ShowEffect && (bs = memchr(str, '\b', s->length)) ||
+    if ((ShowEffect && (bs = memchr(str, '\b', s->length))) ||
    s->length > size) {
    s = Strnew_size(size);
    do_copy = TRUE;
diff -Nru --exclude config.h --exclude XXMakefile --exclude tagtable.c ../w3m-0.1.11-pre/file.c ./file.c
--- ../w3m-0.1.11-pre/file.c    Fri Dec  8 01:15:31 2000
+++ ./file.c    Fri Dec  8 01:27:33 2000
@@ -230,8 +230,8 @@
 static int
 is_plain_text_type(char *type)
 {
-    return (type && strcasecmp(type, "text/plain") == 0 ||
-       is_text_type(type) && !is_dump_text_type(type));
+    return (type && (strcasecmp(type, "text/plain") == 0 ||
+            (is_text_type(type) && !is_dump_text_type(type))));
 }
 
 static void
@@ -326,7 +326,7 @@
        uf->guess_type = "text/plain";
        if (strcasecmp(uf->guess_type, "text/html") == 0)
        return;
-       if (fp = lessopen_stream(path)) {
+       if ((fp = lessopen_stream(path)) != NULL) {
        UFclose(uf);
        uf->stream = newFileStream(fp, (void (*)()) pclose);
        uf->guess_type = "text/plain";
@@ -3479,6 +3479,7 @@
        s = Sprintf("<A HREF=\"%s\">applet archive(%s)</A>", q, q);
        HTMLlineproc1(s->ptr, h_env);
        }
+   }
    return 1;
 #endif             /* VIEW_UNSEENOBJECTS */
     case HTML_BODY:
@@ -4162,12 +4163,12 @@
        return;
        }
        q = h_env->tagbuf->ptr;
-       if (tag = parse_tag(&q, internal))
+       if ((tag = parse_tag(&q, internal)) != NULL)
        cmd = tag->tagid;
        else
        cmd = HTML_UNKNOWN;
-       if (obuf->flag & RB_XMPMODE && cmd != HTML_N_XMP ||
-       obuf->flag & RB_LSTMODE && cmd != HTML_N_LISTING) {
+       if (((obuf->flag & RB_XMPMODE) && cmd != HTML_N_XMP) ||
+       ((obuf->flag & RB_LSTMODE) && cmd != HTML_N_LISTING)) {
        Str tmp = Strdup(h_env->tagbuf);
        Strcat_charp(tmp, str);
        str = tmp->ptr;
diff -Nru --exclude config.h --exclude XXMakefile --exclude tagtable.c ../w3m-0.1.11-pre/istream.c ./istream.c
--- ../w3m-0.1.11-pre/istream.c Fri Dec  8 01:14:47 2000
+++ ./istream.c Fri Dec  8 01:32:01 2000
@@ -193,7 +193,7 @@
        do_update(base);
    }
    else {
-       if (p = memchr(&sb->buf[sb->cur], '\n', sb->next - sb->cur)) {
+       if ((p = memchr(&sb->buf[sb->cur], '\n', sb->next - sb->cur)) != NULL) {
        len = p - &sb->buf[sb->cur] + 1;
        if (s == NULL)
            s = Strnew_size(len);
diff -Nru --exclude config.h --exclude XXMakefile --exclude tagtable.c ../w3m-0.1.11-pre/mailcap.c ./mailcap.c
--- ../w3m-0.1.11-pre/mailcap.c Fri Dec  8 01:14:57 2000
+++ ./mailcap.c Fri Dec  8 01:30:13 2000
@@ -242,7 +242,7 @@
    goto no_user_mailcap;
     
     for (i = 0; i < mailcap_list->nitem; i++) {
-   if (p = searchMailcap(UserMailcap[i], type))
+   if ((p = searchMailcap(UserMailcap[i], type)) != NULL)
        return p;
     }
 
diff -Nru --exclude config.h --exclude XXMakefile --exclude tagtable.c ../w3m-0.1.11-pre/parsetagx.c ./parsetagx.c
--- ../w3m-0.1.11-pre/parsetagx.c   Fri Dec  8 01:14:57 2000
+++ ./parsetagx.c   Fri Dec  8 01:31:27 2000
@@ -118,8 +118,8 @@
 
     tag_id = getHash_si(&tagtable, tagname, HTML_UNKNOWN);
 
-    if (tag_id == HTML_UNKNOWN ||
-   !internal && TagMAP[tag_id].flag & TFLG_INT)
+    if ((tag_id == HTML_UNKNOWN) ||
+   (!internal && (TagMAP[tag_id].flag & TFLG_INT)))
    goto skip_parse_tagarg;
 
     tag = New(struct parsed_tag);
@@ -189,9 +189,9 @@
    }
    if (i != nattr) {
        if (!internal &&
-       (AttrMAP[attr_id].flag & AFLG_INT ||
-        value && AttrMAP[attr_id].vtype == VTYPE_METHOD &&
-        !strcasecmp(value->ptr, "internal"))) {
+       ((AttrMAP[attr_id].flag & AFLG_INT) ||
+        (value && AttrMAP[attr_id].vtype == VTYPE_METHOD &&
+         !strcasecmp(value->ptr, "internal")))) {
        tag->need_reconstruct = TRUE;
        continue;
        }
diff -Nru --exclude config.h --exclude XXMakefile --exclude tagtable.c ../w3m-0.1.11-pre/table.c ./table.c
--- ../w3m-0.1.11-pre/table.c   Fri Dec  8 01:14:57 2000
+++ ./table.c   Fri Dec  8 01:29:24 2000
@@ -758,7 +758,7 @@
        int id = -1;
        char *p = l->ptr;
        struct parsed_tag *tag;
-       if (tag = parse_tag(&p, TRUE))
+       if ((tag = parse_tag(&p, TRUE)) != NULL)
        parsedtag_get_value(tag, ATTR_TID, &id);
        if (id >= 0 && id < tbl->ntable) {
        int alignment;
@@ -1199,8 +1199,8 @@
     if (dmax > 0. && dmin > dmax)
    dmin = dmax;
     span = ecol - bcol;
-    if (span == t->maxcol + 1 && dmin >= 0. ||
-   span != t->maxcol + 1 && dmin > rulewidth * 0.5) {
+    if ((span == t->maxcol + 1 && dmin >= 0.) ||
+   (span != t->maxcol + 1 && dmin > rulewidth * 0.5)) {
    int nwidth = ceil_at_intervals(round(owidth - dmin), rulewidth);
    correct_table_matrix(t, bcol, ecol - bcol, nwidth, 1.);
    corr++;
@@ -2425,11 +2425,11 @@
 
     if (
 #ifdef MENU_SELECT
-   mode->pre_mode & TBLM_INSELECT && cmd != HTML_N_SELECT ||
+   (mode->pre_mode & TBLM_INSELECT && cmd != HTML_N_SELECT) ||
 #endif             /* MENU_SELECT */
-   mode->pre_mode & TBLM_INTXTA && cmd != HTML_N_TEXTAREA ||
-   mode->pre_mode & TBLM_XMP && cmd != HTML_N_XMP ||
-   mode->pre_mode & TBLM_LST && cmd != HTML_N_LISTING)
+   (mode->pre_mode & TBLM_INTXTA && cmd != HTML_N_TEXTAREA) ||
+   (mode->pre_mode & TBLM_XMP && cmd != HTML_N_XMP) ||
+   (mode->pre_mode & TBLM_LST && cmd != HTML_N_LISTING))
    return TAG_ACTION_FEED;
    
     if (mode->pre_mode & TBLM_PRE) {
diff -Nru --exclude config.h --exclude XXMakefile --exclude tagtable.c ../w3m-0.1.11-pre/url.c ./url.c
--- ../w3m-0.1.11-pre/url.c Fri Dec  8 01:14:57 2000
+++ ./url.c Fri Dec  8 01:30:29 2000
@@ -1502,7 +1502,7 @@
    goto no_user_mimetypes;
 
     for (i = 0; i < mimetypes_list->nitem; i++) {
-   if (ret = guessContentTypeFromTable(UserMimeTypes[i], filename))
+   if ((ret = guessContentTypeFromTable(UserMimeTypes[i], filename)) != NULL)
        return ret;
     }