aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2002-08-13 19:12:46 +0000
committerGerd Moellmann2002-08-13 19:12:46 +0000
commit96d2e64dcee6eb359cadfbf6f74d526f78db447b (patch)
tree10c338838d2cdb0a8fb39272b120bb8ada41ec11 /src
parent2bef95e52038eda9e5382d1f786a1042b8c7d1d3 (diff)
downloademacs-96d2e64dcee6eb359cadfbf6f74d526f78db447b.tar.gz
emacs-96d2e64dcee6eb359cadfbf6f74d526f78db447b.zip
(Funencodable_char_position): Lisp_Object/int mixup.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/coding.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e74bff0bd62..acae55cd947 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
2
3 * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
4
12002-08-12 Richard M. Stallman <rms@gnu.org> 52002-08-12 Richard M. Stallman <rms@gnu.org>
2 6
3 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H. 7 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
diff --git a/src/coding.c b/src/coding.c
index 7f9f5171b9e..fd0d36e4241 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -6619,7 +6619,7 @@ to the string. */)
6619 Lisp_Object args[2]; 6619 Lisp_Object args[2];
6620 6620
6621 args[0] = unencodable_char_position (safe_chars, from, p, GPT_ADDR, n); 6621 args[0] = unencodable_char_position (safe_chars, from, p, GPT_ADDR, n);
6622 n -= Flength (args[0]); 6622 n -= XINT (Flength (args[0]));
6623 if (n <= 0) 6623 if (n <= 0)
6624 positions = args[0]; 6624 positions = args[0];
6625 else 6625 else