Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GLib
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Simon McVittie
GLib
Commits
df990914
Commit
df990914
authored
Feb 06, 2014
by
Matthias Clasen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stop using replaceable tags
parent
5baa0f2a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
28 deletions
+22
-28
gio/gfileattribute.c
gio/gfileattribute.c
+3
-3
gio/gsettings.c
gio/gsettings.c
+4
-4
glib/goption.c
glib/goption.c
+9
-13
glib/gtestutils.c
glib/gtestutils.c
+6
-8
No files found.
gio/gfileattribute.c
View file @
df990914
...
...
@@ -207,9 +207,9 @@
* "xattr::". Keys for the "xattr-sys" namespace are constructed by
* concatenating "xattr-sys::" with the extended attribute name. All extended
* attribute values are returned as hex-encoded strings in which bytes outside
* the ASCII range are encoded as
hexadecimal escape sequences of the form
*
\x<replaceable>nn</replaceable>
.
*
*
/
* the ASCII range are encoded as
escape sequences of the form \x`nn`
*
where `nn` is a 2-digit hexadecimal number
.
*/
/*
* _g_file_attribute_value_free:
...
...
gio/gsettings.c
View file @
df990914
...
...
@@ -2172,11 +2172,11 @@ g_settings_is_writable (GSettings *settings,
/**
* g_settings_get_child:
* @settings: a #GSettings object
* @name: the name of the
'child'
schema
* @name: the name of the
child
schema
*
* Creates a
'child'
settings object which has a base path of
*
<replaceable>base-path</replaceable>/@name, where
*
<replaceable>base-path</replaceable> is the base path of
@settings.
* Creates a
child
settings object which has a base path of
*
`base-path/@name`, where `base-path` is the base path of
* @settings.
*
* The schema for the child settings object must have been declared
* in the schema of @settings using a <child> element.
...
...
glib/goption.c
View file @
df990914
...
...
@@ -52,11 +52,9 @@
* Another important feature of GOption is that it can automatically
* generate nicely formatted help output. Unless it is explicitly turned
* off with g_option_context_set_help_enabled(), GOption will recognize
* the `--help`, `-?`, `--help-all` and
* `--help-`<replaceable>groupname</replaceable> options
* (where <replaceable>groupname</replaceable> is the name of a
* #GOptionGroup) and write a text similar to the one shown in the
* following example to stdout.
* the `--help`, `-?`, `--help-all` and `--help-groupname` options
* (where `groupname` is the name of a #GOptionGroup) and write a text
* similar to the one shown in the following example to stdout.
*
* |[
* Usage:
...
...
@@ -325,9 +323,8 @@ G_DEFINE_QUARK (g-option-context-error-quark, g_option_error)
/**
* g_option_context_new:
* @parameter_string: (allow-none): a string which is displayed in
* the first line of `--help` output, after the
* usage summary
* `<replaceable>programname</replaceable> [OPTION...]`
* the first line of `--help` output, after the usage summary
* `programname [OPTION...]`
*
* Creates a new option context.
*
...
...
@@ -409,11 +406,10 @@ void g_option_context_free (GOptionContext *context)
* @context: a #GOptionContext
* @help_enabled: %TRUE to enable `--help`, %FALSE to disable it
*
* Enables or disables automatic generation of `--help`
* output. By default, g_option_context_parse() recognizes
* `--help`, `-h`, `-?`, `--help-all`
* and `--help-`<replaceable>groupname</replaceable> and creates
* suitable output to stdout.
* Enables or disables automatic generation of `--help` output.
* By default, g_option_context_parse() recognizes `--help`, `-h`,
* `-?`, `--help-all` and `--help-groupname` and creates suitable
* output to stdout.
*
* Since: 2.6
*/
...
...
glib/gtestutils.c
View file @
df990914
...
...
@@ -1453,11 +1453,9 @@ g_test_get_root (void)
*
* Runs all tests under the toplevel suite which can be retrieved
* with g_test_get_root(). Similar to g_test_run_suite(), the test
* cases to be run are filtered according to
* test path arguments (-p <replaceable>testpath</replaceable>) as
* parsed by g_test_init().
* g_test_run_suite() or g_test_run() may only be called once
* in a program.
* cases to be run are filtered according to test path arguments
* (`-p testpath`) as parsed by g_test_init(). g_test_run_suite()
* or g_test_run() may only be called once in a program.
*
* In general, the tests and sub-suites within each suite are run in
* the order in which they are defined. However, note that prior to
...
...
@@ -2144,9 +2142,9 @@ g_test_run_suite_internal (GTestSuite *suite,
*
* Execute the tests within @suite and all nested #GTestSuites.
* The test suites to be executed are filtered according to
* test path arguments (
-p <replaceable>testpath</replaceable>)
*
as parsed by g_test_init(). See the g_test_run() documentation
*
for more information on the
order that tests are run in.
* test path arguments (
`-p testpath`) as parsed by g_test_init().
*
See the g_test_run() documentation for more information on the
* order that tests are run in.
*
* g_test_run_suite() or g_test_run() may only be called once
* in a program.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment