Fixed: ‘goto-line’ is for interactive use only; use ‘forward-line’ instead.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 07 May 2019 00:48:54 +0300
changeset 1588 a2f88a6df8ab
parent 1587 8770e2984f58
child 1589 ae79beae573a
Fixed: ‘goto-line’ is for interactive use only; use ‘forward-line’ instead.
.emacs-my
--- a/.emacs-my	Tue May 07 00:48:25 2019 +0300
+++ b/.emacs-my	Tue May 07 00:48:54 2019 +0300
@@ -3363,7 +3363,7 @@
         (if (not path)
             (message "Can't find file %s.java" file)
           (find-file-other-window path)
-          (goto-line (string-to-number line)))))))
+          (forward-line (string-to-number line)))))))
 
 (my--eval-after-load log4-hi-mode
   (define-key log4-hi-mode-map [C-return] #'my-java-exeption))