X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/67f02b82f496be403353a1dc918cc4f2278841bb..e29e39c9c6aee68a50fef5149cc3acdfa74fec72:/lwlib/lwlib.c diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index 290ce09130..ad3792dd59 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c @@ -1,7 +1,7 @@ /* A general interface to the widgets of different toolkits. Copyright (C) 1992, 1993 Lucid, Inc. -Copyright (C) 1994-1996, 1999-2011 Free Software Foundation, Inc. +Copyright (C) 1994-1996, 1999-2012 Free Software Foundation, Inc. This file is part of the Lucid Widget Library. @@ -20,16 +20,14 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifdef HAVE_CONFIG_H #include -#endif #include #include +#include #include #include -#include #include "lwlib-int.h" #include "lwlib-utils.h" #include @@ -75,7 +73,6 @@ static widget_value *merge_widget_value (widget_value *, widget_value *, int, int *); static void instantiate_widget_instance (widget_instance *); -static int my_strcasecmp (const char *, const char *); static void safe_free_str (char *); static void free_widget_value_tree (widget_value *); static widget_value *copy_widget_value_tree (widget_value *, @@ -115,30 +112,10 @@ safe_strdup (const char *s) return result; } -/* Like strcmp but ignore differences in case. */ - -static int -my_strcasecmp (const char *s1, const char *s2) -{ - while (1) - { - int c1 = *s1++; - int c2 = *s2++; - if (isupper (c1)) - c1 = tolower (c1); - if (isupper (c2)) - c2 = tolower (c2); - if (c1 != c2) - return (c1 > c2 ? 1 : -1); - if (c1 == 0) - return 0; - } -} - static void safe_free_str (char *s) { - free (s); + xfree (s); } static widget_value *widget_value_free_list = 0; @@ -176,7 +153,7 @@ free_widget_value (widget_value *wv) { /* When the number of already allocated cells is too big, We free it. */ - free (wv); + xfree (wv); malloc_cpt--; } else @@ -192,9 +169,9 @@ free_widget_value_tree (widget_value *wv) if (!wv) return; - free (wv->name); - free (wv->value); - free (wv->key); + xfree (wv->name); + xfree (wv->value); + xfree (wv->key); wv->name = wv->value = wv->key = (char *) 0xDEADBEEF; @@ -281,7 +258,7 @@ free_widget_info (widget_info *info) safe_free_str (info->name); free_widget_value_tree (info->val); memset ((void*)info, 0xDEADBEEF, sizeof (widget_info)); - free (info); + xfree (info); } static void @@ -317,7 +294,7 @@ static void free_widget_instance (widget_instance *instance) { memset ((void*)instance, 0xDEADBEEF, sizeof (widget_instance)); - free (instance); + xfree (instance); } static widget_info * @@ -422,7 +399,7 @@ safe_strcmp (const char *s1, const char *s2) (nc == STRUCTURAL_CHANGE ? "structural" : "???")))), \ nc, desc, a1, a2) #else -# define EXPLAIN(name, oc, nc, desc, a1, a2) +# define EXPLAIN(name, oc, nc, desc, a1, a2) ((void) 0) #endif @@ -602,7 +579,7 @@ name_to_widget (widget_instance *instance, const char *name) widget = XtNameToWidget (instance->widget, real_name); - free (real_name); + xfree (real_name); } return widget; } @@ -731,7 +708,7 @@ find_in_table (const char *type, const widget_creation_entry *table) { const widget_creation_entry* cur; for (cur = table; cur->type; cur++) - if (!my_strcasecmp (type, cur->type)) + if (!c_strcasecmp (type, cur->type)) return cur->function; return NULL; } @@ -912,8 +889,9 @@ destroy_one_instance (widget_instance *instance) xaw_destroy_instance (instance); else #endif - /* do not remove the empty statement */ - ; + { + /* Empty compound statement to terminate if-then-else chain. */ + } } free_widget_instance (instance); @@ -978,7 +956,7 @@ lw_destroy_all_pop_ups (void) } #ifdef USE_MOTIF -extern Widget first_child (/* Widget */); /* garbage */ +extern Widget first_child (Widget); /* garbage */ #endif Widget @@ -1155,9 +1133,9 @@ lw_get_widget_value_for_widget (widget_instance *instance, Widget w) /* To forbid recursive calls */ static Boolean lwlib_updating; -/* This function can be used as a an XtCallback for the widgets that get - modified to update other instances of the widgets. Closure should be the - widget_instance. */ +/* This function can be used as an XtCallback for the widgets that get + modified to update other instances of the widgets. Closure should be the + widget_instance. */ void lw_internal_update_other_instances (Widget widget, XtPointer closure,