mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0172
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
*debug.txt* For Vim version 7.0aa. Last change: 2005 Sep 01
|
*debug.txt* For Vim version 7.0aa. Last change: 2005 Dec 17
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@@ -7,6 +7,7 @@
|
|||||||
Debugging Vim *debug-vim*
|
Debugging Vim *debug-vim*
|
||||||
|
|
||||||
This is for debugging Vim itself, when it doesn't work properly.
|
This is for debugging Vim itself, when it doesn't work properly.
|
||||||
|
For debugging Vim scripts, functions, etc. see |debug-scripts|
|
||||||
|
|
||||||
1. Location of a crash, using gcc and gdb |debug-gcc|
|
1. Location of a crash, using gcc and gdb |debug-gcc|
|
||||||
2. Windows Bug Reporting |debug-win32|
|
2. Windows Bug Reporting |debug-win32|
|
||||||
@@ -61,9 +62,9 @@ This includes the WinDbg debugger.
|
|||||||
If you have Visual Studio, use that instead of the VC Toolkit
|
If you have Visual Studio, use that instead of the VC Toolkit
|
||||||
and WinDbg.
|
and WinDbg.
|
||||||
|
|
||||||
|
For other compilers, you should always use the corresponding debugger: TD for
|
||||||
(No idea what to do if your binary was built with the Borland or Cygwin
|
a Vim executable compiled with the Borland compiler; gdb (see above
|
||||||
compilers. Sorry.)
|
|debug-gcc|) for the Cygwin and MinGW compilers.
|
||||||
|
|
||||||
=========================================================================
|
=========================================================================
|
||||||
vim:tw=78:ts=8:ft=help:norl:
|
vim:tw=78:ts=8:ft=help:norl:
|
||||||
|
@@ -1098,21 +1098,22 @@ getcmdline(firstc, count, indent)
|
|||||||
save_cmdline(&save_ccline);
|
save_cmdline(&save_ccline);
|
||||||
c = get_expr_register();
|
c = get_expr_register();
|
||||||
restore_cmdline(&save_ccline);
|
restore_cmdline(&save_ccline);
|
||||||
|
|
||||||
/* When there was a serious error abort getting the
|
|
||||||
* command line. */
|
|
||||||
if (aborting())
|
|
||||||
{
|
|
||||||
gotesc = TRUE; /* will free ccline.cmdbuff after
|
|
||||||
putting it in history */
|
|
||||||
goto returncmd; /* back to cmd mode */
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (c != ESC) /* use ESC to cancel inserting register */
|
if (c != ESC) /* use ESC to cancel inserting register */
|
||||||
{
|
{
|
||||||
cmdline_paste(c, i == Ctrl_R);
|
cmdline_paste(c, i == Ctrl_R);
|
||||||
|
|
||||||
|
/* When there was a serious error abort getting the
|
||||||
|
* command line. */
|
||||||
|
if (aborting())
|
||||||
|
{
|
||||||
|
gotesc = TRUE; /* will free ccline.cmdbuff after
|
||||||
|
putting it in history */
|
||||||
|
goto returncmd; /* back to cmd mode */
|
||||||
|
}
|
||||||
|
|
||||||
KeyTyped = FALSE; /* Don't do p_wc completion. */
|
KeyTyped = FALSE; /* Don't do p_wc completion. */
|
||||||
#ifdef FEAT_EVAL
|
#ifdef FEAT_EVAL
|
||||||
if (new_cmdpos >= 0)
|
if (new_cmdpos >= 0)
|
||||||
|
@@ -36,5 +36,5 @@
|
|||||||
#define VIM_VERSION_NODOT "vim70aa"
|
#define VIM_VERSION_NODOT "vim70aa"
|
||||||
#define VIM_VERSION_SHORT "7.0aa"
|
#define VIM_VERSION_SHORT "7.0aa"
|
||||||
#define VIM_VERSION_MEDIUM "7.0aa ALPHA"
|
#define VIM_VERSION_MEDIUM "7.0aa ALPHA"
|
||||||
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Dec 16)"
|
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Dec 17)"
|
||||||
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Dec 16, compiled "
|
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Dec 17, compiled "
|
||||||
|
Reference in New Issue
Block a user