diff options
| author | Kenichi Handa | 2012-10-06 21:55:09 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2012-10-06 21:55:09 +0900 |
| commit | 16ddec7e9e6adcf615db097d9627d490ca29208c (patch) | |
| tree | 1c16b9565c9cca81ec8f5b10f0f4110340d4654a /src/marker.c | |
| parent | 2b89bca49d55cec1a004353354a76de2972c68f3 (diff) | |
| parent | d5acb99a199d83cde1a43482709c3e9d4ec34b2f (diff) | |
| download | emacs-16ddec7e9e6adcf615db097d9627d490ca29208c.tar.gz emacs-16ddec7e9e6adcf615db097d9627d490ca29208c.zip | |
merge trunk
Diffstat (limited to 'src/marker.c')
| -rw-r--r-- | src/marker.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/marker.c b/src/marker.c index 0c4e8cb3b55..e01647bdb2a 100644 --- a/src/marker.c +++ b/src/marker.c | |||
| @@ -427,7 +427,7 @@ Returns nil if MARKER points nowhere. */) | |||
| 427 | 427 | ||
| 428 | /* Change M so it points to B at CHARPOS and BYTEPOS. */ | 428 | /* Change M so it points to B at CHARPOS and BYTEPOS. */ |
| 429 | 429 | ||
| 430 | static inline void | 430 | static void |
| 431 | attach_marker (struct Lisp_Marker *m, struct buffer *b, | 431 | attach_marker (struct Lisp_Marker *m, struct buffer *b, |
| 432 | ptrdiff_t charpos, ptrdiff_t bytepos) | 432 | ptrdiff_t charpos, ptrdiff_t bytepos) |
| 433 | { | 433 | { |
| @@ -454,7 +454,7 @@ attach_marker (struct Lisp_Marker *m, struct buffer *b, | |||
| 454 | whether BUFFER is a buffer object and return buffer pointer | 454 | whether BUFFER is a buffer object and return buffer pointer |
| 455 | corresponding to BUFFER if BUFFER is live, or NULL otherwise. */ | 455 | corresponding to BUFFER if BUFFER is live, or NULL otherwise. */ |
| 456 | 456 | ||
| 457 | static inline struct buffer * | 457 | static struct buffer * |
| 458 | live_buffer (Lisp_Object buffer) | 458 | live_buffer (Lisp_Object buffer) |
| 459 | { | 459 | { |
| 460 | struct buffer *b; | 460 | struct buffer *b; |
| @@ -477,7 +477,7 @@ live_buffer (Lisp_Object buffer) | |||
| 477 | /* Internal function to set MARKER in BUFFER at POSITION. Non-zero | 477 | /* Internal function to set MARKER in BUFFER at POSITION. Non-zero |
| 478 | RESTRICTED means limit the POSITION by the visible part of BUFFER. */ | 478 | RESTRICTED means limit the POSITION by the visible part of BUFFER. */ |
| 479 | 479 | ||
| 480 | static inline Lisp_Object | 480 | static Lisp_Object |
| 481 | set_marker_internal (Lisp_Object marker, Lisp_Object position, | 481 | set_marker_internal (Lisp_Object marker, Lisp_Object position, |
| 482 | Lisp_Object buffer, int restricted) | 482 | Lisp_Object buffer, int restricted) |
| 483 | { | 483 | { |