From e70a8d925e80e35323437ee53ae2347d0972e2a2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 7 Oct 2018 00:35:25 -0400 Subject: [PATCH] lang/common-lisp: fix consp errors on load --- modules/lang/common-lisp/config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lang/common-lisp/config.el b/modules/lang/common-lisp/config.el index b82101ec5..3c22eefa4 100644 --- a/modules/lang/common-lisp/config.el +++ b/modules/lang/common-lisp/config.el @@ -18,8 +18,8 @@ :documentation #'sly-describe-symbol) (sp-with-modes '(sly-mrepl-mode) - (sp-local-pair "'" "'" :actions :rem) - (sp-local-pair "`" "`" :actions :rem)) + (sp-local-pair "'" "'" :actions nil) + (sp-local-pair "`" "`" :actions nil)) ;; (defun +common-lisp|cleanup-sly-maybe ()