diff options
| author | Dan Nicolaescu | 2010-11-20 21:20:50 -0800 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-11-20 21:20:50 -0800 |
| commit | b7982059664f947cf99a296005adbb596837120a (patch) | |
| tree | 0f4c95a02fc2e5359bb7ef763a074534ee1a4897 /src/buffer.h | |
| parent | 33726611e7b43838428dff13752535b85d5bda4f (diff) | |
| download | emacs-b7982059664f947cf99a296005adbb596837120a.tar.gz emacs-b7982059664f947cf99a296005adbb596837120a.zip | |
Remove INLINE uses in header files.
* src/intervals.h (temp_set_point, temp_set_point_both):
* src/buffer.h (offset_intervals, copy_intervals): Remove INLINE.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.h b/src/buffer.h index 9e3de6f23d5..79acd16b6fd 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -227,10 +227,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 227 | (temp_set_point ((buffer), (position))) | 227 | (temp_set_point ((buffer), (position))) |
| 228 | 228 | ||
| 229 | extern void set_point (EMACS_INT); | 229 | extern void set_point (EMACS_INT); |
| 230 | extern INLINE void temp_set_point (struct buffer *, EMACS_INT); | 230 | extern void temp_set_point (struct buffer *, EMACS_INT); |
| 231 | extern void set_point_both (EMACS_INT, EMACS_INT); | 231 | extern void set_point_both (EMACS_INT, EMACS_INT); |
| 232 | extern INLINE void temp_set_point_both (struct buffer *, | 232 | extern void temp_set_point_both (struct buffer *, |
| 233 | EMACS_INT, EMACS_INT); | 233 | EMACS_INT, EMACS_INT); |
| 234 | extern void enlarge_buffer_text (struct buffer *, EMACS_INT); | 234 | extern void enlarge_buffer_text (struct buffer *, EMACS_INT); |
| 235 | 235 | ||
| 236 | 236 | ||