diff options
Diffstat (limited to 'src/image.c')
-rw-r--r-- | src/image.c | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/image.c b/src/image.c index 20ca3cf1d6b..f1c3d5d84f0 100644 --- a/src/image.c +++ b/src/image.c @@ -124,7 +124,7 @@ typedef struct ns_bitmap_record Bitmap_Record; /* The symbol `postscript' identifying images of this type. */ -Lisp_Object Qpostscript; +static Lisp_Object Qpostscript; static void x_disable_image (struct frame *, struct image *); static void x_edge_detection (struct frame *, struct image *, Lisp_Object, @@ -562,17 +562,21 @@ static Lisp_Object Vimage_type_cache; /* The symbol `xbm' which is used as the type symbol for XBM images. */ -Lisp_Object Qxbm; +static Lisp_Object Qxbm; /* Keywords. */ -Lisp_Object QCascent, QCmargin, QCrelief, Qcount, Qextension_data; -Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask; -Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask, QCgeometry, QCcrop, QCrotation; +Lisp_Object QCascent, QCmargin, QCrelief; +static Lisp_Object Qcount, Qextension_data; +Lisp_Object QCconversion; +static Lisp_Object QCheuristic_mask; +static Lisp_Object QCcolor_symbols; +static Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask, QCgeometry; +static Lisp_Object QCcrop, QCrotation; /* Other symbols. */ -Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic; +static Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic; /* Function prototypes. */ @@ -3001,7 +3005,7 @@ static int xpm_valid_color_symbols_p (Lisp_Object); #if defined (HAVE_XPM) || defined (HAVE_NS) /* The symbol `xpm' identifying XPM-format images. */ -Lisp_Object Qxpm; +static Lisp_Object Qxpm; /* Indices of image specification fields in xpm_format, below. */ @@ -4925,7 +4929,7 @@ static int pbm_scan_number (unsigned char **, unsigned char *); /* The symbol `pbm' identifying images of this type. */ -Lisp_Object Qpbm; +static Lisp_Object Qpbm; /* Indices of image specification fields in gs_format, below. */ @@ -5342,7 +5346,7 @@ static int png_load (struct frame *f, struct image *img); /* The symbol `png' identifying images of this type. */ -Lisp_Object Qpng; +static Lisp_Object Qpng; /* Indices of image specification fields in png_format, below. */ @@ -5956,7 +5960,7 @@ static int jpeg_load (struct frame *f, struct image *img); /* The symbol `jpeg' identifying images of this type. */ -Lisp_Object Qjpeg; +static Lisp_Object Qjpeg; /* Indices of image specification fields in gs_format, below. */ @@ -6505,7 +6509,7 @@ static int tiff_load (struct frame *f, struct image *img); /* The symbol `tiff' identifying images of this type. */ -Lisp_Object Qtiff; +static Lisp_Object Qtiff; /* Indices of image specification fields in tiff_format, below. */ @@ -6933,7 +6937,7 @@ static void gif_clear_image (struct frame *f, struct image *img); /* The symbol `gif' identifying images of this type. */ -Lisp_Object Qgif; +static Lisp_Object Qgif; /* Indices of image specification fields in gif_format, below. */ @@ -8302,7 +8306,7 @@ static void gs_clear_image (struct frame *f, struct image *img); /* Keyword symbols. */ -Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height; +static Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height; /* Indices of image specification fields in gs_format, below. */ |