Opened 8 years ago
Last modified 8 years ago
#17043 closed defect
fix scilab interface — at Initial Version
Reported by: | was | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | sage-6.4 |
Component: | interfaces | Keywords: | |
Cc: | Merged in: | ||
Authors: | Reviewers: | ||
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description
The Sage Scilab interface is broken. The fix is pretty trivial, and I guess is a change in a command line flag to scilab:
diff --git a/src/sage/interfaces/scilab.py b/src/sage/interfaces/scilab.py index bc4a508..7e1d475 100644 --- a/src/sage/interfaces/scilab.py +++ b/src/sage/interfaces/scilab.py @@ -218,7 +218,7 @@ class Scilab(Expect): Expect.__init__(self, name = 'scilab', prompt = '-->', - command = "scilab -nogui", + command = "scilab -nw", maxread = maxread, server = server, server_tmpdir = server_tmpdir,
Note: See
TracTickets for help on using
tickets.