# HG changeset patch # User Oleksandr Gavenko # Date 1472148995 -10800 # Node ID 920558cbf675e94cdbf5135da94b44b339fdac97 # Parent 6f00eaa73a10bb3fb2871bab00665cf7a8338a91 Fix: Warning: `beginning-of-buffer' is for interactive use only; use `(goto-char (point-min))' instead. diff -r 6f00eaa73a10 -r 920558cbf675 .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))))