[geany/geany] c08986: Merge pull request #574 from eht16/doxygen_fixes

Colomban Wendling git-noreply at xxxxx
Wed Jul 22 19:52:10 UTC 2015


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Wed, 22 Jul 2015 19:52:10 UTC
Commit:      c0898618f9a162913dfdddc74e2526019dcfb9ea
             https://github.com/geany/geany/commit/c0898618f9a162913dfdddc74e2526019dcfb9ea

Log Message:
-----------
Merge pull request #574 from eht16/doxygen_fixes

Fix Doxygen warnings


Modified Paths:
--------------
    doc/plugins.dox
    src/spawn.c

Modified: doc/plugins.dox
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -69,7 +69,7 @@ other useful notes.
 
 @page guidelines Plugin Writing Guidelines
 
- at section intro Introduction
+ at section intro_guidelines Introduction
 
 The following hints and guidelines are only recommendations. Nobody is forced to follow
 them at all.
@@ -140,7 +140,7 @@ geany-devel at uvena.de or the plugin author directly.
 
 @page howto Plugin HowTo
 
- at section intro Introduction
+ at section intro_howto Introduction
 
 Since Geany 0.12 there is a plugin interface to extend Geany's functionality and
 add new features. This document gives a brief overview about how to add new


Modified: src/spawn.c
14 lines changed, 10 insertions(+), 4 deletions(-)
===================================================================
@@ -196,15 +196,17 @@ static gchar *spawn_get_program_name(const gchar *command_line, GError **error)
  *  All OS:
  *     - any leading spaces, tabs and new lines are skipped
  *     - an empty command is invalid
+ *
  *  Unix:
  *     - the standard shell quoting and escaping rules are used, see @c g_shell_parse_argv()
  *     - as a consequence, an unqouted # at the start of an argument comments to the end of line
+ *
  *  Windows:
  *     - leading carriage returns are skipped too
  *     - a quoted program name must be entirely inside the quotes. No "C:\Foo\Bar".pdf or
- *       "C:\Foo\Bar".bat, which would be executed by Windows as C:\Foo\Bar.exe
- *     - an unquoted program name may not contain spaces. Foo Bar Qux will not be considered
- *       "Foo Bar.exe" Qux or "Foo Bar Qux.exe", depending on what executables exist, as
+ *       "C:\Foo\Bar".bat, which would be executed by Windows as `C:\Foo\Bar.exe`
+ *     - an unquoted program name may not contain spaces. `Foo Bar Qux` will not be considered
+ *       `"Foo Bar.exe" Qux` or `"Foo Bar Qux.exe"`, depending on what executables exist, as
  *       Windows normally does.
  *     - the program name must be separated from the arguments by at least one space or tab
  *     - the standard Windows quoting and escaping rules are used: double quote is escaped with
@@ -849,7 +851,7 @@ static void spawn_watch_cb(GPid pid, gint status, gpointer data)
  *
  *  The synchronous execution may not be combined with recursive callbacks.
  *
- *  In line buffered mode, the child input is broken on '\n', "\r\n", '\r', '\0' and max length.
+ *  In line buffered mode, the child input is broken on `\n`, `\r\n`, `\r`, `\0` and max length.
  *
  *  All I/O callbacks are guaranteed to be invoked at least once with @c G_IO_ERR, @c G_IO_HUP
  *  or @c G_IO_NVAL set (except for a @a stdin_cb which returns @c FALSE before that). For the
@@ -1019,6 +1021,10 @@ gboolean spawn_with_callbacks(const gchar *working_directory, const gchar *comma
  *  (For example, on asynchronous execution, you can allocate the data in the heap, and free
  *  it in your @c spawn_with_callbacks() @c exit_cb callback.)
  *
+ * @param channel the channel to write data to.
+ * @param condition condition to check for @c G_IO_OUT.
+ * @param data @c SpawnWriteData to write to @a channel.
+ *
  *  @return @c TRUE if the remaining size is > 0 and @a condition does not indicate any error,
  *  @c FALSE otherwise.
  *



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


More information about the Commits mailing list