Mercurial > hg > xemacs-beta
view move-if-change @ 4791:ea07b60c097f
Fix issue 546, use next-single-char-property-change in list-mode.el
lisp/ChangeLog addition:
2009-12-31 Aidan Kehoe <kehoea@parhasard.net>
* list-mode.el (next-list-mode-item, switch-to-completions): Use
next-single-char-property-change,
previous-single-char-property-change now
next-single-property-change no longer pays attention to extents
not created using the text property functions. Fix for issue 546,
bug dates from changeset 8c96bdabcaf9.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 31 Dec 2009 08:21:30 +0000 |
parents | 376386a54a3c |
children |
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