summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-02-10 03:59:06 +0000
committerKenichi Handa <handa@m17n.org>1998-02-10 03:59:06 +0000
commite70e651a32a67bbc85e25b300fd04219256e9a37 (patch)
treec732ba0507cbf2fb5fe2214e22d151ce659b5e85
parent3010fa5e2bef02fc3cf05d8b80b04c382c8c930e (diff)
downloademacs-e70e651a32a67bbc85e25b300fd04219256e9a37.tar.gz
(Fposition_bytes): Declare arg POSITION as Lips_Object.
-rw-r--r--src/editfns.c1
1 files changed, 1 insertions, 0 deletions
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)));