From: Benno Schulenberg <bensberg@justemail.net>
Date: Sun, 24 Jan 2016 20:44:39 +0000 (+0000)
Subject: Eliding an unneeded function.
X-Git-Tag: v2.5.2~48
X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=decee3206727b741d97623cb71c45aabe185f855;p=nano.git

Eliding an unneeded function.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5587 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---

diff --git a/ChangeLog b/ChangeLog
index 8f3ad146..b6418523 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@
 	Chop an always-FALSE parameter and delete an unused return value.
 	* src/prompt.c (do_prompt): Remove a superfluous free.
 	* src/prompt.c (update_the_bar): Bundle some statements.
+	* src/prompt.c (need_statusbar_update): Elide this function.
 
 2016-01-22  Benno Schulenberg  <bensberg@justemail.net>
 	* src/utils.c (get_homedir): Don't use $HOME when we're root, because
diff --git a/src/prompt.c b/src/prompt.c
index 4d9e9165..d4a07a5a 100644
--- a/src/prompt.c
+++ b/src/prompt.c
@@ -646,25 +646,16 @@ void update_statusbar_line(const char *curranswer, size_t index)
     wnoutrefresh(bottomwin);
 }
 
-/* Return TRUE if we need an update after moving the cursor, and FALSE
- * otherwise.  We need an update if pww_save and statusbar_pww are on
- * different pages. */
-bool need_statusbar_update(size_t pww_save)
-{
-    size_t start_col = strlenpt(prompt) + 2;
-
-    return get_statusbar_page_start(start_col, start_col + pww_save) !=
-	get_statusbar_page_start(start_col, start_col + statusbar_pww);
-}
-
 /* Update the statusbar line /if/ the placewewant changes page. */
 void update_the_bar(void)
 {
+    size_t start_col = strlenpt(prompt) + 2;
     size_t was_pww = statusbar_pww;
 
     statusbar_pww = statusbar_xplustabs();
 
-    if (need_statusbar_update(was_pww))
+    if (get_statusbar_page_start(start_col, start_col + statusbar_pww) !=
+		get_statusbar_page_start(start_col, start_col + was_pww))
 	update_statusbar_line(answer, statusbar_x);
 }
 
diff --git a/src/proto.h b/src/proto.h
index 4f737df2..2e342bd3 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -536,7 +536,6 @@ size_t statusbar_xplustabs(void);
 size_t get_statusbar_page_start(size_t start_col, size_t column);
 void reset_statusbar_cursor(void);
 void update_statusbar_line(const char *curranswer, size_t index);
-bool need_statusbar_update(size_t pww_save);
 void update_the_bar(void);
 void total_statusbar_refresh(void (*refresh_func)(void));
 functionptrtype get_prompt_string(int *value, bool allow_tabs,