upgrade to newest codemirror

This commit is contained in:
ansuz
2016-06-23 12:30:40 +02:00
parent 1a5905d9fd
commit 82a9b05d5f
489 changed files with 2806 additions and 682 deletions

View File

@@ -0,0 +1,6 @@
# Combine existing list of authors with everyone known in git, sort, add header.
tail --lines=+3 AUTHORS > AUTHORS.tmp
git log --format='%aN' >> AUTHORS.tmp
echo -e "List of CodeMirror contributors. Updated before every release.\n" > AUTHORS
sort -u AUTHORS.tmp >> AUTHORS
rm -f AUTHORS.tmp