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

« back to all changes in this revision

Viewing changes to tagmanager/entry.c

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2009-05-29 21:22:54 UTC
  • mfrom: (1.3.1 upstream) (3.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20090529212254-cx6t2a7itgii3p5f
Tags: 0.17-1
* New upstream release
* 20_add_debdiff_as_diff_type.dpatch renamed as
  20_add_debian_specific_filetypes.dpatch, 
  - add .dpatch as a diff filetype
  - add control as a conf filetype
* 20_change_gpl_location.dpatch freshen
* add 20_debian_control_tags.dpatch better handling of debian/control files.
  Thanks to Enrico Tröger. (Closes: #520776)
* debian/copyright Add Frank Lanitz, update years

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
}