From b1a4f8e1d8df32b582a21fa4110b0a99eba19715 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 30 Aug 2011 10:50:02 -0400 Subject: [PATCH] * lisp/subr.el (event-modifiers): Fix "missing modifier" part of docstring. Fixes: debbugs:9356 --- lisp/ChangeLog | 7 ++++++- lisp/subr.el | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d9fe242e9b2..39cc42477e2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,11 @@ +2011-08-30 Stefan Monnier + + * subr.el (event-modifiers): Fix "missing modifier" part of docstring + (bug#9356). + 2011-08-30 Reuben Thomas (tiny change) - * vc/pcvs-defs.el (cvs-find-file-and-jump): Typo in docstring (bug#9369). + * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369). 2011-08-29 Juri Linkov diff --git a/lisp/subr.el b/lisp/subr.el index 9aa895b0e94..b49a20e7f6e 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -888,8 +888,8 @@ The elements of the list may include `meta', `control', and `down'. EVENT may be an event or an event type. If EVENT is a symbol that has never been used in an event that has been read as input -in the current Emacs session, then this function can return nil, -even when EVENT actually has modifiers." +in the current Emacs session, then this function may fail to include +the `click' modifier." (let ((type event)) (if (listp type) (setq type (car type))) -- 2.11.4.GIT