From 0e76bf6680a65debaf44c771f19ebe717c44fa4b Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sun, 14 Mar 1999 16:51:37 +0000 Subject: [PATCH] * Makefile.am, init.c, libguile.h, objects.c, root.h: Replaced "kw" --> "keywords" everywhere. (I doubt that this will cause big compatibility problems since the application interface is unaffected.) --- libguile/Makefile.am | 10 +++++----- libguile/init.c | 4 ++-- libguile/libguile.h | 2 +- libguile/root.h | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/libguile/Makefile.am b/libguile/Makefile.am index 6851766d4..04529c20a 100644 --- a/libguile/Makefile.am +++ b/libguile/Makefile.am @@ -39,8 +39,8 @@ libguile_la_SOURCES = \ continuations.c debug.c dynl.c dynwind.c eq.c error.c eval.c evalext.c \ feature.c filesys.c fluids.c fports.c gc.c gdbint.c genio.c \ gh_data.c gh_eval.c gh_funcs.c gh_init.c gh_io.c gh_list.c \ - gh_predicates.c gsubr.c guardians.c hash.c hashtab.c init.c ioext.c kw.c \ - list.c load.c macros.c mallocs.c markers.c modules.c net_db.c \ + gh_predicates.c gsubr.c guardians.c hash.c hashtab.c init.c ioext.c \ + keywords.c list.c load.c macros.c mallocs.c markers.c modules.c net_db.c \ numbers.c objects.c \ objprop.c options.c pairs.c ports.c posix.c print.c procprop.c \ procs.c ramap.c random.c read.c readline.c root.c scmsigs.c script.c \ @@ -55,7 +55,7 @@ BUILT_SOURCES = \ feature.x filesys.x fluids.x fports.x gc.x gdbint.x genio.x \ gh_data.x gh_eval.x gh_funcs.x gh_init.x gh_io.x gh_list.x \ gh_predicates.x gsubr.x guardians.x hash.x hashtab.x init.x ioext.x \ - iselect.x kw.x list.x load.x macros.x mallocs.x markers.x modules.x \ + iselect.x keywords.x list.x load.x macros.x mallocs.x markers.x modules.x \ net_db.x numbers.x \ objects.x objprop.x options.x pairs.x ports.x posix.x print.x \ procprop.x procs.x random.x ramap.x read.x readline.x regex-posix.x \ @@ -90,8 +90,8 @@ modinclude_HEADERS = \ __scm.h alist.h arbiters.h async.h backtrace.h boolean.h chars.h \ continuations.h debug.h dynl.h dynwind.h eq.h error.h eval.h evalext.h \ feature.h filesys.h fports.h gc.h gdb_interface.h gdbint.h genio.h \ - gsubr.h guardians.h hash.h hashtab.h init.h ioext.h kw.h list.h load.h \ - macros.h mallocs.h markers.h modules.h net_db.h numbers.h \ + gsubr.h guardians.h hash.h hashtab.h init.h ioext.h keywords.h list.h \ + load.h macros.h mallocs.h markers.h modules.h net_db.h numbers.h \ objects.h objprop.h \ options.h pairs.h ports.h posix.h regex-posix.h print.h procprop.h \ procs.h random.h ramap.h read.h readline.h root.h scmsigs.h script.h \ diff --git a/libguile/init.c b/libguile/init.c index 0e29d75bf..6907ed910 100644 --- a/libguile/init.c +++ b/libguile/init.c @@ -75,7 +75,7 @@ #include "iselect.h" #endif #include "ioext.h" -#include "kw.h" +#include "keywords.h" #include "list.h" #include "load.h" #include "macros.h" @@ -448,7 +448,7 @@ scm_boot_guile_1 (base, closure) scm_init_iselect (); #endif scm_init_ioext (); - scm_init_kw (); + scm_init_keywords (); scm_init_list (); scm_init_macros (); scm_init_mallocs (); diff --git a/libguile/libguile.h b/libguile/libguile.h index 2272a6f32..ba7bf0864 100644 --- a/libguile/libguile.h +++ b/libguile/libguile.h @@ -82,7 +82,7 @@ extern "C" { #include "libguile/hashtab.h" #include "libguile/init.h" #include "libguile/ioext.h" -#include "libguile/kw.h" +#include "libguile/keywords.h" #include "libguile/list.h" #include "libguile/load.h" #include "libguile/mallocs.h" diff --git a/libguile/root.h b/libguile/root.h index 00d7c51b8..cb6cc080b 100644 --- a/libguile/root.h +++ b/libguile/root.h @@ -61,7 +61,7 @@ #define scm_symhash scm_sys_protects[5] #define scm_weak_symhash scm_sys_protects[6] #define scm_symhash_vars scm_sys_protects[7] -#define scm_kw_obarray scm_sys_protects[8] +#define scm_keyword_obarray scm_sys_protects[8] #define scm_type_obj_list scm_sys_protects[9] #define scm_first_type scm_sys_protects[10] #define scm_stand_in_procs scm_sys_protects[11] -- 2.20.1