| Summary: | >=sci-mathematics/maxima-9.5.3 lisp error "out of range" | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Artemii <aaaaaa111111> |
| Component: | Current packages | Assignee: | Gentoo Science Mathematics related packages <sci-mathematics> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | AMD64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Artemii
2006-11-09 12:44:11 UTC
excuse me version is >=sci-mathematics/maxima-5.9.3 LC_ALL is nil, and reads before LANG and LC_MESSAGES (init-cl.lisp). A temporary (while projects developers don't fix it) fix is read LANG before LC_ALL
This is diff for init-cl.lisp
217,219c217,219
< (setq locale (or (maxima-getenv "LANG")
< (maxima-getenv "LC_ALL")
< (maxima-getenv "LC_MESSAGES")))
---
> (setq locale (or (maxima-getenv "LC_ALL")
> (maxima-getenv "LC_MESSAGES")
> (maxima-getenv "LANG")))
(In reply to comment #2) > LC_ALL is nil, and reads before LANG and LC_MESSAGES (init-cl.lisp). Authors fix this bug in 5.11.0 I have just bumped this package to 5.11.0 and so hopefully this is now fixed. Thanks to Andrey Grozin <A.G.Grozin@inp.nsk.su> and Sebastien Fabbro <seb@ist.utl.pt> for the work they put into this ebuild in the overlay. |