Changeset 4436
- Timestamp:
- 08/19/08 08:30:19 (5 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
manuals/userman/programming.html (modified) (2 diffs)
-
RELEASE_NOTES.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/manuals/userman/programming.html
r4213 r4436 37 37 </p> 38 38 <p> 39 Logtalk source files may contain arbitrary Prolog directives and clauses interleaved with Logtalk entity definitions. These directives and clauses will not be compiled by Logtalk and will be copied unchanged to the corresponding Prolog output file. This feature is included to help the integration of Logtalk with Prolog extensions such as, for example, constraint programming extensions.39 Logtalk source files may contain arbitrary Prolog directives and clauses interleaved with Logtalk entity definitions. These directives and clauses are be copied unchanged to the corresponding Prolog output file. This feature is included to help the integration of Logtalk with Prolog extensions such as, for example, constraint programming extensions. The following Prolog directives are processed when read (thus affecting the compilation of the source code that follows): <code>ensure_loaded/1</code>, <code>op/3</code>, and <code>set_prolog_flag/2</code>. The <code>initialization/1</code> directive may be used for defining an initialization goal to be executed when loading a source file. 40 40 </p> 41 41 <p> … … 163 163 <div class="copyright"> 164 164 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 165 <span>Last updated on: A pril 21, 2008</span>165 <span>Last updated on: August 16, 2008</span> 166 166 </div> 167 167 <div class="navbottom"> -
trunk/RELEASE_NOTES.txt
r4434 r4436 39 39 40 40 Corrected a bug in the implementation of the built-in database predicates 41 retract/1 and retractall/1 when adding a cach yentry for a local dynamic41 retract/1 and retractall/1 when adding a cache entry for a local dynamic 42 42 predicate with no scope declaration. 43 43
