Fix undo-buffer-kill

It contained a `setq` call with no value.
This commit is contained in:
Gergely Polonkai 2016-11-30 17:33:40 +01:00
parent bea1fa998b
commit 1cd637d158
1 changed files with 1 additions and 1 deletions

View File

@ -182,5 +182,5 @@ http://emacsredux.com/blog/2013/05/22/smarter-navigation-to-the-beginning-of-a-l
(if gpolonkai/last-killed-buffer-file-name
(progn
(find-file gpolonkai/last-killed-buffer-file-name)
(setq gpolonkai/last-killed-buffer-file-name))
(setq gpolonkai/last-killed-buffer-file-name nil))
(message "The buffer last killed didnt visit a file.")))