# HG changeset patch # User Kenichi Handa # Date 887083146 0 # Node ID 64d2baa474982091b12964b328ace1dd15b21c51 # Parent 34e0c8eb49ebf149e6c3966bcb3f27ecccc75f4f (Fposition_bytes): Declare arg POSITION as Lips_Object. diff -r 34e0c8eb49eb -r 64d2baa47498 src/editfns.c --- a/src/editfns.c Tue Feb 10 03:55:04 1998 +0000 +++ b/src/editfns.c Tue Feb 10 03:59:06 1998 +0000 @@ -458,6 +458,7 @@ 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)));