X-Sharp / XSharpPublic

Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
Apache License 2.0
112 stars 38 forks source link

Harbour dialect missing commands #1435

Open cpyrgas opened 8 months ago

cpyrgas commented 8 months ago

Those commands where found in a Harbour app and are missing from X#:

set bell off set esca on set talk off set stat off set safe off set scor off set conf on set PROC TO lib

RobertvanderHulst commented 8 months ago

These should not be too difficult to implement. For some of these the member in the Set enum is already there, but we're doing nothing with them. The question becomes: what to do with them. Most of these are related to the CLipper GET system

cpyrgas commented 8 months ago

Robert, I'm playing with the get system right now, let me work on it a bit more and will come up with suggestions/implementation.