- Package:
- tiarra-conf-el
- Source:
- tiarra
- Submitter:
- Kevin Ryde
- Date:
- 2015-01-08 07:36:11 UTC
- Severity:
- normal
Starting from "emacs24 -q"
M-: (require 'tiarra-conf)
=>
(error "Required feature `tiarra-conf' was not provided")
It'd be good if tiarra-conf.el ended with
(provide 'tiarra-conf)
Hi, This package provides tiarra-conf-mode, not tiarra-conf, so this behavior is not a bug, IMO.
Hideki Yamane <henrich@debian.or.jp> writes: Feature names are file names, normally. So (require 'tiarra-conf) loads tiarra-conf.el and it would normally have (provide 'tiarra-conf) at the end to allow that. (Such a `provide' is one of the various conventional things M-x checkdoc reports on, for example.)