diff options
| author | forsyth <forsyth@vitanuova.com> | 2010-11-25 14:33:10 +0000 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2010-11-25 14:33:10 +0000 |
| commit | 6ce09f7706f6999009db17a5db2512eedece7f3f (patch) | |
| tree | 5697f87fcc7277d0ca162cf22e3a6afad08dc37a | |
| parent | 35f503c642e9dd127a2b989e4e12a10691cba3d4 (diff) | |
20101125-1432
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | asm/assem.c | 2 | ||||
| -rw-r--r-- | include/version.h | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,5 @@ +20101125 + asm/assem.c don't attempt to use missing src (issue 243) 20100925 appl/lib/w3c/uris.b - handle existing Unicode characters if they happen not to have been encoded into string appl/svc/httpd/parser.b - similar [response to issue 233] diff --git a/asm/assem.c b/asm/assem.c index 9b12c503..b35796fc 100644 --- a/asm/assem.c +++ b/asm/assem.c @@ -263,6 +263,8 @@ srcout(void) { char *p; + if(srcpath == nil) + return; for(p = srcpath; *p; p++) Bputc(bout, *p); Bputc(bout, '\0'); diff --git a/include/version.h b/include/version.h index a181733c..b8246be2 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20100925)" +#define VERSION "Fourth Edition (20101125)" |
