Changeset 4264 for trunk/configs

Show
Ignore:
Timestamp:
05/15/08 10:00:22 (8 months ago)
Author:
pmoura
Message:

Updated the YAP and SWI-Prolog config files with support for the proprietary if/1, else/0, elif/1, and endif/0 directives.

Location:
trunk/configs
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/configs/swi.config

    r4233 r4264  
    490490 
    491491% '$lgt_rewrite_and_copy_pl_directive'(@callable, -callable) 
     492 
     493'$lgt_rewrite_and_copy_pl_directive'(if(Goal), if(Goal)). 
     494'$lgt_rewrite_and_copy_pl_directive'(elif(Goal), elif(Goal)). 
     495'$lgt_rewrite_and_copy_pl_directive'(else, else). 
     496'$lgt_rewrite_and_copy_pl_directive'(endif, endif). 
    492497 
    493498'$lgt_rewrite_and_copy_pl_directive'(license(License), license(License)). 
  • trunk/configs/yap.config

    r4263 r4264  
    528528% '$lgt_rewrite_and_copy_pl_directive'(@callable, -callable) 
    529529 
     530'$lgt_rewrite_and_copy_pl_directive'(if(Goal), if(Goal)). 
     531'$lgt_rewrite_and_copy_pl_directive'(elif(Goal), elif(Goal)). 
     532'$lgt_rewrite_and_copy_pl_directive'(else, else). 
     533'$lgt_rewrite_and_copy_pl_directive'(endif, endif). 
     534 
    530535'$lgt_rewrite_and_copy_pl_directive'(table(PIs), table(CPIs)) :- 
    531536    '$lgt_rewrite_and_copy_pl_directive_pis'(PIs, CPIs).