Corrected spacing issues introduced in SciTE ... may begin using gvim to avoid these issues...

Fri, 21 Sep 2007 14:37:24 -0400

author
Thomas Harning Jr <harningt@gmail.com>
date
Fri, 21 Sep 2007 14:37:24 -0400
changeset 42
b1742e841e5a
parent 41
fce1995f0db8
child 43
f58b30ad545e

Corrected spacing issues introduced in SciTE ... may begin using gvim to avoid these issues...

include/buffer_event.h file | annotate | diff | comparison | revisions
src/buffer_event.c file | annotate | diff | comparison | revisions
--- a/include/buffer_event.h	Fri Sep 21 14:35:11 2007 -0400
+++ b/include/buffer_event.h	Fri Sep 21 14:37:24 2007 -0400
@@ -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>
--- a/src/buffer_event.c	Fri Sep 21 14:35:11 2007 -0400
+++ b/src/buffer_event.c	Fri Sep 21 14:37:24 2007 -0400
@@ -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 @@
 	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 @@
 		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 @@
 	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;
 }

mercurial