diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-10-04 18:54:18 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-10-04 18:54:18 +0000 |
commit | 7719ef223450da79b8b8bbe2b50afa469faab93e (patch) | |
tree | 439dcf51ac82202f52ee6edac3db9d26ec1b8d9f /doc/ref/api-undocumented.texi | |
parent | 83e1ab6ddf36d2384880f9cb4cf9f78f9c357be6 (diff) | |
download | guile-7719ef223450da79b8b8bbe2b50afa469faab93e.tar.gz |
* api-data.texi: Removed primitive keyword section, updated
keyword docs.
* api-undocumented.texi: Moved keyword dash-symbol docs here.
Diffstat (limited to 'doc/ref/api-undocumented.texi')
-rw-r--r-- | doc/ref/api-undocumented.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/ref/api-undocumented.texi b/doc/ref/api-undocumented.texi index d7507faa5..353e1669e 100644 --- a/doc/ref/api-undocumented.texi +++ b/doc/ref/api-undocumented.texi @@ -843,3 +843,15 @@ Return the value from @var{obj}'s slot with the name @deffnx {C Function} scm_sys_tag_body (body) Internal GOOPS magic---don't use this function! @end deffn + +@deffn {Scheme Procedure} make-keyword-from-dash-symbol symbol +@deffnx {C Function} scm_make_keyword_from_dash_symbol (symbol) +Make a keyword object from a @var{symbol} that starts with a dash. +@end deffn + +@deffn {Scheme Procedure} keyword-dash-symbol keyword +@deffnx {C Function} scm_keyword_dash_symbol (keyword) +Return the dash symbol for @var{keyword}. +This is the inverse of @code{make-keyword-from-dash-symbol}. +@end deffn + |