commit | 00590740081489db69f43d9f1c0e3f70e29ce6da | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Feb 15 21:06:09 2019 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Feb 15 21:06:09 2019 +0100 |
tree | 5200046e5c39885c50b5057cca9110975a629eb5 | |
parent | e93e5a504f481bd0dad9c504d5fcf0e5f0dfc6e6 [diff] [blame] |
patch 8.1.0927: USE_CR is never defined Problem: USE_CR is never defined. Solution: Remove usage of USE_CR. (Ken Takata, closes #3958)
diff --git a/src/message.c b/src/message.c index 82772fd..ed59d1b 100644 --- a/src/message.c +++ b/src/message.c
@@ -2590,10 +2590,7 @@ memcpy(buf, p, n); if (!info_message) buf[n++] = CAR; -#ifdef USE_CR - else -#endif - buf[n++] = NL; + buf[n++] = NL; buf[n++] = NUL; if (info_message) // informative message, not an error mch_msg((char *)buf);