diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-03-06 13:23:23 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-03-06 13:23:23 -0500 |
commit | a4e32226ebee93d94744cd9149a73e6b59785cd9 (patch) | |
tree | b74b8819b4905b7cee769c6d7df184f835a23cda /lisp/calculator.el | |
parent | 4c83ed3d48c69e12c91a2ada2d00f4f74be2a42d (diff) | |
download | emacs-a4e32226ebee93d94744cd9149a73e6b59785cd9.tar.gz |
* calculator.el (calculator): Don't bind split-window-keep-point (Bug#5674).
Diffstat (limited to 'lisp/calculator.el')
-rw-r--r-- | lisp/calculator.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/calculator.el b/lisp/calculator.el index 015fb4cd763..d1b9b517e5f 100644 --- a/lisp/calculator.el +++ b/lisp/calculator.el @@ -724,8 +724,7 @@ See the documentation for `calculator-mode' for more information." (progn (cond ((not (get-buffer-window calculator-buffer)) - (let ((split-window-keep-point nil) - (window-min-height 2)) + (let ((window-min-height 2)) ;; maybe leave two lines for our window because of the normal ;; `raised' modeline in Emacs 21 (select-window |