diff --git a/sc/extDocument.sc b/sc/extDocument.sc index 3482d22..55d2504 100644 --- a/sc/extDocument.sc +++ b/sc/extDocument.sc @@ -31,15 +31,10 @@ + String{ - findHelpFile { - if ( Emacs.initialized) { - Emacs.evalLispExpression(['sclang-find-help', this].asLispString); - } - } openHelpFile { if ( Emacs.initialized) { - this.findHelpFile; + Emacs.evalLispExpression(['sclang-find-help', this].asLispString); } } @@ -51,23 +46,4 @@ } } -+ Class{ - openHelpFile { - if ( Emacs.initialized) { - this.asString.findHelpFile; - } - } -} - -+ Method{ - - openHelpFile { - if ( Emacs.initialized) { - this.asString.findHelpFile; - } - } -} - - - // EOF