bug#16578: Wish: Support for non-native endianness in od

2014-02-09 Thread Niels Möller
Pádraig Brady p...@draigbrady.com writes: Attached in the patch I intend to push in your name. Nice. I also added docs to usage() and the texinfo file, and added a test. I don't quite understand how the test works, but as far as I see, it doesn't test floats? So that's inconsistent with the

bug#16578: Wish: Support for non-native endianness in od

2014-02-09 Thread Pádraig Brady
On 02/09/2014 08:42 AM, Niels Möller wrote: Pádraig Brady p...@draigbrady.com writes: Attached in the patch I intend to push in your name. Nice. I also added docs to usage() and the texinfo file, and added a test. I don't quite understand how the test works, but as far as I see, it

bug#16700: [PATCH] - Add audio file type .m4a to LS_COLORS

2014-02-09 Thread John
Trivial patch to display .m4a files in the same cyan color as all other audio files via LS_COLORS.  This [m4a] is a very common format generated by iTunes so I would think many users would like to see this implemented.  Please cc me on any replies; I am not subscribed to the ML.---

bug#16700: [PATCH] - Add audio file type .m4a to LS_COLORS

2014-02-09 Thread Pádraig Brady
On 02/09/2014 11:51 AM, John wrote: Trivial patch to display .m4a files in the same cyan color as all other audio files via LS_COLORS. This [m4a] is a very common format generated by iTunes so I would think many users would like to see this implemented. Please cc me on any replies; I am

bug#16578: Wish: Support for non-native endianness in od

2014-02-09 Thread Pádraig Brady
On 02/10/2014 01:59 AM, Paul Eggert wrote: Pádraig Brady wrote: $ time od.new -tx8 --endian=bug od.in 4.97 elapsed If you really used --endian=bug and there was no diagnostic, then there must have been a bug. :-) Ha! I retyped incorrectly rather than copy/pasted. I can confirm the

bug#15173: [PATCH] cp: with --link always use linkat() if available

2014-02-09 Thread Pádraig Brady
On 12/12/2013 06:44 PM, Pádraig Brady wrote: On 12/09/2013 02:24 AM, Pádraig Brady wrote: Sorry if you get multiple copies of this. The test for this is failing on solaris 10 (NFS) It does seem that hardlinks to symlinks are supported: $ touch tfile $ ln -s tfile tlink $ src/ln -L tlink

bug#15173: [PATCH] cp: with --link always use linkat() if available

2014-02-09 Thread Paul Eggert
Pádraig Brady wrote: +#if ! defined HAVE_LINKAT !(LINK_FOLLOWS_SYMLINKS S_ISLNK (src_mode) - x-dereference == DEREF_NEVER)) + x-dereference == DEREF_NEVER) +#endif Could you reword that sort of thing so as not to use the #if inside an expression?

bug#15173: [PATCH] cp: with --link always use linkat() if available

2014-02-09 Thread Pádraig Brady
On 02/10/2014 02:29 AM, Paul Eggert wrote: Pádraig Brady wrote: +#if ! defined HAVE_LINKAT !(LINK_FOLLOWS_SYMLINKS S_ISLNK (src_mode) - x-dereference == DEREF_NEVER)) + x-dereference == DEREF_NEVER) +#endif Could you reword that sort of thing

bug#15173: [PATCH] cp: with --link always use linkat() if available

2014-02-09 Thread Paul Eggert
Thanks, looks good.