1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-21 21:20:44 -08:00
emacs/lisp/use-package
Nicolas Dudebout 818c78f466 Removes plist-get-sexp
This function was not working as advertised.
Then `funcall` was evaluated too early and all the benefits of late evaluation for autoloads was lost.
Furthermore, this function was not really needed in the first place:

```
(use-package foo
  :config my-foo-function)
```

can easily be replaced by the following:

```
(use-package foo
  :config (my-foo-function))
```
2013-09-25 14:02:29 -04:00
..
bind-key.el Improve (describe-personal-keybindings) output 2013-09-04 23:15:28 +08:00
use-package.el Removes plist-get-sexp 2013-09-25 14:02:29 -04:00