summaryrefslogtreecommitdiff
path: root/compiler/ppheap.pas
diff options
context:
space:
mode:
authorflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2006-10-30 22:37:31 +0000
committerflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2006-10-30 22:37:31 +0000
commit53a6e4eed6ab5d219453c85dfc1fe52538ec9c32 (patch)
tree4aab11a3755d130c4dda3aa63cc23199944ef6b2 /compiler/ppheap.pas
parent9dd65f205543d1c4dcc5f532dcdeec3e2e81204e (diff)
downloadfpc-53a6e4eed6ab5d219453c85dfc1fe52538ec9c32.tar.gz
* germanism removed (aktfilepos -> current_filepos)
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@5099 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/ppheap.pas')
-rw-r--r--compiler/ppheap.pas8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/ppheap.pas b/compiler/ppheap.pas
index 11ca168799..6dfe60066c 100644
--- a/compiler/ppheap.pas
+++ b/compiler/ppheap.pas
@@ -106,12 +106,12 @@ implementation
begin
with pextra_info(p)^ do
begin
- line:=aktfilepos.line;
- col:=aktfilepos.column;
+ line:=current_filepos.line;
+ col:=current_filepos.column;
if assigned(current_module) then
- fileindex:=current_module.unit_index*100000+aktfilepos.fileindex
+ fileindex:=current_module.unit_index*100000+current_filepos.fileindex
else
- fileindex:=aktfilepos.fileindex;
+ fileindex:=current_filepos.fileindex;
end;
end;