branch: externals/phps-mode commit d7c5f6716aeb7c47c04912a9d192c867fb81b2ea Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
More work on nesting-stack --- phps-mode-functions.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phps-mode-functions.el b/phps-mode-functions.el index 46419e2..8723980 100644 --- a/phps-mode-functions.el +++ b/phps-mode-functions.el @@ -389,7 +389,7 @@ (setq column-level (1+ column-level))) (when phps-mode-functions-verbose - (message "Pushing %s to nesting-stack since is greater than %s" nesting-end nesting-start)) + (message "Pushing %s to nesting-stack since is lesser than %s" nesting-start nesting-end)) (push nesting-start nesting-stack)) ;; When nesting decreases but ends with a nesting increase, increase indent by one @@ -397,7 +397,7 @@ line-contained-nesting-increase) (setq column-level (1+ column-level)) (when phps-mode-functions-verbose - (message "Pushing %s to nesting-stack since is greater than %s" nesting-end nesting-start)) + (message "Pushing %s to nesting-stack since is lesser than %s" nesting-start nesting-end)) (push nesting-start nesting-stack)) ;; Calculate indentation level at start of line