Changeset 4300

Show
Ignore:
Timestamp:
06/02/08 15:34:57 (6 months ago)
Author:
pmoura
Message:

Added a note on the requirement to patch the Logtalk compiler for using Quintus Prolog as the back-end compiler. Corrected two small typos in comments and documentation.

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/compiler/logtalk.pl

    r4297 r4300  
    62256225 
    62266226'$lgt_tr_clause'(Clause, _) :- 
    6227     \+ '$lgt_pp_entity'(_, _, _, _, _),         % all clause occuring before an opening entity directive 
     6227    \+ '$lgt_pp_entity'(_, _, _, _, _),         % all clauses occuring before an opening entity directive 
    62286228    !, 
    62296229    assertz('$lgt_pp_ppclause_'(Clause)).       % are copied unchanged to the generated Prolog file 
  • trunk/configs/NOTES.txt

    r4297 r4300  
    388388    Written and tested with help of a friend of mine, Paulo Urbano, for a  
    389389    previous version. Adopted (but not tested) for the current release by 
    390     using information available on-line in the internet. Don't forget to use  
    391     the unix(cd(Dir)) predicate to set the working directory before loading  
    392     the library or an example. Supports smart compilation of source files. 
     390    using information available on-line in the internet. You need to patch  
     391    the Logtalk compiler due to the different argument order of the built-in  
     392    predicates read_term/3 and open/4: for all calls of both predicates,  
     393    exchange the last two arguments. Don't forget to use the unix(cd(Dir))  
     394    predicate to set the working directory before loading the library or an  
     395    example. Supports smart compilation of source files. 
    393396 
    394397 
  • trunk/RELEASE_NOTES.txt

    r4297 r4300  
    3737 
    3838    Updated the syntax coloring support for the Vim text editor to properly  
    39     highlight quoted atoms and strings in the opening directives of parametric 
     39    highlight quoted atoms and strings in the opening directive of parametric 
    4040    objects. 
    4141