]> git.eshelyaron.com Git - emacs.git/commitdiff
Set calc-make-windows-dedicated to nil by default
authorStefan Kangas <stefan@marxist.se>
Tue, 14 Dec 2021 02:38:11 +0000 (03:38 +0100)
committerStefan Kangas <stefan@marxist.se>
Tue, 14 Dec 2021 02:40:10 +0000 (03:40 +0100)
* lisp/calc/calc.el (calc-make-windows-dedicated):
Default to nil.  (Bug#52016)

etc/NEWS
lisp/calc/calc.el

index eb65213ac2fe9b19f4556195d82070bc00b5feda..d2565e50e1edb0e3074e40095b4519a465a6bfb8 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1588,9 +1588,9 @@ and the result is not truncated in any way.
 It no longer has lower precedence than '+' and '-'.
 
 ---
-*** Calc now marks its windows dedicated.
-The new user option 'calc-make-windows-dedicated' controls this.  It
-is t by default; set to nil to get back the old behavior.
+*** New user option 'calc-make-windows-dedicated'.
+When this user option is non-nil, Calc will mark its windows as
+dedicated.
 
 ** Calendar
 
index 553bdc9c6edb0eb06bec0480e12a63956e6d9560..e97315165b3266561e777a520207da0d9945879a 100644 (file)
@@ -1423,7 +1423,7 @@ commands given here will actually operate on the *Calculator* stack."
     (require 'calc-ext)
     (calc-set-language calc-language calc-language-option t)))
 
-(defcustom calc-make-windows-dedicated t
+(defcustom calc-make-windows-dedicated nil
   "If non-nil, windows displaying Calc buffers will be marked dedicated.
 See `window-dedicated-p' for what that means."
   :version "28.1"