diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 4 |
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 | ||
| 2460 | LISP_INLINE INTERVAL | 2460 | LISP_INLINE INTERVAL |
| 2461 | string_get_intervals (Lisp_Object s) | 2461 | string_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 | ||
| 2468 | LISP_INLINE void | 2468 | LISP_INLINE void |
| 2469 | string_set_intervals (Lisp_Object s, INTERVAL i) | 2469 | set_string_intervals (Lisp_Object s, INTERVAL i) |
| 2470 | { | 2470 | { |
| 2471 | XSTRING (s)->intervals = i; | 2471 | XSTRING (s)->intervals = i; |
| 2472 | } | 2472 | } |