mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-27 07:41:28 -08:00
(Fbeginning_of_line): Don't handle minibuffer prompt here.
This commit is contained in:
parent
cdd9f64394
commit
0aee588ddc
1 changed files with 1 additions and 10 deletions
11
src/cmds.c
11
src/cmds.c
|
|
@ -163,13 +163,7 @@ If scan reaches end of buffer, stop there without error.")
|
|||
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 @@ If scan reaches end of buffer, stop there without error.")
|
|||
(n)
|
||||
Lisp_Object n;
|
||||
{
|
||||
register int pos;
|
||||
register int stop;
|
||||
|
||||
if (NILP (n))
|
||||
XSETFASTINT (n, 1);
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue