- Nov 03, 2022
-
-
Raymond Toy authored
-
- Nov 02, 2022
-
-
Raymond Toy authored
-
- Nov 01, 2022
-
-
Raymond Toy authored
-
Raymond Toy authored
While there's an alias for `:iso-8859-1`, it's safer to use `:iso8859-1` which is builtin. Using `:iso-8859-1` requires the alias database to be loaded, which isn't (currently) guaranteed when `find-encoding` is called. Thus use the builtin name instead. Besides, `:iso8859-1` is used in other places in "intl.lisp". (This is hard to test, but I noticed it when running ``` LANG=ko_KR.utf8 lisp ``` on the branch `issue-139-add-alias-local-external-format`.)
-
- Oct 31, 2022
-
-
Raymond Toy authored
-
- Oct 30, 2022
-
-
Raymond Toy authored
-
- Oct 17, 2022
-
-
Raymond Toy authored
-
- Oct 16, 2022
-
-
Raymond Toy authored
Nope, gitlab doesn't mark closed issues in anyway, unlike Trac that would automatically strikeout references to closed issues. We have to do it ourselves.
-
Raymond Toy authored
Forgot to update the release notes with recent merges that fixed a few issues. Hence update the notes now. Also testing see if we need to add a strikeout for closed issues, so didn't add strikeout for these.
-
Raymond Toy authored
-
Raymond Toy authored
-
- Oct 15, 2022
-
-
Raymond Toy authored
-
Raymond Toy authored
-
- Aug 24, 2022
-
-
Raymond Toy authored
Update pot file too since the docstring changed. No functional changes.
-
- Aug 23, 2022
-
-
Raymond Toy authored
-
- Aug 14, 2022
-
-
Raymond Toy authored
One was mentioned in !87. Found a few more typos so fixed those too.
-
Raymond Toy authored
-
- Aug 08, 2022
-
-
Raymond Toy authored
We've fixed bugs #122 and #127 now, so make a note of it.
-
Raymond Toy authored
-
Raymond Toy authored
-
- Jun 26, 2022
-
-
Raymond Toy authored
-
- Dec 16, 2021
-
-
Raymond Toy authored
-
- Sep 22, 2021
-
-
Raymond Toy authored
-
- Sep 20, 2021
-
-
Raymond Toy authored
-
Raymond Toy authored
-
- Aug 11, 2021
-
-
Raymond Toy authored
Add -g flag so that debug symbols are included in motifd. I don't think there's really any reason not to do this, and makes debugging motifd releases easier.
-
- Jul 06, 2021
-
-
Raymond Toy authored
x86-arch.c uses memcmp without declaring it. Noticed on macos, but not on linux.
-
- May 31, 2021
-
-
Raymond Toy authored
-
Raymond Toy authored
Add -lrt to the OS_LIBS for Solaris x86 so it can find nanosleep.
-
Raymond Toy authored
-
- May 08, 2021
-
-
Raymond Toy authored
-
- May 07, 2021
-
-
Raymond Toy authored
Use the C standard type `uint8_t` instead of `u_int8_t`.
-
- Apr 09, 2021
-
-
adds additional keyword arguments to instance-usage for more fine-grained tracking of space allocation
-
- Feb 13, 2021
-
-
Raymond Toy authored
We don't use the MT19937 RNG anymore, so we can remove this assembly routine. But since the code still exists for mt19937, just use reader-conditionals to disable this.
-
- Feb 05, 2021
-
-
Raymond Toy authored
Because lisp runs with FP traps enabled, we want the C code to honor that. Hence add -ftrapping-math. Also cleaned up the options, replacing -march=pentium4 and -mtune=generic with just -mtune=pentiume4. Replace -mfpmath=sse (not sure what that does) with -msse2. Finally, update CI to do a clang build so we can verify this actually works.
-
- Jan 30, 2021
-
-
Raymond Toy authored
Just updated based on the issues that were closed.
-
Raymond Toy authored
When printing out a base-char, only the low 8 bits of the code were used. But with Unicode support, we need to take all the bits and print them out. For control codes we use the form "#\^x". (Was #\C-x, which isn't a valid supported character form.) Ascii is printed as normal "#\a", and everything else use uses "#\u+<hex>". While we're at it, we also added special cases like #\Vt that are listed in https://cmucl.org/docs/cmu-user/html/Characters.html#Characters. With this, we can print out all unicode characters in a form that can be pasted back into lisp.
-
- Jan 15, 2021
-
-
Raymond Toy authored
Previously, the EI_OSABI value was either ELFOSAB_SOLARIS for solaris or ELFOSABI_FREEBSD for everything else. Let's update this to include NetBSD and Linux. Unlikely we'll ever support other things like HP-UX, AIX, IRIX, Tru64, etc. The value currently doesn't seem matter, but it seems nice to get it right.
-
- Jan 13, 2021
-
-
Raymond Toy authored
Since we got rid of the symbol `*scavenge-read-only-space*`, we can never scavenge the read-only space, so remove the C code that scavenges the space. Get rid of the unused var `read_only_space_size` too.
-