diff src/macterm.c @ 90863:648e6c714c7d

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 774-780) - Update from CVS - Merge from emacs--rel--22, gnus--rel--5.10 - Merge from emacs--rel--22 - Fix tq.el edge case * emacs--rel--22 (patch 28-32) - Update from CVS * gnus--rel--5.10 (patch 224-225) - Merge from emacs--devo--0, emacs--rel--22 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-213
author Miles Bader <miles@gnu.org>
date Wed, 30 May 2007 14:40:46 +0000
parents 31beec9ee600 223bb8e66f74
children e9f94688a064
line wrap: on
line diff
--- a/src/macterm.c	Tue May 29 00:15:26 2007 +0000
+++ b/src/macterm.c	Wed May 30 14:40:46 2007 +0000
@@ -736,7 +736,7 @@
 	  /* 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]));
 	}
     }
 
@@ -7577,7 +7577,7 @@
 	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);