comparison src/spellsuggest.c @ 30825:c7983f593fa7 v9.0.0747

patch 9.0.0747: too many #ifdefs Commit: https://github.com/vim/vim/commit/ba43e76fcd5b2da57dbaa4d9a555793fe8ac344e Author: Martin Tournoij <martin@arp242.net> Date: Thu Oct 13 22:12:15 2022 +0100 patch 9.0.0747: too many #ifdefs Problem: Too many #ifdefs. Solution: Gradudate the +cmdline_info feature. (Martin Tournoij, closes #11330)
author Bram Moolenaar <Bram@vim.org>
date Thu, 13 Oct 2022 23:15:05 +0200
parents 6d93f09815c1
children 543153d582d5
comparison
equal deleted inserted replaced
30824:b7f12666bbb4 30825:c7983f593fa7
700 // "p" may be freed here 700 // "p" may be freed here
701 ml_replace(curwin->w_cursor.lnum, p, FALSE); 701 ml_replace(curwin->w_cursor.lnum, p, FALSE);
702 curwin->w_cursor.col = c; 702 curwin->w_cursor.col = c;
703 703
704 changed_bytes(curwin->w_cursor.lnum, c); 704 changed_bytes(curwin->w_cursor.lnum, c);
705 #if defined(FEAT_PROP_POPUP)
705 if (curbuf->b_has_textprop && len_diff != 0) 706 if (curbuf->b_has_textprop && len_diff != 0)
706 adjust_prop_columns(curwin->w_cursor.lnum, c, len_diff, 707 adjust_prop_columns(curwin->w_cursor.lnum, c, len_diff,
707 APC_SUBSTITUTE); 708 APC_SUBSTITUTE);
709 #endif
708 } 710 }
709 } 711 }
710 else 712 else
711 curwin->w_cursor = prev_cursor; 713 curwin->w_cursor = prev_cursor;
712 714