=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/vim/Attic/screen.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/vim/Attic/screen.c 1996/09/21 06:23:18 1.2 --- src/usr.bin/vim/Attic/screen.c 1996/10/14 03:55:27 1.3 *************** *** 1,4 **** ! /* $OpenBSD: screen.c,v 1.2 1996/09/21 06:23:18 downsj Exp $ */ /* vi:set ts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar --- 1,4 ---- ! /* $OpenBSD: screen.c,v 1.3 1996/10/14 03:55:27 downsj Exp $ */ /* vi:set ts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar *************** *** 2985,2998 **** if (edit_submode_extra != NULL) { msg_outchar(' '); /* add a space in between */ ! if (edit_submode_highl) { stop_highlight(); ! set_highlight('r'); /* Highlight mode */ start_highlight(); } msg_outstr(edit_submode_extra); ! if (edit_submode_highl) { stop_highlight(); set_highlight('M'); /* Highlight mode */ --- 2985,2998 ---- if (edit_submode_extra != NULL) { msg_outchar(' '); /* add a space in between */ ! if (edit_submode_highl != NUL) { stop_highlight(); ! set_highlight(edit_submode_highl); /* Highlight mode */ start_highlight(); } msg_outstr(edit_submode_extra); ! if (edit_submode_highl != NUL) { stop_highlight(); set_highlight('M'); /* Highlight mode */