Changeset 4547 for trunk/configs
- Timestamp:
- 10/30/08 08:20:01 (2 months ago)
- Files:
-
- 1 modified
-
trunk/configs/yap.config (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configs/yap.config
r4524 r4547 12 12 % configuration file for YAP Prolog 5.1.3 and later versions 13 13 % 14 % last updated: October 2 0, 200814 % last updated: October 28, 2008 15 15 % 16 16 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% … … 474 474 475 475 '$lgt_read_single_char'(Char) :- 476 get_char(Char), 477 ( peek_code(10) -> % hack to workaround the lack of built-in 476 get_code(Code), char_code(Char, Code), 477 ( Code =:= 10 -> 478 true 479 ; peek_code(10) -> % hack to workaround the lack of built-in 478 480 get_code(_) % support for unbuffered character input 479 481 ; true
