From: Juanma Barranquero Date: Tue, 30 Jul 2002 16:19:30 +0000 (+0000) Subject: (syms_of_ntproc): Fix docstring of `w32-get-true-file-attributes'. X-Git-Tag: ttn-vms-21-2-B4~13810 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=45de4a6fcddbf77b230bb5a910b66dbb97e97445;p=emacs.git (syms_of_ntproc): Fix docstring of `w32-get-true-file-attributes'. --- diff --git a/src/ChangeLog b/src/ChangeLog index c1a15e39242..936837e9970 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,8 +1,13 @@ +2002-07-30 Juanma Barranquero + + * w32proc.c (syms_of_ntproc): Fix docstring of + `w32-get-true-file-attributes'. + 2002-07-28 Richard M. Stallman * s/hpux8.h (HPUX8): Define this before including hpux.h. (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide. - + * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8. * keyboard.c (make_lispy_event): @@ -111,14 +116,14 @@ * print.c (print_error_message): New args CONTEXT and CALLER. Calls changed. - + * lisp.h (print_error_message): Declare new args. * keyboard.c (cmd_error_internal): Pass Vsignaling_function and CONTEXT to print_error_message, don't print them here. For a Quit, don't use Vsignaling_function. Call message_log_maybe_newline. - + * Makefile.in (xsmfns.o): Don't depend on lisp.h. 2002-07-20 Kim F. Storm @@ -4813,7 +4818,7 @@ * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]: Fix clearing in the case of scroll bars on the right. -2001-10-26 Juanma Barranquero +2001-10-26 Juanma Barranquero * w32gui.h (XImage): Add a dummy typedef. diff --git a/src/w32proc.c b/src/w32proc.c index a44a326caf9..f7ddf4d69a8 100644 --- a/src/w32proc.c +++ b/src/w32proc.c @@ -2232,10 +2232,9 @@ the truename of a file can be slow. */); #endif DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes, - doc: /* Non-nil means determine accurate link count in file-attributes. -This option slows down file-attributes noticeably, so is disabled by -default. Note that it is only useful for files on NTFS volumes, -where hard links are supported. */); + doc: /* Non-nil means determine accurate link count in `file-attributes'. +Note that this option is only useful for files on NTFS volumes, where hard links +are supported. Moreover, it slows down `file-attributes' noticeably. */) Vw32_get_true_file_attributes = Qt; } /* end of ntproc.c */