From 0077f29ac47a6c879d850addb23f4e007741e7d1 Mon Sep 17 00:00:00 2001
From: Thorsten Blum <thorsten.blum@toblux.com>
Date: Tue, 10 Jan 2017 15:18:30 +0100
Subject: [PATCH] Remove warnings when byte compiling gforth.el

---
 gforth.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gforth.el b/gforth.el
index 23e30397..dd5ffe16 100644
--- a/gforth.el
+++ b/gforth.el
@@ -1101,10 +1101,10 @@ screen number."
 	     (first-line (1+ (* (/ (1- line) forth-l/b) forth-l/b)))
 	     (scr (+ forth-block-base (/ first-line forth-l/b))))
 	(setq overlay-arrow-string forth-overlay-arrow-string)
-	(goto-line first-line)
+	(forward-line first-line)
 	(setq overlay-arrow-position forth-screen-marker)
 	(set-marker forth-screen-marker 
-		    (save-excursion (goto-line first-line) (point)))
+		    (save-excursion (forward-line first-line) (point)))
 	(setq forth-screen-number-string (format "%d" scr))))))
 
 (add-hook 'forth-motion-hooks 'forth-update-show-screen)
-- 
2.11.0

