aboutsummaryrefslogtreecommitdiffstats
path: root/src/macterm.c
diff options
context:
space:
mode:
authorMiles Bader2007-05-30 14:44:47 +0000
committerMiles Bader2007-05-30 14:44:47 +0000
commit34c6724464237db4bfd5b3fa57e8b0f66a92f618 (patch)
treebbfe4aea433c943f0f6a67b3e49ee31647e12d92 /src/macterm.c
parent30790a37efea5c6fed87ee0dd0d54c31ac9eea11 (diff)
parent7a781a5480b9a1f55d28a76e1d1f89aaa2421f97 (diff)
downloademacs-34c6724464237db4bfd5b3fa57e8b0f66a92f618.tar.gz
emacs-34c6724464237db4bfd5b3fa57e8b0f66a92f618.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 771-780) - Update from CVS - Merge from emacs--rel--22 - Merge from emacs--rel--22, gnus--rel--5.10 - Fix tq.el edge case * emacs--rel--22 (patch 26-32) - Update from CVS - lisp/vc-hooks.el (vc-find-root): Fix file attribute test * gnus--rel--5.10 (patch 224-225) - Merge from emacs--devo--0, emacs--rel--22 - Update from CVS Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-18
Diffstat (limited to 'src/macterm.c')
-rw-r--r--src/macterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macterm.c b/src/macterm.c
index 871bf9cd6f9..1faf72485ce 100644
--- a/src/macterm.c
+++ b/src/macterm.c
@@ -736,7 +736,7 @@ mac_create_bitmap_from_bitmap_data (bitmap, bits, w, h)
736 /* Bitswap XBM bytes to match how Mac does things. */ 736 /* Bitswap XBM bytes to match how Mac does things. */
737 unsigned char c = *bits++; 737 unsigned char c = *bits++;
738 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4) 738 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
739 | (swap_nibble[(c>>4) & 0xf]));; 739 | (swap_nibble[(c>>4) & 0xf]));
740 } 740 }
741 } 741 }
742 742
@@ -7553,7 +7553,7 @@ init_font_name_table ()
7553 make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE), 7553 make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
7554 make_float (DEFAULT_REHASH_SIZE), 7554 make_float (DEFAULT_REHASH_SIZE),
7555 make_float (DEFAULT_REHASH_THRESHOLD), 7555 make_float (DEFAULT_REHASH_THRESHOLD),
7556 Qnil, Qnil, Qnil);; 7556 Qnil, Qnil, Qnil);
7557 h = XHASH_TABLE (atsu_font_id_hash); 7557 h = XHASH_TABLE (atsu_font_id_hash);
7558 7558
7559 err = ATSUFontCount (&nfonts); 7559 err = ATSUFontCount (&nfonts);