(note_mode_line_highlight): Use kEYMAPP.
#include "intervals.h"
#include "process.h"
#include "atimer.h"
+#include "keymap.h"
#include "coding.h"
#ifdef HAVE_UNISTD_H
/* Change the mouse pointer according to what is under X/Y. */
map = Fget_text_property (make_number (glyph->charpos),
Qlocal_map, glyph->object);
- if (!NILP (Fkeymapp (map)))
+ if (KEYMAPP (map))
cursor = f->output_data.mac->nontext_cursor;
else
{
map = Fget_text_property (make_number (glyph->charpos),
Qkeymap, glyph->object);
- if (!NILP (Fkeymapp (map)))
+ if (KEYMAPP (map))
cursor = f->output_data.mac->nontext_cursor;
}
}