]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/editors/emacs/emacs.factor
basis: removing unnecessary method stack effects.
[factor.git] / basis / editors / emacs / emacs.factor
index 051f7c1bfbe9c7ddd240233fbd685f68fe503521..ec1e08fb5b3db05aab16221c6099d463292fe7be 100644 (file)
@@ -10,7 +10,7 @@ SYMBOL: emacsclient-args
 
 HOOK: find-emacsclient os ( -- path )
 
-M: object find-emacsclient ( -- path )
+M: object find-emacsclient
     "emacsclient" ?find-in-path ;
 
 M: windows find-emacsclient
@@ -20,7 +20,7 @@ M: windows find-emacsclient
         [ "emacsclient.exe" ]
     } 0|| ;
 
-M: emacsclient editor-command ( file line -- command )
+M: emacsclient editor-command
     [
         emacsclient-path get [ find-emacsclient ] unless* ,
         emacsclient-args get [ { "-a=emacs" "--no-wait" } ] unless* %