*** empty log message ***
This commit is contained in:
@ -1,3 +1,10 @@
|
||||
Sat Nov 20 03:15:42 CET 1999 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* plug-ins/common/gif.c: Removed rather superflous "comment block
|
||||
not written" message that most people wouldn't see. Left in the
|
||||
"comment block too long" message in, though. Corrected some
|
||||
typoes.
|
||||
|
||||
Sat Nov 20 02:46:12 MET 1999 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* common/colortoalpha.c
|
||||
@ -32,7 +39,6 @@ Sat Nov 20 00:27:26 GMT 1999 Andy Thomas <alt@gimp.org>
|
||||
between this behaviour and the "original" way of having
|
||||
one nav dialog per display.
|
||||
|
||||
>>>>>>> 1.1829
|
||||
Sat Nov 20 01:27:12 MET 1999 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* convolve.c
|
||||
|
@ -24,7 +24,7 @@
|
||||
* REVISION HISTORY
|
||||
*
|
||||
* 99/04/25
|
||||
* 3.00.02 - Save the comment back onto the image as a persistant
|
||||
* 3.00.02 - Save the comment back onto the image as a persistent
|
||||
* parasite if the comment was edited.
|
||||
*
|
||||
* 99/03/30
|
||||
@ -46,7 +46,7 @@
|
||||
* permitted.
|
||||
*
|
||||
* 98/10/09
|
||||
* 2.01.00 - Added support for persistant GIF Comments through
|
||||
* 2.01.00 - Added support for persistent GIF Comments through
|
||||
* the GIMP 1.1 Parasite mechanism where available.
|
||||
* Did some user-interface tweaks.
|
||||
* Fixed a bug when trying to save a GIF smaller
|
||||
@ -558,8 +558,8 @@ gint globalusecomment = TRUE;
|
||||
|
||||
/* ppmtogif.c - read a portable pixmap and produce a GIF file
|
||||
**
|
||||
** Based on GIFENCOD by David Rowley <mgardi@watdscu.waterloo.edu>.A
|
||||
** Lempel-Zim compression based on "compress".
|
||||
** Based on GIFENCOD by David Rowley <mgardi@watdscu.waterloo.edu>. A
|
||||
** Lempel-Ziv compression based on "compress".
|
||||
**
|
||||
** Modified by Marcel Wijkstra <wijkstra@fwi.uva.nl>
|
||||
**
|
||||
@ -2046,11 +2046,8 @@ GIFEncodeLoopExt (FILE *fp,
|
||||
|
||||
static void GIFEncodeCommentExt (FILE *fp, char *comment)
|
||||
{
|
||||
if (comment==NULL||strlen(comment)<1)
|
||||
{
|
||||
g_print ("GIF: warning: no comment given - comment block not written.\n");
|
||||
return;
|
||||
}
|
||||
if (!comment || !*comment)
|
||||
return;
|
||||
|
||||
if (strlen(comment)>240)
|
||||
{
|
||||
|
Reference in New Issue
Block a user