annotate move-if-change @ 93347:83c147193781

* mark.texi (Mark): Rearrange nodes. (Persistent Mark): Rename from Transient Mark. (Mark, Setting Mark, Marking Objects, Persistent Mark, Mark Ring): Describe Transient Mark mode as the default. * basic.texi (Basic Undo): Don't mention setting the mark, which isn't the default behavior with Transient Mark mode off. (Position Info): Fix typo. * display.texi (Standard Faces): Reference the Mark node. Remove discussion of the region face, which is discussed there. * emacs.texi (Top): Update node listings. * files.texi (Diff Mode, Misc File Ops): Describe Transient Mark mode as the default. * fixit.texi (Undo): Standardize choice of undo key sequence. (Undo, Spelling): Describe Transient Mark mode as the default. * frames.texi (Mouse Commands): Treat Transient Mark mode as the default. * glossary.texi (Glossary): Treat Transient Mark mode as the default. * killing.texi (Kill Ring, Accumulating Text): Assume Transient Mark mode is the default, and note that the mark is not activated when set. * programs.texi (Moving by Defuns, Expressions, Comment Commands): Describe Transient Mark mode as the default. * search.texi (Basic Isearch): Reference the Mark Ring node. (Replace, Unconditional Replace, Other Repeating Search): Describe Transient Mark mode as the default. * text.texi (Words, Pages, Fill Commands, HTML Mode): Describe Transient Mark mode as the default. (Paragraphs): Describe how M-h behaves when region is active. * trouble.texi (Quitting): Clarify effects of C-g.
author Chong Yidong <cyd@stupidchicken.com>
date Fri, 28 Mar 2008 19:02:23 +0000
parents 354e0c45cedf
children 14a97ab281d5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25856
Dave Love <fx@gnu.org>
parents:
diff changeset
1 #!/bin/sh
Dave Love <fx@gnu.org>
parents:
diff changeset
2 if
Dave Love <fx@gnu.org>
parents:
diff changeset
3 test -r $2
Dave Love <fx@gnu.org>
parents:
diff changeset
4 then
Dave Love <fx@gnu.org>
parents:
diff changeset
5 if
Dave Love <fx@gnu.org>
parents:
diff changeset
6 cmp $1 $2 > /dev/null
Dave Love <fx@gnu.org>
parents:
diff changeset
7 then
Dave Love <fx@gnu.org>
parents:
diff changeset
8 echo $2 is unchanged
Dave Love <fx@gnu.org>
parents:
diff changeset
9 rm -f $1
Dave Love <fx@gnu.org>
parents:
diff changeset
10 else
Dave Love <fx@gnu.org>
parents:
diff changeset
11 mv -f $1 $2
Dave Love <fx@gnu.org>
parents:
diff changeset
12 fi
Dave Love <fx@gnu.org>
parents:
diff changeset
13 else
Dave Love <fx@gnu.org>
parents:
diff changeset
14 mv -f $1 $2
Dave Love <fx@gnu.org>
parents:
diff changeset
15 fi