]> git.eshelyaron.com Git - emacs.git/commit
Removes `plist-get-sexp`
authorNicolas Dudebout <nicolas.dudebout@gmail.com>
Wed, 25 Sep 2013 18:02:29 +0000 (14:02 -0400)
committerNicolas Dudebout <nicolas.dudebout@gmail.com>
Wed, 25 Sep 2013 18:02:29 +0000 (14:02 -0400)
commit818c78f4666edd3890fc0b58c50d06c422bafd82
treee80b2a0b5f825f3e6ba82b0afd6a04070403dc9d
parentff03bef1d152a8402a485613440e4dd19f352d29
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))
```
lisp/use-package/use-package.el