diff src/ex_docmd.c @ 10361:147f45c283e1 v8.0.0075

commit https://github.com/vim/vim/commit/8a5883b7488e492419dde7e1637cc72f2d566ba4 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 10 20:20:05 2016 +0100 patch 8.0.0075 Problem: Using number for exception type lacks type checking. Solution: Use an enum.
author Christian Brabandt <cb@256bit.org>
date Thu, 10 Nov 2016 20:30:04 +0100
parents 59d01e335858
children bd674706408a
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -1388,8 +1388,6 @@ do_cmdline(
 		    break;
 		case ET_INTERRUPT:
 		    break;
-		default:
-		    p = vim_strsave((char_u *)_(e_internal));
 	    }
 
 	    saved_sourcing_name = sourcing_name;