diff options
| author | Eli Zaretskii | 2013-03-06 18:35:23 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2013-03-06 18:35:23 +0200 |
| commit | a611149e46d0a6927e9c276d4cf2089b7cfb7e05 (patch) | |
| tree | 27b367d14ad868560646cf0cc273d6d885c46274 /src/bidi.c | |
| parent | d26e478eaa7c743b999fbcd995cc8c09ecbcc6c8 (diff) | |
| download | emacs-a611149e46d0a6927e9c276d4cf2089b7cfb7e05.tar.gz emacs-a611149e46d0a6927e9c276d4cf2089b7cfb7e05.zip | |
Rename find_next_newline to find_newline_no_quit.
src/search.c (find_newline_no_quit): Rename from find_next_newline.
Add commentary.
src/lisp.h (find_newline_no_quit): Rename prototype.
src/xdisp.c (back_to_previous_line_start)
(forward_to_next_line_start, get_visually_first_element)
(move_it_vertically_backward): Callers of find_newline_no_quit changed.
src/indent.c (vmotion): Callers of find_newline_no_quit changed.
src/bidi.c (bidi_find_paragraph_start): Callers of
find_newline_no_quit changed.
Diffstat (limited to 'src/bidi.c')
| -rw-r--r-- | src/bidi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bidi.c b/src/bidi.c index feb422cc5d2..cf5e580cd8f 100644 --- a/src/bidi.c +++ b/src/bidi.c | |||
| @@ -1108,7 +1108,7 @@ bidi_find_paragraph_start (ptrdiff_t pos, ptrdiff_t pos_byte) | |||
| 1108 | display string? And what if a display string covering some | 1108 | display string? And what if a display string covering some |
| 1109 | of the text over which we scan back includes | 1109 | of the text over which we scan back includes |
| 1110 | paragraph_start_re? */ | 1110 | paragraph_start_re? */ |
| 1111 | pos = find_next_newline (pos - 1, -1, &pos_byte); | 1111 | pos = find_newline_no_quit (pos - 1, -1, &pos_byte); |
| 1112 | if (n >= MAX_PARAGRAPH_SEARCH) | 1112 | if (n >= MAX_PARAGRAPH_SEARCH) |
| 1113 | pos_byte = BEGV_BYTE; | 1113 | pos_byte = BEGV_BYTE; |
| 1114 | return pos_byte; | 1114 | return pos_byte; |