aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-08-17 00:24:34 +0000
committerRichard M. Stallman2003-08-17 00:24:34 +0000
commit2a6f12e29a4c719f586fc9df92254d967d38f36e (patch)
tree80c59050c94e537fffdbd174250bc886024cc431
parentc24e982c71e22b0805eac98f5ecb72bed9d8f9e2 (diff)
downloademacs-2a6f12e29a4c719f586fc9df92254d967d38f36e.tar.gz
emacs-2a6f12e29a4c719f586fc9df92254d967d38f36e.zip
(Fwrite_region): Fix conditional expression to issue the right message.
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index a44552010c7..48510cd6ed5 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -5223,7 +5223,7 @@ This does code conversion according to the value of
5223 return Qnil; 5223 return Qnil;
5224 5224
5225 if (!auto_saving) 5225 if (!auto_saving)
5226 message_with_string ((! INTEGERP (append) 5226 message_with_string ((INTEGERP (append)
5227 ? "Updated %s" 5227 ? "Updated %s"
5228 : ! NILP (append) 5228 : ! NILP (append)
5229 ? "Added to %s" 5229 ? "Added to %s"