There are a few problems with your code:
- ((null? (car lis)) '()) is not necessary
This is not necessary, because when the list has 1 element, car will not be null and the last condition copes with it, and when the list has no element, the first condition copes with this case.
- ((= (length lis) 1) (car lis))
This terminal condition has 3 bugs:
it is not necessary, because the last condition copes with the case of a list of 1 element.
it does not return a pair, but an atomic element. When it is consed to a pair the result will be (x . atom)
Instead of appending an error message to the end of the answer, you can throw an (error "something")
So, removing these 2 conditions, your code will be what you desire.
(define (odds lis)
(cond
((null? lis) '())
((not (list? lis)) (quote (Usage: odds(list))))
(else (cons (car lis) (odds (cddr lis))))))