1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

Move provide to end of file.

(calc-need-macros): Remove unnecessary function.
This commit is contained in:
Jay Belanger 2004-11-29 05:56:56 +00:00
parent 5eb3eedabb
commit f50dfd02cb

View 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.
@ -27,10 +26,6 @@
;;; Code:
(provide 'calc-macs)
(defun calc-need-macros () nil)
(defmacro calc-wrapper (&rest body)
`(calc-do (function (lambda ()
,@body))))
@ -201,5 +196,7 @@
(or (consp b)
(< a b))))
(provide 'calc-macs)
;;; arch-tag: 08ba8ec2-fcff-4b80-a079-ec661bdb057e
;;; calc-macs.el ends here