From: <ap...@us...> - 2024-09-24 22:39:14
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Maxima CAS". The branch, master has been updated via 6464edaa0c1bf180bc18a001aeb9b3943762666f (commit) from 7c5a1555235da2b8993aa2e30a3d4ce22ffe271f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6464edaa0c1bf180bc18a001aeb9b3943762666f Author: Robert Dodier <rob...@so...> Date: Tue Sep 24 15:35:53 2024 -0700 In Maxima function trace, call $LOAD instead of LOAD-AND-TELL to ensure that the to-be-loaded file is located by $FILE_SEARCH1. This is the same thing that the autoloading mechanism does. Fixes bug reported to mailing list 2024-09-24: "stringp() throws deprecation warnings on first call" (Although that business about the deprecation warnings is a separate bug.) diff --git a/src/mtrace.lisp b/src/mtrace.lisp index 592689f62..e1e61147e 100644 --- a/src/mtrace.lisp +++ b/src/mtrace.lisp @@ -616,7 +616,7 @@ (let ((try (macsyma-fsymeval-sub fun))) (cond (try try) ((get fun 'autoload) - (load-and-tell (get fun 'autoload)) + ($load (get fun 'autoload)) (setq try (macsyma-fsymeval-sub fun)) (or try (mtell (intl:gettext "trace: ~@:M has no functional properties after autoloading.~%") ----------------------------------------------------------------------- Summary of changes: src/mtrace.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Maxima CAS |