fpc/rtl/win32/ascdef.sed
pierre 06e24d00f4 + all unknown function ifdef with
conditionnal unknown_functions
    testwin works now, but windowcreate still fails !!
1998-09-04 17:17:28 +00:00

22 lines
596 B
Sed

# function names with parameters
s/function \([^(]*\)A *(/function \1(/
# procedure names with parameters
s/procedure \([^(]*\)A *(/procedure \1(/
# function names without parameters
s/function \([^:(]*\)A *: */function \1 : /
# procedure names without parameters
s/procedure \([^;(]*\)A *;/procedure \1;/
# function return value
s/\([^ \t]*\)A *:=/\1:=/
# function call with parameters
s/\:=\(.*\)A(/:=\1(/
# function call without parameters
s/\:=\(.*\)A *;/:=\1;/
# unit name
s/ascfun;/ascdef;/
# cvs name
s/ascfun.pp,v/ascdef.pp,v/
# unit conditionnal
s/ASCIIFUNCTIONS/ASCIIFUNCTIONSDEFAULT/