[geany/geany-plugins] 932083: Reduced spacing and add changelog

federeghe git-noreply at xxxxx
Thu Sep 11 20:39:00 UTC 2014


Branch:      refs/heads/master
Author:      federeghe <federico.dev at reghe.net>
Committer:   Federico Reghenzani <federico at reghe.net>
Date:        Wed, 09 Apr 2014 21:23:21 UTC
Commit:      93208391812ec17a071f8087fff8bd025f1c6c34
             https://github.com/geany/geany-plugins/commit/93208391812ec17a071f8087fff8bd025f1c6c34

Log Message:
-----------
Reduced spacing and add changelog


Modified Paths:
--------------
    codenav/AUTHORS
    codenav/ChangeLog
    codenav/src/codenavigation.h
    codenav/src/goto_file.c
    codenav/src/utils.c

Modified: codenav/AUTHORS
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -1 +1,2 @@
 Lionel Fuentes <funto66 at gmail.com>
+Federico Reghenzani <federico at reghe.net>


Modified: codenav/ChangeLog
8 lines changed, 8 insertions(+), 0 deletions(-)
===================================================================
@@ -1,3 +1,11 @@
+2014-03-23  Federico Reghenzani <federico(dot)dev(at)reghe(dot)net>
+ * src/codenavigation.h:
+   Resolve some compiler warnings.
+ * src/goto_file.c:
+   Implementation foto_file.
+ * src/utils.c, src/utils.h:
+   Added strpos().
+
 2011-04-23  Frank Lanitz  <frlan at frank.uvena.de>
 
  * src/switch_head_impl.c:


Modified: codenav/src/codenavigation.h
30 lines changed, 14 insertions(+), 16 deletions(-)
===================================================================
@@ -1,24 +1,22 @@
 /*
- *	  codenavigation.h - this file is part of "codenavigation", which is
- *	  part of the "geany-plugins" project.
+ *  codenavigation.h - this file is part of "codenavigation", which is
+ *  part of the "geany-plugins" project.
  *
- *	  Copyright 2009 Lionel Fuentes <funto66(at)gmail(dot)com>
- *	  Copyright 2014 Federico Reghenzani <federico(dot)dev(at)reghe(dot)net>
+ *  Copyright 2009 Lionel Fuentes <funto66(at)gmail(dot)com>
+ *  Copyright 2014 Federico Reghenzani <federico(dot)dev(at)reghe(dot)net>
  *
- *	  This program is free software; you can redistribute it and/or modify
- *	  it under the terms of the GNU General Public License as published by
- *	  the Free Software Foundation; either version 2 of the License, or
- *	  (at your option) any later version.
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
  *
- *	  This program is distributed in the hope that it will be useful,
- *	  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *	  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *	  GNU General Public License for more details.
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
  *
- *	  You should have received a copy of the GNU General Public License
- *	  along with this program; if not, write to the Free Software
- *	  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- *	  MA 02110-1301, USA.
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef CODENAVIGATION_H


Modified: codenav/src/goto_file.c
30 lines changed, 14 insertions(+), 16 deletions(-)
===================================================================
@@ -1,24 +1,22 @@
 /*
- *	  goto_file.c - this file is part of "codenavigation", which is
- *	  part of the "geany-plugins" project.
+ *  goto_file.c - this file is part of "codenavigation", which is
+ *  part of the "geany-plugins" project.
  *
- *	  Copyright 2009 Lionel Fuentes <funto66(at)gmail(dot)com>
- *	  Copyright 2014 Federico Reghenzani <federico(dot)dev(at)reghe(dot)net>
+ *  Copyright 2009 Lionel Fuentes <funto66(at)gmail(dot)com>
+ *  Copyright 2014 Federico Reghenzani <federico(dot)dev(at)reghe(dot)net>
  * 
- *	  This program is free software; you can redistribute it and/or modify
- *	  it under the terms of the GNU General Public License as published by
- *	  the Free Software Foundation; either version 2 of the License, or
- *	  (at your option) any later version.
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
  *
- *	  This program is distributed in the hope that it will be useful,
- *	  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *	  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *	  GNU General Public License for more details.
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
  *
- *	  You should have received a copy of the GNU General Public License
- *	  along with this program; if not, write to the Free Software
- *	  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- *	  MA 02110-1301, USA.
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifdef HAVE_CONFIG_H


Modified: codenav/src/utils.c
30 lines changed, 14 insertions(+), 16 deletions(-)
===================================================================
@@ -1,24 +1,22 @@
 /*
- *	  utils.c - this file is part of "codenavigation", which is
- *	  part of the "geany-plugins" project.
+ *  utils.c - this file is part of "codenavigation", which is
+ *  part of the "geany-plugins" project.
  *
- *	  Copyright 2009 Lionel Fuentes <funto66(at)gmail(dot)com>
- *	  Copyright 2014 Federico Reghenzani <federico(dot)dev(at)reghe(dot)net>
+ *  Copyright 2009 Lionel Fuentes <funto66(at)gmail(dot)com>
+ *  Copyright 2014 Federico Reghenzani <federico(dot)dev(at)reghe(dot)net>
  *
- *	  This program is free software; you can redistribute it and/or modify
- *	  it under the terms of the GNU General Public License as published by
- *	  the Free Software Foundation; either version 2 of the License, or
- *	  (at your option) any later version.
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
  *
- *	  This program is distributed in the hope that it will be useful,
- *	  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *	  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *	  GNU General Public License for more details.
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
  *
- *	  You should have received a copy of the GNU General Public License
- *	  along with this program; if not, write to the Free Software
- *	  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- *	  MA 02110-1301, USA.
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "utils.h"



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list