summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2018-01-09 06:44:05 -0700
committerGitHub <noreply@github.com>2018-01-09 06:44:05 -0700
commitcfb440810a010b099e7196f8701c9d990a3641d8 (patch)
treef768e33393c08cf535cf65482377656230618445 /rust-mode.el
parent27911c88b0d32b66429d61bb056ecf1b10e66598 (diff)
parent216faf2a7372a252a7e2190c9a7474dcab71e93a (diff)
downloadrust-mode-cfb440810a010b099e7196f8701c9d990a3641d8.tar.gz
Merge pull request #258 from sebastiencs/master
Do not indent where clause by default (follow standard) #257
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el
index 6193ebe..4fc1783 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -121,7 +121,7 @@
:group 'rust-mode
:safe #'booleanp)
-(defcustom rust-indent-where-clause t
+(defcustom rust-indent-where-clause nil
"Indent the line starting with the where keyword following a
function or trait. When nil, where will be aligned with fn or trait."
:type 'boolean