(define-obsolete-function-alias): New function.
authormorioka <morioka>
Fri, 16 Oct 1998 16:25:25 +0000 (16:25 +0000)
committermorioka <morioka>
Fri, 16 Oct 1998 16:25:25 +0000 (16:25 +0000)
poe.el

diff --git a/poe.el b/poe.el
index 90b9d66..090b679 100644 (file)
--- a/poe.el
+++ b/poe.el
@@ -375,6 +375,14 @@ This function does not move point. [XEmacs emulating function]"
       (and (consp obj)(eq (car obj) 'lambda))
       ))
 
+(defsubst-maybe define-obsolete-function-alias (oldfun newfun)
+  "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)
+  (make-obsolete oldfun newfun)
+  )
+
 
 ;;; @ end
 ;;;