diff options
| author | Richard M. Stallman | 1993-07-03 03:58:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-03 03:58:10 +0000 |
| commit | f66ef18523768c55e1c56df1c7456952322b9c30 (patch) | |
| tree | ddd6a8fdb5148ab429d0e58e1600930a9000eb8e /src | |
| parent | b846d0394aac294fe89900e5203313bdb9be47df (diff) | |
| download | emacs-f66ef18523768c55e1c56df1c7456952322b9c30.tar.gz emacs-f66ef18523768c55e1c56df1c7456952322b9c30.zip | |
(Faccessible_keymaps): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keymap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index f3567a8d13b..f1af4e4103e 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1048,7 +1048,9 @@ DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps, | |||
| 1048 | "Find all keymaps accessible via prefix characters from KEYMAP.\n\ | 1048 | "Find all keymaps accessible via prefix characters from KEYMAP.\n\ |
| 1049 | Returns a list of elements of the form (KEYS . MAP), where the sequence\n\ | 1049 | Returns a list of elements of the form (KEYS . MAP), where the sequence\n\ |
| 1050 | KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\ | 1050 | KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\ |
| 1051 | so that the KEYS increase in length. The first element is (\"\" . KEYMAP).") | 1051 | so that the KEYS increase in length. The first element is (\"\" . KEYMAP).\n\ |
| 1052 | An optional argument PREFIX, if non-nil, should be a key sequence;\n\ | ||
| 1053 | then the value includes only maps for prefixes that start with PREFIX.") | ||
| 1052 | (startmap, prefix) | 1054 | (startmap, prefix) |
| 1053 | Lisp_Object startmap, prefix; | 1055 | Lisp_Object startmap, prefix; |
| 1054 | { | 1056 | { |