diff --git a/src/files.c b/src/files.c
index d137315a73a0e73e6b929d9afe557e0f503eec2d..9e2b784fa9557432b691fadd0069e4d762442ee4 100644
--- a/src/files.c
+++ b/src/files.c
@@ -597,7 +597,7 @@ void prepare_for_display(void)
 #ifdef ENABLE_MULTIBUFFER
 /* Switch to a neighbouring file buffer; to the next if to_next is TRUE;
  * otherwise, to the previous one. */
-void switch_to_prevnext_buffer(bool to_next)
+void switch_to_adjacent_buffer(bool to_next)
 {
     /* If only one file buffer is open, say so and get out. */
     if (openfile == openfile->next && !inhelp) {
@@ -640,15 +640,15 @@ void switch_to_prevnext_buffer(bool to_next)
 }
 
 /* Switch to the previous entry in the openfile filebuffer. */
-void switch_to_prev_buffer_void(void)
+void switch_to_prev_buffer(void)
 {
-    switch_to_prevnext_buffer(FALSE);
+    switch_to_adjacent_buffer(FALSE);
 }
 
 /* Switch to the next entry in the openfile filebuffer. */
-void switch_to_next_buffer_void(void)
+void switch_to_next_buffer(void)
 {
-    switch_to_prevnext_buffer(TRUE);
+    switch_to_adjacent_buffer(TRUE);
 }
 
 /* Delete an entry from the circular list of open files, and switch to the
@@ -667,7 +667,7 @@ bool close_buffer(void)
 #endif
 
     /* Switch to the next file buffer. */
-    switch_to_prevnext_buffer(TRUE);
+    switch_to_adjacent_buffer(TRUE);
 
     /* Close the file buffer we had open before. */
     unlink_opennode(openfile->prev);
diff --git a/src/global.c b/src/global.c
index f89d8efe5f504b0b6f8b0ec31005f0195c840c8c..e2017115a47638056b4ae5c470c7ea0587fd09ce 100644
--- a/src/global.c
+++ b/src/global.c
@@ -886,9 +886,9 @@ void shortcut_init(void)
 	N_("Last Line"), IFSCHELP(nano_lastline_msg), BLANKAFTER, VIEW);
 
 #ifdef ENABLE_MULTIBUFFER
-    add_to_funcs(switch_to_prev_buffer_void, MMAIN,
+    add_to_funcs(switch_to_prev_buffer, MMAIN,
 	N_("Prev File"), IFSCHELP(nano_prevfile_msg), TOGETHER, VIEW);
-    add_to_funcs(switch_to_next_buffer_void, MMAIN,
+    add_to_funcs(switch_to_next_buffer, MMAIN,
 	N_("Next File"), IFSCHELP(nano_nextfile_msg), BLANKAFTER, VIEW);
 #endif
 
@@ -1139,8 +1139,8 @@ void shortcut_init(void)
 	add_to_sclist(MSOME, "^\xE2\x86\x90", CONTROL_LEFT, do_prev_word_void, 0);
 	add_to_sclist(MSOME, "^\xE2\x86\x92", CONTROL_RIGHT, do_next_word_void, 0);
 #ifdef ENABLE_MULTIBUFFER
-	add_to_sclist(MMAIN, "M-\xE2\x86\x90", ALT_LEFT, switch_to_prev_buffer_void, 0);
-	add_to_sclist(MMAIN, "M-\xE2\x86\x92", ALT_RIGHT, switch_to_next_buffer_void, 0);
+	add_to_sclist(MMAIN, "M-\xE2\x86\x90", ALT_LEFT, switch_to_prev_buffer, 0);
+	add_to_sclist(MMAIN, "M-\xE2\x86\x92", ALT_RIGHT, switch_to_next_buffer, 0);
 #endif
 #ifndef NANO_TINY
 	add_to_sclist(MMAIN|MHELP|MBROWSER, "M-\xE2\x86\x91", ALT_UP, do_findprevious, 0);
@@ -1191,10 +1191,10 @@ void shortcut_init(void)
     add_to_sclist(MMAIN, "M-=", 0, do_scroll_down, 0);
 #endif
 #ifdef ENABLE_MULTIBUFFER
-    add_to_sclist(MMAIN, "M-<", 0, switch_to_prev_buffer_void, 0);
-    add_to_sclist(MMAIN, "M-,", 0, switch_to_prev_buffer_void, 0);
-    add_to_sclist(MMAIN, "M->", 0, switch_to_next_buffer_void, 0);
-    add_to_sclist(MMAIN, "M-.", 0, switch_to_next_buffer_void, 0);
+    add_to_sclist(MMAIN, "M-<", 0, switch_to_prev_buffer, 0);
+    add_to_sclist(MMAIN, "M-,", 0, switch_to_prev_buffer, 0);
+    add_to_sclist(MMAIN, "M->", 0, switch_to_next_buffer, 0);
+    add_to_sclist(MMAIN, "M-.", 0, switch_to_next_buffer, 0);
 #endif
     add_to_sclist(MMOST, "M-V", 0, do_verbatim_input, 0);
 #ifndef NANO_TINY
@@ -1566,9 +1566,9 @@ sc *strtosc(const char *input)
 	s->scfunc = do_last_line;
 #ifdef ENABLE_MULTIBUFFER
     else if (!strcasecmp(input, "prevbuf"))
-	s->scfunc = switch_to_prev_buffer_void;
+	s->scfunc = switch_to_prev_buffer;
     else if (!strcasecmp(input, "nextbuf"))
-	s->scfunc = switch_to_next_buffer_void;
+	s->scfunc = switch_to_next_buffer;
 #endif
     else if (!strcasecmp(input, "verbatim"))
 	s->scfunc = do_verbatim_input;
diff --git a/src/help.c b/src/help.c
index d64f86c34be713c8e76e05b102a1d5a6479e4918..84e957db10082f26c01c6f76e45d7e2b45b8c7dd 100644
--- a/src/help.c
+++ b/src/help.c
@@ -256,7 +256,7 @@ void do_help(void)
 #endif
 
     /* Switch back to the buffer we were invoked from. */
-    switch_to_prev_buffer_void();
+    switch_to_prev_buffer();
 
     if (ISSET(NO_HELP)) {
 	currmenu = oldmenu;
diff --git a/src/proto.h b/src/proto.h
index 5f04d325ca23c78f5cdd65643bfafefc1dc177e0..452eeb5cef2a25630d39e4e2c2555c8deee6d234 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -274,8 +274,8 @@ void replace_marked_buffer(const char *filename, filestruct *top, size_t top_x,
 #endif
 void prepare_for_display(void);
 #ifdef ENABLE_MULTIBUFFER
-void switch_to_prev_buffer_void(void);
-void switch_to_next_buffer_void(void);
+void switch_to_prev_buffer(void);
+void switch_to_next_buffer(void);
 bool close_buffer(void);
 #endif
 void read_file(FILE *f, int fd, const char *filename, bool undoable,