diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-28 13:59:43 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-28 13:59:43 (GMT) |
commit | 496d236903f399dd54f1073e20e899e49aa48c1f (patch) | |
tree | adb299455d62fa6a6177e1600eb09c26d4c087b8 /src/lexer.l | |
parent | d3329838b4d948455277caa3c24df4b7b50fabb2 (diff) |
Clifford Wolf:
Some fixes regarding 'use <filename>'
git-svn-id: http://svn.clifford.at/openscad/trunk@460 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'src/lexer.l')
-rw-r--r-- | src/lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexer.l b/src/lexer.l index c4406b6..48729c8 100644 --- a/src/lexer.l +++ b/src/lexer.l @@ -106,7 +106,7 @@ use[ \t\r\n>]*"<"[^ \t\r\n>]+">" { finfo = QFileInfo(QDir(librarydir), filename); } - PRINTF("WARNING: The use of implicit include is depricated. Use `include <filename>' instead."); + PRINTF("WARNING: Support for implicit include will be removed in future releases. Use `include <filename>' instead."); handle_dep(finfo.absoluteFilePath()); yyin = fopen(finfo.absoluteFilePath().toLocal8Bit(), "r"); if (!yyin) { |