branch: elpa/slime commit fe2090079cf933c72c48861582477d1c0c896f6a Author: Stas Boukarev <stass...@gmail.com> Commit: Stas Boukarev <stass...@gmail.com>
slime-reader-conditionals-regexp: remove #! SBCL doesn't use that anymore. --- slime.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/slime.el b/slime.el index aa98e85afc2..3ce597f3aa0 100644 --- a/slime.el +++ b/slime.el @@ -7523,10 +7523,7 @@ and skips comments." (slime-forward-cruft) (forward-sexp))) -(defconst slime-reader-conditionals-regexp - ;; #!+, #!- are SBCL specific reader-conditional syntax. - ;; We need this for the source files of SBCL itself. - (regexp-opt '("#+" "#-" "#!+" "#!-"))) +(defconst slime-reader-conditionals-regexp (regexp-opt '("#+" "#-"))) (defun slime-forward-reader-conditional () "Move past any reader conditional (#+ or #-) at point."