diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/Makefile.in | 2 | ||||
| -rw-r--r-- | src/w32.c | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 21aec9cb3c5..550d2774ad4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-08-26 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-08-26 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Spelling fixes. | ||
| 4 | * Makefile.in (.PHONY): versioclean -> versionclean. | ||
| 5 | |||
| 3 | Remove unused external symbols. | 6 | Remove unused external symbols. |
| 4 | * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector): | 7 | * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector): |
| 5 | * window.c (Qwindow_valid_p, decode_valid_window): | 8 | * window.c (Qwindow_valid_p, decode_valid_window): |
diff --git a/src/Makefile.in b/src/Makefile.in index 85645222052..60df1f1c677 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -502,7 +502,7 @@ doc.o: buildobj.h | |||
| 502 | @ns_frag@ | 502 | @ns_frag@ |
| 503 | 503 | ||
| 504 | .PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean | 504 | .PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean |
| 505 | .PHONY: versioclean extraclean frc | 505 | .PHONY: versionclean extraclean frc |
| 506 | 506 | ||
| 507 | mostlyclean: | 507 | mostlyclean: |
| 508 | rm -f temacs$(EXEEXT) core *.core \#* *.o libXMenu11.a liblw.a | 508 | rm -f temacs$(EXEEXT) core *.core \#* *.o libXMenu11.a liblw.a |
| @@ -4098,7 +4098,7 @@ symlink (char const *filename, char const *linkname) | |||
| 4098 | dir_access = sys_access (filename, D_OK); | 4098 | dir_access = sys_access (filename, D_OK); |
| 4099 | 4099 | ||
| 4100 | /* Since Windows distinguishes between symlinks to directories and | 4100 | /* Since Windows distinguishes between symlinks to directories and |
| 4101 | to files, we provide a kludgey feature: if FILENAME doesn't | 4101 | to files, we provide a kludgy feature: if FILENAME doesn't |
| 4102 | exist, but ends in a slash, we create a symlink to directory. If | 4102 | exist, but ends in a slash, we create a symlink to directory. If |
| 4103 | FILENAME exists and is a directory, we always create a symlink to | 4103 | FILENAME exists and is a directory, we always create a symlink to |
| 4104 | directory. */ | 4104 | directory. */ |
| @@ -4165,7 +4165,7 @@ symlink (char const *filename, char const *linkname) | |||
| 4165 | whether the underlying volume actually supports symlinks, by | 4165 | whether the underlying volume actually supports symlinks, by |
| 4166 | testing the FILE_SUPPORTS_REPARSE_POINTS bit in volume's flags, and | 4166 | testing the FILE_SUPPORTS_REPARSE_POINTS bit in volume's flags, and |
| 4167 | avoid the call to this function if it doesn't. That's because the | 4167 | avoid the call to this function if it doesn't. That's because the |
| 4168 | call to GetFileAttributes takes a non-negligible time, expecially | 4168 | call to GetFileAttributes takes a non-negligible time, especially |
| 4169 | on non-local or removable filesystems. See stat_worker for an | 4169 | on non-local or removable filesystems. See stat_worker for an |
| 4170 | example of how to do that. */ | 4170 | example of how to do that. */ |
| 4171 | static int | 4171 | static int |
diff --git a/src/xdisp.c b/src/xdisp.c index f5edb4b16f8..18e537e9385 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -2420,7 +2420,7 @@ remember_mouse_glyph (struct frame *f, int gx, int gy, NativeRectangle *rect) | |||
| 2420 | static Lisp_Object | 2420 | static Lisp_Object |
| 2421 | safe_eval_handler (Lisp_Object arg, ptrdiff_t nargs, Lisp_Object *args) | 2421 | safe_eval_handler (Lisp_Object arg, ptrdiff_t nargs, Lisp_Object *args) |
| 2422 | { | 2422 | { |
| 2423 | add_to_log ("Error during redisplay: %S signalled %S", | 2423 | add_to_log ("Error during redisplay: %S signaled %S", |
| 2424 | Flist (nargs, args), arg); | 2424 | Flist (nargs, args), arg); |
| 2425 | return Qnil; | 2425 | return Qnil; |
| 2426 | } | 2426 | } |