summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-10-23 05:17:25 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-10-23 05:17:25 +0800
commit17020b203d6c56bb93b4e9f04c8fc2fe8468054b (patch)
tree9adc481ca3119d3b24c97d1c0034dd6ecd74e32a
parentfe72edde8d8c020b411427d372d3d9b76fdfef1c (diff)
downloadmarcuscom-ports-17020b203d6c56bb93b4e9f04c8fc2fe8468054b.tar
marcuscom-ports-17020b203d6c56bb93b4e9f04c8fc2fe8468054b.tar.gz
marcuscom-ports-17020b203d6c56bb93b4e9f04c8fc2fe8468054b.tar.bz2
marcuscom-ports-17020b203d6c56bb93b4e9f04c8fc2fe8468054b.tar.lz
marcuscom-ports-17020b203d6c56bb93b4e9f04c8fc2fe8468054b.tar.xz
marcuscom-ports-17020b203d6c56bb93b4e9f04c8fc2fe8468054b.tar.zst
marcuscom-ports-17020b203d6c56bb93b4e9f04c8fc2fe8468054b.zip
Remove this file from CVS.
Reported by: Yasuda Keisuke <kysd@po.harenet.ne.jp> git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11725 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--x11/gnome-session/files/patch-tools_gnome-session-save.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/x11/gnome-session/files/patch-tools_gnome-session-save.c b/x11/gnome-session/files/patch-tools_gnome-session-save.c
deleted file mode 100644
index 764fb3119..000000000
--- a/x11/gnome-session/files/patch-tools_gnome-session-save.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- tools/gnome-session-save.c 2008/09/01 16:49:20 5029
-+++ tools/gnome-session-save.c 2008/09/29 15:16:06 5128
-@@ -45,7 +45,7 @@
-
- /* True if killing. This is deprecated, but we keep it for compatibility
- * reasons. */
--static gboolean kill = FALSE;
-+static gboolean kill_session = FALSE;
-
- /* The real options that should be used now. They are not ambiguous. */
- static gboolean logout = FALSE;
-@@ -67,7 +67,7 @@
- {"force-logout", '\0', 0, G_OPTION_ARG_NONE, &force_logout, N_("Log out, ignoring any existing inhibitors"), NULL},
- {"logout-dialog", '\0', 0, G_OPTION_ARG_NONE, &logout_dialog, N_("Show logout dialog"), NULL},
- {"shutdown-dialog", '\0', 0, G_OPTION_ARG_NONE, &shutdown_dialog, N_("Show shutdown dialog"), NULL},
-- {"kill", '\0', 0, G_OPTION_ARG_NONE, &kill, N_("Kill session"), NULL},
-+ {"kill", '\0', 0, G_OPTION_ARG_NONE, &kill_session, N_("Kill session"), NULL},
- {"gui", '\0', 0, G_OPTION_ARG_NONE, &show_error_dialogs, N_("Use dialog boxes for errors"), NULL},
- {"silent", '\0', 0, G_OPTION_ARG_NONE, &no_interaction, N_("Do not require confirmation"), NULL},
- {NULL}
-@@ -259,7 +259,7 @@
- }
-
- conflicting_options = 0;
-- if (kill)
-+ if (kill_session)
- conflicting_options++;
- if (logout)
- conflicting_options++;
-@@ -272,7 +272,7 @@
- if (conflicting_options > 1)
- display_error (_("Program called with conflicting options"));
-
-- if (kill) {
-+ if (kill_session) {
- if (no_interaction)
- logout = TRUE;
- else