[llvm] r211564 - [Emacs] Use spaces rather than tabs for indentation in tablegen-mode

Adam Nemet anemet at apple.com
Mon Jun 23 18:42:30 PDT 2014


Author: anemet
Date: Mon Jun 23 20:42:29 2014
New Revision: 211564

URL: http://llvm.org/viewvc/llvm-project?rev=211564&view=rev
Log:
[Emacs] Use spaces rather than tabs for indentation in tablegen-mode

Modified:
    llvm/trunk/utils/emacs/tablegen-mode.el

Modified: llvm/trunk/utils/emacs/tablegen-mode.el
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/emacs/tablegen-mode.el?rev=211564&r1=211563&r2=211564&view=diff
==============================================================================
--- llvm/trunk/utils/emacs/tablegen-mode.el (original)
+++ llvm/trunk/utils/emacs/tablegen-mode.el Mon Jun 23 20:42:29 2014
@@ -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.
 





More information about the llvm-commits mailing list