emacs: fix emacsclient stack effect

It was leaving the result of 'system' on the stack.
chris.double 2006-10-08 10:37:52 +00:00
parent 0c9bd24059
commit 3edc7cf021
1 changed files with 1 additions and 1 deletions

View File

@ -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 ;