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


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/frame.el
Date: Sun, 22 Aug 2004 12:59:13 -0400

Index: emacs/lisp/frame.el
diff -c emacs/lisp/frame.el:1.212 emacs/lisp/frame.el:1.213
*** emacs/lisp/frame.el:1.212   Sat Jul 24 21:45:28 2004
--- emacs/lisp/frame.el Sun Aug 22 16:54:33 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]