changeset 43042:63639e690611

(region_limit): Nicer error message.
author Richard M. Stallman <rms@gnu.org>
date Fri, 01 Feb 2002 04:35:03 +0000
parents 983767b5ccc0
children 98b7448c1aac
files src/editfns.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/editfns.c	Fri Feb 01 04:34:21 2002 +0000
+++ b/src/editfns.c	Fri Feb 01 04:35:03 2002 +0000
@@ -293,7 +293,7 @@
   
   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);