diff options
| author | Kim F. Storm | 2006-07-12 13:17:29 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-07-12 13:17:29 +0000 |
| commit | 7fee0b516868ab4cdd24f69551ceb9870c2f4c67 (patch) | |
| tree | 03f8670fdfef7d9860a0675d3b41f63c9823acfb /src | |
| parent | 89662fc36386cc9a89eae0c39ade8510fdf98416 (diff) | |
| download | emacs-7fee0b516868ab4cdd24f69551ceb9870c2f4c67.tar.gz emacs-7fee0b516868ab4cdd24f69551ceb9870c2f4c67.zip | |
(Fdefine_fringe_bitmap): Cleanup wrong_type_argument use.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fringe.c | 2 |
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; |