]> git.eshelyaron.com Git - emacs.git/commitdiff
(calcFunc-fdiv): Allow `fdiv' to divide fractions.
authorVincent Belaïche <vincent.belaiche@gmail.com>
Wed, 7 Apr 2010 01:33:00 +0000 (20:33 -0500)
committerJay Belanger <jay.p.belanger@gmail.com>
Wed, 7 Apr 2010 01:33:00 +0000 (20:33 -0500)
lisp/calc/calc-frac.el

index a01f5b8b9facf47afab8afeca2c7257852b37f0a..d1164bec3c55ecf39b23670f1877d5aae509de51 100644 (file)
            n temp))
     (math-div n d)))
 
-
-
 (defun calcFunc-fdiv (a b)   ; [R I I] [Public]
-  (if (Math-num-integerp a)
-      (if (Math-num-integerp b)
-         (if (Math-zerop b)
-             (math-reject-arg a "*Division by zero")
-           (math-make-frac (math-trunc a) (math-trunc b)))
-       (math-reject-arg b 'integerp))
-    (math-reject-arg a 'integerp)))
+  (cond
+   ((Math-num-integerp a)
+    (cond 
+     ((Math-num-integerp b)
+      (if (Math-zerop b)
+         (math-reject-arg a "*Division by zero")
+       (math-make-frac (math-trunc a) (math-trunc b))))
+     ((eq (car-safe b) 'frac)
+      (if (Math-zerop (cadr b))
+         (math-reject-arg a "*Division by zero")
+       (math-make-frac (math-mul (math-trunc a) (caddr b)) (cadr b))))
+     (t (math-reject-arg b 'integerp))))
+   ((eq (car-safe a) 'frac)
+    (cond 
+     ((Math-num-integerp b)
+      (if (Math-zerop b)
+         (math-reject-arg a "*Division by zero")
+       (math-make-frac (cadr a) (math-mul (caddr a) (math-trunc b)))))
+     ((eq (car-safe b) 'frac)
+      (if (Math-zerop (cadr b))
+         (math-reject-arg a "*Division by zero")
+       (math-make-frac (math-mul (cadr a) (caddr b)) (math-mul (caddr a) (cadr b)))))
+     (t (math-reject-arg b 'integerp))))
+   (t 
+    (math-reject-arg a 'integerp))))
 
 (provide 'calc-frac)