APROPOS is now insensitive to case differences.

This commit is contained in:
jgarcia 2006-06-17 16:06:18 +00:00
parent f21de12a27
commit fd2e23eefa

View file

@ -544,10 +544,10 @@ inspect commands, or type '?' to the inspector."
(setq string (string string))
(if package
(do-symbols (symbol package)
(when (search string (string symbol))
(when (search string (string symbol) :test #'char-equal)
(setq f (or (print-doc symbol t) f))))
(do-all-symbols (symbol)
(when (search string (string symbol))
(when (search string (string symbol) :test #'char-equal)
(setq f (or (print-doc symbol t) f)))))
(if f
(format t "~&-----------------------------------------------------------------------------")