# HG changeset patch # User Richard M. Stallman # Date 781311462 0 # Node ID ee98668926833a2e4edf059fb16ea53071bcb86e # Parent fdccacaec14523fc080d9e43afd9a9aaab429daa (goto-line): Call prefix-numeric-value. diff -r fdccacaec145 -r ee9866892683 lisp/simple.el --- a/lisp/simple.el Tue Oct 04 22:55:50 1994 +0000 +++ b/lisp/simple.el Tue Oct 04 22:57:42 1994 +0000 @@ -595,6 +595,7 @@ (defun goto-line (arg) "Goto line ARG, counting from line 1 at beginning of buffer." (interactive "NGoto line: ") + (setq arg (prefix-numeric-value arg)) (save-restriction (widen) (goto-char 1)