]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix font and indentation of call-with-port in scheme-mode
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 25 May 2021 20:22:28 +0000 (22:22 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 25 May 2021 20:22:28 +0000 (22:22 +0200)
* lisp/progmodes/scheme.el (scheme-font-lock-keywords-2): Add
call-with-port (bug#48544).
(call-with-port): Indent correctly.

lisp/progmodes/scheme.el

index b6972846cde09badf4ae8e5df47c01790beebb03..57351a7308d16c468f7053aa02e301f9cd37135d 100644 (file)
@@ -299,7 +299,9 @@ See `run-hooks'."
        (concat
         "(" (regexp-opt
              '("begin" "call-with-current-continuation" "call/cc"
-               "call-with-input-file" "call-with-output-file" "case" "cond"
+               "call-with-input-file" "call-with-output-file"
+               "call-with-port"
+               "case" "cond"
                "do" "else" "for-each" "if" "lambda" "λ"
                "let" "let*" "let-syntax" "letrec" "letrec-syntax"
                ;; R6RS library subforms.
@@ -542,6 +544,7 @@ indentation."
 (put 'library 'scheme-indent-function 1) ; R6RS
 
 (put 'call-with-input-file 'scheme-indent-function 1)
+(put 'call-with-port 'scheme-indent-function 1)
 (put 'with-input-from-file 'scheme-indent-function 1)
 (put 'with-input-from-port 'scheme-indent-function 1)
 (put 'call-with-output-file 'scheme-indent-function 1)