Changeset 4115
- Timestamp:
- 07/19/06 00:02:31 (2 years ago)
- Files:
-
- trunk/lisp/ChangeLog.Meadow (modified) (1 diff)
- trunk/lisp/international/mw32misc.el (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/ChangeLog.Meadow
r4114 r4115 1 2006-07-19 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * international/mw32misc.el (mw32-convert-fr-spec-to-vec): Accept 4 'undecided for any properties of <SPEC-PLIST>. 5 1 6 2006-07-18 MIYOSHI Masanori <miyoshi@meadowy.org> 2 7 3 8 * international/mw32misc.el (mw32-convert-font-request-alist): 4 Accept 'any for <SPEC-PLIST> .9 Accept 'any for <SPEC-PLIST>. 5 10 6 11 2006-07-16 MIYOSHI Masanori <miyoshi@meadowy.org> trunk/lisp/international/mw32misc.el
r4114 r4115 367 367 ((char-table-p val) val) 368 368 ((eq val 'any) val) 369 ((eq val 'unspecified) val) 369 370 (t (error "Invalid value for :char-spec :%S" 370 371 val)))) … … 372 373 ((eq key :width) 373 374 (if (not (or (numberp val) 374 (memq val '(any normal375 (memq val '(any unspecified normal 375 376 condensed semi-expanded 376 377 expanded extra-condensed … … 382 383 ((eq key :height) 383 384 (if (not (or (numberp val) 384 (eq val 'any))) 385 (eq val 'any) 386 (eq val 'unspecified))) 385 387 (error "Invalid value for :height :%S" 386 388 val)) … … 388 390 ((eq key :family) 389 391 (if (not (or (stringp val) 390 (eq val 'any))) 392 (eq val 'any) 393 (eq val 'unspecified))) 391 394 (error "Invalid value for :family :%S" 392 395 val)) … … 394 397 ((eq key :weight) 395 398 (if (not (memq val 396 '(any normal399 '(any unspecified normal 397 400 bold semi-bold 398 401 extra-bold light … … 403 406 (aset vec 4 val)) 404 407 ((eq key :slant) 405 (if (not (memq val '(any normal408 (if (not (memq val '(any unspecified normal 406 409 italic reverse-italic 407 410 oblique reverse-oblique)))
