aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-22 19:11:33 +0000
committerGerd Moellmann2001-03-22 19:11:33 +0000
commit388d6c3389e903bed42b1111ed2fc17855ea50b5 (patch)
treebd3ccd59d26b22ad26a33959d138d37f6ef4518b
parent364cd450426cc0f93eada8f00c30000ff2ba22f2 (diff)
downloademacs-388d6c3389e903bed42b1111ed2fc17855ea50b5.tar.gz
emacs-388d6c3389e903bed42b1111ed2fc17855ea50b5.zip
(x_print_complete_resource_name) [0]: New function.
-rw-r--r--lwlib/lwlib-Xm.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/lwlib/lwlib-Xm.c b/lwlib/lwlib-Xm.c
index 9c8fbe50949..766d3554e24 100644
--- a/lwlib/lwlib-Xm.c
+++ b/lwlib/lwlib-Xm.c
@@ -139,6 +139,32 @@ void xm_manage_resizing P_ ((Widget, Boolean));
139#endif 139#endif
140 140
141 141
142#if 0
143
144/* Print the complete X resource name of widget WIDGET to stderr.
145 This is sometimes handy to have available. */
146
147void
148x_print_complete_resource_name (widget)
149 Widget widget;
150{
151 int i;
152 String names[100];
153
154 for (i = 0; i < 100 && widget != NULL; ++i)
155 {
156 names[i] = XtName (widget);
157 widget = XtParent (widget);
158 }
159
160 for (--i; i >= 1; --i)
161 fprintf (stderr, "%s.", names[i]);
162 fprintf (stderr, "%s\n", names[0]);
163}
164
165#endif /* 0 */
166
167
142static destroyed_instance *all_destroyed_instances = NULL; 168static destroyed_instance *all_destroyed_instances = NULL;
143 169
144static destroyed_instance* 170static destroyed_instance*