aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorEric S. Raymond <[email protected]>1993-04-23 03:40:03 +0000
committerEric S. Raymond <[email protected]>1993-04-23 03:40:03 +0000
commit80df38a283bb13bf088d8dc8ecabed4af36d6643 (patch)
tree8781224b6622de0215939b31c4871274f559c07d /src/data.c
parente12f351912eb07a6cd49d5faf9ae3d90ba0c8d47 (diff)
(Fdefine_function): Changed name back to Fdefalias, so we get things
in a known-good state.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index df96a3d54f..c9cc6bad38 100644
--- a/src/data.c
+++ b/src/data.c
@@ -525,7 +525,7 @@ DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
return newdef;
}
-DEFUN ("define-function", Fdefine_function, Sdefine_function, 2, 2, 0,
+DEFUN ("defalias", Fdefalias, Sdefalias, 2, 2, 0,
"Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\
Associates the function with the current load file, if any.")
(sym, newdef)
@@ -2153,7 +2153,7 @@ syms_of_data ()
defsubr (&Sboundp);
defsubr (&Sfboundp);
defsubr (&Sfset);
- defsubr (&Sdefine_function);
+ defsubr (&Sdefalias);
defsubr (&Ssetplist);
defsubr (&Ssymbol_value);
defsubr (&Sset);