[Git][cmucl/cmucl][issue-156-take-2-nan-comparison] 25 commits: Fix #143 - Adds argument checking for lisp-streams and Gray sttreams for LISTEN

Raymond Toy (@rtoy) gitlab at common-lisp.net
Mon Jun 26 16:00:14 UTC 2023



Raymond Toy pushed to branch issue-156-take-2-nan-comparison at cmucl / cmucl


Commits:
6162e5b4 by Jon Boone at 2023-05-09T17:38:36+00:00
Fix #143 - Adds argument checking for lisp-streams and Gray sttreams for LISTEN

- - - - -
e472bd4f by Jon Boone at 2023-05-09T17:38:47+00:00
Merge branch 'issue-143-ansi-compliance-failure-listen-extra-argument' into 'master'

Fix #143 - Adds argument checking for lisp-streams and Gray sttreams for LISTEN

Closes #143

See merge request cmucl/cmucl!145
- - - - -
a4c000f9 by Raymond Toy at 2023-05-10T11:48:33-07:00
Update cmucl.pot

Issue #143 updated a docstring so the pot file needs updating.

- - - - -
ee480fbf by Raymond Toy at 2023-05-10T11:49:20-07:00
Update release notes

Issue #143 has been fixed.

- - - - -
7774063f by Raymond Toy at 2023-05-12T16:28:16-07:00
Update pot files for Darwin

- - - - -
d53c9575 by Raymond Toy at 2023-05-12T16:43:51-07:00
Update cmucl.pot and cmucl-unix.pot for Linux

See also #223.

- - - - -
d533ca2c by Raymond Toy at 2023-05-13T07:02:39-07:00
Update file version to 21e

Add the required bootstrap file and update CI to use it.

- - - - -
28167cf6 by Raymond Toy at 2023-05-13T07:05:04-07:00
Update all translations

- - - - -
e82bebb7 by Raymond Toy at 2023-05-13T17:29:42-07:00
Update release notes for 21e.

Basically just remove the WIP section title.

- - - - -
84ec62e3 by Raymond Toy at 2023-05-16T23:47:44+00:00
Address #195:  Use relocatable stacks by default

- - - - -
78acc885 by Raymond Toy at 2023-05-16T23:47:53+00:00
Merge branch 'issue-195-relocatable-stacks-by-default' into 'master'

Address #195:  Use relocatable stacks by default

See merge request cmucl/cmucl!146
- - - - -
95429eb4 by Raymond Toy at 2023-05-16T16:55:54-07:00
Fix a couple of compiler warnings for functions with no args

The warning is:
> warning: a function declaration without a prototype is deprecated in
> all versions of C [-Wstrict-prototypes]

So update the two places this occurs and add `void`.

- - - - -
a67cb2e8 by Raymond Toy at 2023-05-20T23:43:21+00:00
Update Version to default to hint at version 21e, the latest release.
- - - - -
ac7d904b by Raymond Toy at 2023-05-22T16:16:29-07:00
Update docstring for *default-external-format*

Add a note that `*default-external-format*` is not affected by any
locale settings nor by `set-system-external-format`.

`set-system-external-format` already has a note that it does not
affect `*default-external-format*`.

- - - - -
b871db2b by Raymond Toy at 2023-05-24T17:15:28+00:00
Fix #228: Update ansi-tests from upstream

- - - - -
6683933b by Raymond Toy at 2023-05-24T17:15:31+00:00
Merge branch 'issue-228-update-ansi-tests' into 'master'

Fix #228: Update ansi-tests from upstream

Closes #228

See merge request cmucl/cmucl!150
- - - - -
dcb8124f by Raymond Toy at 2023-05-29T06:42:23-07:00
Add a simple template for release notes

Supply a template for release notes that has the various parts to be
filled in.

This probably needs some tweaking.  I'm no longer clear on the
differences between "Changes", "ANSI compliance fixes", "Bug fixes",
and "Gitlab tickets".

- - - - -
648c1127 by Raymond Toy at 2023-05-31T03:55:52+00:00
Fix #216: enough-namestring with relative pathname fails

- - - - -
660ab4c5 by Raymond Toy at 2023-05-31T03:56:07+00:00
Merge branch 'issue-216-enough-namestring-relative-dir' into 'master'

Fix #216: enough-namestring with relative pathname fails

Closes #216

See merge request cmucl/cmucl!152
- - - - -
a2fa2dae by Raymond Toy at 2023-06-02T15:22:40-07:00
Remove unicode replacement character

There's a Unicode replacement character (U+FFFD) in
src/code/unicode.lisp.  I tried to see if I can figure out what
character was actually here, but I couldn't find the original.
There's no point in having it here since it provides no information
other than at some point it got replaced.  Might as well remove it.

- - - - -
b1592289 by Jon Boone at 2023-06-19T00:07:56+00:00
Fix #154 - add 'en_US.UTF-8 at piglatin' as locale-alias for 'en at piglatin'

- - - - -
361c463b by Jon Boone at 2023-06-19T00:08:11+00:00
Merge branch 'issue-154-piglatin-translation-doesnt-work-anymore' into 'master'

Fix #154 - add 'en_US.UTF-8 at piglatin' as locale-alias for 'en at piglatin'

Closes #154 and #216

See merge request cmucl/cmucl!151
- - - - -
d8502e05 by Raymond Toy at 2023-06-19T07:19:00-07:00
Add release notes for 21f

Just pulled in the template and added that #154 has been fixed.

- - - - -
1fcdbdb2 by Raymond Toy at 2023-06-19T14:17:30-07:00
Fix typo in docstring for EQUAL

- - - - -
2bb842c1 by Raymond Toy at 2023-06-26T08:59:47-07:00
Merge branch 'master' into issue-156-take-2-nan-comparison

- - - - -


30 changed files:

- .gitlab-ci.yml
- .gitlab/issue_templates/Bug.md
- bin/build.sh
- + src/bootfiles/21d/boot-21e.lisp
- src/code/extfmts.lisp
- src/code/filesys.lisp
- src/code/intl.lisp
- src/code/pred.lisp
- src/code/sparc-svr4-vm.lisp
- src/code/stream.lisp
- src/code/unicode.lisp
- src/code/x86-vm.lisp
- src/compiler/byte-comp.lisp
- src/general-info/release-21e.md
- + src/general-info/release-21f.md
- + src/general-info/release-template.md
- src/i18n/locale/cmucl.pot
- src/i18n/locale/en at piglatin/LC_MESSAGES/cmucl-bsd-os.po
- src/i18n/locale/en at piglatin/LC_MESSAGES/cmucl-linux-os.po
- src/i18n/locale/en at piglatin/LC_MESSAGES/cmucl-unix.po
- src/i18n/locale/en at piglatin/LC_MESSAGES/cmucl-x86-vm.po
- src/i18n/locale/en at piglatin/LC_MESSAGES/cmucl.po
- src/i18n/locale/ko/LC_MESSAGES/cmucl-bsd-os.po
- src/i18n/locale/ko/LC_MESSAGES/cmucl-linux-os.po
- src/i18n/locale/ko/LC_MESSAGES/cmucl-unix.po
- src/i18n/locale/ko/LC_MESSAGES/cmucl-x86-vm.po
- src/i18n/locale/ko/LC_MESSAGES/cmucl.po
- src/lisp/Linux-os.c
- src/lisp/solaris-os.c
- src/lisp/sparc-validate.h


The diff was not included because it is too large.


View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/0c089ccc6c2ed2e35902c140e4b976d8dc356ab6...2bb842c1a485015f364a3f7c87c7051e9d322a7c

-- 
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/0c089ccc6c2ed2e35902c140e4b976d8dc356ab6...2bb842c1a485015f364a3f7c87c7051e9d322a7c
You're receiving this email because of your account on gitlab.common-lisp.net.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/cmucl-cvs/attachments/20230626/f18a6573/attachment-0001.html>


More information about the cmucl-cvs mailing list