diff options
author | Thomas Harning Jr <harningt@gmail.com> | 2007-09-21 14:37:24 -0400 |
---|---|---|
committer | Thomas Harning Jr <harningt@gmail.com> | 2007-09-21 14:37:24 -0400 |
commit | cc2f827db29caa6cc2679909ce5d50129782a900 (patch) | |
tree | f35971b6a542e50001a5604d382c176a7eed1671 | |
parent | e652e93f7d73f67c6bb5299c9df14d42b66dba7d (diff) | |
download | luaevent-prosody-cc2f827db29caa6cc2679909ce5d50129782a900.tar.gz luaevent-prosody-cc2f827db29caa6cc2679909ce5d50129782a900.zip |
Corrected spacing issues introduced in SciTE ... may begin using gvim to avoid these issues...
-rw-r--r-- | include/buffer_event.h | 4 | ||||
-rw-r--r-- | src/buffer_event.c | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/include/buffer_event.h b/include/buffer_event.h index 960b576..b3fe3c1 100644 --- a/include/buffer_event.h +++ b/include/buffer_event.h @@ -1,7 +1,7 @@ /* LuaEvent - Copyright (C) 2007 Thomas Harning <harningt@gmail.com> * Licensed as LGPL - See doc/COPYING for details */ - #ifndef BUFFER_EVENT_H - #define BUFFER_EVENT_H +#ifndef BUFFER_EVENT_H +#define BUFFER_EVENT_H #include "luaevent.h" #include <lua.h> diff --git a/src/buffer_event.c b/src/buffer_event.c index 6d84736..0058ed9 100644 --- a/src/buffer_event.c +++ b/src/buffer_event.c @@ -1,6 +1,5 @@ /* LuaEvent - Copyright (C) 2007 Thomas Harning <harningt@gmail.com> * Licensed as LGPL - See doc/COPYING for details */ - #include "buffer_event.h" #include "luaevent.h" #include "utility.h" @@ -85,7 +84,7 @@ static int buffer_event_push(lua_State* L) { lua_rawseti(L, -2, 2); // Write lua_pushvalue(L, 5); lua_rawseti(L, -2, 3); // Err - + event_buffer_push(L, ev->ev->input); lua_rawseti(L, -2, 4); event_buffer_push(L, ev->ev->output); @@ -104,7 +103,7 @@ static int buffer_event_gc(lua_State* L) { le_buffer *read, *write; bufferevent_free(ev->ev); ev->ev = NULL; - /* Also clear out the associated input/output event_buffers + /* Also clear out the associated input/output event_buffers * since they would have already been freed.. */ lua_getfenv(L, 1); lua_rawgeti(L, -1, 4); @@ -135,7 +134,7 @@ int buffer_event_register(lua_State* L) { luaL_register(L, NULL, buffer_event_funcs); lua_setfield(L, -2, "__index"); lua_pop(L, 1); - + luaL_register(L, "luaevent.core.bufferevent", funcs); return 1; } |