aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2016-12-10 19:18:24 -0800
committerGlenn Morris2016-12-10 19:18:24 -0800
commit3fd44333e91f4575bfa746e6f21406c788001c01 (patch)
treea131df8cd7d3b5fe39ff09c466947643bb2f5d18 /src
parentf37f93f364aed34275f515a8c933f48a0e2735b9 (diff)
downloademacs-3fd44333e91f4575bfa746e6f21406c788001c01.tar.gz
emacs-3fd44333e91f4575bfa746e6f21406c788001c01.zip
Revert earlier Ffset change
* src/data.c (Ffset): Allow nil again, since it caused eager macro-expansion failures.
Diffstat (limited to 'src')
-rw-r--r--src/data.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/data.c b/src/data.c
index 52cfe4ae4a3..09d94f57a8e 100644
--- a/src/data.c
+++ b/src/data.c
@@ -733,9 +733,6 @@ DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
733{ 733{
734 register Lisp_Object function; 734 register Lisp_Object function;
735 CHECK_SYMBOL (symbol); 735 CHECK_SYMBOL (symbol);
736 /* Perhaps not quite the right error signal, but seems good enough. */
737 if (NILP (symbol))
738 xsignal1 (Qsetting_constant, symbol);
739 736
740 function = XSYMBOL (symbol)->function; 737 function = XSYMBOL (symbol)->function;
741 738