diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 10 |
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 09c70226d5d..f77e68aadc4 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-12-27 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * files.texi (File Names): Mention Cygwin conversion functions. | ||
| 4 | |||
| 1 | 2012-12-22 Martin Rudalics <rudalics@gmx.at> | 5 | 2012-12-22 Martin Rudalics <rudalics@gmx.at> |
| 2 | 6 | ||
| 3 | * windows.texi (Selecting Windows): Reword description of | 7 | * windows.texi (Selecting Windows): Reword description of |
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 863acbe3949..fc01b1cd187 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -1699,12 +1699,20 @@ how to manipulate file names. | |||
| 1699 | can operate on file names that do not refer to an existing file or | 1699 | can operate on file names that do not refer to an existing file or |
| 1700 | directory. | 1700 | directory. |
| 1701 | 1701 | ||
| 1702 | @findex cygwin-convert-file-name-from-windows | ||
| 1703 | @findex cygwin-convert-file-name-to-windows | ||
| 1704 | @cindex MS-Windows file-name syntax | ||
| 1705 | @cindex converting file names from/to MS-Windows syntax | ||
| 1702 | On MS-DOS and MS-Windows, these functions (like the function that | 1706 | On MS-DOS and MS-Windows, these functions (like the function that |
| 1703 | actually operate on files) accept MS-DOS or MS-Windows file-name syntax, | 1707 | actually operate on files) accept MS-DOS or MS-Windows file-name syntax, |
| 1704 | where backslashes separate the components, as well as Unix syntax; but | 1708 | where backslashes separate the components, as well as Unix syntax; but |
| 1705 | they always return Unix syntax. This enables Lisp programs to specify | 1709 | they always return Unix syntax. This enables Lisp programs to specify |
| 1706 | file names in Unix syntax and work properly on all systems without | 1710 | file names in Unix syntax and work properly on all systems without |
| 1707 | change. | 1711 | change.@footnote{In MS-Windows versions of Emacs compiled for the Cygwin |
| 1712 | environment, you can use the functions | ||
| 1713 | @code{cygwin-convert-file-name-to-windows} and | ||
| 1714 | @code{cygwin-convert-file-name-from-windows} to convert between the | ||
| 1715 | two file-name syntaxes.} | ||
| 1708 | 1716 | ||
| 1709 | @menu | 1717 | @menu |
| 1710 | * File Name Components:: The directory part of a file name, and the rest. | 1718 | * File Name Components:: The directory part of a file name, and the rest. |