diff src/syntax.c @ 1726:a8d8f419b459

[xemacs-hg @ 2003-09-30 15:26:34 by james] Add type information to xfree to avoid alias creation.
author james
date Tue, 30 Sep 2003 15:27:01 +0000
parents 70921960b980
children 54e1ecdc5778
line wrap: on
line diff
--- a/src/syntax.c	Mon Sep 29 21:53:04 2003 +0000
+++ b/src/syntax.c	Tue Sep 30 15:27:01 2003 +0000
@@ -385,7 +385,7 @@
 void
 uninit_buffer_syntax_cache (struct buffer *buf)
 {
-  xfree (buf->syntax_cache);
+  xfree (buf->syntax_cache, struct syntax_cache *);
   buf->syntax_cache = 0;
 }