diff options
author | Scott Roland <scott@hackonteur.com> | 2015-12-04 20:03:31 +0000 |
---|---|---|
committer | Scott Roland <scott@hackonteur.com> | 2015-12-04 20:03:31 +0000 |
commit | cb8e8fb360ccdb6a1633cac4c9f4945e0823d776 (patch) | |
tree | 9fc16f912b37488583f003eebf14718048ed4067 /contrib | |
parent | db65a0f6781ad8ddf746082ddece8a448227341e (diff) | |
download | tigervnc-cb8e8fb360ccdb6a1633cac4c9f4945e0823d776.tar.gz tigervnc-cb8e8fb360ccdb6a1633cac4c9f4945e0823d776.zip |
Fix coding to be utf-8 instead of UTF-8
Old UTF-8 resulted in this error from GNU Emacs:
Warning (mule): Invalid coding system `UTF-8' is specified
for the current buffer/file by the :coding tag.
It is highly recommended to fix it before writing to a file.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/xorg/download-xorg-7.5 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xorg/download-xorg-7.5 b/contrib/xorg/download-xorg-7.5 index 1b802a2b..702b3c2b 100755 --- a/contrib/xorg/download-xorg-7.5 +++ b/contrib/xorg/download-xorg-7.5 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# -*-mode: python; coding: UTF-8 -*- +# -*-mode: python; coding: utf-8 -*- import os import glob |