svn commit: trunk/busybox/editors

vda at busybox.net vda at busybox.net
Tue Oct 14 12:59:42 UTC 2008


Author: vda
Date: 2008-10-14 05:59:42 -0700 (Tue, 14 Oct 2008)
New Revision: 23676

Log:
vi: fix bizarre formatting. no code changes



Modified:
   trunk/busybox/editors/vi.c


Changeset:
Modified: trunk/busybox/editors/vi.c
===================================================================
--- trunk/busybox/editors/vi.c	2008-10-14 12:50:34 UTC (rev 23675)
+++ trunk/busybox/editors/vi.c	2008-10-14 12:59:42 UTC (rev 23676)
@@ -3698,7 +3698,7 @@
 	case 'y':			// y- yank   something
 	case 'Y':			// Y- Yank a line
 #endif
-		{
+	{
 		int yf, ml, whole = 0;
 		yf = YANKDEL;	// assume either "c" or "d"
 #if ENABLE_FEATURE_VI_YANKMARK
@@ -3771,8 +3771,8 @@
 #endif
 			end_cmd_q();	// stop adding to q
 		}
-		}
 		break;
+	}
 	case 'k':			// k- goto prev line, same col
 	case VI_K_UP:		// cursor key Up
 		if (cmdcnt-- > 1) {




More information about the busybox-cvs mailing list