Git development
 help / color / mirror / Atom feed
* [PATCH] git-gui: suppress the X error on exit
@ 2009-12-04  9:28 Jindrich Makovicka
  2009-12-04 15:57 ` Shawn O. Pearce
  0 siblings, 1 reply; 2+ messages in thread
From: Jindrich Makovicka @ 2009-12-04  9:28 UTC (permalink / raw)
  To: git

Hi,

Due to a bug in Tk, git-gui almost always (unless git-gui is closed
right after starting) produces an X window error message on exit,
something like

X Error of failed request:  RenderBadPicture (invalid Picture parameter)
  Major opcode of failed request:  150 (RENDER)
  Minor opcode of failed request:  7 (RenderFreePicture)
  Picture id in failed request: 0x3a000dc
  Serial number of failed request:  1965
  Current serial number in output stream:  1980

Respective Tk bug report is here:

http://sourceforge.net/tracker/?func=detail&atid=112997&aid=1821174&group_id=12997

This bug is triggered only when the send command is blocked via
rename send {} . The following patch re-enables send just
before quiting git-gui to suppress the error.

--- git-gui~	2009-11-17 23:28:30.000000000 +0100
+++ git-gui	2009-12-03 23:32:50.848588924 +0100
@@ -2023,6 +2023,10 @@
 	}
 
 	set ret_code $rc
+
+	# briefly re-enable send to suppress the RenderBadPicture error
+	tk appname [appname]
+
 	destroy .
 }
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-12-04 15:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-04  9:28 [PATCH] git-gui: suppress the X error on exit Jindrich Makovicka
2009-12-04 15:57 ` Shawn O. Pearce

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox