Mercurial > emacs
view move-if-change @ 69581:98eee222dceb
* textmodes/bibtex.el (bibtex-include-OPTkey)
(bibtex-entry-field-alist, bibtex-generate-url-list): Mark as
risky.
(bibtex-autokey-name-case-convert)
(bibtex-autokey-titleword-case-convert): Make these the aliases
for the following two variables.
(bibtex-autokey-name-case-convert-function)
(bibtex-autokey-titleword-case-convert-function): Make these the
real names.
(bibtex-font-lock-keywords): Make bibtex-font-lock-url and
bibtex-font-lock-crossref sublists.
(bibtex-mode): Revert 2005-12-30 change (which made
completion-ignore-case buffer-local).
(bibtex-url): Simplify
author | Roland Winkler <Roland.Winkler@physik.uni-erlangen.de> |
---|---|
date | Sun, 19 Mar 2006 21:55:25 +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