comparison src/w32term.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
comparison
equal deleted inserted replaced
112433:7b649f6eac4f 112434:9de5a68b57e1
1404 = (! glyph->u.glyphless.for_no_font 1404 = (! glyph->u.glyphless.for_no_font
1405 ? CHAR_TABLE_REF (Vglyphless_char_display, 1405 ? CHAR_TABLE_REF (Vglyphless_char_display,
1406 glyph->u.glyphless.ch) 1406 glyph->u.glyphless.ch)
1407 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]); 1407 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1408 if (STRINGP (acronym)) 1408 if (STRINGP (acronym))
1409 str = (char *) SDATA (acronym); 1409 str = SSDATA (acronym);
1410 } 1410 }
1411 } 1411 }
1412 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE) 1412 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1413 { 1413 {
1414 sprintf ((char *) buf, "%0*X", 1414 sprintf ((char *) buf, "%0*X",
6427 Vx_toolkit_scroll_bars = Qt; 6427 Vx_toolkit_scroll_bars = Qt;
6428 6428
6429 staticpro (&last_mouse_motion_frame); 6429 staticpro (&last_mouse_motion_frame);
6430 last_mouse_motion_frame = Qnil; 6430 last_mouse_motion_frame = Qnil;
6431 } 6431 }
6432