comparison lisp/ChangeLog @ 83302:5ae8a8b0a308

Merged from miles@gnu.org--gnu-2005 (patch 292-295) Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-292 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-293 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-294 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-295 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-342
author Karoly Lorentey <lorentey@elte.hu>
date Mon, 09 May 2005 16:13:15 +0000
parents b151ec53c504 77d48ce87d57
children 6fef25c75847
comparison
equal deleted inserted replaced
83301:b151ec53c504 83302:5ae8a8b0a308
1 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
2
3 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
4 `find-file-not-found-hooks'; use `add-hook'.
5 (uncompress-while-visiting): Set `write-file-functions', not
6 `write-file-hooks'; use `add-hook'.
7
8 2005-05-09 Kim F. Storm <storm@cua.dk>
9
10 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
11 (cua-paste): Handle clipboard action.
12 (cua--init-keymaps): Remap clipboard-kill-region and
13 clipboard-kill-ring-save.
14
15 2005-05-08 Eli Zaretskii <eliz@gnu.org>
16
17 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Improve
18 commentary.
19
20 * simple.el (next-error-overlay-arrow-position): Revert the change
21 made on 2005-04-30.
22
23 2005-05-07 Jay Belanger <belanger@truman.edu>
24
25 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
26 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
27 `calc-sel-reselect'.
28
29 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
30 Calc is in embedded mode.
31
32 2005-05-07 Eli Zaretskii <eliz@gnu.org>
33
34 * progmodes/compile.el (compilation-setup): Set
35 overlay-arrow-string to an empty string on text terminals.
36
37 * textmodes/ispell.el (ispell-program-name): Try looking for
38 "aspell" along exec-path, and if found, use it as the default
39 speller program.
40
41 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
42
43 * international/mule.el (sgml-xml-auto-coding-function): Recognize
44 encoding='FOO' in single quotes as well as in double quotes.
45
46 2005-05-07 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>
47
48 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
49 as well as `interactive', so that defmacro* would recognize
50 `declare' forms.
51
52 2005-05-07 Eli Zaretskii <eliz@gnu.org>
53
54 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Explain
55 more about the LIGHTER arg's usage in the doc string. Add
56 commentary to clarify what the code does. Fix the regexp that
57 strips whitespace from LIGHTER. Quote LIGHTER before using it,
58 since it could have characters special to regular expressions.
59
60 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
61
62 * replace.el (occur-1): Bind inhibit-read-only so that
63 erase-buffer doesn't barf on read-only text properties (likewise
64 for add-text-properties in occur-engine). Mark buffer as
65 unmodified.
66 (occur-engine): Don't set buffer-read-only here.
67
68 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
69
70 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
71 list-buffers-directory. This caused the *cvs-commit* buffer to be
72 sometimes mistakenly reused as a *cvs* buffer.
73
74 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
75
76 * tooltip.el: Move code for GUD tooltips into gud.el.
77 (require): CL no longer needed to compile case.
78 (tooltip-mode): Do not toggle functions for GUD tooltips.
79 (tooltip-gud-tips-p): Remove. Replace with minor mode
80 gud-tooltip-mode in gud.el.
81 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
82 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
83 tooltip-gud prefix with gud-tooltip and obsolete.
84 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
85 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
86 (tooltip-mouse-motion): Mouse movement functions/variable.
87 Rename in gud.el by adding gud prefix.
88 (tooltip-gud-original-filter, tooltip-gud-dereference)
89 (tooltip-gud-event, tooltip-toggle-gud-tips)
90 (tooltip-gud-process-output, tooltip-gud-print-command)
91 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
92 gud.el by replacing tooltip-gud prefix with gud-tooltip.
93 (gdb-tooltip-print): Move to gdb-ui.el.
94
95 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
96 (require): CL needed to compile case.
97 (gud-tooltip-mode): Use to toggle GUD tooltips unstead of
98 tooltip-gud-tips-p. Make it a minor-mode.
99 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
100 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
101 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
102 (gud-tooltip-change-major-mode)
103 (gud-tooltip-activate-mouse-motions-if-enabled)
104 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
105 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
106 (gud-tooltip-original-filter, gud-tooltip-dereference)
107 (gud-tooltip-event, tooltip-toggle-gud-tips)
108 (gud-tooltip-process-output, gud-tooltip-print-command)
109 (gud-tooltip-tips): Move from tooltip.el.
110
111 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
112 (gdb-cpp-define-alist-flags): Doc fix.
113 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
114 gud-tooltip-mode is t.
115
116 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
117
118 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
119 evaporate if their text is deleted.
120 (goto-address-at-point): Make it work as a mouse binding as well.
121 (goto-address-at-mouse): Obsolete it. Update users.
122
123 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
124
125 * calendar/appt.el (top-level): No longer activate on load.
126
127 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
128
129 * calendar/cal-bahai.el (mark-bahai-diary-entries):
130 * net/webjump.el (webjump):
131 * progmodes/idlw-help.el (idlwave-do-context-help1)
132 (idlwave-highlight-linked-completions):
133 * textmodes/po.el (po-find-file-coding-system-guts):
134 Replace `assoc-ignore-case' by `assoc-string'.
135
136 2005-05-06 Eli Zaretskii <eliz@gnu.org>
137
138 * files.el (locate-file): Doc fix.
139
140 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
141 Remove the redundant test for ms-dos.
142
143 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
144 look for the preprocessor with exec-suffixes. If not found in
145 standard places, look in exec-path. Remove most of the tests that
146 used system-type.
147
148 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
149
150 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
151
152 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
153 file-name clash with jka-compr.el on 8+3 filesystems.
154
155 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
156
157 * term/mac-win.el: Don't define or bind scroll bar functions if
158 x-toolkit-scroll-bars is t.
159 (x-select-text, x-get-selection-value):
160 Clear x-last-selected-text-clipboard if x-select-enable-clipboard is
161 nil.
162 (PRIMARY): Put mac-scrap-name property.
163 (mac-select-convert-to-file-url): New function.
164 (public.file-url): New selection target type. Add to
165 selection-converter-alist.
166 (x-get-selection, x-selection-value): Handle it.
167 (x-cut-buffer-or-selection-value): New alias.
168
1 2005-05-05 Luc Teirlinck <teirllm@auburn.edu> 169 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
2 170
3 * emacs-lisp/byte-run.el (define-obsolete-function-alias) 171 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
4 (define-obsolete-variable-alias): Doc Fixes. 172 (define-obsolete-variable-alias): Doc Fixes.
5 173
20 Handle new push, pop, and pop-all exit codes (for M-b/M-f). 188 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
21 Automatically pop-all when completing a directory name (RET). 189 Automatically pop-all when completing a directory name (RET).
22 (ido-file-internal): Add with-no-warnings around ffap and dired code. 190 (ido-file-internal): Add with-no-warnings around ffap and dired code.
23 (ido-exit-minibuffer): Use exit-minibuffer instead of throw. 191 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
24 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find. 192 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
25 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir): New 193 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
26 functions for M-b/M-f to move among the directory components. 194 New functions for M-b/M-f to move among the directory components.
27 (ido-make-merged-file-list): Catch quit to cancel merge. 195 (ido-make-merged-file-list): Catch quit to cancel merge.
28 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty. 196 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
29 (ido-completion-help): No warnings for ido-completion-buffer-full. 197 (ido-completion-help): No warnings for ido-completion-buffer-full.
30 198
31 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org> 199 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
36 * progmodes/cperl-mode.el (cperl-init-faces): Use it. 204 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
37 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it. 205 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
38 206
39 2005-05-05 Juanma Barranquero <lekktu@gmail.com> 207 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
40 208
41 * emacs-lisp/byte-run.el (define-obsolete-function-alias): Fix 209 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
42 typo in docstring. 210 Fix typo in docstring.
43 211
44 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys) 212 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
45 (ebrowse-print-statistics-line) 213 (ebrowse-print-statistics-line)
46 (ebrowse-electric-position-mode-hook): Fix typo in docstring. 214 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
47 215
53 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and 221 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
54 use gcc instead of cpp. 222 use gcc instead of cpp.
55 223
56 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable. 224 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
57 (gdb-create-define-alist): Use it. 225 (gdb-create-define-alist): Use it.
58 (gdb-cpp-define-alist-program): Update for MS-DOS? 226 (gdb-cpp-define-alist-program): Update for MS-DOS.
59 227
60 2005-05-04 Nick Roberts <nickrob@snap.net.nz> 228 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
61 229
62 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OSX. 230 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OSX.
231
232 2005-05-04 Richard M. Stallman <rms@gnu.org>
233
234 * simple.el (line-move-1): Fix previous change to signal errors
235 appropriately.
63 236
64 2005-05-03 Ulf Jasper <ulf.jasper@web.de> 237 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
65 238
66 * calendar/icalendar.el (icalendar-version): Now at 0.12. 239 * calendar/icalendar.el (icalendar-version): Now at 0.12.
67 (icalendar-duration-correction): Remove. 240 (icalendar-duration-correction): Remove.
216 389
217 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys. 390 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
218 391
219 * loadup.el: load jka-comp-hook. 392 * loadup.el: load jka-comp-hook.
220 393
221 * jka-compr.el: Many functions and vars moved to jka-compr-hook.el. 394 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
222 (jka-compr-handler): Add autoload. `put' calls moved 395 (jka-compr-handler): Add autoload. `put' calls moved
223 to jka-compr-hook.el. 396 to jka-comp-hook.el.
224 (compression, jka-compr): defgroups moved to jka-compr-hook.el. 397 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
225 (jka-compr-inhibit): Autoload. 398 (jka-compr-inhibit): Autoload.
226 399
227 * jka-comp-hook.el: New file. 400 * jka-comp-hook.el: New file.
228 Enable the mode by default. 401 Enable the mode by default.
229 402
2187 2360
2188 * menu-bar.el (showhide-date-time): Remove. 2361 * menu-bar.el (showhide-date-time): Remove.
2189 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle. 2362 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
2190 (menu-bar-make-mm-toggle): Simplify. 2363 (menu-bar-make-mm-toggle): Simplify.
2191 2364
2192 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com> 2365 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
2193 2366
2194 * progmodes/perl-mode.el (perl-font-lock-keywords-2): 2367 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
2195 Accept qualified variable and function names. 2368 Accept qualified variable and function names.
2196 2369
2197 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org> 2370 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
2361 2534
2362 * recentf.el (recentf-cleanup-remote): New variable. 2535 * recentf.el (recentf-cleanup-remote): New variable.
2363 (recentf-cleanup): Use it to conditionally check availablity of 2536 (recentf-cleanup): Use it to conditionally check availablity of
2364 remote files. 2537 remote files.
2365 2538
2366 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change) 2539 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
2367 2540
2368 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in 2541 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
2369 function names. 2542 function names.
2370 2543
2371 2005-03-19 Eli Zaretskii <eliz@gnu.org> 2544 2005-03-19 Eli Zaretskii <eliz@gnu.org>
3936 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore) 4109 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
3937 (bibtex-entry-offset, bibtex-parse-association) 4110 (bibtex-entry-offset, bibtex-parse-association)
3938 (bibtex-parse-field-name): Fix typos in docstrings. 4111 (bibtex-parse-field-name): Fix typos in docstrings.
3939 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages. 4112 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
3940 4113
3941 2005-01-24 Carsten Dominik <dominik@science.uva.nl> 4114 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
3942 4115
3943 * textmodes/reftex-global.el (reftex-isearch-push-state-function) 4116 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
3944 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search) 4117 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
3945 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off) 4118 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
3946 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions. 4119 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
5068 `interactive' form as previous-matching-history-element. 5241 `interactive' form as previous-matching-history-element.
5069 5242
5070 * ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars, 5243 * ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars,
5071 it can appear unencoded and has been seen from yahoo. 5244 it can appear unencoded and has been seen from yahoo.
5072 5245
5073 2004-12-27 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change) 5246 2004-12-27 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
5074 5247
5075 * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5 5248 * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
5076 in upper case. Reported by Wojciech Polak <polak@gnu.org>. 5249 in upper case. Reported by Wojciech Polak <polak@gnu.org>.
5077 5250
5078 2004-12-27 Kenichi Handa <handa@m17n.org> 5251 2004-12-27 Kenichi Handa <handa@m17n.org>
6438 Dedicate gdb-related windows. 6611 Dedicate gdb-related windows.
6439 (gdb-display-buffer): Dedicate gdb-related windows. Don't grab 6612 (gdb-display-buffer): Dedicate gdb-related windows. Don't grab
6440 other frames. 6613 other frames.
6441 (gdb-reset): Remove dedicated property after debugging. 6614 (gdb-reset): Remove dedicated property after debugging.
6442 6615
6443 2004-11-24 Jay Belanger <belanger@truman.edu> 6616 2004-11-24 Jay Belanger <belanger@truman.edu>
6444 6617
6445 * calc/calc-sel.el: Add comment. 6618 * calc/calc-sel.el: Add comment.
6446 6619
6447 * calc/calc.el (math-stack-value-offset): Replace variables c, 6620 * calc/calc.el (math-stack-value-offset): Replace variables c,
6448 wid and off with math-svo-c, math-svo-wid and math-svo-off. 6621 wid and off with math-svo-c, math-svo-wid and math-svo-off.
7726 * progmodes/gdb-ui.el (gdb-enable-debug-log) 7899 * progmodes/gdb-ui.el (gdb-enable-debug-log)
7727 (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation) 7900 (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
7728 (gud-gdba-command-name, gdb-show-main, gdb-many-windows): 7901 (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
7729 Add :version keyword. 7902 Add :version keyword.
7730 7903
7731 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com> 7904 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com>
7732 7905
7733 * progmodes/flymake.el (flymake-err-line-patterns): 7906 * progmodes/flymake.el (flymake-err-line-patterns):
7734 Use `flymake-reformat-err-line-patterns-from-compile-el' to convert 7907 Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
7735 `compilation-error-regexp-alist-alist' to internal Flymake format. 7908 `compilation-error-regexp-alist-alist' to internal Flymake format.
7736 7909
8135 8308
8136 * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords): 8309 * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
8137 Handle periods and underscores in a function name. 8310 Handle periods and underscores in a function name.
8138 Remove the address fontification. 8311 Remove the address fontification.
8139 8312
8140 2004-10-24 Masatake YAMATO <jet@gyve.org> 8313 2004-10-24 Masatake YAMATO <jet@gyve.org>
8141 8314
8142 * progmodes/asm-mode.el (asm-font-lock-keywords): 8315 * progmodes/asm-mode.el (asm-font-lock-keywords):
8143 Use font-lock-variable-name-face for registers. 8316 Use font-lock-variable-name-face for registers.
8144 8317
8145 2004-10-24 Nick Roberts <nickrob@snap.net.nz> 8318 2004-10-24 Nick Roberts <nickrob@snap.net.nz>
8277 8450
8278 2004-10-19 Richard M. Stallman <rms@gnu.org> 8451 2004-10-19 Richard M. Stallman <rms@gnu.org>
8279 8452
8280 * paths.el (news-path): Fix previous change. 8453 * paths.el (news-path): Fix previous change.
8281 8454
8282 2004-10-18 Jay Belanger <belanger@truman.edu> 8455 2004-10-18 Jay Belanger <belanger@truman.edu>
8283 8456
8284 * calc/calc-help.el (calc-describe-bindings): 8457 * calc/calc-help.el (calc-describe-bindings):
8285 Set `buffer-read-only' to nil while working in the keybindings buffer; 8458 Set `buffer-read-only' to nil while working in the keybindings buffer;
8286 remove some extra information from the keybindings buffer. 8459 remove some extra information from the keybindings buffer.
8287 8460
9417 9590
9418 2004-09-04 Jari Aalto <jari.aalto@poboxes.com> 9591 2004-09-04 Jari Aalto <jari.aalto@poboxes.com>
9419 9592
9420 * terminal.el (te-escape): Show `?' in prompt for help key. 9593 * terminal.el (te-escape): Show `?' in prompt for help key.
9421 9594
9422 2004-09-04 Emilio C. Lopes <eclig@gmx.net> 9595 2004-09-04 Emilio C. Lopes <eclig@gmx.net>
9423 9596
9424 * emacs-lisp/lisp.el (kill-backward-up-list): New function. 9597 * emacs-lisp/lisp.el (kill-backward-up-list): New function.
9425 9598
9426 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu> 9599 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu>
9427 9600
9825 * term.el (term-default-fg-color, term-default-bg-color) 9998 * term.el (term-default-fg-color, term-default-bg-color)
9826 (ansi-term-color-vector): Use `unspecified', not nil, as default. 9999 (ansi-term-color-vector): Use `unspecified', not nil, as default.
9827 10000
9828 * imenu.el: Several doc fixes: don't say variables are buffer-local. 10001 * imenu.el: Several doc fixes: don't say variables are buffer-local.
9829 10002
9830 2004-08-16 Davis Herring <herring@lanl.gov> 10003 2004-08-16 Davis Herring <herring@lanl.gov>
9831 10004
9832 * isearch.el (isearch-string, isearch-message-string, isearch-point) 10005 * isearch.el (isearch-string, isearch-message-string, isearch-point)
9833 (isearch-success, isearch-forward-flag, isearch-other-end) 10006 (isearch-success, isearch-forward-flag, isearch-other-end)
9834 (isearch-word, isearch-invalid-regexp, isearch-wrapped) 10007 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
9835 (isearch-barrier, isearch-within-brackets) 10008 (isearch-barrier, isearch-within-brackets)