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

« back to all changes in this revision

Viewing changes to tagmanager/php.c

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2011-12-10 07:43:26 UTC
  • mfrom: (3.3.7 sid)
  • Revision ID: package-import@ubuntu.com-20111210074326-s8yqbew5i20h33tf
Tags: 0.21-1ubuntu1
* Merge from Debian Unstable, remaining changes:
  - debian/patches/20_use_evince_viewer.patch:
     + use evince as viewer for pdf and dvi files
  - debian/patches/20_use_x_terminal_emulator.patch:
     + use x-terminal-emulator as terminal
  - debian/control
     + Add breaks on geany-plugins-common << 0.20
* Also fixes bugs:
  - Filter for MATLAB/Octave files filters everythign (LP: 885505)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
*   $Id: php.c 5417 2010-11-18 18:20:12Z ntrel $
 
2
*   $Id: php.c 5856 2011-06-17 22:52:43Z colombanw $
3
3
*
4
4
*   Copyright (c) 2000, Jesus Castagnetto <jmcastagnetto@zkey.com>
5
5
*
102
102
{
103
103
        char *name, *arglist;
104
104
        char kind = 'f';
105
 
        static char *kindName = "function";
 
105
        static const char *kindName = "function";
106
106
        tagEntryInfo e;
107
107
        const regexMatch *match_funcname = NULL;
108
108
        const regexMatch *match_arglist = NULL;
127
127
                e.kindName = kindName;
128
128
                e.extensionFields.arglist = arglist;
129
129
                makeTagEntry (&e);
 
130
 
 
131
                eFree(name);
 
132
                eFree(arglist);
130
133
        }
131
134
}
132
135