From 9f95b7b5bcc851c025a53eb256196e16d29258f7 Mon Sep 17 00:00:00 2001 From: Peter TB Brett Date: Sat, 14 Sep 2013 10:45:45 +0100 Subject: [PATCH] scheme-api: Correct some C documentation comments. --- libgeda/include/libgedaguile_priv.h | 2 +- libgeda/src/scheme_attrib.c | 2 +- libgeda/src/scheme_complex.c | 2 +- libgeda/src/scheme_config.c | 2 +- libgeda/src/scheme_deprecated.c | 2 +- libgeda/src/scheme_object.c | 2 +- libgeda/src/scheme_os.c | 6 +++--- libgeda/src/scheme_page.c | 2 +- libgeda/src/scheme_toplevel.c | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/libgeda/include/libgedaguile_priv.h b/libgeda/include/libgedaguile_priv.h index aa65ed66d..1e5ed95da 100644 --- a/libgeda/include/libgedaguile_priv.h +++ b/libgeda/include/libgedaguile_priv.h @@ -159,7 +159,7 @@ SCM edascm_from_toplevel (TOPLEVEL *toplevel); /*! Tests whether a Scheme value is an OBJECT smob. */ #define EDASCM_OBJECTP(x) EDASCM_SMOB_TYPEP(x, GEDA_SMOB_OBJECT) -/*! Tests whether a Scheme value is an OBJECT smob. */ +/*! Tests whether a Scheme value is an EdaConfig smob. */ #define EDASCM_CONFIGP(x) EDASCM_SMOB_TYPEP(x, GEDA_SMOB_CONFIG) /*! diff --git a/libgeda/src/scheme_attrib.c b/libgeda/src/scheme_attrib.c index 1d568aa7d..d24aeb09b 100644 --- a/libgeda/src/scheme_attrib.c +++ b/libgeda/src/scheme_attrib.c @@ -293,7 +293,7 @@ init_module_geda_core_attrib () * \brief Initialise the basic gEDA attribute manipulation procedures. * \par Function Description * Registers some Scheme procedures for working with - * attributes. Should only be called by scheme_api_init(). + * attributes. Should only be called by edascm_init(). */ void edascm_init_attrib () diff --git a/libgeda/src/scheme_complex.c b/libgeda/src/scheme_complex.c index 61fd6c20d..056a2290b 100644 --- a/libgeda/src/scheme_complex.c +++ b/libgeda/src/scheme_complex.c @@ -392,7 +392,7 @@ init_module_geda_core_complex () * \brief Initialise the basic gEDA complex object manipulation procedures. * \par Function Description * Registers some Scheme procedures for working with complex #OBJECT - * smobs. Should only be called by scheme_api_init(). + * smobs. Should only be called by edascm_init(). */ void edascm_init_complex () diff --git a/libgeda/src/scheme_config.c b/libgeda/src/scheme_config.c index 979bacf0f..3b5bf4d50 100644 --- a/libgeda/src/scheme_config.c +++ b/libgeda/src/scheme_config.c @@ -1168,7 +1168,7 @@ init_module_geda_core_config () * \brief Initialise the basic gEDA configuration manipulation procedures. * \par Function Description * Registers some Scheme procedures for working with #EdaConfig - * smobs. Should only be called by scheme_api_init(). + * smobs. Should only be called by edascm_init(). */ void edascm_init_config () diff --git a/libgeda/src/scheme_deprecated.c b/libgeda/src/scheme_deprecated.c index b41aa445c..e75ea8759 100644 --- a/libgeda/src/scheme_deprecated.c +++ b/libgeda/src/scheme_deprecated.c @@ -82,7 +82,7 @@ init_module_geda_core_deprecated () * \brief Initialise the basic gEDA page manipulation procedures. * \par Function Description * Registers some Scheme procedures for working with #PAGE - * smobs. Should only be called by scheme_api_init(). + * smobs. Should only be called by edascm_init(). */ void edascm_init_deprecated () diff --git a/libgeda/src/scheme_object.c b/libgeda/src/scheme_object.c index 598d018cf..b7cab0984 100644 --- a/libgeda/src/scheme_object.c +++ b/libgeda/src/scheme_object.c @@ -2209,7 +2209,7 @@ init_module_geda_core_object () * \brief Initialise the basic gEDA object manipulation procedures. * \par Function Description * Registers some Scheme procedures for working with #OBJECT - * smobs. Should only be called by scheme_api_init(). + * smobs. Should only be called by edascm_init(). */ void edascm_init_object () diff --git a/libgeda/src/scheme_os.c b/libgeda/src/scheme_os.c index 359b5bbc8..2e57858a1 100644 --- a/libgeda/src/scheme_os.c +++ b/libgeda/src/scheme_os.c @@ -74,7 +74,7 @@ SCM_DEFINE (platform, "%platform", 0, 0, 0, (), * \par Function Description * Returns a list of directories to be searched for system data. * - * \node Scheme API: Implements the %sys-data-dirs procedure in the + * \note Scheme API: Implements the %sys-data-dirs procedure in the * (geda core os) module. * * \return a Scheme list of strings. @@ -93,7 +93,7 @@ SCM_DEFINE (sys_data_dirs, "%sys-data-dirs", 0, 0, 0, (), * Returns a list of directories to be searched for system * configuration information. * - * \node Scheme API: Implements the %sys-config-dirs procedure in the + * \note Scheme API: Implements the %sys-config-dirs procedure in the * (geda core os) module. * * \return a Scheme list of strings. @@ -129,7 +129,7 @@ init_module_geda_core_os () * \par Function Description * Registers some Scheme procedures that provide cross-platform - * support. Should only be called by scheme_api_init(). + * support. Should only be called by edascm_init(). */ void edascm_init_os () diff --git a/libgeda/src/scheme_page.c b/libgeda/src/scheme_page.c index c647653c9..ff74d4bf1 100644 --- a/libgeda/src/scheme_page.c +++ b/libgeda/src/scheme_page.c @@ -471,7 +471,7 @@ init_module_geda_core_page () * \brief Initialise the basic gEDA page manipulation procedures. * \par Function Description * Registers some Scheme procedures for working with #PAGE - * smobs. Should only be called by scheme_api_init(). + * smobs. Should only be called by edascm_init(). */ void edascm_init_page () diff --git a/libgeda/src/scheme_toplevel.c b/libgeda/src/scheme_toplevel.c index 99e103bf5..c598da1b4 100644 --- a/libgeda/src/scheme_toplevel.c +++ b/libgeda/src/scheme_toplevel.c @@ -127,7 +127,7 @@ init_module_geda_core_toplevel () * \par Function Description * Registers some Scheme procedures for working with #TOPLEVEL smobs * and creates the #TOPLEVEL fluid. Should only be called by - * scheme_api_init(). + * edascm_init(). */ void edascm_init_toplevel () -- 2.11.4.GIT