From 7b0815ba49c91b047bc04744884a5c699183b8a8 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 2 Aug 2010 08:42:03 +0200 Subject: [PATCH] * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493). --- src/ChangeLog | 5 +++++ src/editfns.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index c382f217a51..0309fe1641f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2010-08-02 Juanma Barranquero + + * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493). + Wording by Drew Adams . + 2010-08-01 Jan Djärv * xterm.h (struct x_output): Add ttip_widget, ttip_window and diff --git a/src/editfns.c b/src/editfns.c index e27e37fb33f..7a336f8cbc4 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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); -- 2.11.4.GIT