# HG changeset patch # User Richard M. Stallman # Date 937012359 0 # Node ID 82ebdf9967da9d926161b7dfed344b12608f63b9 # Parent 0987f52a0674636094ec76bbb1193e2adb33baee (Fbeginning_of_line): Don't handle minibuffer prompt here. diff -r 0987f52a0674 -r 82ebdf9967da src/cmds.c --- a/src/cmds.c Sat Sep 11 01:08:15 1999 +0000 +++ b/src/cmds.c Sat Sep 11 01:12:39 1999 +0000 @@ -163,13 +163,7 @@ else CHECK_NUMBER (n, 0); - { - int pos = XFASTINT (Fline_beginning_position (n)); - if (INTEGERP (current_buffer->minibuffer_prompt_length) - && pos < XFASTINT (current_buffer->minibuffer_prompt_length)) - pos = XFASTINT (current_buffer->minibuffer_prompt_length); - SET_PT (pos); - } + SET_PT (XINT (Fline_beginning_position (n))); return Qnil; } @@ -182,9 +176,6 @@ (n) Lisp_Object n; { - register int pos; - register int stop; - if (NILP (n)) XSETFASTINT (n, 1); else