some more doc typos (macro vs macor)
Jens Thiele <[email protected]> Wed, 20 Nov 2024 20:09:55 +0100
| Newsgroups | gmane.lisp.scheme.gauche |
|---|---|
| Message-ID | <[email protected]> |
Hi, I hope this isn't getting annoying (maybe I should collect more typos first?) but here we go: commit aa29dddd50b22bbb29e7f2d097d8e9fb7e0b6968 (HEAD -> master) Author: Jens Thiele <[email protected]> Date: Wed Nov 20 20:00:16 2024 +0100 Typo fixes (macro vs macor) diff --git a/ChangeLog b/ChangeLog index 29620aa5b..8261bd619 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3080,7 +3080,7 @@ 2021-04-08 Shiro Kawai <[email protected]> * src/compile.scm (macroexpand-all, global-call-type), - src/gauche/vm.h (SCM_COMPILE_NOINLINE_INLINER): Allow macorexpand-all + src/gauche/vm.h (SCM_COMPILE_NOINLINE_INLINER): Allow macroexpand-all to expand hybrid macro as well. We still need to suppress expansion of general inliners, for they can insert $asm node, which is not useful as the output of macro expansion. This is a kludge, due to @@ -11295,7 +11295,7 @@ 2012-02-17 Shiro Kawai <[email protected]> - * lib/gauche/generator.scm (glet*, glet1): Added convenience macors + * lib/gauche/generator.scm (glet*, glet1): Added convenience macros that captures the monadic pattern frequently appear in generator code. @@ -18952,7 +18952,7 @@ to avoid (use slib) to load srfi-29, which overrides builtin 'format' by the incompatible srfi-29's format. * src/gauche.h (SCM_EXTENDED_PAIR_P): fixed a bug that caused SEGV - when the macor was applied to statically allocated objects. + when the macro was applied to statically allocated objects. * src/extlib.stub (hash-table-update!): added, based on John Kilburg's patch. * test/hash.scm: added test for hash-table-update!, based on diff --git a/src/gauche.h b/src/gauche.h index f2a442533..4ff910fb0 100644 --- a/src/gauche.h +++ b/src/gauche.h @@ -1054,7 +1054,7 @@ struct ScmProcedureRec { For <procedure> and <generic>, it shows whether the setter is locked. For <method>, it shows whether the alteration of the method is disallowed, i.e. one can't redefine a method with matching signature. - (These two roles are reflected to the two macors, + (These two roles are reflected to the two macros, SCM_PROCEDURE_SETTER_LOCKED and SCM_PROCEDURE_METHOD_LOCKED) TODO: When we change ABI, maybe split these roles to different flags. */