mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-01 15:20:36 -08:00
APROPOS is now insensitive to case differences.
This commit is contained in:
parent
f21de12a27
commit
fd2e23eefa
1 changed files with 2 additions and 2 deletions
|
|
@ -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 "~&-----------------------------------------------------------------------------")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue