Mercurial > hg > xemacs-beta
comparison src/eval.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 | ac1be85b4a5f |
children | 68ed93de81b7 |
comparison
equal
deleted
inserted
replaced
1725:7ff8f4d70aec | 1726:a8d8f419b459 |
---|---|
5948 } | 5948 } |
5949 | 5949 |
5950 static Lisp_Object | 5950 static Lisp_Object |
5951 free_pointer (Lisp_Object opaque) | 5951 free_pointer (Lisp_Object opaque) |
5952 { | 5952 { |
5953 xfree (get_opaque_ptr (opaque)); | 5953 xfree (get_opaque_ptr (opaque), void *); |
5954 free_opaque_ptr (opaque); | 5954 free_opaque_ptr (opaque); |
5955 return Qnil; | 5955 return Qnil; |
5956 } | 5956 } |
5957 | 5957 |
5958 /* Establish an unwind-protect which will free the specified block. | 5958 /* Establish an unwind-protect which will free the specified block. |