aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/buffer.c7
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d70ccc3d42d..bcde95958dd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12005-02-23 Lute Kamstra <lute@gnu.org>
2
3 * buffer.c (Foverlay_buffer): Doc fix.
4
12005-02-22 Kim F. Storm <storm@cua.dk> 52005-02-22 Kim F. Storm <storm@cua.dk>
2 6
3 * minibuf.c (Ftry_completion, Fall_completions): Allow both string 7 * minibuf.c (Ftry_completion, Fall_completions): Allow both string
diff --git a/src/buffer.c b/src/buffer.c
index 153b0ca0bb2..be4f4dcae69 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,6 +1,6 @@
1/* Buffer manipulation primitives for GNU Emacs. 1/* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985,86,87,88,89,93,94,95,97,98, 1999, 2000, 2001, 02, 03, 2004 2 Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99,
3 Free Software Foundation, Inc. 3 2000, 01, 02, 03, 04, 2005 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -3846,7 +3846,8 @@ DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
3846} 3846}
3847 3847
3848DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0, 3848DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
3849 doc: /* Return the buffer OVERLAY belongs to. */) 3849 doc: /* Return the buffer OVERLAY belongs to.
3850Return nil if OVERLAY has been deleted. */)
3850 (overlay) 3851 (overlay)
3851 Lisp_Object overlay; 3852 Lisp_Object overlay;
3852{ 3853{