From: morioka Date: Fri, 16 Oct 1998 16:26:34 +0000 (+0000) Subject: (define-obsolete-function-alias): Use `defalias' instead of X-Git-Tag: apel-9_4~4 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=bf8b34c48717ebfda54697473a4265373aad3eea;p=elisp%2Fapel.git (define-obsolete-function-alias): Use `defalias' instead of `define-function'. --- 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) )