diff options
author | Adam Nemet <anemet@apple.com> | 2014-06-24 01:42:29 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2014-06-24 01:42:29 +0000 |
commit | 68cda26497ec5cc9471f2f5ab3fa7176ad46a00a (patch) | |
tree | fb376d0af71f33c24319f809e0610e4beb3bd527 /utils | |
parent | 856361cb06d854a76c0678562ece605a19cff21a (diff) |
[Emacs] Use spaces rather than tabs for indentation in tablegen-mode
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/emacs/tablegen-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/emacs/tablegen-mode.el b/utils/emacs/tablegen-mode.el index e83a34ca181..c0ae75100bf 100644 --- a/utils/emacs/tablegen-mode.el +++ b/utils/emacs/tablegen-mode.el @@ -112,6 +112,7 @@ (set-syntax-table tablegen-mode-syntax-table) (make-local-variable 'comment-start) (setq comment-start "//") + (setq indent-tabs-mode nil) (run-hooks 'tablegen-mode-hook)) ; Finally, this permits the user to ; customize the mode with a hook. |