From: Ken Raeburn Date: Sun, 7 Oct 2001 11:03:59 +0000 (+0000) Subject: * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a Lisp_Object. X-Git-Tag: ttn-vms-21-2-B4~19675 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b056f36d1035023b97b5d6a654a99ccc843be846;p=emacs.git * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a Lisp_Object. --- diff --git a/src/ChangeLog b/src/ChangeLog index c9f15add329..d540f05822e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2001-10-07 Ken Raeburn + * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a + Lisp_Object. + * lisp.h (Ffield_end): Declare. 2001-10-07 Gerd Moellmann diff --git a/src/minibuf.c b/src/minibuf.c index 8ffb6c70d85..cf98cc98b3b 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -335,7 +335,7 @@ Return (point-min) if current buffer is not a mini-buffer.") Lisp_Object end = Ffield_end (beg, Qnil); if (XINT (end) == ZV && NILP (Fget_char_property (beg, Qfield, Qnil))) - return make_number (beg); + return beg; else return end; }