comparison lib/quotearg.c @ 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 b06060465f09
comparison
equal deleted inserted replaced
39210:9b55cbc9c002 39211:28a8d93056e6
1078 char const * 1078 char const *
1079 quote (char const *arg) 1079 quote (char const *arg)
1080 { 1080 {
1081 return quote_n (0, arg); 1081 return quote_n (0, arg);
1082 } 1082 }
1083
1084 /*
1085 * Hey Emacs!
1086 * Local Variables:
1087 * coding: utf-8
1088 * End:
1089 */