Fix: Warning: `beginning-of-buffer' is for interactive use only; use `(goto-char (point-min))' instead.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Thu, 25 Aug 2016 21:16:35 +0300
changeset 1417 920558cbf675
parent 1416 6f00eaa73a10
child 1418 a824a9955b53
Fix: Warning: `beginning-of-buffer' is for interactive use only; use `(goto-char (point-min))' instead.
.emacs-my
--- a/.emacs-my	Thu Aug 25 20:30:31 2016 +0300
+++ b/.emacs-my	Thu Aug 25 21:16:35 2016 +0300
@@ -86,7 +86,7 @@
 Useful during package development."
   (interactive)
   (save-excursion
-    (beginning-of-buffer)
+    (goto-char (point-min))
     (while (not (eobp))
       (eval-defun nil)
       (end-of-defun))))