diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-06-05 00:24:08 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-06-05 00:24:08 +0000 |
commit | 685cdf3a51b91f163c7856aadedd732cd2fbf7b8 (patch) | |
tree | a83dbef6214ac3d456abaccf07a020a136768b8d /src/macterm.c | |
parent | 67fc123f8abc7127bf4231bd6b8618cfac9f6900 (diff) | |
download | emacs-685cdf3a51b91f163c7856aadedd732cd2fbf7b8.tar.gz |
(mac_create_bitmap_from_bitmap_data)
(init_font_name_table): Delete stray semicolon.
Diffstat (limited to 'src/macterm.c')
-rw-r--r-- | src/macterm.c | 4 |
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) /* 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); |