comparison src/intervals.c @ 34959:b96af6cd903d

(get_local_map): Remove unused variable `tem'.
author Eli Zaretskii <eliz@gnu.org>
date Tue, 02 Jan 2001 13:59:23 +0000
parents c3435dc00ed7
children f39ff8270082
comparison
equal deleted inserted replaced
34958:e3133339e30c 34959:b96af6cd903d
2172 get_local_map (position, buffer, type) 2172 get_local_map (position, buffer, type)
2173 register int position; 2173 register int position;
2174 register struct buffer *buffer; 2174 register struct buffer *buffer;
2175 enum map_property type; 2175 enum map_property type;
2176 { 2176 {
2177 Lisp_Object prop, tem, lispy_position, lispy_buffer; 2177 Lisp_Object prop, lispy_position, lispy_buffer;
2178 int old_begv, old_zv, old_begv_byte, old_zv_byte; 2178 int old_begv, old_zv, old_begv_byte, old_zv_byte;
2179 2179
2180 /* Perhaps we should just change `position' to the limit. */ 2180 /* Perhaps we should just change `position' to the limit. */
2181 if (position > BUF_Z (buffer) || position < BUF_BEG (buffer)) 2181 if (position > BUF_Z (buffer) || position < BUF_BEG (buffer))
2182 abort (); 2182 abort ();