diff options
author | Phillip Lord <phillip.lord@russet.org.uk> | 2015-12-17 20:01:16 +0000 |
---|---|---|
committer | Phillip Lord <phillip.lord@russet.org.uk> | 2015-12-17 20:42:15 +0000 |
commit | ee85661174703b2778d45be11fb8618345b0c58d (patch) | |
tree | 43240874782ae581fbb4cf0e59c0b537c72ed349 /test/lisp/emacs-lisp | |
parent | 459cf7cb92445e9336d649f128ec1af274e3f5a1 (diff) | |
download | emacs-ee85661174703b2778d45be11fb8618345b0c58d.tar.gz emacs-ee85661174703b2778d45be11fb8618345b0c58d.tar.bz2 emacs-ee85661174703b2778d45be11fb8618345b0c58d.zip |
eieio generate autoloads to non-versioned file.
* lisp/Makefile.in: eieio-loaddefs add to autogenel.
* lisp/emacs-lisp/eieio.el,lisp/emacs-lisp/eieio-core.el:
Remove autoloads.
* lisp/emacs-lisp/eieio-compat.el,lisp/emacs-lisp/eieio-custom.el,
lisp/emacs-lisp/eieio-opt.el: Update file local.
* test/lisp/emacs-lisp/eieio-tests/eieio-tests.el: New test.
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r-- | test/lisp/emacs-lisp/eieio-tests/eieio-tests.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el b/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el index 915532b299c..3a181be5071 100644 --- a/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el +++ b/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el @@ -895,6 +895,12 @@ Subclasses to override slot attributes.") (ert-deftest eieio-test-37-obsolete-name-in-constructor () (should (equal (eieio--testing "toto") '("toto" 2)))) +(ert-deftest eieio-autoload () + "Tests to see whether reftex-auc has been autoloaded" + (should + (fboundp 'eieio--defalias))) + + (provide 'eieio-tests) ;;; eieio-tests.el ends here |