]> code.delx.au - gnu-emacs/blobdiff - lisp/calc/calc-bin.el
(calc-sec, calc-csc, calc-cot, calc-sech, calc-csch, calc-coth)
[gnu-emacs] / lisp / calc / calc-bin.el
index 3efc24e130546df2e93932993bbf446540767e7b..e960220c09b2811276f82e6bf81977f9357598ec 100644 (file)
@@ -3,8 +3,7 @@
 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001 Free Software Foundation, Inc.
 
 ;; Author: David Gillespie <daveg@synaptics.com>
-;; Maintainers: D. Goel <deego@gnufans.org> 
-;;              Colin Walters <walters@debian.org>
+;; Maintainer: Jay Belanger <belanger@truman.edu>
 
 ;; This file is part of GNU Emacs.
 
 ;;; Code:
 
 ;; This file is autoloaded from calc-ext.el.
-(require 'calc-ext)
 
+(require 'calc-ext)
 (require 'calc-macs)
 
-(defun calc-Need-calc-bin () nil)
-
-
 ;;; b-prefix binary commands.
 
 (defun calc-and (n)
   (let ((fmt (car calc-float-format))
        (figs (nth 1 calc-float-format))
        (point calc-point-char)
-       (str nil))
+       (str nil)
+        pos)
     (if (eq fmt 'fix)
        (let* ((afigs (math-abs figs))
               (fp (math-float-parts a (> afigs 0)))
          (if explo
              (let ((estr (let ((calc-number-radix 10)
                                (calc-group-digits nil))
-                           (setq estr (math-format-number
-                                       (math-sub explo eadj))))))
+                            (math-format-number
+                             (math-sub explo eadj)))))
                (setq str (if (or (memq calc-language '(math maple))
                                  (> calc-number-radix 14))
                              (format "%s*%d.^%s" str calc-number-radix estr)
                                math-radix-digits-cache))))))))
 
 (defvar math-radix-float-cache-tag nil)
+(defvar math-radix-float-cache)
 
 (defun math-radix-float-power (n)
   (if (eq n 0)
                                                       calc-number-radix))))))
                               math-radix-float-cache))))))))
 
+(provide 'calc-bin)
 
+;;; arch-tag: f6dba7bc-53b2-41ae-919c-c266ab0ca8b3
 ;;; calc-bin.el ends here