# HG changeset patch # User Jay Belanger # Date 1198776816 0 # Node ID 3c99a3e95b64c314b1e76f9fcc99e616ced6d941 # Parent f18b45437f897d7b8cfb61c72aa6ae7a423a2002 (math-remove-percentsigns): Change placeholder for percent signs. diff -r f18b45437f89 -r 3c99a3e95b64 lisp/calc/calc-aent.el --- a/lisp/calc/calc-aent.el Thu Dec 27 17:32:59 2007 +0000 +++ b/lisp/calc/calc-aent.el Thu Dec 27 17:33:36 2007 +0000 @@ -1020,11 +1020,9 @@ x)) (defun math-remove-percentsigns (x) - (if (string-match "^%" x) - (setq x (concat "I#'" (substring x 1)))) (if (string-match "\\`\\(.*\\)%\\(.*\\)\\'" x) (math-remove-percentsigns - (concat (math-match-substring x 1) "'" (math-match-substring x 2))) + (concat (math-match-substring x 1) "o'o" (math-match-substring x 2))) x)) (defun math-restore-dashes (x)