Index: src/wp-includes/js/tinymce/wp-tinymce-schema.js
===================================================================
--- src/wp-includes/js/tinymce/wp-tinymce-schema.js	(revision 26078)
+++ src/wp-includes/js/tinymce/wp-tinymce-schema.js	(working copy)
@@ -15,7 +15,7 @@
 
 	function split(str, delim) {
 		return str.split(delim || ',');
-	};
+	}
 
 	/**
 	 * Unpacks the specified lookup and string data it will also parse it into an object
@@ -28,7 +28,7 @@
 			return value.replace(/[A-Z]+/g, function(key) {
 				return replace(lookup[key]);
 			});
-		};
+		}
 
 		// Unpack lookup
 		for (key in lookup) {
@@ -44,11 +44,11 @@
 				attributes : makeMap(attributes),
 				attributesOrder : attributes,
 				children : makeMap(children, '|', {'#comment' : {}})
-			}
+			};
 		});
 
 		return elements;
-	};
+	}
 
 	/**
 	 * Returns the HTML5 schema and caches it in the mapCache.
@@ -177,7 +177,7 @@
 		}
 
 		return html5;
-	};
+	}
 
 	/**
 	 * Returns the HTML4 schema and caches it in the mapCache.
@@ -308,7 +308,7 @@
 		}
 
 		return html4;
-	};
+	}
 
 	/**
 	 * WordPress Core
@@ -409,7 +409,7 @@
 			}
 
 			return value;
-		};
+		}
 
 		settings = settings || {};
 
@@ -446,7 +446,7 @@
 		// Converts a wildcard expression string to a regexp for example *a will become /.*a/.
 		function patternToRegExp(str) {
 			return new RegExp('^' + str.replace(/([?+*])/g, '.$1') + '$');
-		};
+		}
 
 		// Parses the specified valid_elements string and adds to the current rules
 		// This function is a bit hard to read since it's heavily optimized for speed
@@ -587,7 +587,7 @@
 					}
 				}
 			}
-		};
+		}
 
 		function setValidElements(valid_elements) {
 			elements = {};
@@ -598,7 +598,7 @@
 			each(schemaItems, function(element, name) {
 				children[name] = element.children;
 			});
-		};
+		}
 
 		// Adds custom non HTML elements to the schema
 		function addCustomElements(custom_elements) {
@@ -632,7 +632,7 @@
 					});
 				});
 			}
-		};
+		}
 
 		// Adds valid children to the schema object
 		function addValidChildren(valid_children) {
@@ -662,7 +662,7 @@
 					}
 				});
 			}
-		};
+		}
 
 		function getElementRule(name) {
 			var element = elements[name], i;
@@ -679,7 +679,7 @@
 				if (element.pattern.test(name))
 					return element;
 			}
-		};
+		}
 
 		if (!settings.valid_elements) {
 			// No valid elements defined then clone the elements from the schema spec
