aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-04 17:32:22 +0200
committerLars Magne Ingebrigtsen2011-07-04 17:32:22 +0200
commit7c301272b49a20b7a1628bdad572264ada9fd790 (patch)
tree268e1c5ecc6496b990d53b8179ca58a2286ccc16 /src
parentad63790719a974b50ef4abfbe886a35bc61d647e (diff)
downloademacs-7c301272b49a20b7a1628bdad572264ada9fd790.tar.gz
emacs-7c301272b49a20b7a1628bdad572264ada9fd790.zip
* buffer.c (Foverlay_put): Say what the return value is
(bug#7835).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/buffer.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4e2658f2c1e..70f6fb7469f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org> 12011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * buffer.c (Foverlay_put): Say what the return value is
4 (bug#7835).
5
3 * fileio.c (barf_or_query_if_file_exists): Check first if the file 6 * fileio.c (barf_or_query_if_file_exists): Check first if the file
4 is a directory before asking whether to use the file name 7 is a directory before asking whether to use the file name
5 (bug#7564). 8 (bug#7564).
diff --git a/src/buffer.c b/src/buffer.c
index 006153b0424..2339416eb36 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4056,7 +4056,8 @@ DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
4056} 4056}
4057 4057
4058DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0, 4058DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
4059 doc: /* Set one property of overlay OVERLAY: give property PROP value VALUE. */) 4059 doc: /* Set one property of overlay OVERLAY: give property PROP value VALUE.
4060VALUE will be returned.*/)
4060 (Lisp_Object overlay, Lisp_Object prop, Lisp_Object value) 4061 (Lisp_Object overlay, Lisp_Object prop, Lisp_Object value)
4061{ 4062{
4062 Lisp_Object tail, buffer; 4063 Lisp_Object tail, buffer;