Tony Mechelynck wrote:
> No error in Tiny with no GUI and no error in Normal to Huge with GTK3
> GUI. This build is configured by sourcing the following commands in
> the same bash shell:
> export CONF_OPT_GUI='--enable-gui=motif'
> export CONF_OPT_FEAT='--with-features=small'
> export CONF_ARGS2='--with-vim-name=vim-small'
> export CONF_OPT_COMPBY='"[email protected]"'
I confirm that vim small with motif gui fails to link.
gui.c is missing #ifdef FEAT_TITLE around the call to maketitle():
diff --git a/src/gui.c b/src/gui.c
index 17f4e9506..616f6022b 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -4413,8 +4413,10 @@ gui_update_scrollbars(
}
}
+#ifdef FEAT_TITLE
// update the title, it may show the scroll position
maketitle();
+#endif
prev_curwin = curwin;
--hold_gui_events;
--
--
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/CAON-T_j6JFwaJ2R6eC4THPVsvhewg8OhbqKu92K457xaneDMUQ%40mail.gmail.com.