mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 18:00:40 -08:00
(describe_map_compare): Yet another int/Lisp_Object mixup.
This commit is contained in:
parent
6918ac24b0
commit
ccf0250b2f
1 changed files with 2 additions and 2 deletions
|
|
@ -3196,8 +3196,8 @@ describe_map_compare (aa, bb)
|
|||
if (INTEGERP (a->event) && !INTEGERP (b->event))
|
||||
return -1;
|
||||
if (SYMBOLP (a->event) && SYMBOLP (b->event))
|
||||
return (Fstring_lessp (a->event, b->event) ? -1
|
||||
: Fstring_lessp (b->event, a->event) ? 1
|
||||
return (!NILP (Fstring_lessp (a->event, b->event)) ? -1
|
||||
: !NILP (Fstring_lessp (b->event, a->event)) ? 1
|
||||
: 0);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue