diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-12-09 22:49:59 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-12-09 22:49:59 -0500 |
commit | 36dacdabd7a30db7d577d6faee48cb72af59b2f6 (patch) | |
tree | 3c9013bf0fa0b2686ba482a5c0c85efbb57aba78 | |
parent | 82cb3ff79b3391f958464d33b903f8947aa95121 (diff) | |
download | emacs.d-36dacdabd7a30db7d577d6faee48cb72af59b2f6.tar.gz |
Update magit-status advice for renamed function
Magit commit 23f4f8dd3abe4dd7ee57d8edd62421f1f2c6daea introduced
magit-status-internal.
-rw-r--r-- | lisp/init-git.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el index f50237e..ef6b13a 100644 --- a/lisp/init-git.el +++ b/lisp/init-git.el @@ -128,7 +128,7 @@ START-POINT set to the current branch. (user-error "No current branch"))) ;; http://whattheemacsd.com/setup-magit.el-01.html -(defadvice magit-status (around magit-fullscreen activate) +(defadvice magit-status-internal (around magit-fullscreen activate) ad-do-it (delete-other-windows)) |