]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.257
- new
[packages/vim.git] / 7.2.257
CommitLineData
4ff12b6a
ER
1To: vim-dev@vim.org
2Subject: Patch 7.2.257
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.257
11Problem: With GTK 2.17 lots of assertion error messages.
12Solution: Remove check for static gravity. (Sebastian Droege)
13Files: src/gui_gtk_f.c
14
15
16*** ../vim-7.2.256/src/gui_gtk_f.c 2009-05-17 23:25:16.000000000 +0200
17--- src/gui_gtk_f.c 2009-09-11 15:15:41.000000000 +0200
18***************
19*** 860,870 ****
20 gtk_form_set_static_gravity(GdkWindow *window, gboolean use_static)
21 {
22 #ifdef HAVE_GTK2
23! gboolean static_gravity_supported;
24!
25! static_gravity_supported = gdk_window_set_static_gravities(window,
26! use_static);
27! g_return_if_fail(static_gravity_supported);
28 #else
29 XSetWindowAttributes xattributes;
30
31--- 860,868 ----
32 gtk_form_set_static_gravity(GdkWindow *window, gboolean use_static)
33 {
34 #ifdef HAVE_GTK2
35! /* We don't check if static gravity is actually supported, because it
36! * results in an annoying assertion error message. */
37! gdk_window_set_static_gravities(window, use_static);
38 #else
39 XSetWindowAttributes xattributes;
40
41*** ../vim-7.2.256/src/version.c 2009-09-11 15:46:20.000000000 +0200
42--- src/version.c 2009-09-11 16:16:52.000000000 +0200
43***************
44*** 678,679 ****
45--- 678,681 ----
46 { /* Add new patch number below this line */
47+ /**/
48+ 257,
49 /**/
50
51--
52hundred-and-one symptoms of being an internet addict:
53231. You sprinkle Carpet Fresh on the rugs and put your vacuum cleaner
54 in the front doorway permanently so it always looks like you are
55 actually attempting to do something about that mess that has amassed
56 since you discovered the Internet.
57
58 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
59/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
60\\\ download, build and distribute -- http://www.A-A-P.org ///
61 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.066263 seconds and 4 git commands to generate.