Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0aee588d
Commit
0aee588d
authored
Sep 11, 1999
by
Richard M. Stallman
Browse files
(Fbeginning_of_line): Don't handle minibuffer prompt here.
parent
cdd9f643
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
src/cmds.c
src/cmds.c
+1
-10
No files found.
src/cmds.c
View file @
0aee588d
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment