tAdd break statement - ve - a minimal text editor (work in progress)
 (HTM) git clone git://src.adamsgaard.dk/ve
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 33acd85e885b725171e70bc0b11db0d0db251e9f
 (DIR) parent 18ab23e370638b99bc93e211bbc9ae65686e08c7
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Tue,  6 Aug 2019 15:52:13 +0200
       
       Add break statement
       
       Diffstat:
         M input.c                             |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
 (DIR) diff --git a/input.c b/input.c
       t@@ -129,6 +129,7 @@ editor_process_keypress()
                                        break;
                                default:
                                        editor_insert_char(c);
       +                                break;
                        }
                }
        }