Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Fri, 08 Mar 2013 17:32:47 UTC Commit: 771934ae29151e0c16c642fa4739f0aaec5cfd62 https://github.com/geany/geany/commit/771934ae29151e0c16c642fa4739f0aaec5cfd...
Log Message: ----------- Don't translate program name directive in Pascal file template
Pascal code only accepts an identifier in the program name directive, but {untitled} wildcard gets replaced with a translated string that may not be a valid Pascal identifier. Moreover, the directive being part of the source of the program it's good practice for it to be in English anyway.
Closes #3602314.
Modified Paths: -------------- data/templates/files/program.pas
Modified: data/templates/files/program.pas 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1,6 +1,6 @@ {fileheader}
-program {untitled}; +program untitled;
uses crt; var i : byte;
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).