diff options
| author | Robert Pluim | 2022-01-04 16:42:03 +0100 |
|---|---|---|
| committer | Robert Pluim | 2022-01-04 16:43:03 +0100 |
| commit | a0263cfee3cf64f4a77f90591af7ef7d8d78d8db (patch) | |
| tree | 403d6f5ba5ebc5e625a6233fe13b05656ac88fdb | |
| parent | 0d315102fed8cecccbac15232304000df5b66406 (diff) | |
| download | emacs-a0263cfee3cf64f4a77f90591af7ef7d8d78d8db.tar.gz emacs-a0263cfee3cf64f4a77f90591af7ef7d8d78d8db.zip | |
Remove ambiguity from key-valid-p docstring
* lisp/keymap.el (key-valid-p): Be explicit about the separator
being one and only one space.
| -rw-r--r-- | lisp/keymap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/keymap.el b/lisp/keymap.el index 6feb91a60be..3e9189fba45 100644 --- a/lisp/keymap.el +++ b/lisp/keymap.el | |||
| @@ -297,7 +297,7 @@ See `kbd' for a descripion of KEYS." | |||
| 297 | (defun key-valid-p (keys) | 297 | (defun key-valid-p (keys) |
| 298 | "Say whether KEYS is a valid key. | 298 | "Say whether KEYS is a valid key. |
| 299 | A key is a string consisting of one or more key strokes. | 299 | A key is a string consisting of one or more key strokes. |
| 300 | The key strokes are separated by space characters. | 300 | The key strokes are separated by single space characters. |
| 301 | 301 | ||
| 302 | Each key stroke is either a single character, or the name of an | 302 | Each key stroke is either a single character, or the name of an |
| 303 | event, surrounded by angle brackets. In addition, any key stroke | 303 | event, surrounded by angle brackets. In addition, any key stroke |