]> git.eshelyaron.com Git - emacs.git/commitdiff
(region_limit): Nicer error message.
authorRichard M. Stallman <rms@gnu.org>
Fri, 1 Feb 2002 04:35:03 +0000 (04:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 1 Feb 2002 04:35:03 +0000 (04:35 +0000)
src/editfns.c

index fac0db045ebc4e31ec2965711d307d5616c1317c..dabd920e94750b2f2f94a642eaa15854212e32c1 100644 (file)
@@ -293,7 +293,7 @@ region_limit (beginningp)
   
   m = Fmarker_position (current_buffer->mark);
   if (NILP (m))
-    error ("There is no region now");
+    error ("The mark is not set now, so there is no region");
   
   if ((PT < XFASTINT (m)) == beginningp)
     m = make_number (PT);