Nicolas Richard <theonewiththeevill...@yahoo.fr> writes:
> that's because your (progn) is unquoted and thus evaluated at the same > time as eval-after-load, i.e. it returns its last value (which is the > second add-to-list form) and that is what is being added to the > eval-after-load list. What you want is the whole (progn) added there, so > an easy fix probably is to say '(progn ...) *and* remove the quotes > around the calls to add-to-list. Thank you, you were right.