2 ;;; indent-code.el --- Run Emacs to indent a package definition.
4 ;; Copyright © 2017 Alex Kost <alezost@gmail.com>
5 ;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org>
7 ;; This file is part of GNU Guix.
9 ;; GNU Guix is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Guix is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
24 ;; This scripts indents the given file or package definition in the specified
29 ;; Load Scheme indentation rules from ".dir-locals.el".
32 (let ((default-directory (file-name-as-directory load-file-name
))
33 (enable-local-variables :all
))
34 (hack-dir-local-variables)
35 (hack-local-variables-apply)))
37 ;; Add indentation info for Scheme constructs that are not Guix-specific.
38 ;; This is normally provided by Geiser but this file is for people who may not
39 ;; be running Geiser, so we just copy it here (from 'geiser-syntax.el').
40 (defmacro guix-syntax--scheme-indent
(&rest pairs
)
41 `(progn ,@(mapcar (lambda (p)
42 `(put ',(car p
) 'scheme-indent-function
',(cadr p
)))
45 (guix-syntax--scheme-indent
59 (match-let scheme-let-indent
)
73 (test-group-with-cleanup 1)
74 (test-runner-on-bad-count! 1)
75 (test-runner-on-bad-end-name! 1)
76 (test-runner-on-final! 1)
77 (test-runner-on-group-begin! 1)
78 (test-runner-on-group-end! 1)
79 (test-runner-on-test-begin! 1)
80 (test-runner-on-test-end! 1)
85 (with-exception-handler 1)
89 (pcase command-line-args-left
90 (`(,file-name
,package-name
)
91 ;; Indent the definition of PACKAGE-NAME in FILE-NAME.
93 (goto-char (point-min))
94 (if (re-search-forward (concat "^(define\\(-public\\) +"
97 (let ((indent-tabs-mode nil
))
102 (error "Package '%s' not found in '%s'"
103 package-name file-name
)))
105 ;; Indent all of FILE-NAME.
106 (find-file file-name
)
107 (let ((indent-tabs-mode nil
))
108 (indent-region (point-min) (point-max))
112 (error "Usage: indent-code.el FILE [PACKAGE]")))
114 ;;; indent-code.el ends here