emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/term/w32-win.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/term/w32-win.el [emacs-unicode-2]
Date: Mon, 28 Jun 2004 04:35:59 -0400

Index: emacs/lisp/term/w32-win.el
diff -c emacs/lisp/term/w32-win.el:1.59.2.2 emacs/lisp/term/w32-win.el:1.59.2.3
*** emacs/lisp/term/w32-win.el:1.59.2.2 Fri Apr 16 12:50:36 2004
--- emacs/lisp/term/w32-win.el  Mon Jun 28 07:29:49 2004
***************
*** 1,6 ****
  ;;; w32-win.el --- parse switches controlling interface with W32 window system
  
! ;; Copyright (C) 1993, 1994, 2003 Free Software Foundation, Inc.
  
  ;; Author: Kevin Gallo
  ;; Keywords: terminals
--- 1,6 ----
  ;;; w32-win.el --- parse switches controlling interface with W32 window system
  
! ;; Copyright (C) 1993, 1994, 2003, 2004 Free Software Foundation, Inc.
  
  ;; Author: Kevin Gallo
  ;; Keywords: terminals
***************
*** 76,81 ****
--- 76,84 ----
  (require 'faces)
  (require 'select)
  (require 'menu-bar)
+ (require 'x-dnd)
+ (require 'code-pages)
+ 
  ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles
  (if (fboundp 'new-fontset)
      (require 'fontset))
***************
*** 105,111 ****
           (y (cdr coords)))
        (if (and (> x 0) (> y 0))
          (set-frame-selected-window nil window))
!     (mapcar 'find-file (car (cdr (cdr event)))))
    (raise-frame)))
  
  (defun w32-drag-n-drop-other-frame (event)
--- 108,117 ----
           (y (cdr coords)))
        (if (and (> x 0) (> y 0))
          (set-frame-selected-window nil window))
!       (mapcar (lambda (file-name) 
!               (x-dnd-handle-one-url window 'private 
!                                     (concat "file:" file-name)))
!               (car (cdr (cdr event)))))
    (raise-frame)))
  
  (defun w32-drag-n-drop-other-frame (event)
***************
*** 1255,1259 ****
--- 1261,1273 ----
        (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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]