Problem: When jumping to a help tag a closed fold doesn't open.
Solution: Save and restore KeyTyped. (Yasuhiro Matsumoto)
int len;
char_u *lang;
#endif
+#ifdef FEAT_FOLDING
+ int old_KeyTyped = KeyTyped;
+#endif
if (eap != NULL)
{
if (!p_im)
restart_edit = 0; /* don't want insert mode in help file */
+#ifdef FEAT_FOLDING
+ /* Restore KeyTyped, setting 'filetype=help' may reset it.
+ * It is needed for do_tag top open folds under the cursor. */
+ KeyTyped = old_KeyTyped;
+#endif
+
if (tag != NULL)
do_tag(tag, DT_HELP, 1, FALSE, TRUE);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 327,
/**/
326,
/**/