update from libegg to get fix from Ralph Loader for <Super> <Hyper> <Meta>

2002-09-29  Havoc Pennington  <hp@pobox.com>

	* src/eggaccelerators.c: update from libegg to get fix from Ralph
	Loader for <Super> <Hyper> <Meta> parsing, #93005
This commit is contained in:
Havoc Pennington 2002-09-30 03:58:41 +00:00 committed by Havoc Pennington
parent f001625e5b
commit e802acf413
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2002-09-29 Havoc Pennington <hp@pobox.com>
* src/eggaccelerators.c: update from libegg to get fix from Ralph
Loader for <Super> <Hyper> <Meta> parsing, #93005
2002-09-29 Havoc Pennington <hp@pobox.com>
* src/effects.h (META_MINIMIZE_ANIMATION_LENGTH): shorten minimize

View File

@ -148,7 +148,7 @@ is_meta (const gchar *string)
(string[2] == 'e' || string[2] == 'E') &&
(string[3] == 't' || string[3] == 'T') &&
(string[4] == 'a' || string[4] == 'A') &&
(string[8] == '>'));
(string[5] == '>'));
}
static inline gboolean
@ -160,7 +160,7 @@ is_super (const gchar *string)
(string[3] == 'p' || string[3] == 'P') &&
(string[4] == 'e' || string[4] == 'E') &&
(string[5] == 'r' || string[5] == 'R') &&
(string[8] == '>'));
(string[6] == '>'));
}
static inline gboolean
@ -172,7 +172,7 @@ is_hyper (const gchar *string)
(string[3] == 'p' || string[3] == 'P') &&
(string[4] == 'e' || string[4] == 'E') &&
(string[5] == 'r' || string[5] == 'R') &&
(string[8] == '>'));
(string[6] == '>'));
}
/**