Displaying 3 results from an estimated 3 matches for "ischar".
Did you mean:
uschar
2007 Sep 23
3
html help fails for named vector objects (PR#9927)
help(letters, htmlhelp=TRUE) fails.
Under the Mac OSX gui, the message is 'Help for the topic "a" was not
found.' Under the version documented below, and under Windows, the
message is
"No documentation for 'a' in specified packages and libraries:"
repeated for all the elements of letters, then followed by
"you could try
2002 Feb 26
0
syslinux timeout
...writehex
+; END DTM --------------------------------------------------
;
; writehex[248]: Write a hex number in (AL, AX, EAX) to the console
;
writehex2:
pushfd
pushad
rol eax,24
mov cx,2
jmp short writehex_common
@@ -3414,33 +3475,38 @@
.low: add al,'0'
jmp short .ischar
.high: add al,'A'-10
.ischar: call writechr
pop eax
loop .loop
popad
popfd
ret
+%if 0
;
; crlf: write CR LF
;
+; DTM: Redefined if debug enabled
+;
crlf: push ax
mov al, 13
call writechr
mov al, 10
call writechr
pop ax
ret
%endif
+%endif
+
;...
2019 Dec 13
0
Wine release 5.0-rc1
...oW() to kernelbase.
configure: Disable gcc control flow protection.
configure: Disable gcc stack protection.
configure: Get rid of the gcc strength-reduce bug check.
kernel32: Move GetStringType functions to kernelbase.
kernelbase: Directly use the wctype table for the IsChar* functions.
kernel32: Move LCMapString functions to kernelbase.
kernel32: Move the CompareString functions to kernelbase.
kernel32: Move GeoID functions to kernelbase.
kernel32: Remove __wine_kernel_init().
kernelbase: Add an OpenConsoleW() replacement wrapper.
k...