diff src/edit.c @ 13788:a27d380b257f v8.0.1766

patch 8.0.1766: expanding abbreviation doesn't work commit https://github.com/vim/vim/commit/c3c3e698966fac86dee94799b70947defb85440d Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 26 22:30:33 2018 +0200 patch 8.0.1766: expanding abbreviation doesn't work Problem: Expanding abbreviation doesn't work. (Tooth Pik) Solution: Return OK instead of FALSE and FAIL instead of TRUE. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Thu, 26 Apr 2018 22:45:07 +0200
parents cc21507ee4b1
children 08370aad873d
line wrap: on
line diff
--- a/src/edit.c
+++ b/src/edit.c
@@ -10209,9 +10209,9 @@ ins_eol(int c)
     int	    i;
 
     if (echeck_abbr(c + ABBR_OFF))
-	return FALSE;
+	return OK;
     if (stop_arrow() == FAIL)
-	return TRUE;
+	return FAIL;
     undisplay_dollar();
 
     /*