diff options
author | Austin Seipp <austin@well-typed.com> | 2014-07-21 23:08:31 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-28 09:29:17 -0500 |
commit | 39b5c1cbd8950755de400933cecca7b8deb4ffcd (patch) | |
tree | 8174e56815d783286f2ac0901a61a260bde60acd /rts/hooks/StackOverflow.c | |
parent | 952f622c0cc91b1c904bfc359a864f39503aa50d (diff) | |
download | haskell-39b5c1cbd8950755de400933cecca7b8deb4ffcd.tar.gz |
rts: add Emacs 'Local Variables' to every .c file
This will hopefully help ensure some basic consistency in the forward by
overriding buffer variables. In particular, it sets the wrap length, the
offset to 4, and turns off tabs.
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts/hooks/StackOverflow.c')
-rw-r--r-- | rts/hooks/StackOverflow.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rts/hooks/StackOverflow.c b/rts/hooks/StackOverflow.c index 407293902d..50995b8430 100644 --- a/rts/hooks/StackOverflow.c +++ b/rts/hooks/StackOverflow.c @@ -15,3 +15,11 @@ StackOverflowHook (W_ stack_size) /* in bytes */ fprintf(stderr, "Stack space overflow: current size %" FMT_Word " bytes.\nUse `+RTS -Ksize -RTS' to increase it.\n", stack_size); } + +// Local Variables: +// mode: C +// fill-column: 80 +// indent-tabs-mode: nil +// c-basic-offset: 4 +// buffer-file-coding-system: utf-8-unix +// End: |