ecore/ecore_exe - Fix wrong documentation.
authorantognolli <antognolli@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 30 Aug 2011 14:43:29 +0000 (14:43 +0000)
committerantognolli <antognolli@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 30 Aug 2011 14:43:29 +0000 (14:43 +0000)
Many lines can be delivered on one event, but they are split on several
Ecore_Exe_Event_Data_Line on the event.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@62990 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore/Ecore.h

index f8f2f74..807d080 100644 (file)
@@ -648,8 +648,8 @@ extern "C" {
         ECORE_EXE_PIPE_READ = 1, /**< Exe Pipe Read mask */
         ECORE_EXE_PIPE_WRITE = 2, /**< Exe Pipe Write mask */
         ECORE_EXE_PIPE_ERROR = 4, /**< Exe Pipe error mask */
-        ECORE_EXE_PIPE_READ_LINE_BUFFERED = 8, /**< Reads are buffered until a newline and delivered 1 event per line */
-        ECORE_EXE_PIPE_ERROR_LINE_BUFFERED = 16, /**< Errors are buffered until a newline and delivered 1 event per line */
+        ECORE_EXE_PIPE_READ_LINE_BUFFERED = 8, /**< Reads are buffered until a newline and split 1 line per Ecore_Exe_Event_Data_Line */
+        ECORE_EXE_PIPE_ERROR_LINE_BUFFERED = 16, /**< Errors are buffered until a newline and split 1 line per Ecore_Exe_Event_Data_Line */
         ECORE_EXE_PIPE_AUTO = 32, /**< stdout and stderr are buffered automatically */
         ECORE_EXE_RESPAWN = 64, /**< FIXME: Exe is restarted if it dies */
         ECORE_EXE_USE_SH = 128, /**< Use /bin/sh to run the command. */