(define-obsolete-function-alias): Use `defalias' instead of
authormorioka <morioka>
Fri, 16 Oct 1998 16:26:34 +0000 (16:26 +0000)
committermorioka <morioka>
Fri, 16 Oct 1998 16:26:34 +0000 (16:26 +0000)
`define-function'.

poe.el

diff --git a/poe.el b/poe.el
index 090b679..f9e8544 100644 (file)
--- a/poe.el
+++ b/poe.el
@@ -379,7 +379,7 @@ This function does not move point. [XEmacs emulating function]"
   "Define OLDFUN as an obsolete alias for function NEWFUN.
 This makes calling OLDFUN equivalent to calling NEWFUN and marks OLDFUN
 as obsolete. [XEmacs emulating function]"
-  (define-function oldfun newfun)
+  (defalias oldfun newfun)
   (make-obsolete oldfun newfun)
   )