diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-05-28 23:57:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-05-28 23:57:33 +0000 |
| commit | 4fdd647eb1de18c2483a061ff8ebad49b7e196db (patch) | |
| tree | 1a7526e437a4575e2c4c3023ec38ff4db5de9644 | |
| parent | 19eaeb86095f937821aa4051781477672adbc5f1 (diff) | |
| download | emacs-4fdd647eb1de18c2483a061ff8ebad49b7e196db.tar.gz | |
(Info-insert-dir): Ignore duplicate directories.
| -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 e2079644102..ae97bf27048 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -313,7 +313,9 @@ to read a file name from the minibuffer." (find-file-noselect temp))))) (setq dirs-done (cons (file-truename (expand-file-name (car dirs))) - dirs-done)) + (cons (directory-file-name + (file-truename (expand-file-name (car dirs)))) + dirs-done))) (if buffer (setq buffers (cons buffer buffers))))) (setq dirs (cdr dirs))) |
