From: Karl Heuer Date: Wed, 12 Oct 1994 05:17:52 +0000 (+0000) Subject: (Fbyte_code): Skip optimization for all Lisp_Misc types. X-Git-Tag: emacs-19.34~6387 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=61b9bf7b2ce23aa159a9da6829d449b79063bec4;p=emacs.git (Fbyte_code): Skip optimization for all Lisp_Misc types. --- diff --git a/src/bytecode.c b/src/bytecode.c index 9a5d231dd61..4e458ebe79c 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -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); } }