-
4e433b83
by Raymond Toy at 2023-07-05T06:40:08-07:00
Set LANG in build.sh
For some reason, on my Mac system, LANG isn't set and sometimes git
messages are in Korean. So for consistency, set LANG in build.sh to a
known value that should work everywhere.
-
da69492b
by Raymond Toy at 2023-07-17T15:07:01+00:00
Fix #234: Make :ascii external format builtin.
-
635d07ca
by Raymond Toy at 2023-07-17T15:07:04+00:00
Merge branch 'issue-234-make-ascii-format-builtin' into 'master'
Fix #234: Make :ascii external format builtin.
Closes #234
See merge request cmucl/cmucl!155
-
0a35575a
by Raymond Toy at 2023-07-17T15:07:47+00:00
Fix #242: Mask out unwanted bits for integer results
-
5d4b0622
by Raymond Toy at 2023-07-17T15:07:49+00:00
Merge branch 'issue-242-c-call-char-result-wrong' into 'master'
Fix #242: Mask out unwanted bits for integer results
Closes #242
See merge request cmucl/cmucl!154
-
bdd7294f
by Raymond Toy at 2023-07-21T19:15:10+00:00
Fix #171: Readably print pathnames with :unspecific
-
4bce99fc
by Raymond Toy at 2023-07-21T19:15:11+00:00
Merge branch 'issue-171-readable-unspecific-pathnames' into 'master'
Fix #171: Readably print pathnames with :unspecific
Closes #171
See merge request cmucl/cmucl!134
-
d37a3150
by Raymond Toy at 2023-07-22T00:19:38+00:00
Fix #248: Disassemble MOVS inst nicely
-
95dfdcf3
by Raymond Toy at 2023-07-22T00:19:39+00:00
Merge branch 'issue-248-disassemble-movs-nicely' into 'master'
Fix #248: Disassemble MOVS inst nicely
Closes #248
See merge request cmucl/cmucl!156
-
8c6e050a
by Raymond Toy at 2023-07-21T18:06:08-07:00
Remove extraneous debugging print
Introduced in commit [0a35575aa0] for debugging and we forgot to
remove it.
-
a85ad7cf
by Raymond Toy at 2023-07-23T12:18:48-07:00
Update release notes with closed issues
Should have been updated when the issue was closed, but we forgot.
Update now.
-
d5c23293
by Raymond Toy at 2023-07-23T15:07:27-07:00
Update cmucl.pot
Forgot to update cmucl.pot in previous commits/merges that changed
docstrings for various things. Update it now.
-
f577eda6
by Raymond Toy at 2023-07-23T22:38:00+00:00
Fix #244: Add c-call:signed-char
-
0411c386
by Raymond Toy at 2023-07-23T22:38:01+00:00
Merge branch 'issue-244-c-call-signed-char' into 'master'
Fix #244: Add c-call:signed-char
Closes #244
See merge request cmucl/cmucl!157
-
3e8b0a12
by Raymond Toy at 2023-07-26T13:43:15+00:00
Fix #245: Replace egrep with grep -E
-
24152f4d
by Raymond Toy at 2023-07-26T13:43:15+00:00
Merge branch 'issue-245-replace-egrep-with-grep' into 'master'
Fix #245: Replace egrep with grep -E
Closes #245
See merge request cmucl/cmucl!158
-
5b27393f
by Carl Shapiro at 2023-07-30T21:15:48-07:00
Guard against a division by zero in test run reports
-
a7300f03
by Carl Shapiro at 2023-07-31T05:28:58+00:00
Merge branch 'zero-tests' into 'master'
Guard against a division by zero when reporting test results
See merge request cmucl/cmucl!161
-
33f11724
by Raymond Toy at 2023-08-12T07:34:55-07:00
Replace latin-1 character Latin_Small_Letter_I_With_Diaeresis
In files/math.lisp, the word "naive" is spelled using the character
\Latin_Small_Letter_I_With_Diaeresis. However, when compiling locally
with a UTF-8 encoding (which is the default), this is invalid. The
letter needs to be encoded as 2 octets. I'm too lazy to figure out
how to get emacs to insert the correct encoded character so I'm
replacing it with a simple "i". This makes the file pure ASCII, so it
should work fine with a UTF-8 encoding.
-
a8ced15b
by Carl Shapiro at 2023-08-14T04:45:23+00:00
Address #196: Fix issues with mapping and nconc accumulation
-
310e41eb
by Carl Shapiro at 2023-08-14T04:45:41+00:00
Merge branch 'mapcan' into 'master'
Address #196: Fix issues with mapping and nconc accumulation
See merge request cmucl/cmucl!162
-
19a305de
by Raymond Toy at 2023-08-16T14:28:11+00:00
Address #240: Speed up set-difference
-
9d593e3a
by Raymond Toy at 2023-08-16T14:28:55+00:00
Merge branch 'issue-240-set-diff-with-hash-table' into 'master'
Address #240: Speed up set-difference
Closes #240
See merge request cmucl/cmucl!153
-
55c01f44
by Raymond Toy at 2023-08-17T13:33:59+00:00
Address #240: Speed up intersection by using a hashtable
-
14d847f0
by Raymond Toy at 2023-08-17T13:34:15+00:00
Merge branch 'issue-240-intersection-with-hash-table' into 'master'
Address #240: Speed up intersection by using a hashtable
Closes #240
See merge request cmucl/cmucl!160
-
c9ce7574
by Raymond Toy at 2023-08-17T13:36:18+00:00
Address #240: Speed up union by using a hashtable
-
5c7536f0
by Raymond Toy at 2023-08-17T13:36:44+00:00
Merge branch 'issue-240-union-with-hash-table' into 'master'
Address #240: Speed up union by using a hashtable
Closes #240
See merge request cmucl/cmucl!159
-
181508a9
by Raymond Toy at 2023-08-17T06:47:03-07:00
Remove old version of union
Oops. Forgot to remove this in !159, so we do it now.
-
a70248dd
by Raymond Toy at 2023-08-19T13:38:11+00:00
Fix #249: Replace lea instruction for arithmetic
-
5b3e11f9
by Raymond Toy at 2023-08-19T13:38:34+00:00
Merge branch 'issue-249-replace-lea-in-arith' into 'master'
Fix #249: Replace lea instruction for arithmetic
Closes #249
See merge request cmucl/cmucl!163
-
f9ccc188
by Raymond Toy at 2023-08-21T18:03:25+00:00
Fix #252: Add script to run ansi-tests
-
eab9b876
by Raymond Toy at 2023-08-21T18:04:16+00:00
Merge branch 'issue-252-script-to-run-ansi-tests' into 'master'
Fix #252: Add script to run ansi-tests
Closes #252
See merge request cmucl/cmucl!165
-
0b497d8c
by Raymond Toy at 2023-08-21T20:15:07+00:00
Address #240: Speed up subsetp with a hashtable
-
bfae1626
by Raymond Toy at 2023-08-21T20:15:21+00:00
Merge branch 'issue-240-subsetp-with-hash-table' into 'master'
Address #240: Speed up subsetp with a hashtable
Closes #240
See merge request cmucl/cmucl!164
-
afaeb420
by Raymond Toy at 2023-08-22T14:00:25+00:00
Fix #253: Block-compile list-to-hashtable and callers
-
a5b2c0f8
by Raymond Toy at 2023-08-22T14:02:24+00:00
Merge branch 'issue-253-block-compile-list-to-hashtable' into 'master'
Fix #253: Block-compile list-to-hashtable and callers
Closes #253
See merge request cmucl/cmucl!166
-
427aaa31
by Raymond Toy at 2023-08-22T19:50:31-07:00
Fix warning that SIGNED-CHAR is also exported from C-CALL
When we added `c-call:signed-char`, we forgot to also add it to the
package exports list for the `c-call` package. Add it to get rid of
the compiler warning.
-
9581820a
by Raymond Toy at 2023-08-25T13:32:42+00:00
Address #240: Clean up hashtable implementation of set functions
-
39817da2
by Raymond Toy at 2023-08-25T13:32:51+00:00
Merge branch 'issue-240-clean-up-hashtable-impl' into 'master'
Address #240: Clean up hashtable implementation of set functions
See merge request cmucl/cmucl!168
-
87e54e03
by Raymond Toy at 2023-08-25T14:15:52+00:00
Address #240: Use hashtable for nset-diff, nunion, nintersection
-
4542d55e
by Raymond Toy at 2023-08-25T14:16:04+00:00
Merge branch 'issue-240-add-hashtable-for-destructive-set-ops' into 'master'
Address #240: Use hashtable for nset-diff, nunion, nintersection
See merge request cmucl/cmucl!167
-
ffe3625a
by Raymond Toy at 2023-08-29T13:01:16+00:00
Address #240: Rename processing macros for set operations
-
747a82ba
by Raymond Toy at 2023-08-29T13:04:36+00:00
Merge branch 'issue-240-clean-up-hashtable-for-sets-impl' into 'master'
Address #240: Rename processing macros for set operations
See merge request cmucl/cmucl!171
-
d08a26c4
by Raymond Toy at 2023-08-29T14:53:04-07:00
Remove extra closing paren after %print-pathname
Gets rid of a simple compiler warning.
-
917c4240
by Raymond Toy at 2023-08-30T17:38:23+00:00
Fix #258: Remove get-page-size from linux-os.lisp
-
77dee627
by Raymond Toy at 2023-08-30T17:38:40+00:00
Merge branch 'issue-258-remove-get-page-size-from-linux-os' into 'master'
Fix #258: Remove get-page-size from linux-os.lisp
Closes #258
See merge request cmucl/cmucl!172
-
db531fef
by Raymond Toy at 2023-08-30T17:59:50+00:00
Address #240: Add hashtable for set-exclusive-or
-
766c6aa5
by Raymond Toy at 2023-08-30T18:00:08+00:00
Merge branch 'issue-240-add-hashtable-set-exclusive-or' into 'master'
Address #240: Add hashtable for set-exclusive-or
See merge request cmucl/cmucl!169
-
961c96ad
by Raymond Toy at 2023-08-30T11:12:42-07:00
Update release notes with fixed issues
-
3c318784
by Raymond Toy at 2023-09-09T02:27:58+00:00
Fix #261: Remove old get-system-info in bsd-os.lisp
-
a96a03e6
by Raymond Toy at 2023-09-09T02:28:11+00:00
Merge branch 'issue-261-remove-bsd-get-system-info' into 'master'
Fix #261: Remove old get-system-info in bsd-os.lisp
Closes #261
See merge request cmucl/cmucl!174
-
c7d29a31
by Raymond Toy at 2023-10-14T06:57:56-07:00
Use snapshot 2023-08 for running CI.
-
24fd8012
by Raymond Toy at 2023-11-14T23:44:10+00:00
Fix #265: Broken CI on Mac OS X
-
cdaa5def
by Raymond Toy at 2023-11-14T23:44:44+00:00
Merge branch 'issue-265-ci-broken-on-mac-os' into 'master'
Fix #265: Broken CI on Mac OS X
Closes #265
See merge request cmucl/cmucl!176
-
fb29f7d9
by Raymond Toy at 2023-11-24T17:43:34+00:00
Fix #259: Move *software-version* from LISP to SYSTEM package
-
1af08245
by Raymond Toy at 2023-11-24T17:43:45+00:00
Merge branch 'issue-259-b-use-right-software-version' into 'master'
Fix #259: Move *software-version* from LISP to SYSTEM package
Closes #259
See merge request cmucl/cmucl!175
-
6b9f32f5
by Tarn Burton at 2023-11-29T22:39:39+00:00
Add support for Gray stream implementation of file-length
-
b218d29c
by Raymond Toy at 2023-11-29T22:39:54+00:00
Merge branch 'gray-file-length' into 'master'
Add support for Gray stream implementation of file-length
See merge request cmucl/cmucl!179
-
a6854bb6
by Raymond Toy at 2023-11-30T13:47:10+00:00
Fix #269: Add function to get user's home directory
-
8e067da9
by Raymond Toy at 2023-11-30T13:47:20+00:00
Merge branch 'issue-269-unix-get-user-homedir' into 'master'
Fix #269: Add function to get user's home directory
Closes #269
See merge request cmucl/cmucl!178
-
bc8cb405
by Raymond Toy at 2023-12-07T23:09:31+00:00
Fix #266: Support ~user in namestrings
-
81f0d53c
by Raymond Toy at 2023-12-07T23:09:36+00:00
Merge branch 'issue-266-b-tilde-pathname-support' into 'master'
Fix #266: Support ~user in namestrings
Closes #266
See merge request cmucl/cmucl!180
-
0364a45b
by Raymond Toy at 2023-12-07T15:25:03-08:00
Update pot file
`stream-line-length` added a docstring that we forgot to add to our
pot file.
-
b0fc47bd
by Raymond Toy at 2023-12-08T05:53:23-08:00
Declare NAME to be a string in get-user-homedir-namestring
For better error-checking, declare that the arg NAME for
get-user-homedir-namestring must be a string, obviously.
-
04d4d751
by Raymond Toy at 2023-12-08T13:39:35-08:00
Merge branch 'master' into issue-187-imul-disassembly