aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2002-01-03 11:30:57 +0000
committerKim F. Storm2002-01-03 11:30:57 +0000
commit7d1c48661da68f4d776555e4281b61416bb17097 (patch)
treec2e3e73c645b3448e8332a1e869de5f29629a528 /src
parent9ec1bdb606b82db10c87bb8a87ce0f3f1c09ccdc (diff)
downloademacs-7d1c48661da68f4d776555e4281b61416bb17097.tar.gz
emacs-7d1c48661da68f4d776555e4281b61416bb17097.zip
(read_key_sequence): Fixed cast of submaps arg to bcopy.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 2c083217d6a..3dc879a4e4e 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -8129,7 +8129,7 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8129 if (!NILP (orig_keymap)) 8129 if (!NILP (orig_keymap))
8130 submaps[nmaps++] = orig_keymap; 8130 submaps[nmaps++] = orig_keymap;
8131 8131
8132 bcopy (maps, (void *) submaps + nmaps, 8132 bcopy (maps, (void *) (submaps + nmaps),
8133 nminor * sizeof (submaps[0])); 8133 nminor * sizeof (submaps[0]));
8134 8134
8135 nmaps += nminor; 8135 nmaps += nminor;