Mercurial > hg > xemacs-beta
comparison lisp/frame.el @ 2509:6a9afa282c8e
[xemacs-hg @ 2005-01-26 09:53:28 by ben]
fix warnings
frame.el: Fix warning.
cl.el: Conditionalize on coerce-number as Jerry says it's OK.
fakemail.c: Add args to fix warning.
author | ben |
---|---|
date | Wed, 26 Jan 2005 09:53:32 +0000 |
parents | ecf1ebac70d8 |
children | 491f8cf78a9c |
comparison
equal
deleted
inserted
replaced
2508:14f65fa1e69e | 2509:6a9afa282c8e |
---|---|
1184 DISPLAY can be a frame, a device, a console, or nil (meaning the | 1184 DISPLAY can be a frame, a device, a console, or nil (meaning the |
1185 selected frame)." | 1185 selected frame)." |
1186 (case (framep-on-display display) | 1186 (case (framep-on-display display) |
1187 ;; We assume X, NeXTstep, and GTK *always* have a pointing device | 1187 ;; We assume X, NeXTstep, and GTK *always* have a pointing device |
1188 ((x ns gtk) t) | 1188 ((x ns gtk) t) |
1189 (mswindows (> mswindows-num-mouse-buttons 0)) | 1189 (mswindows (> (declare-boundp mswindows-num-mouse-buttons) 0)) |
1190 (tty | 1190 (tty |
1191 (and-fboundp 'gpm-is-supported-p | 1191 (and-fboundp 'gpm-is-supported-p |
1192 (gpm-is-supported-p (display-device display)))) | 1192 (gpm-is-supported-p (display-device display)))) |
1193 (t nil))) | 1193 (t nil))) |
1194 | 1194 |