mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-11 00:30:17 -08:00
Rename directory-append to file-name-concat
* src/fileio.c (Ffile_name_concat): * lisp/files.el (move-file-to-trash): * lisp/emacs-lisp/shortdoc.el (file-name): * doc/lispref/files.texi (Directory Names): Rename `directory-append' to `file-name-concat'.
This commit is contained in:
parent
aa9cba6587
commit
f04f8126f0
5 changed files with 31 additions and 31 deletions
|
|
@ -273,11 +273,11 @@ There can be any number of :example/:result elements."
|
|||
:eval (file-relative-name "/tmp/foo" "/tmp"))
|
||||
(make-temp-name
|
||||
:eval (make-temp-name "/tmp/foo-"))
|
||||
(directory-append
|
||||
:eval (directory-append "/tmp/" "foo")
|
||||
:eval (directory-append "/tmp" "foo")
|
||||
:eval (directory-append "/tmp" "foo" "bar/" "zot")
|
||||
:eval (directory-append "/tmp" "~"))
|
||||
(file-name-concat
|
||||
:eval (file-name-concat "/tmp/" "foo")
|
||||
:eval (file-name-concat "/tmp" "foo")
|
||||
:eval (file-name-concat "/tmp" "foo" "bar/" "zot")
|
||||
:eval (file-name-concat "/tmp" "~"))
|
||||
(expand-file-name
|
||||
:eval (expand-file-name "foo" "/tmp/")
|
||||
:eval (expand-file-name "foo" "/tmp///")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue