Changeset 3589
- Timestamp:
- 01/15/05 16:49:39 (4 years ago)
- Files:
-
- branches/2.1/lisp/ChangeLog.Meadow (modified) (1 diff)
- branches/2.1/lisp/international/meadow.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/lisp/ChangeLog.Meadow
r3585 r3589 1 2005-01-15 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * international/meadow.el (x-display-visual-class): Call 4 x-display-planes() instead of x-display-pixel-planes(). Check if 5 `n' is `full' or not with `eq'. 6 1 7 2005-01-15 ARISAWA Akihiro <ari@mbf.sphere.ne.jp> 2 8 branches/2.1/lisp/international/meadow.el
r3386 r3589 561 561 (mw32-emulate-x-display-argument display))) 562 562 (defun x-display-visual-class (&optional display) 563 (let ((c (x-display-p ixel-planes display))563 (let ((c (x-display-planes display)) 564 564 (n (mw32-get-device-capability 565 565 'colors))) 566 (cond (( = nfull) 'true-color)566 (cond ((eq n 'full) 'true-color) 567 567 ((= n 1) 'static-gray) 568 568 ((> c (log c n)) 'pseudo-color)
