Changeset 4535 for trunk/configs

Show
Ignore:
Timestamp:
10/24/08 04:59:09 (3 months ago)
Author:
pmoura
Message:

Removed Ciao support for reporting term line count due to a buggy implementation of the read_term/3 option lines/2 in the latest stable release of this Prolog compiler (1.10 #8).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configs/ciao_aux.config

    r4524 r4535  
    540540% '$lgt_read_term'(@stream, -term, +list, -integer) 
    541541 
    542 '$lgt_read_term'(Stream, Term, Options, Line) :- 
    543     read_term(Stream, Term, [lines(Line, _)| Options]). 
     542'$lgt_read_term'(Stream, Term, Options, -1) :- 
     543%   read_term(Stream, Term, [lines(Line, _)| Options]). % buggy in 1.10 #8 
     544    read_term(Stream, Term, Options). 
    544545 
    545546