Pstricks가 일부 PGF 파일을 로드하는 이유와 버그가 있습니까?

Pstricks가 일부 PGF 파일을 로드하는 이유와 버그가 있습니까?

pstricks.tex(2019-01-22 버전)의 75행에서 다음을 읽습니다 .

\ifx\pgfkeysloaded\endinput\else 
 \input pgfutil-common.tex
 \input pgfkeys.code.tex
 \input pgffor.code.tex
\fi
\let\pgfforeach\foreach

테스트가 \ifx\pgfkeysloaded\endinput이상한 것 같아요. Tikz 이후에 Pstricks가 로드되면 파일이 pgfutil-common.tex두 번 로드될 수 있습니다. 이로 인해 불일치가 발생할 수 있습니다. 예를 들어, \pgfutil@raggedright발견된 위치 의 정의는 Tikz가 로드되었을 때 완료 위치 pgfutil-common.tex의 정의 (동일하지 않음)를 삭제합니다.\pgfutil@raggedrightpgfutil-latex.def

\relax대신해서는 안됩니까 \endinput?

관련 정보