diff mbox

[committed] gen-pass-instances.awk: Add emacs indent setting

Message ID 56444877.7070600@mentor.com
State New
Headers show

Commit Message

Tom de Vries Nov. 12, 2015, 8:06 a.m. UTC
Hi,

this patch adds emacs indentation settings to gen-pass-instances.awk. 
The default indentation width in emacs awk mode seems to be 4, and this 
setting overrides it to 8, which is the style used in this file.

Committed to trunk as trivial.

Thanks,
- Tom
diff mbox

Patch

gen-pass-instances.awk: Add emacs indent setting

2015-11-11  Tom de Vries  <tom@codesourcery.com>

	* gen-pass-instances.awk: Add emacs indent setting.

---
 gcc/gen-pass-instances.awk | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gcc/gen-pass-instances.awk b/gcc/gen-pass-instances.awk
index f36f510..a0be6a1 100644
--- a/gcc/gen-pass-instances.awk
+++ b/gcc/gen-pass-instances.awk
@@ -64,3 +64,8 @@  function handle_line()
 }
 
 { handle_line() }
+
+# Local Variables:
+# mode:awk
+# c-basic-offset:8
+# End: