Function: calc-break-selections
calc-break-selections is an autoloaded, interactive and byte-compiled
function defined in calc-sel.el.gz.
Signature
(calc-break-selections ARG)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-sel.el.gz
(defun calc-break-selections (arg)
(interactive "P")
(calc-wrapper
(calc-preserve-point)
(setq calc-assoc-selections (if arg
(<= (prefix-numeric-value arg) 0)
(not calc-assoc-selections)))
(message (if calc-assoc-selections
"Selection treats a+b+c as a sum of three terms"
"Selection treats a+b+c as (a+b)+c"))))