# HG changeset patch # User Juanma Barranquero # Date 1253754267 0 # Node ID ef22b4450c4354d097b5b1041ce6d81ad4db0e32 # Parent e14dfafc8256e6ba770fea6270a4824705922e3f * dired.c (Fdirectory_files): Fix typo in docstring. diff -r e14dfafc8256 -r ef22b4450c43 src/ChangeLog --- a/src/ChangeLog Wed Sep 23 23:58:40 2009 +0000 +++ b/src/ChangeLog Thu Sep 24 01:04:27 2009 +0000 @@ -1,3 +1,7 @@ +2009-09-24 Juanma Barranquero + + * dired.c (Fdirectory_files): Fix typo in docstring. + 2009-09-23 Adrian Robert * nsterm.m (EV_TIMESTAMP, x_set_window_size) @@ -30,10 +34,10 @@ * eval.c (find_handler_clause): Make stack-trace-on-error work in batch mode (bug#4228). -2009-09-18 Rob Christie (tiny change) +2009-09-18 Rob Christie (tiny change) * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more - carefully. (Bug #4339) + carefully. (Bug #4339) 2009-09-18 Chong Yidong @@ -53,7 +57,7 @@ (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and don't update the NSWindow itself. (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve - state detection and store user rect ourselves. (Bug #3581) + state detection and store user rect ourselves. (Bug #3581) * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use ns_use_qd_smoothing. @@ -61,7 +65,7 @@ * nsfns.m (x_get_string_resource): Ape just-previous changes to other platform versions. Drop support for emacs-20-style face specs. (x-close-connection): Drop PSFlush() under OS X. - (x-focus-frame): Activate the app first. (Bug #4180) + (x-focus-frame): Activate the app first. (Bug #4180) 2009-09-17 Juanma Barranquero diff -r e14dfafc8256 -r ef22b4450c43 src/dired.c --- a/src/dired.c Wed Sep 23 23:58:40 2009 +0000 +++ b/src/dired.c Thu Sep 24 01:04:27 2009 +0000 @@ -368,8 +368,8 @@ that are relative to the specified directory. If MATCH is non-nil, mention only file names that match the regexp MATCH. If NOSORT is non-nil, the list is not sorted--its order is unpredictable. - Otherwise, the list returned is sorted with `stringp-lessp'. - NOSORT is useful if you plan to sort the result yourself. */) + Otherwise, the list returned is sorted with `string-lessp'. + NOSORT is useful if you plan to sort the result yourself. */) (directory, full, match, nosort) Lisp_Object directory, full, match, nosort; {