]> diplodocus.org Git - nmh/blobdiff - sbr/geteditor.c
Remove extra semicolons at end of C statements.
[nmh] / sbr / geteditor.c
index 9889a5e39a31290680205e0969fa0268eab7d44f..3b472ec1233aeba79b4471cf30c6d764cb5c3a1b 100644 (file)
@@ -5,8 +5,10 @@
  * complete copyright information.
  */
 
-#include <h/mh.h>
-#include <h/utils.h>
+#include "h/mh.h"
+#include "geteditor.h"
+#include "context_find.h"
+#include "h/utils.h"
 
 static char *default_editor = NULL;
 
@@ -23,5 +25,5 @@ get_default_editor(void)
        str = "vi";
     }
 
-    return (default_editor = str);
+    return default_editor = str;
 }