From: Stefan Monnier Date: Tue, 30 Aug 2011 14:50:02 +0000 (-0400) Subject: * lisp/subr.el (event-modifiers): Fix "missing modifier" part of docstring. X-Git-Tag: emacs-pretest-24.0.90~104^2~152^2~31 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b1a4f8e1d8df32b582a21fa4110b0a99eba19715;p=emacs.git * lisp/subr.el (event-modifiers): Fix "missing modifier" part of docstring. Fixes: debbugs:9356 --- 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)))