File:  [local] / rpl / ChangeLog
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Wed Feb 10 08:09:29 2010 UTC (14 years, 2 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Modification du traitement des séquences d'échappement dans les chaînes
de caractères.

    1: * Mon Feb 08 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.10 (RPL/2)
    2: - escape codes are now converted in formateur(), not in recherche_type() to
    3: avoid a minor bug in EDIT and VISIT intrinsics;
    4: - minor bug is fixed in formateur_reel();
    5: - file-5.03 is patched to avoid bus error on system that require memory
    6: alignment;
    7: - minor bug is fixed in evaluation(). Error returned by RPL/C external functions
    8: were able to be avoided by evaluation routine.
    9: * Tue Jan 26 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.9 (RPL/2)
   10: - New benchmark on same hardware than old one :
   11: cauchy:[~/rpl/bench] > ./bench.rpl 
   12: +++RPL/2 (R) version 4.0.9 (samedi 23/01/2010, 18:06:08 CET)
   13: +++Copyright (C) 1989 à 2009, 2010 BERTRAND Joël
   14: Number of scalar operations per second and per core : 2383016
   15: 
   16: - PULPRFL does not abort on BUG() but on execution error;
   17: - TRIM, REPL and TOKENIZE are added;
   18: - sockets options are now set before bind();
   19: - shutdown() is added to all connected sockets;
   20: - minor bug is fixed in SUB intrinsic (segfault when SUB is called with
   21: list argument and inexistant elements).
   22: * Fri Jan 08 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.8 (RPL/2)
   23: - minor bug is fixed in DAEMON intrinsic. When a program was daemonized, all
   24: signals sent to main process were not caught because DAEMON did not replace
   25: old pid by new one;
   26: - major bug is fixed in IFERR/THEN/ELSE/END. Only occurs in expression
   27: evaluation when an error is reported from a subroutine in another subroutine.
   28: For example, error was not caught in following program when it is executed with
   29: -p option :
   30:     TEST << iferr TEST2 then end >>
   31:     TEST2 << 0 inv >>
   32: - major bug is fixed in variable management. Some local variables were
   33: seen as global ones;
   34: - major bug is fixed in rplcore. Rplcore entered in dead lock when
   35: script file contains a multibyte character;
   36: - IN intrinsic is added;
   37: - major bug is fixed in SAME intrinsic : << 1 >> DUP SAME and 'E' DUP SAME
   38: returned false ;
   39: - major bug is fixed in RETURN intrinsic. It only occurs in compiled
   40: programs;
   41: - major bug is fixed in NEG intrinsic. NEG did not make a copy of its arguments;
   42: - regression is fixed in compilation(). "\\" was analysed as '"' '\' '\"' and
   43: strings were never closed;
   44: - some bugs have been fixed in file management;
   45: - RPL/2 can now be run on EBCDIC systems (OS/390);
   46: - major bug is fixed in -A command line option (NULL character is missing);
   47: - minor bug is fixed in rpliconv and RECODE intrinsic. All transliterations are
   48: made by blocks (1024 bytes). When an incomplete multibyte sequence is
   49: encountered at end of block, subroutine aborts with an execution error;
   50: - major bug is fixed in OPEN (TCP/IPv4 sockets).
   51: * Mon Nov 30 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.7 (RPL/2)
   52: - DISP now locks stdout;
   53: - rpliconv is added to replace standard iconv provided by operating system.
   54: Indeed, conversion between different encodages requires transliteration
   55: that is not offered by some iconv utility;
   56: - CURRENC and RECODE intrinsics have been written to allow strings conversions;
   57: - bug is fixed in SYSEVAL. When execvp() returns (for example when arg[0] can
   58: not be found), SYSEVAL enters in a dead lock;
   59: - fprintf is replaced by some functions that allow transliterations between
   60: locales;
   61: - '"' can now be used in strings ("\"");
   62: - iconv is called with -c in preprocessor stage. It is done to write
   63: CGI scripts with RPL/2 because locale charset is set to ANSI_X3.4-1968;
   64: - double free is fixed in liberation() (type SQL, only occurs when locale is
   65: set);
   66: - LOCALIZATION, UCASE and LCASE are added;
   67: - major bug is fixed in EXIT intrinsic that was able to return a false
   68: execution error in compiled scripts (only in DO/UNTIL and REPEAT/WHILE loops);
   69: - major bug is fixed in wrapper_instruction_intrinseque(). When intrinsic() was
   70: used in onLoading from shared library, USE was pushed on stack as algebraic
   71: expression;
   72: - libiconv is upgraded to 1.13.1;
   73: - gnuplot is upgraded to 4.2.6;
   74: - gsl is upgraded to 1.13.
   75: * Mon Sep 28 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.6 (RPL/2)
   76: - pipe() is overwritten by a macro to avoid a system error. Communication
   77: between process are done with pipes and these pipes are managed by a
   78: specific asynchrone thread. If a script try to create more threads than
   79: management thread can destroy, you can quickly achieve maximum number of
   80: opened files and pipe() shall return a system error. This macro tries to create
   81: pipes. If pipe() function returns an error, macro waits and retries. If
   82: number of retries is greater than a hardcoded value, macro returns an error;
   83: - major bug (deadlock) is fixed in process and thread management. I hope
   84: this bug shall be the last one;
   85: - major bug is fixed in DET intrinsic (determinant was computed without LU
   86: diagonalization);
   87: - SWAPCNTXT is added;
   88: - minor bug is fixed in Makefile.am (licences rule).
   89: * Wed Sep 09 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.5 (RPL/2)
   90: - some bugfixes are added in process management;
   91: - all process management is rewritten to avoid usage of defunct process
   92: or thread number;
   93: - new major bug is fixed in interruptions.c. Sometimes, when retrait_thread()
   94: was called before a pending interruption5 (SIGFSTOP), signal handler uses
   95: a freed semaphore and corrupts heap;
   96: - CLRERR is added to erase previous errors;
   97: - ERRN and ERRM return exception message and number;
   98: - major bug is fixed in interruptions.c. All signal are now bufferised
   99: when semaphore_liste_threads is null to avoid deadlock. This bug only
  100: occured when STOP was sent to a dying thread or process (when this thread or
  101: process was running retrait_thread());
  102: - matrix rank is computed before matrix inversion;
  103: - file locks are added to stdin and stdout. stderr is not locked because
  104: all messages written by signal handlers are sent to stderr;
  105: - configure.in script is modified to test gcc version and avoid a bug in
  106: gcc older than 4.4;
  107: - some benchmarks have been done :
  108: 
  109: cauchy:[~/rpl/bench] > ./bench.rpl 
  110: +++RPL/2 (R) version 4.0.5 (mardi 04/08/2009, 18:23:07 CEST)
  111: +++Copyright (C) 1989 à 2008, 2009 BERTRAND Joël
  112: Number of scalar operations per second and per core : 2109867
  113: 
  114: Workstation :
  115: cauchy:[~/rpl/build] > uname -a
  116: Linux cauchy 2.6.30.1 #1 SMP PREEMPT Thu Jul 16 09:49:46 2009 x86_64 GNU/Linux
  117: cauchy:[~/rpl/build] > cat /proc/cpuinfo | grep "model name"
  118: model name      : Intel(R) Core(TM)2 Duo CPU     T7500  @ 2.20GHz
  119: model name      : Intel(R) Core(TM)2 Duo CPU     T7500  @ 2.20GHz
  120: cauchy:[~/rpl/build] > gfortran -v 2>&1 | grep "gcc version"
  121: gcc version 4.3.3 (Debian 4.3.3-14) 
  122: cauchy:[~/rpl/build] >
  123: 
  124: - SVL and SVD are added;
  125: - COND and RANK are added;
  126: - DIAG-> and ->DIAG are added;
  127: - major bug is fixed in DET intrinsic. DET is rewritten to avoid usage of
  128: eigenvalues. In a first time, matrix rank is estimated to force determinant
  129: to zero if matrix is rank deficient. If not, a PLU decomposition is done to
  130: compute determinant;
  131: - QR matrix decomposition is added;
  132: - LQ matrix decomposition is added;
  133: - Fortran90 files are rewritten to use Fortran2003 bind(C) statement and
  134: Fortran preprocessor;
  135: - default compilation options are now -Wall -Wextra -Wno-pointer-sign
  136: -Wno-unused-parameter;
  137: - all mathematical exceptions are now signaled by exceptions instead of
  138: execution error;
  139: - minor bug is fixed in both CSTOP and RSTOP intrinsics. Without this fix, you
  140: can call twice CSTOP without RSTOP;
  141: - named semaphore support is added (CRSMPHR, CLRSMPHR, SMHRDECR, SMPHRINCR,
  142: SMPHRTRYDECR, SMPHGETV).
  143: * Fri Jul 24 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.4 (RPL/2)
  144: - semaphore is added in interruptions.c to avoid segmentation fault when STOP
  145: signal is sent to a dying thread. Some mutexes are replaced by semaphores too
  146: to be used in signal handlers;
  147: - major bug (memory corruption) is fixed in COL- intrinsic;
  148: - minor bug is fixed in ALARM and WAIT. These temporisations stopped when a
  149: software interrupt was caught;
  150: - rplpp man page is added.
  151: * Fri Jul 17 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.3 (RPL/2)
  152: - minor bug is fixed in WRITE (SIGPIPE is ignored to catch error without
  153: process termination);
  154: - major bug is fixed in FUSE intrinsic (FUSE kills itself and do not kill
  155: its parent);
  156: - a mutex to protect fork() syscall is added;
  157: - all mutexes are unlocked after fork() in DETACH;
  158: - minor bug (double free corruption) is fixed in CLOSE intrinsic;
  159: - major bug is fixed in lecture_pipe when a nullified list is sent into a pipe;
  160: - WORKDIR intrinsic is added;
  161: - Level 0 variables are shared between all threads without copy. Indeed,
  162: there variables are not modifiable and only contains static user definitions;
  163: - branches prediction is added in THEN, ELSE, ELSEIF and REPEAT intrinsics;
  164: - FORTRAN 77 file management subroutines are rewritten in pure C due to
  165: FORTRAN string management. C/FORTRAN 77 string interfaces are broken
  166: in some cases (gcc/gfortran/libc/OS and arch conjonction);
  167: - a memory leak is fixed in REMOVE intrinsic;
  168: - major bug is fixed in MySQL driver (segfault due to a bug in mysql_init()
  169: and due to a libmysqlclient that is not thread safe).
  170: * Wen Jun 10 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.2 (RPL/2)
  171: - new enhanced allocator is written for regular variables, static variables and
  172: shared variables;
  173: - major bug is fixed in src/interruptions.c. This file did not compile
  174: when SQL support was not enabled;
  175: - new allocator is written for system stack and last stack;
  176: - --enable-profile flag is added to configure script. When this flag is
  177: enabled, rpl is built with -pg option;
  178: - SIGFSTP (from Solaris'TERMIO) is caught. On Solaris 10, all process receive
  179: SIGFSTP (with a nullified siginfo structure) instead of SIGHUP when control
  180: process is killed;
  181: - abs() macro is modified to avoid multiple evaluation. Your C compiler has to
  182: know typeof() intrinsic function. This function is not standard but exists
  183: under Sun Studio, gcc, and maybe some others compilers. If this function does
  184: not exist on your compiler, you can change its definition by old one in
  185: src/rpl.h;
  186: - fflush() can now be interrupted by signal (SunOS);
  187: - fflush(NULL) is called before all fork() occurrences;
  188: - generators returned by RDGN help are sorted;
  189: - Lapack is now 3.2.1.
  190: * Mon May 18 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.1 (RPL/2)
  191: - bug is fixed in src/generateurs_aleatoires.awk. It only occurs when RPL/2 is
  192: built under Solaris.
  193: * Wed May 5 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0 (RPL/2)
  194: - major bug is fixed in matrix inversion (due to an inversion between pointer
  195: and object copies);
  196: - RDGN is added to use some different random number generators. See HELP RDGN;
  197: - code analysis is rewritten from scratch to be more efficient and mode
  198: expandable;
  199: - minor bug (segfault in interruption1) is fixed. It only occurs on Solaris
  200: that can returns a nullified siginfo pointer when SIGINT is sent by kernel
  201: keyboard driver;
  202: - gnuplot is now 4.2.5;
  203: - readline is upgraded to 6.0;
  204: - file is upgraded to 5.0;
  205: - Signal handlers are rewritten to send signal to main thread when a signal
  206: is send from an external process;
  207: - configure.in is modified to avoid a libc bug on Solaris (free() can enter in
  208: deadlock when a huge amount of threads is launched);
  209: - minor bug is fixed in boath START and FOR intrinsic. Only occurs when
  210: arguments types are unsupported;
  211: - PLOT instrinsic is added (usage: LINE and MARK do not draw anything. All
  212: data are buffered. PLOT is used to draw these objects.);
  213: - MARK instrinsic is added;
  214: - new allocator mechanism is written;
  215: - some regression bugs have been fixed, some memory leaks too.
  216: * Wed Jan 28 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.9 (RPL/2)
  217: - an estimation of future stack elements is added to avoid some costly memory
  218: allocations. This function has a positive impact on execution speed;
  219: - PSHPRFL and PULPRFL have been added;
  220: - RPL/2 can be built on Solaris 64 bits with some minor scripts alterations.
  221: See README for more explanations;
  222: - MTXSTATUS intrinsic is added;
  223: - YIELD intrinsic is added;
  224: - ERRM is fixed. In some cases, ERRM uses some uninitialized pointers;
  225: - SHARED and PRIVATE intrinsics have been added. A shared variable is a
  226: static variable that is shared by multiple threads;
  227: - '->' intrinsic is improved. All object copies have been avoided;
  228: - -n flag is added to catch HUP signal. stderr and stdout are redirected
  229: to a file, stdin is redirected to /dev/null when control process is killed;
  230: - a mutex is added to each object (before this modification,
  231: RPL/2 used a global mutex and performances in multithreaded programs were very
  232: poor.);
  233: - ALARM is now interruptible;
  234: - both PUT and PUTI intrinsics are improved and do not copy list and table
  235: when nombre_occurrences == 1;
  236: - COPY intrinsic is added. Argument (that can be pointed from some objects)
  237: is replaced by a new copy of itself;
  238: - memory leak is fixed in sequenceur(). It only occurs when an execution error
  239: is caught from interactive mode;
  240: - mutexes have been added (CRMTX, CLRMTX, MTXLOCK, MTXUNLOCK);
  241: - new mutex type is added;
  242: - profile statistics have been added. See -P option;
  243: - major bug is fixed in analyse_syntaxique();
  244: - new SQL type is added;
  245: - due to a trouble in libpq in multithreaded context, SQL intrinsic is split
  246: in three new intrinsics : SQLCONNECT, SQLQUERY and SQLDISCONNECT. Please note
  247: that all programs that worked with old SQL intrinsic can now work with
  248: SQLQUERY. With all new programs, you can open a real connection to databases;
  249: - NRPROC is added. This new intrinsic is used to catch error from child
  250: process. Without NRPROC, any errors returned by child process cause
  251: main process to abort;
  252: - SPAWN is added. This new intrinsic is used to launch a new thread (DETACH
  253: starts a new process). There are no mutexes in RPL/2 because all spawned process
  254: use specific context. Nevertheless, shared variables and associated mutexes
  255: should be added;
  256: - -D flag and DAEMONIZE intrinsic have been added;
  257: - REPEAT, THEN, ELSE and ELSEIF intrinsics are rewritten to be more efficient;
  258: - autoconf script is modified to handle mysql and postgresql on non standard
  259: directories;
  260: - -t flag is fixed ('\0' is missing...);
  261: - SWI and SEND pipes have been modified to be more robust on systems where
  262: getpid() can return (pid_t) -1 or (pid_t) -2 value;
  263: - major bug is fixed in REPEAT intrinsic. Only occurs in compiled mode;
  264: - all but jump variables are removed from source. All signal handlers now
  265: use encapsulated variables and signals are caught by thread;
  266: - major bug is discovered in ->LCD. Both LCD-> and ->LCD have been fixed;
  267: - NEWPLANE is added;
  268: - LINE is added;
  269: - DGTIZ is added;
  270: - major bug is fixed in ROW-> intrinsic (comes from new garbage collector);
  271: - lot of multiprocessing related bugs have been fixed; That was a huge work but
  272: it's done. Data integrity is now respected during transmission (POKE, SEND and
  273: SWI);
  274: - ITRACE is added. This intrinsic is only used to debug internal structures and
  275: should not be used in regular programs;
  276: - SWISTATUS is written;
  277: - WFACK is written;
  278: - rplcore files are now able to handle compilation errors;
  279: - rplcore files are now able to handle evaluation and interruption errors;
  280: - SORT can now be used on table;
  281: - tables can now be sent by POKE and SEND instrinsics;
  282: - software interrupts do not inherit IFERR controls;
  283: - LOGGER intrinsic is added;
  284: - All WF* intrinsics but WFSOCK are made interruptible;
  285: - ISWI intrinsic is added. Current interrupt is marked as 'interruptible';
  286: - tables can be used with SAME intrinsic;
  287: - minor bug is fixed in recherche_variable(). Only occurs when an error
  288: is caught;
  289: - external functions can now be used in expressions;
  290: - major bug (deadlock) is fixed in WFPOKE intrinsic;
  291: - some mistakes have been fixed under Solaris;
  292: - major bug is fixed in RETURN intrinsic (only occurs when evaluation and
  293: program modes are mixed);
  294: - major bug (dead lock) is fixed in gestion_processus.c;
  295: - major bug is fixed in WFPROC;
  296: - rplc, rpllink and mkrplso manpages are added;
  297: - rpltags tool and manpage are added;
  298: - WFLOCK is fixed;
  299: - RPL/2 kills now all process on error;
  300: - major bug (segfault) is fixed in REMOVE intrinsic.
  301: * Mon Jul 28 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.8 (RPL/2)
  302: - configure script is modified to check mysql and postgresql libraries
  303: on all standard locations. Tested and works on FreeBSD, Solaris and Linux
  304: Debian;
  305: - Tables are allowed in eval ( <[ 1 ]> 't' sto 't(1)' eval );
  306: - ->TABLE and TABLE-> intrinsics are added;
  307: - major bug is fixed in recherche_type(). Only occurs when rpl executes
  308: precompiled scripts;
  309: - new type is added: table with <[ ]> delimiters:
  310: RPL/2> { 2 3 2 } crtab
  311: 
  312: 1: <[ <[ <[ { }
  313:             { } ]>
  314:          <[ { }
  315:             { } ]>
  316:          <[ { }
  317:             { } ]> ]>
  318:       <[ <[ { }
  319:             { } ]>
  320:          <[ { }
  321:             { } ]>
  322:          <[ { }
  323:             { } ]> ]> ]>
  324: 
  325: CRTAB new intrinsic creates a regular table. By default, all elements are
  326: nullified lists;
  327: - rplexternals.h is modified and improved;
  328: - GNU File (renamed as rplfile) cannot be built due to a bug in libtoolize and
  329: configure script.
  330: * Mon Jun 23 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.7 (RPL/2)
  331: - libiconv is added (iconv library exists on some systems but implemantations
  332: differ and RPL/2 can crash);
  333: - --enable-encoding is added to configure script to force system encoding.
  334: Enconding detection does not work on OpenBSD;
  335: - internal file utility is shipped and used to avoid xBSD file mistakes;
  336: - GSL 1.11 and gnuplot 4.2.3 are now used;
  337: - src/Makefile.am is modified to built RPL/2 ons Solaris 10/sparc;
  338: - all but user's messages are written on stderr;
  339: - DUPCNTXT and DROPCNTXT are added to handle more efficiently contexts;
  340: - SCHED is added. Whit SCHED, you can limit CPU ressource by RPL/2 process;
  341: - FUSE, RFUSE and CLRFUSE have been added;
  342: - new bug discovered on NetBSD. sigpending() does not return any signal, thus
  343: DETACH intrinsic enters in a definitive dead lock. I have no idea to write a
  344: workaround for this major bug. Nevertheless, all others capabilities seems to
  345: work fine;
  346: - '->' is modified to return error when program tries to initialiaze two
  347: variables with the same name like
  348: 1 0 -> I I << ... >>;
  349: - CSTOP and RSTOP have been added (catch and release stop signal);
  350: - CONTINUE is added to continue a pending process halted by SUSPEND;
  351: - SUSPEND is modified to be stopped by SIGFSTOP;
  352: - src/Makefile.am is modified to avoid //TRANSLIT flag on systems that don't
  353: support GNU iconv;
  354: - configure.in script is modified to avoid bugs when --with-postgresql and
  355: --with-mysql are specified;
  356: - TRNC is written;
  357: - minor bug is fixed in both IFT and IFTE. Returned expression has to be
  358: evaluated.
  359: * Fri Apr 11 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.6 (RPL/2)
  360: - SIGPIPE signal handler is modified to avoid abort process when POKE tries
  361: to write data into a pipe without reader;
  362: - major bug is fixed in RETURN intrinsic. When RETURN was called from a detached
  363: process without -p modifier, it can send an ABORT signal instead a KILL one;
  364: - PEEK, POKE and WFPOKE new intrinsics are written;
  365: - major bug due to new garbage collector is fixed in rplexternals.h (double free
  366: corruption);
  367: - CLRCNTXT is added (clear contexts);
  368: - VERIFY intrinsic is written;
  369: - PSHCNTXT and PULCNTXT are added (PSHCNTXT pushes context on an
  370: internal contexts stack, PULCNTXT pulls contexts from this internal stack).
  371: Main usages of these intrinsics are in conjonction with IFERR or with
  372: software interrupts;
  373: - HEAD, TAIL and REVLIST intrinsics are added;
  374: - function pointers have been added to function description;
  375: - new analyse() routine is written. All instrinsics are now in a N-tree;
  376: - software interrupts have been fixed;
  377: - multitasking capabilities have been modified to be usable on NetBSD. All real
  378: time signals have been removed;
  379: - major bugs are fixed in multitasking (mutex trouble _and_ segmentation fault);
  380: - minor bug is fixed in STR->. STR-> could return a system error instead an
  381: execution one;
  382: - first bug due to new garbage collector is fixed in '+' ({ } { } +) and in
  383: '-' intrinsics;
  384: - PostgreSQL support is written.
  385: * Mon Mar 17 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.5 (RPL/2)
  386: - locale can now be specified in SQL intrinsic :
  387: { "mysql:iso-8859-1" "server" "database" ... };
  388: - major bug is fixed un analyse_algebrique(). When DISP printed an algebraic
  389: object, 'DISP()' was pushed in stack;
  390: - same major bug is fixed in <, >, <=, >= and <>;
  391: - major bug fixed in formateur() (segfault when a symbol is used without "'");
  392: - major bug is fixed in DUPN intrinsic;
  393: - when software interrupt (SWI) is evaluated, SWI pushs process id on stack
  394: before starting interrupt evaluation;
  395: - -f parameter is added when iconv is called;
  396: - as old file program was bugged, a new option is added to configure script.
  397: When configure is called with --disable-encoding-autodetection, make does not
  398: try to detect source encoding. Please, do not use if RPL/2 can be built
  399: without this option !
  400: - new garbage collector (and more efficient) is written;
  401: - configure script is modified to be usable on NetBSD 4.0, but as NetBSD does
  402: not support real time signals, RPL/2 cannot use multitasking functions;
  403: - error returned by preprocessor are now catched by RPL/2;
  404: - -p option is added. With this option, all scripts are compiled before
  405: RPL/2 starts evaluation. HALT cannot be used with -p, but all programs run
  406: 40% faster;
  407: - read and write operations in pipe() are rewritten to be sure that such
  408: operations are atomic;
  409: - minor bug is fixed in LOGSCALE. With {} LOGSCALE, all scales have to be
  410: linear;
  411: - major bug is fixed in gestion_processus.c (some pipes were not closed).
  412: * Sat Jan 5 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.4 (RPL/2)
  413: - major bugs have been fixed in software interrupt management.
  414: * Fri Jan 4 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.3 (RPL/2)
  415: - JDATE and RDATE are written;
  416: - minor bug (segfault) is fixed in EXSUB. It only occurs when EXSUB is executed
  417: with wrong arguments;
  418: - KILL now kills current process, ABORT kills program;
  419: - software interrupts support is added (SWI, WFSWI, SWILOCK, SWIUNLOCK,
  420: SWIQUEUE, STOSWI, RCLSWI, CLRSWI);
  421: - major bug is fixed in SQL intrinsic (argument types);
  422: - system stack is now written in core file;
  423: - ALARM is added;
  424: - nanosleep() now replaces sleep() and usleep() system calls;
  425: - _GNU_SOURCE is added to rpl.h.
  426: * Fri Nov 30 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.2 (RPL/2)
  427: - License is changed. Now RPL/2 license is CeCILL (GPL compliant);
  428: - EXGET adn EXSUB are added;
  429: - minor bug is fixed in recherche_type(). { << } has to return an error.
  430: '<<' and '>>' are both functions _and_ delimiters. Thus { IF } is
  431: acceptable, but { >> } isn't;
  432: - GSL is now 1.10, gnuplot 4.2.2 and units 1.87;
  433: - OBGET and OBSUB intrinsics are added;
  434: - src/Makefile.am minor bug is fixed (make clean deleted src/rpl.xpm);
  435: - WAIT intrinsic is modified to use sleep() and usleep() if delay is
  436: greater than one second. On some systems, usleep argument must be lower
  437: than 1E6;
  438: - numeric and character formats are now tested;
  439: - -A flag is added. -A is used to give command line parameters to main
  440: routine. Example:
  441: rayleigh:[~/rpl-4.0.0.prerelease.2/examples] > ./test3.rpl -A "<< X sin >>"
  442: +++RPL/2 version 4.0.0.prerelease.2 (vendredi 05.10.2007, 19:03:01 CEST)
  443: +++Copyright (C) 1989 à 2006, 2007 BERTRAND Joël
  444: << 'X' SIN >>
  445: rayleigh:[~/rpl-4.0.0.prerelease.2/examples] > cat test3.rpl 
  446: #!/usr/local/bin/rpl -s
  447: 
  448: TEST
  449: <<
  450:     disp
  451: >>
  452: - minor bug (segfault) is fixed in encart() routine (splash screen). Child
  453: process ended with segfault due to a mistake in Motif widget cleaning
  454: process;
  455: - major bug is fixed in DETACH intrinsic. Child process were locked when
  456: they were started with a locked mutex that comes from its father;
  457: - ctrl+C can now kill all child process;
  458: - WFPROC and WFDATA are rewritten;
  459: - RETURN is fixed to be usable in detached process;
  460: - HALT is not exported to child process;
  461: - FLOW filetype is added;
  462: - Makefiles are modified to support gcc-4.2 and gfortran-4.2;
  463: - socket support (Unix, IPv4, IPv6, STREAM, DATAGRAM, ROBUST DATAGRAM,
  464: SEQUENTIAL DATAGRAM, RAW) is added. Warning: IPv6 sockets have not been tested
  465: because I don't have any IPv6 compliant server, but they should work.
  466: * Mon Sep 10 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.1 (RPL/2)
  467: - library management is rewritten from scratch. EXTERNAL is removed and
  468: EXTERNALS is added. Now, all exported symbols are sent to RPL/2 when
  469: library is loaded;
  470: - OPEN arguments are changed;
  471: - EXTERNAL now checks availability of external functions;
  472: - number of arguments is verified in analyse_algebrique().
  473: 'SIN(A+X,2)' is now refused because SIN requires only one argument;
  474: - all but lapack symbols are exported from librpl with librpl, f77 or f90
  475: prefix;
  476: - minor bug is fixed in formateur() (AND and OR requires parenthesis);
  477: - rplexternals.h header file is added; Now, it is very easy to write
  478: external functions;
  479: - memory leak is fixed in analyse_algebrique();
  480: - minor bug (symbole flag) is fixed in sequenceur.c and types.c;
  481: - temp file was not removed when an error occurs in EDIT or VISIT;
  482: - 'name' should not returned a function ("FCT" object);
  483: - -rdynamic is added to src/Makefile.am.
  484: * Mon Jul 23 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.0 (RPL/2)
  485: - Major bug is fixed in interface_tex.c. When there are errors in latex
  486: file, latex command waits for input on its command line;
  487: - major bug is fixed in tex.h (multiline strings);
  488: - examples subdir is added;
  489: - major bug is fixed in recherche_variable(). When an expression is evaluated
  490: in a function, all variables set in this function must be visible in
  491: expression. Thus, << I -> 3 << << I >> eval >> must return 3, not 'I';
  492: - LAST stack is saved in rplcore;
  493: - major bug is fixed in ->HMS. It only occurs when argument type is not
  494: integer or real;
  495: - major bug (segfault) is fixed when rpl is called with empty file;
  496: - libtool support is removed. Two new scripts (rplc and rpllink) are provided
  497: to use librpl.a;
  498: - automake scripts are rewritten to avoid a misconfiguration of librpl.a
  499: when -j make option is used;
  500: - trace output now contains PID;
  501: - rpl-core is renamed in rpl-code-$PID;
  502: - rplc and rpllink scripts can now sompile and build C and Fortran
  503: executables with librpl.a;
  504: - New classification, only a working simplification() routine is
  505: required to announce 4.0.0.final;
  506: - librpl entry point is modified to return results as strings array;
  507: - -S option is added;
  508: - due to a major bug in libtool, libtool is removed from autoconf/automake
  509: scripts;
  510: - VERSION is modified to return a list.
  511: * Tue Jul 17 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8x (RPL/2)
  512: - major regression bug is fixed in PRINT due to mistake in latex pathes;
  513: - gnuplot does not have to be built if --disable-embedded-gnuplot is set;
  514: - new prompt ("RPL/2> ") is used for interactive mode;
  515: - ARCCOS, ARCSIN, ARCTG, ARGCH, ARGSH, ARGTH, CH, SH, TH and TG intrinsics
  516: are removed, because all of these intrinsics have two forms. ARCCOS is
  517: the same than ACOS, TAN=TG, COSH=CH. Please adapt your scripts;
  518: - gnuplot compilation does not have to be done when disable-gnuplot is set;
  519: - major bug is fixed in RECV that avoid usage of multitasking.
  520: * Tue Jul 10 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8w (RPL/2)
  521: - False error (system error) was reported by recherche_type();
  522: - recherche_type() returns syntax error if a list is included in
  523: an algebraic expression;
  524: - --enable-debug is modified. Now, return can be defined to print
  525: on stdout its position in source code (line and function);
  526: - minor bug is fixed in recherche_type(). Don't forget that space
  527: are not significant in algebraic expression:
  528: '12 3+ 12    X' is the same expression than '123+12X';
  529: - src/Makefile.am is modified to avoid double compilation process;
  530: - --enable-final-run-path is added to configure.in script;
  531: - STATIC is modified to declare static variables in expression. Warning: static
  532: variables used in expressions are deleted when evaluation of this expression
  533: ends;
  534: - MEM does not report static variable sizes;
  535: - minor bug is fixed in HELP intrinsic. When the last instruction was not
  536: known, HELP function was pushed in operational stack. HELP did not work
  537: when there were space on input line.
  538: * Mon May 28 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8v (RPL/2)
  539: - DATE is modified: reduced julian days is replaced by fraction part
  540: of julian days. Old field used by julian days is now integer part of julian
  541: days;
  542: - CONVERT intrinsic is rewritten to accept absolute path in popen;
  543: - automake scripts are modified to delete src/lock file if build process aborts;
  544: - rplargs.h directly includes rpl.h;
  545: - absolute pathes are added to all external program files (rplplot, rplpp...);
  546: - intrinsic functions are case sensitive. External functions are case
  547: unsensitive. A minor bug is fixed in recherche_type() because all external
  548: functions were case unsensitive when they were evaluated from RPN expressions;
  549: - HELP function is rewritten to be more friendly (a la OpenVMS);
  550: - external wrapper (rplplot) is written to force usage of gnuplot provided
  551: by RPL/2 if it is built during build process. If this build does not exist,
  552: it tries to launch regular gnuplot;
  553: - gnuplot is added to source tree to avoid some trouble between preinstalled
  554: gnuplot and release used by RPL/2. This addition to source tree is
  555: required by some incompatibility between gnuplot releases;
  556: - Lapack is upgraded to 3.1.1 release;
  557: - GSL is upgraded to 1.9 revision;
  558: - RPL_TMP_PATH env variable is added to specify the path of tempfiles. If
  559: it is not set, /tmp is used. If /tmp is not writable, /var/tmp is used. If
  560: not, ./ but RPL/2 can hang with a fatal error if this last location is
  561: not writable;
  562: - major regression is fixed in SYSEVAL intrinsic due to introduction of
  563: error scrutation.
  564: * Sat Mar 24 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8u (RPL/2)
  565: - SYSEVAL is modified to return an error when execvp() syscall cannot
  566: execute its arguments;
  567: - -hard-float sparc option is remove from mkrplso;
  568: - major bug is fixed in SQL intrinsic that hangs when query did not return
  569: any values (for exemple INSERT);
  570: - escape sequences can be used in SYSEVAL argument like "echo \"string\""
  571: SYSEVAL;
  572: - graphic and PostScript outputs are now cleared in child process;
  573: - locales are now used by preprocessor;
  574: - major bug is fixed in impression_tex(). PRINT did not work due to a bug
  575: introduced by multitasking code;
  576: - SORT can now use name as its argument.
  577: * Sun Jan 21 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8t (RPL/2)
  578: - Variable management has been rewritten and some tests have been done. Now,
  579: it is possible to execute:
  580: 
  581: #!/usr/local/bin/rpl -sc
  582: 
  583: TEST
  584: <<
  585:     1 1000 start VAR_S VAR_S2 next
  586: >>
  587: 
  588: VAR_S
  589: <<
  590:     static 3 -> C << C disp 'C' incr if C 10 > then 'C' volatile end >>
  591: >>
  592: 
  593: VAR_S2
  594: <<
  595:     static 3 -> C << C disp 'C' decr >>
  596: >>
  597: 
  598: - configure.in script is added in lapack subtree;
  599: - VARS is modified to display variables status (LOCKED/UNLOCKED and
  600: STATIC/VOLATILE/PARAMETER/VARIABLE);
  601: - STATIC and VOLATILE intrinsics are added to specify static variables. A
  602: static variable can be transformed into volatile with VOLATILE.
  603: With STATIC, next variables created by '->' are static;
  604: - PROTECT and UNPROTECT are added to protect variables against write
  605: or purge actions. New PARAMETER and VARIABLE intrinsics are modified
  606: versions of PROTECT and UNPROTECT that only deal with global variables
  607: (see RCL/SAVE);
  608: - variable management routines have been rewritten. The new ones are
  609: uncompatible with the old ones. Before these changes, a local variable
  610: was exported to a child subroutine, but cannot be modified into this
  611: child subroutine. Now, a local variable is accessible only in its subroutine;
  612: - SAVE intrinsic is added to manipulate global variables;
  613: - SUSPEND is written. RPL/2 waits for a SIGCONT signal;
  614: - SORT, COL->, ->COL, ROW->, ROW-> intrinsics are written;
  615: - Makefile.am are improved;
  616: - minor bug is fixed in ->list and ->array. Without any argument, these
  617: intrinsic only send a SIGSEGV;
  618: - ncurses is updated to release 5.6;
  619: - lapack is updated to 3.1.0.
  620: * Sun Dec 31 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8s (RPL/2)
  621: - default CFLAGS/FFLAGS/FCFLAGS are modified due to a bug in gcc-sparc64
  622: that avoid a complete build;
  623: - CTRL+Z and CTRL+C signals only perform actions on main process;
  624: - major bugs are fixed in multitasking capabilities (some mistakes with
  625: mutexes and several terminated child process cannot be closed by the
  626: operating system);
  627: - minor bug fixed in SCLS (mistake between main and auxiliary axes);
  628: - variables are now written in rpl-core file;
  629: - NEG is modified to return 0 instead -0 when its argument is real or complex
  630: number;
  631: - ROW+ intrinsic can now be used on empty matrix without dimension error:
  632: [[]] 1 [[ 1 2 ]] row+;
  633: - major bug is fixed in SUB intrinsic. It only occurs with lists when
  634: it tries to returns invalid elements like { } 1 2 sub;
  635: - major bug is fixed in ROW- intrinsic;
  636: - major bug is fixed in ROW+ intrinsic.
  637: * Sat Dec 02 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8r (RPL/2)
  638: - creation_nom_fichier() is rewritten to force all process to create
  639: different file names;
  640: - RANLUX is removed to use GSL library and avoid a bug in gfortran-4.1;
  641: - readline-5.2 and units-1.86 are now used;
  642: - SEQUENCE statement is added in fonctions_speciales.f90 to fix a build
  643: failure.
  644: * Mon Oct 23 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8q (RPL/2)
  645: - wfproc is rewritten to avoid a dead lock;
  646: - major mistake is fixed in both sommation_vecteur_reel() and
  647: sommation_vecteur_complexe();
  648: - multitasking is rewritten from scratch to fix some mistakes with
  649: multithreading. DETACH, SEND and RECV now use four real time signals to
  650: perform a better task synchronization;
  651: - some bugs introduced by locales specific compilations are fixed;
  652: - major memory corruption is fixed in DEPND;
  653: - HELP intrinsic is modified to print a classified output.
  654: * Mon Aug 12 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8p (RPL/2)
  655: - major memory leak is fixed in DETACH intrinsic. Files were closed by
  656: both childs and parent;
  657: - bug that avoids usage of Motif is fixed in configure.in;
  658: - makefile's are modified to build RPL/2 with other locale than ISO-8859;
  659: - db is removed from source tree due to some compilation troubles (db's
  660: autoconf script is broken);
  661: - sdb is removed from source tree due to some memory leaks and some troubles
  662: with its configure script. New SQL routines are written, but only MYSQL
  663: subsystem is available. Now, SQL can be used without memory leak;
  664: - major bug is fixed in evaluation() subroutine. Value of error flag
  665: was not returned in some cases;
  666: - FACT intrinsic does not accept real arguments anymore due to the new intrinsic
  667: GAMMA;
  668: - GAMMA intrinsic is added (complex function) ;
  669: - autoconf/automake scripts are modified to compile F90 sources;
  670: - src/distributions.f is replaced by src/distributions.f90. All Numerical
  671: Recipes references are avoided to use GSL;
  672: - GSL is upgraded to 1.8 release;
  673: - -lz is added in src/Makefile.am to fix a mistake in sparc32.
  674: * Mon Apr 10 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8o (RPL/2)
  675: - fft.f is removed. Now FFT intrinsic uses dft subroutine;
  676: - Sparc64 optimizations are modified. Now gcc-4.0 can be used to build RPL/2 on
  677: Sparc64. Same modifications are done on sparc32;
  678: - major bug are fixed in both PLOTTER and HISTOGRAM intrinsics
  679: (interface with GNUplot).
  680: - major bugs are fixed in USE/REMOVE intrinsics (system stack corruption);
  681: - corruption of last stack is fixed in mclrin (only occurs when an error is
  682: caught);
  683: - major bug (in a malloc condition) is fixed in derivation().
  684: * Tue Jan 07 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8n (RPL/2)
  685: - configure script and makefiles are modified to be usable with automake
  686: 1.9.6 (GNU), libtool 1.5.20 (GNU) and autoconf 2.59 (GNU).
  687: - gestion_fichiers() prototype is modified to be built by gfortran. Now,
  688: gfortran is the default compiler for FORTRAN code included in RPL/2;
  689: - libdb is added to perform indexed file access;
  690: - SQL interfaces are added (SQL intrinsic). Only mysql is supported;
  691: - minor bug is discovered and fixed in matrix multiplication (precision);
  692: - rpl.spec.in and debian directory are deleted due to some mistakes in the
  693: scripts required to build packages.
  694: * Tue Nov 15 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8m (RPL/2)
  695: - major bug is fixed in IFERR/THEN/(ELSE)/END structure. It occured when an
  696: error is caught before a regular IF/THEN/(ELSE)/END structure in
  697: IFERR/THEN/(ELSE)/END structure;
  698: - chmod 755 debian/rules is done by makefile;
  699: - major bug is fixed in recherche_instruction_suivante():
  700: +++"123 " str->
  701: +++Erreur : Argument invalide pour la commande << "123 " str-> >>
  702: Before this fix, it was impossible to use a command line that ends with spaces.
  703: * Sat Oct 29 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8l (RPL/2)
  704: - SELECT/CASE/DEFAULT/END is modified. Now, it is impossible to write:
  705: SELECT
  706:     <case>
  707:     CASE <test> THEN <expr> END
  708:     ...
  709:     DEFAULT
  710:     DEFAULT <- two DEFAULT's
  711: END
  712: 
  713: or
  714: 
  715: SELECT
  716:     <case>
  717:     CASE <test> THEN <expr> END
  718:     ...
  719:     DEFAULT
  720:     ...
  721:     CASE <test> THEN <expr> END <- CASE statement after DEFAULT
  722: END
  723: - major bug is fixed (in (unsigned char) getc()). It only occurs when RPL/2 is
  724: built with gcc-4.0.
  725: - configure.in is modified to be usable with gcc-4.0.
  726: * Mon Oct 3 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8k (RPL/2)
  727: - segmentation fault occurs in both PROMPT and INPUT when readline returns
  728: NULL (ctrl^D). This trouble is now fixed;
  729: - major bug is fixed in DATE intrinsic (julian days and reduced julian days);
  730: - stderr of rplpp is now caught;
  731: - SYSEVAL is modified to use stdin, stdout and stderr:
  732: ESSAI
  733: <<
  734:     // Only stdout and stderr
  735:     "ls" dup disp syseval
  736:     clmf
  737:     // Now with stdin ("zer\naze\n")
  738:     { "cat" "zer" "aze" } dup disp syseval
  739:     clmf
  740: >>
  741: - GSL is upgraded to 1.7.
  742: * Thu Sep 29 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8j (RPL/2)
  743: - SYSEVAL is modified. It now returns stdout and stderr in a list;
  744: - minor memory leak is fixed in recherche_instruction_suivante() subroutine.
  745: * Thu Aug 4 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8i (RPL/2)
  746: - internal file descriptors are modified to be usable with DUMP intrinsic;
  747: - VARS intrinsic is modified and now prints value of variables.
  748: * Thu Jul 21 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8h (RPL/2)
  749: - units is upgraded to 1.85 release;
  750: - -d flag is added in command line. Don't use this flag if you don't know
  751: what you do! It is only used to debug internal memory allocations;
  752: - internal pointers (ADR objects) are printed as 64 bits pointers to be usable
  753: on 64 bits wide architectures.
  754: * Sat apr 16 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8g (RPL/2)
  755: - DUMP is rewritten to be portable. It works, but without shared libraries,
  756: printer file, graphic files and last error. Support for this kind of objects
  757: shall be available as soon as possible. Warning: DUMP cannot be used in
  758: multiprocessing;
  759: - configure.in script is modified to return an error when g77 is not found;
  760: - a new internal type is used to handle shared libraries;
  761: - a major bug is discovered and fixed in recherche_type(). It only occurs
  762: in interactive mode ([[ 1 ]] returns a syntax error);
  763: - a major bug is found in simplification_arbre(). Subroutine is disabled.
  764: * Thu mar 17 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8f (RPL/2)
  765: - option -r is added to restart a process from a dump file;
  766: - DUMP intrinsic is added. It performs synchronous checkpointing;
  767: - GSL is upgraded to release 1.6.
  768: * Wed dec 22 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8e (RPL/2)
  769: - Result types of PERM and COMB instrinsic are fixed;
  770: - RPL/2 now uses a new preprocessor due to a new 'feature' in gcc/cpp;
  771: - RPL/2 can now use all processors on multiprocessor workstations with
  772: DETACH, SEND, RECV and WFPROC new intrinsics. The first test program was:
  773: 
  774: #!/usr/local/bin/rpl -cs
  775: 
  776: MULTIPROCESSUS
  777: <<
  778:     'FONCTION' detach
  779:     do "B" disp until false end
  780: >>
  781: 
  782: FONCTION
  783: <<
  784:     do "A" disp until false end
  785: >>
  786: 
  787: * Sun dec 12 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8d (RPL/2)
  788: - major bug is discovered and fixed in analyse_notation_algebrique :
  789: +++'A-B-C' returned
  790: 1: 'A-(B-C)' instead of 1: 'A-B-C'. It is now fixed;
  791: - recherche_type() routine is improved to cast in name 1E5E-6 or 1.23.4.5.
  792: * Fri dec 7 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8c (RPL/2)
  793: - major bug is fixed in formateur_fichier(). Now, it is possible to use
  794: lists in a file record. Note that only sequential and formatted files
  795: are supported;
  796: - major bug is fixed in BACKSPACE intrinsic. It only occurs on large
  797: records.
  798: * Fri nov 26 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8b (RPL/2)
  799: - minor bug is fixed in IP intrinsic: when argument was real without
  800: fraction part, IP returned a real, not an integer;
  801: - minor bug is fixed in recherche_type(): it is now possible
  802: to enter +++<NB3 + return. RPL/2 returns a syntax error, not a acces
  803: violation;
  804: - MCLRIN (MacLaurin series) intrinsic is added;
  805: - TAYLR (Taylor series) instrinsic is added;
  806: - very minor bug is fixed in evaluation(). Sometimes, when evaluation()
  807: is stopped by ^C, EXIT intrinsic did not work due to a mistake in
  808: the internal system stack;
  809: - minor bug is fixed in encart.c. System error messages returned by
  810: this subroutine were only available in french;
  811: - internal RPL/2 system stack corruption is fixed. This bug only affects
  812: interactive and debug modes when evaluation routine returns an error;
  813: - symbolic derivation subroutine is now able to derivate functions;
  814: - minor bug is fixed in instruction_multiplication: now 'X' 1. * returns
  815: 'X' and not 'X*1'.
  816: * Thu nov 18 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8a (RPL/2)
  817: - ctags in src/Makefile.am is fixed;
  818: - first derivation subroutines are written;
  819: - major bug is fixed in analyse_algebrique() :
  820: before this patch, '3-5+4' was understand as '3-(5+4)' !
  821: - instruction_division() is improved and returns 0 when it evaluates
  822: '0/X';
  823: - instruction_moins() is improved and returns 'NEG(X)' when it evaluates
  824: '0-X'.
  825: * Fri nov 5 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8 (RPL/2)
  826: - interface_gnuplot is modified and do not use any deprecated gnuplot
  827: commands. Warning, you must use gnuplot 4.0;
  828: - graphic output is improved. Now, it is possible to use two separated
  829: scales on the same 2D graph (with "main" and "auxiliary" option of SCALE
  830: intrinsic). For example:
  831: 
  832: #!/usr/local/bin/rpl -c
  833: 
  834: TEST
  835: <<
  836:     'X' indep
  837:     { X Y } autoscale
  838:     'SIN(X)' steq draw
  839:     { "auxiliary" } axes
  840:     { X Y } autoscale
  841:     'COS(X)+2' steq draw
  842:     { { "ticsonly" "automatic" } { "ticsonly" "automatic" } } axes
  843:     drax persist
  844: >>
  845: 
  846: - a major bug is fixed in encart.c;
  847: - ncurses is patched.
  848: * Mon nov 1 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7o (RPL/2)
  849: - configure script is updated;
  850: - splash screen is added;
  851: - minor bug is fixed in SYSEVAL (only occurs with SIGINT signal).
  852: * Sun oct 24 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7n (RPL/2)
  853: - stack overflows are caught.
  854: * Fri oct 8 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7m (RPL/2)
  855: - minor bug is fixed in both << and >> intrinsics. It only occurs when
  856: "<<" HELP or ">>" help is called;
  857: - DFT and IDFT are added;
  858: - minor bug is fixed in FFT (explicit length has to be positive);
  859: - MOD can be used with vectors and matrices arguments;
  860: - major bugs are fixed in FFT and IFFT (trouble in the computation of the
  861: default length of FFT). Only occur with matrices.
  862: * Sat aug 14 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7l (RPL/2)
  863: - readline is upgraded to 5.0;
  864: - gsl is upgraded to 1.5;
  865: - corrections in HELP functions.
  866: * Fri aug 7 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7k (RPL/2)
  867: - HELP is added;
  868: - statistic matrix SIGMA is renamed as SDAT;
  869: - rpl.h is modified to workaround a bug in Cygwin environment
  870: (SA_NOMASK is not defined in include files);
  871: - overflows are tested in HMS+ and HMS-;
  872: - CEIL, FLOOR and IP are modified to return a correct result with huge
  873: arguments that cannot be stored as integers;
  874: - fix a minor bug in ->LIST. The LAST stack now contains all arguments
  875: of this intrinsic;
  876: - flag 32 is used with DISP;
  877: - major bug is fixed in ->Q intrinsic (type of argument and memory leak).
  878: * Fri may 21 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7j (RPL/2)
  879: - major bug is fixed in analyse(). CHR intrinsic cannot be called because
  880: I have erased a 'break' in a case statement;
  881: - major bug is fixed in AXES intrinsic. It only occurs when AXES is used
  882: with "main" or "auxiliary" option;
  883: - major bug is fixed in recherche_types(). With this patch, 'sin(X)' is
  884: now well analysed as 'SIN(X)'.
  885: * Thu apr 22 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7i (RPL/2)
  886: - major bug is discovered and fixed in formateur(). It only occurs when
  887: an algebraic expression is displayed with '='. In some cases, parenthesis
  888: are missing. Same fix in formateur_fichier();
  889: - a minor bug is fixed in evaluation.c that does not return any error when
  890: it tries to execute 'a=z' e = ;
  891: - new code is written in each intrinsic functions to return their required
  892: arguments.
  893: * Sun apr 14 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7h (RPL/2)
  894: - a minor bug is fixed in recherche_type: 1.E90 is now a real;
  895: - minor bug is fixed in formateur_reel(). It only occurs in STD mode:
  896: 1E90 was printed as 1.00000000000000E90;
  897: - HELP is added;
  898: - formateur() is fixed to properly print matrices and lists;
  899: - a lot of warnings due to deprecated syntax are fixed;
  900: - DFT is modified but not usable;
  901: - cosmetic bug is fixed in formateur_tex.c;
  902: - minor bug is fixed in FFT intrinsic (segfault when FFT is called without
  903: any argument).
  904: * Sun Jan 25 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7g (RPL/2)
  905: - included ncurses is updated to 5.4;
  906: - included units is updated to 1.83c;
  907: - major bug is fixed in recherche_type() function. With this bug, RPL/2
  908: prints 'A/INV(Z+E)+R' when you enter A Z E + inv R + /;
  909: - DFT intrinsic is added. It returns the discrete Fourier transform of an
  910: array. When the length of each line is 2**n, the result is the same as
  911: the result of FFT;
  912: - minor bug is discovered and fixed in PUT and PUTI intrinsics when these
  913: instructions verify arguments types. It does not affect the result when
  914: all arguments are correct.
  915: * Sun Oct 19 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7f (RPL/2)
  916: - major bug is fixed in evaluation of both EXIT and CYCLE intrinsics. Now,
  917: EXIT can be used (as ABORT and KILL) to quit interactive mode of RPL/2;
  918: - units is updated to 1.83a release;
  919: - formateur_fichier.c is modified to handle unformatted files. This task
  920: is not completed.
  921: * Mon Aug 25 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7e (RPL/2)
  922: - CLUSR is written. It purges all global variables;
  923: - BESSEL intrinsic is fixed to allow the use of expressions as arguments;
  924: - a major bug was introduced with rpl-4.00pre7d in formateur.c. It appears
  925: when an algebraic expression is displayed or printed but does not affect
  926: computations. It is now fixed;
  927: - gsl is upgraded to 1.4.
  928: * Mon Aug 18 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7d (RPL/2)
  929: - algebraic expressions are now more readable when they are displayed
  930: (less parenthesis);
  931: - rplpp is modified to workaround a mistake in 'which' function (seems to appear
  932: on Debian distribution, but since cpp is in the default path, RPL/2 works
  933: fine...);
  934: - NOT is not correctly formatted in formateur.c:
  935: Z NOT -> 'NOT Z' but 'A+Z' NOT -> 'NOT A+Z' and 'NOT Z+A' -> 'NOTZ+A'
  936: with a NOTZ function !
  937: * Sun Aug 10 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7c (RPL/2)
  938: - CYCLE is fixed. Now, it is possible to use CYCLE in an expression even
  939: if the main loop is in a program;
  940: - RPL/2 is tested with efence and valgrind;
  941: - configure.in script is modified;
  942: - units.c is modified to be built by gcc-3.3. I only have removed a #if 0/#endif
  943: structure. I don't know why this code was compiled by gcc-3.3... Maybe
  944: another gcc bug...
  945: * Fri Jul 25 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7b (RPL/2)
  946: - EXIT is fixed. Now, it is possible to use EXIT in an expression when the
  947: main loop is in a program;
  948: - RPL/2 can take its arguments (and command) on the standard input. Try
  949: echo "1 2 3 + *" | rpl -i | grep "^1:" | cut -d ':' -f2
  950: - a minor bug in vim syntax file is fixed (CYCLE and EXIT intrinsics);
  951: - a minor bug is discovered in analyse_algebrique(). Now, expression
  952: such as 'A+Z AND 2' or '(A+Z) AND 2' are correctly parsed.
  953: * Mon Jun 16 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7a (RPL/2)
  954: - Major bug is fixed in evaluation subroutine. This one only occurs
  955: when an error in a user definition called by an expression is caught
  956: by an IFERR structure;
  957: - EXIT intrinsic can now be used in DO/UNTIL/END or WHILE/REPEAT/END loops;
  958: - sequenceur() is now uninterruptible with STOP signal in recherche_type()
  959: subroutine;
  960: - major bug is fixed in types.c (# xxxxxb) and recherche_instruction_suivante();
  961: - GSL exception (underflow) is now caught;
  962: - tools/Makefile.am is fixed;
  963: - Debian buildpackage script is fixed.
  964: * Tue Jun 10 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7 (RPL/2)
  965: All memory leaks issued from the pre6 beta releases seem to be fixed.
  966: Build process is improved and vim syntax file and manual pages are updated.
  967: * Mon Jun 9 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6l (RPL/2)
  968: - RCI and RCIJ intrinsic are added;
  969: - BESSEL intrinsic is added. Syntax:
  970: 3: type ("J", "K", "I", "Y", "j", "k", "i", "y")
  971: 2: order (integer or real)
  972: 1: x;
  973: - ->Q intrinsic is added;
  974: - major bug is fixed in C->R intrinsic;
  975: - ROW+ and ROW- are added and tested;
  976: - COL+ and COL- are added and tested. Syntax:
  977: 3: matrix
  978: 2: integer (number of column to be inserted)
  979: 1: column matrix to be inserted;
  980: - major bug was discovered in interface_gnuplot(). It only occurs when
  981: the subroutine reduces the graphical depth. It is now fixed;
  982: - Some mistakes are been fixed in vim syntax file;
  983: - SX2, SY2 and SXY are added;
  984: - SX and SY statistical intrinsics are added;
  985: - DEBIAN control file is fixed;
  986: - PAPER intrinsic is added. Supported paper formats are now : a4, a5, b5,
  987: letter, legal, executive;
  988: - PPAR is modified to include current graphic type.
  989: * Sun Jun 1 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6k (RPL/2)
  990: - SLICESCALE intrinsic is added. Its syntax is
  991: { "automatic" nb_of_levels }
  992: { "discrete" l1 l2 l3 ... }
  993: { "incremental" start incr }
  994: { "incremental" start incr end }
  995: { "automatic" } (default);
  996: - a minor bug (in last stack) is fixed in AXES intrinsic
  997: - flag 52 is used to automatically update graphics;
  998: - man pages are updated;
  999: - evaluation() is modified to perform evaluation of expressions that contain
 1000: '=';
 1001: - a minor bug is fixed in AXES intrinsic;
 1002: - a minor bug is fixed in DRAW intrinsic (2D and 3D graphics were able to
 1003: appear on the same figure). The same mistake is fixed in DRWS intrinsic;
 1004: - LAST is disabled in evaluation subroutine (EVAL and ->NUM intrinsics).
 1005: * Sun May 18 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6j (RPL/2)
 1006: - SLICE intrinsic is added. It is used to draw 3D graphics as contour lines;
 1007: - PLOTTER is added to draw statistical clouds with lines;
 1008: - C and H source files now include vim parameters;
 1009: - vim syntax file is modified to include new intrinsics;
 1010: - static archive is modified to include all required libraries needed by
 1011: RPL/2.
 1012: * Sun May 4 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6i (RPL/2)
 1013: - '=' is added and tested;
 1014: - XCOL and YCOL are added;
 1015: - a minor bug in analyse_syntaxique() is fixed;
 1016: - THEN is modified to return an error when ELSE appears in a CASE/THEN/END
 1017: structure. ELSE is modified to return an error when ELSE appears in
 1018: an ELSE/END structure;
 1019: - a major bug is fixed in CYCLE;
 1020: - EXIT is written. When EXIT appears in a defined loop (FOR or START), the
 1021: sequencer continues after the end of this loop;
 1022: - SCLS is added;
 1023: - DRWS now uses COLS to draw 2D graphics;
 1024: - PPAR and SPAR are written. SPAR returns a list that contains the
 1025: size of the statistical matrix (or "UNAVALAIBLE" if there is any
 1026: statistical variable, or "DISABLED" if its type is not one of the type of
 1027: a statistical matrix.) and XCOL and YCOL parameters. Warning: [[]] SIZE
 1028: returns { 1 0 } and it is not a bug, because a null matrix contains _one_
 1029: null line ! Thus, [[]] STOS SPAR returns { { 1 0 } 1 2 };
 1030: - EXTERNAL intrinsic is added. Warning: by default, extern functions are
 1031: disabled. Arguments of EXTERNAL are case sensitive because the external
 1032: interface is written in C. { ext_sinus } EXTERNAL does not replace the list
 1033: of known external functions but add the new list to the last. { "all" }
 1034: EXTERNAL allows all external functions and { "none" } EXTERNAL removes all
 1035: external names of the known functions;
 1036: - mkrplso.in is modified.
 1037: * Sun Apr 20 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6h (RPL/2)
 1038: - vim syntax file is upgraded;
 1039: - a minor mistake is fixed in recherche_instruction_suivante();
 1040: - some minor memory leaks are fixed in recherche_type() function. They only
 1041: occurs when a syntax error is detected;
 1042: - #error and #warning preprocessor macros are added;
 1043: - INCR and DECR are written (with integer or variable argument);
 1044: - CSWP and RSWP are added and tested;
 1045: - a minor bug is fixed in analyse.c;
 1046: - DEBIAN/control is added to build debian package;
 1047: - SCALE is fixed and improved ("automatic" keyword);
 1048: - PUTC and PUTR new intrinsics are added.
 1049: * Sun Apr 13 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6g (RPL/2)
 1050: - a very minor bug is fixed in VISIT intrinsic. It only occurs when
 1051: VISIT does not find a name in level 1;
 1052: - configure.in script is modified to add a new test (--enable-debug
 1053: flag). Configured with this fleg, RPL/2 will be built with electric-fences;
 1054: - GETR (get row[s]) and GETC (get column[s]) are added. These new instructions
 1055: extract a part of a matrix. Syntax: [[ 1 2 3 ][ 2 3 4 ]] { 1 } GETR or
 1056: 'MATRIX' { 2 2 3 } GETR;
 1057: - LOGSCALE intrinsic is improved and now, it can be used as
 1058: { "main" "auxiliary" X Y } LOGSCALE;
 1059: - SCALE intrinsic is used to fix the limits of a graphic. Its syntax is the
 1060: same than AXES:
 1061: { { 60 "ticsonly" 2 } { "automatic" "ticsonly" 10 } } axes
 1062: { "auxiliary" { 60 "ticsonly" "default" } { "automatic" } } axes
 1063: { { -10 10 } "automatic" } SCALE.
 1064: Warning, it is not possible to ask a logarithmic scale with this intrinsic
 1065: because it changes only the dimension of the screen. To have a logarithmic
 1066: scale, you must use LOGSCALE intrinsic:
 1067: { X } LOGSCALE gives a semi-log screen, { "auxiliary" X Y } gives a log-log
 1068: screen on second scale;
 1069: - { X X } autoscale and { Y Y } logscale are now invalid;
 1070: - *D is added (depth multiplication, for 3D graphics);
 1071: - a new intrinsic (*S) is added. It changes the scale of a graphic (X, Y
 1072: and Z axes). The result of *S is the same than DUP DUP *H *W *D;
 1073: - a major bug is fixed in GETI instrinsic when it is used with a name
 1074: that contains a matrix or a vector (bad upper bounds conditions in
 1075: incrementation);
 1076: - DISP intrinsic now uses the 33-th flag. When it is not set
 1077: (default), a final carriage return is sent to the terminal;
 1078: - AXES intrinsic only takes a list that can contains the keywork
 1079: "main" or "auxiliary". Before this modification, this keyword was in
 1080: the first stack level;
 1081: - vim syntax file is upgraded;
 1082: - in appel_gnuplot(), stdin is closed when gnuplot is called with -raise
 1083: option;
 1084: - LAST is now disabled in the main loop of INT intrinsic;
 1085: - expm1 and lnp1 are rewritten to use expm1 and log1p from math.h.
 1086: * Sun Apr 6 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6f (RPL/2)
 1087: - a major bug is fixed in evaluation() subroutine. It occurs with DRAW
 1088: intrinsic when the equation cannot be evaluated (for example 'SIN(X)/X'
 1089: in 0);
 1090: - LAST is disabled in the main loop of DRAW intrinsic;
 1091: - a major bug is fixed in DRAW intrinsic. When an error occurs in the
 1092: evaluation of an equation, the system stack is returned corrupted to the
 1093: sequencer;
 1094: - the same minor bug is fixed in FOR and START. It only occurs when the limits
 1095: of a loop are not integer or real.
 1096: * Sun Mar 31 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6e (RPL/2)
 1097: - the compilation stage aborts with an error message when two definitions
 1098: have the same name. To improve the compilation() subroutine, I have to
 1099: add some tests in gestion_variables.c;
 1100: - recherche_type() subroutine ad some other connex subroutines are improved.
 1101: Now, some syntax errors about object are caught and do not perform sequencer
 1102: hangup;
 1103: - readline is upgraded (minor compilation bug with recent gcc);
 1104: - Makefile.am's and configure.in scripts are improved.
 1105: * Fri Mar 14 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6d (RPL/2)
 1106: - DRWS intrinsic is written. Two datastyles are associated: SCATTER (2D
 1107: and 3D) and HISTOGRAM (only 2D, but 3 columns are accepted, the third shown
 1108: the boxwidth, 1 by default);
 1109: - recherche_type() is rewritten to be faster;
 1110: - gsl is upgraded (release 1.3);
 1111: - ncurses is upgraded and patched (release 5.3);
 1112: - recherche_instruction_suivante() is fixed (string research with included
 1113: '"') and rewritten to be faster;
 1114: - appel_gnuplot() is fixed. When no graphic was available, it returned a
 1115: segfault.
 1116: * Sun Mar 9 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6c (RPL/2)
 1117: - RPL/2 is compiled by gcc-3.2.2 and seems to work;
 1118: - the same minor bug is fixed in REDRAW and DRAX functions;
 1119: - a minor fix is written in DRAW function (2D and 3D);
 1120: - AXES intrinsic is improved. Now { { pi "ticsonly" 4 } "automatic" } DRAX
 1121: is accepted;
 1122: - a minor bug is fixed in VISIT intrinsic.
 1123: * Sun Jan 26 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6b (RPL/2)
 1124: - a minor bug is fixed in evaluation subroutine;
 1125: - vim syntax file is improved;
 1126: - DRAW (wireframe section) is fixed. When an error occurs in the evaluation
 1127: of a 3D-graphic (for example 'SIN(R)/R' with 'R=SQRT(X**2+Y**2)' in X=0 and
 1128: Y=0), no graph was procuced (it results from a bug in gnuplot, and this fix
 1129: is a quick and dirty workaround...);
 1130: - RETURN intrinsic is modified to fix a trouble in interactive mode;
 1131: - rplconvert is improved.
 1132: * Sun Dec 22 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6a (RPL/2)
 1133: - a memory leak is fixed in formateur.c that only occurs when RPL/2 try
 1134: to print a list that contains a name;
 1135: - a major bug is fixed in -> intrinsic that only occurs in evaluation case with
 1136: a algebraic expression (<< 1 -> X 'X+1' >> eval);
 1137: - vim syntax file is improved;
 1138: - RPL/2 can now be built by gcc 3.2.1;
 1139: - "**" can be used in algebraic expression;
 1140: - DRAW can now plot wireframe (3D) graphics.
 1141: * Sun Dec 8 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6 (RPL/2)
 1142: - ncurses is patched to be compiled by gcc 3.2;
 1143: - purification_chaine is rewritten to fix a major bug (when 'chaine' is empty);
 1144: - a major bug is fixed in recherche_instruction_suivante();
 1145: - minor bug is fixed in rpl-core file. The error message is now correctly
 1146: written;
 1147: - minor bug is fixed in analyse_notation_algebrique.c and types.c.
 1148: Now, an expression such as 'A+' returns an error when it is analyzed;
 1149: - VISIT intrinsic is added;
 1150: - a major memory leak is fixed in evaluation.c. This bug rarely occurs in
 1151: normal mode.
 1152: * Sun Aug 25 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5e (RPL/2)
 1153: - an EDIT intrinsic is added;
 1154: - PRMD intrinsic returns french or english messages;
 1155: - rpl-core now call LAST intrinsic if the last stack is avalaible. It
 1156: contains the error message too;
 1157: - new syntax, ftplugin and indent files are written for vim text editor;
 1158: - major bug is found and fixed in RCL intrinsic;
 1159: - major bug is found and fixed in OR intrinsic.
 1160: * Mon Jul 29 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5d (RPL/2)
 1161: - ncurses is updated;
 1162: - minor bug is fixed on PURGE instruction (an error no caught was
 1163: returned in interactive mode).
 1164: * Mon Jul 21 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5c (RPL/2)
 1165: - ASL (arithm. shift left) is added.
 1166: * Thu Jul 11 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5b (RPL/2)
 1167: - ncurses is patched;
 1168: - gsl is added to perform arithmetic operations;
 1169: - units is patched;
 1170: - some very minor bugs have been fixed.
 1171: * Wed May 15 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5a (RPL/2)
 1172: - ncurses is patched;
 1173: - RPL/2 can now be built by gcc 3.1;
 1174: - RDZ is fixed (minor bug).
 1175: * Sun Apr 21 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5 (RPL/2)
 1176: - RPL/2 can now be called from other languages (librpl libraries).
 1177: * Sun Mar 24 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4h (RPL/2)
 1178: - ERRN and ERRM can now be used with errors returned by external functions;
 1179: - readline and ncurses have been updated;
 1180: - no more bugs have been reported since the rpl-4.00pre4g release.
 1181: * Wed Feb 20 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4g (RPL/2)
 1182: - ERRN and ERRM intrinsic functions are written. They return the last
 1183: error number or message even if errors are caught by an IFERR structure;
 1184: - a minor bug is fixed in EPSILON intrinsic. Now, 'EPSILON(0)' returns
 1185: a non null value;
 1186: - Ncurses is updated.
 1187: * Mon Feb 18 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4f (RPL/2)
 1188: Arithmetic intrinsic instructions (- +, -, *, / and **) are improved :
 1189: 'X' 0 + and 0 'X' + return 'X';
 1190: 'X' 0 - returns 'X';
 1191: 'X' 1 * and 1 'X' * return 'X';
 1192: 'X' 0 * and 0 'X' * returns 0; 
 1193: 'X' 1 / returns 'X';
 1194: 'X' 1 ** returns 'X';
 1195: 'NEG(X)' NEG returns 'X';
 1196: - autoconf/automake scripts are improved: now, the size of the different types
 1197: found by configure are used in rpltypes.h (rplconfig.h is written by configure);
 1198: - rdynamic flag is added in src/Makefile.am. This flag is used in the first
 1199: makefile, but forgotten in the new process;
 1200: - Flag 31 is tested before saving any arguments in bibliotheques_externes.c;
 1201: - POS can now be used on lists;
 1202: - ELSILON is written. This function returns the smallest real e(x) such as
 1203: e+abs(x) != abs(x).
 1204: * Mon Feb 11 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4e (RPL/2)
 1205: - now, INT intrinsic function can be interrupted;
 1206: - precision of sommation_vecteur_xxx() subroutines is improved;
 1207: - new vim syntax file written for vim 6.0.
 1208: * Mon Feb 04 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4d (RPL/2)
 1209: - explicit error messages are now printed when the RPL/2 is used in
 1210: interactive mode;
 1211: - major bug is fixed in OPEN intrinsic: with 'REPLACE' status, file lock was
 1212: tested after the file is opened, thus, when the file was locked, it was
 1213: deleted too!;
 1214: - configure script is improved (and it seems to be good ;-) );
 1215: - An --disable-experimental flag is added to the configure script. Thus, even
 1216: if you compile a beta release, you can compile a stable RPL/2;
 1217: - new syntax and ftplugin written for vim 6.0.
 1218: * Wed Jan 30 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4c (RPL/2)
 1219: - configure script is improved.
 1220: * Sun Jan 27 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4b (RPL/2)
 1221: - ncurses now replaces termcap;
 1222: - Côme DESPLATS has written a configure script.
 1223: * Fri Jan 18 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4a (RPL/2)
 1224: - KIND is added and returns the type of the numerical argument ;
 1225: - history file is added.
 1226: * Tue Jan 15 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4 (RPL/2)
 1227: - Stable release. Unformatted files are disabled in this release.
 1228: * Mon Jan 14 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3h (RPL/2)
 1229: - SIGTSTP (CTRL+Z) is added. In a script, a SIGTSTP signal signifies
 1230: that the RPL/2 seqencer must stop and must give a prompt. This
 1231: signal is an asynchonous "HALT" command;
 1232: - SIGINT (CTRL+C) variables stack corruption is fixed;
 1233: - IFERR seems to be fixed (in equation evaluation routine);
 1234: - Memory leak is fixed (ADR object type);
 1235: - DATE returns both date and hours;
 1236: - TIME now returns user and system CPU times;
 1237: - MEM is added.
 1238: * Thu Jan 10 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3g (RPL/2)
 1239: - Makefile is improved to support sparc v7 (sun4c), sparc v8 (sun4m) and
 1240: sparc v9 (sun4u). Now, RPL/2 can be built on i386 (i486 is known as i386),
 1241: i586, i686, K6, K7, alpha ev4, alpha ev5, alpha ev56, alpha ev6, sparc v7,
 1242: sparc v8 and sparc v9. Compilation of RPL/2 on my Sun Sparc 2 (sun4c,
 1243: CPU 4/75, 64 MB, 40 MHz with FPU) is a very great mission :
 1244: 
 1245: Newton:[~/rpl/rpl] > time make install
 1246: ...
 1247: real    338m39.623s
 1248: user    324m32.290s
 1249: sys     10m47.380s
 1250: Newton:[~/rpl/rpl] >
 1251: 
 1252: I don't know if you will compile this language on old worstations, but
 1253: it is usable ;-) ;
 1254: - SYSEVAL is improved. An external program can be called without any shell.
 1255: Thus, even if the sticky bit is set, RPL/2 can not give a shell root when
 1256: a SYSEVAL command crashes;
 1257: - minor bug is fixed in recherche_type() (# xxxxb parsing);
 1258: - presence of bootstrap entry point is verified before launching the
 1259: sequencer;
 1260: - minor bug is fixed in formateur_tex() (underscore in mathematical
 1261: expression);
 1262: - Lapack is updated.
 1263: * Thu Jan 3 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3f (RPL/2)
 1264: - IFERR is now known in an expression, but not usable.
 1265: * Mon Dec 31 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3e (RPL/2)
 1266: - several bugs are fixed.
 1267: * Mon Dec 17 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3d (RPL/2)
 1268: - major bugfix in file locking.
 1269: * Fri Dec 14 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3c (RPL/2)
 1270: - minor fixes is system() call.
 1271: * Fri Nov 30 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3b (RPL/2)
 1272: - automatic limitation of the graphical depth due to a limitation (bug ?)
 1273: of gnuplot.
 1274: * Mon Nov 19 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3a (RPL/2)
 1275: - new file temp management.
 1276: * Sun Nov 18 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3 (RPL/2)
 1277: - memory leak is fixed in STO instruction;
 1278: - minor bug in file management is fixed;
 1279: - BACKSPACE is added;
 1280: - VARS is added;
 1281: - file locks are improved.
 1282: * Wed Nov 14 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2l (RPL/2)
 1283: - major bug is fixed (on sparc architecture) and RPL/2 can now run
 1284: on sparc stations;
 1285: - INDEP and DEPND are improved;
 1286: - AXES is added;
 1287: - WRITE, APPEND and REWIND are added.
 1288: * Sun Nov 11 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2k (RPL/2)
 1289: - write is improved ;
 1290: - major bug is found and fixed in copie_objet() with struct_fichier;
 1291: - minor bug is fixed in OPEN function;
 1292: - minor bug is fixed in analyse_syntaxique() subroutine. All commands
 1293: are analysed before starting their executions.
 1294: * Thu Nov 8 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2j (RPL/2)
 1295: - minor bug is fixed in appel_gnuplot();
 1296: - RPL/2 can work without LANG variable.
 1297: * Wed Oct 31 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2i (RPL/2)
 1298: - WAIT function is improved (removing the polling function);
 1299: - LAST stack is not active (default) when rpl is called without the option -i.
 1300: In all other cases, LAST stack is active;
 1301: - Labels can be added on a gnuplot output (function LABEL);
 1302: - LCD-> and ->LCD are added.
 1303: * Sun Oct 21 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2h (RPL/2)
 1304: - minor bug is fixed in TeX output (pi);
 1305: - new english manual is added.
 1306: * Wed Oct 16 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2g (RPL/2)
 1307: - LOCK, WFLOCK and UNLOCK are added. A file is locked when it is opened;
 1308: - VERSION function is added. It returns the version number of the interpreter;
 1309: - minor bug is fixed in evaluation subroutine;
 1310: - english error messages are been fixed.
 1311: * Tue Oct 09 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2f (RPL/2)
 1312: - interrupt subroutine is added;
 1313: - formatted files support is continued.
 1314: * Sun Sep 30 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2e (RPL/2)
 1315: - formateur_fichier.c is added to perform formatted files write.
 1316: * Thu Sep 27 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2d (RPL/2)
 1317: - minors bugfixes in FIX format in formateur_reel() subroutine;
 1318: - new manual page in english;
 1319: - FORMAT intrinsic is added and can read any format for "formatted" file.
 1320: * Sun Sep 23 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2c (RPL/2)
 1321: - OPEN, CLOSE, SYNC, INQUIRE, CREATE and DELETE are tested;
 1322: - a man page in the first manual section is written.
 1323: * Thu Sep 20 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2b (RPL/2)
 1324: - major bugfixes in recherche_type() subroutine: sometimes in interactive mode,
 1325: this routine was be able to forget the last element of a list, a vector or
 1326: a matrix.
 1327: * Mon Sep 17 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2a (RPL/2)
 1328: - OPEN, CLOSE and DELETE are known by the language but not very usable;
 1329: - minor bugfixes in evaluation routine.
 1330: * Sun Sep 16 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2 (RPL/2)
 1331: - major bugfixes in evaluation routine.
 1332: * Sat Sep 15 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1d (RPL/2)
 1333: - conditional structures can be used in equations.
 1334: * Fri Sep 14 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1c (RPL/2)
 1335: - Minor bugfixes in makefile.
 1336: * Sat Sep  8 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1b (RPL/2)
 1337: - CONVERT is written;
 1338: - CYCLE, FOR/NEXT, FOR/STEP, START/NEXT, START/STEP, DO/UNTIL/END and
 1339: WHILE/REPEAT/END can now be used in an equation;
 1340: - I fix some troubles with evaluation subroutine;
 1341: - db3 library is added.
 1342: * Thu Sep  6 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1a (RPL/2)
 1343: - add rplconvert and rplunits sources;
 1344: - add CONVERT definition (but it does not work).
 1345: * Mon Sep  3 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1 (RPL/2)
 1346: - initial public release (GPL).
 1347: * Thu Apr  2 1998 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre0 (RPL/2)
 1348: - RPL is rewritten from scratch and named RPL/2.
 1349: #* 1992 BERTRAND Joël rpl-3.02 (RPL-387)
 1350: #- minor bugfixes.
 1351: #* 1991 BERTRAND Joël rpl-3.01 (RPL-387)
 1352: #- arithmetic processor support is added to improve global performances.
 1353: #* 1991 BERTRAND Joël rpl-3.00 (RPL-386)
 1354: #- idem... but on an i386DX...
 1355: #* 1990 BERTRAND Joël rpl-2 (RPL-6809)
 1356: #- a new release on a more powerfull processor and with new functions and an
 1357: #built-in editor. It has been written on a SMT-Goupil G3-6809 running
 1358: #Flex9 (320 KB of RAM and a graphic card used to draw 512*256 graphics in
 1359: #8 colors)
 1360: #* 1989 BERTRAND Joël rpl-1 (RPL-6502)
 1361: #- initial release (only an historic interest) written on an ORIC Atmos 48K.
 1362: #No graphic was provided.

CVSweb interface <joel.bertrand@systella.fr>