From 7c8c5fe5356b633947e069c9e8d99a547d5bc039 Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Wed, 28 Sep 2011 11:47:15 +0200 Subject: [PATCH] scel: cleanup of class library recompilation Signed-off-by: Tim Blechmann --- sc/extPlatform.sc | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/sc/extPlatform.sc b/sc/extPlatform.sc index 8e0a173..445e8e8 100644 --- a/sc/extPlatform.sc +++ b/sc/extPlatform.sc @@ -1,15 +1,13 @@ -+ Platform { - recompile{ - if ( this.hasFeature( \emacs ) ) { - Emacs.evalLispExpression( "(sclang-start)" ); - }; - } -} - + LinuxPlatform { - recompile{ + recompile { if ( this.hasFeature( \emacs ) ) { - Emacs.evalLispExpression( "(sclang-recompile)" ); - }; + Emacs.evalLispExpression( "(sclang-recompile)" ) + } { + this.prRecompile + } + } + + prRecompile { + _Recompile } }