mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-20 02:30:23 +02:00
Rename internals of (system vm program) program-minimum-arity
* module/system/vm/debug.scm (find-program-minimum-arity): Rename from program-minimum-arity. * module/system/vm/program.scm (program-minimum-arity): Rename from rtl-program-minimum-arity. * libguile/programs.c (scm_i_program_arity): Adapt.
This commit is contained in:
parent
2e12c1a2b7
commit
34cf09ccdf
3 changed files with 10 additions and 13 deletions
|
@ -55,10 +55,8 @@
|
|||
program-debug-info-name))
|
||||
(define (program-documentation program)
|
||||
(find-program-docstring (program-code program)))
|
||||
(define (rtl-program-minimum-arity program)
|
||||
(unless (program? program)
|
||||
(error "shouldn't get here"))
|
||||
(program-minimum-arity (program-code program)))
|
||||
(define (program-minimum-arity program)
|
||||
(find-program-minimum-arity (program-code program)))
|
||||
(define (rtl-program-properties program)
|
||||
(unless (program? program)
|
||||
(error "shouldn't get here"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue