Opened 8 years ago
Last modified 8 years ago
#17043 closed defect
fix scilab interface — at Version 1
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 (last modified by )
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, @@ -495,7 +495,7 @@ def scilab_console(): Scilab, like Sage, remembers its history from one session to another. """ - os.system('scilab -nogui') + os.system('scilab -nw')
Note: See
TracTickets for help on using
tickets.