mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-29 08:31:35 -08:00
(Fself_insert_command, Fnewline): Don't use XFASTINT as an lvalue.
This commit is contained in:
parent
330e7312a3
commit
f58dd69bcf
1 changed files with 4 additions and 2 deletions
|
|
@ -222,7 +222,8 @@ Whichever character you type to run this command is inserted.")
|
|||
else
|
||||
while (XINT (arg) > 0)
|
||||
{
|
||||
XFASTINT (arg)--; /* Ok since old and new vals both nonneg */
|
||||
/* Ok since old and new vals both nonneg */
|
||||
XSETFASTINT (arg, XFASTINT (arg) - 1);
|
||||
internal_self_insert (XINT (last_command_char), XFASTINT (arg) != 0);
|
||||
}
|
||||
|
||||
|
|
@ -277,7 +278,8 @@ In Auto Fill mode, if no numeric arg, break the preceding line if it's long.")
|
|||
insert (&c1, 1);
|
||||
else
|
||||
internal_self_insert ('\n', !NILP (arg1));
|
||||
XFASTINT (arg)--; /* Ok since old and new vals both nonneg */
|
||||
/* Ok since old and new vals both nonneg */
|
||||
XSETFASTINT (arg, XFASTINT (arg) - 1);
|
||||
}
|
||||
|
||||
if (flag)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue