To: vim_dev@googlegroups.com Subject: Patch 9.0.0696 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0696 Problem: It is unclear if the +rightleft and +arabic features are actively being used. Solution: Disable the features, await feedback. Files: src/feature.h *** ../vim-9.0.0695/src/feature.h 2022-10-08 13:49:41.889378451 +0100 --- src/feature.h 2022-10-08 15:27:21.590321160 +0100 *************** *** 236,241 **** --- 236,253 ---- # endif #endif + // It is unclear if there are any users of the +rightleft and +arabic fetures. + // The lack of feedback and bug reports suggests that they are not actively + // being used. + // FOR NOW: disable the features here. If nobody complains the code can be + // removed. + #ifdef FEAT_RIGHTLEFT + # undef FEAT_RIGHTLEFT + #endif + #ifdef FEAT_ARABIC + # undef FEAT_ARABIC + #endif + /* * +emacs_tags When FEAT_EMACS_TAGS defined: Include support for * emacs style TAGS file. *** ../vim-9.0.0695/src/version.c 2022-10-08 14:39:31.966903597 +0100 --- src/version.c 2022-10-08 15:28:40.714848383 +0100 *************** *** 701,702 **** --- 701,704 ---- { /* Add new patch number below this line */ + /**/ + 696, /**/ -- What the word 'politics' means: 'Poli' in Latin meaning 'many' and 'tics' meaning 'bloodsucking creatures'. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///