├── .gitignore ├── LICENSE ├── Makefile ├── README.org └── packed.el /.gitignore: -------------------------------------------------------------------------------- 1 | /*.elc 2 | /*-autoloads.el 3 | /.config.mk 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsattic/packed/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsattic/packed/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsattic/packed/HEAD/README.org -------------------------------------------------------------------------------- /packed.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsattic/packed/HEAD/packed.el --------------------------------------------------------------------------------