Fix typo and spaces with adjustments from me. - scroll - scrollbackbuffer program for st
 (HTM) git clone git://git.suckless.org/scroll
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 91719e47d5384a79a3fb76ee36a3980d0e3f56f3
 (DIR) parent dda4e05544271c78f6f97318f19ab9edbaf7ba19
 (HTM) Author: Steve Ward <planet36@gmail.com>
       Date:   Wed,  6 May 2020 22:54:30 -0400
       
       Fix typo and spaces with adjustments from me.
       
       Diffstat:
         M config.def.h                        |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/config.def.h b/config.def.h
       @@ -3,13 +3,13 @@
         * Use "cat -v" to figure out favorite key combination.
         *
         * lines is the number of lines scrolled up or down.
       - * If lines is negative, its the fraction of the terminal size.
       + * If lines is negative, it's the fraction of the terminal size.
         */
        
        struct rule rules[] = {
                /* sequence     event        lines */
       -        {"\033[5;2~",        SCROLL_UP,   -1},        /* [Shift] + [PageUP] */
       -        {"\033[6;2~",        SCROLL_DOWN, -1},        /* [Shift] + [PageDown] */
       -        {"\031",        SCROLL_UP,    1},        /* mouse wheel up */
       -        {"\005",        SCROLL_DOWN,  1}        /* mouse wheel Down */
       +        {"\033[5;2~",   SCROLL_UP,   -1},       /* [Shift] + [PageUP] */
       +        {"\033[6;2~",   SCROLL_DOWN, -1},       /* [Shift] + [PageDown] */
       +        {"\031",        SCROLL_UP,    1},       /* mouse wheel up */
       +        {"\005",        SCROLL_DOWN,  1},       /* mouse wheel Down */
        };