On 15 Jul 2011, OSiUX wrote: > When change the name of days and months, emacs crash!!:: > > (setq calendar-week-start-day 7 > european-calendar-style t > calendar-day-name-array > ["Dom" "Lun" "Mar" "Mie" "Jue" "Vie" "Sab"] > calendar-month-name-array > ["Ene" "Feb" "Mar" "Abr" "May" "Jun" "Jul" > "Ago" "Sep" "Oct" "Nov" "Dic"] ) The names are no problem, but `calendar-week-start-day' is. The day array is 0-indexed, so you want 6 not 7. Michael