Mercurial > emacs
view move-if-change @ 47024:15430c8d0eaa
* startup.el (normal-splash-screen): Ensure splash buffer is
killed. Use tabs in output. Fix test whether previous buffer was
*scratch* buffer.
* progmodes/simula.el (simula-abbrev-keyword-default)
(simula-abbrev-keyword, simula-abbrev-stdproc-default)
(simula-abbrev-stdproc): Doc fix - escape open parens in column 0.
* apropos.el (command-apropos): Use `defalias' instead of `fset'.
* mail/rmail.el (rmail-speedbar-match-folder-regexp): Doc fix.
author | John Paul Wallington <jpw@pobox.com> |
---|---|
date | Sat, 24 Aug 2002 14:26:06 +0000 |
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