comparison src/font-lock.c @ 838:bf645ed7cfe3

[xemacs-hg @ 2002-05-14 09:28:06 by ben] revert-buffer, others files.el: Andy's patch from 21.4. Fix evil nasty problems with revert-buffer. menubar-items.el: Add Append to Register to Rectangles/Register menu. config.h.in, font-lock.c: Reenable font-lock code since it's used by mouse.el. The flag for this exists in config.h.in but not currently controllable through configure.
author ben
date Tue, 14 May 2002 09:28:14 +0000
parents 6728e641994e
children dc12269565c9
comparison
equal deleted inserted replaced
837:0490271de7d8 838:bf645ed7cfe3
42 #### We should really rewrite this to keep extents over the buffer 42 #### We should really rewrite this to keep extents over the buffer
43 that hold the current syntactic information. This would be a big win. 43 that hold the current syntactic information. This would be a big win.
44 This way there would be no guessing or incorrect results. 44 This way there would be no guessing or incorrect results.
45 */ 45 */
46 46
47 #if 0 /* no longer used */
48
49 #include <config.h> 47 #include <config.h>
48
49 #ifdef USE_C_FONT_LOCK
50
50 #include "lisp.h" 51 #include "lisp.h"
51 52
52 #include "buffer.h" 53 #include "buffer.h"
53 #include "insdel.h" 54 #include "insdel.h"
54 #include "syntax.h" 55 #include "syntax.h"
840 void 841 void
841 vars_of_font_lock (void) 842 vars_of_font_lock (void)
842 { 843 {
843 reinit_vars_of_font_lock (); 844 reinit_vars_of_font_lock ();
844 } 845 }
845 #endif /* 0 */ 846
847 #endif /* USE_C_FONT_LOCK */