diff options
| author | Richard M. Stallman | 1998-11-24 04:55:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-11-24 04:55:16 +0000 |
| commit | 69eca94c245a35d5233be7be06cd9801c70bcf39 (patch) | |
| tree | 2c0b79dc8d3a50c27403190dbf4a63c22caa88d5 /src | |
| parent | e40261d0c4f0c691534866f8abd605b47e1d369d (diff) | |
| download | emacs-69eca94c245a35d5233be7be06cd9801c70bcf39.tar.gz emacs-69eca94c245a35d5233be7be06cd9801c70bcf39.zip | |
(Fmake_keymap): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c index 52d42a12999..6a7bee4f50c 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -109,8 +109,8 @@ static void describe_map (); | |||
| 109 | /* Keymap object support - constructors and predicates. */ | 109 | /* Keymap object support - constructors and predicates. */ |
| 110 | 110 | ||
| 111 | DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0, | 111 | DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0, |
| 112 | "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\ | 112 | "Construct and return a new keymap, of the form (keymap CHARTABLE . ALIST).\n\ |
| 113 | VECTOR is a vector which holds the bindings for the ASCII\n\ | 113 | CHARTABLE is a char-table that holds the bindings for the ASCII\n\ |
| 114 | characters. ALIST is an assoc-list which holds bindings for function keys,\n\ | 114 | characters. ALIST is an assoc-list which holds bindings for function keys,\n\ |
| 115 | mouse events, and any other things that appear in the input stream.\n\ | 115 | mouse events, and any other things that appear in the input stream.\n\ |
| 116 | All entries in it are initially nil, meaning \"command undefined\".\n\n\ | 116 | All entries in it are initially nil, meaning \"command undefined\".\n\n\ |