mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 14:00:21 +02:00
fix typo in assembler
* module/system/vm/assemble.scm (dump-object!): Whoops, spell `nexts' correctly.
This commit is contained in:
parent
5e390de62f
commit
6ce6dc03c1
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@
|
|||
(error "too many locals" nargs nlocs))
|
||||
;; really it should be a flag..
|
||||
(if (> nrest 1) (error "nrest should be 0 or 1" nrest))
|
||||
(if (> next 255) (error "too many externals" next))
|
||||
(if (> nexts 255) (error "too many externals" nexts))
|
||||
(push-code! (object->code nargs))
|
||||
(push-code! (object->code nrest))
|
||||
(push-code! (object->code nlocs))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue