aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
authorPaul Eggert2011-06-10 13:05:21 -0700
committerPaul Eggert2011-06-10 13:05:21 -0700
commit4b66faf3de2606b613dea58dd41e2926b6df3f10 (patch)
treedcdf9889c601e7bbcca1d666c6cc3922e94859b6 /src/image.c
parentf7e13da36c982977ccfe6de1e43d8f8b3bb59c8f (diff)
downloademacs-4b66faf3de2606b613dea58dd41e2926b6df3f10.tar.gz
emacs-4b66faf3de2606b613dea58dd41e2926b6df3f10.zip
Make identifiers static if they are not used in other modules.
* data.c (Qcompiled_function, Qframe, Qvector): * image.c (QimageMagick, Qsvg): * minibuf.c (Qmetadata): * window.c (resize_window_check, resize_root_window): Now static. * window.h (resize_window_check, resize_root_window): Remove decls.
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/image.c b/src/image.c
index 3d1724492a0..8169a9098d8 100644
--- a/src/image.c
+++ b/src/image.c
@@ -7365,7 +7365,7 @@ gif_load (struct frame *f, struct image *img)
7365***********************************************************************/ 7365***********************************************************************/
7366#if defined (HAVE_IMAGEMAGICK) 7366#if defined (HAVE_IMAGEMAGICK)
7367 7367
7368Lisp_Object Qimagemagick; 7368static Lisp_Object Qimagemagick;
7369 7369
7370static int imagemagick_image_p (Lisp_Object); 7370static int imagemagick_image_p (Lisp_Object);
7371static int imagemagick_load (struct frame *, struct image *); 7371static int imagemagick_load (struct frame *, struct image *);
@@ -7884,7 +7884,7 @@ static int svg_load_image (struct frame *, struct image *,
7884 7884
7885/* The symbol `svg' identifying images of this type. */ 7885/* The symbol `svg' identifying images of this type. */
7886 7886
7887Lisp_Object Qsvg; 7887static Lisp_Object Qsvg;
7888 7888
7889/* Indices of image specification fields in svg_format, below. */ 7889/* Indices of image specification fields in svg_format, below. */
7890 7890