diff src/alloc.c @ 4923:8ee3c10d1ed5

remove old no-longer-useful kludgy compiled-fun annotations hack -------------------- ChangeLog entries follow: -------------------- src/ChangeLog addition: 2010-02-03 Ben Wing <ben@xemacs.org> * alloc.c (Fmake_byte_code): * lread.c: * lread.c (readevalloop): * lread.c (Fread): * lread.c (Fread_from_string): * lread.c (read_list_conser): * lread.c (read_list): * lread.c (vars_of_lread): Remove the old kludgy stuff bracketed by `#ifdef COMPILED_FUNCTION_ANNOTATION_HACK_OLD_WAY'.
author Ben Wing <ben@xemacs.org>
date Wed, 03 Feb 2010 08:50:00 -0600
parents 17362f371cc2
children cbe181529c34
line wrap: on
line diff
--- a/src/alloc.c	Wed Feb 03 08:03:15 2010 -0600
+++ b/src/alloc.c	Wed Feb 03 08:50:00 2010 -0600
@@ -1930,12 +1930,7 @@
   f->stack_depth = (unsigned short) XINT (stack_depth);
 
 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
-#ifdef COMPILED_FUNCTION_ANNOTATION_HACK_OLD_WAY
-  if (!NILP (Vcurrent_compiled_function_annotation))
-    f->annotated = Vcurrent_compiled_function_annotation;
-  else
-#endif /* COMPILED_FUNCTION_ANNOTATION_HACK_OLD_WAY */
-    f->annotated = Vload_file_name_internal;
+  f->annotated = Vload_file_name_internal;
 #endif /* COMPILED_FUNCTION_ANNOTATION_HACK */
 
   /* doc_string may be nil, string, int, or a cons (string . int).