File:  [local] / rpl / ChangeLog
Revision 1.9: download - view: text, annotated - select for diffs - revision graph
Sat Feb 13 14:13:35 2010 UTC (14 years, 2 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Commit avant d'attaquer OpenVMS

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

CVSweb interface <joel.bertrand@systella.fr>