diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-11-22 14:39:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-12-01 16:00:14 +0100 |
commit | 1fafa2f58732a3fb75258be342c92a2772af2860 (patch) | |
tree | 6018c4d2844b2a638176e7d66c9cda33010679bf /.dir-locals.el | |
parent | 4cdb27af48c83b7d036c4d8cccb792a51d766790 (diff) | |
download | guix-1fafa2f58732a3fb75258be342c92a2772af2860.tar guix-1fafa2f58732a3fb75258be342c92a2772af2860.tar.gz |
weather: Use (guix progress) for progress report.
* guix/progress.scm (start-progress-reporter!, stop-progress-reporter!)
(progress-reporter-report!): New procedures.
* guix/scripts/weather.scm (call-with-progress-reporter): New procedure.
(package-outputs)[update-progress!]: Remove.
Use 'call-with-progress-reporter' instead.
(guix-weather): Parameterize 'current-terminal-columns'.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 04b58d2ce0..949f7e0bc8 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -77,7 +77,8 @@ (eval . (put 'container-excursion 'scheme-indent-function 1)) (eval . (put 'eventually 'scheme-indent-function 1)) - ;; Recognize '~', '+', and '$', as used for gexps, as quotation symbols. + (eval . (put 'call-with-progress-reporter 'scheme-indent-function 1)) + ;; This notably allows '(' in Paredit to not insert a space when the ;; preceding symbol is one of these. (eval . (modify-syntax-entry ?~ "'")) |