comparison src/message.c @ 14909:c97b4b537572 v8.1.0466

patch 8.1.0466: autocmd test fails commit https://github.com/vim/vim/commit/6a2633b00bb00bcf0d994f08d1c54ace2c221b58 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 7 23:16:36 2018 +0200 patch 8.1.0466: autocmd test fails Problem: Autocmd test fails. Solution: Do call inchar() when flushing typeahead.
author Bram Moolenaar <Bram@vim.org>
date Sun, 07 Oct 2018 23:30:06 +0200
parents 27b9a84395b5
children a527110d5f56
comparison
equal deleted inserted replaced
14908:2c102d67a1f0 14909:c97b4b537572
686 ++global_busy; 686 ++global_busy;
687 687
688 if (p_eb) 688 if (p_eb)
689 beep_flush(); /* also includes flush_buffers() */ 689 beep_flush(); /* also includes flush_buffers() */
690 else 690 else
691 flush_buffers(FALSE); /* flush internal buffers */ 691 flush_buffers(FLUSH_MINIMAL); // flush internal buffers
692 did_emsg = TRUE; /* flag for DoOneCmd() */ 692 did_emsg = TRUE; // flag for DoOneCmd()
693 #ifdef FEAT_EVAL 693 #ifdef FEAT_EVAL
694 did_uncaught_emsg = TRUE; 694 did_uncaught_emsg = TRUE;
695 #endif 695 #endif
696 } 696 }
697 697