diff options
author | Glenn Morris <rgm@gnu.org> | 2012-12-26 23:55:14 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-12-26 23:55:14 -0800 |
commit | 1ab0c851fc0f1d2e1c54196bfaeb67a3bd916741 (patch) | |
tree | 75904e8eb89d99dd93de5b39ff15991b145967da /src/cygw32.c | |
parent | db590ef6e30d0b962e226ce5c5a003cc52a17953 (diff) |
Document cygwin-convert-file-name-{to|from}-windows
* doc/lispref/files.texi (File Names): Mention Cygwin conversion functions.
* src/cygw32.c (Fcygwin_convert_file_name_to_windows)
(Fcygwin_convert_file_name_from_windows): Doc fixes.
* etc/NEWS: Related markup.
Diffstat (limited to 'src/cygw32.c')
-rw-r--r-- | src/cygw32.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/cygw32.c b/src/cygw32.c index d9777d5e22..5873a05dcf 100644 --- a/src/cygw32.c +++ b/src/cygw32.c @@ -110,23 +110,25 @@ DEFUN ("cygwin-convert-file-name-to-windows", Fcygwin_convert_file_name_to_windows, Scygwin_convert_file_name_to_windows, 1, 2, 0, - doc: /* Convert PATH to a Windows path. If ABSOLUTE-P is -non-nil, return an absolute path.*/) - (Lisp_Object path, Lisp_Object absolute_p) + doc: /* Convert a Cygwin file name FILE to a Windows-style file name. +If ABSOLUTE-P is non-nil, return an absolute file name. +For the reverse operation, see `cygwin-convert-file-name-from-windows'. */) + (Lisp_Object file, Lisp_Object absolute_p) { return from_unicode ( - conv_filename_to_w32_unicode (path, EQ (absolute_p, Qnil) ? 0 : 1)); + conv_filename_to_w32_unicode (file, EQ (absolute_p, Qnil) ? 0 : 1)); } DEFUN ("cygwin-convert-file-name-from-windows", Fcygwin_convert_file_name_from_windows, Scygwin_convert_file_name_from_windows, 1, 2, 0, - doc: /* Convert a Windows path to a Cygwin path. If ABSOLUTE-P -is non-nil, return an absolute path.*/) - (Lisp_Object path, Lisp_Object absolute_p) + doc: /* Convert a Windows-style file name FILE to a Cygwin file name. +If ABSOLUTE-P is non-nil, return an absolute file name. +For the reverse operation, see `cygwin-convert-file-name-to-windows'. */) + (Lisp_Object file, Lisp_Object absolute_p) { - return conv_filename_from_w32_unicode (to_unicode (path, &path), + return conv_filename_from_w32_unicode (to_unicode (file, &file), EQ (absolute_p, Qnil) ? 0 : 1); } |