Function: math-remove-percentsigns

math-remove-percentsigns is a byte-compiled function defined in calc-aent.el.gz.

Signature

(math-remove-percentsigns X)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-aent.el.gz
(defun math-remove-percentsigns (x)
  (if (string-match "\\`\\(.*\\)%\\(.*\\)\\'" x)
      (math-remove-percentsigns
       (concat (math-match-substring x 1) "o'o" (math-match-substring x 2)))
    x))