~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to tagmanager/entry.c

Import upstream version 0.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#if defined (HAVE_TYPES_H)
26
26
# include <types.h>         /* to declare off_t on some hosts */
27
27
#endif
28
 
#if defined (HAVE_UNISTD_H)
29
 
# include <unistd.h>    /* to declare close (), ftruncate (), truncate () */
30
 
#endif
 
28
 
31
29
 
32
30
/*  These header files provide for the functions necessary to do file
33
31
 *  truncation.
405
403
    e->lineNumber       = getSourceLineNumber ();
406
404
    e->language         = getSourceLanguageName ();
407
405
    e->filePosition     = getInputFilePosition ();
 
406
    e->bufferPosition   = getInputBufferPosition ();
408
407
    e->sourceFileName   = getSourceFileTagPath ();
409
408
    e->name             = name;
410
409
}