comparison src/frame.c @ 112434:9de5a68b57e1

Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 22 Jan 2011 18:56:06 -0800
parents 42e22c4f06b7
children b5017c649dfb
comparison
equal deleted inserted replaced
112433:7b649f6eac4f 112434:9de5a68b57e1
4035 unsigned int width, height; 4035 unsigned int width, height;
4036 Lisp_Object result; 4036 Lisp_Object result;
4037 4037
4038 CHECK_STRING (string); 4038 CHECK_STRING (string);
4039 4039
4040 geometry = XParseGeometry ((char *) SDATA (string), 4040 geometry = XParseGeometry (SSDATA (string),
4041 &x, &y, &width, &height); 4041 &x, &y, &width, &height);
4042 result = Qnil; 4042 result = Qnil;
4043 if (geometry & XValue) 4043 if (geometry & XValue)
4044 { 4044 {
4045 Lisp_Object element; 4045 Lisp_Object element;
4635 defsubr (&Sx_get_resource); 4635 defsubr (&Sx_get_resource);
4636 defsubr (&Sx_parse_geometry); 4636 defsubr (&Sx_parse_geometry);
4637 #endif 4637 #endif
4638 4638
4639 } 4639 }
4640