branch: elpa/forth-mode
commit 186bae4853cacea71bb14c4943d803fe578a3d35
Author: Lars Brinkhoff <[email protected]>
Commit: Lars Brinkhoff <[email protected]>

    Fix set-process-window-size parameter order.
---
 forth-interaction-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/forth-interaction-mode.el b/forth-interaction-mode.el
index 4c8c820c6d..760fc23fbf 100644
--- a/forth-interaction-mode.el
+++ b/forth-interaction-mode.el
@@ -72,7 +72,7 @@
       (run-hooks 'run-forth-hooks)
       (make-comint-in-buffer "forth" buffer forth-executable)
       (set-process-window-size (get-buffer-process buffer)
-                              (window-width) (window-height))
+                              (window-height) (window-width))
       (set-process-sentinel (get-buffer-process buffer)
                            'forth-interaction-sentinel)
       (forth-interaction-mode)

Reply via email to