|
From: 本田康晃 <yas...@gm...> - 2014-04-19 00:49:23
|
Dear Robert san, Barton san, maxima users, I just modified the code as suggested by Robert san, in Github at https://github.com/YasuakiHonda/qepmax As I could not repro the bug Barton san has encountered, I cannot guarantee this fixes the issue, but worth a try. Thanks and best regards, Yasuaki Honda, Chiba, Japan 2014-04-16 0:41 GMT+09:00 Robert Dodier <rob...@gm...>: > On 2014-04-15, Barton Willis <wi...@un...> wrote: > > > (defun $prepare_for_qepcad () > > (setf (get '%and 'strsym) '(#\ #\/ #\\ #\ )) ;; <--- GCL and CCL both > think something is wrong here > > (setf (get '%or 'strsym) '(#\ #\\ #\/ #\ )) > > Maybe the first and last characters want to be #\Space. Just guessing. > Maybe it's simpler and clearer to write > > (setf (...) (coerce " /\ " 'list)) > (setf (...) (coerce " \/ " 'list)) > > ?? > > best > > Robert Dodier > > > > ------------------------------------------------------------------------------ > Learn Graph Databases - Download FREE O'Reilly Book > "Graph Databases" is the definitive new guide to graph databases and their > applications. Written by three acclaimed leaders in the field, > this first edition is now available. Download your free book today! > http://p.sf.net/sfu/NeoTech > _______________________________________________ > Maxima-discuss mailing list > Max...@li... > https://lists.sourceforge.net/lists/listinfo/maxima-discuss > |