From 685cdf3a51b91f163c7856aadedd732cd2fbf7b8 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 5 Jun 2007 00:24:08 +0000 Subject: [PATCH] (mac_create_bitmap_from_bitmap_data) (init_font_name_table): Delete stray semicolon. --- src/macterm.c | 4 ++-- 1 file 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) /* 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 @@ init_font_name_table () 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); -- 2.39.2