]> git.eshelyaron.com Git - emacs.git/commitdiff
* editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 2 Aug 2010 06:42:03 +0000 (08:42 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 2 Aug 2010 06:42:03 +0000 (08:42 +0200)
src/ChangeLog
src/editfns.c

index c382f217a51172daf78269395d531907d6d24202..0309fe1641f149e516a3e0dfc5ea79178168cbf8 100644 (file)
@@ -1,3 +1,8 @@
+2010-08-02  Juanma Barranquero  <lekktu@gmail.com>
+
+       * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
+       Wording by Drew Adams <drew.adams@oracle.com>.
+
 2010-08-01  Jan Djärv  <jan.h.d@swipnet.se>
 
        * xterm.h (struct x_output): Add ttip_widget, ttip_window and
index e27e37fb33f584c8a3641358f3ac94a919dd8d3f..7a336f8cbc4f497334525a4d39883bbd7b12ee21 100644 (file)
@@ -336,14 +336,14 @@ region_limit (int beginningp)
 }
 
 DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 0, 0,
-       doc: /* Return position of beginning of region, as an integer.  */)
+       doc: /* Return the integer value of point or mark, whichever is smaller.  */)
   (void)
 {
   return region_limit (1);
 }
 
 DEFUN ("region-end", Fregion_end, Sregion_end, 0, 0, 0,
-       doc: /* Return position of end of region, as an integer.  */)
+       doc: /* Return the integer value of point or mark, whichever is larger.  */)
   (void)
 {
   return region_limit (0);