Drop use of the command tag

It is more useful to link to the included man page, anyway.
This commit is contained in:
Matthias Clasen 2014-02-01 15:26:38 -05:00
parent 8bdc089ca4
commit 306dfb3292
5 changed files with 23 additions and 25 deletions

View File

@ -77,8 +77,7 @@
* subclass #GDBusProxy, and have more natural properties and signals * subclass #GDBusProxy, and have more natural properties and signals
* in your derived class. See <xref linkend="gdbus-example-gdbus-codegen"/> * in your derived class. See <xref linkend="gdbus-example-gdbus-codegen"/>
* for how this can easily be done using the * for how this can easily be done using the
* <command><link linkend="gdbus-codegen">gdbus-codegen</link></command> * <link linkend="gdbus-codegen">gdbus-codegen</link> tool.
* tool.
* *
* A #GDBusProxy instance can be used from multiple threads but note * A #GDBusProxy instance can be used from multiple threads but note
* that all signals (e.g. #GDBusProxy::g-signal, #GDBusProxy::g-properties-changed * that all signals (e.g. #GDBusProxy::g-signal, #GDBusProxy::g-properties-changed

View File

@ -66,12 +66,12 @@ G_DEFINE_BOXED_TYPE (GResource, g_resource, g_resource_ref, g_resource_unref)
* <literal>preprocess</literal> attribute to a comma-separated list of preprocessing options. * <literal>preprocess</literal> attribute to a comma-separated list of preprocessing options.
* The only options currently supported are: * The only options currently supported are:
* *
* <literal>xml-stripblanks</literal> which will use <command>xmllint</command> to strip * <literal>xml-stripblanks</literal> which will use the xmllint command to strip
* ignorable whitespace from the xml file. For this to work, the <envar>XMLLINT</envar> * ignorable whitespace from the xml file. For this to work, the <envar>XMLLINT</envar>
* environment variable must be set to the full path to the xmllint executable, or xmllint * environment variable must be set to the full path to the xmllint executable, or xmllint
* must be in the PATH; otherwise the preprocessing step is skipped. * must be in the PATH; otherwise the preprocessing step is skipped.
* *
* <literal>to-pixdata</literal> which will use <command>gdk-pixbuf-pixdata</command> to convert * <literal>to-pixdata</literal> which will use the gdk-pixbuf-pixdata command to convert
* images to the GdkPixdata format, which allows you to create pixbufs directly using the data inside * images to the GdkPixdata format, which allows you to create pixbufs directly using the data inside
* the resource file, rather than an (uncompressed) copy if it. For this, the gdk-pixbuf-pixdata * the resource file, rather than an (uncompressed) copy if it. For this, the gdk-pixbuf-pixdata
* program must be in the PATH, or the <envar>GDK_PIXBUF_PIXDATA</envar> environment variable must be * program must be in the PATH, or the <envar>GDK_PIXBUF_PIXDATA</envar> environment variable must be

View File

@ -251,8 +251,8 @@ g_settings_schema_source_unref (GSettingsSchemaSource *source)
* may be useful to authors of plugin management systems. * may be useful to authors of plugin management systems.
* *
* The directory should contain a file called * The directory should contain a file called
* <filename>gschemas.compiled</filename> as produced by * <filename>gschemas.compiled</filename> as produced by the
* <command>glib-compile-schemas</command>. * <link linkend="glib-compile-schemas">glib-compile-schemas</link> tool.
* *
* If @trusted is %TRUE then <filename>gschemas.compiled</filename> is * If @trusted is %TRUE then <filename>gschemas.compiled</filename> is
* trusted not to be corrupted. This assumption has a performance * trusted not to be corrupted. This assumption has a performance

View File

@ -90,10 +90,10 @@ volatile gboolean glib_on_error_halt = TRUE;
/** /**
* g_on_error_query: * g_on_error_query:
* @prg_name: the program name, needed by <command>gdb</command> * @prg_name: the program name, needed by gdb for the "[S]tack trace"
* for the [S]tack trace option. If @prg_name is %NULL, g_get_prgname() * option. If @prg_name is %NULL, g_get_prgname() is called to get
* is called to get the program name (which will work correctly if * the program name (which will work correctly if gdk_init() or
* gdk_init() or gtk_init() has been called) * gtk_init() has been called)
* *
* Prompts the user with * Prompts the user with
* <literal>[E]xit, [H]alt, show [S]tack trace or [P]roceed</literal>. * <literal>[E]xit, [H]alt, show [S]tack trace or [P]roceed</literal>.
@ -127,14 +127,14 @@ volatile gboolean glib_on_error_halt = TRUE;
* ... * ...
* ]| * ]|
* *
* If [E]xit is selected, the application terminates with a call * If "[E]xit" is selected, the application terminates with a call
* to <literal>_exit(0)</literal>. * to _exit(0).
* *
* If [S]tack trace is selected, g_on_error_stack_trace() is called. * If "[S]tack" trace is selected, g_on_error_stack_trace() is called.
* This invokes <command>gdb</command>, which attaches to the current * This invokes gdb, which attaches to the current process and shows
* process and shows a stack trace. The prompt is then shown again. * a stack trace. The prompt is then shown again.
* *
* If [P]roceed is selected, the function returns. * If "[P]roceed" is selected, the function returns.
* *
* This function may cause different actions on non-UNIX platforms. * This function may cause different actions on non-UNIX platforms.
*/ */
@ -209,14 +209,14 @@ g_on_error_query (const gchar *prg_name)
/** /**
* g_on_error_stack_trace: * g_on_error_stack_trace:
* @prg_name: the program name, needed by <command>gdb</command> * @prg_name: the program name, needed by gdb for the "[S]tack trace"
* for the [S]tack trace option. * option
* *
* Invokes <command>gdb</command>, which attaches to the current * Invokes gdb, which attaches to the current process and shows a
* process and shows a stack trace. Called by g_on_error_query() * stack trace. Called by g_on_error_query() when the "[S]tack trace"
* when the [S]tack trace option is selected. You can get the current * option is selected. You can get the current process's program name
* process's "program name" with g_get_prgname(), assuming that you * with g_get_prgname(), assuming that you have called gtk_init() or
* have called gtk_init() or gdk_init(). * gdk_init().
* *
* This function may cause different actions on non-UNIX platforms. * This function may cause different actions on non-UNIX platforms.
*/ */

View File

@ -57,8 +57,7 @@
* well as Windows platforms via DLLs. * well as Windows platforms via DLLs.
* *
* A program which wants to use these functions must be linked to the * A program which wants to use these functions must be linked to the
* libraries output by the command * libraries output by the command <literal>pkg-config --libs gmodule-2.0</literal>.
* <command>pkg-config --libs gmodule-2.0</command>.
* *
* To use them you must first determine whether dynamic loading * To use them you must first determine whether dynamic loading
* is supported on the platform by calling g_module_supported(). * is supported on the platform by calling g_module_supported().