diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 13 | ||||
| -rw-r--r-- | src/w32proc.c | 7 |
2 files changed, 12 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c1a15e39242..936837e9970 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,8 +1,13 @@ | |||
| 1 | 2002-07-30 Juanma Barranquero <lektu@terra.es> | ||
| 2 | |||
| 3 | * w32proc.c (syms_of_ntproc): Fix docstring of | ||
| 4 | `w32-get-true-file-attributes'. | ||
| 5 | |||
| 1 | 2002-07-28 Richard M. Stallman <rms@gnu.org> | 6 | 2002-07-28 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * s/hpux8.h (HPUX8): Define this before including hpux.h. | 8 | * s/hpux8.h (HPUX8): Define this before including hpux.h. |
| 4 | (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide. | 9 | (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide. |
| 5 | 10 | ||
| 6 | * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8. | 11 | * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8. |
| 7 | 12 | ||
| 8 | * keyboard.c (make_lispy_event): | 13 | * keyboard.c (make_lispy_event): |
| @@ -111,14 +116,14 @@ | |||
| 111 | 116 | ||
| 112 | * print.c (print_error_message): New args CONTEXT and CALLER. | 117 | * print.c (print_error_message): New args CONTEXT and CALLER. |
| 113 | Calls changed. | 118 | Calls changed. |
| 114 | 119 | ||
| 115 | * lisp.h (print_error_message): Declare new args. | 120 | * lisp.h (print_error_message): Declare new args. |
| 116 | 121 | ||
| 117 | * keyboard.c (cmd_error_internal): Pass Vsignaling_function | 122 | * keyboard.c (cmd_error_internal): Pass Vsignaling_function |
| 118 | and CONTEXT to print_error_message, don't print them here. | 123 | and CONTEXT to print_error_message, don't print them here. |
| 119 | For a Quit, don't use Vsignaling_function. | 124 | For a Quit, don't use Vsignaling_function. |
| 120 | Call message_log_maybe_newline. | 125 | Call message_log_maybe_newline. |
| 121 | 126 | ||
| 122 | * Makefile.in (xsmfns.o): Don't depend on lisp.h. | 127 | * Makefile.in (xsmfns.o): Don't depend on lisp.h. |
| 123 | 128 | ||
| 124 | 2002-07-20 Kim F. Storm <storm@cua.dk> | 129 | 2002-07-20 Kim F. Storm <storm@cua.dk> |
| @@ -4813,7 +4818,7 @@ | |||
| 4813 | * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]: | 4818 | * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]: |
| 4814 | Fix clearing in the case of scroll bars on the right. | 4819 | Fix clearing in the case of scroll bars on the right. |
| 4815 | 4820 | ||
| 4816 | 2001-10-26 Juanma Barranquero <lektu@terra.es> | 4821 | 2001-10-26 Juanma Barranquero <lektu@terra.es> |
| 4817 | 4822 | ||
| 4818 | * w32gui.h (XImage): Add a dummy typedef. | 4823 | * w32gui.h (XImage): Add a dummy typedef. |
| 4819 | 4824 | ||
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. */); | |||
| 2232 | #endif | 2232 | #endif |
| 2233 | 2233 | ||
| 2234 | DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes, | 2234 | DEFVAR_LISP ("w32-get-true-file-attributes", &Vw32_get_true_file_attributes, |
| 2235 | doc: /* Non-nil means determine accurate link count in file-attributes. | 2235 | doc: /* Non-nil means determine accurate link count in `file-attributes'. |
| 2236 | This option slows down file-attributes noticeably, so is disabled by | 2236 | Note that this option is only useful for files on NTFS volumes, where hard links |
| 2237 | default. Note that it is only useful for files on NTFS volumes, | 2237 | are supported. Moreover, it slows down `file-attributes' noticeably. */) |
| 2238 | where hard links are supported. */); | ||
| 2239 | Vw32_get_true_file_attributes = Qt; | 2238 | Vw32_get_true_file_attributes = Qt; |
| 2240 | } | 2239 | } |
| 2241 | /* end of ntproc.c */ | 2240 | /* end of ntproc.c */ |