diff options
| author | Kenichi Handa | 2011-07-07 13:16:52 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2011-07-07 13:16:52 +0900 |
| commit | 023e7b416bc76d4c98a421ee9455df039967e484 (patch) | |
| tree | b333009070df9ebb7a830ea033334ebe19e625e6 | |
| parent | d2a0a50628933d3cdb09818eee2e17f55e22531f (diff) | |
| download | emacs-023e7b416bc76d4c98a421ee9455df039967e484.tar.gz emacs-023e7b416bc76d4c98a421ee9455df039967e484.zip | |
chartab.c (sub_char_table_set_range): Fix previous change.
| -rw-r--r-- | lisp/dired.el | 4 | ||||
| -rw-r--r-- | lisp/mail/rmail.el | 2 | ||||
| -rw-r--r-- | src/chartab.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 62bab489fbc..8369d4897be 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -3643,7 +3643,7 @@ Ask means pop up a menu for the user to select one of copy, move or link." | |||
| 3643 | ;;;;;; dired-run-shell-command dired-do-shell-command dired-do-async-shell-command | 3643 | ;;;;;; dired-run-shell-command dired-do-shell-command dired-do-async-shell-command |
| 3644 | ;;;;;; dired-clean-directory dired-do-print dired-do-touch dired-do-chown | 3644 | ;;;;;; dired-clean-directory dired-do-print dired-do-touch dired-do-chown |
| 3645 | ;;;;;; dired-do-chgrp dired-do-chmod dired-compare-directories dired-backup-diff | 3645 | ;;;;;; dired-do-chgrp dired-do-chmod dired-compare-directories dired-backup-diff |
| 3646 | ;;;;;; dired-diff) "dired-aux" "dired-aux.el" "d7b197829c8d456cc5bc6c5fdab7c4b0") | 3646 | ;;;;;; dired-diff) "dired-aux" "dired-aux.el" "198ca311b49f0b6354f915502bba4ab6") |
| 3647 | ;;; Generated autoloads from dired-aux.el | 3647 | ;;; Generated autoloads from dired-aux.el |
| 3648 | 3648 | ||
| 3649 | (autoload 'dired-diff "dired-aux" "\ | 3649 | (autoload 'dired-diff "dired-aux" "\ |
| @@ -4104,7 +4104,7 @@ instead. | |||
| 4104 | ;;;*** | 4104 | ;;;*** |
| 4105 | 4105 | ||
| 4106 | ;;;### (autoloads (dired-do-relsymlink dired-jump-other-window dired-jump) | 4106 | ;;;### (autoloads (dired-do-relsymlink dired-jump-other-window dired-jump) |
| 4107 | ;;;;;; "dired-x" "dired-x.el" "cdeb2935dc1d33819b12981ba5272073") | 4107 | ;;;;;; "dired-x" "dired-x.el" "90459fb5998296fc67986945701b2bfc") |
| 4108 | ;;; Generated autoloads from dired-x.el | 4108 | ;;; Generated autoloads from dired-x.el |
| 4109 | 4109 | ||
| 4110 | (autoload 'dired-jump "dired-x" "\ | 4110 | (autoload 'dired-jump "dired-x" "\ |
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 02f78635e26..900eedfef84 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -4379,7 +4379,7 @@ With prefix argument N moves forward N messages with these labels. | |||
| 4379 | 4379 | ||
| 4380 | ;;;*** | 4380 | ;;;*** |
| 4381 | 4381 | ||
| 4382 | ;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "30ab95e291380f184dff5fa6cde75520") | 4382 | ;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "a7d3e7205efa4e20ca9038c9b260ce83") |
| 4383 | ;;; Generated autoloads from rmailmm.el | 4383 | ;;; Generated autoloads from rmailmm.el |
| 4384 | 4384 | ||
| 4385 | (autoload 'rmail-mime "rmailmm" "\ | 4385 | (autoload 'rmail-mime "rmailmm" "\ |
diff --git a/src/chartab.c b/src/chartab.c index 4a9a76bdd60..e900a3ae71f 100644 --- a/src/chartab.c +++ b/src/chartab.c | |||
| @@ -456,7 +456,7 @@ sub_char_table_set_range (Lisp_Object table, int from, int to, Lisp_Object val, | |||
| 456 | from = min_char; | 456 | from = min_char; |
| 457 | i = CHARTAB_IDX (from, depth, min_char); | 457 | i = CHARTAB_IDX (from, depth, min_char); |
| 458 | c = min_char + chars_in_block * i; | 458 | c = min_char + chars_in_block * i; |
| 459 | for (; i <= lim; i++, c += chars_in_block) | 459 | for (; i < lim; i++, c += chars_in_block) |
| 460 | { | 460 | { |
| 461 | if (c > to) | 461 | if (c > to) |
| 462 | break; | 462 | break; |