From 3edc7cf02151e10367aae2c10d32b36a1e26727f Mon Sep 17 00:00:00 2001 From: "chris.double" Date: Sun, 8 Oct 2006 10:37:52 +0000 Subject: [PATCH] emacs: fix emacsclient stack effect It was leaving the result of 'system' on the stack. --- contrib/emacs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/emacs.factor b/contrib/emacs.factor index 28fcfc90e6..d2b4cb96f9 100644 --- a/contrib/emacs.factor +++ b/contrib/emacs.factor @@ -6,7 +6,7 @@ namespaces ; IN: emacs : emacsclient ( file line -- ) -number>string "emacsclient --no-wait +" swap append " " rot append3 system ; +number>string "emacsclient --no-wait +" swap append " " rot append3 system drop ; : emacs ( word -- ) where first2 emacsclient ; -- 2.34.1