Mercurial > emacs
diff lisp/frame.el @ 27774:097c2dd9367a
(display-mouse-p): Use variable xterm-mouse-mode and check for t-mouse
too.
author | Dave Love <fx@gnu.org> |
---|---|
date | Sun, 20 Feb 2000 12:34:49 +0000 |
parents | 33c77685f4a2 |
children | 1ef6cae16192 |
line wrap: on
line diff
--- a/lisp/frame.el Sun Feb 20 12:22:14 2000 +0000 +++ b/lisp/frame.el Sun Feb 20 12:34:49 2000 +0000 @@ -1,6 +1,6 @@ ;;; frame.el --- multi-frame management independent of window systems. -;; Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc. +;; Copyright (C) 1993, 1994, 1996, 1997, 2000 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: internal @@ -803,7 +803,11 @@ ((memq frame-type '(x mac)) t) ;; We assume X and Mac *always* have a pointing device (t - (featurep 'xt-mouse))))) + (or (and (featurep 'xt-mouse) + xterm-mouse-mode) + ;; t-mouse is distributed with the GPM package. It doesn't have + ;; a toggle. + (featurep 't-mouse)))))) (defun display-popup-menus-p (&optional display) "Return non-nil if popup menus are supported on DISPLAY.