# HG changeset patch # User Juanma Barranquero # Date 1087246798 0 # Node ID a5bfa1a26af3273a360f115489ede1bd49de93b7 # Parent 5b3f0e4cf47f01d8171fb73950d0f29a99adfeca (image-library-alist): Initialize to a known set of probable library names. diff -r 5b3f0e4cf47f -r a5bfa1a26af3 lisp/term/w32-win.el --- a/lisp/term/w32-win.el Mon Jun 14 20:58:36 2004 +0000 +++ b/lisp/term/w32-win.el Mon Jun 14 20:59:58 2004 +0000 @@ -1,6 +1,6 @@ ;;; w32-win.el --- parse switches controlling interface with W32 window system -;; Copyright (C) 1993, 1994, 2003 Free Software Foundation, Inc. +;; Copyright (C) 1993, 1994, 2003, 2004 Free Software Foundation, Inc. ;; Author: Kevin Gallo ;; Keywords: terminals @@ -1261,5 +1261,13 @@ (if (null font) (error "Font not found"))))) +;;; Set default known names for image libraries +(setq image-library-alist + '((xpm "libXpm-nox4.dll" "libxpm.dll") + (png "libpng13d.dll" "libpng13.dll" "libpng12d.dll" "libpng12.dll" "libpng.dll") + (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll") + (tiff "libtiff3.dll" "libtiff.dll") + (gif "libungif.dll"))) + ;;; arch-tag: 69fb1701-28c2-4890-b351-3d1fe4b4f166 ;;; w32-win.el ends here