aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
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/coding.c
parent2bef95e52038eda9e5382d1f786a1042b8c7d1d3 (diff)
downloademacs-96d2e64dcee6eb359cadfbf6f74d526f78db447b.tar.gz
emacs-96d2e64dcee6eb359cadfbf6f74d526f78db447b.zip
(Funencodable_char_position): Lisp_Object/int mixup.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
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