Hi Waldek,
In your recent commit, you've added output functions for the respective
streams.
https://github.com/hemmecke/fricas-svn/commit/f0f158293c6b191a2ad056f2154f76b89fa0c280#diff-2
But in
https://github.com/hemmecke/fricas-svn/blob/master/src/interp/patches.lisp#L132
variables like $texmacsOutputStream are not initialised.
Patch attached. May I commit?
Ralf
--
You received this message because you are subscribed to the Google Groups "FriCAS -
computer algebra system" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/fricas-devel?hl=en.
>From de55add120867c67144b567c6209ab520f826ab4 Mon Sep 17 00:00:00 2001
From: Ralf Hemmecke <[email protected]>
Date: Sun, 9 Jan 2011 11:48:18 +0100
Subject: [PATCH] initialise output streams
---
src/interp/patches.lisp | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/interp/patches.lisp b/src/interp/patches.lisp
index 47f50a2..9059831 100644
--- a/src/interp/patches.lisp
+++ b/src/interp/patches.lisp
@@ -132,8 +132,11 @@
(setq |$algebraOutputStream|
(setq |$fortranOutputStream|
(setq |$texOutputStream|
- (setq |$formulaOutputStream|
- (make-synonym-stream '*standard-output*)))))
+ (setq |$formulaOutputStream|
+ (setq |$htmlOutputStream|
+ (setq |$mathmlOutputStream|
+ (setq |$texmacsOutputStream|
+ (make-synonym-stream '*standard-output*))))))))
;; non-interactive restarts...
(defun restart0 ()
--
1.7.3.2