src/eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2011-04-02 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
|
||||
|
||||
2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
|
||||
|
||||
@@ -1297,7 +1297,7 @@ unwind_to_catch (struct catchtag *catch, Lisp_Object value)
|
||||
byte_stack_list = catch->byte_stack;
|
||||
gcprolist = catch->gcpro;
|
||||
#ifdef DEBUG_GCPRO
|
||||
gcpro_level = gcprolist ? gcprolist->level + 1 : gcpro_level = 0;
|
||||
gcpro_level = gcprolist ? gcprolist->level + 1 : 0;
|
||||
#endif
|
||||
backtrace_list = catch->backlist;
|
||||
lisp_eval_depth = catch->lisp_eval_depth;
|
||||
|
||||
Reference in New Issue
Block a user