diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2005-10-15 18:33:34 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2005-10-15 18:33:34 +0000 |
commit | 777f2ed60a04d67d8a966ecb95a809d696a1307b (patch) | |
tree | 0f7c1d238f35cb51b9dadcc38f445bc9c7ee6806 /doc/ref/api-procedures.texi | |
parent | a373f81dda547b0d89105b2cf68a0051bbf887a3 (diff) | |
download | guile-777f2ed60a04d67d8a966ecb95a809d696a1307b.tar.gz |
* api-debug.texi (Source Properties): Add text describing/advising
limited use of source properties.
* api-debug.texi (Source Properties): Documentation of source
property procedures moved here from ...
* api-procedures.texi (Procedure Properties): ... where it didn't
belong.
Diffstat (limited to 'doc/ref/api-procedures.texi')
-rw-r--r-- | doc/ref/api-procedures.texi | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi index d623f62f9..e6d520ddf 100644 --- a/doc/ref/api-procedures.texi +++ b/doc/ref/api-procedures.texi @@ -463,35 +463,6 @@ first expression is a string constant, that string is assumed to contain documentation for that procedure. @end deffn -@cindex source properties -@c FIXME::martin: Is the following true? -Source properties are properties which are related to the source code of -a procedure, such as the line and column numbers, the file name etc. - -@deffn {Scheme Procedure} set-source-properties! obj plist -@deffnx {C Function} scm_set_source_properties_x (obj, plist) -Install the association list @var{plist} as the source property -list for @var{obj}. -@end deffn - -@deffn {Scheme Procedure} set-source-property! obj key datum -@deffnx {C Function} scm_set_source_property_x (obj, key, datum) -Set the source property of object @var{obj}, which is specified by -@var{key} to @var{datum}. Normally, the key will be a symbol. -@end deffn - -@deffn {Scheme Procedure} source-properties obj -@deffnx {C Function} scm_source_properties (obj) -Return the source property association list of @var{obj}. -@end deffn - - -@deffn {Scheme Procedure} source-property obj key -@deffnx {C Function} scm_source_property (obj, key) -Return the source property specified by @var{key} from -@var{obj}'s source property list. -@end deffn - @node Procedures with Setters @subsection Procedures with Setters |