From 575620510facff114ed75845175a1aa9f00506e9 Mon Sep 17 00:00:00 2001 From: Fanael Linithien Date: Fri, 17 Oct 2014 18:27:50 +0200 Subject: [PATCH] Reindent after cf61a3aee6. --- rainbow-delimiters.el | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rainbow-delimiters.el b/rainbow-delimiters.el index 889d977..de1a38c 100644 --- a/rainbow-delimiters.el +++ b/rainbow-delimiters.el @@ -441,8 +441,8 @@ MATCH is nil iff it's a mismatched closing delimiter." ;; Ensure user has enabled highlighting of this delimiter type. (when (symbol-value delim) (rainbow-delimiters--propertize-delimiter loc - depth - match))) + depth + match))) ;;; Font-Lock functionality @@ -496,18 +496,18 @@ Used by font-lock for dynamic highlighting." (progn (setq depth (1+ depth)) (rainbow-delimiters--apply-color (cdr opening-delim-info) - depth - delim-pos - t)) + depth + delim-pos + t)) ;; Not an opening delimiter, so it's a closing delimiter. (let ((closing-delim-info (assq delim rainbow-delimiters--closing-delim-info)) (matching-opening-delim (char-after (nth 1 ppss)))) (rainbow-delimiters--apply-color (nthcdr 2 closing-delim-info) - depth - delim-pos - (eq (nth 1 closing-delim-info) - matching-opening-delim)) + depth + delim-pos + (eq (nth 1 closing-delim-info) + matching-opening-delim)) (setq depth (if (<= depth 0) 0 ; unmatched delim (1- depth)))))))))))))