Hi,
2015-11-20(Fri) 6:43:29 UTC+9 Christian Brabandt:
> Which one is line 5790? Can you print the value ofr fr and curfr? (use p fr
> and p curfr on the gdb prompt at frame 7)
I can reproduced it. (fedora21 + konsole)
and make a patch.
Please check this.
--
Best regards,
Hirohito Higashi (a.k.a h_east)
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff -r 8896150aba23 src/window.c
--- a/src/window.c Thu Nov 19 20:45:05 2015 +0100
+++ b/src/window.c Fri Nov 20 14:14:52 2015 +0900
@@ -5785,6 +5785,8 @@
offset = room; /* Move as far as we can */
if (offset <= 0) /* No room at all, quit. */
return;
+ if (fr == NULL) /* No need to grow frame */
+ return;
/* grow frame fr by offset lines */
frame_new_width(fr, fr->fr_width + offset, left, FALSE);