]> git.eshelyaron.com Git - emacs.git/commitdiff
* minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a Lisp_Object.
authorKen Raeburn <raeburn@raeburn.org>
Sun, 7 Oct 2001 11:03:59 +0000 (11:03 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Sun, 7 Oct 2001 11:03:59 +0000 (11:03 +0000)
src/ChangeLog
src/minibuf.c

index c9f15add329cdd74c72b03fc0df6b0215e6fc29f..d540f05822ec72de2e5965c57662f134a3461384 100644 (file)
@@ -1,5 +1,8 @@
 2001-10-07  Ken Raeburn  <raeburn@gnu.org>
 
+       * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a
+       Lisp_Object.
+
        * lisp.h (Ffield_end): Declare.
 
 2001-10-07  Gerd Moellmann  <gerd@gnu.org>
index 8ffb6c70d85c762e2881fd7969aa4e577ad9d905..cf98cc98b3bf843fd41e8594297fc66d6292ef84 100644 (file)
@@ -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;
 }