mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-05-30 01:10:06 +02:00
Use <envar>, not <envvar>.
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
This commit is contained in:
parent
82fa2c0069
commit
fb069c70f7
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-12-17 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gspawn.c, glib/gspawn-win32.c: Use <envar>, not <envvar>.
|
||||
|
||||
2001-12-15 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* glib/gshell.c, glib/gspawn.c, glib/gspawn-win32.c, glib/gerror.c,
|
||||
|
@ -471,7 +471,7 @@ g_spawn_sync (const gchar *working_directory,
|
||||
* should be a %NULL-terminated array of strings, to be passed as the
|
||||
* argument vector for the child. The first string in @argv is of
|
||||
* course the name of the program to execute. By default, the name of
|
||||
* the program must be a full path; the <envvar>PATH</envvar> shell variable will only
|
||||
* the program must be a full path; the <envar>PATH</envar> shell variable will only
|
||||
* be searched if you pass the %G_SPAWN_SEARCH_PATH flag.
|
||||
*
|
||||
* @envp is a %NULL-terminated array of strings, where each string
|
||||
@ -488,7 +488,7 @@ g_spawn_sync (const gchar *working_directory,
|
||||
* otherwise all descriptors except stdin/stdout/stderr will be closed before
|
||||
* calling <function>exec()</function> in the child. %G_SPAWN_SEARCH_PATH
|
||||
* means that <literal>argv[0]</literal> need not be an absolute path, it
|
||||
* will be looked for in the user's <envvar>PATH</envvar>.
|
||||
* will be looked for in the user's <envar>PATH</envar>.
|
||||
* %G_SPAWN_STDOUT_TO_DEV_NULL means that the child's standard output
|
||||
* will be discarded, instead of going to the same location as the parent's
|
||||
* standard output. %G_SPAWN_STDERR_TO_DEV_NULL means that the child's
|
||||
|
@ -421,7 +421,7 @@ g_spawn_sync (const gchar *working_directory,
|
||||
* should be a %NULL-terminated array of strings, to be passed as the
|
||||
* argument vector for the child. The first string in @argv is of
|
||||
* course the name of the program to execute. By default, the name of
|
||||
* the program must be a full path; the <envvar>PATH</envvar> shell variable
|
||||
* the program must be a full path; the <envar>PATH</envar> shell variable
|
||||
* will only be searched if you pass the %G_SPAWN_SEARCH_PATH flag.
|
||||
*
|
||||
* @envp is a %NULL-terminated array of strings, where each string
|
||||
@ -439,7 +439,7 @@ g_spawn_sync (const gchar *working_directory,
|
||||
* descriptors except stdin/stdout/stderr will be closed before
|
||||
* calling <function>exec()</function> in the child. %G_SPAWN_SEARCH_PATH
|
||||
* means that <literal>argv[0]</literal> need not be an absolute path, it
|
||||
* will be looked for in the user's <envvar>PATH</envvar>.
|
||||
* will be looked for in the user's <envar>PATH</envar>.
|
||||
* %G_SPAWN_STDOUT_TO_DEV_NULL means that the child's standad output will
|
||||
* be discarded, instead of going to the same location as the parent's
|
||||
* standard output.
|
||||
|
Loading…
x
Reference in New Issue
Block a user