aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--file.c6
-rw-r--r--map.c4
-rw-r--r--menu.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/file.c b/file.c
index 4292565..812eda7 100644
--- a/file.c
+++ b/file.c
@@ -1,4 +1,4 @@
-/* $Id: file.c,v 1.146 2002/12/05 16:29:05 ukai Exp $ */
+/* $Id: file.c,v 1.147 2002/12/05 16:33:06 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -2759,9 +2759,9 @@ flushline(struct html_feed_environ *h_env, struct readbuffer *obuf, int indent,
char *c = html_quote_char(obuf->anchor.accesskey);
Strcat_charp(tmp, "\" ACCESSKEY=\"");
if (c)
- Strcat_charp(tmp, c);
+ Strcat_charp(tmp, c);
else
- Strcat_char(tmp, obuf->anchor.accesskey);
+ Strcat_char(tmp, obuf->anchor.accesskey);
}
Strcat_charp(tmp, "\">");
push_tag(obuf, tmp->ptr, HTML_A);
diff --git a/map.c b/map.c
index 6c1eaaf..db73591 100644
--- a/map.c
+++ b/map.c
@@ -1,4 +1,4 @@
-/* $Id: map.c,v 1.19 2002/12/05 16:08:34 ukai Exp $ */
+/* $Id: map.c,v 1.20 2002/12/05 16:33:08 ukai Exp $ */
/*
* client-side image maps
*/
@@ -285,7 +285,7 @@ follow_map_panel(Buffer *buf, char *name)
parseURL2(a->url, &pu, baseURL(buf));
url = html_quote(parsedURL2Str(&pu)->ptr);
Strcat_m_charp(mappage, "<tr><td><a href=\"", url, "\">",
- html_quote(*a->alt ? a->alt : mybasename(a->url)),
+ html_quote(*a->alt ? a->alt : mybasename(a->url)),
"</a><td>", url, NULL);
}
Strcat_charp(mappage, "</table></body></html>");
diff --git a/menu.c b/menu.c
index 7a0cb7b..2478b5a 100644
--- a/menu.c
+++ b/menu.c
@@ -1,4 +1,4 @@
-/* $Id: menu.c,v 1.25 2002/12/05 16:29:10 ukai Exp $ */
+/* $Id: menu.c,v 1.26 2002/12/05 16:33:09 ukai Exp $ */
/*
* w3m menu.c
*/
@@ -1934,7 +1934,7 @@ accesskey_menu(Buffer *buf)
a = retrieveCurrentAnchor(buf);
if (a && a->accesskey && IS_ASCII(a->accesskey)) {
- for (i = 0; i < nitem; i++) {
+ for (i = 0; i < nitem; i++) {
if (a == ap[i]) {
menu.initial = i;
break;