From d9ddd4aa6ab6a2f1913f40cdf16a0ca86b275590 Mon Sep 17 00:00:00 2001 From: Marije Baalman Date: Fri, 2 Jan 2009 21:26:42 +0000 Subject: [PATCH] cleaned up openHelpFile for Class and emacs extensions git-svn-id: https://supercollider.svn.sourceforge.net/svnroot/supercollider/trunk@8372 a380766d-ff14-0410-b294-a243070f3f08 --- sc/extDocument.sc | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) 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