From cfbd5020bc470a80438ccee8521e455d0409de58 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 14 Jul 2014 20:14:35 +0100 Subject: Emacs: refactor toggle-window-dedicated --- tag-emacs/emacs.d/init.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tag-emacs') diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 0da15cb..7681d60 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1159,12 +1159,13 @@ "Toggle whether the current active window is dedicated or not" (interactive) (message - (if (let (window (get-buffer-window (current-buffer))) + "Window '%s' is %s" + (current-buffer) + (if (let ((window (get-buffer-window (current-buffer)))) (set-window-dedicated-p window (not (window-dedicated-p window)))) - "Window '%s' is dedicated" - "Window '%s' is normal") - (current-buffer))) + "dedicated" + "normal"))) (req-package popwin :if (and (>= emacs-major-version 24) -- cgit 1.4.1