~peterpall/maxima/+git/maxima.code:rtoy-handle-3-part-makeinfo-version

Last commit made on 2022-10-29
Get this branch:
git clone -b rtoy-handle-3-part-makeinfo-version https://git.launchpad.net/~peterpall/maxima/+git/maxima.code

Branch merges

Branch information

Name:
rtoy-handle-3-part-makeinfo-version
Repository:
lp:~peterpall/maxima/+git/maxima.code

Recent commits

7550340... by Raymond Toy <email address hidden>

Support makeinfo versions with 3 parts and simplify computation

Test versions of makeinfo have version numbers like 6.8.90. Update
configure to handle this so that we get a version of 6.8.90 instead of
8.90, which would be wrong.

We also simplify the tests for the version number by creating a
numerical value by multiply the major version by 100 and adding the
minor version. This assumes that the minor version is never larger
than 99. Then we can just compare integers. Thus 5.0 is version 500,
and that's easy to compare against 5.1 (version 501).

ce29527... by Wolfgang Dautermann <email address hidden>

Typo in commit b68360c6 fixed.

ffa742e... by Raymond Toy <email address hidden>

Add xref to "Getting Started with ODEPACK"

In the description for dlsode_step and dlsode_init, add a cross-ref to
the section "Getting Started with ODEPACK" to help users figure out
where to go to learn how to use the functions.

Also fixed a typo, and added @math{} to a couple of places to make it
typeset a bit nicer.

fdc7b4a... by Wolfgang Dautermann <email address hidden>

Windows installer: Update wxWidgets.

b68360c... by Wolfgang Dautermann <email address hidden>

Add quit() with an exit code to the german documentation.

a5d0486... by Raymond Toy <email address hidden>

Quit supports an exit code

Quit takes an optional integer that is used as the exit code from
maxima.

* src/suprv1.lisp
  * Add optional exit-code arg for $quit; this calls bye with the
    given code.

* src/utils.lisp
  * Add optional exit-code arg to bye. This calls the appropriate
    implementation-specific function with the exit-code if possible.
    Otherwise it's ignored.

* doc/info/Command.texi
  * Update docs to mention the optional exit-code

*

b7e2cf1... by Wolfgang Dautermann <email address hidden>

Windows installer: Update SBCL.

a204668... by Raymond Toy <email address hidden>

Add functions to categories for hompack, minpack, odepack

The functions in the hompack, minpack, and odepack packages were not
listed in any category. Thus, add them to the corresponding package
categories.

231452a... by Raymond Toy <email address hidden>

Ignore math.m4 and cobyla.texi

These are generated files. math.m4 is generated by configure, and
cobyla.texi is processed from cobyla.texi.m4

f74a31f... by Raymond Toy <email address hidden>

Add intro sentence for the examples

The examples just randomly start after the table, which is weird. So,
add an intro sentence to separate the end of the table and the
beginning of the examples.