Skip to content

Commit

Permalink
fix unbalanced parentheses (#20)
Browse files Browse the repository at this point in the history
There appear to have been a few parens dropped while adding support for Grails 5. I believe these are where they belong, but please feel free to adjust as necessary.
  • Loading branch information
treed authored Nov 10, 2022
1 parent 350869e commit 3019f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grails.el
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@
(defvar grails-urlmappings-by-version
`((2 "conf/UrlMappings.groovy")
(3 "controllers/UrlMappings.groovy")
(4 ,(concat "controllers/" grails-source-code-base-directory "/UrlMappings.groovy")
(4 ,(concat "controllers/" grails-source-code-base-directory "/UrlMappings.groovy"))
(5 ,(concat "controllers/" grails-source-code-base-directory "/UrlMappings.groovy"))
))

;; TODO: refactor using only one list
(defvar grails-bootstrap-by-version
`((2 "conf/BootStrap.groovy")
(3 "init/BootStrap.groovy")
(4 ,(concat "init/" grails-source-code-base-directory "/BootStrap.groovy")
(4 ,(concat "init/" grails-source-code-base-directory "/BootStrap.groovy"))
(5 ,(concat "init/" grails-source-code-base-directory "/BootStrap.groovy"))
))

Expand Down

0 comments on commit 3019f86

Please sign in to comment.