From 80e01f8d51df49b0d1e5315fad122a85b451816a Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 10 Feb 1998 03:59:06 +0000 Subject: [PATCH] (Fposition_bytes): Declare arg POSITION as Lips_Object. --- src/editfns.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/editfns.c b/src/editfns.c index 1630888f446..e1a706de435 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -458,6 +458,7 @@ is in effect, in which case it is less.") DEFUN ("position-bytes", Fposition_bytes, Sposition_bytes, 1, 1, 0, "Return the byte position for character position POSITION.") (position) + Lisp_Object position; { CHECK_NUMBER_COERCE_MARKER (position, 1); return make_number (CHAR_TO_BYTE (XINT (position))); -- 2.39.2