diff options
| author | Kim F. Storm | 2005-02-25 21:49:59 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-02-25 21:49:59 +0000 |
| commit | e9323aedda92fe5eaeb9d5c1e81fed30024facb9 (patch) | |
| tree | ec3f9628515c300456a44219367196a32636ffd3 /src | |
| parent | 0f465b559bc2eb7d0105a5366672ff416bae72b7 (diff) | |
| download | emacs-e9323aedda92fe5eaeb9d5c1e81fed30024facb9.tar.gz emacs-e9323aedda92fe5eaeb9d5c1e81fed30024facb9.zip | |
(OVERLAY_STRING_CHUNK_SIZE): Increase from 3 to 16.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 4626cfc7332..aa296e12340 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1887,7 +1887,7 @@ struct it | |||
| 1887 | 1887 | ||
| 1888 | /* Vector of overlays to process. Overlay strings are processed | 1888 | /* Vector of overlays to process. Overlay strings are processed |
| 1889 | OVERLAY_STRING_CHUNK_SIZE at a time. */ | 1889 | OVERLAY_STRING_CHUNK_SIZE at a time. */ |
| 1890 | #define OVERLAY_STRING_CHUNK_SIZE 3 | 1890 | #define OVERLAY_STRING_CHUNK_SIZE 16 |
| 1891 | Lisp_Object overlay_strings[OVERLAY_STRING_CHUNK_SIZE]; | 1891 | Lisp_Object overlay_strings[OVERLAY_STRING_CHUNK_SIZE]; |
| 1892 | 1892 | ||
| 1893 | /* Total number of overlay strings to process. This can be > | 1893 | /* Total number of overlay strings to process. This can be > |