annotate move-if-change @ 4805:980575c76541

Move the arabic-iso8859-6 character set back to C, otherwise X11 lookup fails. src/ChangeLog addition: 2010-01-07 Aidan Kehoe <kehoea@parhasard.net> * mule-charset.c: (syms_of_mule_charset, complex_vars_of_mule_charset): * lisp.h: Restore the creation of arabic-iso8859-6 in C, having it in Lisp isn't sufficient for X11 input to work. lisp/ChangeLog addition: 2010-01-07 Aidan Kehoe <kehoea@parhasard.net> * unicode.el (load-unicode-tables): * mule/mule-msw-init-late.el: * mule/mule-category.el (predefined-category-list): * mule/arabic.el: Move arabic-iso8859-6 back to C, it needs to be there, otherwise X11 character input lookup fails.
author Aidan Kehoe <kehoea@parhasard.net>
date Thu, 07 Jan 2010 15:52:10 +0000
parents 376386a54a3c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 #!/bin/sh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 test -r $2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 cmp $1 $2 > /dev/null
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 echo $2 is unchanged
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 rm -f $1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 mv -f $1 $2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 fi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 mv -f $1 $2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 fi