branch: externals/vc-got
commit 35b3a91ed720ad89b888fd5f7a717a69beaaaa58
Author: Omar Polo <[email protected]>
Commit: Omar Polo <[email protected]>
correct also the other example
push can add duplicate elements, and that’s not what we want as an
example.
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 3f62563..d2dbdb8 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ make sure that `vc-got` is within your `load-path`. You
shouldn't
require the library.
```emacs-lisp
-(push 'Got vc-handled-backends)
+(cl-pushnew 'Got vc-handled-backends)
```
With `use-package` something like this should be enough: