Commit 61a71403 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

revert last change, as it's actually redundant, and fix a few comments

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2198 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
...@@ -1814,9 +1814,9 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool ...@@ -1814,9 +1814,9 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
dollars) dollars)
{ {
size_t start_index; size_t start_index;
/* Index in buf of first character shown in return value. */ /* Index in buf of the first character shown. */
size_t column; size_t column;
/* Screen column start_index corresponds to. */ /* Screen column that start_index corresponds to. */
size_t alloc_len; size_t alloc_len;
/* The length of memory allocated for converted. */ /* The length of memory allocated for converted. */
char *converted; char *converted;
...@@ -1856,7 +1856,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool ...@@ -1856,7 +1856,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
); );
if (is_cntrl_char(wide_buf)) { if (is_cntrl_char(wide_buf)) {
if (dollars && column > start_col) { if (column > start_col) {
char *ctrl_wide_buf = charalloc(MB_CUR_MAX); char *ctrl_wide_buf = charalloc(MB_CUR_MAX);
int ctrl_wide_buf_len, i; int ctrl_wide_buf_len, i;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment