]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert earlier Ffset change
authorGlenn Morris <rgm@gnu.org>
Sun, 11 Dec 2016 03:18:24 +0000 (19:18 -0800)
committerGlenn Morris <rgm@gnu.org>
Sun, 11 Dec 2016 03:18:24 +0000 (19:18 -0800)
* src/data.c (Ffset): Allow nil again, since it caused
eager macro-expansion failures.

src/data.c

index 52cfe4ae4a3c36e734cec3d253a2436a55d10fa1..09d94f57a8ef823a072739635900ea9fef7b4e51 100644 (file)
@@ -733,9 +733,6 @@ DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
 {
   register Lisp_Object function;
   CHECK_SYMBOL (symbol);
-  /* Perhaps not quite the right error signal, but seems good enough.  */
-  if (NILP (symbol))
-    xsignal1 (Qsetting_constant, symbol);
 
   function = XSYMBOL (symbol)->function;