]> git.wh0rd.org Git - nano.git/commitdiff
fix an assert, update another copyright year, and add a few more of DB's
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 2 Jan 2005 20:30:15 +0000 (20:30 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 2 Jan 2005 20:30:15 +0000 (20:30 +0000)
tweaks to fix a few minor bugs with UTF-8 display at the statusbar
prompt

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

ChangeLog
src/search.c
src/winio.c

index 2fe31e637302cc79c4e4a1fbb4c92c1516d7fd49..22d5357741b18266466759a71a02e63c3e73eb08 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -70,11 +70,11 @@ CVS code -
          do_statusbar_backspace(), do_statusbar_delete(),
          do_statusbar_cut_text(), and do_statusbar_output(). (DLR)
        - Even more steps toward wide character/multibyte character
-         support.  Movement and (most) cursor display at the statusbar
-         prompt should now work properly with a string containing
-         multibyte characters, and text display of such strings should
-         now (mostly) work properly as well.  Changes to
-         do_statusbar_right(), do_statusbar_left(),
+         support.  Movement and cursor display at the statusbar prompt
+         should now work properly with a string containing multibyte
+         characters, and text display of such strings should now work
+         properly as well.  Changes to search_init(),
+         nanoget_repaint(), do_statusbar_right(), do_statusbar_left(),
          do_statusbar_backspace(), and do_statusbar_delete(). (David
          Benbennick and DLR)
        - Implement cutting from the current position to the end of the
index 7ef038092efc22ba726bfdb981d21d20b76cc05b..02c054d59636157ab93f37ee3baac257642ef8fd 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   search.c                                                             *
  *                                                                        *
- *   Copyright (C) 2000-2004 Chris Allegretta                             *
+ *   Copyright (C) 2000-2005 Chris Allegretta                             *
  *   This program is free software; you can redistribute it and/or modify *
  *   it under the terms of the GNU General Public License as published by *
  *   the Free Software Foundation; either version 2, or (at your option)  *
@@ -152,7 +152,7 @@ int search_init(bool replacing, bool use_answer)
     if (last_search[0] != '\0') {
        char *disp = display_string(last_search, 0, COLS / 3, FALSE);
 
-       buf = charalloc(COLS / 3 + 7);
+       buf = charalloc(strlen(disp) + 7);
        /* We use COLS / 3 here because we need to see more on the
         * line. */
        sprintf(buf, " [%s%s]", disp,
index 4cc6c77e0a997f4412eea9b008149771382550a9..c2fd6ef39e67782c6a76d0d1d5883bd5dcfb41eb 100644 (file)
@@ -2329,9 +2329,9 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
 void nanoget_repaint(const char *buf, const char *inputbuf, size_t x)
 {
     size_t x_real = strnlenpt(inputbuf, x);
-    int wid = COLS - strlen(buf) - 2;
+    int wid = COLS - strlenpt(buf) - 2;
 
-    assert(0 <= x && x <= strlen(inputbuf));
+    assert(x <= strlen(inputbuf));
 
     wattron(bottomwin, A_REVERSE);
     blank_statusbar();