.
+
+Note thet configure-alt uses a version-numbered directory for the
+installation.
+
+Avoid having installs from the standard 'configure' and alternate
+'configure-alt' script on the same machine!
+
+NOTE, that newLISP can only be compiled for the IPL32 and LP64 memory
+models.
+
+configure-alt will configure a 64-bit (LP64) application by default
+if the platform and tools are capable. The standard configure script
+will configure a makefile for 32-bit (ILP32) by default. This may
+change in the future.
+
+Compiling and running newlisp-x.x.x/util/types.c will produce:
+
+IPL32 memory model
+------------------
+type bytes
+---------------
+char 1
+char * 4
+void * 4
+short int 2
+int 4
+long 4
+long int 4
+long long int 8
+size_t 4
+float 4
+double 8
+long double 16
+wchar_t 4
+size_t 4
+off_t 8
+time_t 4
+
+
+LP64 memory model
+-----------------
+type bytes
+---------------
+char 1
+char * 8
+void * 8
+short int 2
+int 4
+long 8
+long int 8
+long long int 8
+size_t 8
+float 4
+double 8
+long double 16
+wchar_t 4
+size_t 8
+off_t 8
+time_t 8
+
+
+(5) LOCALIZATION
+----------------
+
+The PCRE Regular Expressions code can be localized to your country/language
+It comes with default character tables for English, but should work well
+for other languages when using the UTF-8 version of newLISP. For correct working of
+other string functions in your country/language a localizable 'C' library/OS
+may have to be used. The names of newLISP functions can be localized during
+runtime without performance loss, (see newlisp_manual.html).
+
+There are UTF-8 versions/makefiles available in the source distribution.
+See the chapter about 'Customization, localization and UTF-8' in the manual.
+
+(6) RUNNING newLISP IN A SHELL OR CONSOLE WINDOW
+------------------------------------------------
+
+On all platforms simply execute:
+
+ newlisp
+
+On Windows the execution path of newlisp.exe should be added to the environment
+during installation. On all other platforms the newlisp binary should be in
+/usr/local/bin/newlisp or /usr/bin/newlisp.
+
+
+(7) COMMENTS ABOUT LIBFFI
+-------------------------
+
+Here some general comments for usage of libffi in newLISP:
+
+The extended ffi requiring libffi and ffi.h for compiling, was only
+introduced a short time ago in February of 2012. Except for module/gsl.lsp
+all other modules shipped in the distributions work with the older simple
+form of import not requiring libffi. Both are documented in the manual.
+
+The configure utility will pick libffi enabled makefiles only for Windows,
+MacOS and Linux. For all other OS it will pick makefiles not requiring libffi.
+
+Ted Walther's configure-alt utility, which automatically configures the
+memory model (32-bit or 64-bit) never configures for the new extended ffi
+using libffi.
+
+The path for ffi.h chosen in newlisp.h, is only valid for OSX and UBUNTU
+Linux, for all other OSs the path might be different and has to be adjusted.
+
+In any case, libffi from http://sourceware.org/libffi/ is pretty easy to make
+for most platforms. On Windows, Mac OSX and UBUNTU Linux it is already
+installed by default.
+
+
+ +++
diff --git a/doc/LOCALIZATION.txt b/doc/LOCALIZATION.txt
new file mode 100644
index 0000000..f333732
--- /dev/null
+++ b/doc/LOCALIZATION.txt
@@ -0,0 +1,41 @@
+LOCALIZATION
+============
+
+See chapter 'Customization Localization and UTF-8' in the
+Users Manual and the usage of 'set-locale' function in the
+Function Reference.
+
+The 'set-locale' function will not influence the behaviour of
+PCRE (Perl Compatible Regular Expressions) in newLISP, but a
+special option flag number can be set to support UTF-8 in all
+functions supporting regular expressions like: regex, find,
+replace, parse and search.
+
+To further localize the behaviour of regular expressions in newLISP
+the file 'pcre-chartables.c' must be replaced with a localized
+version. To obtain this file for your locale, follow these steps:
+
+(1) get the pcre source distribution from http://www.pcre.org
+
+(2) follow the instruction in it's README file to 'configure'
+ and 'make' it. An installation is not necessary. Just using
+ the 'configure' and 'make' steps will create a file called
+ 'chartables.c' suitable for the locale on your computer
+ system. Rename this file to 'pcre-chartables.c', which it
+ replaces in the newLISP source distribution.
+
+(3) recompile newLISP
+
+newLISP will now show regular expression behaviour in functions
+like 'regex', 'find', 'replace' and 'parse' appropiate to your
+locale. The function 'set-locale' should still be used to change
+all other aspects of newLISP to your locale.
+
+newLISP can be used with multi-byte character languages when
+compiled with UTF-8 options. For some OS flavors UTF-8 enabled
+makefile are shipped in the source distribution.
+
+When compiled with UTF-8 character handling some newLISP functions
+will work on multibyte characters instead of single bytes. See
+the manual for details.
+ +++
diff --git a/doc/TRU64BUILD.txt b/doc/TRU64BUILD.txt
new file mode 100644
index 0000000..588668c
--- /dev/null
+++ b/doc/TRU64BUILD.txt
@@ -0,0 +1,10 @@
+Building newLISP for HP's Tru64 OS
+==================================
+
+The following now will make newLISP for the tru64 OS and using the Compaq
+C compiler for the Alpha CPU:
+
+ make
+
+Please contact Peter van Eerten at peter@gtk-server.org for any
+remaining questions.
diff --git a/doc/newLISP-10.7.6-Release.html b/doc/newLISP-10.7.6-Release.html
new file mode 100644
index 0000000..26c61a8
--- /dev/null
+++ b/doc/newLISP-10.7.6-Release.html
@@ -0,0 +1,69 @@
+
+
+
+
+newLISP v.1.7.6 Release Notes
+
+
+
+
+
+
+newLISP® v.10.7.6 Stable Release
+2021-xx-xx
+
+This stable release fixes bugs and adds some minor functionality.
+
+Bug fixes
+
+
+New Features
+
+Compatibility with previous versions
+This version is compatible with the previous versions in the 10.7.x series.
+
+∂
+
+
+
+
diff --git a/doc/newlisp_manual.html b/doc/newlisp_manual.html
index bc76d2b..5dd30ea 100644
--- a/doc/newlisp_manual.html
+++ b/doc/newlisp_manual.html
@@ -8,7 +8,7 @@
- newLISP v.10.7.5 Manual and Reference
+ newLISP v.10.7.6 Manual and Reference