From bf8b34c48717ebfda54697473a4265373aad3eea Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 16 Oct 1998 16:26:34 +0000 Subject: [PATCH] (define-obsolete-function-alias): Use `defalias' instead of `define-function'. --- poe.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poe.el b/poe.el index 090b679..f9e8544 100644 --- 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) ) -- 1.7.10.4