diff options
author | sergei <sergei@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2013-02-25 22:09:39 +0000 |
---|---|---|
committer | sergei <sergei@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2013-02-25 22:09:39 +0000 |
commit | c2a0530e20b49d373d5b11a5c6c1cda9b1ec1bd5 (patch) | |
tree | a1479a7976b5228bce2f7f3a76a36506824c2044 /compiler/raatt.pas | |
parent | 17e286768dd566462558972f17515dd8639a3567 (diff) | |
download | fpc-c2a0530e20b49d373d5b11a5c6c1cda9b1ec1bd5.tar.gz |
- Removed ConcatPasString procedure, it duplicates ConcatString (it the past they probably used to differ, but today both preserve null characters).
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@23662 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/raatt.pas')
-rw-r--r-- | compiler/raatt.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/raatt.pas b/compiler/raatt.pas index e9271722cd..88971c60c6 100644 --- a/compiler/raatt.pas +++ b/compiler/raatt.pas @@ -947,7 +947,7 @@ unit raatt; expr:=actasmpattern; if asciiz then expr:=expr+#0; - ConcatPasString(curlist,expr); + ConcatString(curlist,expr); Consume(AS_STRING); end; AS_COMMA: |