summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRomain Francoise <romain@orebokech.com>2005-12-06 09:00:49 +0000
committerRomain Francoise <romain@orebokech.com>2005-12-06 09:00:49 +0000
commitbb59edd695967d4d92862e30a3f70f75c28ae81a (patch)
tree2e053b746e51f6bbaa8e2eec2e3a263bca7ec6f4 /lisp
parent531ebe1f9b7720e61fa2f2423049897091499f1f (diff)
downloademacs-bb59edd695967d4d92862e30a3f70f75c28ae81a.tar.gz
(balance-windows): Delete extraneous third arg to `enlarge-window'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/window.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4050b89a449..d65beed999c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-06 Romain Francoise <romain@orebokech.com>
+
+ * window.el (balance-windows): Delete extraneous third arg to
+ `enlarge-window'.
+
2005-12-06 Kenichi Handa <handa@m17n.org>
* international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
diff --git a/lisp/window.el b/lisp/window.el
index 48dd0f4b395..cd4b22f3e7e 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -293,7 +293,7 @@ If WINDOW is nil or omitted, it defaults to the currently selected window."
(when newsize
(enlarge-window (- newsize
(window-height))
- nil t)
+ nil)
(unless (= (window-height) newsize)
(setq done nil))))))
'nomini))))))