On 17-6-2012 17:53, Aditya Mahajan wrote:
Hi,

context --purgeall deletes all temporary files (i.e., files containing
"-temp-"). In fact, I had requested this feature so that the filter
module does not clutter the current directory with temporary files.

However, there is a bug. ConTeXt deletes all files containg "-temp"
(note the missing "-" at the end). So,

$ touch A1-temperature.tex
$ context --purgeall

gives

mtx-context     | purged files: A1-temperature.tex

AFAICS, mtx-context.lua is correct. It contains "-temp-" as expected.
So, I don't know why files containing "-temp" are deleted.

hm, shouldn't

local special_runfiles = {
    "-mpgraph", "-mprun", "-temp-"
}

be:

local special_runfiles = {
    "%-mpgraph", "%-mprun", "%-temp%-"
}

can you test that?

Hans

-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
    tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                             | www.pragma-pod.nl
-----------------------------------------------------------------


___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to