examples: comments

git-svn-id: trunk@35040 -
This commit is contained in:
mattias 2012-01-30 11:58:46 +00:00
parent 57143e7590
commit 18eae4cea8
2 changed files with 13 additions and 1 deletions

View File

@ -16,6 +16,19 @@
at <http://www.gnu.org/copyleft/gpl.html>. You can also obtain it by writing
to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA.
}
{
ToDos:
- FPC keyword: context
- FPC Messages, message, id
- Other messages: Linker errors, fpcres errors
- predefined identifiers: cardinal, longint
- predefined procs: exit, break, continue, writeln
- help for sources
- IDE dialogs / wiki:
- custom dialogs / wiki:
- fpc compiler options:
}
unit MyIDEHelp;

View File

@ -1349,7 +1349,6 @@ function TIDEHelpManager.ShowHelpForSourcePosition(const Filename: string;
Dec(IdentStart);
KeyWord:=copy(CodeBuffer.Source,IdentStart,IdentEnd-IdentStart);
ErrorMsg:='';
debugln(['CollectKeyWords ',KeyWord]);
if KeyWord[1] = '$' then
Result:=ShowHelpForDirective('',FPCDirectiveHelpPrefix+Keyword,ErrorMsg)
else if KeyWord[1] = '%' then