diff options
| author | Mark Oteiza | 2017-09-22 16:34:31 -0400 |
|---|---|---|
| committer | Mark Oteiza | 2017-09-22 16:34:31 -0400 |
| commit | f656ccdb4384564001ae181c66f2a242bc31a849 (patch) | |
| tree | 53bac37f196afd8d611af684a18c507e81bd4f8b | |
| parent | d64da52d57b068da630ba5eb606cae9421de19e9 (diff) | |
| download | emacs-f656ccdb4384564001ae181c66f2a242bc31a849.tar.gz emacs-f656ccdb4384564001ae181c66f2a242bc31a849.zip | |
; Fix typo
* lisp/emacs-lisp/subr-x.el: Nix extra parenthesis.
| -rw-r--r-- | lisp/emacs-lisp/subr-x.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el index 077ad22c75d..edba6550fa2 100644 --- a/lisp/emacs-lisp/subr-x.el +++ b/lisp/emacs-lisp/subr-x.el | |||
| @@ -128,7 +128,7 @@ binding value is nil. If all are non-nil, the value of THEN is | |||
| 128 | returned, or the last form in ELSE is returned. | 128 | returned, or the last form in ELSE is returned. |
| 129 | 129 | ||
| 130 | Each element of VARLIST is a list (SYMBOL VALUEFORM) which binds | 130 | Each element of VARLIST is a list (SYMBOL VALUEFORM) which binds |
| 131 | SYMBOL to the value of VALUEFORM). An element can additionally | 131 | SYMBOL to the value of VALUEFORM. An element can additionally |
| 132 | be of the form (VALUEFORM), which is evaluated and checked for | 132 | be of the form (VALUEFORM), which is evaluated and checked for |
| 133 | nil; i.e. SYMBOL can be omitted if only the test result is of | 133 | nil; i.e. SYMBOL can be omitted if only the test result is of |
| 134 | interest." | 134 | interest." |