Changeset 3099
- Timestamp:
- 05/30/03 20:57:05 (6 years ago)
- Files:
-
- work/cvs2svn/lisp/ChangeLog.Meadow (modified) (1 diff)
- work/cvs2svn/lisp/international/meadow.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
work/cvs2svn/lisp/ChangeLog.Meadow
r3094 r3099 1 2003-05-30 MIYOSHI Masanori <miyoshi@boreas.dti.ne.jp> 2 3 * international/meadow.el (x-display-pixel-width): Set the 4 argument optional. 5 (x-display-pixel-height): Ditto. 6 (x-display-mm-height): Ditto. 7 (x-display-mm-width): Ditto. 8 (x-display-visual-class): Ditto. 9 (x-server-max-request-size): Ditto. 10 (x-server-vendor): Ditto. 11 (x-server-version): Ditto. 12 (x-display-screens): Ditto. 13 (x-display-backing-store): Ditto. 14 (x-display-save-under): Ditto. 15 (x-display-planes): Ditto. 16 Renamed from x-display-pixel-planes. 17 1 18 2003-05-28 MIYASHITA Hisashi <himi@meadowy.org> 2 19 work/cvs2svn/lisp/international/meadow.el
r3093 r3099 506 506 (error "%S must be STRING or FRAME" display)))) 507 507 508 (defun x-display-pixel-width ( display)508 (defun x-display-pixel-width (&optional display) 509 509 (mw32-get-device-capability 510 510 'width 511 511 (mw32-emulate-x-display-argument display))) 512 (defun x-display-pixel-height ( display)512 (defun x-display-pixel-height (&optional display) 513 513 (mw32-get-device-capability 514 514 'height 515 515 (mw32-emulate-x-display-argument display))) 516 (defun x-display-p ixel-planes (display)516 (defun x-display-planes (&optional display) 517 517 (mw32-get-device-capability 518 518 ;; Notice that the meaning of "PLANES" in X are different … … 520 520 'color-bits 521 521 (mw32-emulate-x-display-argument display))) 522 (defun x-display-mm-height ( display)522 (defun x-display-mm-height (&optional display) 523 523 (mw32-get-device-capability 524 524 'height-in-mm 525 525 (mw32-emulate-x-display-argument display))) 526 (defun x-display-mm-width ( display)526 (defun x-display-mm-width (&optional display) 527 527 (mw32-get-device-capability 528 528 'width-in-mm 529 529 (mw32-emulate-x-display-argument display))) 530 (defun x-display-visual-class ( display)530 (defun x-display-visual-class (&optional display) 531 531 (let ((c (x-display-pixel-planes display)) 532 532 (n (mw32-get-device-capability … … 538 538 539 539 ;; dummy vals. 540 (defun x-server-max-request-size ( display) 65535)541 (defun x-server-vendor ( display) "MW32")542 (defun x-server-version ( display) (list 11 0 1))540 (defun x-server-max-request-size (&optional display) 65535) 541 (defun x-server-vendor (&optional display) "MW32") 542 (defun x-server-version (&optional display) (list 11 0 1)) 543 543 ;; We should use multi-monitor APIs in the future. 544 (defun x-display-screens ( display) 1)545 (defun x-display-backing-store ( display) 'not-useful)546 (defun x-display-save-under ( display) nil)544 (defun x-display-screens (&optional display) 1) 545 (defun x-display-backing-store (&optional display) 'not-useful) 546 (defun x-display-save-under (&optional display) nil) 547 547 548 548 ;;;
