Adjusting some indentation.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5085 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
7239fda971
commit
fcd4468f90
|
@ -1,3 +1,6 @@
|
||||||
|
2014-07-31 Benno Schulenberg <bensberg@justemail.net>
|
||||||
|
* src/files.c (do_insertfile): Adjust some indentation.
|
||||||
|
|
||||||
2014-07-27 Benno Schulenberg <bensberg@justemail.net>
|
2014-07-27 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/global.c (add_to_sclist): Remove the now unused and unneeded
|
* src/global.c (add_to_sclist): Remove the now unused and unneeded
|
||||||
addition ability from this builder function of the shortcut list.
|
addition ability from this builder function of the shortcut list.
|
||||||
|
|
16
src/files.c
16
src/files.c
|
@ -1129,18 +1129,18 @@ void do_insertfile(
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
/* Keep track of whether the mark begins inside the
|
/* Keep track of whether the mark begins inside the
|
||||||
* partition and will need adjustment. */
|
* partition and will need adjustment. */
|
||||||
if (openfile->mark_set) {
|
if (openfile->mark_set) {
|
||||||
filestruct *top, *bot;
|
filestruct *top, *bot;
|
||||||
size_t top_x, bot_x;
|
size_t top_x, bot_x;
|
||||||
|
|
||||||
mark_order((const filestruct **)&top, &top_x,
|
mark_order((const filestruct **)&top, &top_x,
|
||||||
(const filestruct **)&bot, &bot_x,
|
(const filestruct **)&bot, &bot_x,
|
||||||
&right_side_up);
|
&right_side_up);
|
||||||
|
|
||||||
single_line = (top == bot);
|
single_line = (top == bot);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef DISABLE_MULTIBUFFER
|
#ifndef DISABLE_MULTIBUFFER
|
||||||
|
|
Loading…
Reference in New Issue