Fix: Warning: `beginning-of-buffer' is for interactive use only; use `(goto-char (point-min))' instead.
--- a/maven-central.el Sun Mar 01 13:26:27 2015 +0200
+++ b/maven-central.el Sun Mar 01 13:27:01 2015 +0200
@@ -25,7 +25,7 @@
(let ( (buffer (current-buffer)) json )
(with-temp-buffer
(url-insert buffer)
- (beginning-of-buffer)
+ (goto-char (point-min))
(setq json (json-read))
;; (switch-to-buffer maven-central.buffer-name)
;; (pp json)
@@ -44,7 +44,7 @@
(let ( (buffer (current-buffer)) json )
(with-temp-buffer
(url-insert buffer)
- (beginning-of-buffer)
+ (goto-char (point-min))
(setq json (json-read))
;; (switch-to-buffer maven-central.buffer-name)
;; (pp json)