]> git.eshelyaron.com Git - emacs.git/commitdiff
chartab.c (sub_char_table_set_range): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Thu, 7 Jul 2011 04:16:52 +0000 (13:16 +0900)
committerKenichi Handa <handa@m17n.org>
Thu, 7 Jul 2011 04:16:52 +0000 (13:16 +0900)
lisp/dired.el
lisp/mail/rmail.el
src/chartab.c

index 62bab489fbcfa01e0ab832204ac4913aaa6c059d..8369d4897be1192173776096715c7d2ec46e6cb4 100644 (file)
@@ -3643,7 +3643,7 @@ Ask means pop up a menu for the user to select one of copy, move or link."
 ;;;;;;  dired-run-shell-command dired-do-shell-command dired-do-async-shell-command
 ;;;;;;  dired-clean-directory dired-do-print dired-do-touch dired-do-chown
 ;;;;;;  dired-do-chgrp dired-do-chmod dired-compare-directories dired-backup-diff
-;;;;;;  dired-diff) "dired-aux" "dired-aux.el" "d7b197829c8d456cc5bc6c5fdab7c4b0")
+;;;;;;  dired-diff) "dired-aux" "dired-aux.el" "198ca311b49f0b6354f915502bba4ab6")
 ;;; Generated autoloads from dired-aux.el
 
 (autoload 'dired-diff "dired-aux" "\
@@ -4104,7 +4104,7 @@ instead.
 ;;;***
 \f
 ;;;### (autoloads (dired-do-relsymlink dired-jump-other-window dired-jump)
-;;;;;;  "dired-x" "dired-x.el" "cdeb2935dc1d33819b12981ba5272073")
+;;;;;;  "dired-x" "dired-x.el" "90459fb5998296fc67986945701b2bfc")
 ;;; Generated autoloads from dired-x.el
 
 (autoload 'dired-jump "dired-x" "\
index 02f78635e2619d4503ba91ca739b2a91c6e6cbda..900eedfef848fcc8d212a315cbc8876f91d1eabb 100644 (file)
@@ -4379,7 +4379,7 @@ With prefix argument N moves forward N messages with these labels.
 
 ;;;***
 \f
-;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "30ab95e291380f184dff5fa6cde75520")
+;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "a7d3e7205efa4e20ca9038c9b260ce83")
 ;;; Generated autoloads from rmailmm.el
 
 (autoload 'rmail-mime "rmailmm" "\
index 4a9a76bdd606cd94dba656d2682647f05ee53fec..e900a3ae71fa64fe631d34b318294cf122880c8e 100644 (file)
@@ -456,7 +456,7 @@ sub_char_table_set_range (Lisp_Object table, int from, int to, Lisp_Object val,
     from = min_char;
   i = CHARTAB_IDX (from, depth, min_char);
   c = min_char + chars_in_block * i;
-  for (; i <= lim; i++, c += chars_in_block)
+  for (; i < lim; i++, c += chars_in_block)
     {
       if (c > to)
        break;