summaryrefslogtreecommitdiff
path: root/libguile/keywords.h
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1999-06-23 11:16:09 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1999-06-23 11:16:09 +0000
commit430a6cc34e9807f4826a8a22db20c66d508e0de0 (patch)
tree469a9ced6e2fe06f2ad2840662fd4f1786ac40bc /libguile/keywords.h
parentf0cb1733ddaff7e79c92a61f75ee29cc0cdb6012 (diff)
downloadguile-430a6cc34e9807f4826a8a22db20c66d508e0de0.tar.gz
* keywords.c, keywords.h (scm_c_make_keyword): New function.
(We should remove the use of the prefix '-'.)
Diffstat (limited to 'libguile/keywords.h')
-rw-r--r--libguile/keywords.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/libguile/keywords.h b/libguile/keywords.h
index 48ad42480..6c122b83e 100644
--- a/libguile/keywords.h
+++ b/libguile/keywords.h
@@ -55,9 +55,10 @@ extern int scm_tc16_keyword;
-extern SCM scm_make_keyword_from_dash_symbol SCM_P ((SCM symbol));
-extern SCM scm_keyword_p SCM_P ((SCM obj));
-extern SCM scm_keyword_dash_symbol SCM_P ((SCM keyword));
-extern void scm_init_keywords SCM_P ((void));
+extern SCM scm_make_keyword_from_dash_symbol (SCM symbol);
+extern SCM scm_c_make_keyword (char *s);
+extern SCM scm_keyword_p (SCM obj);
+extern SCM scm_keyword_dash_symbol (SCM keyword);
+extern void scm_init_keywords (void);
#endif /* KEYWORDSH */