comparison src/buffer.c @ 1296:87084e8445a7

[xemacs-hg @ 2003-02-14 09:50:15 by ben] syntax-table fixes 1. the updating of mirror tables every time a syntax table was modified was taking up huge amounts of time so i added a dirty flag and made the updating "just-in-time". 2. no-longer-used char-table-entries were not getting "freed", generating tons of garbage. 3. syntax_match() was being incorrectly called on mirror tables in the cache, not the original syntax table. buffer.c, syntax.c: Move syntax table description from buffer.c to syntax.c. chartab.c, chartab.h: Free extra char table entries to avoid excessive garbage. Add flags for dirty and mirror_table_p to char tables. Add a back pointer from mirror tables to the original syntax table. When modifying a syntax table, don't update the mirror table right away, just mark as dirty. Add various asserts to make sure we are dealing with the right type of table (mirror or non-mirror). font-lock.c, syntax.c, syntax.h: Add entry to syntax caches for the non-mirror table. Set it appropriately when initializing the syntax table. Use it, not the mirror table, for calls to syntax_match(). Don't create a bogus float each time, just once at startup. Add some asserts, as in chartab.c. syntax.h: When retrieving the syntax code, check the dirty flag and update the mirror tables as appropriate. Add some asserts, as above.
author ben
date Fri, 14 Feb 2003 09:50:17 +0000
parents e22b0213b713
children a8d8f419b459
comparison
equal deleted inserted replaced
1295:064ef1d07d63 1296:87084e8445a7
234 }; 234 };
235 235
236 static const struct sized_memory_description buffer_text_description = { 236 static const struct sized_memory_description buffer_text_description = {
237 sizeof (struct buffer_text), 237 sizeof (struct buffer_text),
238 buffer_text_description_1 238 buffer_text_description_1
239 };
240
241 static const struct memory_description syntax_cache_description_1 [] = {
242 { XD_LISP_OBJECT, offsetof (struct syntax_cache, object) },
243 { XD_LISP_OBJECT, offsetof (struct syntax_cache, buffer) },
244 { XD_LISP_OBJECT, offsetof (struct syntax_cache, current_syntax_table) },
245 { XD_LISP_OBJECT, offsetof (struct syntax_cache, start) },
246 { XD_LISP_OBJECT, offsetof (struct syntax_cache, end) },
247 { XD_END }
248 };
249
250 static const struct sized_memory_description syntax_cache_description = {
251 sizeof (struct syntax_cache),
252 syntax_cache_description_1
253 }; 239 };
254 240
255 static const struct memory_description buffer_description [] = { 241 static const struct memory_description buffer_description [] = {
256 #define MARKED_SLOT(x) { XD_LISP_OBJECT, offsetof (struct buffer, x) }, 242 #define MARKED_SLOT(x) { XD_LISP_OBJECT, offsetof (struct buffer, x) },
257 #include "bufslots.h" 243 #include "bufslots.h"