branch: elpa/golden-ratio
commit 4f24b707da43ace4a20cc84d2fff31fb8ecace1c
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Allow using golden-ration command when golden-ratio-mode is disabled (#51).
    
    * golden-ratio.el (golden-ratio): Check if golden-ration is called 
interactively.
---
 golden-ratio.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/golden-ratio.el b/golden-ratio.el
index d32d73de92..58190b7f83 100644
--- a/golden-ratio.el
+++ b/golden-ratio.el
@@ -127,10 +127,10 @@ will not cause the window to be resized to the golden 
ratio."
               golden-ratio-exclude-modes)))
 
 ;;;###autoload
-(defun golden-ratio ()
+(defun golden-ratio (&optional arg)
   "Resizes current window to the golden-ratio's size specs."
-  (interactive)
-  (unless (or (not golden-ratio-mode)
+  (interactive "p")
+  (unless (or (and (not golden-ratio-mode) (null arg))
               (window-minibuffer-p)
               (one-window-p)
               (golden-ratio-exclude-major-mode-p)

Reply via email to