summaryrefslogtreecommitdiff
path: root/src/os_msdos.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2004-12-09 21:34:53 +0000
committerBram Moolenaar <Bram@vim.org>2004-12-09 21:34:53 +0000
commit293ee4d421cd55f4a3c014c1c26edf02f718cc83 (patch)
treeae4856e718b752ea0c6c807912bfbb51967fae80 /src/os_msdos.c
parent741b07e0092eb6d7b81c9cbe149196c6cf9d5bbe (diff)
downloadvim-git-293ee4d421cd55f4a3c014c1c26edf02f718cc83.tar.gz
updated for version 7.0021v7.0021
Diffstat (limited to 'src/os_msdos.c')
-rw-r--r--src/os_msdos.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/os_msdos.c b/src/os_msdos.c
index 92b14ea30..1056fe0e5 100644
--- a/src/os_msdos.c
+++ b/src/os_msdos.c
@@ -505,14 +505,14 @@ mch_restore_cursor_shape(int restore)
if (restore)
{
if (saved)
- regs.h.ah = 0x01; /*Set Cursor*/
+ regs.h.ah = 0x01; /* Set Cursor */
else
return;
}
else
{
- regs.h.ah = 0x03; /*Get Cursor*/
- regs.h.bh = 0x00; /*Page */
+ regs.h.ah = 0x03; /* Get Cursor */
+ regs.h.bh = 0x00; /* Page */
saved = TRUE;
}
@@ -528,9 +528,9 @@ mch_set_cursor_shape(int thickness)
{
union REGS regs;
- regs.h.ch = 7 - thickness; /*Starting Line*/
- regs.h.cl = 7; /*Ending Line*/
- regs.h.ah = 0x01; /*Set Cursor*/
+ regs.h.ch = 7 - thickness; /* Starting Line */
+ regs.h.cl = 7; /* Ending Line */
+ regs.h.ah = 0x01; /* Set Cursor */
(void)int86(0x10, &regs, &regs);
}