# HG changeset patch # User Lucas Bergman # Date 1298560917 21600 # Node ID 3d5c595c229e41920c205118913324eb6ce2e5d5 # Parent b9f4d059eb698a6a8fabccc4be1c9fdd6f6fbbe9 emacs: slightly better window-width resizing behavior diff --git a/.elisp/settings/50.localfuncs.el b/.elisp/settings/50.localfuncs.el --- a/.elisp/settings/50.localfuncs.el +++ b/.elisp/settings/50.localfuncs.el @@ -127,5 +127,5 @@ Interactively, if no argument is given, columns wide. " (interactive "p") - (let* ((cols (if (or (not columns) (> 0 columns)) 80 columns))) + (let* ((cols (if (or (not columns) (>= 0 columns)) 80 columns))) (shrink-window-horizontally (- (window-width) cols))))