aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 44a757f19c7..4a6edcda53c 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2458,7 +2458,7 @@ set_overlay_plist (Lisp_Object overlay, Lisp_Object plist)
2458/* Get text properties of S. */ 2458/* Get text properties of S. */
2459 2459
2460LISP_INLINE INTERVAL 2460LISP_INLINE INTERVAL
2461string_get_intervals (Lisp_Object s) 2461string_intervals (Lisp_Object s)
2462{ 2462{
2463 return XSTRING (s)->intervals; 2463 return XSTRING (s)->intervals;
2464} 2464}
@@ -2466,7 +2466,7 @@ string_get_intervals (Lisp_Object s)
2466/* Set text properties of S to I. */ 2466/* Set text properties of S to I. */
2467 2467
2468LISP_INLINE void 2468LISP_INLINE void
2469string_set_intervals (Lisp_Object s, INTERVAL i) 2469set_string_intervals (Lisp_Object s, INTERVAL i)
2470{ 2470{
2471 XSTRING (s)->intervals = i; 2471 XSTRING (s)->intervals = i;
2472} 2472}