Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: Joe Riel Newsgroups: comp.soft-sys.math.maple Subject: Re: Strange Syrup Emacs Error Date: Thu, 19 Jan 2012 08:54:27 -0800 Organization: A noiseless patient Spider Lines: 47 Message-ID: <874nvrocos.fsf@san.rr.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: mx04.eternal-september.org; posting-host="fkgjSOZ+03w83W7QjZBmIg"; logging-data="15431"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX197z8Aj/uZZ5Wm9LTkEithe" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) Cancel-Lock: sha1:uRF+HTcA68yf8M8N1H8k6Ho9Wy8= sha1:qxP1p+mFItq+09KhRthEfPpPpcM= Xref: x330-a1.tempe.blueboxinc.net comp.soft-sys.math.maple:320 Thomas Dean 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