diff options
| author | Eshel Yaron | 2024-06-15 18:48:34 +0200 |
|---|---|---|
| committer | Eshel Yaron | 2024-06-15 18:48:34 +0200 |
| commit | 83182b2c4a4e039884ee54ddce6e657f4fb888eb (patch) | |
| tree | df04f40be23adbec30c3c26fca1d6a18203323b5 | |
| parent | 2d67ea86320c6adbb95a1a94a47037cb3d62dec1 (diff) | |
| download | emacs-83182b2c4a4e039884ee54ddce6e657f4fb888eb.tar.gz emacs-83182b2c4a4e039884ee54ddce6e657f4fb888eb.zip | |
Honor 'Info-additional-directory-list' in 'C-h R' completion
* lisp/info.el (info--manual-names): Take into account
'Info-additional-directory-list', in addition to
'Info-directory-list'. (Bug#71368)
| -rw-r--r-- | lisp/info.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index c2c393cb243..d151c6365b8 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -5675,7 +5675,9 @@ completion alternatives to currently visited manuals." | |||
| 5675 | (all-completions | 5675 | (all-completions |
| 5676 | "" | 5676 | "" |
| 5677 | (apply-partially #'Info-read-node-name-2 | 5677 | (apply-partially #'Info-read-node-name-2 |
| 5678 | Info-directory-list | 5678 | (append |
| 5679 | Info-directory-list | ||
| 5680 | Info-additional-directory-list) | ||
| 5679 | (mapcar #'car Info-suffix-list)))))))) | 5681 | (mapcar #'car Info-suffix-list)))))))) |
| 5680 | 5682 | ||
| 5681 | (provide 'info) | 5683 | (provide 'info) |