- Timestamp:
- 06/23/08 11:32:13 (4 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
configs/NOTES.txt (modified) (2 diffs)
-
integration/logtalk_comp_swi.pl (modified) (2 diffs)
-
RELEASE_NOTES.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configs/NOTES.txt
r4300 r4322 442 442 SWI-Prolog load_files/2 and consult/1 predicates. 443 443 444 If you want SWI-Prolog to automatically load Logtalk at startup, then add445 the following lines to your pl.ini (on Windows):444 If you want SWI-Prolog to automatically load Logtalk at startup, then 445 add the following lines to your pl.ini (on Windows): 446 446 447 447 :- ['drive:\\path to logtalk user folder\\configs\\swi.config']. … … 453 453 :- ['$LOGTALKHOME/compiler/logtalk.pl']. 454 454 455 See the SWI-Prolog documentation for further information on the .plrc and 456 pl.ini user initialization files. 455 See the SWI-Prolog documentation for further information on the .plrc 456 and pl.ini user initialization files. 457 458 The config file sets the "iso" SWI-Prolog flag to "true". This setting 459 may improve compatibility of Logtalk code across different back-end 460 Prolog compilers buy may also cause compatibility problems with some 461 SWI-Prolog libraries. Comment out the corresponding set_prolog_flag/2 462 call if necessary. 457 463 458 464 If you intend to use Logtalk and XPCE at the same time, you may load the -
trunk/integration/logtalk_comp_swi.pl
r4297 r4322 10 10 11 11 12 :- set_prolog_flag(iso, true).13 12 :- set_prolog_flag(generate_debug_info, false). 14 13 :- system_module. … … 16 15 :- op(600, fy, ::). 17 16 :- op(600, fy, ^^). 18 :- op(200, fy,+).19 :- op(200, fy,?).20 :- op(200, fy,@).21 :- op(200, fy,-).17 :- op(200, fy, +). 18 :- op(200, fy, ?). 19 :- op(200, fy, @). 20 :- op(200, fy, -). 22 21 :- include('../compiler/logtalk.pl'). -
trunk/RELEASE_NOTES.txt
r4318 r4322 9 9 RELEASE NOTES 10 10 ============= 11 12 13 2.32.1 - July ??, 2008 14 15 Updated the SWI-Prolog config file notes about possible compatibility 16 issues with the default setting of the proprietary "iso" Prolog flag 17 to "true". 11 18 12 19
