auto merge of #6066 : djui/rust/patch-1, r=graydon

This commit is contained in:
bors 2013-04-27 10:24:35 -07:00
commit 9ea32a380d

View File

@ -23,7 +23,12 @@
:require 'rust-mode
:group 'rust-mode)
(defvar rust-indent-unit 4)
(defcustom rust-indent-unit 4
"Amount of offset per level of indentation"
:type 'integer
:require 'rust-mode
:group 'rust-mode)
(defvar rust-syntax-table (let ((table (make-syntax-table)))
(c-populate-syntax-table table)
table))