summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authormrBliss <dewinant@gmail.com>2015-12-02 13:47:50 +0100
committermrBliss <dewinant@gmail.com>2015-12-02 13:54:11 +0100
commit92584c303acc417501d1faa593ff1392fd306c1d (patch)
tree70c57f5b01521ee306a65b31a458bdd38b100aa7 /rust-mode.el
parentb76e803768bd572424b3f111aa55269f5d8226fc (diff)
downloadrust-mode-92584c303acc417501d1faa593ff1392fd306c1d.tar.gz
Fix the special case for the first line
This special case broke indentation of `where` clauses.
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/rust-mode.el b/rust-mode.el
index d857f25..6b09580 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -444,10 +444,11 @@ function or trait. When nil, where will be aligned with fn or trait."
(save-excursion
(rust-rewind-irrelevant)
- ;; Point is now at the end of the previous ine
+ ;; Point is now at the end of the previous line
(or
- ;; If we are at the first line, no indentation is needed, so stay at baseline...
- (= 1 (line-number-at-pos (point)))
+ ;; If we are at the start of the buffer, no
+ ;; indentation is needed, so stay at baseline...
+ (= (point) 1)
;; ..or if the previous line ends with any of these:
;; { ? : ( , ; [ }
;; then we are at the beginning of an expression, so stay on the baseline...