projects
/
elisp
/
apel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
359c935
)
(define-obsolete-function-alias): Use `defalias' instead of
author
morioka
<morioka>
Fri, 16 Oct 1998 16:26:34 +0000
(16:26 +0000)
committer
morioka
<morioka>
Fri, 16 Oct 1998 16:26:34 +0000
(16:26 +0000)
`define-function'.
poe.el
patch
|
blob
|
history
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)
)