Hi,
Please have merci with me, but I'am not able to build a library (permanent).
I've tried to follow the docs, so I first use def-library:
(def-library test
(:section testing
bla1 '(a b c)
bla2 '(e f g)
))
This seems to work, testing with:
(library 'test 'testing 'bla2)
==>(e f g)
Next step in my understanding would be:
(create-library 'test 'testing 'bla
:file "test"
)
that gives an error:
==>Error: Incorrect keyword arguments in ("test")
What am I missing, surely something very silly that I overlooked, greatful for some help..
Thanks!
ole