aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1993-04-23 03:40:03 +0000
committerEric S. Raymond1993-04-23 03:40:03 +0000
commit80df38a283bb13bf088d8dc8ecabed4af36d6643 (patch)
tree8781224b6622de0215939b31c4871274f559c07d
parente12f351912eb07a6cd49d5faf9ae3d90ba0c8d47 (diff)
downloademacs-80df38a283bb13bf088d8dc8ecabed4af36d6643.tar.gz
emacs-80df38a283bb13bf088d8dc8ecabed4af36d6643.zip
(Fdefine_function): Changed name back to Fdefalias, so we get things
in a known-good state.
-rw-r--r--src/data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index df96a3d54f6..c9cc6bad384 100644
--- a/src/data.c
+++ b/src/data.c
@@ -525,7 +525,7 @@ DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
525 return newdef; 525 return newdef;
526} 526}
527 527
528DEFUN ("define-function", Fdefine_function, Sdefine_function, 2, 2, 0, 528DEFUN ("defalias", Fdefalias, Sdefalias, 2, 2, 0,
529 "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\ 529 "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\
530Associates the function with the current load file, if any.") 530Associates the function with the current load file, if any.")
531 (sym, newdef) 531 (sym, newdef)
@@ -2153,7 +2153,7 @@ syms_of_data ()
2153 defsubr (&Sboundp); 2153 defsubr (&Sboundp);
2154 defsubr (&Sfboundp); 2154 defsubr (&Sfboundp);
2155 defsubr (&Sfset); 2155 defsubr (&Sfset);
2156 defsubr (&Sdefine_function); 2156 defsubr (&Sdefalias);
2157 defsubr (&Ssetplist); 2157 defsubr (&Ssetplist);
2158 defsubr (&Ssymbol_value); 2158 defsubr (&Ssymbol_value);
2159 defsubr (&Sset); 2159 defsubr (&Sset);