How can I get Emacs to reload all my definitions that I have updated in .emacs without restarting Emacs?
.emacs
Define it in your init file and call by M-x reload-user-init-file
(defun reload-user-init-file() (interactive) (load-file user-init-file))