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 -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
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].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20221008143143.E15891C0CD2%40moolenaar.net.