Skip to content

Commit b09b506

Browse files
committed
fbc: touch changelog.txt for ASC() constant folding and wide character support in '__FB_EVAL__()'
- github #325, #326: fbc: internal changes for string processing functions - github #325, #326: fbc: add support for wstrings used with __FB_EVAL__() - github #325, #326: fbc: constant folding ASC() on constant strings with embedded NUL characters - previously ASC returned 0 for anything past the first embedded NUL char, for example ASC(!"A\000B",3) incorrectly returned 0 and should return 66
1 parent fda0ab2 commit b09b506

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

changelog.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Version 1.09.0
88
- crt headers: add const qualifiers in crt/stdlib.bi
99
- crt headers: add const qualifiers in crt/stdio.bi, crt/sys/stat.bi, crt/wchar.bi
1010
- crt headers: add const qualifiers in crt/sys/win32/stat.bi, crt/win32/stdio.bi
11-
- fbc: internal changes for string processing functions
11+
- github #325, #326: fbc: internal changes for string processing functions
1212

1313
[added]
1414
- fbc: add '-z fbrt' command line option to link against libfbrt*.a instead of libfb*.a
1515
- makefile: add target for fbrt, fb runtime library written in fbc. Bulid libfbrt*.a and merge any missing object modules from libfb*.a
16-
- fbc: add support for wstrings used with __FB_EVAL__()
16+
- github #325, #326: fbc: add support for wstrings used with __FB_EVAL__()
1717

1818
[fixed]
1919
- github #315: set parameters when calling SCREENCONTROL (was broken in fbc 1.08.0 due to new LONG/LONGINT SCREENCONTROL API's)
@@ -24,7 +24,7 @@ Version 1.09.0
2424
- github #323: gas64: When the target variable is const variable, code cannot be generated for variable assignment of different length. (Skyfish)
2525
- github #324: fbc: When converting a wide character escape sequence to an internal format, the escaped value is incorrect. (Skyfish)
2626
- fbc: remove warning on function suffix in '-lang qb'
27-
- fbc: ASC() on constant strings with embedded NUL characters - previously ASC returned 0 for anything past the first embedded NUL char, for example ASC(!"A\000B",3) incorretly returned 0 and should return 66
27+
- github #325, #326: fbc: constant folding ASC() on constant strings with embedded NUL characters - previously ASC returned 0 for anything past the first embedded NUL char, for example ASC(!"A\000B",3) incorrectly returned 0 and should return 66
2828

2929

3030
Version 1.08.0

0 commit comments

Comments
 (0)