View Bazaar branches
Get this repository:
git clone https://git.not.enabled/maxima

See all merge proposals.

Import details

Import Status: Suspended

This repository is an import of the Git repository at https://git.code.sf.net/p/maxima/code.

Last successful import was .

Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 50 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-2 and finished taking 50 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-2 and finished taking 50 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 40 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-0 and finished taking 1 minute — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 1 minute — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 1 minute — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 50 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 1 minute — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-2 and finished taking 1 minute — see the log

Branches

Name Last Modified Last Commit
rtoy-refactor-sinint 2023-02-04 22:42:01 UTC
More minor reindentation make some things easier to read

Author: Raymond Toy
Author Date: 2023-02-04 22:42:01 UTC

More minor reindentation make some things easier to read

No functional changes.

rtoy-refactor-ratform-sinint 2023-02-03 23:14:52 UTC
Remove ratform from declare-top special.

Author: Raymond Toy
Author Date: 2023-02-03 23:14:52 UTC

Remove ratform from declare-top special.

It's not used in this file anymore, so we don't need the declare-top
special declaration.

rtoy-refactor-laplac 2023-02-03 21:53:14 UTC
Remove special decl for `checkfactors`.

Author: Raymond Toy
Author Date: 2023-02-03 21:53:14 UTC

Remove special decl for `checkfactors`.

It's defined as a special var in globals.lisp, so we don't need to
declare it again here.

rtoy-refactor-ratform-laplac 2023-02-02 01:30:16 UTC
Move simple functions into ilt3

Author: Raymond Toy
Author Date: 2023-02-02 01:30:16 UTC

Move simple functions into ilt3

The macro `coef` and the functions `lapsum`, `lapprod`, and `expo` are
only used in `ilt3`. Let's move them into `ilt3` to reduce pollution
of the name space. For simplicity convert `coef` from a macro to a
function.

Also add a note that `lapsum`, `lapprod`, and `expo` could be replaced
by macros from strmac.lisp. That would probably be useful. For
another day.

Full testsuite passes.

rtoy-refactor-simp 2023-02-01 17:10:20 UTC
Just make *rulesw* a defvar

Author: Raymond Toy
Author Date: 2023-02-01 17:10:20 UTC

Just make *rulesw* a defvar

Instead of using `declare-top` for `*rulesw*`, just add a `defvar` for
it. For some Lisps, this makes it clear where it's defined, which is
useful for debugging and hacking.

rtoy-refactor-factor 2023-01-31 04:35:21 UTC
Rename pp to pp-var

Author: Raymond Toy
Author Date: 2023-01-31 04:35:21 UTC

Rename pp to pp-var

There's a variable `pp` somewhere. Let's rename `pp` to `pp-var`
which isn't used anywhere in maxima.

rtoy-remove-previb-and-next-lucas 2023-01-30 19:36:44 UTC
Remove docs mentioning prevfib and next_lucas

Author: Raymond Toy
Author Date: 2023-01-30 19:36:44 UTC

Remove docs mentioning prevfib and next_lucas

Since these variables were removed, let's remove any references to
them from the user manual.

rtoy-refactor-combin 2023-01-30 19:03:53 UTC
Remove special decl for v in cffun

Author: Raymond Toy
Author Date: 2023-01-30 19:03:53 UTC

Remove special decl for v in cffun

In `cffun`, there is a special declaration for `v`. AFAICT, it's only
accessed within a lambda function in `cffun`. Normal closure behavior
means the lambda functions have access anyway, so it doesn't need to
be special.

Thus, remove the declarations.

Full testsuite passes.

rtoy-specvars-combin 2023-01-29 00:50:49 UTC
Rename *a* to *combin-a*

Author: Raymond Toy
Author Date: 2023-01-29 00:50:49 UTC

Rename *a* to *combin-a*

It's not really clear if `*a*` is the same special var as `*a*` in
other files, but the unspecial at the end hints that it's intended to
be special only in this file.

Therefore, rename `*a*` to `*combin-a*` to make it clear that it's
not. This change did not affect the full testsuite so I'm going to
assume it really is different.

Also, add a `defvar` for it and remove the unspecial declaration at
the end of the file.

rtoy-schatc-rename-specvar-ans 2023-01-27 18:41:16 UTC
Merge branch 'master' into rtoy-schatc-rename-specvar-ans

Author: Raymond Toy
Author Date: 2023-01-27 18:41:16 UTC

Merge branch 'master' into rtoy-schatc-rename-specvar-ans

rtoy-orthopoly-notation-examples 2023-01-27 16:56:42 UTC
Add some examples for how general polynomials are displayed

Author: Raymond Toy
Author Date: 2023-01-27 16:56:42 UTC

Add some examples for how general polynomials are displayed

The previous version didn't show how maxima would display things like
assoc_legendre_p(n,m,x) as
```
      m
     P (x)
      n
```
So add an example for this and the other functions in
orthopoly.texi.m4.

Also added a note that you can't run `update_examples` on this file
because some examples depend on the previous example, which doesn't
work with `update_examples`.

DebianPackaging_NightlyARMbuild 2023-01-26 04:13:41 UTC
Maxima now depends on a recent gcl

Author: PeterPall
Author Date: 2023-01-26 04:13:41 UTC

Maxima now depends on a recent gcl

DebianPackaging_Notest 2023-01-26 04:13:01 UTC
Maxima now depends on a recent gcl

Author: PeterPall
Author Date: 2023-01-26 04:13:01 UTC

Maxima now depends on a recent gcl

DebianPackaging 2023-01-26 04:12:09 UTC
Maxima now depends on a recent gcl

Author: PeterPall
Author Date: 2023-01-26 04:12:09 UTC

Maxima now depends on a recent gcl

rtoy-specvars-hypgeo 2023-01-26 02:11:45 UTC
Move some specvars from hypgeo to globals

Author: Raymond Toy
Author Date: 2023-01-26 02:11:45 UTC

Move some specvars from hypgeo to globals

Move the specvar `*par*` from hypgeo.lisp to globals.lisp.

Rename `checkcoefsignlist` to `*checkcoefsignlist*` and make it a
`defvar` in globals.lisp.

Now we can remove `declare-top`s for `*par*` and `checkcoefsignlist`.

Full testsuite passes.

rtoy-bug-4083-warn-on-bad-test-names 2023-01-26 01:12:18 UTC
Merge branch 'master' into rtoy-bug-4083-warn-on-bad-test-names

Author: Raymond Toy
Author Date: 2023-01-26 01:12:18 UTC

Merge branch 'master' into rtoy-bug-4083-warn-on-bad-test-names

rtoy-reorder-plist 2023-01-25 01:00:18 UTC
Move 'opers property to the front and 'translate to the back.

Author: Raymond Toy
Author Date: 2023-01-25 01:00:18 UTC

Move 'opers property to the front and 'translate to the back.

KoenGu/ClaspLispSupport 2023-01-24 10:52:33 UTC
A try to make clasp dump maxima after building it.

Author: PeterPall
Author Date: 2023-01-24 10:52:33 UTC

A try to make clasp dump maxima after building it.

gcl_cleanup 2023-01-24 00:39:15 UTC
Merge branch 'master' into gcl_cleanup

Author: Camm Maguire
Author Date: 2023-01-24 00:39:15 UTC

Merge branch 'master' into gcl_cleanup

gcl_cleanup_next_release 2023-01-24 00:39:15 UTC
Merge branch 'master' into gcl_cleanup

Author: Camm Maguire
Author Date: 2023-01-24 00:39:15 UTC

Merge branch 'master' into gcl_cleanup

rtoy-move-to-transl 2023-01-23 21:43:11 UTC
Merge branch 'master' into rtoy-move-to-transl

Author: Raymond Toy
Author Date: 2023-01-23 21:43:11 UTC

Merge branch 'master' into rtoy-move-to-transl

rtoy-check-gcl-version 2023-01-23 00:09:04 UTC
Comment out debugging echo and add some comments

Author: Raymond Toy
Author Date: 2023-01-23 00:09:04 UTC

Comment out debugging echo and add some comments

Comment out a debugging `echo` command and add some comments
describing what we're expecting as the GCL version number.

rtoy-remove-more-lmdcls 2023-01-21 15:58:29 UTC
Forgot to remove *alpha from lmdcls

Author: Raymond Toy
Author Date: 2023-01-21 15:58:29 UTC

Forgot to remove *alpha from lmdcls

Full testsuite still passes

rtoy-update-gcl-2.6.14-test-results 2023-01-21 00:36:01 UTC
Merge branch 'master' into rtoy-update-gcl-2.6.14-test-results

Author: Raymond Toy
Author Date: 2023-01-21 00:36:01 UTC

Merge branch 'master' into rtoy-update-gcl-2.6.14-test-results

rtoy-issue-4077-replace-opcons 2023-01-18 19:58:31 UTC
Fix #4077: replace opcons with ftake*

Author: Raymond Toy
Author Date: 2023-01-18 19:58:31 UTC

Fix #4077: replace opcons with ftake*

As mentioned in bug #4077, we replace calls of `opcons` in nummod.lisp
with the equivalent `ftake*`. And also change `opcons` to use
`ftake*` to make the equivalence clearer.

The share directory has files using `opcons`, so we can't remove
`opcons` without fixing those. I'm lazy and leaving them as is,
although it would be better if we didn't have two ways to do the same
thing.

rtoy-reorder-trig-sec 2023-01-18 17:38:44 UTC
Merge branch 'master' into rtoy-reorder-trig-sec

Author: Raymond Toy
Author Date: 2023-01-18 17:38:44 UTC

Merge branch 'master' into rtoy-reorder-trig-sec

rtoy-add-trigtools-doc 2023-01-18 17:33:40 UTC
Capitalize section heading correctly

Author: Raymond Toy
Author Date: 2023-01-18 17:33:40 UTC

Capitalize section heading correctly

Update nodes, etc., appropriately.

rtoy-hypergeometric-def-simp 2023-01-17 04:59:26 UTC
Remove original simplifier

Author: Raymond Toy
Author Date: 2023-01-17 04:59:26 UTC

Remove original simplifier

We don't need the original hypergeometric simplifier code now. The
new def-simplifier version passes all the tests from testsuite,
including the share tests.

rtoy-move-hypergeometric-to-src 2023-01-16 00:16:50 UTC
Actually remove the loads

Author: Raymond Toy
Author Date: 2023-01-16 00:16:50 UTC

Actually remove the loads

We had nil'ed them out, but let's remove them now.

rtoy-reorder-specfun-doc 2023-01-14 18:47:46 UTC
Rename "Gamma and factorial.." to "Gamma and Factorial..."

Author: Raymond Toy
Author Date: 2023-01-14 18:47:46 UTC

Rename "Gamma and factorial.." to "Gamma and Factorial..."

It's the title of a section, so "factorial" should be capitalized.

rtoy-bfallroots 2023-01-13 23:13:10 UTC
Add simple test for bfallroots

Author: Raymond Toy
Author Date: 2023-01-13 23:13:10 UTC

Add simple test for bfallroots

Add test to verify that we have the desired precision from bfallroots
when the coefficients are bfloats with more than 16 digits of
precision.

rtoy-mathjax-mathfunctions 2023-01-11 23:12:59 UTC
Fix error in generating pdf doc

Author: Raymond Toy
Author Date: 2023-01-11 23:12:59 UTC

Fix error in generating pdf doc

Replace "\lt" with just "<" in the description of the halfangles option.

rtoy-add-hyp-rep-elliptic 2023-01-11 19:25:37 UTC
Add hypergeometric rep for elliptic_ec and elliptic_kc

Author: Raymond Toy
Author Date: 2023-01-11 19:25:37 UTC

Add hypergeometric rep for elliptic_ec and elliptic_kc

rtoy-add-more-hyp-rep 2023-01-11 18:43:47 UTC
Add hypergeometric rep for expintegral_chi

Author: Raymond Toy
Author Date: 2023-01-11 18:43:47 UTC

Add hypergeometric rep for expintegral_chi

rtoy-add-hyp-exp-int 2023-01-11 17:42:04 UTC
Add comment that expintegral_ei has the same 2F2 form.

Author: Raymond Toy
Author Date: 2023-01-11 17:42:04 UTC

Add comment that expintegral_ei has the same 2F2 form.

How do we choose whether to return expintegral_ci or expintegral_ei
for 2F2?

rtoy-support-setting-list 2023-01-10 19:21:27 UTC
Add support for :setting-list in defmvar

Author: Raymond Toy
Author Date: 2023-01-10 19:21:27 UTC

Add support for :setting-list in defmvar

`defmvar` now recognizes the `:setting-list` option. This was only
used in `$macroexpansion` (in mmacro.lisp) as `setting-list`. So just
rename it to `:setting-list` there.

Also added error checks so that we can't use `:setting-list`,
`:setting-predicate`, or `:properties` with an 'assign property. Only
one of these is allowed.

rtoy-solve2-specvar-equations 2023-01-10 17:38:05 UTC
Kill variables x and y before running test 5 in rtestlabels

Author: Raymond Toy
Author Date: 2023-01-10 17:38:05 UTC

Kill variables x and y before running test 5 in rtestlabels

Need to kill the values of x and y before running test 5. With this
fixed, rtestlabels runs fine.

Note: it's not part of the test suite (why?), so you have to do
`batch("tests/rtestlabels.mac")` to run it.

rtoy-more-specfn-docs 2023-01-09 18:02:48 UTC
Add links to laplace and use TeX for qFp.

Author: Raymond Toy
Author Date: 2023-01-09 18:02:48 UTC

Add links to laplace and use TeX for qFp.

Add a few links to laplace we it can be clicked on in the html/pdf
manual ot make navigation a bit easier.

In one place use TeX to write qFp to make it look nicer in html/pdf.

rtoy-add-info-for-psi 2023-01-07 16:19:23 UTC
Fix up doc for psi[n](x)

Author: Raymond Toy
Author Date: 2023-01-07 16:19:23 UTC

Fix up doc for psi[n](x)

The first sentence for psi[n](x) says Maxima can't compute a numerical
value. This is false, so correct the sentence.

Add some examples of Maxima computing values for psi[n](x).

rtoy-specfn-specvar 2023-01-06 23:49:57 UTC
Define $maxpsiposint and friends in globals

Author: Raymond Toy
Author Date: 2023-01-06 23:49:57 UTC

Define $maxpsiposint and friends in globals

specfun.lisp indirectly defines `$maxpsiposint`, `$maxpsinegint`,
`$maxpsifracnum`, and `$maxpsifracdenom` by setting the symbol-value
of these symbols. Since they're user-visible variables with entries
in the user manual, let's use `defmvar` to define them in
globals.lisp, with the appropriate initial values.

This also means `reset()` will reset the value to the default. This
didn't happen before, but I think it should.

Then we can remove the declare-top special for these from specfn.lisp.

rtoy-opproperties 2023-01-06 16:21:23 UTC
Revert "asum depends on compar to get defvar sign"

Author: Raymond Toy
Author Date: 2023-01-06 16:21:23 UTC

Revert "asum depends on compar to get defvar sign"

This reverts commit 545610e541c65ded1c390043571029a775233898.

Shouldn't have been committed to this branch.

rtoy-add-globals-mlisp-2 2023-01-04 22:18:27 UTC
Move mfexrp and mspeclist from mlisp to globals

Author: Raymond Toy
Author Date: 2023-01-04 22:18:27 UTC

Move mfexrp and mspeclist from mlisp to globals

These special vars are used in several places, so move them to
globals.lisp. Remove them from any other special declarations that
are no longer needed.

rtoy-globals-for-translator 2023-01-04 17:48:09 UTC
Remove vars from lmdcls

Author: Raymond Toy
Author Date: 2023-01-04 17:48:09 UTC

Remove vars from lmdcls

`need-prog?` and `return-mode` are defined in transl.lisp and only
used there. Hence, they can be removed from lmdcls.lisp.

davidscherfgen-intercept-questions 2023-01-02 21:06:16 UTC
If $intercept_questions_fn returns the symbol $ask_user, then don't print mes...

Author: David Scherfgen
Author Date: 2023-01-02 21:06:16 UTC

If $intercept_questions_fn returns the symbol $ask_user, then don't print message "Acceptable answers are ..."

rtoy-set-boolean-mode-defmvar 2022-12-31 19:02:28 UTC
Assign the 'mode property in the variables definitions.

Author: Raymond Toy
Author Date: 2022-12-31 19:02:28 UTC

Assign the 'mode property in the variables definitions.

trdata.lisp did a `putprop` to add the 'mode property a value of
'$boolean for a list of variables. Instead, add this when the
variable is defined.

rtoy-add-globals-more 2022-12-31 16:44:50 UTC
Remove unneeded special decls for ps-bmt-disrep

Author: Raymond Toy
Author Date: 2022-12-31 16:44:50 UTC

Remove unneeded special decls for ps-bmt-disrep

This is defined in globals.lisp so it's special decls not needed.

Also added a comment on the usage of ps-bmt-disrep. It's always T and
used in exactly one place.

rtoy-lmdcls-modulus 2022-12-30 18:27:21 UTC
Move modulus aliases from suprv1 to globals.

Author: Raymond Toy
Author Date: 2022-12-30 18:27:21 UTC

Move modulus aliases from suprv1 to globals.

Instead of defining the aliases betweeen `modulus` and `$modulus` in
suprv1.lisp, add it to globals.lisp, right after `modulus` is defined
so that it's easy to see that these are aliases of each other.

Add a note that we should probably replace all uses of `modulus` with
`$modulus` and get rid of the aliases.

rtoy-texinfo-7 2022-12-28 16:26:58 UTC
Ignore the generated file texi2html-7.init

Author: Raymond Toy
Author Date: 2022-12-28 16:26:58 UTC

Ignore the generated file texi2html-7.init

rtoy-lmdcls-more-globals 2022-12-24 00:42:04 UTC
Merge branch 'master' into rtoy-lmdcls-more-globals

Author: Raymond Toy
Author Date: 2022-12-24 00:42:04 UTC

Merge branch 'master' into rtoy-lmdcls-more-globals

rtoy-lmdcls-remove-single-use 2022-12-23 14:32:43 UTC
Fix up comment

Author: Raymond Toy
Author Date: 2022-12-23 14:32:43 UTC

Fix up comment

rtoy-unspecial-specfn 2022-12-16 23:04:51 UTC
Remove var from unspecial.

Author: Raymond Toy
Author Date: 2022-12-16 23:04:51 UTC

Remove var from unspecial.

The unspecial declaration of `var` isn't needed because `var` is used
in the following code. This assumes that the file compiled after this
doesn't assume var is special without declaring it so.

Testsuite passes.

rtoy-mseterr-maybe-print-reason 2022-12-15 01:17:45 UTC
Allow :setting-predicate to have a reason string for mseterr

Author: Raymond Toy
Author Date: 2022-12-15 01:17:45 UTC

Allow :setting-predicate to have a reason string for mseterr

The :setting-predicate function can now return two values; the second
value is a string that can be used for `mseterr` to print out the
reason why the setting failed.

rtoy-docstrings-for-globals 2022-12-14 18:56:04 UTC
Add more docstrings to global vars

Author: Raymond Toy
Author Date: 2022-12-14 18:56:04 UTC

Add more docstrings to global vars

For defmvars, try to add some simple docstrings, based on the user
manual. We try not to include all of the manual; use just enough to
get an idea of what the variable does.

rtoy-add-infolists-vars 2022-12-14 17:09:08 UTC
Remove the commented out mapc's

Author: Raymond Toy
Author Date: 2022-12-14 17:09:08 UTC

Remove the commented out mapc's

Remove the commented out mapc's in mlisp.lisp and suprv1.lisp. The
initialization done in mlisp.lisp is now in the defmvars.

Setting the 'assign property is no longer needed in suprv1.lisp
because it's also done in the defmvars. (Besides, it incorrectly set
let_rule_packages to 'neverset, which appears to be wrong.)

rtoy-msetchk-2 2022-12-14 02:09:53 UTC
Remove the msetchk function

Author: Raymond Toy
Author Date: 2022-12-14 02:09:53 UTC

Remove the msetchk function

It is now not referenced anywhere and can be removed. (Well, it's
used in archive/src/nusum.lisp, but I think we can ignore that.)

rtoy-msetchk 2022-12-13 16:03:51 UTC
Use :setting-predicate for $optimprefix assignments

Author: Raymond Toy
Author Date: 2022-12-13 16:03:51 UTC

Use :setting-predicate for $optimprefix assignments

Remove the code from msetchk for handling assignments to $optimprefix.
Instead, use :setting-predicate for the defmvar.

rtoy-linel 2022-12-13 03:48:05 UTC
Replace all uses of linel with $linel

Author: Raymond Toy
Author Date: 2022-12-13 03:48:05 UTC

Replace all uses of linel with $linel

- Remove the defvar for `linel`.
- Modify `msetchk` so as not to set `linel` anymore since it doesn't
  exist.

rtoy-add-msetchk 2022-12-11 23:10:02 UTC
Move assign property assignments to the variable definition.

Author: Raymond Toy
Author Date: 2022-12-11 23:10:02 UTC

Move assign property assignments to the variable definition.

Instead of setting the 'assign property in mlisp, move it to the
variable definition.

Not all of the variables in mlisp could be moved because some are not
defmvars and some are lisp variables that are aliases of maxima
variables.

rtoy-move-evok 2022-12-11 20:57:17 UTC
Move remaining sets of evfun property to the function.

Author: Raymond Toy
Author Date: 2022-12-11 20:57:17 UTC

Move remaining sets of evfun property to the function.

The remaining cases of 'evok were for defmspec's. Thus, modify
defmspec to allow setting properties in the definition. This is
basically the same syntax as for defmfun.

Use the new defmspec to define the evok property with the definition
and remove the mapc call in mlisp.lisp that set these.

rtoy-move-evfun 2022-12-11 19:27:02 UTC
Move set of evfun property to the function

Author: Raymond Toy
Author Date: 2022-12-11 19:27:02 UTC

Move set of evfun property to the function

Modify `defmfun` to allow either a symbol or a list defining the
function. The list looks like (name :properties p) where `name` is the
name of the function and `p` is a list of lists for the properties that
we wish to assign to `name`. Similar to the `:properties` option for
`defmvar`.

Remove the `mapc` that set the 'evfun property on a list of functions,
and use the new :property feature of defmfun to set the property when
the function is defined.

rtoy-move-evflag 2022-12-11 18:16:37 UTC
Move evflag setting for variables from mlisp to defmvar.

Author: Raymond Toy
Author Date: 2022-12-11 18:16:37 UTC

Move evflag setting for variables from mlisp to defmvar.

For the remaining symbols in mlisp.lisp that assign the evflag
property, move the assignment to the corresponding defmvar for the
variable.

rtoy-support-setting-predicate 2022-12-10 17:05:32 UTC
Add tests.

Author: Raymond Toy
Author Date: 2022-12-10 17:05:32 UTC

Add tests.

Test some assignments to gensumnum to verify that false and
non-negative integers work.

Test genindex should be a symbol.

Add test for powerseries where gensumnum is false.

rtoy-add-globals-mat-2 2022-12-10 00:50:18 UTC
Move more defmvar/defvar from mat to globals

Author: Raymond Toy
Author Date: 2022-12-10 00:50:18 UTC

Move more defmvar/defvar from mat to globals

- Moved $%rnum and $linsolve_params.
- Removed unneeded declarations.

We forgot to move these early. Noticed these when looking at all the
special vars left in lmdcls.lisp.

rtoy-add-properties 2022-12-09 21:05:55 UTC
Add evflag property using defmvar :properties.

Author: Raymond Toy
Author Date: 2022-12-09 21:05:55 UTC

Add evflag property using defmvar :properties.

Examine mlisp.lisp for where the evflag property is set and find the
corresponding variable in globals.lisp and use :properties to set the
evflag property.

While we're at it, add some docstrings for the variables that didn't
have any. We basically just use a sentence or two from the user
manual.

rtoy-add-globals-cleanup-2 2022-12-09 19:51:31 UTC
Update dependencies in maxima.system.

Author: Raymond Toy
Author Date: 2022-12-09 19:51:31 UTC

Update dependencies in maxima.system.

Noticed that commac.lisp and displm.lisp both call `check-arg` from
clmacs.lisp. So make sure we compile clmacs.lisp before either of
these files.

rtoy-add-globals-cleanup 2022-12-09 19:08:32 UTC
Move defmvar/defvar from init-cl to globals

Author: Raymond Toy
Author Date: 2022-12-09 19:08:32 UTC

Move defmvar/defvar from init-cl to globals

- Moved *temp-files-list*.
- Removed unneeded declarations.

rtoy-add-globals-init-cl 2022-12-09 19:08:32 UTC
Move defmvar/defvar from init-cl to globals

Author: Raymond Toy
Author Date: 2022-12-09 19:08:32 UTC

Move defmvar/defvar from init-cl to globals

- Moved *temp-files-list*.
- Removed unneeded declarations.

rtoy-add-globals-compar-2 2022-12-09 18:07:21 UTC
Move defmvar/defvar from compar to globals

Author: Raymond Toy
Author Date: 2022-12-09 18:07:21 UTC

Move defmvar/defvar from compar to globals

- Moved $context, $contexts, $activecontexts, and *complexsign*.
- Removed unneeded declarations.

rtoy-add-globals-compar 2022-12-09 17:55:41 UTC
Revert "Move defmvar/defvar from compar to globals"

Author: Raymond Toy
Author Date: 2022-12-09 17:55:41 UTC

Revert "Move defmvar/defvar from compar to globals"

This reverts commit 370642ce625206bbde0761feef9de930d5854e3e.

rtoy-add-globals-trigi 2022-12-09 16:59:14 UTC
Move defmvar/defvar from trigi to globals

Author: Raymond Toy
Author Date: 2022-12-09 16:59:14 UTC

Move defmvar/defvar from trigi to globals

- Moved *flonum-op* and *big-float-op*.
- Removed unneeded declarations.

rtoy-add-globals-suprv1 2022-12-09 15:45:01 UTC
Move defmvar/defvar from suprv1 to globals

Author: Raymond Toy
Author Date: 2022-12-09 15:45:01 UTC

Move defmvar/defvar from suprv1 to globals

- Moved *refchkl*, *mdebug*, errcatch, lessorder,
  greatorder, *in-translate-file*, and *linelabel*.
- Removed unneeded declarations.

rtoy-add-globals-sumcon 2022-12-09 14:49:27 UTC
Move defmvar/defvar from sumcon to globals

Author: Raymond Toy
Author Date: 2022-12-09 14:49:27 UTC

Move defmvar/defvar from sumcon to globals

- Moved $niceindicespref.
- Removed unneeded declarations.

rtoy-add-globals-solve 2022-12-09 04:55:24 UTC
Move defmvar/defvar from solve to globals

Author: Raymond Toy
Author Date: 2022-12-09 04:55:24 UTC

Move defmvar/defvar from solve to globals

- Moved $breakup, $multiplicities, $programmode, $solvefactors,
  $solvetrigwarn, and $solveradcan
- Removed unneeded declarations.

rtoy-add-globals-simp 2022-12-09 04:20:28 UTC
Move defmvar/defvar from simp to globals

Author: Raymond Toy
Author Date: 2022-12-09 04:20:28 UTC

Move defmvar/defvar from simp to globals

- Moved rischp, rp-polylogp, wflag, derivflag, and *zexptsimp?.
- Removed unneeded declarations.

rtoy-add-globals-risch 2022-12-09 02:37:10 UTC
Move defmvar/defvar from risch to globals

Author: Raymond Toy
Author Date: 2022-12-09 02:37:10 UTC

Move defmvar/defvar from risch to globals

- Moved $liflag.
- Removed unneeded declarations.

rtoy-add-globals-result 2022-12-09 00:31:45 UTC
Move defmvar/defvar from result to globals

Author: Raymond Toy
Author Date: 2022-12-09 00:31:45 UTC

Move defmvar/defvar from result to globals

- Moved $resultant.
- Removed unneeded declarations.

rtoy-add-globals-rat3e 2022-12-09 00:20:02 UTC
Move defmvar/defvar from rat3e to globals

Author: Raymond Toy
Author Date: 2022-12-09 00:20:02 UTC

Move defmvar/defvar from rat3e to globals

- Moved varlist
- Removed unneeded declarations.

rtoy-add-globals-rat3b 2022-12-07 21:47:40 UTC
Move defmvar/defvar from rat3b to globals

Author: Raymond Toy
Author Date: 2022-12-07 21:47:40 UTC

Move defmvar/defvar from rat3b to globals

- Moved $ratwtlvl and $ratalgdenom.
- Removed unneeded declarations.

rtoy-add-globals-nforma 2022-12-07 21:28:41 UTC
Move defmvar/defvar from nforma to globals

Author: Raymond Toy
Author Date: 2022-12-07 21:28:41 UTC

Move defmvar/defvar from nforma to globals

- Moved $powerdisp, $pfeformat, $%edispflag, and $sqrtdispflag.
- Removed unneeded declarations

rtoy-add-globals-mload 2022-12-07 21:02:44 UTC
Move defmvar/defvar from mload to globals

Author: Raymond Toy
Author Date: 2022-12-07 21:02:44 UTC

Move defmvar/defvar from mload to globals

- Moved $load_pathname and *maxima-testdir*.

rtoy-add-globals-mlisp 2022-12-07 20:38:46 UTC
Move defvar from mlisp to globals

Author: Raymond Toy
Author Date: 2022-12-07 20:38:46 UTC

Move defvar from mlisp to globals

- Moved aryp, msump, evarrp, factlist, *nounsflag*, transp, and
  noevalargs.
- Removed unneeded special declarations.

rtoy-add-globals-merror 2022-12-07 15:40:32 UTC
Move defmvar from merror to globals

Author: Raymond Toy
Author Date: 2022-12-07 15:40:32 UTC

Move defmvar from merror to globals

- Moved $error and $errormsg
- Removed unneeded special declarations.

rtoy-add-globals-mdot 2022-12-07 06:05:46 UTC
Move defmvar from mdot to globals

Author: Raymond Toy
Author Date: 2022-12-07 06:05:46 UTC

Move defmvar from mdot to globals

- Moved $dotscrules, $dotdistrib, $dotexptsimp, $dotassoc,
  $doallmxops, $domxmxops, $doscmxops, $scalarmatrixp, and
  $assumescalar.
- Removed unneeded special declarations.

rtoy-add-globals-matrix 2022-12-07 05:36:47 UTC
Move defmvar from matrix to globals

Author: Raymond Toy
Author Date: 2022-12-07 05:36:47 UTC

Move defmvar from matrix to globals

- Moved $detout, $ratmx, $matrix_element_mult, and $matrix_element_add.
- Removed unneeded special declarations.
- Update dependencies in maxima.system.

rtoy-add-globals-mat 2022-12-07 05:04:41 UTC
Move defmvar from mat to globals

Author: Raymond Toy
Author Date: 2022-12-07 05:04:41 UTC

Move defmvar from mat to globals

- Removed unneeded special declarations.

rtoy-add-globals-macsys 2022-12-07 04:07:30 UTC
Move defmvar from macsys to globals

Author: Raymond Toy
Author Date: 2022-12-07 04:07:30 UTC

Move defmvar from macsys to globals

- Moved $showtime, $_, and $__
- Removed unneeded special declarations.

rtoy-add-globals-inmis 2022-12-07 03:50:35 UTC
Move defmvar from inmis to globals

Author: Raymond Toy
Author Date: 2022-12-07 03:50:35 UTC

Move defmvar from inmis to globals

- Moved $listconstvars
- Removed unneeded special declarations.

rtoy-add-globals-gamma 2022-12-07 03:31:08 UTC
Move defmvar from gamma to globals

Author: Raymond Toy
Author Date: 2022-12-07 03:31:08 UTC

Move defmvar from gamma to globals

- Moved $factorial_expand, $beta_expand, and
  $hypergeometric_representation.
- Removed unneeded special declarations.

rtoy-add-globals-float 2022-12-07 03:07:30 UTC
Move defmvar from float to globals

Author: Raymond Toy
Author Date: 2022-12-07 03:07:30 UTC

Move defmvar from float to globals

- Moved fpprec.
- Removed unneeded special declarations.

rtoy-add-globals-dskfn 2022-12-07 00:34:11 UTC
Move defmvar from dskfn to globals

Author: Raymond Toy
Author Date: 2022-12-07 00:34:11 UTC

Move defmvar from dskfn to globals

- Moved $packagefile.
- Removed unneeded special declarations.

rtoy-add-globals-displa 2022-12-07 00:19:18 UTC
Move defmvar from displa to globals

Author: Raymond Toy
Author Date: 2022-12-07 00:19:18 UTC

Move defmvar from displa to globals

- Moved $linel, linel, ttyheight, $known_index_properties,
  and *display-labels-p*.
- Removed unneeded special declarations.
- Updated dependencies in maxima.system.

rtoy-add-globals-defint 2022-12-06 23:27:30 UTC
Move defmvar from defint to globals

Author: Raymond Toy
Author Date: 2022-12-06 23:27:30 UTC

Move defmvar from defint to globals

- Moved *semirat*
- Removed unneeded special declarations.

rtoy-add-globals-csimp 2022-12-06 22:50:36 UTC
Move defvar from csimp to globals

Author: Raymond Toy
Author Date: 2022-12-06 22:50:36 UTC

Move defvar from csimp to globals

- Moved $sumsplitfact
- Removed unneeded special declarations.

rtoy-add-globals-csimp2 2022-12-06 16:37:35 UTC
Move defmvar from csimp2 to globals

Author: Raymond Toy
Author Date: 2022-12-06 16:37:35 UTC

Move defmvar from csimp2 to globals

- Moved $gamma_expand
- Removed unneeded special declarations.
- Updated dependencies in maxima.system.

rtoy-add-globals-cpoly 2022-12-06 16:11:04 UTC
Move defmvar from cpoly to globals

Author: Raymond Toy
Author Date: 2022-12-06 16:11:04 UTC

Move defmvar from cpoly to globals

- Moved $polyfactor
- Removed unneeded special declarations.

rtoy-add-globals-comm 2022-12-06 15:09:57 UTC
Move defvar from comm to globals

Author: Raymond Toy
Author Date: 2022-12-06 15:09:57 UTC

Move defvar from comm to globals

- Moved dummy-variable-operators
- Removed unneeded special declarations.

rtoy-add-globals-comm2 2022-12-06 05:22:09 UTC
Move defmvar from comm2 to globals

Author: Raymond Toy
Author Date: 2022-12-06 05:22:09 UTC

Move defmvar from comm2 to globals

- Moved $rootsconmode
- Removed unneeded special declarations.
- Updated dependencies in maxima.system

rtoy-add-globals-asum 2022-12-06 01:10:08 UTC
Move defmvar from asum to globals

Author: Raymond Toy
Author Date: 2022-12-06 01:10:08 UTC

Move defmvar from asum to globals

- Moved ps-bmt-disrep and silent-taylor-flag
- Removed unneeded special declarations.

rtoy-add-globals-algsys 2022-12-05 23:03:58 UTC
Move defmvar from algsys to globals

Author: Raymond Toy
Author Date: 2022-12-05 23:03:58 UTC

Move defmvar from algsys to globals

- Moved $%rnum_list
- Removed unneeded special declarations

rtoy-remove-option 2022-12-05 04:14:58 UTC
Remove option.lisp

Author: Raymond Toy
Author Date: 2022-12-05 04:14:58 UTC

Remove option.lisp

As discussed in
https://sourceforge.net/p/maxima/mailman/message/37743762/, remove
option.lisp since it basically reproduces the same information as the
@category stuff in the HTML manual.

The information in option.lisp isn't really used anywhere and it's not
currently documented or exposed to the user.

101200 of 358 results

Other repositories

Name Last Modified
lp:~peterpall/maxima/+git/maxima.code 2023-10-18
lp:maxima 2023-10-17
12 of 2 results
You can't create new repositories for Maxima.