emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emacs 25.0.94: Is require failing to define macros and functions at


From: Clément Pit--Claudel
Subject: Re: Emacs 25.0.94: Is require failing to define macros and functions at compile time?
Date: Wed, 29 Jun 2016 11:14:30 -0400
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0

On 2016-06-29 10:55, Robert Weiner wrote:
> At the top of hact.el is:
> 
> (mapc 'require '(hhist set))

Try 

  (eval-and-compile (mapc 'require '(hhist set)))

Or simply

  (require 'hhist)
  (require 'set)

My guess would be that the byte-compiler doesn't run your mapc.

Clément.

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]