diff src/option.c @ 2726:0d201adaf9c5 v7.3.141

updated for version 7.3.141 Problem: When a key code is not set get a confusing error message. Solution: Change the error message to say the key code is not set.
author Bram Moolenaar <bram@vim.org>
date Tue, 22 Mar 2011 14:35:05 +0100
parents 862d920800b1
children e8f012b00187
line wrap: on
line diff
--- a/src/option.c
+++ b/src/option.c
@@ -4352,7 +4352,7 @@ do_set(arg, opt_flags)
 		    p = find_termcode(key_name);
 		    if (p == NULL)
 		    {
-			errmsg = (char_u *)N_("E518: Unknown option");
+			errmsg = (char_u *)N_("E846: Key code not set");
 			goto skip;
 		    }
 		    else
@@ -4700,8 +4700,8 @@ do_set(arg, opt_flags)
 						|| s[i] == ','
 						|| s[i] == NUL))
 					break;
-				    /* Count backspaces.  Only a comma with an
-				     * even number of backspaces before it is
+				    /* Count backslashes.  Only a comma with an
+				     * even number of backslashes before it is
 				     * recognized as a separator */
 				    if (s > origval && s[-1] == '\\')
 					++bs;