changeset 77907:c53c9b6a0e5b

(mac_create_bitmap_from_bitmap_data) (init_font_name_table): Delete stray semicolon.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 05 Jun 2007 00:24:08 +0000
parents a33e69b10eed
children e5fb6472b6db
files src/macterm.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/macterm.c	Tue Jun 05 00:23:14 2007 +0000
+++ b/src/macterm.c	Tue Jun 05 00:24:08 2007 +0000
@@ -734,7 +734,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]));
 	}
     }
 
@@ -7558,7 +7558,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);