aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2006-07-12 13:17:29 +0000
committerKim F. Storm2006-07-12 13:17:29 +0000
commit7fee0b516868ab4cdd24f69551ceb9870c2f4c67 (patch)
tree03f8670fdfef7d9860a0675d3b41f63c9823acfb /src
parent89662fc36386cc9a89eae0c39ade8510fdf98416 (diff)
downloademacs-7fee0b516868ab4cdd24f69551ceb9870c2f4c67.tar.gz
emacs-7fee0b516868ab4cdd24f69551ceb9870c2f4c67.zip
(Fdefine_fringe_bitmap): Cleanup wrong_type_argument use.
Diffstat (limited to 'src')
-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. */)
1423 else if (VECTORP (bits)) 1423 else if (VECTORP (bits))
1424 h = XVECTOR (bits)->size; 1424 h = XVECTOR (bits)->size;
1425 else 1425 else
1426 bits = wrong_type_argument (Qsequencep, bits); 1426 wrong_type_argument (Qsequencep, bits);
1427 1427
1428 if (NILP (height)) 1428 if (NILP (height))
1429 fb.height = h; 1429 fb.height = h;