]> git.eshelyaron.com Git - emacs.git/commitdiff
(our_fill_input_buffer, jpeg_load, CHECK_LIB_AVAILABLE, init_image):
authorRichard M. Stallman <rms@gnu.org>
Wed, 8 Dec 2004 17:56:08 +0000 (17:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 8 Dec 2004 17:56:08 +0000 (17:56 +0000)
Use 1 rather than TRUE.  TRUE's not always defined.

src/ChangeLog
src/image.c

index 28030aef0e33fa5f214bd767ff7d43d5d8ef4c0a..39401c9453ce5d2f983099eed47e065c38cecfa4 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * image.c (our_fill_input_buffer, jpeg_load, CHECK_LIB_AVAILABLE)
+       (init_image): Use 1 rather than TRUE.  TRUE's not always defined.
+
 2004-12-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * emacs.c (Fdump_emacs): Add ! defined (SYSTEM_MALLOC) around
index d1925cf36e48793fdf5b1b8fbbfdf020afa59cf9..18ffc2db3a466b0a59dd2fac5687b7c647499836 100644 (file)
@@ -6378,7 +6378,7 @@ our_fill_input_buffer (cinfo)
 
   src->next_input_byte = buffer;
   src->bytes_in_buffer = 2;
-  return TRUE;
+  return 1;
 }
 
 
@@ -6533,11 +6533,11 @@ jpeg_load (f, img)
     jpeg_memory_src (&cinfo, SDATA (specified_data),
                     SBYTES (specified_data));
 
-  fn_jpeg_read_header (&cinfo, TRUE);
+  fn_jpeg_read_header (&cinfo, 1);
 
   /* Customize decompression so that color quantization will be used.
         Start decompression.  */
-  cinfo.quantize_colors = TRUE;
+  cinfo.quantize_colors = 1;
   fn_jpeg_start_decompress (&cinfo);
   width = img->width = cinfo.output_width;
   height = img->height = cinfo.output_height;
@@ -7552,7 +7552,7 @@ gif_load (f, img)
   bg_color.blue = color.blue;
   RGBBackColor (&bg_color);
   SetGWorld (old_port, old_gdh);
-  SetMovieActive (movie, TRUE);
+  SetMovieActive (movie, 1);
   SetMovieGWorld (movie, ximg, NULL);
   SampleNumToMediaTime (media, ino + 1, &time, NULL);
   SetMovieTimeValue (movie, time);
@@ -7930,7 +7930,7 @@ DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0, "")
   define_image_type (image_type, init_lib_fn (libraries))
 #else
 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
-  define_image_type (image_type, TRUE)
+  define_image_type (image_type, 1)
 #endif /* HAVE_NTGUI */
 
 DEFUN ("init-image-library", Finit_image_library, Sinit_image_library, 2, 2, 0,
@@ -8114,8 +8114,8 @@ init_image ()
 {
   image_types = NULL;
 
-  define_image_type (&xbm_type, TRUE);
-  define_image_type (&pbm_type, TRUE);
+  define_image_type (&xbm_type, 1);
+  define_image_type (&pbm_type, 1);
 
 #ifdef MAC_OS
   /* Animated gifs use QuickTime Movie Toolbox.  So initialize it here. */