From: Kim F. Storm Date: Wed, 12 Jul 2006 13:17:29 +0000 (+0000) Subject: (Fdefine_fringe_bitmap): Cleanup wrong_type_argument use. X-Git-Tag: emacs-pretest-22.0.90~1504 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7fee0b516868ab4cdd24f69551ceb9870c2f4c67;p=emacs.git (Fdefine_fringe_bitmap): Cleanup wrong_type_argument use. --- diff --git a/src/fringe.c b/src/fringe.c index a94f203c944..033832f7bb6 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -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;