What problem can happen if the goto-line function is used in a non-interactive elisp program? Its docstring gives a warning saying that:
This function is usually the wrong thing to use in a Lisp program. What you probably want instead is something like:
(goto-char (point-min)) (forward-line (1- N))
Moreover, when I try to byte-compile-file my init file including goto-line, I get a unpleasant warning like this once again:
.emacs:170:19:Warning: `goto-line' used from Lisp code
That command is designed for interactive use only
Is using goto-line in a non-interactive program really so dangerous? Relatedly, why is the suggested forward-line solution preferable?
goto-lineat EmacsWiki:AUCTeX:th-evince-sync. – dkim Aug 4 '12 at 3:35goto-linestatement appeared to be a more intuitive (and compact) way to go to the n-th line than theforward-lineidiom. Moreover, I came across some programs on the Internet that were usinggoto-linenon-interactively. Now I understand thatgoto-linecan have some side-effects that a developer might not expect. As for narrowing,forward-lineis also resctricted to the accessible portion of a buffer. – dkim Aug 4 '12 at 13:58