emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/frame.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/frame.el [lexbind]
Date: Sat, 04 Sep 2004 05:50:30 -0400

Index: emacs/lisp/frame.el
diff -c emacs/lisp/frame.el:1.194.2.8 emacs/lisp/frame.el:1.194.2.9
*** emacs/lisp/frame.el:1.194.2.8       Sat Sep  4 09:18:38 2004
--- emacs/lisp/frame.el Sat Sep  4 09:26:22 2004
***************
*** 987,993 ****
       ((eq frame-type 'pc)
        (msdos-mouse-p))
       ((eq system-type 'windows-nt)
!       (> w32-num-mouse-buttons 0))
       ((memq frame-type '(x mac))
        t)    ;; We assume X and Mac *always* have a pointing device
       (t
--- 987,994 ----
       ((eq frame-type 'pc)
        (msdos-mouse-p))
       ((eq system-type 'windows-nt)
!       (with-no-warnings
!        (> w32-num-mouse-buttons 0)))
       ((memq frame-type '(x mac))
        t)    ;; We assume X and Mac *always* have a pointing device
       (t
***************
*** 1040,1046 ****
       ((eq frame-type 'pc)
        ;; MS-DOG frames support selections when Emacs runs inside
        ;; the Windows' DOS Box.
!       (not (null dos-windows-version)))
       ((memq frame-type '(x w32 mac))
        t)    ;; FIXME?
       (t
--- 1041,1048 ----
       ((eq frame-type 'pc)
        ;; MS-DOG frames support selections when Emacs runs inside
        ;; the Windows' DOS Box.
!       (with-no-warnings
!        (not (null dos-windows-version))))
       ((memq frame-type '(x w32 mac))
        t)    ;; FIXME?
       (t




reply via email to

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