diff options
| author | Richard M. Stallman | 1993-05-22 22:02:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-22 22:02:35 +0000 |
| commit | 1ce4cf3878abdf0102ac31590f8c686e6c48c671 (patch) | |
| tree | 1e218fd7a6ae0d9842bceb4e3a1d6e928c9cfcaf | |
| parent | 738429d120b11cc60687f1ffc3a85427397348ea (diff) | |
| download | emacs-1ce4cf3878abdf0102ac31590f8c686e6c48c671.tar.gz emacs-1ce4cf3878abdf0102ac31590f8c686e6c48c671.zip | |
(event-modifiers): Doc fix.
| -rw-r--r-- | lisp/subr.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index d5260e67d84..591493e42fc 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -252,8 +252,7 @@ The normal global definition of the character C-x indirects to this keymap.") | |||
| 252 | (defun event-modifiers (event) | 252 | (defun event-modifiers (event) |
| 253 | "Returns a list of symbols representing the modifier keys in event EVENT. | 253 | "Returns a list of symbols representing the modifier keys in event EVENT. |
| 254 | The elements of the list may include `meta', `control', | 254 | The elements of the list may include `meta', `control', |
| 255 | `shift', `hyper', `super', `alt'. | 255 | `shift', `hyper', `super', `alt', `click', `drag', and `down'." |
| 256 | See also the function `event-modifier-bits'." | ||
| 257 | (let ((type event)) | 256 | (let ((type event)) |
| 258 | (if (listp type) | 257 | (if (listp type) |
| 259 | (setq type (car type))) | 258 | (setq type (car type))) |