diff options
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index c8085762d2a..8342d8e6aac 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1132,9 +1132,9 @@ frame's display)." "Return the number of screens associated with DISPLAY." (let ((frame-type (framep-on-display display))) (cond - ((memq frame-type '(x w32)) + ((memq frame-type '(x w32 mac)) (x-display-screens display)) - (t ;; FIXME: is this correct for the Mac? + (t 1)))) (defun display-pixel-height (&optional display) @@ -1342,7 +1342,7 @@ cursor display. On a text-only terminal, this is not implemented." :init-value (not (or noninteractive no-blinking-cursor (eq system-type 'ms-dos) - (not (memq initial-window-system '(x w32))))) + (not (memq initial-window-system '(x w32 mac))))) :initialize 'custom-initialize-safe-default :group 'cursor :global t |