Add [] to Lisp syntax for CLSQL

This commit is contained in:
contrapunctus 2022-04-27 21:32:19 +05:30
parent 3fb9362383
commit 0cc6325f12
1 changed files with 4 additions and 1 deletions

View File

@ -4708,7 +4708,10 @@ All COMMAND-SPECS should be a list in the form
#+BEGIN_SRC emacs-lisp
(use-package lisp-mode
:interpreter ("cl" . lisp-mode)) ;; cl-launch scripts
:interpreter ("cl" . lisp-mode)
:config
(modify-syntax-entry ?\[ "(]" lisp-mode-syntax-table)
(modify-syntax-entry ?\] ")[" lisp-mode-syntax-table)) ;; cl-launch scripts
#+END_SRC
*** redshank