diff options
Diffstat (limited to '')
| -rw-r--r-- | file.c | 6 | ||||
| -rw-r--r-- | map.c | 4 | ||||
| -rw-r--r-- | menu.c | 4 | 
3 files changed, 7 insertions, 7 deletions
| @@ -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); @@ -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>"); @@ -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; | 
