view move-if-change @ 106716:4039413a8b1d

Allow use of "end" keyword for terminating Octave-mode blocks. * progmodes/octave-mod.el (octave-end-keywords) (octave-block-begin-or-end-regexp, octave-block-match-alist): Add "end" keyword (Bug#3061). (octave-end-as-array-index-p): New function. (calculate-octave-indent): Use it.
author Chong Yidong <cyd@stupidchicken.com>
date Sat, 02 Jan 2010 14:40:59 -0500 (2010-01-02)
parents 354e0c45cedf
children 14a97ab281d5
line wrap: on
line source
#!/bin/sh
if
test -r $2
then
if
cmp $1 $2 > /dev/null
then
echo $2 is unchanged
rm -f $1
else
mv -f $1 $2
fi
else
mv -f $1 $2
fi