summaryrefslogtreecommitdiff
path: root/src/fringe.c
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2006-07-12 13:17:29 +0000
committerKim F. Storm <storm@cua.dk>2006-07-12 13:17:29 +0000
commit7fee0b516868ab4cdd24f69551ceb9870c2f4c67 (patch)
tree03f8670fdfef7d9860a0675d3b41f63c9823acfb /src/fringe.c
parent89662fc36386cc9a89eae0c39ade8510fdf98416 (diff)
downloademacs-7fee0b516868ab4cdd24f69551ceb9870c2f4c67.tar.gz
(Fdefine_fringe_bitmap): Cleanup wrong_type_argument use.
Diffstat (limited to 'src/fringe.c')
-rw-r--r--src/fringe.c2
1 files changed, 1 insertions, 1 deletions
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;