2 files changed, 3 insertions(+), 3 deletions(-) src/bytecode.c | 2 +- src/editfns.c | 4 ++-- modified src/bytecode.c @@ -1589,7 +1589,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, NEXT; CASE (Bbobp): - PUSH (Fbobp ()); + TOP = Fbobp (TOP); NEXT; CASE (Bcurrent_buffer): modified src/editfns.c @@ -1164,10 +1164,10 @@ At the beginning of the buffer or accessible region, return 0. */) return temp; } -DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0, +DEFUN ("bobp", Fbobp, Sbobp, 0, 1, 0, doc: /* Return t if point is at the beginning of the buffer. If the buffer is narrowed, this means the beginning of the narrowed part. */) - (void) + (Lisp_Object dummy) { if (PT == BEGV) return Qt;