summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@gnome.org>2013-06-08 13:47:00 +0200
committerChristian Persch <chpe@gnome.org>2013-06-08 13:47:00 +0200
commit364d5b5252b7dce4358ad25fc0249ccd843155d4 (patch)
treeaef5117b85fe484279cbeefa0e65968b9facedcf
parent5ba5c9ee232e0bf24b88623edfb8bd86a2aad06c (diff)
downloadvte-0.34.6.tar.gz
pty: Move spawn flag define to vtepty.h0.34.6
-rw-r--r--src/vte.h2
-rw-r--r--src/vtepty.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vte.h b/src/vte.h
index 18740af6..fb1da5c8 100644
--- a/src/vte.h
+++ b/src/vte.h
@@ -269,8 +269,6 @@ VtePty *vte_terminal_pty_new (VteTerminal *terminal,
void vte_terminal_watch_child (VteTerminal *terminal,
GPid child_pid);
-#define VTE_SPAWN_NO_PARENT_ENVV (1 << 25)
-
gboolean vte_terminal_fork_command_full(VteTerminal *terminal,
VtePtyFlags pty_flags,
const char *working_directory,
diff --git a/src/vtepty.h b/src/vtepty.h
index a0aea6ad..6c056eea 100644
--- a/src/vtepty.h
+++ b/src/vtepty.h
@@ -61,6 +61,8 @@ typedef enum {
VTE_PTY_ERROR_PTY98_FAILED
} VtePtyError;
+#define VTE_SPAWN_NO_PARENT_ENVV (1 << 25)
+
GQuark vte_pty_error_quark (void);
/**