]> git.eshelyaron.com Git - emacs.git/commitdiff
* dired.c (Ffile_attributes): Increase size of modes from 10 to 12
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 25 Feb 2011 06:30:50 +0000 (22:30 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 25 Feb 2011 06:30:50 +0000 (22:30 -0800)
src/ChangeLog
src/dired.c

index ea1510b33dbe568af80df91978b48923477b5ffb..29a213a1e0996fa9c0a668d12a6aa9a3cd1bc687 100644 (file)
@@ -1,3 +1,9 @@
+2011-02-25  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
+       as per recent filemodestring API change.  Reported by Jonas Ă–ster in
+       <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
+
 2011-02-23  Ben Key  <bkey76@gmail.com>  (tiny change)
 
        * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument
index eea4c7cfe407916d3b83caa45b6afc92b4721b4c..ce2a3d105e5ddb46d08897c7fee35967c693c73b 100644 (file)
@@ -937,7 +937,7 @@ so last access time will always be midnight of that day.  */)
   Lisp_Object dirname;
   struct stat sdir;
 #endif /* BSD4_2 */
-  char modes[10];
+  char modes[12];
   Lisp_Object handler;
   struct gcpro gcpro1;
   char *uname = NULL, *gname = NULL;