+2007-12-27 Jay Belanger <jay.p.belanger@gmail.com>
+
+ * calc/calc-aent.el (math-remove-percentsigns):
+ * calc/calccomp.el (math-to-percentsigns): Change placeholder
+ for percent signs.
+
2007-12-27 Eric S. Raymond <esr@snark.thyrsus.com>
* vc.el (vc-dired-ignorable-p, vc-dired-hook): Speed optimization;
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)