commit 874703be5fcf299346ca5c4b3e2a531c55c4de29
parent 3d12f0f53d10c8d819d39ca6c39d7bfc9ef3f6e1
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Thu, 27 Oct 2005 03:35:42 +0000
cosmetically refactor statusbar()
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3052 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
M | src/winio.c | | | 59 | +++++++++++++++++++++++++++++------------------------------ |
1 file changed, 29 insertions(+), 30 deletions(-)
diff --git a/src/winio.c b/src/winio.c
@@ -2925,6 +2925,11 @@ void set_modified(void)
void statusbar(const char *msg, ...)
{
va_list ap;
+ char *bar, *foo;
+ size_t start_x, foo_len;
+#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
+ bool old_whitespace;
+#endif
va_start(ap, msg);
@@ -2939,40 +2944,34 @@ void statusbar(const char *msg, ...)
/* Blank out the line. */
blank_statusbar();
- {
- char *bar, *foo;
- size_t start_x = 0, foo_len;
#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
- bool old_whitespace = ISSET(WHITESPACE_DISPLAY);
-
- UNSET(WHITESPACE_DISPLAY);
+ old_whitespace = ISSET(WHITESPACE_DISPLAY);
+ UNSET(WHITESPACE_DISPLAY);
#endif
- bar = charalloc(mb_cur_max() * (COLS - 3));
- vsnprintf(bar, mb_cur_max() * (COLS - 3), msg, ap);
- va_end(ap);
- foo = display_string(bar, 0, COLS - 4, FALSE);
+ bar = charalloc(mb_cur_max() * (COLS - 3));
+ vsnprintf(bar, mb_cur_max() * (COLS - 3), msg, ap);
+ va_end(ap);
+ foo = display_string(bar, 0, COLS - 4, FALSE);
#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
- if (old_whitespace)
- SET(WHITESPACE_DISPLAY);
+ if (old_whitespace)
+ SET(WHITESPACE_DISPLAY);
#endif
- free(bar);
- foo_len = strlenpt(foo);
- start_x = (COLS - foo_len - 4) / 2;
-
- wmove(bottomwin, 0, start_x);
- wattron(bottomwin, A_REVERSE);
-
- waddstr(bottomwin, "[ ");
- waddstr(bottomwin, foo);
- free(foo);
- waddstr(bottomwin, " ]");
- wattroff(bottomwin, A_REVERSE);
- wnoutrefresh(bottomwin);
- reset_cursor();
- wnoutrefresh(edit);
- /* Leave the cursor at its position in the edit window, not
- * in the statusbar. */
- }
+ free(bar);
+ foo_len = strlenpt(foo);
+ start_x = (COLS - foo_len - 4) / 2;
+
+ wmove(bottomwin, 0, start_x);
+ wattron(bottomwin, A_REVERSE);
+ waddstr(bottomwin, "[ ");
+ waddstr(bottomwin, foo);
+ free(foo);
+ waddstr(bottomwin, " ]");
+ wattroff(bottomwin, A_REVERSE);
+ wnoutrefresh(bottomwin);
+ reset_cursor();
+ wnoutrefresh(edit);
+ /* Leave the cursor at its position in the edit window, not in
+ * the statusbar. */
disable_cursorpos = TRUE;