# HG changeset patch # User james # Date 1093550967 0 # Node ID caf11603feefa997092dd642443d25828caa48c5 # Parent 767ec43eb39c1c76949452dca1cb8874c8b3227d [xemacs-hg @ 2004-08-26 20:09:23 by james] Remove unused variable 'n' and the unnecessary call that set it. diff -r 767ec43eb39c -r caf11603feef src/ChangeLog --- a/src/ChangeLog Thu Aug 26 18:47:03 2004 +0000 +++ b/src/ChangeLog Thu Aug 26 20:09:27 2004 +0000 @@ -1,3 +1,7 @@ +2004-08-26 Jerry James + + * event-stream.c (munge_keymap_translate): Remove unused variable n. + 2004-08-26 Jerry James * glyphs-eimage.c (tiff_memory_write): Use RETURN_NOT_REACHED. diff -r 767ec43eb39c -r caf11603feef src/event-stream.c --- a/src/event-stream.c Thu Aug 26 18:47:03 2004 +0000 +++ b/src/event-stream.c Thu Aug 26 20:09:27 2004 +0000 @@ -3357,7 +3357,6 @@ { Lisp_Object new_chain = key_sequence_to_event_chain (result); Lisp_Object tempev; - int n; /* If the first_mungeable_event of the other munger is within the events we're munging, then it will point to @@ -3375,7 +3374,6 @@ } /* Now munge the current event chain in the command builder. */ - n = event_chain_count (suffix); command_builder_replace_suffix (builder, suffix, new_chain); builder->first_mungeable_event[munge] = Qnil;