mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 23:31:55 -08:00
(Fforward_comment): Always set point.
This commit is contained in:
parent
97a983f472
commit
5d3bffd459
1 changed files with 4 additions and 0 deletions
|
|
@ -612,6 +612,7 @@ between them, return t; otherwise return nil.")
|
|||
if (from == stop)
|
||||
{
|
||||
immediate_quit = 0;
|
||||
SET_PT (from);
|
||||
return Qnil;
|
||||
}
|
||||
c = FETCH_CHAR (from);
|
||||
|
|
@ -636,6 +637,7 @@ between them, return t; otherwise return nil.")
|
|||
else if (code != Swhitespace)
|
||||
{
|
||||
immediate_quit = 0;
|
||||
SET_PT (from);
|
||||
return Qnil;
|
||||
}
|
||||
}
|
||||
|
|
@ -685,6 +687,7 @@ between them, return t; otherwise return nil.")
|
|||
if (from == stop)
|
||||
{
|
||||
immediate_quit = 0;
|
||||
SET_PT (from);
|
||||
return Qnil;
|
||||
}
|
||||
from--;
|
||||
|
|
@ -808,6 +811,7 @@ between them, return t; otherwise return nil.")
|
|||
else if (code != Swhitespace || quoted)
|
||||
{
|
||||
immediate_quit = 0;
|
||||
SET_PT (from);
|
||||
return Qnil;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue