aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/macterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macterm.c b/src/macterm.c
index 91522eeda7a..32abee0bc10 100644
--- a/src/macterm.c
+++ b/src/macterm.c
@@ -734,7 +734,7 @@ mac_create_bitmap_from_bitmap_data (bitmap, bits, w, h)
734 /* Bitswap XBM bytes to match how Mac does things. */ 734 /* Bitswap XBM bytes to match how Mac does things. */
735 unsigned char c = *bits++; 735 unsigned char c = *bits++;
736 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4) 736 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
737 | (swap_nibble[(c>>4) & 0xf]));; 737 | (swap_nibble[(c>>4) & 0xf]));
738 } 738 }
739 } 739 }
740 740
@@ -7558,7 +7558,7 @@ init_font_name_table ()
7558 make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE), 7558 make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
7559 make_float (DEFAULT_REHASH_SIZE), 7559 make_float (DEFAULT_REHASH_SIZE),
7560 make_float (DEFAULT_REHASH_THRESHOLD), 7560 make_float (DEFAULT_REHASH_THRESHOLD),
7561 Qnil, Qnil, Qnil);; 7561 Qnil, Qnil, Qnil);
7562 h = XHASH_TABLE (atsu_font_id_hash); 7562 h = XHASH_TABLE (atsu_font_id_hash);
7563 7563
7564 err = ATSUFontCount (&nfonts); 7564 err = ATSUFontCount (&nfonts);