# HG changeset patch # User Chong Yidong # Date 1181003048 0 # Node ID c53c9b6a0e5b45dd774a5c41f826679e72a72839 # Parent a33e69b10eedf9467244c11a3c7080d9d15a10dd (mac_create_bitmap_from_bitmap_data) (init_font_name_table): Delete stray semicolon. diff -r a33e69b10eed -r c53c9b6a0e5b src/macterm.c --- a/src/macterm.c Tue Jun 05 00:23:14 2007 +0000 +++ b/src/macterm.c Tue Jun 05 00:24:08 2007 +0000 @@ -734,7 +734,7 @@ /* Bitswap XBM bytes to match how Mac does things. */ unsigned char c = *bits++; *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4) - | (swap_nibble[(c>>4) & 0xf]));; + | (swap_nibble[(c>>4) & 0xf])); } } @@ -7558,7 +7558,7 @@ make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE), make_float (DEFAULT_REHASH_SIZE), make_float (DEFAULT_REHASH_THRESHOLD), - Qnil, Qnil, Qnil);; + Qnil, Qnil, Qnil); h = XHASH_TABLE (atsu_font_id_hash); err = ATSUFontCount (&nfonts);