Mercurial > hg > xemacs-beta
comparison src/event-stream.c @ 2236:caf11603feef
[xemacs-hg @ 2004-08-26 20:09:23 by james]
Remove unused variable 'n' and the unnecessary call that set it.
author | james |
---|---|
date | Thu, 26 Aug 2004 20:09:27 +0000 |
parents | fd0cbe945410 |
children | 04bc9d2f42c7 |
comparison
equal
deleted
inserted
replaced
2235:767ec43eb39c | 2236:caf11603feef |
---|---|
3355 | 3355 |
3356 if (VECTORP (result) || STRINGP (result)) | 3356 if (VECTORP (result) || STRINGP (result)) |
3357 { | 3357 { |
3358 Lisp_Object new_chain = key_sequence_to_event_chain (result); | 3358 Lisp_Object new_chain = key_sequence_to_event_chain (result); |
3359 Lisp_Object tempev; | 3359 Lisp_Object tempev; |
3360 int n; | |
3361 | 3360 |
3362 /* If the first_mungeable_event of the other munger is | 3361 /* If the first_mungeable_event of the other munger is |
3363 within the events we're munging, then it will point to | 3362 within the events we're munging, then it will point to |
3364 deallocated events afterwards, which is bad -- so make it | 3363 deallocated events afterwards, which is bad -- so make it |
3365 point at the beginning of the munged events. */ | 3364 point at the beginning of the munged events. */ |
3373 break; | 3372 break; |
3374 } | 3373 } |
3375 } | 3374 } |
3376 | 3375 |
3377 /* Now munge the current event chain in the command builder. */ | 3376 /* Now munge the current event chain in the command builder. */ |
3378 n = event_chain_count (suffix); | |
3379 command_builder_replace_suffix (builder, suffix, new_chain); | 3377 command_builder_replace_suffix (builder, suffix, new_chain); |
3380 builder->first_mungeable_event[munge] = Qnil; | 3378 builder->first_mungeable_event[munge] = Qnil; |
3381 | 3379 |
3382 *did_munge = 1; | 3380 *did_munge = 1; |
3383 | 3381 |