aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-02-24 22:30:50 -0800
committerPaul Eggert2011-02-24 22:30:50 -0800
commitb18947669cd182ec8487b317460f6df5878d0f11 (patch)
treefe2eb9e695af2743193e80b3d9f930d4f17d7279 /src
parent6a88f031c8a895c87143da01201502e966aa7641 (diff)
downloademacs-b18947669cd182ec8487b317460f6df5878d0f11.tar.gz
emacs-b18947669cd182ec8487b317460f6df5878d0f11.zip
* dired.c (Ffile_attributes): Increase size of modes from 10 to 12
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/dired.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ea1510b33db..29a213a1e09 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12011-02-25 Paul Eggert <eggert@cs.ucla.edu>
2
3 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
4 as per recent filemodestring API change. Reported by Jonas Ă–ster in
5 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
6
12011-02-23 Ben Key <bkey76@gmail.com> (tiny change) 72011-02-23 Ben Key <bkey76@gmail.com> (tiny change)
2 8
3 * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument 9 * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument
diff --git a/src/dired.c b/src/dired.c
index eea4c7cfe40..ce2a3d105e5 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -937,7 +937,7 @@ so last access time will always be midnight of that day. */)
937 Lisp_Object dirname; 937 Lisp_Object dirname;
938 struct stat sdir; 938 struct stat sdir;
939#endif /* BSD4_2 */ 939#endif /* BSD4_2 */
940 char modes[10]; 940 char modes[12];
941 Lisp_Object handler; 941 Lisp_Object handler;
942 struct gcpro gcpro1; 942 struct gcpro gcpro1;
943 char *uname = NULL, *gname = NULL; 943 char *uname = NULL, *gname = NULL;