diff --git a/ChangeLog b/ChangeLog
index 5fd93c065b5b5326440350c932849c033461813a..0838f2577627a6f8fe90bedf5acae0d88f1809d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 2014-04-05  Benno Schulenberg  <bensberg@justemail.net>
 	* src/nano.c (version): Print the correct configuration options.
+	* src/{chars.c,nano.c,text.c}: Cosmetic tweaks.
 
 2014-04-05  Mike Frysinger  <vapier@gentoo.org>
 	* src/nano.c (do_input): Reload possibly freed function pointer.
diff --git a/src/chars.c b/src/chars.c
index 67eb0df3866a03303e899cebbcbaa1dbeab35eaf..5696fbe19bb0909fa65bfc60ba418d365eb0fec6 100644
--- a/src/chars.c
+++ b/src/chars.c
@@ -54,7 +54,7 @@ bool using_utf8(void)
 {
     return use_utf8;
 }
-#endif
+#endif /* ENABLE_UTF8 */
 
 #ifndef HAVE_ISBLANK
 /* This function is equivalent to isblank(). */
diff --git a/src/nano.c b/src/nano.c
index 482c532c7f98d77763204c596c70761ced47aea8..b2a6cbe0bc2a3cf069eed2e5ce238b47044fb488 100644
--- a/src/nano.c
+++ b/src/nano.c
@@ -1451,8 +1451,7 @@ void do_toggle(int flag)
 	enabled = !enabled;
 
     desc = (char *) _(flagtostr(flag));
-    statusbar("%s %s", desc, enabled ? _("enabled") :
-	_("disabled"));
+    statusbar("%s %s", desc, enabled ? _("enabled") : _("disabled"));
 }
 
 /* Bleh */
@@ -1706,10 +1705,9 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
 #ifndef NANO_TINY
 			    if (s->scfunc == do_toggle_void)
 				do_toggle(s->toggle);
-			    else {
-#else
-			    {
+			    else
 #endif
+			    {
 				s->scfunc();
 #ifndef DISABLE_COLOR
 				/* The command might have re-initialized shortcuts,
@@ -1727,7 +1725,6 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
 				    edit_refresh();
 				    edit_refresh_needed = FALSE;
 				}
-
 			    }
 			}
 		    }
@@ -2531,9 +2528,7 @@ int main(int argc, char **argv)
 	    load_poshistory();
     }
 #endif /* ENABLE_NANORC */
-#endif /* !NANO_TINY */
 
-#ifndef NANO_TINY
     /* Set up the backup directory (unless we're using restricted mode,
      * in which case backups are disabled, since they would allow
      * reading from or writing to files not specified on the command
@@ -2541,7 +2536,7 @@ int main(int argc, char **argv)
      * that backup files will be saved there. */
     if (!ISSET(RESTRICTED))
 	init_backup_dir();
-#endif
+#endif /* !NANO_TINY */
 
 #ifndef DISABLE_OPERATINGDIR
     /* Set up the operating directory.  This entails chdir()ing there,
@@ -2602,9 +2597,8 @@ int main(int argc, char **argv)
     /* If matchbrackets wasn't specified, set its default value. */
     if (matchbrackets == NULL)
 	matchbrackets = mallocstrcpy(NULL, "(<[{)>]}");
-#endif
 
-#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
+#ifdef ENABLE_NANORC
     /* If whitespace wasn't specified, set its default value. */
     if (whitespace == NULL) {
 #ifdef ENABLE_UTF8
@@ -2620,7 +2614,8 @@ int main(int argc, char **argv)
 	    whitespace_len[1] = 1;
 	}
     }
-#endif
+#endif /* ENABLE_NANORC */
+#endif /* !NANO_TINY */
 
     /* If tabsize wasn't specified, set its default value. */
     if (tabsize == -1)
@@ -2711,7 +2706,7 @@ int main(int argc, char **argv)
 	    }
 	}
     }
-#endif
+#endif /* !DISABLE_MULTIBUFFER */
 
     /* Read the first file on the command line into either the current
      * buffer or a new buffer, depending on whether multibuffer mode is
diff --git a/src/text.c b/src/text.c
index b02d1edfce781738f0525757ceb87931e419748b..503605d1d4d6c66529c26618b7bc3d4dd8122afc 100644
--- a/src/text.c
+++ b/src/text.c
@@ -1076,7 +1076,7 @@ void update_undo(undo_type action)
 	 * and as such we should note that so we can destroy it later. */
 	u->xflags = UNsplit_madenew;
 	break;
-#endif /* DISABLE_WRAPPING */
+#endif /* !DISABLE_WRAPPING */
     case UNSPLIT:
 	/* These cases are handled by the earlier check for a new line and action. */
     case ENTER: