diff lib/sha1.h @ 39211:28a8d93056e6

maint: Add encoding marker for Emacs to non-ASCII sources. Similar to commit f406941a8a2ec5fbf3eacc386b9be09d6593d53b from Paul Eggert <eggert@cs.ucla.edu> 2015-09-24. To determine the file list that need the marker, I used the command: for f in `find . -type f | grep -v '^\./\.git/' | grep -v '^\./tests/'`; do if iconv -f ASCII -t ASCII < $f > /dev/null 2>&1 ; then : ; else if iconv -f UTF-8 -t UTF-8 < $f > /dev/null 2>&1 ; then if grep 'The GNU C Library is' $f > /dev/null; then :; else if grep 'coding: utf-8' $f > /dev/null; then :; else echo $f fi fi fi fi done | LC_ALL=C sort
author Bruno Haible <bruno@clisp.org>
date Fri, 05 Jan 2018 22:08:14 +0100
parents 24e347e0e326
children 1acf7ebb5dab
line wrap: on
line diff
--- a/lib/sha1.h	Thu Jan 04 15:59:04 2018 +0100
+++ b/lib/sha1.h	Fri Jan 05 22:08:14 2018 +0100
@@ -98,3 +98,10 @@
 # endif
 
 #endif
+
+/*
+ * Hey Emacs!
+ * Local Variables:
+ * coding: utf-8
+ * End:
+ */