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