From 0a5b663d23db568734ea5b2f979cc81230107821 Mon Sep 17 00:00:00 2001 From: Sam Steingold Date: Mon, 25 Nov 2019 10:14:50 -0500 Subject: [PATCH] add ein:exit as an alias to ein:quit and make both autoloaded --- lisp/ein-notebook.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/ein-notebook.el b/lisp/ein-notebook.el index 460d7c2..e1f6e4a 100644 --- a/lisp/ein-notebook.el +++ b/lisp/ein-notebook.el @@ -1783,6 +1783,10 @@ the first argument and CBARGS as the rest of arguments." (add-hook 'kill-emacs-query-functions 'ein:notebook-close-notebooks t) +;;;###autoload +(defalias 'ein:exit 'ein:quit) + +;;;###autoload (defun ein:quit (&optional force) "Close all notebooks and servers." (interactive "P")