mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(Fprefix_numeric_value): Fix type check.
This commit is contained in:
parent
d9b641bb96
commit
3399a477ea
1 changed files with 1 additions and 1 deletions
|
|
@ -644,7 +644,7 @@ Its numeric meaning is what you would get from `(interactive \"p\")'.")
|
|||
XSETFASTINT (val, 1);
|
||||
else if (EQ (raw, Qminus))
|
||||
XSETINT (val, -1);
|
||||
else if (CONSP (raw))
|
||||
else if (CONSP (raw) && INTEGERP (XCONS (raw)->car))
|
||||
XSETINT (val, XINT (XCONS (raw)->car));
|
||||
else if (INTEGERP (raw))
|
||||
val = raw;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue