Mercurial > emacs
changeset 69596:f646e7ad8c27
(map_keymap): Set tail to Qnil before GCPRO it.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 20 Mar 2006 06:24:31 +0000 |
parents | f57904524ef9 |
children | df847a0b85d2 |
files | src/keymap.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keymap.c Mon Mar 20 06:23:55 2006 +0000 +++ b/src/keymap.c Mon Mar 20 06:24:31 2006 +0000 @@ -699,6 +699,7 @@ struct gcpro gcpro1, gcpro2, gcpro3; Lisp_Object tail; + tail = Qnil; GCPRO3 (map, args, tail); map = get_keymap (map, 1, autoload); for (tail = (CONSP (map) && EQ (Qkeymap, XCAR (map))) ? XCDR (map) : map;