aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/textprop.c b/src/textprop.c
index b6895fc426a..872912ea706 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License
17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18 18
19#include <config.h> 19#include <config.h>
20#include <setjmp.h> 20
21#include "lisp.h" 21#include "lisp.h"
22#include "intervals.h" 22#include "intervals.h"
23#include "character.h" 23#include "character.h"
@@ -556,7 +556,8 @@ If POSITION is at the end of OBJECT, the value is nil. */)
556 556
557DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0, 557DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0,
558 doc: /* Return the value of POSITION's property PROP, in OBJECT. 558 doc: /* Return the value of POSITION's property PROP, in OBJECT.
559OBJECT is optional and defaults to the current buffer. 559OBJECT should be a buffer or a string; if omitted or nil, it defaults
560to the current buffer.
560If POSITION is at the end of OBJECT, the value is nil. */) 561If POSITION is at the end of OBJECT, the value is nil. */)
561 (Lisp_Object position, Lisp_Object prop, Lisp_Object object) 562 (Lisp_Object position, Lisp_Object prop, Lisp_Object object)
562{ 563{