summaryrefslogtreecommitdiff
path: root/src/message.c
AgeCommit message (Collapse)Author
2017-10-28patch 8.0.1236: Mac features are confusingBram Moolenaar
Problem: Mac features are confusing. Solution: Make feature names more consistent, add "osxdarwin". Rename feature flags, cleanup Mac code. (Kazunobu Kuriyama, closes #2178)
2017-10-24patch 8.0.1215: newer gcc warns for implicit fallthroughBram Moolenaar
Problem: Newer gcc warns for implicit fallthrough. Solution: Consistently use a FALLTHROUGH comment. (Christian Brabandt)
2017-09-06patch 8.0.1067: try/catch in timer does not prevent it from being stoppedBram Moolenaar
Problem: Using try/catch in timer does not prevent it from being stopped. Solution: Reset the exception context and use did_emsg instead of called_emsg.
2017-08-17patch 8.0.0956: scrolling in a terminal window has flickerBram Moolenaar
Problem: Scrolling in a terminal hwindow as flicker when the Normal background differs from the terminal window background. Solution: Set the attribute to clear with.
2017-08-07patch 8.0.0888: compiler warnings with 64 bit buildBram Moolenaar
Problem: Compiler warnings with 64 bit build. Solution: Add type cast of change the type. (Mike Williams)
2017-08-03patch 8.0.0852: MS-Windows: possible crash when giving a message on startupBram Moolenaar
Problem: MS-Windows: possible crash when giving a message on startup. Solution: Initialize length. (Yasuhiro Matsumoto, closes #1931)
2017-08-03patch 8.0.0850: MS-Windows: error message while starting up may be brokenBram Moolenaar
Problem: MS-Windows: Depending on the console encoding, an error message that is given during startup may be broken. Solution: Convert the message to the console codepage. (Yasuhiro Matsumoto, closes #1927)
2017-08-03patch 8.0.0848: using multiple ch_log functions is clumsyBram Moolenaar
Problem: Using multiple ch_log functions is clumsy. Solution: Use variable arguments. (Ozaki Kiichi, closes #1919)
2017-07-11patch 8.0.0709: libvterm cannot use vsnprintf()Bram Moolenaar
Problem: Libvterm cannot use vsnprintf(), it does not exist in C90. Solution: Use vim_vsnprintf() instead.
2017-06-23patch 8.0.0663: unexpected error message only when 'verbose' is setBram Moolenaar
Problem: Giving an error message only when 'verbose' set is unexpected. Solution: Give a warning message instead.
2017-03-29patch 8.0.0520: using a function pointer while the function is knownBram Moolenaar
Problem: Using a function pointer instead of the actual function, which we know. Solution: Change mb_ functions to utf_ functions when already checked for Unicode. (Dominique Pelle, closes #1582)
2017-03-16patch 8.0.0468: after aborting an Ex command g< does not workBram Moolenaar
Problem: After aborting an Ex command g< does not work. (Marcin Szamotulski) Solution: Postpone clearing scrollback messages to until the command line has been entered. Also fix that the screen isn't redrawn if after g< the command line is cancelled.
2017-03-16patch 8.0.0466: still macros that should be all-capsBram Moolenaar
Problem: There are still a few macros that should be all-caps. Solution: Make a few more macros all-caps.
2017-03-12patch 8.0.0452: some macros are in lower caseBram Moolenaar
Problem: Some macros are in lower case. Solution: Make a few more macros upper case.
2017-03-12patch 8.0.0451: some macros are in lower caseBram Moolenaar
Problem: Some macros are in lower case. Solution: Make a few more macros upper case. Avoid lower case macros use an argument twice.
2017-03-01patch 8.0.0397: can't build with +viminfo but without +evalBram Moolenaar
Problem: Cannot build with the viminfo feature but without the eval feature. Solution: Adjust #ifdef. (John Marriott)
2017-03-01patch 8.0.0395: testing the + register fails with MotifBram Moolenaar
Problem: Testing the + register fails with Motif. Solution: Also ignore the "failed to create input context" error in the second gvim. Don't use msg() when it would result in a dialog.
2017-03-01patch 8.0.0392: GUI test fails with Athena and MotifBram Moolenaar
Problem: GUI test fails with Athena and Motif. Solution: Add test_ignore_error(). Use it to ignore the "failed to create input context" error.
2017-01-14patch 8.0.0184: when an error is caught Vim still exits with non-zero resultBram Moolenaar
Problem: When in Ex mode and an error is caught by try-catch, Vim still exits with a non-zero exit code. Solution: Don't set ex_exitval when inside a try-catch. (partly by Christian Brabandt)
2016-12-01patch 8.0.0107Bram Moolenaar
Problem: When reading channel output in a timer, messages may go missing. (Skywind) Solution: Add the "drop" option. Write error messages in the channel log. Don't have ch_canread() check for the channel being open.
2016-11-10patch 8.0.0074Bram Moolenaar
Problem: Cannot make Vim fail on an internal error. Solution: Add IEMSG() and IEMSG2(). (Domenique Pelle) Avoid reporting an internal error without mentioning where.
2016-09-09patch 7.4.2349Bram Moolenaar
Problem: Valgrind reports using uninitialzed memory. (Dominique Pelle) Solution: Check the length before checking for a NUL.
2016-09-06patch 7.4.2341Bram Moolenaar
Problem: Tiny things. Test doesn't clean up properly. Solution: Adjust comment and white space. Restore option value.
2016-08-29patch 7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-08-29patch 7.4.2292Bram Moolenaar
Problem: Not all systems understand %F in printf(). Solution: Use %f.
2016-08-29patch 7.4.2291Bram Moolenaar
Problem: printf() handles floats wrong when there is a sign. Solution: Fix placing the sign. Add tests. (Dominique Pelle)
2016-08-28patch 7.4.2290Bram Moolenaar
Problem: Compiler warning in tiny build. (Tony Mechelynck) Solution: Add #ifdef around infinity_str().
2016-08-28patch 7.4.2280Bram Moolenaar
Problem: printf() doesn't handle infinity float values correctly. Solution: Add a table with possible infinity values. (Dominique Pelle)
2016-08-27patch 7.4.2267Bram Moolenaar
Problem: Build fails on MS-Windows. Solution: Add define to get isinf().
2016-08-27patch 7.4.2266Bram Moolenaar
Problem: printf() test fails on Windows. "-inf" is not used. Solution: Check for Windows-specific values for "nan". Add sign to "inf" when appropriate.
2016-08-26patch 7.4.2263Bram Moolenaar
Problem: :filter does not work for many commands. Can only get matching messages. Solution: Make :filter work for :command, :map, :list, :number and :print. Make ":filter!" show non-matching lines.
2016-08-23patch 7.4.2244Bram Moolenaar
Problem: Adding pattern to ":oldfiles" is not a generic solution. Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some commands right now.
2016-08-16patch 7.4.2221Bram Moolenaar
Problem: printf() does not support binary format. Solution: Add %b and %B. (Ozaki Kiichi)
2016-08-16patch 7.4.2220Bram Moolenaar
Problem: printf() gives an error when the argument for %s is not a string. (Ozaki Kiichi) Solution: Behave like invoking string() on the argument. (Ken Takata)
2016-07-30patch 7.4.2125Bram Moolenaar
Problem: Compiler warning for loss of data. Solution: Add a type cast. (Christian Brabandt)
2016-07-23patch 7.4.2097Bram Moolenaar
Problem: Warning from 64 bit compiler. Solution: use size_t instead of int. (Mike Williams)
2016-07-20patch 7.4.2080Bram Moolenaar
Problem: When using PERROR() on some systems assert_fails() does not see the error. Solution: Make PERROR() always report the error.
2016-07-19patch 7.4.2068Bram Moolenaar
Problem: Not all arguments of trunc_string() are tested. Memory access error when running the message tests. Solution: Add another test case. (Yegappan Lakshmanan) Make it easy to run unittests with valgrind. Fix the access error.
2016-07-16patch 7.4.2051Bram Moolenaar
Problem: No proper testing of trunc_string(). Solution: Add a unittest for message.c.
2016-07-16patch 7.4.2049Bram Moolenaar
Problem: There is no way to get a list of the error lists. Solution: Add ":chistory" and ":lhistory".
2016-07-12patch 7.4.2029Bram Moolenaar
Problem: printf() does not work with 64 bit numbers. Solution: use the "L" length modifier. (Ken Takata)
2016-07-09patch 7.4.2008Bram Moolenaar
Problem: evalcmd() has a confusing name. Solution: Rename to execute(). Make silent optional. Support a list of commands.
2016-07-07patch 7.4.1999Bram Moolenaar
Problem: evalcmd() doesn't work recursively. Solution: Use redir_evalcmd instead of redir_vname.
2016-07-01patch 7.4.1976Bram Moolenaar
Problem: Number variables are not 64 bits while they could be. Solution: Add the num64 feature. (Ken Takata)
2016-06-02patch 7.4.1876Bram Moolenaar
Problem: Typing "k" at the hit-enter prompt has no effect. Solution: Don't assume recursive use of the prompt if a character was typed. (Hirohito Higashi)
2016-04-14patch 7.4.1739Bram Moolenaar
Problem: Messages test fails on MS-Windows. Solution: Adjust the asserts. Skip the "messages maintainer" line if not showing all messages.
2016-04-14patch 7.4.1737Bram Moolenaar
Problem: Argument marked as unused is used. Solution: Remove UNUSED.
2016-04-14patch 7.4.1735Bram Moolenaar
Problem: It is not possible to only see part of the message history. It is not possible to clear messages. Solution: Add a count to ":messages" and a clear argument. (Yasuhiro Matsumoto)
2016-03-19patch 7.4.1603Bram Moolenaar
Problem: Timer with an ":echo" command messes up display. Solution: Redraw depending on the mode. (Hirohito Higashi) Avoid the more prompt being used recursively.
2016-02-27patch 7.4.1437Bram Moolenaar
Problem: Old system doesn't have isinf() and NAN. (Ben Fritz) Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with configure. Use a replacement when missing. (Kazunobu Kuriyama)