mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
rename make-undefined-fluid to make-unbound-fluid
* libguile/fluids.c (scm_make_unbound_fluid): Rename from scm_make_undefined_fluid. * libguile/fluids.h: * module/language/elisp/runtime.scm: Update referrers.
This commit is contained in:
parent
60905b80d4
commit
e01163b5f1
3 changed files with 5 additions and 5 deletions
|
@ -181,10 +181,10 @@ SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0,
|
|||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
SCM_DEFINE (scm_make_undefined_fluid, "make-undefined-fluid", 0, 0, 0,
|
||||
SCM_DEFINE (scm_make_unbound_fluid, "make-unbound-fluid", 0, 0, 0,
|
||||
(),
|
||||
"")
|
||||
#define FUNC_NAME s_scm_make_undefined_fluid
|
||||
"Make a fluid that is initially unbound.")
|
||||
#define FUNC_NAME s_scm_make_unbound_fluid
|
||||
{
|
||||
SCM f = new_fluid ();
|
||||
scm_fluid_set_x (f, SCM_UNDEFINED);
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
#endif
|
||||
|
||||
SCM_API SCM scm_make_fluid (void);
|
||||
SCM_API SCM scm_make_undefined_fluid (void);
|
||||
SCM_API SCM scm_make_unbound_fluid (void);
|
||||
SCM_API int scm_is_fluid (SCM obj);
|
||||
SCM_API SCM scm_fluid_p (SCM fl);
|
||||
SCM_API SCM scm_fluid_ref (SCM fluid);
|
||||
|
|
|
@ -73,7 +73,7 @@
|
|||
(let ((intf (resolve-interface module))
|
||||
(resolved (resolve-module module)))
|
||||
(if (not (module-defined? intf sym))
|
||||
(let ((fluid (make-undefined-fluid)))
|
||||
(let ((fluid (make-unbound-fluid)))
|
||||
(module-define! resolved sym fluid)
|
||||
(module-export! resolved `(,sym))))))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue