emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/phps-mode d7c5f67 190/405: More work on nesting-stack


From: Stefan Monnier
Subject: [elpa] externals/phps-mode d7c5f67 190/405: More work on nesting-stack
Date: Sat, 13 Jul 2019 10:00:10 -0400 (EDT)

branch: externals/phps-mode
commit d7c5f6716aeb7c47c04912a9d192c867fb81b2ea
Author: Christian Johansson <address@hidden>
Commit: Christian Johansson <address@hidden>

    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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]