summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Bendiksen <kristian.bendiksen@gmail.com>2020-04-23 22:43:59 +0200
committerKristian Bendiksen <kristian.bendiksen@gmail.com>2020-04-23 22:43:59 +0200
commit877c926da4daa115bc5d813e8d0ca15c9f513e3d (patch)
treec3ec74329568ea70b0646eacdfcf2dbd4e0e72ea
parent7afbc649a78b6f631c3ab97bfd63e903c71a403f (diff)
Fix variable name inhibited-packages in README.md
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8def27c..b35ef84 100644
--- a/README.md
+++ b/README.md
@@ -62,9 +62,9 @@ Start Emacs!
Local customizations can be added to `lisp/init-local.el`. This file is in
`.gitignore`.
-Setting the variable `inhibit-packages` (e.g. in `lisp/init-local.el`) allows
+Setting the variable `inhibited-packages` (e.g. in `lisp/init-local.el`) allows
inhibiting loading of one or more packages. Example:
``` emacs-lisp
-(setq inhibit-packages '(init-foo))
+(setq inhibited-packages '(init-foo))
```