Gimp at the Systems 99 in Munich

1999-10-11 Thread Simon Budig
Hi. As you may have read at the Gimp News I am coordinating the Gimp Booth at the Systems 1999 in Munich. I need some people, who will be there and have some time left to present the Gimp. So if you are interested, please mail me ASAP, so I can get a ticket for you. Further information:

Re: swap files

1999-10-11 Thread Raphael Quinet
On Sun, 10 Oct 1999, Federico Mena Quintero [EMAIL PROTECTED] wrote: [quoting Jay Cox] If we unlink the swap file after opening it then we have no way of knowing how much space gimp is using for it's swap file. lseek() returns the offset to which you seeked, so lseek (swap_fd, 0,

[patch] tearoff menus

1999-10-11 Thread SHIRASAKI Yasuhiro
Hi, This is an easy fix to handle /*/tearoff1 menu item translation handling. It may reduce translation mismatching error. enjoy -- SHIRASAKI Yasuhiro : Experimental Particle Physics, JLC Team Graduate School of Science, TOHOKU University 980-8578 Japan. --- app/menus.c.origTue Oct 12

Re: swap files

1999-10-11 Thread Federico Mena Quintero
I think this will just give you the LENGTH of the file? So, I don't know if it matters, but ISTR that Gimp uses files with holes, and therefore LENGTH != SIZE. Oh, I didn't know this. In any case, the program *does* know (or should) know the number of tiles that it can have (tile cache

Re: swap files

1999-10-11 Thread David Monniaux
On Mon, 11 Oct 1999, Marc Lehmann wrote: In any case, why not use tmpfile or a similar function to create it? that function will do exactly what is required and will work on all systems (as good as it can). Under Linux at least, tmpfile() simply does an unlink() after opening the file. :-)