comparison src/ChangeLog @ 4963:4ec0248f9185

merge
author Ben Wing <ben@xemacs.org>
date Mon, 01 Feb 2010 06:21:33 -0600
parents e813cf16c015 87175eb65ff4
children 1f509f82c8c9
comparison
equal deleted inserted replaced
4962:e813cf16c015 4963:4ec0248f9185
2186 GETTEXT() from calls to weird_doc() -- we assume that the 2186 GETTEXT() from calls to weird_doc() -- we assume that the
2187 message snarfer knows about weird_doc(). Remove uses of 2187 message snarfer knows about weird_doc(). Remove uses of
2188 DEFER_GETTEXT() from error messages in sysdep.c and instead use 2188 DEFER_GETTEXT() from error messages in sysdep.c and instead use
2189 special comments /* @@@begin-snarf@@@ */ and /* @@@end-snarf@@@ */ 2189 special comments /* @@@begin-snarf@@@ */ and /* @@@end-snarf@@@ */
2190 that the message snarfer presumably knows about. 2190 that the message snarfer presumably knows about.
2191 * objects-gtk-impl.h:
2192 * objects-gtk-impl.h (XCOLOR_INSTANCE_GTK_COLOR):
2193 * objects-gtk-impl.h (XFONT_INSTANCE_GTK_FONT):
2194 * objects-x-impl.h (XCOLOR_INSTANCE_X_COLOR):
2195 * objects-x-impl.h (XFONT_INSTANCE_X_FONT):
2196 Define XCOLOR_INSTANCE_X_COLOR, XCOLOR_INSTANCE_GTK_COLOR,
2197 XFONT_INSTANCE_X_FONT, XFONT_INSTANCE_GTK_FONT for convenience
2198 purposes. Fixes compile bug in redisplay-xlike-inc.c.
2199
2200 2010-02-01 Ben Wing <ben@xemacs.org>
2201
2202 * compiler.h:
2203 Create a USED() macro to force unused-var warnings to go away,
2204 in certain cases where it's inconvenient to do otherwise (e.g.
2205 when THIS_IS_GTK in redisplay-xlike-inc.c).
2191 2206
2192 Create build_ascstring() and use it in many instances in place 2207 Create build_ascstring() and use it in many instances in place
2193 of build_string(). The purpose of having Ascbyte * variants is 2208 of build_string(). The purpose of having Ascbyte * variants is
2194 to make the code more self-documenting in terms of what sort of 2209 to make the code more self-documenting in terms of what sort of
2195 semantics is expected for char * strings. In fact in the process 2210 semantics is expected for char * strings. In fact in the process