Mercurial > hg > xemacs-beta
diff src/events.c @ 2862:b95fe16005fd
[xemacs-hg @ 2005-07-17 20:08:40 by aidan]
Restore the last argument to event-to-character, document that it's unused.
author | aidan |
---|---|
date | Sun, 17 Jul 2005 20:08:48 +0000 |
parents | ade0c13d91a3 |
children | facf3239ba30 |
line wrap: on
line diff
--- a/src/events.c Sat Jul 16 21:51:13 2005 +0000 +++ b/src/events.c Sun Jul 17 20:08:48 2005 +0000 @@ -1385,7 +1385,7 @@ return c; } -DEFUN ("event-to-character", Fevent_to_character, 1, 3, 0, /* +DEFUN ("event-to-character", Fevent_to_character, 1, 4, 0, /* Return the closest character approximation to the given event object. If the event isn't a keypress, this returns nil. If the ALLOW-EXTRA-MODIFIERS argument is non-nil, then this is lenient in @@ -1398,8 +1398,9 @@ will be returned for events containing the Meta modifier. Note that ALLOW-META may cause ambiguity between meta characters and Latin-1 characters. +ALLOW-NON-ASCII is unused, and retained for compatibility. */ - (event, allow_extra_modifiers, allow_meta)) + (event, allow_extra_modifiers, allow_meta, UNUSED(allow_non_ascii))) { Ichar c; CHECK_LIVE_EVENT (event);