fix non-gtk-doc comment blocks

Original commit message from CVS:
fix non-gtk-doc comment blocks
This commit is contained in:
Thomas Vander Stichele 2003-12-24 14:39:46 +00:00
parent dfedf4271f
commit 47274a1abe
4 changed files with 13 additions and 6 deletions

View file

@ -1,3 +1,10 @@
2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gstplugin.c:
* gst/gstversion.h.in:
* gst/parse/grammar.y:
change comment block from /** to /* when not gtk-doc comments
2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org> 2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gst.c: whitespace and doc style fixes * gst/gst.c: whitespace and doc style fixes

View file

@ -205,7 +205,7 @@ gst_plugin_register_func (GstPlugin *plugin, GModule *module, GstPluginDesc *des
return plugin; return plugin;
} }
/** /*
* _gst_plugin_fault_handler_restore: * _gst_plugin_fault_handler_restore:
* segfault handler restorer * segfault handler restorer
*/ */
@ -220,7 +220,7 @@ _gst_plugin_fault_handler_restore (void)
sigaction (SIGSEGV, &action, NULL); sigaction (SIGSEGV, &action, NULL);
} }
/** /*
* _gst_plugin_fault_handler_sighandler: * _gst_plugin_fault_handler_sighandler:
* segfault handler implementation * segfault handler implementation
*/ */
@ -247,7 +247,7 @@ _gst_plugin_fault_handler_sighandler (int signum)
} }
} }
/** /*
* _gst_plugin_fault_handler_setup: * _gst_plugin_fault_handler_setup:
* sets up the segfault handler * sets up the segfault handler
*/ */

View file

@ -24,10 +24,10 @@
#ifndef __GST_VERSION_H__ #ifndef __GST_VERSION_H__
#define __GST_VERSION_H__ #define __GST_VERSION_H__
/** /*
* Use these only when you want to know what GStreamer version your stuff was * Use these only when you want to know what GStreamer version your stuff was
* compiled against. * compiled against.
* Use the #gst_version function if you want to know which versiuon of * Use the #gst_version function if you want to know which version of
* GStreamer you are currently linked against. * GStreamer you are currently linked against.
*/ */
#define GST_VERSION_MAJOR (@GST_VERSION_MAJOR@) #define GST_VERSION_MAJOR (@GST_VERSION_MAJOR@)

View file

@ -436,7 +436,7 @@ gst_parse_perform_delayed_link (GstElement *src, const gchar *src_pad,
} }
return FALSE; return FALSE;
} }
/** /*
* performs a link and frees the struct. src and sink elements must be given * performs a link and frees the struct. src and sink elements must be given
* return values 0 - link performed * return values 0 - link performed
* 1 - link delayed * 1 - link delayed