aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman2002-02-01 04:35:03 +0000
committerRichard M. Stallman2002-02-01 04:35:03 +0000
commit7b5ad687dcffbbe08827a6cad2fe255258b2f4ec (patch)
tree349aa4715d856ed60ff5f544feec7fff92cef6d6 /src/editfns.c
parentb1887814c31f69bfa5620e16ade245a1650046b3 (diff)
downloademacs-7b5ad687dcffbbe08827a6cad2fe255258b2f4ec.tar.gz
emacs-7b5ad687dcffbbe08827a6cad2fe255258b2f4ec.zip
(region_limit): Nicer error message.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index fac0db045eb..dabd920e947 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -293,7 +293,7 @@ region_limit (beginningp)
293 293
294 m = Fmarker_position (current_buffer->mark); 294 m = Fmarker_position (current_buffer->mark);
295 if (NILP (m)) 295 if (NILP (m))
296 error ("There is no region now"); 296 error ("The mark is not set now, so there is no region");
297 297
298 if ((PT < XFASTINT (m)) == beginningp) 298 if ((PT < XFASTINT (m)) == beginningp)
299 m = make_number (PT); 299 m = make_number (PT);