summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-09-27 11:57:48 +0300
committerAlex Kost <alezost@gmail.com>2015-09-27 18:53:16 +0300
commit3bf45a47e9e38319dedac1a59d27b473fe1dde81 (patch)
treed7797dc520b183f34f9514347e3cd4729415cdf7
parent51b62a7322e3257bbee46fc0319174a39170e1ba (diff)
downloadgeiser-guile-3bf45a47e9e38319dedac1a59d27b473fe1dde81.tar.gz
geiser-guile-3bf45a47e9e38319dedac1a59d27b473fe1dde81.tar.bz2
Clean up indentation rules
Move general indentation rules to "geiser-syntax".
-rw-r--r--elisp/geiser-guile.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el
index d75089f..f942930 100644
--- a/elisp/geiser-guile.el
+++ b/elisp/geiser-guile.el
@@ -281,14 +281,21 @@ This function uses `geiser-guile-init-file' if it exists."
(geiser-syntax--scheme-indent
(c-declare 0)
(c-lambda 2)
+ (call-with-input-string 1)
+ (call-with-output-string 0)
(lambda* 1)
(pmatch defun)
(sigaction 1)
+ (with-error-to-file 1)
+ (with-error-to-port 1)
+ (with-error-to-string 0)
(with-fluid* 1)
(with-fluids 1)
(with-fluids* 1)
+ (with-input-from-string 1)
(with-method 1)
- (with-mutex 1))
+ (with-mutex 1)
+ (with-output-to-string 0))