comparison src/editfns.c @ 4047:e950abdc9ed2

(region_limit): Declare Vmark_even_if_inactive.
author Roland McGrath <roland@gnu.org>
date Thu, 08 Jul 1993 23:45:22 +0000
parents 03a4c3912c13
children 74004fb63311
comparison
equal deleted inserted replaced
4046:79184227e7f9 4047:e950abdc9ed2
195 195
196 static Lisp_Object 196 static Lisp_Object
197 region_limit (beginningp) 197 region_limit (beginningp)
198 int beginningp; 198 int beginningp;
199 { 199 {
200 extern Lisp_Object Vmark_even_if_inactive; /* Defined in callint.c. */
200 register Lisp_Object m; 201 register Lisp_Object m;
201 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive) 202 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
202 && NILP (current_buffer->mark_active)) 203 && NILP (current_buffer->mark_active))
203 Fsignal (Qmark_inactive, Qnil); 204 Fsignal (Qmark_inactive, Qnil);
204 m = Fmarker_position (current_buffer->mark); 205 m = Fmarker_position (current_buffer->mark);