summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-undo.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:26:56 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:26:56 +0000
commit2c2198cd5eb9af963ccd1bae9c07cdceba347087 (patch)
tree83841041c62bb0e2333e7b614975124a6add91fe /lisp/calc/calc-undo.el
parent07b7530a38d9d2516b3ee5f6a0338bd7c9b2670e (diff)
Add a provide statement.
(calc-Need-calc-undo): Remove it.
Diffstat (limited to 'lisp/calc/calc-undo.el')
-rw-r--r--lisp/calc/calc-undo.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/calc/calc-undo.el b/lisp/calc/calc-undo.el
index 4e9a14f4aa..a49c34010a 100644
--- a/lisp/calc/calc-undo.el
+++ b/lisp/calc/calc-undo.el
@@ -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.
@@ -28,13 +27,10 @@
;;; Code:
;; This file is autoloaded from calc-ext.el.
-(require 'calc-ext)
+(require 'calc-ext)
(require 'calc-macs)
-(defun calc-Need-calc-undo () nil)
-
-
;;; Undo.
(defun calc-undo (n)
@@ -150,5 +146,7 @@
(or (eq (car (car list)) 'pop)
(calc-undo-does-pushes (cdr list)))))
+(provide 'calc-undo)
+
;;; arch-tag: eeb485d2-fb3d-454a-9d79-450af1f50d6c
;;; calc-undo.el ends here