Issue766

classification
Title dired-re-permissions doesn't match alternate access method character
Type defect Module dired
Severity some work obstructed Platform N/A
Keywords Nosy List anonymous, mike.kupfer
explanation
process
These controls should only be changed by committers and tracker administrators.
Status new   Reason
Superseder  
Priority normal   Assigned To

Created on 2011-05-24.20:34:21 by anonymous, last changed 2011-05-27.01:11:43 by mike.kupfer.

Messages
msg2297 [hidden] ([hidden]) Date: 2011-05-24.20:34:21
Recently, some versions of /bin/ls have added a character to the permissions 
field to indicate alternate access methods.  See 
https://bugzilla.redhat.com/show_bug.cgi?id=504422#c10 .  A regexp in dired.el 
was changed to match the new pattern.

However, there is another regexp, dired-re-pre-permissions, in dired-xemacs.el 
which was not updated.  This leads to corrupted dired buffers, and can also 
lead to the buffer you're editing getting altered.. which is incredibly 
annoying.

Fix:

currently dired-re-permissions is

  "[-r][-w][-Ssx][-r][-w][-Ssx][-r][-w][-xstT]"

I believe it should be

  "[-r][-w][-Ssx][-r][-w][-Ssx][-r][-w][-xstT][ \.+]?"
History
Date User Action Args
2011-05-27 01:11:43mike.kupfersetnosy: + mike.kupfer
2011-05-24 20:34:21anonymouscreate