diff options
| author | Eli Zaretskii | 2013-11-18 18:45:48 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2013-11-18 18:45:48 +0200 |
| commit | 18b35e2c7a3ff95fb4a07e58c3f57c70c65c0701 (patch) | |
| tree | 7a837a755a7c22d3258408cb384d01479ad88232 /src/buffer.h | |
| parent | df87c56cdf6c8c13e8760bdc409e2eb0fda55b0b (diff) | |
| parent | 37c790b38599cc80a16c6a76152abbf8160fe2a1 (diff) | |
| download | emacs-18b35e2c7a3ff95fb4a07e58c3f57c70c65c0701.tar.gz emacs-18b35e2c7a3ff95fb4a07e58c3f57c70c65c0701.zip | |
Merge from mainline.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index a36c0d13c9e..d1a3e50d7cf 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -871,13 +871,19 @@ struct buffer | |||
| 871 | }; | 871 | }; |
| 872 | 872 | ||
| 873 | /* Most code should use these functions to set Lisp fields in struct | 873 | /* Most code should use these functions to set Lisp fields in struct |
| 874 | buffer. */ | 874 | buffer. (Some setters that are private to a single .c file are |
| 875 | defined as static in those files.) */ | ||
| 875 | INLINE void | 876 | INLINE void |
| 876 | bset_bidi_paragraph_direction (struct buffer *b, Lisp_Object val) | 877 | bset_bidi_paragraph_direction (struct buffer *b, Lisp_Object val) |
| 877 | { | 878 | { |
| 878 | b->INTERNAL_FIELD (bidi_paragraph_direction) = val; | 879 | b->INTERNAL_FIELD (bidi_paragraph_direction) = val; |
| 879 | } | 880 | } |
| 880 | INLINE void | 881 | INLINE void |
| 882 | bset_cache_long_scans (struct buffer *b, Lisp_Object val) | ||
| 883 | { | ||
| 884 | b->INTERNAL_FIELD (cache_long_scans) = val; | ||
| 885 | } | ||
| 886 | INLINE void | ||
| 881 | bset_case_canon_table (struct buffer *b, Lisp_Object val) | 887 | bset_case_canon_table (struct buffer *b, Lisp_Object val) |
| 882 | { | 888 | { |
| 883 | b->INTERNAL_FIELD (case_canon_table) = val; | 889 | b->INTERNAL_FIELD (case_canon_table) = val; |