mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Do perl documentation lookups case-insensitively, like man
* lisp/progmodes/cperl-mode.el (cperl-perldoc): add -i to the perldoc command.
This commit is contained in:
parent
271791b55b
commit
b175a9fb7e
1 changed files with 1 additions and 1 deletions
|
|
@ -8323,7 +8323,7 @@ the appropriate statement modifier."
|
|||
'cperl-short-docs
|
||||
'variable-documentation))))
|
||||
(Man-switches "")
|
||||
(manual-program (if is-func "perldoc -f" "perldoc")))
|
||||
(manual-program (concat "perldoc -i" (if is-func " -f"))))
|
||||
(Man-getpage-in-background word)))
|
||||
|
||||
;;;###autoload
|
||||
|
|
|
|||
Loading…
Reference in a new issue