1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

(Fbyte_code): Skip optimization for all Lisp_Misc types.

This commit is contained in:
Karl Heuer 1994-10-12 05:17:52 +00:00
parent 1a0f90f7f9
commit 61b9bf7b2c

View file

@ -350,12 +350,9 @@ If the third argument is incorrect, Emacs may crash.")
case Lisp_Symbol:
if (!EQ (v2, Qunbound))
break;
case Lisp_Intfwd:
case Lisp_Boolfwd:
case Lisp_Objfwd:
case Lisp_Misc:
case Lisp_Buffer_Local_Value:
case Lisp_Some_Buffer_Local_Value:
case Lisp_Buffer_Objfwd:
v2 = Fsymbol_value (v1);
}
}