2 Nov 2010 20:13
Re : Disabling the automated code deletion when compiling.
Rémy <remy_chretien <at> yahoo.fr>
2010-11-02 19:13:55 GMT
2010-11-02 19:13:55 GMT
I am afraid that snippets from code and logs will not be very efficient to track
down the problem. The disappearance of important features of the program is
quite ubiquitous and the code itself is very dense. Anyway, here is an example
of an 'unfortunate' code deletion.
-----the source code:
(defun piy (wff prefix num window)
(unless maint:*dont-ask*
(unless (if (symbolp wff)
(find-mode wff nil t)
(if (and (symbolp *last-gwff-typed*) ; added this check -- ceb 6/2/99
(wffeq-ab (get *last-gwff-typed* 'represents) wff))
(find-mode *last-gwff-typed* nil t)
(if (symbolp prefix)
(find-mode prefix nil t)
nil)))
(if (query "Would you like to give a mode for this theorem?" t)
(let ((mode nil))
(loop until mode do
(prompt-read mode nil (msgf "Mode")
'tps-mode '$
((? (msgf "Name of a mode (indicating a collection of flag
settings)"))
(?? (msgf "A mode for automatic search."))))
(if (member mode global-modelist)
(mode mode)
(let ((y (car (remove-if-not #'(lambda (x) (memq (car x) '(mode
mode1)))
(gethash mode core::*lib-masterindex*)))))
(Continue reading)
> Extra question: I try to compile with various version, to determine when the
> features exactly start to fade, and the following happens (with version <19):
> I use a Makefile, with this instruction:
>
> tps_compile: bin lisp tps-compile.lisp make_tps_sys
> <at> date
> <at> /bin/sh -ec 'echo "(load \"../tps-compile.lisp\") (core:exit-from-lisp)"' |
> (cd bin; $(lisp))
>

RSS Feed