From: Lars Magne Ingebrigtsen Date: Mon, 4 Jul 2011 15:32:22 +0000 (+0200) Subject: * buffer.c (Foverlay_put): Say what the return value is X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/7c301272b49a20b7a1628bdad572264ada9fd790 * buffer.c (Foverlay_put): Say what the return value is (bug#7835). --- diff --git a/src/ChangeLog b/src/ChangeLog index 4e2658f2c1..70f6fb7469 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2011-07-04 Lars Magne Ingebrigtsen + * buffer.c (Foverlay_put): Say what the return value is + (bug#7835). + * fileio.c (barf_or_query_if_file_exists): Check first if the file is a directory before asking whether to use the file name (bug#7564). diff --git a/src/buffer.c b/src/buffer.c index 006153b042..2339416eb3 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -4056,7 +4056,8 @@ DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0, } DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0, - doc: /* Set one property of overlay OVERLAY: give property PROP value VALUE. */) + doc: /* Set one property of overlay OVERLAY: give property PROP value VALUE. +VALUE will be returned.*/) (Lisp_Object overlay, Lisp_Object prop, Lisp_Object value) { Lisp_Object tail, buffer;