/[emacs]/emacs/src/image.c
ViewVC logotype

Diff of /emacs/src/image.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.31 by rms, Thu Aug 11 13:58:12 2005 UTC revision 1.32 by rms, Mon Aug 15 01:47:01 2005 UTC
# Line 8038  Each element of the list is a symbol for Line 8038  Each element of the list is a symbol for
8038  To check whether it is really supported, use `image-type-available-p'.  */);  To check whether it is really supported, use `image-type-available-p'.  */);
8039    Vimage_types = Qnil;    Vimage_types = Qnil;
8040    
   define_image_type (&xbm_type, 1);  
   define_image_type (&pbm_type, 1);  
   
8041    DEFVAR_LISP ("image-library-alist", &Vimage_library_alist,    DEFVAR_LISP ("image-library-alist", &Vimage_library_alist,
8042      doc: /* Alist of image types vs external libraries needed to display them.      doc: /* Alist of image types vs external libraries needed to display them.
8043    
# Line 8058  listed; they're always supported.  */); Line 8055  listed; they're always supported.  */);
8055    Vimage_type_cache = Qnil;    Vimage_type_cache = Qnil;
8056    staticpro (&Vimage_type_cache);    staticpro (&Vimage_type_cache);
8057    
8058      Qpbm = intern ("pbm");
8059      staticpro (&Qpbm);
8060      ADD_IMAGE_TYPE(Qpbm);
8061    
8062      Qxbm = intern ("xbm");
8063      staticpro (&Qxbm);
8064      ADD_IMAGE_TYPE(Qxbm);
8065    
8066      define_image_type (&xbm_type, 1);
8067      define_image_type (&pbm_type, 1);
8068    
8069    QCascent = intern (":ascent");    QCascent = intern (":ascent");
8070    staticpro (&QCascent);    staticpro (&QCascent);
8071    QCmargin = intern (":margin");    QCmargin = intern (":margin");
# Line 8102  listed; they're always supported.  */); Line 8110  listed; they're always supported.  */);
8110    staticpro (&QCpt_height);    staticpro (&QCpt_height);
8111  #endif /* HAVE_GHOSTSCRIPT */  #endif /* HAVE_GHOSTSCRIPT */
8112    
   Qpbm = intern ("pbm");  
   staticpro (&Qpbm);  
   ADD_IMAGE_TYPE(Qpbm);  
   
   Qxbm = intern ("xbm");  
   staticpro (&Qxbm);  
   ADD_IMAGE_TYPE(Qxbm);  
   
8113  #if defined (HAVE_XPM) || defined (MAC_OS)  #if defined (HAVE_XPM) || defined (MAC_OS)
8114    Qxpm = intern ("xpm");    Qxpm = intern ("xpm");
8115    staticpro (&Qxpm);    staticpro (&Qxpm);

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26