.emacs-my
changeset 1417 920558cbf675
parent 1416 6f00eaa73a10
child 1418 a824a9955b53
equal deleted inserted replaced
1416:6f00eaa73a10 1417:920558cbf675
    84 (defun my/eval-buffer ()
    84 (defun my/eval-buffer ()
    85   "Evaluate entire buffer with re-assigning values to `defvar' / `defcustom'.
    85   "Evaluate entire buffer with re-assigning values to `defvar' / `defcustom'.
    86 Useful during package development."
    86 Useful during package development."
    87   (interactive)
    87   (interactive)
    88   (save-excursion
    88   (save-excursion
    89     (beginning-of-buffer)
    89     (goto-char (point-min))
    90     (while (not (eobp))
    90     (while (not (eobp))
    91       (eval-defun nil)
    91       (eval-defun nil)
    92       (end-of-defun))))
    92       (end-of-defun))))
    93 
    93 
    94 (defun my/load-library (library)
    94 (defun my/load-library (library)