diff options
| author | Dai Sato <satodai@dog.intcul.tohoku.ac.jp> | 2002-06-17 15:50:45 +0000 | 
|---|---|---|
| committer | Dai Sato <satodai@dog.intcul.tohoku.ac.jp> | 2002-06-17 15:50:45 +0000 | 
| commit | 316b06fda40985b537e2913f5a2ebc6e948f496b (patch) | |
| tree | af3d02bea504ad4f0aac6593d41c3a51d8039190 | |
| parent | [w3m-dev-en 00752] Re: tab completion weirdness in w3m 0.3 (diff) | |
| download | w3m-316b06fda40985b537e2913f5a2ebc6e948f496b.tar.gz w3m-316b06fda40985b537e2913f5a2ebc6e948f496b.zip | |
[w3m-dev 03214] strtoul() -> strtol() for SunOS4
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | frame.c | 4 | 
2 files changed, 8 insertions, 3 deletions
| @@ -1,3 +1,8 @@ +2002-06-17  Dai Sato <satodai@dog.intcul.tohoku.ac.jp> + +	* [w3m-dev 03214] strtoul() in frame.c +	* frame.c (parseFrameSetLength): strtoul() -> strtol() +  2002-06-10  Kiyokazu SUTO <suto@ks-and-ks.ne.jp>  	* [w3m-dev-en 00752] Re: tab completion weirdness in w3m 0.3 @@ -3493,4 +3498,4 @@  	* release-0-2-1  	* import w3m-0.2.1 -$Id: ChangeLog,v 1.388 2002/06/09 16:11:33 ukai Exp $ +$Id: ChangeLog,v 1.389 2002/06/17 15:50:45 inu Exp $ @@ -1,4 +1,4 @@ -/* $Id: frame.c,v 1.15 2002/04/17 02:44:22 ukai Exp $ */ +/* $Id: frame.c,v 1.16 2002/06/17 15:50:45 inu Exp $ */  #include "fm.h"  #include "parsetagx.h"  #include "myctype.h" @@ -38,7 +38,7 @@ parseFrameSetLength(char *s, char ***ret)      for (i = 0, p = s;; ++p) {  	SKIP_BLANKS(p); -	len = strtoul(p, &q, 10); +	len = strtol(p, &q, 10);  	switch (*q) {  	case '%': | 
