aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
authorJoel Teichroeb <joel@teichroeb.net>2014-02-28 15:37:19 -0800
committerJoel Teichroeb <joel@teichroeb.net>2014-12-13 11:43:48 -0800
commitd0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d (patch)
treee7d4384a85952f418b364f2477b93db70359f732 /src/nvim/message.c
parenta44f39955f232d26076edceb3c5d9f16ffde9cbd (diff)
downloadrneovim-d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d.tar.gz
rneovim-d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d.tar.bz2
rneovim-d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d.zip
Ignore compatible mode
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c
index 808253d33c..46e0a1a0df 100644
--- a/src/nvim/message.c
+++ b/src/nvim/message.c
@@ -839,7 +839,7 @@ void wait_return(int redraw)
* to avoid that typing one 'j' too many makes the messages
* disappear.
*/
- if (p_more && !p_cp) {
+ if (p_more) {
if (c == 'b' || c == 'k' || c == 'u' || c == 'g'
|| c == K_UP || c == K_PAGEUP) {
if (msg_scrolled > Rows)