[LyX/master] Fix indentation

Kornel Benko kornel at lyx.org
Tue Apr 7 09:27:19 UTC 2020


commit 80cd1168053bce096c15e4f3de913b718e553b0f
Author: Kornel Benko <kornel at lyx.org>
Date:   Tue Apr 7 11:47:08 2020 +0200

    Fix indentation
---
 src/lyxfind.cpp |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp
index f4bf76b..6f6d0d5 100644
--- a/src/lyxfind.cpp
+++ b/src/lyxfind.cpp
@@ -3030,9 +3030,9 @@ MatchResult MatchStringAdv::operator()(DocIterator const & cur, int len, bool at
 	       << ", inTexted=" << cur.inTexted());
 	if (res == 0 || !at_begin || !opt.matchword || !cur.inTexted())
 		return mres;
-        if ((len > 0) && (res < len)) {
+	if ((len > 0) && (res < len)) {
 	  mres.match_len = 0;
-          return mres;
+	  return mres;
 	}
 	Paragraph const & par = cur.paragraph();
 	bool ws_left = (cur.pos() > 0)
@@ -3044,18 +3044,18 @@ MatchResult MatchStringAdv::operator()(DocIterator const & cur, int len, bool at
 	LYXERR(Debug::FIND,
 	       "cur.pos()=" << cur.pos() << ", res=" << res
 	       << ", separ: " << ws_left << ", " << ws_right
-               << ", len: " << len
+	       << ", len: " << len
 	       << endl);
 	if (ws_left && ws_right) {
-          // Check for word separators inside the found 'word'
-          for (int i = 0; i < len; i++) {
-            if (par.isWordSeparator(cur.pos() + i)) {
+	  // Check for word separators inside the found 'word'
+	  for (int i = 0; i < len; i++) {
+	    if (par.isWordSeparator(cur.pos() + i)) {
 	      mres.match_len = 0;
-              return mres;
+	      return mres;
 	    }
-          }
-          return mres;
-        }
+	  }
+	  return mres;
+	}
 	mres.match_len = 0;
 	return mres;
 }
@@ -3417,9 +3417,9 @@ int findForwardAdv(DocIterator & cur, MatchStringAdv & match)
 						match_len_zero_count = 0;
 				}
 				else {
-                                        if (++match_len_zero_count > 3) {
-                                                LYXERR(Debug::FIND, "match_len2_zero_count: " << match_len_zero_count << ", match_len was " << match_len);
-                                        }
+					if (++match_len_zero_count > 3) {
+						LYXERR(Debug::FIND, "match_len2_zero_count: " << match_len_zero_count << ", match_len was " << match_len);
+					}
 					break;
 				}
 			}


More information about the lyx-cvs mailing list