diff options
| author | Juanma Barranquero <lekktu@gmail.com> | 2004-05-13 19:51:57 +0000 |
|---|---|---|
| committer | Juanma Barranquero <lekktu@gmail.com> | 2004-05-13 19:51:57 +0000 |
| commit | b9963e32a2b7910b849af87116a7c8fc3ce20070 (patch) | |
| tree | d5cfa436185727f6d103273d951ba2aaaa9287db /lisp | |
| parent | a267ab4da0c0cdc2e926abd29c00b6c2ba6399a1 (diff) | |
| download | emacs-b9963e32a2b7910b849af87116a7c8fc3ce20070.tar.gz | |
(file-truename): Don't mention COUNTER and PREV-DIRS arguments in the
docstring, they're used only in recursive calls.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/files.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/files.el b/lisp/files.el index c8587b5c781..91da8a4c2c7 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -663,13 +663,12 @@ The truename of a file name is found by chasing symbolic links both at the level of the file and at the level of the directories containing it, until no links are left at any level. -The arguments COUNTER and PREV-DIRS are used only in recursive calls. -Do not specify them in other calls." - ;; COUNTER can be a cons cell whose car is the count of how many more links - ;; to chase before getting an error. +\(fn FILENAME)" + ;; COUNTER and PREV-DIRS are only used in recursive calls. + ;; COUNTER can be a cons cell whose car is the count of how many + ;; more links to chase before getting an error. ;; PREV-DIRS can be a cons cell whose car is an alist ;; of truenames we've just recently computed. - (cond ((or (string= filename "") (string= filename "~")) (setq filename (expand-file-name filename)) (if (string= filename "") |
