Subject: how to stop the annotation of lists by filenames?
From: Robert Dodier
Date: Thu, 29 May 2008 09:41:34 -0600
On Thu, May 29, 2008 at 6:58 AM, Oliver Kullmann
<O.Kullmann at swansea.ac.uk> wrote:
> it seems that the standard behaviour of Maxima is,
> that when a list is created by a function defined
> in a file, then this list is annotated with the
> full path to this file and the linenumber of
> the creating expression.
Yeah --- that information is used by the debugger.
To suppress it, I guess one could either strip such annotations
from existing stuff, or prevent the annotations to begin with.
To prevent the annotations, try this:
:lisp (defun add-lineinfo (x))
before loading stuff. Does that help? I didn't try it.
Maybe someone wants to invent a function to walk an expression
and strip out the debugging info.
HTH
Robert Dodier