diff options
| author | Kaushal Modi | 2016-02-26 20:32:12 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-02-26 20:32:12 +0200 |
| commit | ec10ef95cf2a5309ec7cb74f1383860a13daa546 (patch) | |
| tree | cc3835dea6df26e4095d0442b0eda42bb5284656 | |
| parent | d2dd614716e34edb5891e58c029741cd6b32217d (diff) | |
| download | emacs-ec10ef95cf2a5309ec7cb74f1383860a13daa546.tar.gz emacs-ec10ef95cf2a5309ec7cb74f1383860a13daa546.zip | |
* lisp/apropos.el (apropos-variable): Doc fix. (Bug#22813).
| -rw-r--r-- | lisp/apropos.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 3c1a4136fbf..eb145bdc571 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el | |||
| @@ -505,8 +505,9 @@ variables, not just user options." | |||
| 505 | ;;;###autoload | 505 | ;;;###autoload |
| 506 | (defun apropos-variable (pattern &optional do-not-all) | 506 | (defun apropos-variable (pattern &optional do-not-all) |
| 507 | "Show variables that match PATTERN. | 507 | "Show variables that match PATTERN. |
| 508 | When DO-NOT-ALL is non-nil, show user options only, i.e. behave | 508 | With the optional argument DO-NOT-ALL non-nil (or when called |
| 509 | like `apropos-user-option'." | 509 | interactively with the prefix \\[universal-argument]), show user |
| 510 | options only, i.e. behave like `apropos-user-option'." | ||
| 510 | (interactive (list (apropos-read-pattern | 511 | (interactive (list (apropos-read-pattern |
| 511 | (if current-prefix-arg "user option" "variable")) | 512 | (if current-prefix-arg "user option" "variable")) |
| 512 | current-prefix-arg)) | 513 | current-prefix-arg)) |