summaryrefslogtreecommitdiff
path: root/src/w16select.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2011-09-09 03:06:52 +0200
committerJuanma Barranquero <lekktu@gmail.com>2011-09-09 03:06:52 +0200
commit5e617bc2b62189768814fafd1a875e89a094d3ef (patch)
treed96d22e012035d044557abf4de0b8e30b03d61b7 /src/w16select.c
parent9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff)
downloademacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz
emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.bz2
emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.zip
Whitespace changes.
Diffstat (limited to 'src/w16select.c')
-rw-r--r--src/w16select.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/w16select.c b/src/w16select.c
index d5aae1b2e5c..cae7a6f82dd 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -110,7 +110,7 @@ identify_winoldap_version (void)
<> 1700H: AL = Major version number
AH = Minor version number */
regs.x.ax = 0x1700;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
return regs.x.ax;
}
@@ -133,7 +133,7 @@ open_clipboard (void)
Return Values AX == 0: Clipboard already open
<> 0: Clipboard opened */
regs.x.ax = 0x1701;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
return regs.x.ax;
}
@@ -147,7 +147,7 @@ empty_clipboard (void)
Return Values AX == 0: Error occurred
<> 0: OK, Clipboard emptied */
regs.x.ax = 0x1702;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
return regs.x.ax;
}
@@ -294,7 +294,7 @@ set_clipboard_data (unsigned Format, void *Data, unsigned Size, int Raw)
regs.x.cx = truelen & 0xffff;
regs.x.es = xbuf_addr >> 4;
regs.x.bx = xbuf_addr & 15;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
free_xfer_buf ();
@@ -320,7 +320,7 @@ get_clipboard_data_size (unsigned Format)
the clipboard. */
regs.x.ax = 0x1704;
regs.x.dx = Format;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
return ( (((unsigned)regs.x.dx) << 16) | regs.x.ax);
}
@@ -353,7 +353,7 @@ get_clipboard_data (unsigned Format, void *Data, unsigned Size, int Raw)
regs.x.dx = Format;
regs.x.es = xbuf_addr >> 4;
regs.x.bx = xbuf_addr & 15;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
if (regs.x.ax != 0)
{
unsigned char null_char = '\0';
@@ -415,7 +415,7 @@ close_clipboard (void)
Return Values AX == 0: Error occurred
<> 0: OK */
regs.x.ax = 0x1708;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
return regs.x.ax;
}
@@ -432,7 +432,7 @@ clipboard_compact (unsigned Size)
regs.x.ax = 0x1709;
regs.x.si = Size >> 16;
regs.x.cx = Size & 0xffff;
- __dpmi_int(0x2f, &regs);
+ __dpmi_int (0x2f, &regs);
return ((unsigned)regs.x.dx << 16) | regs.x.ax;
}