diff options
author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2024-02-01 14:32:59 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-05-06 11:51:53 +0200 |
commit | f27e8b855f45bff1fde82d4d0f155a72feebab3f (patch) | |
tree | 56f72a623865b51c01d17d755d309c4f1411db79 /module/language | |
parent | 5fcf6ff17a567ad9edfb81c1858055c7bac70ca1 (diff) | |
download | guile-f27e8b855f45bff1fde82d4d0f155a72feebab3f.tar.gz |
Fix typos throughout codebase.
* NEWS:
* doc/ref/api-control.texi:
* doc/ref/api-data.texi:
* doc/ref/api-debug.texi:
* doc/ref/api-deprecated.texi:
* doc/ref/api-evaluation.texi:
* doc/ref/api-foreign.texi:
* doc/ref/api-i18n.texi:
* doc/ref/api-io.texi:
* doc/ref/api-languages.texi:
* doc/ref/api-macros.texi:
* doc/ref/api-memory.texi:
* doc/ref/api-modules.texi:
* doc/ref/api-options.texi:
* doc/ref/api-peg.texi:
* doc/ref/api-procedures.texi:
* doc/ref/api-scheduling.texi:
* doc/ref/api-undocumented.texi:
* doc/ref/api-utility.texi:
* doc/ref/expect.texi:
* doc/ref/goops.texi:
* doc/ref/misc-modules.texi:
* doc/ref/posix.texi:
* doc/ref/repl-modules.texi:
* doc/ref/scheme-ideas.texi:
* doc/ref/scheme-scripts.texi:
* doc/ref/srfi-modules.texi:
* gc-benchmarks/larceny/dynamic.sch:
* gc-benchmarks/larceny/twobit-input-long.sch:
* gc-benchmarks/larceny/twobit.sch:
* libguile/gc.h:
* libguile/ioext.c:
* libguile/list.c:
* libguile/options.c:
* libguile/posix.c:
* libguile/threads.c:
* module/ice-9/boot-9.scm:
* module/ice-9/optargs.scm:
* module/ice-9/ports.scm:
* module/ice-9/pretty-print.scm:
* module/ice-9/psyntax.scm:
* module/language/elisp/parser.scm:
* module/language/tree-il/compile-bytecode.scm:
* module/srfi/srfi-37.scm:
* module/srfi/srfi-43.scm:
* module/statprof.scm:
* module/texinfo/reflection.scm:
* test-suite/tests/eval.test:
* test-suite/tests/fluids.test:
Fix typos.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'module/language')
-rw-r--r-- | module/language/elisp/parser.scm | 2 | ||||
-rw-r--r-- | module/language/tree-il/compile-bytecode.scm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/module/language/elisp/parser.scm b/module/language/elisp/parser.scm index e83f136bb..a7aeff014 100644 --- a/module/language/elisp/parser.scm +++ b/module/language/elisp/parser.scm @@ -37,7 +37,7 @@ ;;; For parsing circular structures, we keep track of definitions in a ;;; hash-map that maps the id's to their values. When defining a new -;;; id, though, we immediatly fill the slot with a promise before +;;; id, though, we immediately fill the slot with a promise before ;;; parsing and setting the real value, because it must already be ;;; available at that time in case of a circular reference. The promise ;;; refers to a local variable that will be set when the real value is diff --git a/module/language/tree-il/compile-bytecode.scm b/module/language/tree-il/compile-bytecode.scm index 8418f089a..a581b7f6c 100644 --- a/module/language/tree-il/compile-bytecode.scm +++ b/module/language/tree-il/compile-bytecode.scm @@ -1124,7 +1124,7 @@ in the frame with for the lambda-case clause @var{clause}." (0 (emit-load-static-procedure asm dst label)) (nfree - ;; Stage closure in 0 to avoid stompling captured free + ;; Stage closure in 0 to avoid stomping captured free ;; vars. (emit-allocate-closure asm 0 nfree label 1) (init-free-vars 0 free-vars env 1 2) @@ -1148,7 +1148,7 @@ in the frame with for the lambda-case clause @var{clause}." frame-size))) (($ <primcall> src (? variadic-constructor? name) args) - ;; Stage result in 0 to avoid stompling args. + ;; Stage result in 0 to avoid stomping args. (let ((args (for-args args env))) (maybe-emit-source src) (match name |