lisp/simple.el (goto-line): Use string-to-number to provide a
numeric argument to read-number.
+2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
+
+ * simple.el (goto-line): Use string-to-number to provide a
+ numeric argument to read-number.
+
2011-07-27 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
(save-excursion
(skip-chars-backward "0-9")
(if (looking-at "[0-9]")
- (buffer-substring-no-properties
- (point)
- (progn (skip-chars-forward "0-9")
- (point))))))
+ (string-to-number
+ (buffer-substring-no-properties
+ (point)
+ (progn (skip-chars-forward "0-9")
+ (point)))))))
;; Decide if we're switching buffers.
(buffer
(if (consp current-prefix-arg)