From 3d1b8865d96dc7e1e01780ee144936d076a24785 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Sat, 20 Mar 2021 20:56:34 -0400 Subject: [PATCH] [core] Fix value validation for `dotspacemacs-editing-style` --- core/core-dotspacemacs.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/core-dotspacemacs.el b/core/core-dotspacemacs.el index 521c2a351..363983996 100644 --- a/core/core-dotspacemacs.el +++ b/core/core-dotspacemacs.el @@ -184,9 +184,9 @@ in `dotspacemacs-themes'.") `hybrid state' with `emacs' key bindings. The value can also be a list with `:variables' keyword (similar to layers). Check the editing styles section of the documentation for details on available variables." - '(choice (const vim (cons symbol sexp)) - (const emacs (cons symbol sexp)) - (const hybrid (cons symbol sexp))) + '(choice (const vim) (cons symbol sexp) + (const emacs) (cons symbol sexp) + (const hybrid) (cons symbol sexp)) 'spacemacs-dotspacemacs-init) (spacemacs|defc dotspacemacs-startup-banner 'official