On Windows Emacs v24.2.1 I get error:
(error "Required feature `cl-macs' was not provided")
I byte-compile my .emacs
and here is code:
(with-no-warning (require 'cl-macs))
Actually (load "cl-macs")
succeed but cl-macs.el
lack (provide 'cl-macs)
statement for that version (newer Emacs has corresponding provide statement).
What workaround to use for? I think:
(load "cl-macs")
but it look ugly in compare to usual (require '...)
.
(require 'cl-macs nil t)
doesn't prevent from above error.