Commit bc3b9260 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

comment fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2125 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
...@@ -3092,7 +3092,7 @@ void do_justify(bool full_justify) ...@@ -3092,7 +3092,7 @@ void do_justify(bool full_justify)
edit_refresh(); edit_refresh();
} }
} else { } else {
/* Blow away the justify buffer.*/ /* Blow away the text in the justify buffer.*/
free_filestruct(jusbuffer); free_filestruct(jusbuffer);
jusbuffer = NULL; jusbuffer = NULL;
} }
...@@ -3265,8 +3265,8 @@ void handle_sigwinch(int s) ...@@ -3265,8 +3265,8 @@ void handle_sigwinch(int s)
unpartition_filestruct(&filepart); unpartition_filestruct(&filepart);
#ifndef DISABLE_JUSTIFY #ifndef DISABLE_JUSTIFY
/* If the justify buffer isn't empty, blow it away and display the /* If the justify buffer isn't empty, blow away the text in it and
* shortcut list with UnCut. */ * display the shortcut list with UnCut. */
if (jusbuffer != NULL) { if (jusbuffer != NULL) {
free_filestruct(jusbuffer); free_filestruct(jusbuffer);
jusbuffer = NULL; jusbuffer = NULL;
......
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