Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.soft-sys.math.maple > #318 > unrolled thread

Strange Syrup Emacs Error

Started byThomas Dean <tomdean@speakeasy.net>
First post2012-01-18 13:50 -0800
Last post2012-01-19 09:55 -0800
Articles 4 — 2 participants

Back to article view | Back to comp.soft-sys.math.maple


Contents

  Strange Syrup Emacs Error Thomas Dean <tomdean@speakeasy.net> - 2012-01-18 13:50 -0800
    Re: Strange Syrup Emacs Error Thomas Dean <tomdean@speakeasy.net> - 2012-01-18 15:59 -0800
    Re: Strange Syrup Emacs Error Joe Riel <joer@san.rr.com> - 2012-01-19 08:54 -0800
      Re: Strange Syrup Emacs Error Thomas Dean <tomdean@speakeasy.net> - 2012-01-19 09:55 -0800

#318 — Strange Syrup Emacs Error

FromThomas Dean <tomdean@speakeasy.net>
Date2012-01-18 13:50 -0800
SubjectStrange Syrup Emacs Error
Message-ID<q7CdndaG3Pcio4rSnZ2dnUVZ_qudnZ2d@megapath.net>
I am using Maple 15, Syrup 0.1.16, Emacs 23.3.1, maplev-mode 2.155
(may be 2.20?)

restart;
if not assigned(maplev_print) then  maplev_print := print fi:
interface(prettyprint=1,verboseproc=2,errorbreak=0,
screenheight=infinity,warnlevel=2,errorcursor=false):
kernelopts(printbytes=false):

libname;
"/usr/local/maple11/lib", "/home/tomdean/maple/toolbox/Syrup/lib",
     "/home/tomdean/maple/toolbox/emacs/lib"

with(Syrup);
Error, (in with) at offset 7 in `:-4.m`, unexpected DAG type: 0,117,(u)

I omitted the END_OF_INPUT messages.

The last two entries are picked up by maple startup, not my init file.

Syrup works OK from the maple GUI and cmaple.

Tom Dean

[toc] | [next] | [standalone]


#319

FromThomas Dean <tomdean@speakeasy.net>
Date2012-01-18 15:59 -0800
Message-ID<le6dnd_erKNqwYrSnZ2dnUVZ_qydnZ2d@megapath.net>
In reply to#318
On 01/18/12 13:50, Thomas Dean wrote:
>
> libname;
> "/usr/local/maple11/lib", "/home/tomdean/maple/toolbox/Syrup/lib",
> "/home/tomdean/maple/toolbox/emacs/lib"
>
> The last two entries are picked up by maple startup, not my init file.
OOPS.  The last two entries in libname.

Tom Dean

[toc] | [prev] | [next] | [standalone]


#320

FromJoe Riel <joer@san.rr.com>
Date2012-01-19 08:54 -0800
Message-ID<874nvrocos.fsf@san.rr.com>
In reply to#318
Thomas Dean <tomdean@speakeasy.net> writes:

> I am using Maple 15, Syrup 0.1.16, Emacs 23.3.1, maplev-mode 2.155
> (may be 2.20?)
>
> restart;
> if not assigned(maplev_print) then  maplev_print := print fi:
> interface(prettyprint=1,verboseproc=2,errorbreak=0,
> screenheight=infinity,warnlevel=2,errorcursor=false):
> kernelopts(printbytes=false):
>
> libname;
> "/usr/local/maple11/lib", "/home/tomdean/maple/toolbox/Syrup/lib",
>     "/home/tomdean/maple/toolbox/emacs/lib"

The first entry (/usr/local/maple11/lib) should not be there.
Are you sure the Maple is Maple15?  Execute interface(version)
to confirm what kernel you are running.

Probably you haven't assigned maplev-default-release.  That should
be done in your .emacs file:

(setq maplev-default-release "15")

With multiple Maple installed you have to customize
maplev-executable-alist.  Mine is

(setq  maplev-executable-alist 
 '(
   ("16"  . ("maple"    nil "mint"))
   ("15"  . ("maple15" nil "mint15"))
   ("14"  . ("maple14" nil "mint14"))
   ("13"  . ("maple13" nil "mint13"))))

where I have shell scripts such that maple15 launches the maple 15 tty
version.  You might want to do

(setq maplev-executable-alist
'(
   ( "15" . ("/usr/local/maple15/bin/maple" nil "/usr/local/maple15/bin/mint"))
   ( "11" . ("/usr/local/maple11/bin/maple" nil "/usr/local/maple11/bin/mint"))))

assuming that's where your maples are installed.


-- 
Joe Riel

[toc] | [prev] | [next] | [standalone]


#321

FromThomas Dean <tomdean@speakeasy.net>
Date2012-01-19 09:55 -0800
Message-ID<PJadncCaKfiwxIXSnZ2dnUVZ_o2dnZ2d@megapath.net>
In reply to#320
On 01/19/12 08:54, Joe Riel wrote:
> Thomas Dean<tomdean@speakeasy.net>  writes:
>
>> I am using Maple 15, Syrup 0.1.16, Emacs 23.3.1, maplev-mode 2.155
>> (may be 2.20?)
>>
>> restart;
>> if not assigned(maplev_print) then  maplev_print := print fi:
>> interface(prettyprint=1,verboseproc=2,errorbreak=0,
>> screenheight=infinity,warnlevel=2,errorcursor=false):
>> kernelopts(printbytes=false):
>>
>> libname;
>> "/usr/local/maple11/lib", "/home/tomdean/maple/toolbox/Syrup/lib",
>>      "/home/tomdean/maple/toolbox/emacs/lib"
>
> The first entry (/usr/local/maple11/lib) should not be there.
> Are you sure the Maple is Maple15?  Execute interface(version)
> to confirm what kernel you are running.
>
> Probably you haven't assigned maplev-default-release.  That should
> be done in your .emacs file:
>
> (setq maplev-default-release "15")
>
> With multiple Maple installed you have to customize
> maplev-executable-alist.  Mine is
>
> (setq  maplev-executable-alist
>   '(
>     ("16"  . ("maple"    nil "mint"))
>     ("15"  . ("maple15" nil "mint15"))
>     ("14"  . ("maple14" nil "mint14"))
>     ("13"  . ("maple13" nil "mint13"))))
>
> where I have shell scripts such that maple15 launches the maple 15 tty
> version.  You might want to do
>
> (setq maplev-executable-alist
> '(
>     ( "15" . ("/usr/local/maple15/bin/maple" nil "/usr/local/maple15/bin/mint"))
>     ( "11" . ("/usr/local/maple11/bin/maple" nil "/usr/local/maple11/bin/mint"))))
>
> assuming that's where your maples are installed.
>
>
Thanks, that was the problem.

I was running FreeBSD and that worked OK.  I booted Linux, worked for a 
few hours on another project and then started Maple.  Too many OS.

Tom Dean

[toc] | [prev] | [standalone]


Back to top | Article view | comp.soft-sys.math.maple


csiph-web