diff options
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 7f0ebc57a22..73ab892d170 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -3793,7 +3793,7 @@ handle_auto_composed_prop (it) | |||
| 3793 | /* As Fnext_single_char_property_change is very slow, we | 3793 | /* As Fnext_single_char_property_change is very slow, we |
| 3794 | limit the search to the current line. */ | 3794 | limit the search to the current line. */ |
| 3795 | if (STRINGP (it->string)) | 3795 | if (STRINGP (it->string)) |
| 3796 | limit = SCHARS (it->string); | 3796 | limit = make_number (SCHARS (it->string)); |
| 3797 | else | 3797 | else |
| 3798 | limit = make_number (find_next_newline_no_quit (pos, 1)); | 3798 | limit = make_number (find_next_newline_no_quit (pos, 1)); |
| 3799 | 3799 | ||