]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_ntproc): Fix docstring of `w32-get-true-file-attributes'.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 30 Jul 2002 16:19:30 +0000 (16:19 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 30 Jul 2002 16:19:30 +0000 (16:19 +0000)
src/ChangeLog
src/w32proc.c

index c1a15e3924215c1da60192c87ece1b9c6bd93ea5..936837e99703a53fe9f0a695ea1e56e5bb7332a7 100644 (file)
@@ -1,8 +1,13 @@
+2002-07-30  Juanma Barranquero  <lektu@terra.es>
+
+       * w32proc.c (syms_of_ntproc): Fix docstring of
+       `w32-get-true-file-attributes'.
+
 2002-07-28  Richard M. Stallman  <rms@gnu.org>
 
        * 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):
 
        * 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  <storm@cua.dk>
        * 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 <lektu@terra.es>
+2001-10-26  Juanma Barranquero  <lektu@terra.es>
 
        * w32gui.h (XImage): Add a dummy typedef.
 
index a44a326caf92ce151e5bf9e1fc4697b552217cd5..f7ddf4d69a87c4f24015143b3f2d6b1cda0d4887 100644 (file)
@@ -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 */