* Makefile.am, init.c, libguile.h, objects.c, root.h: Replaced
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Sun, 14 Mar 1999 16:51:37 +0000 (16:51 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Sun, 14 Mar 1999 16:51:37 +0000 (16:51 +0000)
"kw" --> "keywords" everywhere.
(I doubt that this will cause big compatibility problems since the
application interface is unaffected.)

libguile/Makefile.am
libguile/init.c
libguile/libguile.h
libguile/root.h

index 6851766..04529c2 100644 (file)
@@ -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 \
index 0e29d75..6907ed9 100644 (file)
@@ -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 ();
index 2272a6f..ba7bf08 100644 (file)
@@ -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"
index 00d7c51..cb6cc08 100644 (file)
@@ -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]