+2008-06-28 John Paul Wallington <jpw@pobox.com>
+
+ * calc/calc.el (defmath): Add `doc-string' decl. Add docstring.
+
2008-06-28 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-handle-file-modes): Handle symlinks.
;;;###autoload
(defmacro defmath (func args &rest body) ; [Public]
+ "Define Calc function.
+
+Like `defun' except that code in the body of the definition can
+make use of the full range of Calc data types and the usual
+arithmetic operations are converted to their Calc equivalents.
+
+The prefix `calcFunc-' is added to the specified name to get the
+actual Lisp function name.
+
+See Info node `(calc)Defining Functions'."
+ (declare (doc-string 3))
(require 'calc-ext)
(math-do-defmath func args body))