# HG changeset patch # User Karl Heuer # Date 765692035 0 # Node ID 9ecffdca3b7a1975b5d3005ac851647525a0f8ea # Parent 19e24f8977229ee08688664c3834f3cbb78c8492 (Fminibuffer_prompt_width): Undo previous change for negative values. This function does not include hscroll positioning any more. diff -r 19e24f897722 -r 9ecffdca3b7a src/minibuf.c --- a/src/minibuf.c Thu Apr 07 03:29:18 1994 +0000 +++ b/src/minibuf.c Thu Apr 07 04:13:55 1994 +0000 @@ -1541,13 +1541,11 @@ DEFUN ("minibuffer-prompt-width", Fminibuffer_prompt_width, Sminibuffer_prompt_width, 0, 0, 0, - "Return the horizontal position after the minibuffer prompt.\n\ -This may be less than the actual display width of the minibuffer prompt,\n\ -or even negative, if horizontal scrolling is in effect in the minibuffer.") + "Return the display width of the minibuffer prompt.") () { Lisp_Object width; - XSET (width, Lisp_Int, minibuf_prompt_width); + XFASTINT (width) = minibuf_prompt_width; return width; }