]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fposition_bytes): Declare arg POSITION as Lips_Object.
authorKenichi Handa <handa@m17n.org>
Tue, 10 Feb 1998 03:59:06 +0000 (03:59 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 10 Feb 1998 03:59:06 +0000 (03:59 +0000)
src/editfns.c

index 1630888f446554c1a8de216a17c62c1b636eb4be..e1a706de4352d6afa39f124b10dc86fd4d801364 100644 (file)
@@ -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)));