#716697 use autoloads instead of require in emacsen-install

#716697#5
Date:
2013-07-09 23:27:15 UTC
From:
To:
Running emacs -q -batch prints

  Loading /etc/emacs/site-start.d/50windows-el.el (source)...
  Error while loading 50windows-el: Wrong number of arguments: ...

It seems 50windows-el.el calls

  (debian-pkg-add-load-path-item
   (concat "/usr/share/" (symbol-name debian-emacs-flavor)
	   "/site-lisp/windows")
   (require 'windows))

but debian-pkg-add-load-path-item takes just one arg not two.

It would also be good if there were autoloads for the entrypoint
functions, not a whole (require 'windows).