Skip to content

Commit

Permalink
Improve formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
sasagawa888 committed Jan 16, 2022
1 parent afde8a9 commit 16e4aa3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Binary file modified edlis
Binary file not shown.
8 changes: 8 additions & 0 deletions library/formatter.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,18 @@
(pp-defmodule x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "defglobal"))
(pp-defglobal x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "defconstant"))
(pp-defglobal x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "defdynamic"))
(pp-defglobal x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "block"))
(pp-block x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "while"))
(pp-block x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "dotimes"))
(pp-block x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "dolist"))
(pp-block x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "lambda"))
(pp-lambda x lm))
((and (null ignore) (stringp (car x)) (string= (car x) "labels"))
Expand Down

0 comments on commit 16e4aa3

Please sign in to comment.