]> code.delx.au - gnu-emacs/blobdiff - lisp/apropos.el
describe-char: fix insert char documentation
[gnu-emacs] / lisp / apropos.el
index f1656859639797eeb7748c63482ac81749b005b9..eb145bdc5719a181079136d2276ad317db8061c1 100644 (file)
@@ -505,8 +505,9 @@ variables, not just user options."
 ;;;###autoload
 (defun apropos-variable (pattern &optional do-not-all)
   "Show variables that match PATTERN.
-When DO-NOT-ALL is non-nil, show user options only, i.e. behave
-like `apropos-user-option'."
+With the optional argument DO-NOT-ALL non-nil (or when called
+interactively with the prefix \\[universal-argument]), show user
+options only, i.e. behave like `apropos-user-option'."
   (interactive (list (apropos-read-pattern
                      (if current-prefix-arg "user option" "variable"))
                      current-prefix-arg))
@@ -677,7 +678,7 @@ the output includes key-bindings of commands."
        (`require (push (cdr x) requires))
        (`provide (push (cdr x) provides))
         (`t nil) ; Skip "was an autoload" entries.
-        ;; FIXME: Print information about each indivial method: both
+        ;; FIXME: Print information about each individual method: both
         ;; its docstring and specializers (bug#21422).
         (`cl-defmethod (push (cadr x) provides))
        (_ (push (or (cdr-safe x) x) symbols))))