comparison src/editors.c @ 237:404629011caa

Add missing return at the end of editor_command_next_start().
author zas_
date Thu, 03 Apr 2008 20:45:55 +0000
parents f6e307c7bad6
children e4f8a9c1ba26
comparison
equal deleted inserted replaced
236:92ac59ffd928 237:404629011caa
666 /* command was not started, call the finish immediately */ 666 /* command was not started, call the finish immediately */
667 return editor_command_next_finish(ed, 0); 667 return editor_command_next_finish(ed, 0);
668 } 668 }
669 669
670 /* everything is done */ 670 /* everything is done */
671 editor_command_done(ed); 671 return editor_command_done(ed);
672
673 } 672 }
674 673
675 static gint editor_command_next_finish(EditorData *ed, gint status) 674 static gint editor_command_next_finish(EditorData *ed, gint status)
676 { 675 {
677 gint cont = ed->stopping ? EDITOR_CB_SKIP : EDITOR_CB_CONTINUE; 676 gint cont = ed->stopping ? EDITOR_CB_SKIP : EDITOR_CB_CONTINUE;