diff options
| author | Andreas Schwab | 2011-02-10 12:07:15 +0100 |
|---|---|---|
| committer | Andreas Schwab | 2011-02-10 12:07:15 +0100 |
| commit | 16b737dc09bfb9cce1f3b0f8e51ace7d6f4e651a (patch) | |
| tree | 33bfe2fd2efa62f513301c9459f16c5331478775 | |
| parent | 86361e1edcf4ae6a602a32ee32dba16a3470f407 (diff) | |
| download | emacs-16b737dc09bfb9cce1f3b0f8e51ace7d6f4e651a.tar.gz emacs-16b737dc09bfb9cce1f3b0f8e51ace7d6f4e651a.zip | |
Update cl-loaddefs.el and ibuffer.el
| -rw-r--r-- | lisp/emacs-lisp/cl-loaddefs.el | 18 | ||||
| -rw-r--r-- | lisp/ibuffer.el | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/lisp/emacs-lisp/cl-loaddefs.el b/lisp/emacs-lisp/cl-loaddefs.el index e6ede1ed6d4..badfdcc70b6 100644 --- a/lisp/emacs-lisp/cl-loaddefs.el +++ b/lisp/emacs-lisp/cl-loaddefs.el | |||
| @@ -759,7 +759,7 @@ surrounded by (block NAME ...). | |||
| 759 | ;;;;;; find nsubstitute-if-not nsubstitute-if nsubstitute substitute-if-not | 759 | ;;;;;; find nsubstitute-if-not nsubstitute-if nsubstitute substitute-if-not |
| 760 | ;;;;;; substitute-if substitute delete-duplicates remove-duplicates | 760 | ;;;;;; substitute-if substitute delete-duplicates remove-duplicates |
| 761 | ;;;;;; delete-if-not delete-if delete* remove-if-not remove-if remove* | 761 | ;;;;;; delete-if-not delete-if delete* remove-if-not remove-if remove* |
| 762 | ;;;;;; replace fill reduce) "cl-seq" "cl-seq.el" "ac5c427e92a38c5a2149acaa013caad9") | 762 | ;;;;;; replace fill reduce) "cl-seq" "cl-seq.el" "50667ae0688aa15dad8a585096e7144f") |
| 763 | ;;; Generated autoloads from cl-seq.el | 763 | ;;; Generated autoloads from cl-seq.el |
| 764 | 764 | ||
| 765 | (autoload 'reduce "cl-seq" "\ | 765 | (autoload 'reduce "cl-seq" "\ |
| @@ -1085,7 +1085,7 @@ Keywords supported: :key | |||
| 1085 | 1085 | ||
| 1086 | (autoload 'union "cl-seq" "\ | 1086 | (autoload 'union "cl-seq" "\ |
| 1087 | Combine LIST1 and LIST2 using a set-union operation. | 1087 | Combine LIST1 and LIST2 using a set-union operation. |
| 1088 | The result list contains all items that appear in either LIST1 or LIST2. | 1088 | The resulting list contains all items that appear in either LIST1 or LIST2. |
| 1089 | This is a non-destructive function; it makes a copy of the data if necessary | 1089 | This is a non-destructive function; it makes a copy of the data if necessary |
| 1090 | to avoid corrupting the original LIST1 and LIST2. | 1090 | to avoid corrupting the original LIST1 and LIST2. |
| 1091 | 1091 | ||
| @@ -1095,7 +1095,7 @@ Keywords supported: :test :test-not :key | |||
| 1095 | 1095 | ||
| 1096 | (autoload 'nunion "cl-seq" "\ | 1096 | (autoload 'nunion "cl-seq" "\ |
| 1097 | Combine LIST1 and LIST2 using a set-union operation. | 1097 | Combine LIST1 and LIST2 using a set-union operation. |
| 1098 | The result list contains all items that appear in either LIST1 or LIST2. | 1098 | The resulting list contains all items that appear in either LIST1 or LIST2. |
| 1099 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1099 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 1100 | whenever possible. | 1100 | whenever possible. |
| 1101 | 1101 | ||
| @@ -1105,7 +1105,7 @@ Keywords supported: :test :test-not :key | |||
| 1105 | 1105 | ||
| 1106 | (autoload 'intersection "cl-seq" "\ | 1106 | (autoload 'intersection "cl-seq" "\ |
| 1107 | Combine LIST1 and LIST2 using a set-intersection operation. | 1107 | Combine LIST1 and LIST2 using a set-intersection operation. |
| 1108 | The result list contains all items that appear in both LIST1 and LIST2. | 1108 | The resulting list contains all items that appear in both LIST1 and LIST2. |
| 1109 | This is a non-destructive function; it makes a copy of the data if necessary | 1109 | This is a non-destructive function; it makes a copy of the data if necessary |
| 1110 | to avoid corrupting the original LIST1 and LIST2. | 1110 | to avoid corrupting the original LIST1 and LIST2. |
| 1111 | 1111 | ||
| @@ -1115,7 +1115,7 @@ Keywords supported: :test :test-not :key | |||
| 1115 | 1115 | ||
| 1116 | (autoload 'nintersection "cl-seq" "\ | 1116 | (autoload 'nintersection "cl-seq" "\ |
| 1117 | Combine LIST1 and LIST2 using a set-intersection operation. | 1117 | Combine LIST1 and LIST2 using a set-intersection operation. |
| 1118 | The result list contains all items that appear in both LIST1 and LIST2. | 1118 | The resulting list contains all items that appear in both LIST1 and LIST2. |
| 1119 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1119 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 1120 | whenever possible. | 1120 | whenever possible. |
| 1121 | 1121 | ||
| @@ -1125,7 +1125,7 @@ Keywords supported: :test :test-not :key | |||
| 1125 | 1125 | ||
| 1126 | (autoload 'set-difference "cl-seq" "\ | 1126 | (autoload 'set-difference "cl-seq" "\ |
| 1127 | Combine LIST1 and LIST2 using a set-difference operation. | 1127 | Combine LIST1 and LIST2 using a set-difference operation. |
| 1128 | The result list contains all items that appear in LIST1 but not LIST2. | 1128 | The resulting list contains all items that appear in LIST1 but not LIST2. |
| 1129 | This is a non-destructive function; it makes a copy of the data if necessary | 1129 | This is a non-destructive function; it makes a copy of the data if necessary |
| 1130 | to avoid corrupting the original LIST1 and LIST2. | 1130 | to avoid corrupting the original LIST1 and LIST2. |
| 1131 | 1131 | ||
| @@ -1135,7 +1135,7 @@ Keywords supported: :test :test-not :key | |||
| 1135 | 1135 | ||
| 1136 | (autoload 'nset-difference "cl-seq" "\ | 1136 | (autoload 'nset-difference "cl-seq" "\ |
| 1137 | Combine LIST1 and LIST2 using a set-difference operation. | 1137 | Combine LIST1 and LIST2 using a set-difference operation. |
| 1138 | The result list contains all items that appear in LIST1 but not LIST2. | 1138 | The resulting list contains all items that appear in LIST1 but not LIST2. |
| 1139 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1139 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 1140 | whenever possible. | 1140 | whenever possible. |
| 1141 | 1141 | ||
| @@ -1145,7 +1145,7 @@ Keywords supported: :test :test-not :key | |||
| 1145 | 1145 | ||
| 1146 | (autoload 'set-exclusive-or "cl-seq" "\ | 1146 | (autoload 'set-exclusive-or "cl-seq" "\ |
| 1147 | Combine LIST1 and LIST2 using a set-exclusive-or operation. | 1147 | Combine LIST1 and LIST2 using a set-exclusive-or operation. |
| 1148 | The result list contains all items that appear in exactly one of LIST1, LIST2. | 1148 | The resulting list contains all items appearing in exactly one of LIST1, LIST2. |
| 1149 | This is a non-destructive function; it makes a copy of the data if necessary | 1149 | This is a non-destructive function; it makes a copy of the data if necessary |
| 1150 | to avoid corrupting the original LIST1 and LIST2. | 1150 | to avoid corrupting the original LIST1 and LIST2. |
| 1151 | 1151 | ||
| @@ -1155,7 +1155,7 @@ Keywords supported: :test :test-not :key | |||
| 1155 | 1155 | ||
| 1156 | (autoload 'nset-exclusive-or "cl-seq" "\ | 1156 | (autoload 'nset-exclusive-or "cl-seq" "\ |
| 1157 | Combine LIST1 and LIST2 using a set-exclusive-or operation. | 1157 | Combine LIST1 and LIST2 using a set-exclusive-or operation. |
| 1158 | The result list contains all items that appear in exactly one of LIST1, LIST2. | 1158 | The resulting list contains all items appearing in exactly one of LIST1, LIST2. |
| 1159 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 1159 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 1160 | whenever possible. | 1160 | whenever possible. |
| 1161 | 1161 | ||
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 5113a34e268..d6b4feb1613 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el | |||
| @@ -2641,7 +2641,7 @@ will be inserted before the group at point." | |||
| 2641 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group | 2641 | ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group |
| 2642 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group | 2642 | ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group |
| 2643 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode | 2643 | ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode |
| 2644 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" "d98d015a69b22236de3cb1f7e456218b") | 2644 | ;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" "f6e06ce5f548106a2ffa2f3029ce5eda") |
| 2645 | ;;; Generated autoloads from ibuf-ext.el | 2645 | ;;; Generated autoloads from ibuf-ext.el |
| 2646 | 2646 | ||
| 2647 | (autoload 'ibuffer-auto-mode "ibuf-ext" "\ | 2647 | (autoload 'ibuffer-auto-mode "ibuf-ext" "\ |