diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-03-08 23:31:55 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-03-08 23:31:55 +0000 |
commit | 0cb8089ee191b82543e0c407e0e5b5cfb7e89e7b (patch) | |
tree | b729727ef112993d5cb0df470f87e0dccfc89fa5 | |
parent | ed19d12f319ecc9add1b5b4a7438c67fbd88ee3f (diff) | |
download | emacs-0cb8089ee191b82543e0c407e0e5b5cfb7e89e7b.tar.gz |
(super-apropos-check-doc-file): Use doc-directory instead of data-directory.
-rw-r--r-- | lisp/apropos.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index d418be52273..b4d66e27e6e 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -127,7 +127,7 @@ Returns list of symbols and documentation found." ;; Returns an alist of form ((symbol fn-doc var-doc) ...). (defun super-apropos-check-doc-file (regexp) - (let* ((doc-file (concat data-directory internal-doc-file-name)) + (let* ((doc-file (concat doc-directory internal-doc-file-name)) (doc-buffer (find-file-noselect doc-file t)) ;; (doc-buffer (or (get-file-buffer doc-file) ;; (find-file-noselect doc-file))) |