> And so does (progn (fset 'foobar (make-keymap)) (fboundp 'foobar)), of
> course. But (progn (fset 'foobar (make-keymap)) (foobar)) errors, of
> course.
Of course. `fboundp' doesn't test the type, only the boundness.
You want to try with `functionp'.
Stefan