]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdefine_fringe_bitmap): Cleanup wrong_type_argument use.
authorKim F. Storm <storm@cua.dk>
Wed, 12 Jul 2006 13:17:29 +0000 (13:17 +0000)
committerKim F. Storm <storm@cua.dk>
Wed, 12 Jul 2006 13:17:29 +0000 (13:17 +0000)
src/fringe.c

index a94f203c94436a5a5f3ad8dc6137aa5e7a4fa0e3..033832f7bb6f9381e8781a77423e797487d87d29 100644 (file)
@@ -1423,7 +1423,7 @@ If BITMAP already exists, the existing definition is replaced.  */)
   else if (VECTORP (bits))
     h = XVECTOR (bits)->size;
   else
-    bits = wrong_type_argument (Qsequencep, bits);
+    wrong_type_argument (Qsequencep, bits);
 
   if (NILP (height))
     fb.height = h;