From 3e88b3b9f9e57117a5107684273e161135b754b4 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Wed, 12 Feb 2020 10:44:06 +0100 Subject: [PATCH] Tabs: remove them They have been known to crash some old compilers and have severe performance penalties on non-power-of-two architectures like the Chitauri 13-bit processors. Tabs also cause eye strain, vomits, brain tumors and bad breath. --- src/lib/eio/efl_io_manager.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eio/efl_io_manager.eo b/src/lib/eio/efl_io_manager.eo index 9149595d3b..be58b047c0 100644 --- a/src/lib/eio/efl_io_manager.eo +++ b/src/lib/eio/efl_io_manager.eo @@ -42,7 +42,7 @@ class @beta Efl.Io.Manager extends Efl.Loop_Consumer params { @in path: string;[[Path we want to list entries for]] @in recursive: bool; [[If $true, list entries recursively, $false otherwise]] - info: EflIoDirectInfo; [[Callback called for each packet of @Eina.File_Direct_Info]] + info: EflIoDirectInfo; [[Callback called for each packet of @Eina.File_Direct_Info]] } return: future @move; [[Amount of files found during the listing of the directory]] } @@ -52,7 +52,7 @@ class @beta Efl.Io.Manager extends Efl.Loop_Consumer params { @in path: string;[[Path we want to list entries for]] @in recursive: bool; [[If $true, list entries recursively, $false otherwise]] - info: EflIoDirectInfo; [[Callback called for each packet of @Eina.File_Direct_Info]] + info: EflIoDirectInfo; [[Callback called for each packet of @Eina.File_Direct_Info]] } return: future @move; [[Amount of files found during the listing of the directory]] }