From ee746be91f2b84d12f23fd5cc2ddab5334ae280b Mon Sep 17 00:00:00 2001 From: Adam Nemet Date: Tue, 24 Jun 2014 01:42:29 +0000 Subject: [PATCH] [Emacs] Use spaces rather than tabs for indentation in tablegen-mode llvm-svn: 211564 --- llvm/utils/emacs/tablegen-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/utils/emacs/tablegen-mode.el b/llvm/utils/emacs/tablegen-mode.el index e83a34ca1816..c0ae75100bfb 100644 --- a/llvm/utils/emacs/tablegen-mode.el +++ b/llvm/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.