]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
(vc-ignore-dir-regexp): Make it into a defcustom.
[gnu-emacs] / lisp / ChangeLog
1 2006-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * vc-hooks.el (vc-ignore-dir-regexp): Make it into a defcustom.
4 (vc-find-root): Don't walk higher up than ~.
5
6 2006-10-12 Chong Yidong <cyd@stupidchicken.com>
7
8 * international/utf-8.el (utf-translate-cjk-load-tables):
9 Avoid clobbering last-coding-system-used during load.
10
11 2006-10-12 Carsten Dominik <dominik@science.uva.nl>
12
13 * textmodes/reftex-global.el (reftex-create-tags-file): Quote file
14 arguments.
15
16 2006-10-12 Andreas Schwab <schwab@suse.de>
17
18 * files.el (auto-mode-alist): Match change log file name also with
19 a dash before a numeric extension.
20
21 2006-10-11 Ilya Zakharevich <ilyaz@cpan.org>
22
23 * progmodes/cperl-mode.el: Merge from upstream, upto version 5.22.
24 After 5.0:
25 (cperl-add-tags-recurse-noxs-fullpath): New function (for -batch mode).
26
27 After 5.1: Major edit. Summary of most visible changes:
28
29 - Multiple <<HERE per line allowed.
30 - Handles multiline subroutine declaration headers (with comments).
31 (The exception is `cperl-etags' - but it is not used in the rest
32 of the mode.)
33 - Fontifies multiline my/our declarations (even with comments,
34 and with legacy `font-lock').
35 - Major speedup of syntaxification, both immediate and postponed
36 (3.5x to 15x [for different CPUs and versions of Emacs] on the
37 huge real-life document I tested).
38 - New bindings, edits to imenu.
39 - "_" is made into word-char during fontification/syntaxification;
40 some attempts to recognize non-word "_" during other operations too.
41 - Detect bug in Emacs with `looking-at' inside `narrow' and bulk out.
42 - autoload some more perldoc-related stuff
43 - New convenience features: ISpell POD/HEREDOCs, narrow-to-HEREDOC.
44 - Attempt to incorporate XEmacs edits which reached me.
45
46 Fine-grained changelog:
47 (cperl-hook-after-change): New configuration variable.
48 (cperl-vc-sccs-header): Likewise.
49 (cperl-vc-sccs-header): Likewise.
50 (cperl-vc-header-alist): Default via two preceding variables.
51 (cperl-invalid-face): Remove double quoting under XEmacs
52 (still needed under 21.2).
53 (cperl-tips): Update URLs for resources.
54 (cperl-problems): Likewise.
55 (cperl-praise): Mention new features.
56 New C-c key bindings: for `cperl-find-bad-style',
57 `cperl-pod-spell', `cperl-here-doc-spell', `cperl-narrow-to-here-doc',
58 `cperl-perdoc', and `cperl-perldoc-at-point'.
59 CPerl Mode menu changes: "Fix style by spaces", "Imenu on Perl Info"
60 moved, new submenu of Tools with Ispell entries and narrowing.
61 (cperl-after-sub-regexp): New defsubst.
62 (cperl-imenu--function-name-regexp-perl): Use `cperl-after-sub-regexp'.
63 Allows heads up to head4.
64 Allow "package;".
65 (defun-prompt-regexp): Use `cperl-after-sub-regexp'.
66 (paren-backwards-message): ??? Something for XEmacs???
67 (cperl-mode): Never auto-switch abbrev-mode off.
68 Try to allow '_' be non-word char.
69 Do not use `font-lock-unfontify-region-function' on XEmacs.
70 Reset syntax cache on mode start.
71 Support multiline facification (even on legacy `font-lock').
72 (cperl-facemenu-add-face-function): ??? Some contributed code ???
73 (cperl-after-change-function): Since `font-lock' and `lazy-lock'
74 refuse to inform us whether the fontification is due to lazy
75 calling or due to edit to a buffer, install our own hook
76 (controlled by `cperl-hook-after-change').
77 (cperl-electric-pod): =cut may have been recognized as start.
78 (cperl-block-p): Move, updatedfor attributes.
79 (cperl-calculate-indent): Try to allow '_' be non-word char
80 Support subs with attributes.
81 (cperl-where-am-i): Queit (?) a warning.
82 (cperl-cached-syntax-table) New function.
83 (cperl-forward-re): Use `cperl-cached-syntax-table'.
84 (cperl-unwind-to-safe): Recognize `syntax-type' property
85 changing in a middle of line.
86 (cperl-find-sub-attrs): New function.
87 (cperl-find-pods-heres): Allow many <<EOP per line.
88 Allow subs with attributes.
89 Major speedups (3.5x..15x on a real-life test file nph-proxy.pl).
90 Recognize "extproc " (OS/2) case-folded and only at start.
91 /x on s///x with empty replacement was not recognized.
92 Better comments.
93 (cperl-after-block-p): Remarks on diff with `cperl-block-p'.
94 Allow subs with attributes, labels.
95 Do not confuse "else::foo" with "else".
96 Minor optimizations...
97 (cperl-after-expr-p): Try to allow '_' be non-word char.
98 (cperl-fill-paragraph): Try to detect a major bug in Emacs
99 with `looking-at' inside `narrow' and bulk out if found.
100 (cperl-imenu--create-perl-index): Updates for new
101 `cperl-imenu--function-name-regexp-perl'.
102 (cperl-outline-level): Likewise.
103 (cperl-init-faces): Allow multiline subroutine headers
104 and my/our declarations, and ones with comments.
105 Allow subroutine attributes.
106 (cperl-imenu-on-info): Better docstring.
107 (cperl-etags): Rudimentary support for attributes.
108 Support for packages and "package;".
109 (cperl-add-tags-recurse-noxs): Better (?) docstring.
110 (cperl-add-tags-recurse-noxs-fullpath): Likewise.
111 (cperl-tags-hier-init): Misprint for `fboundp' fixed.
112 (cperl-not-bad-style-regexp): Try to allow '_' be non-word char.
113 (cperl-perldoc): Add autoload.
114 (cperl-perldoc-at-point): Likewise.
115 (cperl-here-doc-spell): New function.
116 (cperl-pod-spell): Likewise.
117 (cperl-map-pods-heres): Likewise.
118 (cperl-get-here-doc-region): Likewise.
119 (cperl-font-lock-fontify-region-function): Likewise (backward
120 compatibility for legacy `font-lock').
121 (cperl-font-lock-unfontify-region-function): Fix style.
122 (cperl-fontify-syntaxically): Recognize and optimize away deferred
123 calls with no-change. Governed by `cperl-hook-after-change'.
124 (cperl-fontify-update): Recognize that syntaxification region
125 can be larger than fontification one.
126 XXXX we leave `cperl-postpone' property, so this is quadratic...
127 (cperl-fontify-update-bad): Temporary placeholder until
128 it is clear how to implement `cperl-fontify-update'.
129 (cperl-time-fontification): New function.
130 (attrib-group): New text attribute.
131 (multiline): New value: `syntax-type' text attribute.
132
133 After 5.2:
134 (cperl-emulate-lazy-lock): New function.
135 (cperl-fontify-syntaxically): Would skip large regions.
136 Add `cperl-time-fontification', `cperl-emulate-lazy-lock' to menu.
137 Some globals were declared, but uninitialized.
138
139 After 5.3, 5.4:
140 (cperl-facemenu-add-face-function): Add docs, fix U<>.
141 Copyright message updated.
142 (cperl-init-faces): Work around a bug in `font-lock'. May slow
143 facification down a bit.
144 Misprint for my|our|local for old `font-lock'
145 "our" was not fontified same as "my|local".
146 Highlight variables after "my" etc even in
147 a middle of an expression.
148 Do not facify multiple variables after my etc
149 unless parentheses are present.
150
151 After 5.5, 5.6
152 (cperl-fontify-syntaxically): after-change hook could reset.
153 (cperl-syntax-done-to) to a middle of line; unwind to BOL.
154
155 After 5.7:
156 (cperl-init-faces): Allow highlighting of local ($/).
157 (cperl-problems-old-emaxen): New variable (for the use of DOCSTRING).
158 (cperl-problems): Remove fixed problems.
159 (cperl-find-pods-heres): Recognize #-comments in m##x too.
160 Recognize charclasses (unless delimiter is \).
161 (cperl-fontify-syntaxically): Unwinding to safe was done in wrong order.
162 (cperl-regexp-scan): Update docs.
163 (cperl-beautify-regexp-piece): Use information got from regexp scan.
164
165 After 5.8:
166 Major user visible changes:
167 Recognition and fontification of character classes in RExen.
168 Variable indentation of RExen according to groups.
169
170 (cperl-find-pods-heres): Recognize POSIX classes in REx charclasses.
171 Fontify REx charclasses in variable-name face.
172 Fontify POSIX charclasses in "type" face.
173 Fontify unmatched "]" in function-name face.
174 Mark first-char of HERE-doc as `front-sticky'.
175 Reset `front-sticky' property when needed.
176 (cperl-calculate-indent): Indents //x -RExen accordning to parens level.
177 (cperl-to-comment-or-eol): Recognize ends of `syntax-type' constructs.
178 (cperl-backward-to-noncomment): Recognize stringy `syntax-type'
179 constructs. Support `narrow'ed buffers.
180 (cperl-praise): Remove a reservation.
181 (cperl-make-indent): New function.
182 (cperl-indent-for-comment): Use `cperl-make-indent'.
183 (cperl-indent-line): Likewise.
184 (cperl-lineup): Likewise.
185 (cperl-beautify-regexp-piece): Likewise.
186 (cperl-contract-level): Likewise.
187 (cperl-toggle-set-debug-unwind): New function.
188 New menu entry for this.
189 (fill-paragraph-function): Use when `boundp'.
190 (cperl-calculate-indent): Take into account groups when indenting RExen.
191 (cperl-to-comment-or-eol): Recognize # which end a string.
192 (cperl-modify-syntax-type): Make only syntax-table property non-sticky.
193 (cperl-fill-paragraph): Return t: needed for `fill-paragraph-function'.
194 (cperl-fontify-syntaxically): More clear debugging message.
195 (cperl-pod2man-build-command): Check (XEmacs) `Man-filter-list'.
196 (cperl-init-faces): More complicated highlight even on XEmacs (new).
197 Merge cosmetic changes from XEmacs.
198
199 After 5.9:
200 (cperl-1+): Move to before the first use.
201 (cperl-1-): Likewise.
202
203 After 5.10:
204
205 This code may lock Emacs hard!!! Use on your own risk!
206
207 (cperl-font-locking): New internal variable.
208 (cperl-beginning-of-property): New function.
209 (cperl-calculate-indent): Use `cperl-beginning-of-property'
210 instead of `previous-single-property-change'.
211 (cperl-unwind-to-safe): Likewise.
212 (cperl-after-expr-p): Likewise.
213 (cperl-get-here-doc-region): Likewise.
214 (cperl-font-lock-fontify-region-function): Likewise.
215 (cperl-to-comment-or-eol): Do not call `cperl-update-syntaxification'
216 recursively.
217 Bound `next-single-property-change' via `point-max'.
218 (cperl-unwind-to-safe): Bound likewise
219 (cperl-font-lock-fontify-region-function): Likewise
220 (cperl-find-pods-heres): Mark as recursive for `cperl-to-comment-or-eol'
221 Initialization of `cperl-font-lock-multiline-start' could be
222 missed if the "main" fontification did not run due to the
223 keyword being already fontified.
224 (cperl-pod-spell): Return t from do-one-chunk function.
225 (cperl-map-pods-heres): Stop when the worker returns nil.
226 Call `cperl-update-syntaxification'.
227 (cperl-get-here-doc-region): Call `cperl-update-syntaxification'.
228 (cperl-get-here-doc-delim): Remove unused function.
229
230 After 5.11:
231
232 The possible lockup of Emacs (introduced in 5.10) fixed.
233
234 (cperl-unwind-to-safe): `cperl-beginning-of-property' won't return nil.
235 (cperl-syntaxify-for-menu): New customization variable.
236 (cperl-select-this-pod-or-here-doc): New function.
237 (cperl-get-here-doc-region): Extra argument.
238 Do not adjust pos by 1.
239
240 New menu entries
241 (Perl/Tools): Selection of current POD or HERE-DOC section.
242 (Debugging CPerl:) backtrace on fontification.
243
244 After 5.12:
245 (cperl-cached-syntax-table): Use `car-safe'.
246 (cperl-forward-re): Remove spurious argument SET-ST.
247 Add documentation.
248 (cperl-forward-group-in-re): New function.
249 (cperl-find-pods-heres): Find and highlight (?{}) blocks in RExen
250 (XXXX Temporary (?) hack is to syntax-mark them as comment).
251
252 After 5.13:
253 (cperl-string-syntax-table): Make { and } not-grouping
254 (Sometimes they ARE grouping in RExen, but matching them would only
255 confuse in many situations when they are not)
256 (beginning-of-buffer): Replace two occurences with goto-char...
257 (cperl-calculate-indent): `char-after' could be nil...
258 (cperl-find-pods-heres): REx can start after "[" too.
259 Hightlight (??{}) in RExen too.
260 (cperl-maybe-white-and-comment-rex): New constant
261 (cperl-white-and-comment-rex): Likewise.
262 XXXX Not very efficient, but hard to make
263 better while keeping 1 group.
264
265 After 5.13:
266 (cperl-find-pods-heres): $foo << identifier() is not a HERE-DOC.
267 Likewise for 1 << identifier.
268
269 After 5.14:
270 (cperl-find-pods-heres): Different logic for $foo .= <<EOF etc.
271 Error-less condition-case could fail.
272 (cperl-font-lock-fontify-region-function): Likewise.
273 (cperl-init-faces): Likewise.
274
275 After 5.15:
276 (cperl-find-pods-heres): Support property REx-part2.
277 (cperl-calculate-indent): Likewise.
278 Don't special-case REx with non-empty 1st line.
279 (cperl-find-pods-heres): In RExen, highlight non-literal backslashes.
280 Invert highlighting of charclasses:
281 now the envelop is highlighted.
282 Highlight many others 0-length builtins.
283 (cperl-praise): Mention indenting and highlight in RExen.
284
285 After 5.15:
286 (cperl-find-pods-heres): Highlight capturing parens in REx.
287
288 After 5.16:
289 (cperl-find-pods-heres): Highlight '|' for alternation
290 Initialize `font-lock-warning-face' if not present.
291 (cperl-find-pods-heres): Use `font-lock-warning-face' instead of
292 `font-lock-function-name-face'.
293 (cperl-look-at-leading-count): Likewise.
294 (cperl-find-pods-heres): Localize `font-lock-variable-name-face',
295 `font-lock-keyword-face' (needed for
296 batch processing), etc...
297 Use `font-lock-builtin-face' for builtin in REx
298 Now `font-lock-variable-name-face'
299 is used for interpolated variables
300 Use "talking aliases" for faces inside REx
301 Highlight parts of REx (except in charclasses)
302 according to the syntax and/or semantic
303 Syntax-mark a {}-part of (?{}) as "comment"
304 (it was the ()-part)
305 Better logic to distinguish what is what in REx
306 (cperl-tips-faces): Document REx highlighting
307 (cperl-praise): Mention REx syntax highlight etc.
308
309 After 5.17:
310 (cperl-find-sub-attrs): Would not always manage to print error message.
311 (cperl-find-pods-heres): Localize `font-lock-constant-face'.
312
313 After 5.18:
314 (cperl-find-pods-heres): Misprint in REx for parsing REx.
315 Very minor optimization.
316 `my-cperl-REx-modifiers-face' got quoted.
317 Recognize "print $foo <<END" as HERE-doc.
318 Put `REx-interpolated' text attribute if needed.
319 (cperl-invert-if-unless-modifiers): New function.
320 (cperl-backward-to-start-of-expr): Likewise.
321 (cperl-forward-to-end-of-expr): Likewise.
322 (cperl-invert-if-unless): Works in "the opposite way" too.
323 Cursor position on return is on the switch-word.
324 Indents comments better.
325 (REx-interpolated): New text attribute.
326 (cperl-next-interpolated-REx): New function.
327 (cperl-next-interpolated-REx-0): Likewise.
328 (cperl-next-interpolated-REx-1): Likewise.
329 "\C-c\C-x", "\C-c\C-y", "\C-c\C-v": New keybinding for these functions.
330 Perl/Regexp menu: 3 new entries for `cperl-next-interpolated-REx'.
331 (cperl-praise): Mention finded interpolated RExen.
332
333 After 5.19:
334 (cperl-init-faces): Highlight %$foo, @$foo too.
335 (cperl-short-docs): Better docs for system, exec.
336 (cperl-find-pods-heres): Better detect << after print {FH} <<EOF etc.
337 Would not find HERE-doc ended by EOF without NL.
338 (cperl-short-docs): Correct not-doubled \-escapes.
339 start block: Put some `defvar' for stuff gone from XEmacs.
340
341 After 5.20:
342 initial comment: Extend copyright, fix email address.
343 (cperl-indent-comment-at-column-0): New customization variable.
344 (cperl-comment-indent): Indentation after $#a would increasy by 1.
345 (cperl-mode): Make `defun-prompt-regexp' grok BEGIN/END etc.
346 (cperl-find-pods-heres): Mark CODE of s///e as `syntax-type' `multiline'
347 (cperl-at-end-of-expr): Would fail if @BAR=12 follows after ";".
348 (cperl-init-faces): If `cperl-highlight-variables-indiscriminately'
349 highlight $ in $foo too (UNTESTED).
350 (cperl-set-style): Docstring missed some available styles.
351 toplevel: Menubar/Perl/Indent-Styles had FSF, now K&R.
352 Change "Current" to "Memorize Current".
353 (cperl-indent-wrt-brace): New customization variable; the default is
354 as for pre-5.2 version.
355 (cperl-styles-entries): Keep `cperl-extra-newline-before-brace-multiline'.
356 (cperl-style-alist): Likewise.
357 (cperl-fix-line-spacing): Support `cperl-merge-trailing-else' being nil,
358 and `cperl-extra-newline-before-brace' etc
359 being t
360 (cperl-indent-exp): Plans B and C to find continuation blocks even
361 if `cperl-extra-newline-before-brace' is t.
362
363 After 5.21:
364 Improve some docstrings concerning indentation.
365 (cperl-indent-rules-alist): New variable.
366 (cperl-sniff-for-indent): New function name
367 (separated from `cperl-calculate-indent').
368 (cperl-calculate-indent): Separate the sniffer and the indenter;
369 uses `cperl-sniff-for-indent' now.
370 (cperl-comment-indent): Test for `cperl-indent-comment-at-column-0'
371 was inverted;
372 Support `comment-column' = 0.
373
374 2006-10-11 Martin Rudalics <rudalics@gmx.at>
375
376 * dnd.el (dnd-handle-one-url): Fix typo in doc-string.
377 * help-at-pt.el (scan-buf-move-to-region): Likewise.
378 * longlines.el (longlines-window-change-function): Likewise.
379 * simple.el (undo-ask-before-discard): Likewise.
380 * wid-edit.el (widget-field-prompt-internal)
381 (widget-documentation-link-p): Likewise.
382
383 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
384
385 * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars
386 for a keyword.
387
388 2006-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
389
390 * newcomment.el (comment-valid-prefix-p): Make the check
391 more thorough. From an idea by Martin Rudalics <rudalics@gmx.at>.
392 (comment-indent-new-line): Adjust call.
393
394 2006-10-09 Ken Manheimer <ken.manheimer@gmail.com>
395
396 * allout.el (allout-back-to-current-heading): Base on lower-level
397 routines to get proper disqualification of aberrant topics.
398
399 2006-10-09 Richard Stallman <rms@gnu.org>
400
401 * textmodes/two-column.el (2C-two-columns): Doc fix.
402
403 2006-10-09 Kim F. Storm <storm@cua.dk>
404
405 * shell.el (explicit-csh-args, explicit-bash-args): Add comment
406 about implicit use.
407
408 2006-10-08 Richard Stallman <rms@gnu.org>
409
410 * textmodes/two-column.el (2C-two-columns): Doc fix.
411
412 2006-10-08 Reiner Steib <Reiner.Steib@gmx.de>
413
414 * files.el: Mark `buffer-read-only' as safe-local-variable.
415
416 2006-10-08 Nick Roberts <nickrob@snap.net.nz>
417
418 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Burp if
419 GUD buffer has been killed.
420
421 2006-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
422
423 * completion.el (add-completions-from-c-buffer):
424 Don't presume an error's second element is a string.
425 Use looking-at rather than buffer-substring + member.
426
427 2006-10-07 Eli Zaretskii <eliz@gnu.org>
428
429 * mail/rmail.el (rmail-redecode-body): If the old encoding is
430 `undecided', call find-coding-systems-region to find a proper
431 non-trivial encoding.
432 (rmail-mime-charset-pattern): Allow a TAB between "Content-Type"
433 and "text/plain".
434
435 2006-10-07 Kevin Ryde <user42@zip.com.au>
436
437 * textmodes/reftex-vars.el (defgroup reftex): Update home page
438 url-link.
439
440 * strokes.el (defgroup strokes): Remove invalid url-link.
441
442 2006-10-07 Magnus Henoch <mange@freemail.hu>
443
444 * autoinsert.el (auto-insert-alist): Doc fix.
445
446 2006-10-07 Johan Bockg\e,be\e(Brd <bojohan@dd.chalmers.se>
447
448 * mouse-sel.el (mouse-insert-selection-internal):
449 Use insert-for-yank, so that yank handlers are run.
450
451 2006-10-07 Kim F. Storm <storm@cua.dk>
452
453 * ido.el (ido-file-extension-aux): Fix comparison.
454
455 2006-10-06 Kim F. Storm <storm@cua.dk>
456
457 * ido.el (ido-wide-find-dirs-or-files): Use shell-quote-argument.
458
459 2006-10-05 Juanma Barranquero <lekktu@gmail.com>
460
461 * emacs-lisp/advice.el (ad-remove-advice, ad-parse-arglist)
462 (ad-make-mapped-call): Use `let', not `let*'.
463
464 2006-10-05 Chong Yidong <cyd@stupidchicken.com>
465
466 * international/mule-cmds.el (coding-system-change-eol-conversion):
467 Ensure the coding system is initialized before calling
468 coding-system-eol-type.
469
470 2006-10-04 Carsten Dominik <dominik@science.uva.nl>
471
472 * textmodes/org.el (org-rm-props, org-activate-plain-links)
473 (org-activate-angle-links, org-activate-dates)
474 (org-activate-target-links, org-activate-camels)
475 (org-activate-tags): Add `rear-nonsticky' text property to avoid
476 textproperty keymaps from being active beyond the end of a line.
477 (org-unfontify-region): Also remove `rear-nonsticky' property.
478
479 2006-10-04 Kenichi Handa <handa@m17n.org>
480
481 * international/code-pages.el (next): Table fixed.
482
483 2006-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
484
485 * progmodes/sh-script.el (sh-prev-thing): Remove (forward-char 1) now
486 that it's been made unnecessary by removing narrowing.
487
488 2006-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
489
490 * progmodes/sh-script.el (sh-prev-thing): Massage to untangle the
491 control flow a bit, simplify another bit, and add comments.
492
493 2006-10-03 David Kastrup <dak@gnu.org>
494
495 * help.el (describe-mode): For clicks on mode-line, use "@"
496 interactive argument to get the major mode of the click instead of
497 the current buffer.
498
499 * isearch.el (isearch-mouse-2): Use new semantics of `key-binding'
500 in order to better redirect mouse-2 clicks. Also allow default
501 bindings to apply.
502
503 2006-10-03 Kim F. Storm <storm@cua.dk>
504
505 * emacs-lisp/cl.el (pushnew-internal): Remove defvar.
506 (pushnew): Fix last change.
507
508 2006-10-03 Denis St\e,A|\e(Bnkel <dstuenkel@googlemail.com> (tiny change)
509
510 * ibuf-ext.el (eval, view-and-eval) <define-ibuffer-op>:
511 Use the interactive spec of `eval-expression'.
512
513 2006-10-02 Michael Welsh Duggan <md5i@cs.cmu.edu>
514
515 * progmodes/sh-script.el (sh-prev-thing): Fix last change.
516
517 2006-10-02 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
518
519 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in
520 2006-09-28 commit.
521
522 2006-10-02 Kenichi Handa <handa@m17n.org>
523
524 * international/code-pages.el (iso-8859-6): Table fixed.
525
526 2006-10-01 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
527
528 * dired.el (dired-build-subdir-alist): Fix previous change.
529
530 2006-10-01 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se>
531
532 * simple.el (undo-elt-crosses-region): Fix the inequalities.
533
534 2006-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
535
536 * emacs-lisp/find-func.el (find-function-regexp): Don't match
537 "define-button-type".
538
539 * pcvs.el (cvs-update-header): Fix handling of extra newlines so that
540 they don't keep accumulating.
541
542 2006-10-01 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
543
544 * ffap.el (ffap-rfc-path): Change the address of the RFC
545 repository to ftp.rfc-editor.org, as ds.internic.net seems to be gone.
546
547 2006-10-01 Stephen Berman <Stephen.Berman@gmx.net>
548
549 * allout.el (allout-expose-topic): Rectify implementation of "+"
550 spec, so that bodies are not exposed with headlines.
551
552 2006-10-01 Ken Manheimer <ken.manheimer@gmail.com>
553
554 * allout.el (allout-current-depth): Do aberrent check only at or
555 below doublecheck depth.
556 (allout-chart-subtree): Make it explicit that LEVELS being nil
557 means unlimited depth. Drop undocumented support for LEVELS value
558 t meaning unlimited depth. (This is consistent with
559 allout-chart-to-reveal, but contrary to allout-show-children,
560 which needs to use nil to default to depth of 1.)
561 (allout-goto-prefix-doublechecked): Wrap long docstring line.
562 (allout-chart-to-reveal): Be explicit in docstring about meaning
563 of nil LEVELS, and drop support for LEVELS value t.
564 (allout-show-children): Translate the level spec used by this
565 routine to that used by allout-chart-subtree and
566 allout-chart-to-reveal.
567 (allout-show-to-offshoot): Retry once when stuck, after opening
568 subtree - improvements in discontinuity handling likely will
569 enable progress.
570
571 2006-09-30 Chong Yidong <cyd@stupidchicken.com>
572
573 * wid-edit.el (widget-button-click-moves-point): New variable.
574 (widget-button-click): If widget-button-click-moves-point is
575 non-nil, set point after performing the button action
576
577 * cus-edit.el (custom-mode): Set widget-button-click-moves-point.
578
579 2006-09-30 Martin Rudalics <rudalics@gmx.at>
580
581 * files.el (find-file-existing): Modify to not allow wildcards.
582
583 2006-09-30 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
584
585 * simple.el (undo-more): When undo information for the region is
586 exhausted, say "No further undo information FOR REGION".
587
588 2006-09-30 Michael Welsh Duggan <md5i@cs.cmu.edu>
589
590 * progmodes/sh-script.el (sh-prev-thing):
591 Take `sh-leading-keywords' into account.
592
593 2006-09-29 Glenn Morris <rgm@gnu.org>
594
595 * custom.el (defcustom): Doc fix.
596
597 * calendar/calendar.el (european-calendar-style):
598 Call european-calendar or american-calendar as needed when set.
599 (diary-view-entries, list-calendar-holidays): Move autoloads
600 before use.
601
602 2006-09-29 Juri Linkov <juri@jurta.org>
603
604 * progmodes/cperl-mode.el (cperl-after-expr-p): Don't move point
605 to nil if there is no previous property change.
606
607 2006-09-26 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
608
609 * cus-edit.el (custom-save-all): Switch to emacs-lisp mode before
610 saving anything to be sure that `forward-sexp' behaves correctly.
611
612 2006-09-29 Chong Yidong <cyd@stupidchicken.com>
613
614 * simple.el (line-move-finish): Ignore field boundaries if the
615 initial and final points have the same `field' property.
616
617 2006-09-29 Kim F. Storm <storm@cua.dk>
618
619 * ido.el (ido-file-internal): Only bind minibuffer-completing-file-name
620 to t while calling ido-read-internal.
621
622 2006-09-29 Carsten Dominik <dominik@science.uva.nl>
623
624 * textmodes/org.el (org-file-remote-p): Get regexp from list.
625 (org-archive-subtree): Remove erraneous `]' from character list.
626
627 2006-09-28 Jonathan Yavner <jyavner@member.fsf.org>
628
629 * ses.el (ses-in-print-area, ses-goto-data, ses-load)
630 (ses-reconstruct-all): Make undo of "insert row" work by keeping
631 markers for data-area and parameters-area.
632
633 2006-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
634
635 * progmodes/make-mode.el (makefile-mode): Don't disable jit-lock.
636
637 * font-lock.el (font-lock-after-change-function): Refontify next line
638 as well if end is at BOL.
639 (font-lock-extend-jit-lock-region-after-change): Be more careful to
640 only extend the region as much as needed.
641
642 2006-09-28 Richard Stallman <rms@gnu.org>
643
644 * comint.el (comint-mode): Bind font-lock-defaults non-nil.
645
646 * subr.el (insert-for-yank-1): Handle `font-lock-face' specially.
647
648 * international/mule.el (after-insert-file-set-coding):
649 If VISIT, don't let set-buffer-multibyte make undo info.
650
651 2006-09-28 Osamu Yamane <yamane@green.ocn.ne.jp> (tiny change)
652
653 * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
654 lines in base64-encoded authentication response.
655
656 2006-09-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
657
658 * progmode/ebnf2ps.el: Doc fix. Implement arrow spacing and scaling.
659 (ebnf-version): New version 4.3.
660 (ebnf-arrow-extra-width, ebnf-arrow-scale): New options.
661 (ebnf-prologue): Adjust PostScript programming.
662 (ebnf-begin-file, ebnf-insert-ebnf-prologue, ebnf-terminal-dimension1)
663 (ebnf-repeat-dimension, ebnf-except-dimension): Adjust code.
664
665 2006-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
666
667 * jit-lock.el (jit-lock-force-redisplay): Rename from
668 jit-lock-fontify-again, and undo the mistaken change I've just done.
669
670 * jit-lock.el (jit-lock-fontify-now): Don't fontify the empty text.
671 (jit-lock-fontify-again): Don't refontify text that's not displayed.
672
673 2006-09-26 Kenichi Handa <handa@m17n.org>
674
675 * startup.el (display-splash-screen): Allow a prefix argument.
676
677 2006-09-25 Jason Rumney <jasonr@gnu.org>
678
679 * subr.el (shell-quote-argument): Use DOS logic for Windows
680 shells with DOS semantics.
681
682 2006-09-24 Richard Stallman <rms@gnu.org>
683
684 * progmodes/compile.el (compilation-goto-locus-delete-o): New fn.
685 (compilation-goto-locus): Use compilation-goto-locus-delete-o
686 to delete the overlay. Put it on pre-command-hook.
687
688 * emacs-lisp/timer.el (timer-max-repeats): Doc fix.
689
690 * startup.el (fancy-splash-screens, normal-splash-screen):
691 Call the splash buffer *About GNU Emacs*.
692
693 * simple.el (next-error-highlight, next-error-highlight-no-select):
694 Default to 0.5.
695 (yank-excluded-properties): Add `fontified'.
696
697 * font-lock.el (font-lock-compile-keywords): Allow value of
698 syntax-begin-function to enable paren-column-0 highlighting.
699
700 2006-09-24 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
701
702 * dired.el (dired-build-subdir-alist): When file ends in colon,
703 don't exit the loop, just disregard that file.
704
705 2006-09-24 Chong Yidong <cyd@stupidchicken.com>
706
707 * simple.el (line-move-finish): Handle corner case for fields in
708 continued lines.
709 (line-move-1): Remove flawed test for that case.
710
711 2006-09-24 Ken Manheimer <ken.manheimer@gmail.com>
712
713 * icomplete.el (icomplete-simple-completing-p): Use the correct
714 name for the new variable, `icomplete-with-completion-tables'.
715 (file local variables): Remove superfluous setting.
716
717 2006-09-23 Jeff Miller <jmiller@cablespeed.com> (tiny change)
718
719 * calendar/appt.el (appt-check): Fix typo for appointments just
720 after midnight.
721
722 2006-09-23 Chong Yidong <cyd@stupidchicken.com>
723
724 * help.el (describe-key-briefly, describe-key): Don't expect an
725 extra up event if a down-event is generated by a popup menu.
726
727 2006-09-23 Michal Nazarewicz <mnazarewicz@gmail.com> (tiny change)
728
729 * textmodes/ispell.el (ispell-change-dictionary): Don't check the
730 local dictionary when changing the global dictionary.
731
732 2006-09-23 Ken Manheimer <ken.manheimer@gmail.com>
733
734 * icomplete.el (icomplete-with-completion-tables): List of
735 specialized completion tables with which icomplete should
736 operate. Include the new `internal-complete-buffer', so icomplete
737 works with interactive buffer-selection.
738 (icomplete-simple-completing-p): Add acceptance of specialized
739 completion tables listed in icomplete-with-completion-tables.
740
741 2006-09-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
742
743 * frame.el (focus-follows-mouse): Set default to nil on Mac.
744
745 * startup.el (command-line): Use `custom-reevaluate-setting' for
746 `focus-follows-mouse'.
747
748 2006-09-22 Richard Stallman <rms@gnu.org>
749
750 * cus-edit.el (custom-buffer-create-internal): In `emacs -q',
751 explain why Save is not available.
752
753 2006-09-22 Juanma Barranquero <lekktu@gmail.com>
754
755 * woman.el (woman0-so): Use `let*', not `let'.
756 (woman-horizontal-line): Remove unbalanced parenthesis.
757
758 2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
759
760 * woman.el: Make sure all the end-of-region markers we use have
761 a non-nil insertion-type.
762 (woman0-so): Move things around so we can use copy-marker.
763 (woman0-roff-buffer, woman2-process-escapes-to-eol, woman2-roff-buffer):
764 Adjust marker type.
765 (woman2-process-escapes): Check marker type.
766 (woman-horizontal-line): Dispense with the use of a marker.
767
768 2006-09-22 Jay Belanger <belanger@truman.edu>
769
770 * calc/calc-lang.el: Add Greek letters to math-variable-table
771 property of tex.
772
773 2006-09-22 Chong Yidong <cyd@stupidchicken.com>
774
775 * files.el (save-some-buffers-action-alist): Display diff in view-mode.
776
777 2006-09-22 Masatake YAMATO <jet@gyve.org>
778
779 * add-log.el (add-log-current-defun): Use `forward-sexp'
780 instead of `forward-word' to pick c++::symbol.
781 Reported by Herbert Euler <herberteuler@hotmail.com>.
782
783 2006-09-22 Kenichi Handa <handa@m17n.org>
784
785 * bindings.el: Fix setting self-insert-command for multibyte
786 characters in global-map.
787
788 2006-09-21 David Kastrup <dak@gnu.org>
789
790 * mouse.el (mouse-posn-property): Fix typo for `event-start' in
791 doc string.
792
793 2006-09-21 Kenichi Handa <handa@m17n.org>
794
795 * language/european.el ("Latin-1"): Add windows-1252 to
796 coding-priority.
797 ("German"): Likewise.
798
799 2006-09-21 Kim F. Storm <storm@cua.dk>
800
801 * emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
802 Suggested by Miles Bader.
803
804 * emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change. Use memql
805 instead of add-to-list in the simple case.
806
807 2006-09-20 Kenichi Handa <handa@m17n.org>
808
809 * isearch.el (isearch-process-search-char): Cancel the previous change.
810 (isearch-search-string): New function.
811 (isearch-search): Use isearch-search-string.
812 (isearch-lazy-highlight-search): Likewise.
813
814 2006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
815
816 * lpr.el (lpr-page-header-switches): Insert `*' at beginning of doc
817 string to become an option.
818
819 2006-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
820
821 * files.el (find-buffer-visiting): Don't get fooled by a nil inode.
822
823 2006-09-20 Kim F. Storm <storm@cua.dk>
824
825 * simple.el (line-move-partial): Call pos-visible-in-window-p with
826 position t instead of trying both window-end and window-end - 1.
827
828 2006-09-20 Carsten Dominik <dominik@science.uva.nl>
829
830 * textmodes/org.el (org-scan-tags): Find end of subtrees also in
831 hidden trees.
832
833 2006-09-20 David Kastrup <dak@gnu.org>
834
835 * mouse.el (mouse-posn-property): Improve doc string.
836 (mouse-on-link-p): Change buffers for function calls on links.
837
838 * menu-bar.el (clipboard-yank): Bomb out in interactive use if
839 buffer is read-only.
840
841 2006-09-20 Ken Manheimer <ken.manheimer@gmail.com>
842
843 * allout.el (allout-unprotected): Let inhibit-read-only only when
844 buffer-read-only isn't set.
845 (allout-annotate-hidden): Enable topic annotation during copies even
846 when the buffer is read-only, eg for topic copies. Ensure that the loop
847 advances, even when the span extends beyond the deletion region.
848 (allout-toggle-subtree-encryption): Use allout-structure-added-hook
849 rather than allout-exposure-changed-hook, as a stronger assertion.
850 (allout-keybindings-list): Add bindings for
851 allout-copy-line-as-kill and allout-copy-topic-as-kill.
852 (allout-copy-line-as-kill, allout-copy-topic-as-kill):
853 Copy wrappers for allout-kill-line and allout-kill-topic.
854 (allout-listify-exposed): Position correctly to accumulate lines.
855
856 2006-09-19 Chong Yidong <cyd@stupidchicken.com>
857
858 * simple.el (line-move-1): Escape field boundaries occurring
859 exactly at point. Update goal column if constrained to a field.
860 (line-move-finish): Escape field boundaries occurring exactly at point.
861
862 2006-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
863
864 * mouse.el (mouse-on-link-p): Tentatively fix last change.
865 (mouse-drag-vertical-line): Remove unused var `wconfig'.
866
867 2006-09-19 Kim F. Storm <storm@cua.dk>
868
869 * help.el (describe-key-briefly, describe-key): Simplify printing
870 of descriptions by using format and %S. Fix "is undefined"
871 messages to say "at that spot" for mouse events.
872
873 * simple.el (line-move-partial): Optimize. Try window-line-height
874 before posn-at-point to get vpos of current line.
875
876 2006-09-18 Michael Kifer <kifer@cs.stonybrook.edu>
877
878 * viper.el: Bump up version/date of update to reflect the substantial
879 changes done in August 2006.
880
881 * viper-cmd (viper-next-line-at-bol): Make sure button-at, push-button
882 are defined.
883
884 * ediff-util.el (ediff-add-to-history): New function.
885
886 * ediff.el: Use ediff-add-to-history instead of add-to-history.
887
888 2006-09-18 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
889
890 * textmodes/conf-mode.el (conf-space-mode): Doc fix.
891 Delete duplicate make-local-variable form.
892 (conf-space-keywords): Add autoload cookie.
893 Fix typo (`keywords', not `keyword').
894
895 2006-09-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
896
897 * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
898 x-gtk-file-dialog-help-text. Rename x-use-old-gtk-file-dialog
899 to x-gtk-use-old-file-dialog
900
901 2006-09-18 Richard Stallman <rms@gnu.org>
902
903 * wid-edit.el (widget-button-click): Handle non-mouse-motion events
904 that might come in during mouse tracking.
905
906 2006-09-18 Kim F. Storm <storm@cua.dk>
907
908 * simple.el (line-move-partial): Rework 2006-09-15 change to use
909 new window-line-height function. Further optimize by not calling
910 pos-visible-in-window-p for window-end when window-line-height
911 returns useful information.
912
913 2006-09-16 Richard Stallman <rms@gnu.org>
914
915 * textmodes/conf-mode.el (conf-mode-map): Use conf-space-keywords cmd.
916 (conf-space-mode): Don't handle prefix arg.
917 Delete conf-space-keywords-override code.
918 Use add-hook.
919 (conf-space-keywords): New command.
920 (conf-space-mode-internal): Be careful with imenu-generic-expression.
921 Delete conf-space-keywords-override code.
922 (conf-space-keywords-alist): Doc fix.
923 (conf-space-font-lock-keywords): Doc fix.
924 (conf-space-keywords-override): Var deleted.
925
926 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
927
928 * startup.el (fancy-splash-screens): Don't switch to the scratch
929 buffer; it may not be the next buffer.
930
931 2006-09-16 Romain Francoise <romain@orebokech.com>
932
933 * saveplace.el (load-save-place-alist-from-file): Use expanded name
934 in both messages.
935
936 2006-09-16 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se>
937
938 * progmodes/python.el (python-preoutput-filter):
939 Fix arg order to string-match.
940
941 2006-09-16 Richard Stallman <rms@gnu.org>
942
943 * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to
944 font-lock-compile-keywords.
945
946 * font-lock.el (font-lock-compile-keywords): Rename optional arg
947 to SYNTACTIC-KEYWORDS and reverse the sense. All callers changed.
948
949 2006-09-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
950
951 * cus-start.el (all): Add x-gtk-show-chooser-help-text.
952
953 * select.el (xselect-convert-to-string): If UTF8_STRING is requested
954 and the data doesn't look like UTF8, send STRING instead.
955
956 2006-09-16 Agustin Martin <agustin.martin@hispalinux.es>
957
958 * textmodes/flyspell.el (flyspell-check-region-doublons):
959 New function to detect duplicated words.
960 (flyspell-large-region): Use it.
961
962 2006-09-16 Chong Yidong <cyd@stupidchicken.com>
963
964 * simple.el (line-move-to-column): Revert 2006-08-03 change.
965
966 2006-09-16 Eli Zaretskii <eliz@gnu.org>
967
968 * help.el (describe-prefix-bindings): Use let, not let*.
969
970 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
971
972 * allout.el (allout-regexp, allout-line-boundary-regexp)
973 (allout-bob-regexp): Correct grouping and boundaries to fix
974 backwards traversal.
975 (allout-depth-specific-regexp, allout-depth-one-regexp):
976 New versions that exploit \\{M\\} regexp syntax, to avoid geometric or
977 worse time in allout-ascend.
978 (allout-doublecheck-at-and-shallower): Identify depth threshold
979 below which topics are checked for and disqualified by containment
980 discontinuities.
981 (allout-hotspot-key-handler): Correctly handle multiple-key
982 strokes. Remove some unused variables.
983 (allout-mode-leaders): Clarify that mode-specific comment-start
984 will be used.
985 (set-allout-regexp): Correctly regexp-quote allout regexps to
986 properly accept alternative header-leads and primary bullets with
987 regexp-specific characters (eg, C "/*", mathematica "(*").
988 Include new regular expressions among those configured.
989 (allout-infer-header-lead-and-primary-bullet):
990 Rename allout-infer-header-lead.
991 (allout-recent-depth): Manifest as a variable as well as a function.
992 (allout-prefix-data): Simplify into an inline instead of a macro,
993 assuming current match data rather than being explicitly passed
994 it. Establish allout-recent-depth value as well as
995 allout-recent-prefix-beginning and allout-recent-prefix-end.
996 (allout-aberrant-container-p): True when an item's immediate
997 offspring discontinuously contained. Useful for disqualifying
998 unintended topic prefixes, likely at low depths.
999 (allout-goto-prefix-doublechecked): Elaborate version of
1000 allout-goto-prefix which disqualifies aberrant pseudo-items.
1001 (allout-pre-next-prefix): Layer on top of lower-level routines, to
1002 get disqualification of aberrant containers.
1003 (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
1004 containers.
1005 (allout-beginning-of-current-entry): Position at start of buffer
1006 when in container (depth 0) entry.
1007 (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
1008 (allout-current-bullet): Strip text properties.
1009 (allout-get-prefix-bullet): Use right match groups.
1010 (allout-beginning-of-line, allout-next-heading):
1011 Disqualify aberrant containers.
1012 (allout-previous-heading): Disqualify aberrant containers, and
1013 change to regular (rather than inline) function, to allow
1014 self-recursion.
1015 (allout-get-invisibility-overlay): Increment so progress is made
1016 when the first overlay is not the sought one.
1017 (allout-end-of-prefix): Disqualify aberrant containers.
1018 (allout-end-of-line): Cycle something like allout-beginning-of-line.
1019 (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
1020 outline.el outlines) functional again. Change the primary bullet
1021 along with the header-lead - level 1 new-style bullets now work.
1022 Engage allout-before-change-handler in mainline emacs, not just
1023 xemacs, to do undo handling.
1024 (allout-before-change-handler): Expose undo changes occurring in
1025 hidden regions. Use allout-get-invisibility-overlay instead of
1026 reimplementing it inline.
1027 (allout-chart-subtree): Use start rather than end of prefix in
1028 charts. Use allout-recent-depth variable.
1029 (allout-chart-siblings): Disqualify aberrant topics.
1030 (allout-beginning-of-current-entry): Position correctly.
1031 (allout-ascend): Use new allout-depth-specific-regexp and
1032 allout-depth-one-regexp for linear instead of O(N^2) or worse
1033 behavior.
1034 (allout-ascend-to-depth): Depend on allout-ascend, rather than
1035 reimplementing an algorithm.
1036 (allout-up-current-level): Depend on allout-ascend, rather than
1037 reimplementing an algorithm. Return to start-point if we fail.
1038 (allout-descend-to-depth): Use allout-recent-depth variable
1039 instead of function.
1040 (allout-next-sibling): On traversal of numerous intervening
1041 topics, resort to economical allout-next-sibling-leap.
1042 (allout-next-sibling-leap): Specialized version of
1043 allout-next-sibling that uses allout-ascend cleverly, to depend on
1044 a regexp search to leap large numbers of contained topics, rather
1045 than arbitrarily many one-by-one traversals.
1046 (allout-next-visible-heading): Disqualify aberrant topics.
1047 (allout-previous-visible-heading): Position consistently when
1048 interactive.
1049 (allout-forward-current-level): Base on allout-previous-sibling
1050 rather than (differently) reimplmenting the algorithm. Remove some
1051 unused variables.
1052 (allout-solicit-alternate-bullet): Present default choice stripped
1053 of text properties.
1054 (allout-rebullet-heading): Use bullet stripped of text properties.
1055 Register changes using allout-exposure-change-hook.
1056 Disregard aberrant topics.
1057 (allout-shift-in): With universal-argument, make topic a peer of
1058 it's former offspring. Simplify the code by separating out
1059 allout-shift-out functionality.
1060 (allout-shift-out): With universal-argument, make offspring peers
1061 of their former container, and its siblings. Implement the
1062 functionality here, rather than inappropriately muddling the
1063 implementation of allout-shift-in.
1064 (allout-rebullet-topic): Respect additional argument for new
1065 parent-child separation function.
1066 (allout-yank-processing): Use allout-ascend directly.
1067 (allout-show-entry): Disqualify aberrant topics.
1068 (allout-show-children): Handle discontinuous children gracefully,
1069 extending the depth being revealed to expose them and posting a
1070 message indicating the situation.
1071 (allout-show-to-offshoot): Remove obsolete and incorrect comment.
1072 Leave cursor in correct position.
1073 (allout-hide-current-subtree): Use allout-ascend directly.
1074 Disqualify aberrant topics.
1075 (allout-kill-line, allout-kill-topic): Preserve exposure layout in
1076 a way that the yanks can restore it, as used to happen.
1077 (allout-yank-processing): Restore exposure layout as recorded by
1078 allout-kill-*, as used to happen.
1079 (allout-annotate-hidden, allout-hide-by-annotation): New routines
1080 for preseving and restoring exposure layout across kills.
1081 (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
1082 (allout-encrypt-string): Strip text properties.
1083 Rearranged order and outline-headings for some of the
1084 miscellaneous functions.
1085 (allout-resolve-xref): No need to quote the error name in the
1086 condition-case handler section.
1087 (allout-flatten): Classic recursive (and recursively intensive,
1088 without tail-recursion) list-flattener, needed by allout-shift-out
1089 when confronted with discontinuous children.
1090
1091 2006-09-16 Jason Rumney <jasonr@gnu.org>
1092
1093 * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
1094 on ms-windows.
1095 (dnd-open-unc-file): Remove.
1096 (dnd-open-local-file): Mention in doc string that it also handles
1097 remote files if the system natively supports unc file-names.
1098
1099 2006-09-15 Kim F. Storm <storm@cua.dk>
1100
1101 * help.el (describe-key): Handle C-h k in *Help* buffer; collect
1102 all necessary information about the event before erasing *Help*.
1103
1104 * simple.el (line-move-partial): Use window-line-visiblity to
1105 quickly check whether last line is partially visible, and only do
1106 the hard (and slow) part in that case.
1107
1108 2006-09-15 Jay Belanger <belanger@truman.edu>
1109
1110 * COPYING: Replace "Library Public License" by "Lesser Public
1111 License" throughout.
1112
1113 2006-09-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1114
1115 * term/x-win.el (x-menu-bar-open): New function for F10.
1116
1117 2006-09-15 Chong Yidong <cyd@stupidchicken.com>
1118
1119 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1120 Disallow filenames containing " -" to avoid confusion with libtool
1121 compilation messages. Suggested by Stefan Monnier.
1122
1123 2006-09-15 David Kastrup <dak@gnu.org>
1124
1125 * mouse-sel.el (mouse-sel-follow-link-p): Use event position
1126 instead of buffer position for `mouse-on-link-p'.
1127
1128 * mouse.el (mouse-posn-property): New function looking up the
1129 properties at a click position in overlays and text properties in
1130 either buffer or strings.
1131 (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
1132 of both `follow-link' as well as `mouse-face' properties.
1133 (mouse-drag-track): Check `mouse-on-link-p' on event position, not
1134 buffer position.
1135
1136 * help.el (describe-key-briefly): When reading a down-event on
1137 mode lines or scroll bar, swallow the following up event, too.
1138 Use the new mouse sensitity of `key-binding' for lookup.
1139 (describe-key): The same here.
1140
1141 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
1142
1143 * play/life.el (life-patterns): Add a few more interesting patterns.
1144 (life-setup): Force `show-trailing-whitespace' to nil.
1145
1146 2006-09-14 Richard Stallman <rms@gnu.org>
1147
1148 * startup.el (fancy-splash-text): Change text to improve alignment.
1149 (fancy-splash-screens): Don't set non-standard tab width.
1150 Bind cursor-type temporarily, and make it easy to patch to
1151 preserve the splash buffer.
1152 (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
1153 (fancy-splash-screens): Display echo-area message explicitly.
1154 Don't set fancy-splash-help-echo.
1155
1156 * simple.el (line-number-mode): Group mode-line instead of
1157 editing-basics.
1158 (column-number-mode, size-indication-mode): Likewise.
1159
1160 * faces.el (mode-line-faces): Group mode-line instead of modeline.
1161
1162 * time.el (display-time): Group mode-line instead of modeline.
1163
1164 * cus-edit.el (mode-line): Rename from modeline. All uses changed.
1165
1166 2006-09-14 Chong Yidong <cyd@stupidchicken.com>
1167
1168 * startup.el (fancy-splash-text): Move editing instructions to
1169 fancy-splash-head.
1170 (fancy-splash-head): Issue editing instructions.
1171 (fancy-splash-screens): Fixup whitespace.
1172
1173 2006-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
1174
1175 * bindings.el (mode-line-buffer-identification-keymap):
1176 Remove duplicate line.
1177
1178 2006-09-14 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1179
1180 * ido.el (ido-ignore-item-p): Allow any kind of functions in
1181 ignore lists.
1182
1183 2006-09-14 Kim F. Storm <storm@cua.dk>
1184
1185 * jit-lock.el (jit-lock-fontify-again): New function.
1186 (jit-lock-fontify-now): Use it instead of lambda form.
1187
1188 2006-09-13 Agustin Martin <agustin.martin@hispalinux.es>
1189
1190 * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
1191 (flyspell-auto-correct-word): Make ispell-filter local to these
1192 functions. Check that ispell-filter has new stuff before calling
1193 ispell-parse-output.
1194
1195 2006-09-13 Kim F. Storm <storm@cua.dk>
1196
1197 * simple.el (line-move-partial): Optimize.
1198
1199 2006-09-13 Richard Stallman <rms@gnu.org>
1200
1201 * thingatpt.el (thing-at-point-bounds-of-url-at-point):
1202 Delete spurious backquote.
1203
1204 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
1205
1206 * net/rcirc.el (rcirc-print): Fix last change.
1207
1208 2006-09-12 Jay Belanger <belanger@truman.edu>
1209
1210 * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
1211
1212 2006-09-07 Ryan Yeske <rcyeske@gmail.com>
1213
1214 * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
1215 rcirc-show-maximum-output.
1216 (rcirc-mode): Remove window-scroll-function hook.
1217 (rcirc-scroll-to-bottom): Remove function.
1218 (rcirc-print): Recenter so point stays at the bottom of the window
1219 if point was already there.
1220
1221 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
1222
1223 * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
1224 not to "t".
1225 * progmodes/compile.el (compilation-start): Likewise.
1226 * progmodes/idlwave.el (idlwave-rescan-asynchronously):
1227 Don't use expand-file-name on invocation-directory, since this
1228 might mishandle special characters in invocation-directory.
1229
1230 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1231
1232 * pcvs-defs.el: Remove * in defcustom's docstrings.
1233
1234 2006-09-12 Nick Roberts <nickrob@snap.net.nz>
1235
1236 * progmodes/compile.el (compilation-directory-properties):
1237 Doc fix for help-echo.
1238
1239 2006-09-12 Lars Hansen <larsh@soem.dk>
1240
1241 * desktop.el (desktop-read): Add comment.
1242
1243 2006-09-12 Kim F. Storm <storm@cua.dk>
1244
1245 * simple.el (next-error-highlight, next-error-highlight-no-select):
1246 Fix spelling error.
1247
1248 * subr.el (sit-for): Rework to use input-pending-p and cond.
1249 Return nil input is pending on entry also for SECONDS <= 0.
1250 (while-no-input): Use input-pending-p instead of sit-for.
1251
1252 2006-09-11 Richard Stallman <rms@gnu.org>
1253
1254 * simple.el (next-error-highlight, next-error-highlight-no-select):
1255 Fix custom type and doc strings.
1256
1257 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1258
1259 * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
1260 (diff-apply-hunk): Use it to ask for confirmation.
1261
1262 2006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
1263
1264 * emacs-lisp/cl.el (pushnew): Add missing `,'.
1265
1266 2006-09-11 David Kastrup <dak@gnu.org>
1267
1268 * help.el (string-key-binding, describe-key-briefly)
1269 (describe-key): Remove `string-key-binding' and its callers since
1270 `key-binding' already caters for the proper lookup now.
1271
1272 2006-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1273
1274 * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
1275 (cfengine-mode): Use it. Fix \ syntax to be like /.
1276
1277 * bindings.el (mode-line-buffer-identification-keymap):
1278 Move initialization into declaration.
1279
1280 2006-09-10 Kim F. Storm <storm@cua.dk>
1281
1282 * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
1283 (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
1284 (ido-delete-file-at-head): Pass head of ido-matches through ido-name
1285 in case of merged directories. Reported by Micha\e,Ak\e(Bl Cadilhac.
1286
1287 2006-09-10 Richard Stallman <rms@gnu.org>
1288
1289 * dired-aux.el: Handle errors in recursive copy usefully.
1290 (dired-create-files-failures): New variable.
1291 (dired-copy-file): Remove condition-case.
1292 (dired-copy-file-recursive): Check for errors on all file
1293 operations, and add them to dired-create-files-failures.
1294 Check file file-date-erorr here too.
1295 (dired-create-files): Check dired-create-files-failures
1296 and report those errors too.
1297
1298 * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
1299
1300 * subr.el (add-to-list): New argument COMPARE-FN.
1301
1302 2006-09-10 Reiner Steib <Reiner.Steib@gmx.de>
1303
1304 * filecache.el (file-cache-add-directory)
1305 (file-cache-add-directory-list, file-cache-add-file)
1306 (file-cache-add-directory-using-find)
1307 (file-cache-add-directory-using-locate)
1308 (file-cache-add-directory-recursively): Add autoloads.
1309
1310 2006-09-09 Richard Stallman <rms@gnu.org>
1311
1312 * textmodes/conf-mode.el (conf-space-mode):
1313 Use hack-local-variables-hook instead of calling hack-local-variables.
1314 (conf-space-keywords-override): New variable.
1315 (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
1316 (conf-space-mode): Always make conf-space-keywords and
1317 conf-space-keywords-override local.
1318 Call conf-space-mode-internal directly as well as via hook.
1319
1320 2006-09-09 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
1321
1322 * progmodes/python.el (python-font-lock-keywords): Add `self' and other
1323 quasi-keywords.
1324
1325 2006-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
1326
1327 * progmodes/python.el: Quieten the compiler about hippie-expand vars.
1328 (python-send-string): Be slightly more careful about adding \n.
1329
1330 * startup.el (normal-splash-screen): Don't display the buffer if we'll
1331 kill it right away anyway.
1332
1333 2006-09-09 Eli Zaretskii <eliz@gnu.org>
1334
1335 * international/codepage.el (cp850-decode-table): Fix a few codes.
1336 (cp858-decode-table): New variable.
1337
1338 2006-09-09 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
1339
1340 * net/ldap.el (ldap-search-internal): Doc fix.
1341
1342 2006-09-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1343
1344 * play/life.el (life-display-generation): Test for input manually if
1345 `sleeptime' is negative or null.
1346
1347 * lpr.el (lpr-page-header-switches): Page title switch is one of them.
1348 (print-region-1): Substitute `%s' with the page title.
1349
1350 2006-09-09 Matt Hodges <MPHodges@member.fsf.org>
1351
1352 * locate.el (locate-current-search): New variable.
1353 (locate): Set buffer local value. Use current buffer if it is
1354 in Locate mode.
1355 (locate-mode): Disable undo here.
1356 (locate-do-setup): Use locate-current-filter from buffer to be killed.
1357 (locate-update): Use locate-current-search and locate-current-filter.
1358
1359 2006-09-08 David Kastrup <dak@gnu.org>
1360
1361 * desktop.el (desktop-read): When loading a desktop, disable
1362 saving it while the load progresses, and switch off a pending lazy
1363 load by calling `desktop-lazy-abort'.
1364
1365 2006-08-27 Martin Rudalics <rudalics@gmx.at>
1366
1367 * window.el (mouse-autoselect-window-timer)
1368 (mouse-autoselect-window-position)
1369 (mouse-autoselect-window-window)
1370 (mouse-autoselect-window-now): New vars.
1371 (mouse-autoselect-window-cancel)
1372 (mouse-autoselect-window-select)
1373 (mouse-autoselect-window-start): New functions.
1374 (handle-select-window): Call `mouse-autoselect-window-start' when
1375 delayed window autoselection is enabled.
1376
1377 * cus-start.el (mouse-autoselect-window): Handle delayed window
1378 autoselection.
1379
1380 * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
1381 commands after which it is allowed to print in the echo area.
1382
1383 2006-09-08 Richard Stallman <rms@gnu.org>
1384
1385 * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
1386
1387 * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
1388 (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
1389
1390 * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
1391 (cancel-timer-internal): Add doc string.
1392 (cancel-function-timers): Doc fix.
1393 (with-timeout-handler, timer-event-last*): Add doc strings.
1394
1395 * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
1396
1397 * files.el (risky-local-variable-p): Match ...-bindat-spec.
1398
1399 * dired.el (dired-log-summary): Add doc string.
1400
1401 * cus-edit.el (custom-menu-create): Bind deactivate-mark here
1402 (custom-group-menu-create): Not here.
1403
1404 2006-09-08 Carsten Dominik <dominik@science.uva.nl>
1405
1406 * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
1407
1408 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1409
1410 * term/mac-win.el: (show-hide-font-panel): New HI command ID symbol.
1411 (mac-apple-event-map): Define its handler.
1412
1413 2006-09-07 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
1414
1415 * net/ldap.el (ldap-search-internal): Handle `auth' key.
1416
1417 2006-09-07 Magnus Henoch <mange@freemail.hu>
1418
1419 * net/rcirc.el (rcirc-activity-string): Don't quote value in case
1420 clause.
1421
1422 2006-09-07 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1423
1424 * info.el (Info-index): Bind completion-ignore-case.
1425
1426 2006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
1427
1428 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
1429 previous commit.
1430 (inferior-prolog-guess-flavor): New fun left out of previous commit.
1431 (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
1432 burp in dedicated windows.
1433 (inferior-prolog-self-insert-command): New command.
1434 (inferior-prolog-mode-map): Use it.
1435
1436 2006-09-07 Reiner Steib <Reiner.Steib@gmx.de>
1437
1438 * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
1439
1440 * international/code-pages.el: Add cp858.
1441
1442 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1443
1444 * dnd.el: Fix bootstrapping.
1445
1446 2006-09-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1447
1448 * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
1449 (dnd-open-remote-url): New function.
1450 (dnd-open-remote-file-function): Set to dnd-open-remote-url if
1451 not windows-nt.
1452
1453 2006-09-07 Jason Rumney <jasonr@gnu.org>
1454
1455 * dnd.el (dnd-open-remote-file-function): New variable.
1456 (dnd-open-unc-file): New function.
1457 (dnd-open-file): Call dnd-open-remote-file-function if set.
1458
1459 2006-09-06 Daiki Ueno <ueno@unixuser.org>
1460
1461 * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
1462 pgg-passphrase-coding-system rather than locale-coding-system.
1463 * pgg-def.el (pgg-passphrase-coding-system): New user option.
1464
1465 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1466
1467 * progmodes/prolog.el: Remove * in docstrings.
1468 (prolog-program-name): Add SWI prolog.
1469 (prolog-mode-menu): New menu.
1470 (prolog-mode): Set comment-add.
1471 (prolog-indent-line): Simplify. Use indent-line-to.
1472 (inferior-prolog-buffer): New var.
1473 (inferior-prolog-run, inferior-prolog-process): New funs.
1474 (run-prolog, switch-to-prolog): Rewrite, using them.
1475 (prolog-consult-region): Use inferior-prolog-buffer.
1476 (inferior-prolog-load-file): New function.
1477 (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
1478
1479 * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
1480 last word, if it's not the end of the paragraph.
1481
1482 * files.el (abbreviate-file-name): Don't mistakenly match newlines in
1483 file name.
1484
1485 2006-09-06 Ralf Angeli <angeli@caeruleus.net>
1486
1487 * frame.el (display-mm-dimensions-alist): New defcustom.
1488 (display-mm-height, display-mm-width): Use it.
1489
1490 2006-09-06 Simon Josefsson <jas@extundo.com>
1491
1492 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
1493
1494 2006-09-06 Nick Roberts <nickrob@snap.net.nz>
1495
1496 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
1497 (gdb-var-list-children-regexp-1): Tweak regexps to catch full
1498 string values.
1499
1500 2006-09-06 Kim F. Storm <storm@cua.dk>
1501
1502 * simple.el (line-move-partial): New function to do vscrolling for
1503 partially visible images / tall lines. Rewrite based on code
1504 previously in line-move. Simplify backwards vscrolling.
1505 (line-move): Use it. Simplify.
1506
1507 2006-09-05 Kim F. Storm <storm@cua.dk>
1508
1509 * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
1510
1511 2006-09-05 Chong Yidong <cyd@stupidchicken.com>
1512
1513 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1514 Process the `gcc-include' after the `gnu' rule.
1515
1516 2006-09-05 Kim F. Storm <storm@cua.dk>
1517
1518 * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
1519
1520 2006-09-05 Daiki Ueno <ueno@unixuser.org>
1521
1522 * pgg.el (pgg-clear-string): Alias to clear-string for backward
1523 compatibility.
1524
1525 * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
1526 inhibit-redisplay; encode passphrase with locale-coding-system.
1527
1528 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
1529
1530 * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
1531
1532 2006-09-05 Nick Roberts <nickrob@snap.net.nz>
1533
1534 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
1535 (gdb-var-list-children-regexp): Make type field optional.
1536
1537 * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
1538 e.g public, protected in C++.
1539
1540 2006-09-04 John Paul Wallington <jpw@pobox.com>
1541
1542 * simple.el (completion-show-help): New defcustom.
1543 (completion-setup-function): Heed it.
1544
1545 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu>
1546
1547 * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
1548
1549 2006-09-04 Richard Stallman <rms@gnu.org>
1550
1551 * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
1552 (rsf-min-region-to-spam-list): Doc fix.
1553 (rsf-add-content-type-field): Doc fix.
1554
1555 * simple.el (kill-region): Explicitly test there is a region.
1556
1557 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
1558
1559 * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
1560 sendmail in several common directories.
1561
1562 * mail/sendmail.el (sendmail-program): Moved here from paths.el.
1563
1564 * paths.el (sendmail-program): Removed.
1565
1566 2006-09-04 Daiki Ueno <ueno@unixuser.org>
1567
1568 * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
1569 Das. http://article.gmane.org/gmane.emacs.gnus.general/49947
1570 http://article.gmane.org/gmane.emacs.gnus.general/50457
1571
1572 2006-09-03 Chong Yidong <cyd@stupidchicken.com>
1573
1574 * cus-edit.el (custom-group-menu-create): Avoid deactivating the
1575 mark after running the menu filter.
1576
1577 2006-09-03 Juri Linkov <juri@jurta.org>
1578
1579 * international/quail.el (quail-defrule-internal): Add a check
1580 if a key is a vector.
1581
1582 2006-09-02 Juri Linkov <juri@jurta.org>
1583
1584 * man.el (Man-topic-history): New variable.
1585 (man): Use it.
1586
1587 * woman.el (woman-topic-history): Change defvar to defvaralias
1588 for symbol `Man-topic-history'.
1589
1590 * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
1591 `comint-last-output-start' is a marker by using `markerp' and
1592 check if it has a position by using `marker-position', and use
1593 this position for `goto-char'.
1594
1595 * international/quail.el (quail-defrule-internal): Add missing
1596 `error' call for null key.
1597
1598 2006-09-02 Ryan Yeske <rcyeske@gmail.com>
1599
1600 * rcirc.el (rcirc-keywords): New variable.
1601 (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
1602 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
1603 variables.
1604 (rcirc-responses-no-activity): New function.
1605 (rcirc-handler-generic): Check for responses in above.
1606 (rcirc-process-command): Add ?: character to arguments of raw
1607 server commands.
1608 (rcirc-format-response-string): Use `rcirc-bright-nicks' and
1609 `rcirc-dim-nicks'.
1610 (rcirc-gray-toggle): Remove unused variable.
1611 (rcirc-print): Remove some tracking logic, which is moved into
1612 markup functions.
1613 (rcirc-activity-types): Was `rcirc-activity-type', now a list of
1614 types.
1615 (rcirc-activity-string): Look for 'keyword in activity-types.
1616 (rcirc-window-configuration-change): Don't erase overlay-arrow
1617 unnecessarily.
1618 (rcirc-add-or-remove): New function.
1619 (rcirc-cmd-ignore): Use it.
1620 (rcirc-message-leader): Remove unused function.
1621 (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
1622 (rcirc-add-face): New function.
1623 (rcirc-facify): Use rcirc-add-face.
1624 (rcirc-url-regexp): Add parens.
1625 (rcirc-map-regexp): Remove function.
1626 (rcirc-mangle-regexp): Remove function.
1627 (rcirc-markup-text-functions): New variable.
1628 (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
1629 (rcirc-markup-body-text, rcirc-markup-attributes)
1630 (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
1631 (rcirc-markup-bright-nicks): New markup handler functions.
1632 (rcirc-nick-in-message-full-line): New face.
1633 (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
1634 (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
1635
1636 2006-09-02 Martin Rudalics <rudalics@gmx.at>
1637
1638 * cus-start.el (hscroll-margin, hscroll-step)
1639 (mode-line-in-non-selected-windows, mouse-autoselect-window)
1640 (x-use-underline-position-properties): Change version to "22.1"
1641 since they will appear there for the first time.
1642
1643 2006-09-01 Chong Yidong <cyd@stupidchicken.com>
1644
1645 * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
1646
1647 2006-08-31 Richard Stallman <rms@gnu.org>
1648
1649 * cus-edit.el (custom-save-variables): Slight cleanup.
1650 (Custom-no-edit): Renamed from custom-no-edit.
1651 (Custom-newline): Renamed from custom-newline.
1652 (custom-mode-map): Use new names.
1653
1654 * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
1655 about customization, rather than M-x customize, in the doc string
1656 made for the defcustom.
1657
1658 * emacs-lisp/trace.el (trace-function-background): Doc fix.
1659
1660 2006-08-31 Romain Francoise <romain@orebokech.com>
1661
1662 * dired-x.el (dired-guess-shell-alist-default): Update.
1663
1664 2006-08-31 Michael Mauger <mmaug@yahoo.com>
1665
1666 * custom.el (custom-theme-set-variables): Autoload packages before
1667 sorting the variables.
1668
1669 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu>
1670
1671 * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
1672 chars if XEmacs.
1673 (viper-after-change-undo-hook): Check if undo-in-progress is bound.
1674
1675 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
1676
1677 * progmodes/python.el (python-eldoc-function): Re-enable quit while
1678 waiting for process.
1679
1680 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1681
1682 * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
1683 results in ASCII-only string, encode original one directly.
1684
1685 2006-08-29 Romain Francoise <romain@orebokech.com>
1686
1687 * startup.el (normal-splash-screen, fancy-splash-screens):
1688 Make buffer read-only and arrange to enter view mode if necessary.
1689
1690 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
1691
1692 * hl-line.el (hl-line): New face.
1693 (hl-line-face): Use it.
1694
1695 * image-mode.el (image-mode): Fix last fix.
1696 Suggested by Kim F. Storm.
1697
1698 2006-08-29 Michael Albinus <michael.albinus@gmx.de>
1699
1700 Sync with Tramp 2.0.54.
1701
1702 * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
1703 of `=', because `tramp-get-remote-gid' might not always return an
1704 integer when expected.
1705 (tramp-register-file-name-handlers): `partial-completion-mode' is
1706 unknown to XEmacs.
1707 (tramp-time-diff): Don't use `floor', it might fail for large
1708 differences.
1709 (tramp-handle-make-auto-save-file-name): For Emacs 21, set
1710 `tramp-auto-save-directory' if unset in order to guarantee unique
1711 auto-save file names.
1712
1713 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
1714
1715 * image-mode.el (image-mode): Display image as text on a terminal.
1716
1717 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1718
1719 * progmodes/python.el (python-send-command): Simplify.
1720 (run-python): Don't generate a new buffer unless `new' was specified.
1721 Make sure we send `import emacs' to the proper process.
1722
1723 * progmodes/python.el (python-send-command): Don't wait for the command
1724 to terminate. Don't fiddle with compilation-parsing-end.
1725
1726 2006-08-28 Chong Yidong <cyd@stupidchicken.com>
1727
1728 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
1729 Insert commentary after first line summary.
1730
1731 * woman.el (woman-follow): New function, based on `man-follow'.
1732 (woman-mode-map): Use it.
1733
1734 * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
1735 since ibuffer-do-sort-by-recency does not define a sorter.
1736
1737 2006-08-28 Kim F. Storm <storm@cua.dk>
1738
1739 * find-dired.el (find-dired): Use shell-quote-argument to properly
1740 escape ( and ) args. Also use it on {} and ; args in default
1741 value of find-ls-option string.
1742 (find-grep-dired): Use shell-quote-argument on {} and ; args.
1743
1744 2006-08-27 Michael Olson <mwolson@gnu.org>
1745
1746 * emacs-lisp/tq.el: Small grammar fix in comments.
1747 (tq-enqueue): Check for existence of queue rather than the
1748 head queue item's question, which was a no-op.
1749 (tq-filter, tq-process-buffer): Make sure the process buffer
1750 exists before making it the current buffer.
1751
1752 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1753
1754 * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
1755 (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
1756 (special-event-map): Apply 2006-08-16 change for x-win.el.
1757
1758 2006-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
1759
1760 * progmodes/python.el (python-send-receive): Wait in the
1761 process's buffer so as to check the right buffer-local variables.
1762
1763 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
1764
1765 * emacs-lisp/checkdoc.el: Remove * in defcustoms.
1766 (defgroup checkdoc): Move to beginning.
1767
1768 * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
1769 (python-preoutput-continuation): Remove.
1770 (python-preoutput-filter): Simplify correspondingly.
1771 Remove handling of _emacs_ok. Make sure we skip _emacs_out's prompts.
1772 Loop around to catch embedded _emacs_out output.
1773 (run-python): Send the import&print command on a single line.
1774 (python-send-command): Send command&print on a single line.
1775 (python-send-string): Only add double \n if needed.
1776 (python-send-receive): Loop until the result comes.
1777 (python-mode-running): Defvar it.
1778 (python-setup-brm): Remove unused var `menu'.
1779 Only bind py-mode-map and `features' around brm-init.
1780 (python-calculate-indentation): Remove unused var `point'.
1781 (python-beginning-of-defun): Remove unused var `def-line'.
1782
1783 2006-08-25 Richard Stallman <rms@gnu.org>
1784
1785 * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
1786
1787 2006-08-25 Michael Kifer <kifer@cs.stonybrook.edu>
1788
1789 * viper.el (viper-set-hooks): Use frame bindings for
1790 viper-vi-state-cursor-color.
1791 (viper-non-hook-settings): Don't set default
1792 mode-line-buffer-identification.
1793
1794 * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
1795 (viper-set-cursor-color-according-to-state)
1796 (viper-get-saved-cursor-color-in-replace-mode)
1797 (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
1798 viper-emacs-state-cursor-color.
1799
1800 * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
1801 (viper-undo): Use point if undo-beg-posn is nil.
1802 (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
1803 (viper-after-change-undo-hook): Don't use
1804 viper-emacs-state-cursor-color by default.
1805 (viper-undo): More sensible positioning after undo.
1806
1807 * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
1808 (viper-emacs-state-cursor-color): Default to nil, since this feature
1809 doesn't work well yet.
1810
1811 * ediff-mult.el (ediff-intersect-directories)
1812 (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
1813 always expand filenames.
1814
1815 2006-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
1816
1817 * tumme.el: Remove * in defcustoms's docstrings.
1818
1819 2006-08-24 Chong Yidong <cyd@stupidchicken.com>
1820
1821 * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
1822 Accept internal time format for SECS arg.
1823 (timer-relative-time): Doc fix.
1824
1825 * jit-lock.el: "Stealth fontification by requeuing timers" patch,
1826 adapted from Martin Rudalics.
1827 (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
1828 (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
1829 (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
1830 using sit-for.
1831
1832 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
1833
1834 * cus-start.el (all): Add `overline-margin' and
1835 `x-underline-at-descent-line'.
1836
1837 2006-08-24 Kim F. Storm <storm@cua.dk>
1838
1839 * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
1840 to mean "use find -exec"; nil now unambiguously means auto-detect.
1841 (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
1842 Use shell-quote-argument to build grep-find-command and
1843 grep-find-template.
1844 (rgrep): Use shell-quote-argument to properly quote arguments to find.
1845 Reported by Tom Seddon.
1846
1847 2006-08-23 Chong Yidong <cyd@stupidchicken.com>
1848
1849 * startup.el (fancy-splash-head): Give instructions for dismissing
1850 the splash screen for default startup too.
1851 (display-startup-echo-area-message, fancy-splash-screens)
1852 (use-fancy-splash-screens-p): New arg hide-on-input. If nil, show
1853 all splash text at once and keep the splash buffer around.
1854 (command-line-1): Give display-startup-echo-area-message a t arg.
1855
1856 2006-08-23 Carsten Dominik <dominik@science.uva.nl>
1857
1858 * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
1859 gnus frame is selected.
1860
1861 2006-08-23 Nick Roberts <nickrob@snap.net.nz>
1862
1863 * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
1864
1865 2006-08-22 Kim F. Storm <storm@cua.dk>
1866
1867 * ido.el (ido-set-matches-1): Fix full matching for subdirs.
1868 Add suffix matching for subdirs.
1869
1870 2006-08-22 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
1871
1872 * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
1873 mouse-yank-at-point is non-nil.
1874
1875 2006-08-22 Nick Roberts <nickrob@snap.net.nz>
1876
1877 * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
1878 a bit wider and remove fringes to fit initial output on line.
1879
1880 2006-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1881
1882 * frame.el (blink-cursor-end): Only ignore the error we care about.
1883 (blink-cursor-mode): Use blink-cursor-end to simplify the code.
1884
1885 2006-08-21 Richard Stallman <rms@gnu.org>
1886
1887 * whitespace.el (whitespace-cleanup): Doc fix.
1888
1889 2006-08-20 Ryan Yeske <rcyeske@gmail.com>
1890
1891 * net/rcirc.el (rcirc-show-maximum-output): New var.
1892 (rcirc-buffer-process): If no buffer argument is supplied, use
1893 current-buffer.
1894 (rcirc-complete-nick): Complete to the last completed nick first.
1895 (rcirc-mode): Preserve the value of `rcirc-urls' across
1896 connections. Setup scroll function.
1897 (rcirc-scroll-to-bottom): New function.
1898 (rcirc-print): Use nick syntax around regexp work.
1899 Notice dim-nicks speaking only if they say our nick.
1900 (rcirc-update-activity-string): Do not show the modeline indicator
1901 if there are no live rcirc processes.
1902 (rcirc-cmd-ignore): Ignore case.
1903 (rcirc-browse-url-at-point): Fix off-by-one error.
1904
1905 2006-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
1906
1907 * progmodes/python.el: Remove * in defcustom docstrings.
1908 (run-python, python-proc, python-try-complete): Use derived-mode-p.
1909 (python-mode): Set tab-width and indent-tabs-mode.
1910
1911 2006-08-20 Dave Love <fx@gnu.org>
1912
1913 * progmodes/python.el: Update to Dave Love's latest version.
1914 (python-font-lock-keywords, python-mode): Don't use
1915 font-lock-syntax-table, but match symbol elements explicitly instead.
1916 (python-mode-map): Add help, and a few more key bindings.
1917 (python-skip-comments/blanks): Move out of comments as well.
1918 (python-continuation-line-p): Behave better with unbalanced parens.
1919 (python-blank-line-p): New fun.
1920 (python-open-block-statement-p): Don't use a heuristic.
1921 (python-outdent-p): Better handle blocks-in-the-same-line.
1922 (python-calculate-indentation): Misc improvements.
1923 (python-comment-indent): Remove.
1924 (python-block-pairs): New var.
1925 (python-first-word): New fun.
1926 (python-indentation-levels): Handle more common cases.
1927 (python-indent-line-1): Add `leave' argument.
1928 (python-indent-region): New fun.
1929 (python-skip-out): New fun.
1930 (python-beginning-of-statement, python-end-of-statement): Use it.
1931 (python-next-statement): Return correct count even at eob.
1932 (python-end-of-block): Fix paren-typo.
1933 (python-imenu-create-index): Add module variables.
1934 (run-python): Add `new' arg.
1935 Check we're at a prompt before returning.
1936 (python-send-command): Move to end of buffer.
1937 Wait for prompt to return.
1938 (python-set-proc): New fun.
1939 (python-imports): New var.
1940 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
1941 (python-eldoc-function): Try to move out of arg list.
1942 (python-outline-level): Offset by 1.
1943 (python-find-imports): New fun.
1944 (python-symbol-completions): Use python-imports.
1945 (python-module-path, ffap-alist): Add support for ffap.
1946 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
1947 (pythin-insert-*, python-default-template, python-expand-template):
1948 Add templates/skeletons.
1949 (python-setup-brm): Support for Bicycle Repair Man.
1950 (python-abbrev-syntax-table): New var.
1951 (python-abbrev-pc-hook, python-pea-hook): New funs.
1952
1953 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
1954
1955 * frame.el (blink-cursor-start): Set timer first.
1956 (blink-cursor-end): Ignore timer cancelling errors.
1957 Suggested by Ken Manheimer.
1958
1959 2006-08-20 Juanma Barranquero <lekktu@gmail.com>
1960
1961 * newcomment.el (comment-box): Call `comment-normalize-vars'.
1962 Add autoload cookie.
1963
1964 2006-08-20 Richard Stallman <rms@gnu.org>
1965
1966 * simple.el (line-number-at-pos): Doc fix.
1967
1968 * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
1969 timer-activate-when-idle, so timer can run before Emacs becomes
1970 non-idle again.
1971
1972 2006-08-18 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
1973
1974 * whitespace.el (whitespace-cleanup-internal): New optional arg
1975 REGION-ONLY. If it's non-nil, modify the message to the user
1976 accordingly.
1977 (whitespace-cleanup-region): Call whitespace-cleanup-internal with
1978 a non-nil argument.
1979
1980 2006-08-18 Gustav H\e,Ae\e(Bllberg <gustav@gmail.com> (tiny change)
1981
1982 * rect.el (spaces-string): Simplify and add doc string.
1983
1984 2006-08-17 Romain Francoise <romain@orebokech.com>
1985
1986 * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
1987
1988 2006-08-17 Richard Stallman <rms@gnu.org>
1989
1990 * compare-w.el (compare-windows): lambda's take an arg and pass
1991 it to compare-windows-skip-whitespace.
1992
1993 2006-08-17 Martin Rudalics <rudalics@gmx.at>
1994
1995 * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
1996 the right buffer.
1997
1998 2006-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
1999
2000 * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
2001 removed files.
2002
2003 2006-08-17 Nick Roberts <nickrob@snap.net.nz>
2004
2005 * progmodes/gdb-ui.el (gdb-locals-watch-map)
2006 (gdb-locals-watch-map-1): Suppress keymap first.
2007 (gdb-edit-locals-map-1): New variable.
2008 (gdb-edit-locals-value): New function.
2009 (gdb-stack-list-locals-handler): Use them.
2010
2011 2006-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
2012
2013 * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
2014 cursor would normally be drawn in the fringe.
2015
2016 * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
2017 Reported by Martin Rudalics <rudalics@gmx.at>.
2018
2019 2006-08-16 Richard Stallman <rms@gnu.org>
2020
2021 * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
2022 (special-event-map): Process drag-n-drop events this way.
2023
2024 * simple.el (move-beginning-of-line): Test whether fields
2025 would prevent motion back to line's first visible character.
2026 If so, stop where the fields would stop the motion.
2027
2028 * newcomment.el (comment-indent): Fully update INDENT
2029 before checking to see if it will change the text.
2030
2031 * cus-edit.el (custom-newline): New function.
2032 (custom-mode-map): Bind newline to custom-newline.
2033
2034 * compare-w.el (compare-windows): Factor compare-ignore-whitespace
2035 into ignore-whitespace.
2036 Check each buffer for its skip-function.
2037 Handle compare-windows-skip-whitespace special-case test
2038 by returning t from default skip function.
2039
2040 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
2041
2042 * textmodes/org.el (org-clock-special-range)
2043 (org-clock-update-time-maybe): New functions.
2044 (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
2045 not only a-z.
2046 (org-agenda-get-blocks): Allow multiple blocks per headline.
2047 (org-timestamp-change): Call `org-clock-update-time-maybe'.
2048 (org-export-html-title-format)
2049 (org-export-html-toplevel-hlevel): New options.
2050 (org-export-language-setup): Add support for Czech.
2051 (org-mode, org-insert-todo-heading, org-find-visible)
2052 (org-find-invisible, org-invisible-p, org-invisible-p2)
2053 (org-back-to-heading, org-on-heading-p, org-up-heading-all)
2054 (org-show-subtree, org-show-entry, org-make-options-regexp):
2055 Remove compatibility support for old outline-mode.
2056 (org-check-occur-regexp): Funtion removed.
2057 (org-on-heading-p, org-back-to-heading): Made defalias.
2058 (org-set-local): New defsubst.
2059 (org-set-regexps-and-options, org-mode)
2060 (org-set-font-lock-defaults, org-edit-agenda-file-list)
2061 (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
2062 (org-remember-apply-template, org-table-edit-field)
2063 (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
2064 (org-set-autofill-regexps): Use `org-set-local'.
2065 (org-table-eval-formula): Fix bug with parsing of display flags.
2066
2067 2006-08-15 Nick Roberts <nickrob@snap.net.nz>
2068
2069 * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
2070 frame with fringe arrow. Suggested by Simon Marshall
2071 <simon.marshall@misys.com>.
2072 (gdb-stack-position): New variable.
2073 (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
2074 (gdb-frames-mode): Set gdb-stack-position to nil.
2075 Add to overlay-arrow-variable-list
2076 (gdb-reset): Delete gdb-stack-position from above list.
2077
2078 2006-08-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2079
2080 * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
2081 read only.
2082
2083 2006-08-13 Romain Francoise <romain@orebokech.com>
2084
2085 * cus-theme.el (customize-create-theme)
2086 (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
2087
2088 * filesets.el (filesets-add-buffer): Ditto.
2089
2090 * pcvs.el (cvs-change-cvsroot): Ditto.
2091
2092 2006-08-13 Nick Roberts <nickrob@snap.net.nz>
2093
2094 * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
2095 (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
2096 (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
2097 expressions.
2098 (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
2099 Only search till end of line.
2100 Add face to function names in case of no filename.
2101 Add face to variable names of watchpoints.
2102
2103 2006-08-12 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
2104
2105 * cus-start.el <indent-tabs-mode>: Move to the `indent'
2106 customization group.
2107
2108 2006-08-12 Ken Manheimer <ken.manheimer@gmail.com>
2109
2110 * allout.el (allout-prior-bindings, allout-added-bindings):
2111 Remove, after long deprecation.
2112 (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
2113 Add customization vars controlling allout-beginning-of-line and
2114 allout-end-of-line conveniences.
2115 (allout-header-prefix, allout-use-mode-specific-leader)
2116 (allout-use-mode-specific-leader, allout-mode-leaders):
2117 Revise docstrings.
2118 (allout-infer-header-lead): Change to be an alias for
2119 allout-infer-header-lead-and-primary-bullet.
2120 (allout-infer-header-lead-and-primary-bullet): New version of
2121 allout-infer-header-lead which assigns the primary bullet to the
2122 same as the header lead, when its being changed.
2123 (allout-infer-body-reindent): Apply regexp-quote instead of
2124 unconditionally prepending "\\", so that all literal
2125 allout-header-prefix and allout-primary-bullet strings are
2126 properly handled.
2127 (allout-add-resumptions): Add optional qualifier for extending or
2128 appending to existing values, rather than replacing them.
2129 (allout-view-change-hook): Clarify docstring.
2130 (allout-exposure-change-hook): Take explicit arguments, via
2131 run-hook-with-args.
2132 (allout-structure-added-hook)
2133 (allout-structure-deleted-hook)
2134 (allout-structure-shifted-hook): New hooks analogous to
2135 allout-exposure-change-hook for other kinds of structural outline
2136 edits.
2137 (allout-encryption-plaintext-sanitization-regexps): New encryption
2138 customization variable, by which cooperating modes can provde
2139 massage of the plaintext without actually being passed it.
2140 (allout-encryption-ciphertext-rejection-regexps)
2141 (allout-encryption-ciphertext-rejection-ceiling): New encryption
2142 customization variables, by which cooperating modes can prohibit
2143 rare but possible ciphertext patterns from fouling their
2144 operation, with actually being passed the ciphertext.
2145 (allout-mode): Run activation and deactivation hooks after the
2146 minor-mode variable has been toggled, to clarify the mode
2147 disposition. The new encryption ciphertext rejection variable is
2148 used to ensure that the ciphertext does not contain text that
2149 would be recognized as outline structural elements by allout.
2150 Substite allout-beginning-of-line and allout-end-of-line for
2151 conventionall beginning-of-line and end-of-line bindings.
2152 If allout-old-style-prefixes is non-nil, don't nullify it on mode
2153 activation!
2154 (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
2155 (allout-end-of-line): Respect `allout-end-of-line-cycles'.
2156 (allout-chart-subtree): Implement new mode, charting only the
2157 visible items in the subtree, when new 'visible' parameter is non-nil.
2158 (allout-end-of-subtree): Properly handle the last item in the buffer.
2159 (allout-pre-command-business, allout-command-counter):
2160 Increment an advertised counter so that cooperating enhancements can
2161 track revisions of items.
2162 (allout-open-topic): Run allout-structure-added-hook with suitable
2163 arguments.
2164 (allout-shift-in): Run allout-structure-shifted-hook with suitable
2165 arguments.
2166 (allout-shift-out): Fix doubling for negative args and ensure call
2167 of allout-structure-shifted-hook by solely using allout-shift-in.
2168 (allout-kill-line, allout-kill-topic):
2169 Run allout-structure-deleted-hook with suitable arguments.
2170 (allout-yank-processing): Run allout-structure-added-hook with
2171 proper arguments.
2172 (allout-yank): Enclose activity in allout-unprotected.
2173 (allout-flag-region): Run allout-exposure-change-hook with
2174 suitable arguments, instead of making the callee infer the arguments.
2175 (allout-encrypt-string):
2176 Support allout-encryption-plaintext-sanitization-regexps,
2177 allout-encryption-ciphertext-rejection-regexps, and
2178 allout-encryption-ciphertext-rejection-ceiling. Indicate correct
2179 en/de cryption mode in symmetric encryption failure message.
2180 (allout-obtain-passphrase): Use copy-sequence to get a distinct
2181 copy of the passphrase, and don't zero it or we'll corrupt the
2182 stashed copy.
2183 (allout-create-encryption-passphrase-verifier)
2184 (allout-verify-passphrase): Respect the new signature for
2185 allout-encrypt-string.
2186 (allout-get-configvar-values): Convenience for getting a
2187 configuration variable value and handling its absence gracefully.
2188
2189 2006-08-11 Romain Francoise <romain@orebokech.com>
2190
2191 * obsolete/zone-mode.el: Delete.
2192
2193 2006-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
2194
2195 * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
2196
2197 2006-08-11 Thien-Thi Nguyen <ttn@gnu.org>
2198
2199 * emacs-lisp/bindat.el (bindat-ip-to-string):
2200 Use `format-network-address' if possible.
2201
2202 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2203
2204 * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
2205
2206 2006-08-10 Chong Yidong <cyd@stupidchicken.com>
2207
2208 * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
2209 restore unread-command-events here.
2210 (edebug-display): Do it here, to detect sit-for interruptions.
2211
2212 2006-08-10 Romain Francoise <romain@orebokech.com>
2213
2214 * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
2215 (dns-mode-soa-auto-increment-serial): New user option.
2216 (dns-mode-soa-maybe-increment-serial): New function.
2217 (dns-mode): Add the latter to `write-contents-functions'.
2218
2219 * obsolete/zone-mode.el: Move to obsolete/ from net/.
2220 Delete autoload cookies.
2221
2222 2006-08-10 John Wiegley <johnw@newartisans.com>
2223
2224 * eshell/em-glob.el (eshell-glob-chars-list)
2225 (eshell-glob-translate-alist): Add support for [^g] in character globs.
2226
2227 2006-08-10 Richard Stallman <rms@gnu.org>
2228
2229 * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
2230 (facemenu-set-face): Doc fix.
2231 (facemenu-listed-faces): Doc fix.
2232
2233 2006-08-09 Chong Yidong <cyd@stupidchicken.com>
2234
2235 * avoid.el (mouse-avoidance-animating-pointer): New var.
2236 (mouse-avoidance-nudge-mouse): Use it.
2237 (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
2238 (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
2239 (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
2240 Don't activate if currently animating. All callers changed.
2241
2242 2006-08-09 John Wiegley <johnw@newartisans.com>
2243
2244 * calendar/timeclock.el (timeclock-use-elapsed): Added a new
2245 variable, which causes timeclock to report elapsed time worked,
2246 instead of just work remaining.
2247
2248 2006-08-09 Kenichi Handa <handa@m17n.org>
2249
2250 * international/latexenc.el (latexenc-find-file-coding-system):
2251 Fix for the case that the 2nd element of arg-list is a cons.
2252
2253 2006-08-08 Chong Yidong <cyd@stupidchicken.com>
2254
2255 * info.el (Info-fontify-node): Handle preceding `in' for note
2256 reference hiding rules.
2257
2258 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2259
2260 * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
2261 mistake a closing " for an opening one.
2262
2263 2006-08-07 Dan Nicolaescu <dann@ics.uci.edu>
2264
2265 * term/xterm.el (terminal-init-xterm): Add more key bindings.
2266
2267 2006-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2268
2269 * complete.el (PC-do-completion): Filter out completions matching
2270 completion-ignored-extensions before checking whether there are
2271 multiple completions.
2272 Don't use `list' unnecessarily when building completion tables.
2273
2274 2006-08-06 Richard Stallman <rms@gnu.org>
2275
2276 * help.el (describe-mode): Make minor mode list more concise.
2277
2278 2006-08-05 Chong Yidong <cyd@stupidchicken.com>
2279
2280 * bindings.el: Give mode-line-format, mode-line-modes, and
2281 mode-line-position `standard-value' properties.
2282
2283 2006-08-05 Eli Zaretskii <eliz@gnu.org>
2284
2285 * buff-menu.el (list-buffers-noselect): For Info buffers, use
2286 "(file)node" instead of the file name.
2287
2288 2006-08-05 Richard Stallman <rms@gnu.org>
2289
2290 * faces.el (escape-glyph): Doc fix.
2291
2292 2006-08-04 Kenichi Handa <handa@m17n.org>
2293
2294 * international/mule-diag.el (describe-font): Improve docstring
2295 and error message. Use frame-parameter (not frame-parameters).
2296
2297 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2298
2299 * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
2300 Correctly mark the end-of-docstring char.
2301
2302 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
2303
2304 * simple.el (line-move-to-column): Constrain move-to-column to
2305 current field.
2306
2307 2006-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2308
2309 * font-lock.el (font-lock-beg, font-lock-end)
2310 (font-lock-extend-region-functions): New vars.
2311 (font-lock-extend-region-multiline)
2312 (font-lock-extend-region-wholelines): New functions.
2313 (font-lock-default-fontify-region): Use them.
2314 (font-lock-extend-jit-lock-region-after-change): Only round up
2315 if font-lock-default-fontify-region will do it as well.
2316
2317 * font-lock.el (font-lock-extend-after-change-region-function):
2318 Rename from font-lock-extend-region-function.
2319 (font-lock-extend-region): Remove by inlining at call sites.
2320 (font-lock-after-change-function): Don't needlessly round up to a whole
2321 number of lines.
2322 (font-lock-extend-jit-lock-region-after-change): Be more careful about
2323 the boundary conditions and the interactions between the various ways
2324 to extend the region.
2325
2326 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
2327
2328 * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
2329 modification status when forcing the second redisplay.
2330
2331 2006-08-03 Kim F. Storm <storm@cua.dk>
2332
2333 * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
2334
2335 2006-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
2336
2337 * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
2338 doesn't look like a file name.
2339
2340 * complete.el (PC-expand-many-files): Avoid signalling an error when
2341 the current directory doesn't exist. Reported by Micha\e,Ak\e(Bl Cadilhac.
2342
2343 2006-08-02 Andreas Schwab <schwab@suse.de>
2344
2345 * bindings.el (mode-line-format): Simplify reference to vc-mode.
2346
2347 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
2348
2349 * bindings.el (map): Make mode-line-buffer-identification-keymap
2350 before defining propertized-buffer-identification.
2351
2352 2006-08-01 Richard Stallman <rms@gnu.org>
2353
2354 * bindings.el (mode-line-format): Adjust spacing around vc-mode.
2355
2356 2006-08-02 Nick Roberts <nickrob@snap.net.nz>
2357
2358 * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
2359 default value.
2360 (gdb-find-source-frame): New function.
2361 (menu): Add to menu bar.
2362
2363 2006-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
2364
2365 * font-core.el (font-lock-extend-region-function)
2366 (font-lock-extend-region): Move to font-lock.el.
2367
2368 * font-lock.el (font-lock-extend-region-function)
2369 (font-lock-extend-region): Move from font-core.el. Simplify.
2370
2371 * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
2372 if needed.
2373 (jit-lock-start, jit-lock-end): New dynamic scoped vars.
2374 (jit-lock-after-change-extend-region-functions): New hook.
2375 (jit-lock-after-change): Use it instead of hard-coding font-lock code.
2376
2377 * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
2378 (font-lock-turn-on-thing-lock): Use it.
2379
2380 * longlines.el (longlines-show-region): Make it work on read-only
2381 buffers as well.
2382
2383 2006-08-01 Nick Roberts <nickrob@snap.net.nz>
2384
2385 * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
2386
2387 2006-07-31 Richard Stallman <rms@gnu.org>
2388
2389 * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
2390 (vhdl-speedbar-display-projects): Update old obsolete
2391 speedbar variable names.
2392
2393 2006-07-31 Nick Roberts <nickrob@snap.net.nz>
2394
2395 * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
2396 (gdb-stopped): Use it.
2397
2398 * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
2399
2400 2006-07-29 Chong Yidong <cyd@stupidchicken.com>
2401
2402 * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
2403 for load-history elements.
2404
2405 2006-07-29 Eli Zaretskii <eliz@gnu.org>
2406
2407 * files.el (convert-standard-filename): For Cygwin, replace
2408 characters not allowed in Windows file names.
2409 (make-auto-save-file-name): Add Cygwin to the list of systems
2410 where the auto-save file name needs to be run through
2411 convert-standard-filename.
2412
2413 2006-07-29 Lennart Borgman <lennart.borgman.073@student.lu.se>
2414
2415 * window.el (bw-get-tree): Don't integerp subtree if it's nil.
2416
2417 2006-07-28 Richard Stallman <rms@gnu.org>
2418
2419 * bindings.el (mode-line-frame-identification)
2420 (propertized-buffer-identification): Centralize the code
2421 to initialize the variable.
2422
2423 * progmodes/grep.el (grep-default-command): Catch errors from
2424 wildcard-to-regexp.
2425
2426 2006-07-29 Kim F. Storm <storm@cua.dk>
2427
2428 * progmodes/grep.el (grep-tag-default): New function.
2429 (grep-default-command, grep-read-regexp): Use it.
2430 (grep-read-files): Use car of grep-files-history or grep-files-aliases
2431 as default if nothing else applies.
2432
2433 2006-07-28 Bill Atkins <atkinw@rpi.edu> (tiny change)
2434
2435 * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
2436 Throw error if buffer is not in Dired and Wdired mode, respectively.
2437
2438 2006-07-28 Chong Yidong <cyd@stupidchicken.com>
2439
2440 * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
2441 self-insert-command keys don't activate buttons.
2442 (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
2443
2444 2006-07-29 Nick Roberts <nickrob@snap.net.nz>
2445
2446 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
2447 faces for enable character.
2448
2449 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
2450
2451 * Makefile.in (recompile): Update comment to reflect change
2452 on 2004-04-21.
2453
2454 2006-07-27 Richard Stallman <rms@gnu.org>
2455
2456 * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
2457 (customize-package-emacs-version): Change msg when pkg has no entry.
2458 (custom-no-edit): On a button, do like widget-button-press.
2459
2460 2006-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2461
2462 * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
2463 S-tab and C-S-tab.
2464
2465 2006-07-28 Nick Roberts <nickrob@snap.net.nz>
2466
2467 * progmodes/which-func.el (which-function): Fix documentation/
2468 comment typo.
2469
2470 2006-07-26 Richard Stallman <rms@gnu.org>
2471
2472 * textmodes/ispell.el (ispell-word): If we replace the word,
2473 move point to the end. Insert before deleting.
2474
2475 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
2476
2477 * subr.el (sit-for): Use new SECONDS arg of read-event instead of
2478 a timer.
2479
2480 2006-07-26 Mathias Dahl <mathias.dahl@gmail.com>
2481
2482 * tumme.el (tumme-backward-image): Add prefix argument. Add error
2483 when at first image.
2484 (tumme-forward-image): Add prefix argument. Add error when at last
2485 image.
2486
2487 2006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
2488
2489 * tabify.el (tabify-regexp): Use more specific regexps.
2490 (tabify): Avoid modifying the buffer unnecessarily.
2491
2492 2006-07-25 Mathias Dahl <mathias.dahl@gmail.com>
2493
2494 * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
2495 (tumme-format-properties-string): Handle empty `buf'.
2496 (tumme-get-comment): Change variable names inside `let'.
2497 Add missing `let' variable that cause font-lock problems.
2498 (tumme-write-comments): Change variable names inside `let'.
2499 Add missing `let' variable that cause font-lock problems.
2500 (tumme-forward-image): Rename from `tumme-forward-char'.
2501 (tumme-backward-image): Rename from `tumme-backward-char'.
2502
2503 2006-07-25 Masatake YAMATO <jet@gyve.org>
2504
2505 * progmodes/ld-script.el (ld-script-keywords)
2506 (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
2507 and add comments.
2508
2509 2006-07-25 Nick Roberts <nickrob@snap.net.nz>
2510
2511 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
2512 (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
2513 (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
2514 for status indicator.
2515
2516 2006-07-24 Richard Stallman <rms@gnu.org>
2517
2518 * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
2519
2520 * subr.el (dolist, dotimes): Use interned symbols for locals.
2521 (--dotimes-limit--, --dolist-tail--): New defvars.
2522 (looking-back): Doc fix.
2523
2524 * replace.el (replace-match-string-symbols): Handle dotted lists.
2525
2526 2006-07-24 mathias <mathias@mattis>
2527
2528 * tumme.el (tumme-write-tags): Add.
2529 (tumme-write-comments): Add.
2530 (tumme-tag-files): Change to use `tumme-write-tags'.
2531 (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
2532 (tumme-dired-comment-files): Change to use `tumme-write-comments'.
2533 (tumme-save-information-from-widgets): Change to use
2534 `tumme-write-comments' and `tumme-write-tags'.
2535 (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
2536 (tumme-write-tag): Remove.
2537 (tumme-write-comment): Remove.
2538 (tumme-display-previous-thumbnail-original): Remove empty line.
2539 (tumme-widget-list): Add punctuation.
2540
2541 2006-07-24 mathias <mathias.dahl@gmail.com>
2542
2543 * tumme.el (tumme-line-up): Add an extra check for end of buffer.
2544
2545 2006-07-24 Daiki Ueno <ueno@unixuser.org>
2546
2547 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
2548 letters from the end. Thanks to "David Smith" <davidsmith@acm.org>
2549 and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
2550
2551 2006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
2552
2553 * mouse.el (mouse-on-link-p): Doc fix.
2554
2555 2006-07-23 Nick Roberts <nickrob@snap.net.nz>
2556
2557 * emacs-lisp/find-func.el (find-function-search-for-symbol):
2558 Handle "C-h f `".
2559
2560 2006-07-22 Dan Nicolaescu <dann@ics.uci.edu>
2561
2562 * ibuffer.el (ibuffer-formats): Use left alignment for the mode
2563 column.
2564
2565 2006-07-22 Matt Hodges <MPHodges@member.fsf.org>
2566
2567 * textmodes/table.el: Add move-beginning-of-line and
2568 move-end-of-line to Point Motion Only Group.
2569
2570 2006-07-22 Eric Hanchrow <offby1@blarg.net>
2571
2572 * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
2573
2574 2006-07-22 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2575
2576 * startup.el (user-mail-address): Initialize from the `EMAIL'
2577 environment variable first. Document this.
2578 (command-line): Ditto.
2579
2580 2006-07-22 Nick Roberts <nickrob@snap.net.nz>
2581
2582 * help-mode.el (help-function-def, help-variable-def)
2583 (help-face-def): Print a message in the minibuffer.
2584
2585 2006-07-21 Dan Nicolaescu <dann@ics.uci.edu>
2586
2587 * term/xterm.el (terminal-init-xterm): Fix key bindings
2588 syntax. Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
2589
2590 2006-07-21 Eli Zaretskii <eliz@gnu.org>
2591
2592 * dos-w32.el (find-buffer-file-type-coding-system): Support calls
2593 where `(nth 1 command)' is a cons cell. Doc fix.
2594
2595 * textmodes/po.el (po-find-charset): Doc fix.
2596
2597 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com>
2598
2599 * allout.el (allout-unprotected, allout-e-o-prefix-p)
2600 (allout-beginning-of-current-line, allout-end-of-current-line)
2601 (allout-next-visible-heading, allout-open-topic)
2602 (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
2603 (allout-flag-current-subtree, allout-show-to-offshoot)
2604 (allout-hide-current-entry, allout-show-current-branches)
2605 (allout-hide-region-body, allout-old-expose-topic)
2606 (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
2607 (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
2608 containing `beginning-of-line' and `end-of-line' with
2609 `inhibit-field-text-motion' t.
2610
2611 2006-07-21 Eli Zaretskii <eliz@gnu.org>
2612
2613 * frame.el (focus-follows-mouse): Document that it doesn't have
2614 any effect on MS-Windows.
2615
2616 2006-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
2617
2618 * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
2619
2620 2006-07-20 Jay Belanger <belanger@truman.edu>
2621
2622 * calc.el (calc-previous-alg-entry): Remove variable.
2623
2624 * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
2625 New variables.
2626 (calc-alg-entry): Use `calc-alg-entry-history'.
2627 (calc-do-quick-calc): Use `calc-quick-calc-history'.
2628 Remove reference to `calc-previous-alg-entry'.
2629 (calcAlg-edit, calcAlg-enter): Remove reference to
2630 `calc-previous-alg-entry'.
2631 (calcAlg-previous): Use `previous-history-element' instead of
2632 `calc-previous-alg-entry'.
2633 (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
2634 Change keybinding for `calcAlg-plus-minus', add keybindings for
2635 `previous-history-element' and `next-history-element'.
2636
2637 * calc-rewr.el (calc-match): Remove reference to
2638 `calc-previous-alg-entry'.
2639
2640 * calc-sel.el (calc-selection-history): New variable.
2641 (calc-enter-selection, calc-sel-mult-both-sides)
2642 (calc-sel-add-both-sides): Use `calc-selection-history'.
2643
2644 * calc-map.el (calc-get-operator-history): New variable.
2645 (calc-get-operator): Use `calc-get-operator-history'.
2646
2647 * calcalg3.el (calc-curve-fit-history): New variable.
2648 (calc-curve-fit): Use `calc-curve-fit-history'.
2649
2650 2006-07-20 Kenichi Handa <handa@m17n.org>
2651
2652 * international/mule-cmds.el (select-safe-coding-system): Fix the
2653 way of deciding eol-type of the coding system.
2654
2655 2006-07-20 Alan Mackenzie <acm@muc.de>
2656
2657 * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
2658 (c-lang-setvar): New macro.
2659 (c-make-init-lang-vars-fun): Use the initialization forms in
2660 c-emacs-variable-inits in addition to those in c-lang-variable-inits.
2661 (comment-start, comment-end, comment-start-skip): Change these from
2662 c-lang-defvar's to c-lang-setvar's.
2663
2664 * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
2665 which calls make-local-variable on the elements of
2666 c-emacs-variable-inits.
2667 (c-init-language-vars-for): Call this new macro.
2668
2669 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
2670
2671 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
2672 Try to rule out false positives due to time stamps.
2673 (compilation-mode-font-lock-keywords): Remove rules made redundant
2674 because of the above change. Add `segmentation fault' to the known and
2675 highlighted compilation termination messages.
2676
2677 2006-07-19 Kim F. Storm <storm@cua.dk>
2678
2679 * progmodes/grep.el (grep-find-ignored-directories):
2680 Add .svn and _darcs to list.
2681
2682 2006-07-19 Mathias Dahl <mathias.dahl@gmail.com>
2683
2684 * dired.el (dired-mode-map): Add key binding `C-te' for
2685 `tumme-dired-edit-comment-and-tags'.
2686
2687 * tumme.el (tumme-display-thumbnail-original-image): Make sure
2688 image display buffer is displayed before call to
2689 `tumme-display-image.
2690 (tumme-dired-display-image): Make sure image display buffer is
2691 displayed before call to `tumme-display-image.
2692 (tumme-mouse-display-image): Make sure image display buffer is
2693 displayed before call to `tumme-display-image.
2694 (tumme-widget-list): Add.
2695 (tumme-dired-edit-comment-and-tags): Add.
2696 (tumme-save-information-from-widgets): Add.
2697
2698 2006-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
2699
2700 * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
2701
2702 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
2703
2704 * progmodes/sh-script.el (sh-font-lock-keywords-1):
2705 Revert inadvertently installed patch hunk.
2706
2707 * progmodes/compile.el (compilation-find-file): Handle the
2708 cases where the user selects a non-existent file.
2709
2710 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
2711
2712 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
2713
2714 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
2715
2716 * subr.el (sit-for): Just sleep-for if noninteractive.
2717
2718 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
2719
2720 * emacs-lisp/autoload.el (make-autoload): Use new arg.
2721
2722 * custom.el (custom-autoload): Add `noset' argument.
2723 (custom-push-theme): Don't autoload the variable, let callers do it.
2724 (custom-theme-set-variables): Autoload the variable if necessary.
2725
2726 * cus-edit.el (custom-variable-state-set): If the variable was
2727 originally set outside custom, but to the same value as the default,
2728 consider it to be standard.
2729
2730 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
2731 file *before* telling Emacs to add the autoloads, in case it fails.
2732
2733 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
2734 Use `cond', push', and `dolist'.
2735
2736 2006-07-17 Richard Stallman <rms@gnu.org>
2737
2738 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
2739 Add defvars to silence warnings.
2740
2741 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
2742
2743 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2744 Don't highlight "Compiling file" messages as error.
2745
2746 * dired-aux.el (dired-compress-file): Confirm again if gzipped
2747 file already exists.
2748
2749 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
2750
2751 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
2752 entry, don't assign to free var; simply return the extracted filename.
2753 (ff-treat-as-special): Incorporate common preamble from callers.
2754 (ff-other-file-name, ff-find-the-other-file):
2755 Update call to ff-treat-as-special.
2756
2757 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
2758
2759 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
2760
2761 * tumme.el (tumme-get-comment): Fix bug.
2762
2763 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
2764
2765 * files.el: Remove spurious * in docstrings.
2766
2767 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
2768
2769 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
2770 grammar.
2771 (allout-beginning-of-current-line): Beware beginning of buffer.
2772 Also, a comment is simplified.
2773 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
2774 when appropriate. (This fix enables use for other than
2775 bullet-hotspot operation.)
2776 (allout-hide-current-subtree): While escalating to sibling-close,
2777 make sure to situate on a topic.
2778
2779 2006-07-14 Kim F. Storm <storm@cua.dk>
2780
2781 * emulation/cua-base.el (cua-delete-selection)
2782 (cua-toggle-set-mark): New defcustoms.
2783 (cua-rectangle-modifier-key): Add `alt' modifier.
2784 (cua-replace-region): Don't delete if cua-delete-selection is nil.
2785 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
2786 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
2787
2788 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
2789
2790 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
2791
2792 * allout.el: Require 'cl during byte-compilation/interactive load,
2793 for the `assert' macro.
2794 (allout-mode-deactivate-hook): New hook, run when allout mode
2795 deactivates.
2796 (allout-developer): New allout customization subgroup.
2797 (allout-run-unit-tests-on-load): New allout-developer
2798 customization variable, when true allout unit tests are run towards
2799 end of file load/eval.
2800 (allout-inhibit-auto-fill): Disable auto-fill activity even during
2801 auto-fill-mode.
2802 (allout-resumptions): Remove, to be replaced by...
2803 (allout-add-resumptions): Register variable settings to be
2804 reinstated by `allout-do-resumptions'. The settings are made
2805 buffer-local, but the locality/globality of the suspended setting
2806 is restored on resumption.
2807 (allout-do-resumptions): Reinstate all settings suspended using
2808 `allout-add-resumptions'.
2809 (allout-test-resumptions): Unit tests (and intermediate variables)
2810 for resumptions.
2811 (allout-tests-globally-unbound, allout-tests-globally-true)
2812 (allout-tests-locally-true): Intermediate variables for
2813 resumptions unit tests.
2814 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
2815 (allout-exposure-category): Replaces 'allout-overlay-category variable.
2816 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
2817 instead of retired `allout-resumptions'. For hook functions, use
2818 `local' parameter so hook settings are created and removed as
2819 buffer-local settings. Revise (resumptions) setting
2820 auto-fill-function so it is set only if already active. (The
2821 related fill-function settings are all made in either case, so
2822 that activating auto-fill-mode activity will have the custom
2823 allout-mode behaviors (hanging indent on topics, if configured for it).
2824 Remove all allout-exposure-category overlays on mode deactivation.
2825 (allout-hotspot-key-handler): New function extracted from
2826 `allout-pre-command-business', so the functionality can be used
2827 for other purposes, eg as a binding in an overlay.
2828 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
2829 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
2830 customization variable.
2831 (allout-run-unit-tests): Run the (currently quite small)
2832 repertoire of unit tests. Called just before the provide iff user
2833 has customized `allout-run-unit-tests-on-load' non-nil.
2834
2835 2006-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
2836
2837 * emacs-lisp/authors.el (authors-aliases): Update.
2838
2839 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
2840
2841 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
2842 gdb-source-window. Add dedicated argument.
2843 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
2844 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
2845 (gdb-display-threads-buffer, gdb-display-memory-buffer)
2846 (gdb-display-locals-buffer): Use it.
2847
2848 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
2849 Set gdb-source-window.
2850
2851 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
2852
2853 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
2854 minor modes, redundant with the custom-autoload line above.
2855
2856 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
2857
2858 * longlines.el (longlines-post-command-function): Handle open-line too.
2859
2860 2006-07-12 Richard Stallman <rms@gnu.org>
2861
2862 * progmodes/grep.el (grep-last-buffer): Doc fix.
2863
2864 * info.el (Info-try-follow-nearest-node): Doc fix.
2865
2866 * emacs-lisp/edebug.el (edebug-instrument-function):
2867 Err if find-function-noselect gives no position.
2868
2869 * emacs-lisp/find-func.el (find-function-search-for-symbol):
2870 If can't find definition, return nil for position.
2871 (find-function-do-it): Handle new return value
2872 of find-definition-noselect.
2873 (find-definition-noselect, find-variable-noselect): Doc fix.
2874 (find-function-noselect): Doc fix.
2875
2876 * help-mode.el (help-variable-def): Handle find-variable-noselect
2877 returning no position.
2878 (help-function-def): Likewise for find-function-search-for-symbol.
2879 (help-face-def): Likewise.
2880
2881 * help-fns.el (describe-variable): Handle find-variable-noselect
2882 returning no position.
2883
2884 * files.el (locate-file-completion): Avoid duplicates in result.
2885
2886 * cus-edit.el (custom-no-edit): New command.
2887 (custom-mode-map): Remap to custom-no-edit instead of
2888 using suppress-keymap.
2889
2890 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
2891
2892 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
2893 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
2894 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
2895
2896 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
2897
2898 2006-07-11 Kim F. Storm <storm@cua.dk>
2899
2900 * ido.el (ido-copy-current-file-name): Use buffer-name if
2901 buffer-file-name is nil.
2902
2903 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
2904
2905 * simple.el (undo-ask-before-discard): Set to nil.
2906
2907 * vc.el (vc-exec-after): Don't delete process manually.
2908 (vc-print-log): Run log-view-mode in process sentinel inside
2909 inhibit-read-only. Don't shrink window due to timing issues.
2910
2911 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
2912 Avoid using with-output-to-temp-buffer, which clobbers local vars.
2913
2914 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
2915
2916 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2917 Fix ambiguity introduced by last change.
2918 (compilation-find-file): Move save-excursion to where it may
2919 make sense. Fix a left over `find-file'.
2920
2921 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
2922
2923 * textmodes/texinfmt.el (texinfo-format-separate-node):
2924 Insert a string before point, which fits documentation, not after.
2925 (texinfo-multitable-item): In a multitable row, insert any
2926 additional needed @tabs and spaces.
2927
2928 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
2929
2930 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
2931 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
2932 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
2933 instead of shell-command.
2934 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
2935 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
2936 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
2937 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
2938 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
2939 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
2940
2941 2006-07-11 Kim F. Storm <storm@cua.dk>
2942
2943 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
2944 Remove special case for seconds < 0. Use (redisplay t) instead.
2945
2946 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
2947
2948 * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
2949 avoid compilation error.
2950
2951 * subr.el (sit-for): New function.
2952
2953 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
2954
2955 2006-07-10 Richard Stallman <rms@gnu.org>
2956
2957 * ldefs-boot.el (edebug): Update page.
2958
2959 2006-07-10 Kim F. Storm <storm@cua.dk>
2960
2961 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
2962 to FOR-RELEASE and TODO.
2963
2964 2006-07-10 Romain Francoise <romain@orebokech.com>
2965
2966 * emacs-lisp/authors.el (authors-aliases): Update.
2967
2968 2006-07-10 Alan Mackenzie <acm@muc.de>
2969
2970 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
2971 * cc-mode.el: Changes to eradicate eval-after-load.
2972
2973 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
2974
2975 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
2976 on non-char events.
2977
2978 2006-07-09 Romain Francoise <romain@orebokech.com>
2979
2980 * progmodes/compile.el (compilation-mode-font-lock-keywords):
2981 Don't highlight start/end markers as compilation messages.
2982
2983 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
2984 to t.
2985
2986 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
2987
2988 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
2989
2990 2006-07-08 Richard Stallman <rms@gnu.org>
2991
2992 * term/x-win.el (x-handle-display): Add doc string.
2993
2994 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
2995
2996 * subr.el (def-edebug-spec): Move here.
2997 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
2998
2999 * imenu.el (imenu-choose-buffer-index): Doc fix.
3000
3001 2006-07-08 Romain Francoise <romain@orebokech.com>
3002
3003 * term/x-win.el (x-display-name): Fix typo.
3004
3005 2006-07-08 Eli Zaretskii <eliz@gnu.org>
3006
3007 * hexl.el (hexl-find-file): Doc fix.
3008
3009 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
3010
3011 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
3012
3013 * term/x-win.el (x-display-name): Doc fix.
3014
3015 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
3016
3017 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
3018 long prefixes.
3019 (fill-region-as-paragraph): Don't round up to a whole line.
3020 (fill-comment-paragraph): Don't include the code-before-the-comment
3021 when calling fill-region-as-paragraph.
3022
3023 * international/mule.el (make-char): Remove redundancy.
3024
3025 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
3026 property may contain an anonymous function rather than a symbol.
3027
3028 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
3029
3030 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
3031 Use shy regexp. Fix incorrect backref to potentially unmatched group.
3032
3033 * dirtrack.el (dirtrack-default-directory-function): Remove.
3034 (dirtrack-directory-function): Use file-name-as-directory.
3035 (dirtrack-windows-directory-function): Simplify.
3036 (dirtrack-forward-slash, dirtrack-backward-slash)
3037 (dirtrack-replace-slash): Remove.
3038 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
3039 (dirtrack): Fix wrong parenthesizing; use match-string.
3040
3041 * progmodes/octave-inf.el: Remove spurious * in docstrings.
3042 (inferior-octave-mode): Only change the buffer-local value of
3043 comint-dynamic-complete-functions.
3044 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
3045 Move the initialization to the declaration.
3046 (inferior-octave-complete): Remove unused var `filter'.
3047
3048 * shell.el (shell-mode): Only change the buffer-local value of
3049 comint-dynamic-complete-functions.
3050
3051 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
3052
3053 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
3054 entry is skipped because it has been scheduled.
3055 (org-prepare-agenda-buffers): Don't mark buffers as modified when
3056 changing `:org-archived' and `:org-comment' properties.
3057
3058 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
3059
3060 * server.el (server-select-display): Don't make the temp frame
3061 minibuffer-only, in case it's not a temp frame.
3062 (server-process-filter): Don't delete the temp frame if it's the
3063 only one we have on that display.
3064
3065 * files.el (find-alternate-file): Doc fix.
3066
3067 2006-07-05 Richard Stallman <rms@gnu.org>
3068
3069 * files.el (abbreviate-file-name): Add save-match-data.
3070
3071 2006-07-03 Richard Stallman <rms@gnu.org>
3072
3073 * faces.el (read-face-name): Doc fix.
3074
3075 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
3076
3077 * net/goto-addr.el (goto-address): Mark as safe for local evals.
3078
3079 2006-07-05 Andre Spiegel <spiegel@gnu.org>
3080
3081 * vc.el (vc-diff-internal): Fix prev change.
3082
3083 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
3084
3085 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
3086 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
3087
3088 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
3089
3090 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
3091 fails if the symbol contains chars like ( or '.
3092 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
3093 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
3094 `short'.
3095
3096 2006-07-04 Kenichi Handa <handa@m17n.org>
3097
3098 * international/mule-cmds.el (set-language-info): If LANG-ENV is
3099 the current one, don't call set-language-environment, but call one
3100 of set-language-environment-XXX to make INFO effective now.
3101 (set-language-environment): Call set-language-environment-XXX
3102 functions instead of doing the various setups directly.
3103 (set-language-environment-coding-systems): Delete argument eol-type.
3104 (set-language-environment-input-method)
3105 (set-language-environment-nonascii-translation)
3106 (set-language-environment-charset)
3107 (set-language-environment-fontset)
3108 (set-language-environment-unibyte): New functions.
3109
3110 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
3111
3112 * locate.el (locate-update-when-revert): New option.
3113 (locate-update-path): New option (suggested by Michael Albinus).
3114 (locate-prompt-for-command): Whitespace change.
3115 (locate-update): No longer offer to update the locate database by
3116 default. Implement the two new options.
3117
3118 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
3119
3120 * tooltip.el: Move comment about track-mouse...
3121
3122 * progmodes/gud.el: ...to here.
3123
3124 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
3125
3126 * facemenu.el (facemenu-listed-faces): New var.
3127 (facemenu-unlisted-faces): Variable deleted.
3128 (facemenu-add-new-face): Use facemenu-listed-faces.
3129
3130 * emulation/viper-init.el, calendar/calendar.el:
3131 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
3132
3133 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
3134
3135 * textmodes/org.el (org-mode): Remove no invalid settings for
3136 calc embedded mode.
3137 (org-mode-p): New defsubst.
3138 (org-save-all-org-buffers): New function.
3139 (org-first-headline-recenter): Enclose outline-regexp in group
3140 delimiters.
3141 (org-set-tags): Keep single space after stars.
3142
3143 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
3144
3145 * window.el (set-window-text-height): Only set window-min-height to
3146 1 if that's the requested size.
3147
3148 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
3149 (diff-unified->context, diff-context->unified)
3150 (diff-reverse-direction): Make sure the end marker stays at the end.
3151 (diff-mode): Add the keymap table at the end of docstring.
3152 Use lexical-let rather than constructing a closure manually.
3153
3154 * files.el (find-file-noselect-1): Remove unused var assignment.
3155 (hack-local-variables-confirm): Print lists of strings as lists of
3156 strings rather than lists of symbols.
3157 (abbreviate-file-name, hack-local-variables-prop-line):
3158 Use match-string.
3159 (hack-one-local-variable): Move `make-local-variable' nearer its use.
3160 (recover-session-finish): Use line-end-position.
3161
3162 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
3163
3164 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
3165
3166 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
3167
3168 * progmodes/make-mode.el (makefile-macroassign-regex):
3169 Accept preceding keyword.
3170 (makefile-gmake-statements): Reorganize, now that makepp has
3171 "override" and also handle forgotten "override define".
3172 (makefile-makepp-statements): Add new "global", "override export"
3173 and "override global".
3174
3175 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
3176
3177 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
3178 (ada-compile-mouse-goto-error, ada-deactivate-properties)
3179 (ada-no-auto-case): Fix typos in docstrings.
3180
3181 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
3182
3183 * info.el (Info-find-node-2): Search for makeinfo version more
3184 carefully.
3185
3186 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
3187
3188 * textmodes/org.el (org-prepare-agenda-buffers):
3189 Use `invisible-OK' argument for `org-end-of-subtree'.
3190 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
3191 (org-beginning-of-item): Fix bug in regular expression for white line.
3192 (org-export-as-html): Enforce space after bullet in plain list items.
3193 (org-set-autofill-regexps): Require space after plain list bullet
3194 for paragraph-start.
3195 (org-ts-regexp3): New constant.
3196 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
3197 (org-timestamp-up-day, org-timestamp-down-day)
3198 (org-timestamp-change): Work with inactive timestamps.
3199 (org-ts-regexp1): Don't allow brackets in time stamps.
3200
3201 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
3202
3203 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
3204 for ignoring links.
3205
3206 * faces.el (read-face-name): Use it.
3207
3208 2006-06-28 Juri Linkov <juri@jurta.org>
3209
3210 * buff-menu.el (list-buffers-noselect): Compare Info file
3211 with the string "dir" to detect Info directory.
3212
3213 * complete.el (partial-completion-mode): In lambda for
3214 `choose-completion-string-functions' use full function signature
3215 with 4 args, and move point to the end of the minibuffer only if arg
3216 `mini-p' is non-nil.
3217
3218 2006-06-28 John Paul Wallington <jpw@pobox.com>
3219
3220 * ibuffer.el (ibuffer-mode): Doc fix.
3221
3222 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
3223
3224 * textmodes/org.el (org-context): New contexts :item-bullet,
3225 :latex-fragment, :latex-preview.
3226 (org-overlays-at, org-overlay-start, org-overlay-end):
3227 New compatibility functions.
3228 (org-inside-LaTeX-fragment-p): More accurate matching, using the
3229 exact regexp that will be used during export.
3230 (org-latex-regexps): New variable.
3231 (org-cdlatex-mode): Improve advice for `texmathp'.
3232 (turn-on-org-cdlatex): New function.
3233
3234 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3235
3236 * term/mac-win.el (mac-handle-font-selection): Change keys of
3237 mac-atsu-font-table from strings to numbers.
3238 (mac-ts-caret-position): Use also when cursor-type is nil.
3239 (mac-ts-update-active-input-area): Add Mac OS Classic support.
3240 Relax condition for using overlay strings.
3241 Use mac-ts-caret-position face when cursor-type is nil.
3242
3243 2006-06-26 Kim F. Storm <storm@cua.dk>
3244
3245 * help.el (view-emacs-news): Declare `res' in the right let* form.
3246
3247 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
3248
3249 * net/rcompile.el (remote-compile): Replace ange-ftp based
3250 implementation by Tramp functions.
3251 Suggested by Marc Abramowitz <msabramo@gmail.com>.
3252
3253 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
3254
3255 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
3256
3257 * international/fontset.el (setup-default-fontset): Fix a typo in
3258 the "Oriya-Akruti" registry name.
3259
3260 2006-06-23 Lars Hansen <larsh@soem.dk>
3261
3262 * desktop.el (desktop-full-file-name): New function.
3263 (desktop-kill, desktop-save, desktop-remove, desktop-read)
3264 (desktop-revert): Use it.
3265 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
3266 (desktop-after-read-hook): Add option list-buffers.
3267 (desktop-locals-to-save): Add tab-width.
3268 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
3269 Fix docstring.
3270
3271 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
3272
3273 * textmodes/org.el (org-cdlatex-mode-map)
3274 (org-cdlatex-texmathp-advice-is-done): New variables.
3275 (org-cdlatex-mode): New minor mode.
3276 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
3277 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
3278 (org-export-with-archived-trees): New option.
3279 (org-open-file): Remove the call to `convert-standard-filename'.
3280 (org-archive-tag, org-agenda-skip-archived-trees)
3281 (org-cycle-open-archived-trees)
3282 (org-sparse-tree-open-archived-trees): New options.
3283 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
3284 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
3285 New functions.
3286 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
3287 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
3288 (org-mode-map): Add binding for `org-toggle-archive-tag'.
3289 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
3290 Call `org-prepare-agenda-buffers'.
3291 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
3292 (org-file-apps, org-file-apps-defaults-gnu)
3293 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
3294 Handle remote files by forcing them to be opened in Emacs.
3295
3296 2006-06-23 Andre Spiegel <spiegel@gnu.org>
3297
3298 * vc.el (vc-diff-knows-L): New variable.
3299 (vc-diff-internal): Use it to handle "diff" programs that don't
3300 understand -L. This works automatically, no user action is necessary.
3301
3302 2006-06-23 Daniel Brockman <daniel@brockman.se>
3303
3304 * net/rcirc.el (rcirc-default-user-full-name): Default to
3305 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
3306 longer exists).
3307 (rcirc-process-list): Check `buffer-live-p' before attempting to
3308 switch to a buffer.
3309
3310 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
3311
3312 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
3313 based on rcirc-coding-system-alist.
3314
3315 2006-06-23 Martin Rudalics <rudalics@gmx.at>
3316
3317 * cus-edit.el (customize-apropos): A better error message.
3318 (top level) <debug-ignored-errors>: Extend and update the list of
3319 ignored error messages.
3320
3321 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
3322
3323 * complete.el (PC-do-completion): Retain capitalization of user
3324 input, when possible, even if completion-ignore-case is set.
3325
3326 2006-06-23 Eli Zaretskii <eliz@gnu.org>
3327
3328 * generic-x.el (bat-generic-mode): Support .cmd files.
3329
3330 * dos-w32.el (top level): Use find-file-not-found-functions
3331 instead of the obsolete find-file-not-found-hooks.
3332
3333 2006-06-22 Kim F. Storm <storm@cua.dk>
3334
3335 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
3336 to recognize mode name containing submodes, such as Grep/lw.
3337
3338 2006-06-21 Kim F. Storm <storm@cua.dk>
3339
3340 * simple.el (line-move-1): Check for move-end-of-line instead of
3341 end-of-line when setting temporary-goal-column.
3342
3343 2006-06-21 Miles Bader <miles@gnu.org>
3344
3345 * play/cookie1.el (cookie): Work properly when there's only one entry.
3346
3347 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
3348
3349 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
3350 (gdb-frame-handler): Generalize frame regexp for templates.
3351
3352 2006-06-20 Glenn Morris <rgm@gnu.org>
3353
3354 * calendar/appt.el (appt-display-format): Default value must be
3355 one of the customize options.
3356
3357 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
3358
3359 * term/xterm.el (terminal-init-xterm): Update key availability info.
3360 Bind C-return.
3361
3362 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
3363
3364 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
3365
3366 * files.el (hack-local-variables): Run `hack-local-variables-hook'
3367 whether or not a local variables list is defined.
3368
3369 * msb.el (msb): Move `sit-for' hack here to handle both
3370 "mouse-down and drag" and "mouse-up and select" situations.
3371 (mouse-select-buffer): Move `sit-for' hack to `msb'.
3372
3373 2006-06-20 Kenichi Handa <handa@m17n.org>
3374
3375 * international/characters.el (word-combining-categories):
3376 Add entries for 2-byte Han characters.
3377
3378 2006-06-19 Richard Stallman <rms@gnu.org>
3379
3380 * bindings.el (mode-line-format): Save some mode line space.
3381
3382 * files.el (find-file-noselect): Improve the question wording.
3383 (basic-save-buffer-2): Mask UMASK against 666.
3384
3385 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
3386 (mouse-drag-vertical-line): Call it.
3387
3388 * cus-edit.el (customize-option, customize-option-other-window):
3389 Error if SYMBOL is nil.
3390
3391 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
3392
3393 * textmodes/org.el: Require noutline, also on XEmacs.
3394 (org-end-of-subtree): Return point.
3395 (org-dblock-start-re, org-dblock-end-re): New constants.
3396 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
3397 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
3398 (org-update-all-dblocks, org-find-dblock): New functions.
3399 (org-collect-clock-time-entries): New function.
3400 (org-html-handle-time-stamps): Never export CLOCK timeranges.
3401 (org-fixup-indentation): Modify to deal correctly with lines
3402 starting with TAB. Only one argument DIFF now.
3403 (org-demote, org-promote): Call `org-fixup-indentation' with just
3404 one argument, DIFF.
3405 (org-mode): Don't mark buffer as modified when aligning tables.
3406 (org-clock-sum): Don't mark buffer modified when adding time sum
3407 properties.
3408 (org-export-as-html): Add support for a link validation function.
3409 (org-archive-all-done): New function.
3410 (org-archive-subtree): New prefix argument. When set, archive all
3411 done subtrees in this buffer.
3412 (org-remove-clock-overlays)
3413 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
3414 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
3415 (org-put-clock-overlay): Don't swallow last headline character
3416 when displaying overlay.
3417 (org-store-link): Link to `image-mode' with just the file name.
3418
3419 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
3420
3421 * viper-cmd.el (viper-special-read-and-insert-char):
3422 Use read-key-sequence.
3423 (viper-after-change-undo-hook): Misc enhancements.
3424 (viper-after-change-undo-hook): New hook.
3425 (viper-undo): Use viper-after-change-undo-hook.
3426 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
3427 (viper-next-line-at-bol): If point is on a widget or a button, simulate
3428 clicking on that widget/button.
3429
3430 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
3431
3432 * ediff-diff (ediff-test-patch-utility): Catch errors.
3433 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
3434 (ediff-set-actual-diff-options): New function.
3435 (ediff-reset-diff-options, ediff-toggle-ignore-case):
3436 Use ediff-set-actual-diff-options.
3437 (ediff-extract-diffs): Catch errors.
3438 (ediff-whitespace): Add non-breakable space.
3439 (ediff-same-file-contents): Catch errors.
3440
3441 * ediff-mult.el (ediff-collect-custom-diffs):
3442 Save coding-system-for-read.
3443
3444 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
3445 (ediff-vc-internal, ediff-vc-merge-internal):
3446 Use ediff-delete-version-file.
3447 (ediff-delete-version-file): New function.
3448
3449 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
3450
3451 * ediff.el (ediff-directories, ediff-directory-revisions)
3452 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
3453 (ediff-directories-internal, ediff-merge-directory-revisions)
3454 (ediff-merge-directory-revisions-with-ancestor)
3455 (ediff-directories3): Use read-directory-name.
3456
3457 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
3458
3459 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
3460 Remove superfluous part of regexp for brace matching which is handled
3461 by `scan-lists' call.
3462
3463 2006-06-16 Richard Stallman <rms@gnu.org>
3464
3465 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
3466
3467 * files.el (basic-save-buffer-2): For a new precious file,
3468 use the default modes in the return value.
3469
3470 * facemenu.el (facemenu-color-alist): Doc fix.
3471
3472 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
3473
3474 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3475
3476 * cus-start.el (all): Add mac-ts-script-language-on-focus.
3477
3478 * term/mac-win.el (mac-text-encoding-ascii): New constant.
3479 (mac-utxt-to-string): Use it.
3480 (mac-ts-update-active-input-area): Use mac-ae-number.
3481
3482 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
3483
3484 * term.el (term-handle-scroll, term-delete-lines)
3485 (term-insert-lines): Fix off by one errors.
3486
3487 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
3488
3489 * net/tramp.el (tramp-touch): Use UTC to express time.
3490
3491 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
3492
3493 * mail/sendmail.el (mail-send): Search explicitly for
3494 mail-header-separator when checking for corrupted header lines.
3495
3496 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
3497
3498 * progmodes/gdb-ui.el (gdb-same-frame): New option.
3499 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
3500 (gdb-init-1): Initialise them.
3501 (gdb-starting): Reset gdb-printing
3502 (gdb-starting): Save value of gud-overlay-arrow-position.
3503 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
3504 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
3505 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
3506 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
3507
3508 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
3509
3510 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
3511
3512 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
3513
3514 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
3515 (ldap-search-internal): Keep error messages, and a regexp fix.
3516
3517 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
3518
3519 * files.el (hack-local-variables-confirm):
3520 Display string value using its printed representation.
3521
3522 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
3523
3524 * server.el (server-edit): No-op if no server buffers exist.
3525
3526 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
3527
3528 * textmodes/page-ext.el (pages-directory-for-addresses):
3529 Including `pages-directory-address-mode' in the function results
3530 in the message "Buffer in which pages were found is deleted".
3531
3532 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
3533
3534 * textmodes/org.el (org-agenda-mode-map): Add bindings for
3535 clocking functions.
3536
3537 (org-agenda-clock-in, org-check-running-clock)
3538 (org-clock-out-if-current, org-remove-clock-overlays)
3539 (org-put-clock-overlay): New functions.
3540 (org-clock-marker, org-clock-file-total-minutes)
3541 (org-clock-overlays): New variables.
3542 (org-clock-display, org-clock-sum, org-clock-cancel)
3543 (org-clock-out, org-clock-in): New commands.
3544 (org-export): New function.
3545 (org-emph-re): New constant.
3546 (org-set-emph-re, org-do-emphasis-faces): New functions.
3547 (org-emphasis-regexp-components, org-emphasis-alist): New options.
3548 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
3549 (org-export-html-convert-emphasize): Use the configurable emphasis.
3550 (org-cleaned-string-for-export): Make multiline emphasis visible
3551 to the exporter. New optional argument PARAMETERS.
3552 (org-export-as-html): Specify :emph-multiline parameter to
3553 `org-cleaned-string-for-export'.
3554
3555 2006-06-10 Richard Stallman <rms@gnu.org>
3556
3557 * help.el (help-for-help-internal): Clean up help text.
3558
3559 2006-06-10 Andreas Schwab <schwab@suse.de>
3560
3561 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
3562 in doc string.
3563
3564 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
3565
3566 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
3567
3568 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
3569 spaces after the comment start.
3570
3571 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
3572
3573 * play/pong.el (pong-init-buffer):
3574 Fill buffer with spaces instead of ^A.
3575
3576 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
3577 launched asynchronously, delete its process instead of being cool.
3578 (ispell-async-processp): Check for `delete-process' existence
3579 instead of `kill-process' one for consistency.
3580
3581 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
3582
3583 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
3584 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
3585 in mode line at startup.
3586
3587 2006-06-08 Kim F. Storm <storm@cua.dk>
3588
3589 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
3590 (ido-init-completion-maps): Bind them to M-SPC and M-v.
3591 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
3592 (ido-file-internal): Pass full file name to write-file.
3593 (ido-read-internal): Only pop stack elements automatically if they
3594 actually match an existing directory or file name.
3595
3596 2006-06-07 Kenichi Handa <handa@m17n.org>
3597
3598 * international/mule.el (find-auto-coding): Don't handle the short
3599 name `char-trans'.
3600
3601 * files.el (hack-local-variables-prop-line)
3602 (hack-local-variables): Cancel the previous change.
3603
3604 2006-06-06 Jesper Harder <harder@phys.au.dk>
3605
3606 * ediff-diff.el (ediff-test-utility): Protect against file-error.
3607
3608 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
3609
3610 * diff-mode.el (diff-mode): Set buffer-read-only to t when
3611 diff-default-read-only is non-nil.
3612 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
3613 (diff-refine-hunk): Set inhibit-read-only to t.
3614
3615 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
3616 modifying the *Diff* buffer.
3617 (diff-process-filter): New filter function for diff process that
3618 sets inhibit-read-only to t when modifying the *Diff* buffer.
3619
3620 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
3621
3622 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
3623 insertion point and control the number of empty lines.
3624 (org-paste-subtree): Limit the number of empty lines at the end of
3625 the inserted tree.
3626 (org-agenda): Use buffer name of current file for narrowing.
3627 (org-export-as-xml): Command removed.
3628 (org-export-xml-type): Option removed.
3629 (org-mode-map): Call `org-export-as-xoxo' directly.
3630 (org-get-indentation): New optional argument LINE.
3631 (org-fix-indentation, org-remove-tabs): New functions.
3632 (org-export-as-ascii, org-ascii-level-start): Determine and apply
3633 correct indentation for headlines that are converted it items.
3634 (org-skip-comments): Remove table lines that contain narrowing
3635 cookies but no other non-empty fields.
3636 (org-set-tags): Allow groups of mutually exclusive tags.
3637 (org-cmp-time): Sort 24:21 before items without time.
3638 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
3639 (org-open-at-point): Require double colon also for numbers.
3640
3641 2006-06-06 Kim F. Storm <storm@cua.dk>
3642
3643 * ido.el (ido-default-file-method, ido-default-buffer-method):
3644 Make choice values consistent with corresponding command names.
3645 (ido-visit-buffer): Update accordingly. Default to selected-window.
3646
3647 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
3648
3649 * progmodes/gud.el (gud-running): Fix doc string.
3650 (gud-menu-map): Use :visible instead fo :enable for debugger test.
3651 (gud-tooltip-modes): Add python-mode.
3652 (gud-tooltip-print-command): Add pdb. Remove perldb.
3653
3654 2006-06-05 Eli Zaretskii <eliz@gnu.org>
3655
3656 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
3657 Quote $(EMACS).
3658
3659 2006-06-05 Richard Stallman <rms@gnu.org>
3660
3661 * faces.el (defined-colors): Doc fix.
3662
3663 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
3664
3665 * vc.el (vc-process-filter): Inhibit undo info collection around
3666 call to insert.
3667 (vc-setup-buffer): Likewise for call to erase-buffer.
3668 (vc-do-command): Likewise for call to process-file.
3669
3670 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
3671
3672 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
3673 for gud-go.
3674 (gud-common-init): Other debuggers may trigger error.
3675
3676 2006-06-05 Kenichi Handa <handa@m17n.org>
3677
3678 * international/mule.el (find-auto-coding):
3679 Handle enable-character-translation in file header.
3680
3681 2006-06-04 Kim F. Storm <storm@cua.dk>
3682
3683 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
3684 (authors-fixed-entries): Fix spelling.
3685 (authors-canonical-file-name): Don't report error for wildcards.
3686
3687 * help.el (view-emacs-news): Rewrite to support new NEWS,
3688 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
3689 e.g. version 10 matches 1.10, and don't be confused by version 1.1
3690 being a prefix of 1.12 (etc). A numeric prefix arg also works.
3691
3692 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
3693
3694 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
3695 exec constructs like `foo bar`.
3696 (sh-quoted-subshell): New helper function to search for a possibly
3697 nested subshell (like `` or $()) within a "" quoted string.
3698 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
3699 (sh-apply-quoted-subshell): Flag quote characters inside a
3700 subshell, which is itself already in a quoted region, as
3701 punctuation, since this is the closest to what they actually are.
3702 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
3703 sh-apply-quoted-subshell.
3704 (sh-font-lock-syntactic-face-function): Apply the new face for
3705 text inside `` instead of the old font-lock-string-face.
3706
3707 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3708
3709 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
3710 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
3711 (mac-bytes-to-text-range, mac-ae-text-range-array)
3712 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
3713 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
3714 (mac-ts-unicode-for-key-event): New functions.
3715 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
3716 (mac-handle-font-selection): Use mac-ae-number.
3717 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
3718 New variables.
3719 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
3720 (mac-ts-converted-text, mac-ts-selected-converted-text)
3721 (mac-ts-block-fill-text, mac-ts-outline-text)
3722 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
3723 (mac-ts-hilite-style-faces): New constant.
3724 (mac-apple-event-map): Bind text input events.
3725 (mac-dispatch-apple-event): Use command-execute instead of
3726 call-interactively.
3727 (global-map): Don't bind mac-apple-event.
3728 (special-event-map): Bind mac-apple-event.
3729
3730 2006-06-02 Eli Zaretskii <eliz@gnu.org>
3731
3732 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
3733 file name.
3734 (emacs): Enclose the value of $(EMACS) in quotes.
3735
3736 2006-06-02 Juri Linkov <juri@jurta.org>
3737
3738 * international/mule.el (sgml-html-meta-auto-coding-function):
3739 Remove the condition `(search-forward "<html" size t)'.
3740 Replace `\"' with `[\"']?' in `re-search-forward'.
3741
3742 2006-06-02 Kenichi Handa <handa@m17n.org>
3743
3744 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
3745 as well as `coding'.
3746 (hack-local-variables): Likewise.
3747
3748 * international/mule.el (enable-character-translation):
3749 Put permanent-local and safe-local-variable properties.
3750 (find-auto-coding): Handle char-trans: tag.
3751
3752 2006-06-02 Juri Linkov <juri@jurta.org>
3753
3754 * international/mule.el (sgml-html-meta-auto-coding-function):
3755 Limit the search by the end of the HTML header (if any).
3756
3757 2006-06-01 Richard Stallman <rms@gnu.org>
3758
3759 * subr.el (with-current-buffer): Doc fix.
3760
3761 2006-06-02 Masatake YAMATO <jet@gyve.org>
3762
3763 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
3764 Almost rewrite. Underlines over all lines of gcov output are too
3765 uncomfortable to read. Suggested by Dan Nicolaescu.
3766
3767 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
3768
3769 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
3770
3771 * shell.el (shell-mode): Use shell-mode-map in docstring.
3772
3773 * comint.el (comint-send-input): Do not add help-echo and
3774 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
3775
3776 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3777
3778 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
3779
3780 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
3781
3782 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
3783 (gdb-stopped, gdb-info-stack-custom): If there is no source info
3784 look up the stack and pop up GUD buffer if necessary.
3785 (gdb-frames-select): Remove redundant call to gud-display-frame.
3786 (gdb-info-threads-custom): Keep point at start of buffer.
3787 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
3788
3789 2006-05-31 Juri Linkov <juri@jurta.org>
3790
3791 * replace.el (query-replace-read-from, query-replace-read-to):
3792 Bind `history-add-new-input' to nil. Call `add-to-history'.
3793
3794 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
3795
3796 * textmodes/table.el: Convert all HTML tags to lower case for
3797 XHTML compatibility.
3798
3799 2006-05-31 Masatake YAMATO <jet@gyve.org>
3800
3801 * progmodes/compile.el:
3802 (compilation-error-regexp-alist-alist::gcov-called-line):
3803 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
3804
3805 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
3806
3807 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
3808 Revert inadvertent changes made with last commit.
3809
3810 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
3811
3812 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
3813 New functions.
3814
3815 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
3816
3817 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
3818
3819 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
3820 only matches in the right place.
3821 (org-upcoming-deadline): New face.
3822 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
3823 (org-export-ascii-underline): Rename constant `org-ascii-underline'
3824 and make it an option.
3825 (org-export-ascii-bullets): New option.
3826 (org-export-as-html): Many changes to emit valid XHTML.
3827 (org-par-open): New variable.
3828 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
3829 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
3830 (org-timeline): Pass `org-timeline-show-empty-dates' to
3831 `org-get-all-dates'. Interpret empty dates returned by
3832 `org-get-all-dates'.
3833 (org-get-all-dates): New argument EMPTY. Add dates without
3834 entries to the list, mark large ranges of empty dates.
3835 (org-point-in-group, org-context): New functions.
3836
3837 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
3838
3839 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
3840
3841 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
3842 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
3843 to C-mouse-3 (for 2 button mice).
3844 (gdb-send): Do the right thing for C-d.
3845
3846 * speedbar.el (speedbar-detach): Delete.
3847 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
3848 it breaks things.
3849 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
3850
3851 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
3852
3853 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
3854 Makeppfile.
3855
3856 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3857 Add makepp diagnostic.
3858
3859 2006-05-29 Richard Stallman <rms@gnu.org>
3860
3861 * window.el (fit-window-to-buffer): Doc fix.
3862
3863 * help.el (temp-buffer-max-height): Doc fix.
3864
3865 * subr.el (with-current-buffer): Doc fix.
3866
3867 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3868
3869 * term/x-win.el: Bind F10 to menu-bar-start if available.
3870
3871 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
3872
3873 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
3874 uses with a simple test.
3875 (term-set-escape-char, term-mode, term-check-kill-echo-list)
3876 (term-send-raw-string, term-send-raw, term-mouse-paste)
3877 (term-char-mode, term-line-mode, term-exec, term-sentinel)
3878 (term-handle-exit, term-read-input-ring)
3879 (term-previous-matching-input-string)
3880 (term-previous-matching-input-string-position)
3881 (term-previous-matching-input-from-input)
3882 (term-replace-by-expanded-history, term-send-input)
3883 (term-skip-prompt, term-bol, term-send-invisible)
3884 (term-kill-input, term-delchar-or-maybe-eof)
3885 (term-backward-matching-input, term-check-source)
3886 (term-proc-query, term-emulate-terminal)
3887 (term-handle-colors-array, term-process-pager, term-pager-line)
3888 (term-pager-bob, term-unwrap-line, term-word)
3889 (term-dynamic-complete-filename)
3890 (term-dynamic-complete-as-filename)
3891 (term-dynamic-simple-complete): Replace one arm ifs with whens or
3892 unlesses.
3893
3894 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
3895
3896 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
3897 during bootstrapping.
3898
3899 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
3900 Basically undo the change of 2006-05-26: use extra arguments instead of
3901 dynamic scoping.
3902 (ewoc-locate): Remove unused var `footer'.
3903
3904 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3905
3906 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
3907
3908 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
3909 (generate-file-autoloads): Obey it. Return whether autoloads were
3910 added at point or not.
3911 (update-file-autoloads): Use this new return value.
3912 Remove redundant test for the presence of an autoload cookie.
3913
3914 * emacs-lisp/autoload.el (autoload-find-file): New fun.
3915 This one calls hack-local-variables.
3916 (generate-file-autoloads, update-file-autoloads): Use it.
3917
3918 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
3919 (bibtex-sort-entry-class): Add safe-local-variable predicate.
3920 (bibtex-sort-entry-class-alist): Don't set the global value.
3921 (bibtex-init-sort-entry-class-alist): New fun.
3922 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
3923 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
3924 of bibtex-init-sort-entry-class.
3925
3926 2006-05-28 Richard Stallman <rms@gnu.org>
3927
3928 * subr.el (load-history-regexp): If FILE is relative, insist
3929 entire last name component must match it.
3930 (load-history-filename-element, load-history-regexp): Doc fixes.
3931
3932 2006-05-29 Kim F. Storm <storm@cua.dk>
3933
3934 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
3935 `pos' and `raw-data' for clarity, as eval forms may access these.
3936
3937 2006-05-28 Kim F. Storm <storm@cua.dk>
3938
3939 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
3940
3941 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3942
3943 * progmodes/make-mode.el (makefile-browser-map)
3944 (makefile-mode-syntax-table): Move initialization inside declaration.
3945 (makefile-fill-paragraph): Use the default comment-filling code.
3946
3947 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
3948
3949 * replace.el (query-replace-defaults): New variable.
3950 (query-replace-read-from): Use `query-replace-defaults' for
3951 default value, instead of history list.
3952 (query-replace-read-to): Update `query-replace-defaults'.
3953
3954 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
3955
3956 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
3957 with no X toolkit.
3958
3959 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
3960
3961 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
3962 (tumme-show-all-from-dir): Add autoload.
3963
3964 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
3965
3966 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
3967 (tumme-remove-tag): Fix bug.
3968
3969 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
3970
3971 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
3972 FOOTER args. Update unique caller.
3973 (ewoc-delete): Compute last node once before looping.
3974 (ewoc--node-branch): Merge into unique caller.
3975 (ewoc--node): Don't define constructor make-ewoc--node for this
3976 structure.
3977 (ewoc): Add member `hf-pp' to this structure.
3978 (ewoc--wrap): New func.
3979 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
3980 header/footer pretty-printers. Save header/footer pretty-printer.
3981 (ewoc-set-hf): Use ewoc's header/footer pretty-printer. *
3982
3983 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
3984
3985 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
3986
3987 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
3988 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
3989 Tag'. Change "Compare directories..." to "Change Directories...".
3990 Move tumme commands to Operate, Regexp and Immediate menus.
3991 Change "Add Comment" to "Add Image Comment". Change "Add Image
3992 Tag" to "Add Image Tags".
3993
3994 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
3995 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
3996 `tumme-delete-tag'.
3997
3998 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
3999
4000 * shell.el (shell-mode): Call shell-dirtrack-mode after
4001 list-buffers-directory is made a local variable, to avoid setting
4002 the default value.
4003
4004 2006-05-26 Kevin Ryde <user42@zip.com.au>
4005
4006 * info.el (Info-index-next): Use where-is-internal to report
4007 actual binding of Info-index-next, rather than hard-coded `,'.
4008
4009 2006-05-26 Eli Zaretskii <eliz@gnu.org>
4010
4011 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
4012 and "Find Command in Manual" to here.
4013
4014 * buff-menu.el (list-buffers-noselect): For Info buffers, use
4015 Info-current-file as the file name.
4016
4017 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
4018
4019 * ses.el (defadvice undo-more): Delete this defadvice. The undo
4020 overrides will now be done a different way.
4021 (ses-set-parameter): Reapply this function for undo.
4022 (ses-set-header-row): Reconstruct header row during undo.
4023 (ses-widen): New function.
4024 (ses-goto-data, ses-reconstruct-all): Use new function.
4025 (ses-command-hook): Widen buffer during undo, before unupdating
4026 the cells.
4027 (ses-insert-row, ses-delete-row): Widen buffer during undo.
4028 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
4029 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
4030 formula hasn't been executed yet.
4031
4032 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
4033
4034 * comint.el (comint-kill-whole-line): Rename arg to count.
4035 Fix doc string.
4036
4037 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
4038
4039 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
4040 to copy-file.
4041
4042 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
4043
4044 * simple.el (toggle-truncate-lines): Make arg optional for
4045 backward compatibility.
4046
4047 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
4048
4049 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
4050 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
4051 DLL arg. Instead, use ewoc--current-dll. Update all callers.
4052 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
4053 (ewoc--adjust): Use ewoc--current-dll.
4054 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
4055
4056 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
4057
4058 * textmodes/org.el (org-next-item, org-previous-item): Emit more
4059 compact error message.
4060 (org-tags-view): Refresh category table in each file.
4061 (org-table-justify-field-maybe): Remove superfluous arguments to
4062 `format'.
4063 (org-export-as-html): Insert "<p>" before postamble.
4064 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
4065
4066 2006-05-26 Kenichi Handa <handa@m17n.org>
4067
4068 * textmodes/po.el (po-find-charset): Pay attention to the case
4069 FILENAME is a cons (NAME . BUFFER).
4070 (po-find-file-coding-system-guts): Likewise.
4071
4072 * arc-mode.el (archive-set-buffer-as-visiting-file):
4073 Call find-operation-coding-system with (FILENAME . BUFFER).
4074
4075 * tar-mode.el (tar-extract): Call find-operation-coding-system
4076 with (FILENAME . BUFFER).
4077
4078 * international/mule.el (decode-coding-inserted-region):
4079 Call find-operation-coding-system with (FILENAME . BUFFER).
4080
4081 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
4082
4083 * image-mode.el (image-toggle-display): Use buffer contents to
4084 generate image for a remote file.
4085
4086 2006-05-25 Juri Linkov <juri@jurta.org>
4087
4088 * replace.el (query-replace-read-from, query-replace-read-to):
4089 Remove 8th arg KEEP-ALL in read-from-minibuffer.
4090
4091 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
4092
4093 * whitespace.el (whitespace-cleanup): Change to cleanup
4094 region if one is active.
4095 * whitespace.el (whitespace-cleanup-internal): New internal method.
4096
4097 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
4098
4099 * dired.el (dired-mode-map): Add help-echo strings to tumme
4100 commands. Bind `tumme-dired-display-image' to C-t i.
4101
4102 * tumme.el (tumme-display-image): Change documentation string slightly.
4103 (tumme-dired-display-image): Add call to `display-buffer'.
4104
4105 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
4106
4107 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
4108 Signal error if RAW-DATA is a multibyte string.
4109
4110 2006-05-24 Richard Stallman <rms@gnu.org>
4111
4112 * subr.el (with-local-quit): When handling `quit' signal,
4113 make a chance for quit-flag to cause a quit.
4114
4115 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
4116 (ad-disable-advice): Add autoloads.
4117
4118 * subr.el (read-passwd): Copy PROMPT before changing its properties.
4119
4120 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
4121
4122 * dired.el (dired-mode-map): Change menu items for tumme as per
4123 suggestions in emacs-devel.
4124
4125 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
4126
4127 * dired.el (dired-mode-map): Fix breakage.
4128
4129 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
4130
4131 * tumme.el (tumme-display-dired-image): Rename to...
4132 (tumme-dired-display-image): ...this.
4133 (tumme-track-movement): Change default value to t.
4134 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
4135 used from `tumme-next-line-and-display' and similar commands.
4136
4137 * dired.el (dired-mode-map): Add Thumbnail submenu under the
4138 Immediate menu. Add some tumme commands there.
4139
4140 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
4141
4142 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
4143
4144 2006-05-24 Chong Yidong <cyd@mit.edu>
4145
4146 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
4147 menu entries that open submenus.
4148
4149 2006-05-24 Alan Mackenzie <acm@muc.de>
4150
4151 * startup.el (command-line): For names of preloaded files, don't
4152 append ".elc" (now done in Fload), and call file-truename on the
4153 lisp directory.
4154
4155 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
4156 match ANY loaded file with the right name, not just those in
4157 load-path. Put a regexp matching the file name into
4158 after-load-alist, rather than the name itself.
4159
4160 * subr.el: New functions load-history-regexp,
4161 load-history-filename-element, do-after-load-evaluation.
4162
4163 * international/mule.el (load-with-code-conversion): Do the
4164 eval-after-load stuff by calling do-after-load-evaluation.
4165
4166 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
4167
4168 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
4169 has not been killed.
4170
4171 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4172
4173 * term/mac-win.el: Set idle timer to clean up expired Apple events.
4174 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
4175 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
4176 Optionally set error message in reply.
4177
4178 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
4179
4180 * textmodes/org.el (org-open-at-point): Use renamed variable
4181 `org-confirm-shell-link-function'.
4182 (org-confirm-shell-link-function): Rename from
4183 `org-confirm-shell-links'.
4184 (org-export-directory): New function.
4185 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
4186 (org-export-icalendar): Use `org-export-directory'.
4187 (org-indent-item): Keep cursor position.
4188 (org-link-file-path-type): New option.
4189 (org-export-as-html): Fix bug with plain lists starting in
4190 column 0.
4191 (org-export-as-html): Remove deadline formatting, this happens
4192 now already in `org-html-handle-time-stamps'.
4193 (org-export-html-style): Deadline class removed.
4194 (org-insert-labeled-timestamps-at-point): New option.
4195 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
4196 of `hide-sublevels 1', in case the first headline is not level 1.
4197 (org-overview, org-content): New fuction.
4198 (org-cycle-global-status, org-cycle-subtree-status): Make these
4199 variables buffer-local.
4200 (org-global-cycle): New command.
4201 (org-shifttab): Use `org-global-cycle'.
4202 (org-insert-heading, org-insert-item): Go to end of new
4203 headline/item after creating it.
4204 (org-export-visible): Rename from `org-export-copy-visible'.
4205 Now creates a temporary org-file and applies an exporting command
4206 to it.
4207 (org-table-eval-formula): Support for lisp forms.
4208 (org-agenda-todo-ignore-scheduled): New option.
4209 (org-agenda-get-todos): Use new option
4210 `org-agenda-todo-ignore-scheduled'.
4211 (org-export-html-inline-images): New value `maybe'.
4212 (org-export-as-html): Inlining of images dependent on link description.
4213 (org-archive-subtree): Check for end-of-buffer before trying
4214 `kill-line'.
4215 (org-agenda-follow-mode): New option.
4216 (org-export-with-tags, org-export-with-timestamps): New options.
4217 (org-html-handle-time-stamps): New function.
4218 (org-keyword-time-regexp): New variable.
4219 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
4220 (org-agenda-todo-list-sublevels): New option.
4221 (org-html-level-start): When TITLE is nil, just close all levels.
4222 (org-parse-key-lines, org-parse-export-options): Remove functions,
4223 replaced by `org-infile-export-plist'.
4224 (org-combine-plists, org-infile-export-plist)
4225 (org-default-export-plist): New functions.
4226 (org-export-html-preamble, org-export-html-postamble)
4227 (org-export-html-auto-preamble, org-export-html-auto-postamble):
4228 New variables.
4229 (org-export-publishing-directory): New option.
4230 (org-export-as-html, org-export-as-ascii): Use the new property
4231 lists for settings.
4232 (org-export-copy-visible, org-export-as-xoxo):
4233 Respect `org-export-publishing-directory'.
4234 (org-link-search, org-store-link, org-file-apps): Support for
4235 links to BibTeX database entries..
4236 (org-get-current-options, org-set-regexps-and-options):
4237 Implement logging as a startup option.
4238 (org-store-link): Make sure context string is never empty
4239 (org-insert-link): Use relative path when possible.
4240 (org-at-item-checklet-p): New function.
4241 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
4242 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
4243 (org-metaright, org-metaup, org-metadown, org-shiftup)
4244 (org-shiftdown, org-shiftright, org-shiftleft)
4245 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
4246 Dispatch using `call-interactively'.
4247 (org-call-with-arg): New defsubst.
4248 (org-tag-alist, org-use-fast-tag-selection): New options.
4249 (org-complete): Use `org-tag-alist'.
4250 (org-fast-tag-insert, org-fast-tag-selection): New functions.
4251 (org-next-item, org-previous-item): New commands.
4252 (org-beginning-of-item, org-end-of-item): Add (interactive) to
4253 make command.
4254 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
4255
4256 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
4257
4258 * emacs-lisp/ewoc.el (ewoc-delete): New function.
4259 (ewoc-filter): Use `ewoc-delete'.
4260
4261 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
4262
4263 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
4264
4265 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
4266 Signal more user-friendly error messages.
4267
4268 * complete.el (PC-do-completion): Undo the addition of implicit
4269 wildcards if they did not lead to finding any match.
4270 (read-file-name-internal): Don't add the final > if the completion is
4271 not finished.
4272
4273 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
4274
4275 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
4276 Quote safe-local-variable predicate.
4277
4278 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
4279
4280 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
4281
4282 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
4283
4284 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
4285
4286 * progmodes/make-mode.el (makefile-special-targets-list)
4287 (makefile-macro-table, makefile-target-table): Mark as risky.
4288 (makefile-query-one-target-method): Make this the alias for the
4289 following variable.
4290 (makefile-query-one-target-method-function): Make this the real name.
4291
4292 * textmodes/artist.el (artist-text-renderer): Make this the alias
4293 for the following variable.
4294 (artist-text-renderer-function): Make this the real name.
4295
4296 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
4297 the alias for the following variable.
4298 (flyspell-generic-check-word-predicate): Make this the real name.
4299
4300 * textmodes/ispell.el (ispell-format-word): Make this the alias
4301 for the following variable.
4302 (ispell-format-word-function): Make this the real name.
4303 (ispell-message-text-end): Mark as risky.
4304
4305 * skeleton.el (skeleton-transformation, skeleton-filter)
4306 (skeleton-pair-filter): Make these the aliases for the following
4307 variables.
4308 (skeleton-transformation-function, skeleton-filter-function)
4309 (skeleton-pair-filter-function): Make these the real names.
4310
4311 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
4312 and skeleton-pair-filter-function.
4313
4314 * textmodes/sgml-mode.el (sgml-transformation): Make this the
4315 alias for the following variable.
4316 (sgml-transformation-function): Make this the real name.
4317 (sgml-tag-alist): Mark as risky.
4318
4319 2006-05-21 Richard Stallman <rms@gnu.org>
4320
4321 * simple.el (kill-region): Interactively, pass point, then mark.
4322
4323 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
4324
4325 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
4326
4327 2006-05-21 Romain Francoise <romain@orebokech.com>
4328
4329 * dired-x.el (dired-mode-map): Don't bind M-g.
4330
4331 2006-05-20 Richard Stallman <rms@gnu.org>
4332
4333 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
4334 (dired-goto-file): Doc fix.
4335
4336 2006-05-21 Kim F. Storm <storm@cua.dk>
4337
4338 * emulation/cua-base.el: Mention customizing cua-mode as alternative
4339 way to enable built-in cua-mode if user loads older CUA-mode package.
4340
4341 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
4342 if default-filename is specified.
4343
4344 2006-05-20 Eli Zaretskii <eliz@gnu.org>
4345
4346 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
4347
4348 * info.el (info-apropos): Make sure current-file and current-node
4349 have non-nil values. Speed up by using add-to-list instead of
4350 manual consing.
4351
4352 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4353
4354 * progmodes/make-mode.el (makefile-mode): Doc fix.
4355
4356 2006-05-20 Eli Zaretskii <eliz@gnu.org>
4357
4358 * dired-aux.el (dired-do-shell-command): Doc fix.
4359
4360 2006-05-20 Kevin Ryde <user42@zip.com.au>
4361
4362 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
4363 ``(custom-manual :tag "Foo" "(foo)Node")''.
4364
4365 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
4366
4367 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
4368 value is an integer.
4369
4370 2006-05-20 Eli Zaretskii <eliz@gnu.org>
4371
4372 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
4373 "format".
4374 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
4375
4376 2006-05-20 Martin Rudalics <rudalics@gmx.at>
4377
4378 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
4379 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
4380
4381 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
4382
4383 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
4384 regexp for keywords.
4385
4386 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
4387
4388 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
4389 replace-regexp-in-string.
4390
4391 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
4392 encode, and escape file name on conversion to URL.
4393
4394 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4395
4396 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
4397 Don't unescape URL.
4398 (dnd-get-local-file-name): Unescape URL on conversion to file name.
4399
4400 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
4401 on conversion to URLs.
4402
4403 * net/browse-url.el (browse-url-file-url): Encode file name on
4404 conversion to URL.
4405
4406 * term/mac-win.el (mac-ae-open-documents): Escape file name on
4407 conversion to URL.
4408
4409 2006-05-19 Eli Zaretskii <eliz@gnu.org>
4410
4411 * progmodes/cc-styles.el (c-style-alist): Doc fix.
4412
4413 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4414
4415 * term/mac-win.el (mac-bytes-to-digits): Remove function.
4416 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
4417
4418 2006-05-19 Glenn Morris <rgm@gnu.org>
4419
4420 * calendar/diary-lib.el (diary-bahai-date)
4421 (list-bahai-diary-entries, mark-bahai-diary-entries)
4422 (mark-bahai-calendar-date-pattern): Not interactive.
4423 (add-to-diary-list): New optional arg LITERAL. Doc fix.
4424 (diary-entries-list): Change format of 4th element in each entry.
4425 (diary-list-entries): Use add-to-diary-list.
4426 (diary-goto-entry): Handle the case where the buffer visiting the
4427 diary has been killed.
4428 (fancy-diary-display): Add 'locator to button rather than 'marker.
4429 Only generate temp-face when there are marks to apply.
4430 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
4431 (diary-fancy-date-pattern): New variable.
4432 (diary-time-regexp): Doc fix.
4433 (diary-anniversary, diary-time): New faces.
4434 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
4435 diary-time-regexp. Add font-lock-multiline property where needed.
4436 Use new faces diary-anniversary and diary-time.
4437 (diary-fancy-font-lock-fontify-region-function): New function, to
4438 handle multiline font-lock pattern in fancy diary.
4439 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
4440 (diary-font-lock-keywords): Tweak time regexp. Use new face
4441 diary-time.
4442
4443 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
4444
4445 * international/code-pages.el (mik): Table corrected.
4446
4447 2006-05-18 Kim F. Storm <storm@cua.dk>
4448
4449 * progmodes/grep.el (grep-find): Don't check grep-find-command
4450 before running command (breaks non-interactive usage).
4451
4452 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
4453
4454 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
4455 (ewoc--insert-new-node): Don't insert trailing newline.
4456 Instead, adjust successor nodes's start markers.
4457 (ewoc--refresh-node): Delete all text from current node's start
4458 marker to the next one's; adjust successor nodes's start markers.
4459 (ewoc--create): Doc fixes.
4460 (ewoc--refresh): Don't insert newline.
4461 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
4462 * pcvs.el (cvs-make-cvs-buffer):
4463 Specify extra newline for ewoc's header and footer.
4464 (cvs-update-header): Update initial header recognition.
4465 Append newline to final header and footer values.
4466 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
4467
4468 2006-05-17 Richard Stallman <rms@gnu.org>
4469
4470 * files.el (file-name-extension): Doc fix.
4471
4472 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4473
4474 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
4475 we can explicitly enable/disable rather than toggle.
4476 (shell-mode): Use it.
4477 (shell-cd): Don't try to reproduce what `cd' does.
4478
4479 2006-05-17 Kim F. Storm <storm@cua.dk>
4480
4481 * ido.el (ido-read-internal): Use only nondirectory part of
4482 default item.
4483
4484 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
4485
4486 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
4487 (ewoc-nth): Doc fix.
4488
4489 (ewoc-map, ewoc-invalidate): Compute PP before looping.
4490
4491 2006-05-16 Eli Zaretskii <eliz@gnu.org>
4492
4493 * international/mule.el (auto-coding-alist): Add .lha to files
4494 read with no-conversion.
4495
4496 * files.el (auto-mode-alist): Add .lha files to archive file
4497 extensions.
4498
4499 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
4500 Convert csize to integer when computing offsets within the
4501 compressed archive file.
4502
4503 2006-05-16 Kim F. Storm <storm@cua.dk>
4504
4505 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
4506 with read-from-minibuffer.
4507
4508 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
4509
4510 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
4511 (byte-compile-warnings): Fix safe-local-variable property.
4512
4513 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
4514
4515 * allout.el (allout-show-bodies, allout-old-style-prefixes)
4516 (allout-stylish-prefixes, allout-numbered-bullet)
4517 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
4518 predicates to qualify `safe-local-variable' property, when
4519 available, else use equivalent lambda.
4520 (allout-current-topic-collapsed-p): Do the right thing regarding
4521 trailing blank lines.
4522
4523 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
4524
4525 * server.el (server-start): Only create a directory if needed.
4526 (server-edit, server-unload-hook): server-start => server-mode.
4527 (kill-emacs-hook): Cleanup upon exit.
4528
4529 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
4530
4531 * hexl.el (hexlify-buffer): Encode process arguments manually.
4532
4533 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
4534
4535 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
4536 call to gdb-tooltip-print.
4537
4538 2006-05-15 Romain Francoise <romain@orebokech.com>
4539
4540 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
4541 systems, default to "tar" since those systems probably have GNU tar.
4542
4543 2006-05-14 Lars Hansen <larsh@soem.dk>
4544
4545 * desktop.el (desktop-missing-file-warning): Fix docstring.
4546 (desktop-restore-file-buffer): Correct question asked on missing file.
4547
4548 2006-05-14 Kim F. Storm <storm@cua.dk>
4549
4550 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
4551 Add CUA move property.
4552
4553 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
4554
4555 * custom.el (custom-push-theme): Load the variable before checking
4556 its `standard-value'.
4557
4558 2006-05-13 Lars Hansen <larsh@soem.dk>
4559
4560 * desktop.el (desktop-save): Use with-temp-buffer.
4561
4562 2006-05-12 Glenn Morris <rgm@gnu.org>
4563
4564 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
4565 * calendar/calendar.el (calendar-mode-map):
4566 * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
4567 * calendar/appt.el (appt-check, appt-make-list): Refer to
4568 diary-view-entries, diary-list-entries, diary-show-all-entries
4569 rather than obsolete aliases.
4570
4571 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
4572
4573 * simple.el (line-move-finish): Avoid calling point motion hooks
4574 while processing intangibility.
4575
4576 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
4577
4578 * term/xterm.el (terminal-init-xterm): Fix typo.
4579
4580 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
4581
4582 * allout.el (allout-view-change-hook): Mark as being deprecated,
4583 to be replaced by `allout-exposure-change-hook'.
4584 (allout-exposure-change-hook): New, replacing
4585 `allout-view-change-hook'.
4586 (allout-flag-region): Run new hook `allout-exposure-change-hook',
4587 in addition to `allout-view-change-hook'.
4588 (allout-show-bodies, allout-old-style-prefixes)
4589 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
4590 lambda forms to prevent their showing up in variable help
4591 presentations as inscrutable byte-compiled code.
4592 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
4593 Use string-or-null-p to qualify safe-local-variable values.
4594 (allout-reindent-bodies): Use memq to qualify matches against
4595 valid safe-local-variable values. Also, quote the lambda as above.
4596 (allout-use-mode-specific-leader): Add missing candidate-value
4597 symbols, use memq, and quote the lambda.
4598 (allout-overlay-interior-modification-handler): Remove unused
4599 variables `msg' and 'opened'.
4600 (allout-hidden-p): Constrain invisibility consideration to allout's
4601 invisibility spec, disregarding invisibility for other reasons.
4602
4603 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
4604
4605 * files.el (version-control): Correct safe values.
4606
4607 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
4608
4609 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
4610
4611 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
4612 (ewoc--insert-new-node): New func.
4613 Update callers of deleted funcs to use it, instead.
4614
4615 2006-05-11 Glenn Morris <rgm@gnu.org>
4616
4617 * calendar/calendar.el (diary-show-all-entries): Do not refer to
4618 obsolete alias `show-all-diary-entries'.
4619 (make-diary-entry): Not interactive.
4620 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
4621 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
4622 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
4623 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
4624 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
4625 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
4626
4627 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
4628
4629 * calendar/calendar.el (calendar-french-date-string)
4630 (calendar-mayan-date-string, calendar-chinese-date-string)
4631 (calendar-astro-date-string, calendar-iso-date-string)
4632 (calendar-islamic-date-string, calendar-bahai-date-string)
4633 (calendar-hebrew-date-string, calendar-coptic-date-string)
4634 (calendar-ethiopic-date-string, calendar-persian-date-string):
4635 These functions are not interactive.
4636
4637 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
4638
4639 * files.el: Balance parentheses.
4640
4641 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
4642
4643 * files.el, newcomment.el, outline.el, simple.el,
4644 emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
4645 progmodes/cc-vars.el, progmodes/compile.el:
4646 Move `safe-local-variable' declarations to the respective files.
4647
4648 * help-fns.el (describe-variable): Don't print safe-var if it is
4649 byte-code. Improve wording as suggested by Luc Teirlinck.
4650
4651 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
4652
4653 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
4654 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
4655 Use a token for pending-triggers to ensure gdb-var-update
4656 gets called once per user input again for pre-GDB 6.4.
4657 (gdb-var-delete): Match on more complex expressions.
4658 (gdb-var-list-children-handler, gdb-var-create-handler):
4659 Use a token for consistency.
4660
4661 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
4662
4663 * textmodes/org.el (org-read-date, org-goto-calendar)
4664 (org-agenda-goto-calendar):
4665 Bind `view-calendar-holidays-initially' to nil.
4666
4667 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
4668
4669 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
4670 Update all callers to do it there, instead.
4671
4672 2006-05-10 Glenn Morris <rgm@gnu.org>
4673
4674 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
4675 prefix arg case, to avoid view-diary-entries-initially error.
4676 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
4677 (calendar-date-is-legal-p): Handle dates with no day part.
4678
4679 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
4680
4681 * comint.el (comint-insert-input): Just make it when
4682 comint-use-prompt regexp is nil (default) and with the mouse.
4683 (comint-copy-old-input): Reinstate from 2004-06-23.
4684 (comint-mode-map): Bind C-c C-m to it.
4685
4686 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
4687
4688 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
4689 Remove spurious move to point-max (new comint behavior fixes).
4690
4691 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
4692 compatibility function (Emacs 18/19).
4693 (idlwave-is-continuation-line): Always return point at start of
4694 previous non-blank continuation line.
4695 (keyword-parameters): Fix continued comment font-lock matcher.
4696 (idlwave-font-lock-fontify-region): Written, use as
4697 font-lock-fontify-region-function, to fix continued keyword
4698 fontification issues.
4699
4700 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4701
4702 * term/mac-win.el (mac-font-panel-mode): Doc fix.
4703 (mac-service-selection, mac-service-open-file)
4704 (mac-service-open-selection, mac-service-mail-selection)
4705 (mac-service-mail-to, mac-service-insert-text): Rename from
4706 mac-services-*. All uses changed.
4707 (mac-apple-event-map): Rename event symbol `services' to `service'.
4708
4709 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
4710
4711 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
4712 (ewoc--node-enter-first, ewoc--node-enter-last)
4713 (ewoc--delete-node-internal): Merge funcs into unique callers.
4714
4715 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
4716
4717 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
4718 return value of read-from-minibuffer for empty input.
4719
4720 2006-05-09 Miles Bader <miles@gnu.org>
4721
4722 * comint.el (comint-insert-input): Remove redundant calls to setq
4723 and goto-char.
4724
4725 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
4726
4727 * comint.el (comint-insert-input): Make it work when
4728 comint-use-prompt-regexp is t.
4729
4730 2006-05-10 Miles Bader <miles@gnu.org>
4731
4732 * subr.el (field-at-pos): New function.
4733
4734 * comint.el (comint-insert-input): Use it.
4735
4736 2006-05-09 Juri Linkov <juri@jurta.org>
4737
4738 * battery.el (battery-linux-proc-acpi): Also try
4739 `/proc/acpi/thermal_zone/THR2/temperature'.
4740
4741 * files.el <safe-local-variable>: Remove `eval' and `let' binding
4742 for now unused lambda `string-or-null'.
4743
4744 * add-log.el (change-log-default-name): Put `string-or-null-p'
4745 instead of lambda on `safe-local-variable' property.
4746
4747 * diff-mode.el (diff-context->unified): Use `region-beginning' and
4748 `region-end' instead of `mark' and `point'.
4749 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
4750 Operate on region in Transient Mark mode when the mark is active.
4751 Use `region-beginning' and `region-end' instead of `mark' and
4752 `point'.
4753 (diff-hunk-text, diff-goto-source): Doc fix.
4754
4755 * startup.el (fancy-splash-screens, normal-splash-screen): Use
4756 face `mode-line-buffer-id' for mode-line buffer face instead of
4757 hard-coded `(:weight bold)'.
4758
4759 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
4760 buffer-undo-list to t (undo-ask is reproducible by visiting
4761 nested archives).
4762
4763 2006-05-09 Kim F. Storm <storm@cua.dk>
4764
4765 * progmodes/grep.el (rgrep): Set default directory of *grep*
4766 buffer if we start M-x rgrep in the *grep* buffer and choose
4767 a different base directory.
4768
4769 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
4770
4771 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
4772 completion also when ido is loaded.
4773
4774 2006-05-09 Masatake YAMATO <jet@gyve.org>
4775
4776 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
4777 "warning" and "import".
4778 (cpp-font-lock-keywords): Added "warning".
4779
4780 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
4781
4782 * term/xterm.el (terminal-init-xterm): Add more key bindings.
4783
4784 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
4785
4786 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
4787 pages at a time, if we signal the end, we should indeed reach that end.
4788
4789 2006-05-08 David Reitter <david.reitter@gmail.com>
4790
4791 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
4792 output during execution of the body.
4793
4794 2006-05-08 Kim F. Storm <storm@cua.dk>
4795
4796 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
4797
4798 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
4799
4800 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
4801 Use with-current-buffer.
4802
4803 2006-05-07 Kim F. Storm <storm@cua.dk>
4804
4805 * subr.el (add-to-history): Remove keep-dups arg.
4806
4807 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
4808 to nil around call to add-to-history.
4809
4810 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4811
4812 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
4813 than after a buffer modification.
4814
4815 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
4816
4817 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
4818 call to...
4819 (gud-watch): ...here so speedbar is raised for already watched
4820 expressions.
4821 (gdb-speedbar-refresh): Delete function.
4822 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
4823 Use speedbar-timer-fn instead of speedbar-refresh (reverting
4824 earlier change).
4825 (gdb-var-evaluate-expression-handler)
4826 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
4827
4828 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
4829 Update localized contents for all buffers except ignored modes.
4830
4831 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4832
4833 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
4834 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
4835 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
4836 (mac-handle-font-panel-closed, mac-handle-font-selection):
4837 New functions.
4838 (mac-font-panel-mode): New minor mode.
4839 (mac-apple-event-map): Add bindings for toolbar toggle button and
4840 font panel.
4841 (menu-bar-showhide-menu): Add mac-font-panel-mode.
4842
4843 2006-05-07 John Paul Wallington <jpw@pobox.com>
4844
4845 * ibuffer.el (ibuffer-compressed-file-name-regexp):
4846 Avoid `regexp-opt'; simplify regexp for readability.
4847
4848 2006-05-06 Eli Zaretskii <eliz@gnu.org>
4849
4850 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
4851 * files.el (buffer-stale-function):
4852 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
4853 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
4854 links to the main manual, not to emacs-xtra.
4855
4856 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4857
4858 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
4859 MacJapanese if text is ASCII-only.
4860
4861 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
4862
4863 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
4864 unless so nil isn't returned.
4865 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
4866
4867 2006-05-06 Kim F. Storm <storm@cua.dk>
4868
4869 * subr.el (add-to-history): New function.
4870
4871 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
4872 (ediff-merge-files-with-ancestor):
4873 * env.el (setenv):
4874 * isearch.el (isearch-update-ring):
4875 * server.el (server-visit-files):
4876 * progmodes/grep.el (lgrep, rgrep):
4877 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
4878 * progmodes/xscheme.el (xscheme-insert-expression):
4879 Use add-to-history.
4880
4881 * kmacro.el (kmacro-push-ring): Use add-to-history.
4882 (kmacro-ring-length): Remove unused defun.
4883 (kmacro-start-macro): Use kmacro-push-ring.
4884
4885 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
4886
4887 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
4888 directly instead of a lambda expression that calls it.
4889
4890 2006-05-06 Kim F. Storm <storm@cua.dk>
4891
4892 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
4893 instead of compute-motion.
4894
4895 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
4896
4897 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
4898 change.
4899
4900 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
4901
4902 * startup.el (command-line-1): Refer to "Pure Storage" on
4903 pure-space-overflow.
4904
4905 2006-05-05 Martin Rudalics <rudalics@gmx.at>
4906
4907 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
4908 provided faces once they all have been used up.
4909
4910 2006-05-05 Eli Zaretskii <eliz@gnu.org>
4911
4912 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
4913 reference to the Lisp manual to the warning about pure space
4914 overflow.
4915
4916 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
4917
4918 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
4919 argument to avoid the call to `ispell-internal-change-dictionary'
4920 when not needed.
4921 (ispell-change-dictionary): Use this argument and call
4922 `ispell-internal-change-dictionary' after the possible change
4923 to `ispell-local-dictionary'.
4924 (ispell-internal-change-dictionary): Check for a change in
4925 personal dictionary use too.
4926
4927 2006-05-05 Eli Zaretskii <eliz@gnu.org>
4928
4929 * startup.el (command-line): On MS-Windows, probe "~", not
4930 "~USER", for warning about non-existent home directory
4931
4932 * arc-mode.el (archive-l-e): New optional argument `float' means
4933 generate a float value.
4934 (archive-arc-summarize, archive-lzh-summarize)
4935 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
4936 with 3rd argument non-nil when file's size is being computed.
4937 Format the file sizes with %8.0f instead of %8d.
4938
4939 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4940
4941 * cus-start.el (all): Add mac-dnd-known-types.
4942
4943 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
4944 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
4945 (mac-TIFF-to-string): New functions.
4946 (x-get-selection, x-selection-value)
4947 (mac-select-convert-to-string): Use them.
4948 (mac-text-encoding-mac-japanese-basic-variant): New constant.
4949 (mac-dnd-types-alist): New customization variable.
4950 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
4951 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
4952 (mac-dnd-handle-drag-n-drop-event): New functions.
4953 (mac-drag-n-drop): Remove function.
4954 (global-map): Bind drag-n-drop and M-drag-n-drop to
4955 mac-dnd-handle-drag-n-drop-event.
4956
4957 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
4958
4959 * progmodes/perl-mode.el (perl-beginning-of-function):
4960 Skip anonymous subs.
4961
4962 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
4963
4964 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
4965 regexp-opt at run time.
4966
4967 * term.el (term-handle-ansi-escape): Fix off by one error.
4968
4969 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
4970
4971 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
4972 (gdb-init-1, gdb-post-prompt): ...and references to it.
4973 (gdb-frame-handler): Strip directory name from filename if present.
4974
4975 * progmodes/gud.el (gdb-force-update): Delete defvar
4976 (gud-speedbar-buttons): ...and references to it. Use window-start
4977 to try to keep positon in watch expression.
4978
4979 2006-05-03 Richard Stallman <rms@gnu.org>
4980
4981 * simple.el (next-history-element, previous-history-element): Doc fix.
4982
4983 * isearch.el (isearch-update-ring): Doc fix.
4984
4985 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
4986
4987 * isearch.el (isearch-update-ring): Take history-delete-duplicates
4988 into consideration. Replace one arm ifs with whens.
4989
4990 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
4991
4992 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
4993 (menu): Fix typo.
4994
4995 2006-05-02 Miles Bader <miles@gnu.org>
4996
4997 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
4998
4999 2006-05-02 Jay Belanger <belanger@truman.edu>
5000
5001 * calc/calc-embed.el (calc-override-minor-modes-map)
5002 (calc-override-minor-modes): New variables.
5003 (calc-do-embedded): Make sure that Calc keystrokes aren't
5004 overwritten by minor modes.
5005
5006 2006-05-02 Chong Yidong <cyd@mit.edu>
5007
5008 * msb.el (msb): If EVENT is a down event, read and discard the up event.
5009
5010 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
5011
5012 * startup.el (command-line-1): Refer to Lisp manual when
5013 pure-space-overflow occurs.
5014
5015 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
5016 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
5017 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
5018 (version-control): Don't use `t' for safe-local-variable declarations.
5019
5020 2006-05-01 Richard Stallman <rms@gnu.org>
5021
5022 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
5023 M-r, M-R, M-A, M-SPC or M-DEL.
5024 (diff-mode-map): diff-refine-hunk now on C-c C-w
5025 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
5026
5027 * help-mode.el (help-mode): view-exit-action calls delete-window
5028 only when it is safe and possible.
5029
5030 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
5031 in messages.
5032
5033 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
5034
5035 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
5036 in the default tool-bar-map.
5037
5038 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
5039
5040 * net/tramp.el (tramp-completion-file-name-handler-alist)
5041 (tramp-run-real-handler, tramp-completion-run-real-handler)
5042 (tramp-completion-handle-file-name-all-completions)
5043 (tramp-completion-handle-file-name-completion): Autoload them.
5044 (tramp-completion-handle-file-exists-p)
5045 (tramp-completion-handle-file-name-directory)
5046 (tramp-completion-handle-file-name-nondirectory)
5047 (tramp-completion-handle-expand-file-name): Remove them.
5048 (tramp-handle-file-name-directory): Return the real directory name.
5049 Returning "/" only doesn't need to be necessary any longer.
5050 (tramp-file-name-handler): Make special attention when in hostname
5051 completion mode.
5052 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
5053 (tramp-register-file-name-handlers):
5054 Register `tramp-completion-file-name-handler' only when
5055 `partial-completion-mode' is enabled.
5056 (tramp-completion-handle-file-name-all-completions):
5057 Delete directory part from results.
5058 (tramp-get-completion-methods, tramp-get-completion-user-host):
5059 Discard deleting "/", it doesn't work after the change of
5060 `tramp-handle-file-name-directory' above.
5061
5062 2006-05-01 Kim F. Storm <storm@cua.dk>
5063
5064 * progmodes/grep.el (grep-expand-template): Use save-match-data
5065 and symbol-value.
5066
5067 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5068
5069 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
5070 Use select-frame-set-input-focus instead of raise-frame.
5071 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
5072
5073 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
5074
5075 * progmodes/gud.el (gud-def): Add %c case.
5076 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
5077 (gud-format-command): Make match case sensitive. Match on %F.
5078
5079 2006-04-30 Glenn Morris <rgm@gnu.org>
5080
5081 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
5082 (cal-tex-preamble): Use cal-tex-preamble-extra.
5083 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
5084 than alias `list-diary-entries'.
5085
5086 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
5087
5088 * help-fns.el (describe-variable): Add info about safe local variables.
5089
5090 2006-04-29 Richard Stallman <rms@gnu.org>
5091
5092 * bindings.el (mode-line-format): help-echo doc fixes.
5093
5094 * net/tramp.el (tramp-file-name-handler-alist): Delete
5095 expand-file-name and other operations that can cause spurious loading.
5096
5097 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
5098
5099 * files.el (safe-local-variable-p): Remove support for the special
5100 value t.
5101
5102 * textmodes/paragraphs.el (sentence-end-without-space):
5103 Fix safety predicate.
5104 (sentence-end-double-space, sentence-end-without-period)
5105 (paragraph-ignore-fill-prefix):
5106 * textmodes/fill.el (colon-double-space):
5107 * abbrev.el (abbrev-mode): Tighten the safety predicate.
5108
5109 * subr.el (booleanp): New fun.
5110
5111 * textmodes/reftex-vars.el (reftex-guess-label-type):
5112 Tighten the safety predicate.
5113
5114 2006-04-28 Kim F. Storm <storm@cua.dk>
5115
5116 * progmodes/grep.el (defgroup grep): Doc fix.
5117 (grep-auto-highlight): Remove.
5118 (grep-template): New defcustom.
5119 (grep-find-template): Rename from grep-tree-template.
5120 (grep-files-aliases): Rename from grep-tree-files-aliases.
5121 Remove "all" alias, add "l" alias.
5122 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
5123 (grep-find-ignored-directories): New defcustom to replace
5124 grep-tree-ignore-CVS-directories, to facilitate ignoring
5125 subdirectories for multiple version control systems.
5126 (grep-mode-map): Add Recursive grep item to GREP menu.
5127 (grep-regexp-history, grep-files-history): New defvars.
5128 (grep-probe): New helper function.
5129 (grep-compute-defaults): Use it to simplify code.
5130 Adapt to name changes.
5131 Use `.' as base in grep-find-template rather than <D>.
5132 (grep): Remove superfluous highlight-regexp arg. Fix doc.
5133 Call grep-compute-defaults unconditionally.
5134 (grep-expand-keywords): New defconst.
5135 (grep-expand-template): Rename from grep-expand-command-macros.
5136 Simplify via grep-expand-keywords. Look at case-fold-search instead
5137 of grep-tree-ignore-case to add -i option.
5138 Bind case-fold-search to nil while matching keywords.
5139 (grep-tree-last-regexp, grep-tree-last-files): Remove.
5140 (grep-read-regexp, grep-read-files): New helper functions.
5141 (rgrep): Rename from grep-tree. Rework to use proper histories.
5142 Adapt to changes in defcustoms and functions above.
5143 (lgrep): New command, as grep, but using same interactive UI as rgrep.
5144
5145 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
5146
5147 * net/tramp.el (tramp-completion-file-name-handler):
5148 Disable Tramp's functionality while loading Tramp itself.
5149 (tramp-register-file-name-handlers): That's a defsubst now.
5150 Code from `tramp-repair-jka-compr' moved here. Apply it via
5151 `after-init-hook'.
5152 (tramp-repair-jka-compr): Remove.
5153
5154 2006-04-27 Jay Belanger <belanger@truman.edu>
5155
5156 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
5157 read expression when `math-read-big-expr' doesn't work.
5158
5159 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
5160
5161 * startup.el (command-line-1): Display warning when
5162 pure-space-overflow is non-nil.
5163
5164 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5165
5166 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
5167 risky.
5168
5169 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5170
5171 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
5172 Return the URL or nil if none can be generated.
5173
5174 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
5175
5176 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
5177 byte compiler warnings.
5178 (gud-basic-call, gud-find-expr): Let user select an expression
5179 for printing. Print expression as well as value in GUD buffer.
5180
5181 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
5182
5183 * allout.el: Remove local autoload declaration for
5184 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
5185 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
5186 (allout-plain-bullets-string, allout-distinctive-bullets-string)
5187 (allout-use-mode-specific-leader, allout-old-style-prefixes)
5188 (allout-stylish-prefixes, allout-numbered-bullet)
5189 (allout-file-xref-bullet, allout-presentation-padding)
5190 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
5191 safe-local-variable with suitable value spec, and add autoload
5192 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
5193 (move-beginning-of-line, move-end-of-line): Repair so these compat
5194 functions now actually resituate the point, when appropriate.
5195
5196 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5197
5198 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
5199
5200 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
5201 (add-log-iso8601-time-string): Fix call to format-time-string.
5202
5203 2006-04-26 Kim F. Storm <storm@cua.dk>
5204
5205 * subr.el (posn-string, posn-image, posn-object): Doc fix.
5206
5207 2006-04-26 Masatake YAMATO <jet@gyve.org>
5208
5209 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
5210 Add support for "//" style comments. Remove `b' flag
5211 from ?* in `asm-mode-syntax-table'.
5212
5213 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5214
5215 * follow.el: Use (featurep 'xemacs) everywhere.
5216 (follow-mode): Use define-minor-mode.
5217 (follow-mode-map): Move initialization into the declaration.
5218 Use command remapping.
5219 (follow-emacs-version-xemacs-p): Remove.
5220 (follow-submit-feedback): Remove.
5221
5222 * allout.el (allout-layout, allout-passphrase-verifier-string)
5223 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
5224
5225 * textmodes/reftex-vars.el (reftex-vref-is-default)
5226 (reftex-fref-is-default, reftex-guess-label-type):
5227 Tighten up a bit the safety predicate.
5228
5229 * textmodes/paragraphs.el (sentence-end-double-space)
5230 (sentence-end-without-period, sentence-end-without-space)
5231 (page-delimiter, paragraph-ignore-fill-prefix):
5232 Tighten up a bit the safety predicate.
5233
5234 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
5235
5236 * progmodes/python.el (python-continuation-line-p)
5237 (python-beginning-of-statement): syntax-ppss may return
5238 a negative depth.
5239 (python-mode): Don't forcefully enable font-lock.
5240
5241 * time-stamp.el (time-stamp-start, time-stamp-end)
5242 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
5243
5244 * add-log.el: Remove spurious * in docstrings.
5245 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
5246 (add-change-log-entry): Use it here, since it's not specific
5247 to iso8601.
5248 (add-log-iso8601-time-string): Don't use it here any more.
5249 (change-log-indent-text, change-log-indent): Rename from add-log-*.
5250
5251 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
5252
5253 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
5254
5255 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
5256 (rcirc-toggle-low-priority): Doc fix.
5257 (rcirc-handler-NOTICE): Remove beginning of line anchor in
5258 ChanServ regexp.
5259 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
5260 #emacs.
5261 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
5262 (rcirc-decode-coding-system): Use utf-8 as the default.
5263 (rcirc-multiline-minor-mode): Set the fill-column.
5264 (rcirc-format-response-string): Display bright and dim nicks.
5265 (rcirc-browse-url): Update interactive spec to fill ARG.
5266 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
5267 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
5268
5269 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
5270
5271 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
5272 case for @Article, etc.
5273
5274 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
5275
5276 * net/tramp.el (tramp-register-file-name-handlers): New defun.
5277 Added with autoload cookie.
5278 (tramp-unload-file-name-handlers): Rename from
5279 `tramp-unload-file-name-handler-alist'.
5280
5281 2006-04-23 Romain Francoise <romain@orebokech.com>
5282
5283 * comint.el (comint-match-partial-filename): Doc fix.
5284
5285 2006-04-21 Glenn Morris <rgm@gnu.org>
5286
5287 * calendar/cal-menu.el (calendar-mode-map): Refer to
5288 `diary-view-entries' rather than alias `view-diary-entries'.
5289 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
5290
5291 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
5292
5293 * progmodes/antlr-mode.el (antlr-default):
5294 * cus-edit.el (custom-documentation):
5295 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
5296 in defface.
5297
5298 2006-04-21 Kim F. Storm <storm@cua.dk>
5299
5300 * image.el (image-type): New defun split out of create-image.
5301 (create-image): Use it.
5302
5303 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
5304
5305 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
5306 (org-open-at-point): Remove the "...done" message to keep output
5307 in the echo area visible.
5308 (org-export-as-xoxo): Fix call to `indent-region'.
5309
5310 2006-04-21 Kevin Ryde <user42@zip.com.au>
5311
5312 * international/mule.el (keyboard-coding-system): defcustom
5313 info-link fixes: "Specify Coding" has been split, keyboard now in
5314 "Terminal Coding", and "Single-Byte Character Support" is now
5315 "Unibyte Mode".
5316
5317 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
5318
5319 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
5320 Use font-lock-warning-face for any errors e.g. no stack.
5321 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
5322
5323 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
5324
5325 * progmodes/sh-script.el (sh-shell): Mark as safe.
5326
5327 * newcomment.el (comment-start, comment-start-skip)
5328 (comment-end-skip, comment-end): Mark as safe.
5329
5330 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
5331
5332 * textmodes/org.el (org-deadline-announce): Face removed.
5333 (org-level-faces, org-n-levels): Convert to constant.
5334 (org-compatible-face): New function.
5335 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
5336 (org-level-5, org-level-6, org-level-7, org-level-8)
5337 (org-special-keyword, org-warning, org-headline-done, org-link)
5338 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
5339 (org-scheduled-today, org-scheduled-previously, org-time-grid):
5340 Face definition revised for better color tty support.
5341 (org-bold-re, org-italic-re, org-underline-re): New constants.
5342 (org-set-font-lock-defaults): Use the new constants.
5343 (org-agenda-highlight-todo): New function.
5344 (org-agenda-todo): Fix bug with point at end of line.
5345 (org-agenda-change-all-lines, org-finalize-agenda-entries):
5346 Fontify TODO keywords.
5347 (org-insert-link): Preserve relative path in ../ links.
5348 (org-export-as-html): Convert links pointing to .org files into
5349 links that will work beteen the exported HTML files.
5350 (org-todo-list): Fix bug when arg=0.
5351 (org-insert-heading): More fine-tuning.
5352
5353 2006-04-19 Romain Francoise <romain@orebokech.com>
5354
5355 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
5356 from `rmail-mime-charset-pattern'.
5357
5358 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
5359
5360 * progmodes/python.el (python-mode): Fix typo.
5361
5362 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
5363
5364 * comint.el (comint-previous-input): Don't clobber input line
5365 when moving off either end of the input history ring.
5366 (comint-delete-input): New function, used by
5367 `comint-previous-input' and others.
5368 (comint-previous-matching-input):
5369 Use `coming-delete-input'. Save the partial input if leaving the
5370 edit line. Goto point-max before deleting input to avoid
5371 partial input fragments hanging around.
5372 (comint-restore-input): New function, used by `comint-previous-input'.
5373
5374 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
5375
5376 * imenu.el (imenu--index-alist): Balance parentheses.
5377
5378 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
5379
5380 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
5381
5382 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
5383
5384 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
5385 file is nil.
5386
5387 2006-04-18 Richard Stallman <rms@gnu.org>
5388
5389 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
5390
5391 * imenu.el (imenu-create-index-function, imenu--index-alist)
5392 (imenu--last-menubar-index-alist, imenu--make-index-alist)
5393 (imenu-default-create-index-function, imenu--generic-function):
5394 Doc fixes.
5395
5396 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
5397
5398 * help-mode.el (help-mode): Set view-exit-action to delete window.
5399
5400 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
5401 now works by passing nil as arg.
5402
5403 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
5404
5405 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
5406 (read-abbrev-file): Provide default when reading filename.
5407
5408 * files.el (enable-local-variables): Allow :all as value.
5409 (hack-local-variables): Implement that value.
5410 (safe-local-variable-values, safe-local-eval-forms)
5411 (enable-local-variables): Mark as risky.
5412 (find-file-visit-truename, kept-old-versions): Mark safe.
5413
5414 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
5415 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
5416 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
5417
5418 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
5419
5420 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
5421 Use forward-line so as to get to BOL even in the presence of fields.
5422 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
5423 in return.
5424 (inferior-tcl): Tell tclsh to work in interactive mode.
5425
5426 * complete.el (partial-completion-mode):
5427 Use 'choose-completion-string-functions to make sure that
5428 choose-completion fills the minibuffer properly.
5429
5430 * complete.el (PC-old-read-file-name-internal): Remove.
5431 (PC-read-include-file-name-internal): Remove. Turn it into an advice
5432 of read-file-name-internal.
5433 (partial-completion-mode): Enable/disable this advice.
5434
5435 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
5436
5437 * net/tramp.el (tramp-completion-file-name-handler): Revert change
5438 of 2006-04-17.
5439
5440 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
5441
5442 * textmodes/org.el (org-insert-heading): Insert heading before
5443 current if at beginning of line.
5444 (org-todo, org-date): New faces.
5445 (org-table-align): Make sure tooltip window contains full text.
5446 (org-no-properties): New defsubst.
5447 (org-set-font-lock-defaults): Use new faces.
5448
5449 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
5450
5451 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
5452 for root variables.
5453
5454 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
5455 (gdb-frame-address): Re-use to identify frame for watch expression.
5456 (gdb-var-list, gdb-var-create-handler): Add frame address for root
5457 variables.
5458 (gdb-init-1, gdb-source, gdb-post-prompt)
5459 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
5460 (gdb-frame-handler): Get gdb-frame-address.
5461
5462 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
5463
5464 Sync with Tramp 2.0.53.
5465
5466 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
5467 'control. Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
5468 (tramp-completion-file-name-handler): Add autoload cookie for
5469 adding to `file-name-handler-alist'.
5470
5471 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
5472 the prompt. If it returns earlier (when detecting an error
5473 message), the rest of the output will merge accidently with the
5474 output of the next command. Reported by M Jared Finder
5475 <jared@hpalace.com>.
5476
5477 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
5478 for `process-file', in order to let it work for older Emacsen too.
5479
5480 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
5481
5482 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
5483 (tex-font-lock-keywords-3): Use it.
5484
5485 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
5486
5487 * newcomment.el (comment-add): New function.
5488 (comment-region-default, comment-dwim): Use it.
5489
5490 2006-04-15 Michael Olson <mwolson@gnu.org>
5491
5492 * emacs-lisp/tq.el: Improve comments.
5493 (tq-queue-head-question): New accessor function.
5494 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
5495 Update for modified queue structure.
5496 (tq-queue-add): Accept `question' argument.
5497 (tq-queue-pop): If a question is pending, send it.
5498 (tq-enqueue): Accept new optional argument `delay-question'.
5499 If this is non-nil, and at least one other question is pending a
5500 response, queue the question rather than sending it immediately.
5501
5502 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5503
5504 * calendar/appt.el (appt-add): Check whether an appointment is
5505 already present in appt-time-msg-list. Simplify code.
5506
5507 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5508
5509 * progmodes/cc-langs.el (c-mode-menu):
5510 Don't presume c-subword-mode is bound.
5511
5512 2006-04-13 Bill Wohler <wohler@newt.com>
5513
5514 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
5515 (customize-package-emacs-version): Use cdr instead of cadr now
5516 that alists use dotted pairs.
5517
5518 * custom.el (defcustom): Fix docstring for :package-version.
5519
5520 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
5521
5522 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
5523 (tramp-handle-shell-command): Display output buffer only when
5524 `tramp-display-shell-command-buffer' is true.
5525 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
5526
5527 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
5528
5529 * textmodes/org.el (org-set-autofill-regexps): Set only the local
5530 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
5531
5532 2006-04-13 Romain Francoise <romain@orebokech.com>
5533
5534 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
5535 leaving temporary .cvsignore buffers behind.
5536
5537 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
5538
5539 * textmodes/org.el (org-set-regexps-and-options)
5540 (org-get-current-options): Better names for the startup folding
5541 options.
5542
5543 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
5544
5545 * vc.el (vc-annotate): Arrange for point to end up at the same
5546 line number as in the original, but only when using a new buffer.
5547
5548 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
5549
5550 * files.el (hack-one-local-variable-eval-safep):
5551 Recognize `edebug-form-spec' for `put', but only if it passes
5552 `edebug-basic-spec'. Generalize `put' handling.
5553
5554 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
5555 vetting file-local form specs.
5556
5557 * allout.el (allout-layout): Autoload its `safe-local-variable'
5558 property.
5559
5560 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
5561
5562 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
5563 (org-agenda-mouse-1-follows-link)
5564 (org-mouse-1-follows-link): New options.
5565 (org-format-agenda-item): Fix bug if TAGS is nil.
5566 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
5567
5568 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
5569
5570 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
5571 GDB 6.1+ gives full filename for "info sources" so use
5572 file-name-nondirectory.
5573
5574 2006-04-12 Romain Francoise <romain@orebokech.com>
5575
5576 * subr.el (read-passwd): Bind `message-log-max' to nil.
5577
5578 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5579
5580 * progmodes/perl-mode.el (perl-indent-new-calculate):
5581 Recompute parse-start after jumping backward by a whole sexp.
5582
5583 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5584
5585 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
5586 window configuration.
5587 (vc-annotate-display-select): Select the buffer so that current-buffer
5588 (and selected-window) is the output buffer at the end of vc-annotate.
5589
5590 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
5591
5592 * vc.el (vc-annotate-color-map): Add custom TTY color map for
5593 8-color terminals, to use all of the colors in a sensible order.
5594 256-color terminals work well with the standard map.
5595 (vc-annotate-lines): Only strip the first color character if it
5596 is "#", to allow for terminal-style named colors.
5597 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
5598 the correct buffer is scrolled.
5599
5600 2006-04-11 Richard Stallman <rms@gnu.org>
5601
5602 * emacs-lisp/bytecomp.el (byte-compile-file):
5603 Bind enable-local-variables to :safe, and make normal-mode obey it.
5604
5605 * files.el (enable-local-variables): Allow value :safe.
5606 (normal-mode): Doc fix.
5607 (hack-local-variables): Implement enable-local-variables = :safe.
5608 (hack-local-variables-confirm): Don't prevent quitting.
5609
5610 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5611
5612 * loadhist.el (unload-feature): A bit of sanity check of
5613 load-history entries. Cancel timer-vars before unbinding them.
5614
5615 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
5616 quote special chars, and make the trick work on the hex part of the
5617 buffer as well.
5618 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
5619 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
5620
5621 * startup.el (normal-splash-screen): Fix last change so we don't wait
5622 2 minutes if we don't show the splash screen.
5623
5624 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
5625
5626 * textmodes/org.el (org-export-plain-list-max-depth)
5627 (org-table-spaces-around-separators)
5628 (org-radio-targets, org-activate-camels)
5629 (org-table-spaces-around-invisible-separators): Options removed.
5630 (org-time-stamp-rounding-minutes, org-remember-templates)
5631 (org-ellipsis, org-activate-links, org-descriptive-links):
5632 New options.
5633 (org-remember-apply-template, org-current-time)
5634 (org-finish-edit-table-field)
5635 (org-link-unescape, org-link-escape)
5636 (org-string-width, org-table-clean-line, org-html-do-expand)
5637 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
5638 (org-read-agenda-file-list): New functions.
5639 (org-table-edit-field)
5640 (org-table-create-or-convert-from-region): New commands
5641 (org-table-toggle-vline-visibility): Command removed.
5642 (org-table-convert-region): Made a command.
5643 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
5644 Replace with the normal org- functions.
5645 (org-self-insert-command): Don't trigger realign unnecessarily
5646 when blanking a field that is not full.
5647 (org-mode): `Set buffer-invisibility-spec' for links.
5648 (org-activate-links2): Hide link part and only show descriptive
5649 part of the link.
5650 (org-insert-link): Modify for new linking system.
5651 (org-store-link): Store description separately, for use by
5652 `org-insert-link'.
5653 (org-table-align): Use `org-string-width'.
5654 (defgroup): Completely new group structure for custom variables.
5655 (org-agenda-files): Option: Single file name allowed. Function:
5656 Optional argument unrestrited means ignore any restricitons.
5657 (org-install-agenda-files-menu): Find a buffer in Org-mode before
5658 trying to modify the menu. Use generalized access to
5659 `org-agenda-files.'
5660 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
5661 (org-agenda-file-to-front, org-remove-file, org-diary)
5662 (org-tags-view, org-export-icalendar-all-agenda-files)
5663 (org-export-icalendar-combine-agenda-files): Use generalized
5664 access to `org-agenda-files'.
5665 (org-remember-handler): Correctly preserve heading if present.
5666 (org-table-insert-row, org-table-insert-hline): Deal with
5667 invisible characters.
5668
5669 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
5670
5671 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
5672 (vc-annotate-color-map): New 18 element constant
5673 value/saturation, rotating hue colormap, from red->blue.
5674 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
5675 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
5676 (vc-annotate): To avoid killing the required local variables,
5677 set them before the end of `with-output-to-temp-buffer', and
5678 after first switching to annotate-mode.
5679 (vc-annotate-warp-version): Add buffer argument in goto-line to
5680 ensure annotation, not source, is scrolled.
5681
5682 2006-04-10 Bill Wohler <wohler@newt.com>
5683
5684 * custom.el (defcustom, custom-handle-keyword):
5685 Add :package-version keyword.
5686 (custom-add-package-version): New function. Sets value of new
5687 property 'custom-package-version from :package-version keyword.
5688 (defcustom): Create Common Keywords section in docstring.
5689 (defface, defgroup): Replace definitions of a select few keywords
5690 with a reference to the Common Keywords in defcustom.
5691 (defcustom, defface, defgroup): Replace reference to Customization
5692 chapter in manual with hyperlink.
5693
5694 * cus-edit.el (customize-package-emacs-version-alist):
5695 New variable.
5696 (customize-changed-options): Add check for custom-package-version.
5697 (customize-package-emacs-version): New function to look up Emacs
5698 version corresponding to the given package version.
5699
5700 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
5701 defun name, in similar fashion to find-variable-regexp.
5702
5703 2006-04-10 Eli Zaretskii <eliz@gnu.org>
5704
5705 * international/mule-cmds.el (set-locale-environment): Fix last
5706 change for when the locale's preferences don't specify any encoding.
5707
5708 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
5709
5710 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
5711 so the defined var/fun doesn't need to be quoted.
5712
5713 2006-04-10 Richard Stallman <rms@gnu.org>
5714
5715 * finder.el (finder-mode-map): Add n and p bindings.
5716
5717 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
5718
5719 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
5720 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
5721 (gdb-setup-windows): Put something in source window if we can't find
5722 the source file.
5723 (gdb-frame-handler): Make it work again with just assembly.
5724 (gdb-data-list-register-values-handler): Make it work when there is
5725 no stack.
5726
5727 2006-04-09 Richard Stallman <rms@gnu.org>
5728
5729 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
5730 specs while looking for charset.
5731
5732 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
5733
5734 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
5735 Make them faces.
5736 (lm-font-lock-keywords): Update appropriately.
5737
5738 2006-04-10 Kim F. Storm <storm@cua.dk>
5739
5740 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
5741 it can also replace buffer-substring-no-properties.
5742
5743 * emulation/cua-base.el (cua-delete-region, cua-paste)
5744 (cua-repeat-replace-region): Use filter-buffer-substring.
5745
5746 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
5747 (cua-cut-region-to-global-mark): Likewise.
5748
5749 * emulation/cua-rect.el (cua--extract-rectangle)
5750 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
5751
5752 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5753
5754 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
5755 entry-type. Add field delimiters to numerical fields if they are
5756 not present.
5757
5758 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5759
5760 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
5761 string-const to return value.
5762 (bibtex-remove-delimiters): Use it.
5763
5764 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
5765
5766 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
5767 cl-byte-compile-compiler-macro unless it exists.
5768
5769 2006-04-08 Eli Zaretskii <eliz@gnu.org>
5770
5771 * files.el (hack-local-variables-confirm) <offer-save>:
5772 Clarify message text. Suggested by Ralf Angeli.
5773
5774 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org>
5775
5776 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
5777 (delete-extract-rectangle-line): Use `filter-buffer-substring'
5778 instead of `buffer-substring' and `delete-region'. (Most of the
5779 code actually copied from `kill-region'.)
5780
5781 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
5782
5783 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
5784 (rcirc-default-port): Rename from rcirc-port.
5785 (rcirc-default-nick): Rename from rcirc-nick.
5786 (rcirc-default-user-name): Rename from rcirc-user-name.
5787 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
5788 (rcirc-low-priority-flag): New variable.
5789 (rcirc-decode-coding-system): New defcustom.
5790 (rcirc-encode-coding-system): New defcustom.
5791 (rcirc-coding-system-alist): New defcustom.
5792 (rcirc-multiline-major-mode): New defcustom.
5793 (rcirc-nick): New internal variable.
5794 (rcirc-process): Remove variable.
5795 (rcirc-server-buffer): New variable.
5796 (rcirc): Update to use rcirc-default-* variables above.
5797 (rcirc-connect): Do not add window-configuration-hook-here.
5798 (rcirc-server): New internal variable.
5799 (rcirc-connect): Do not send keepalive pings if
5800 rcirc-keepalive-seconds is nil.
5801 (with-rcirc-server-buffer): New macro.
5802 (rcirc-send-string): Encode with rcirc-encode-coding-system.
5803 (rcirc-server-name): Rename from rcirc-server.
5804 (rcirc-buffer-process): New function.
5805 (rcirc-buffer-nick): New function.
5806 (rcirc-buffer-target): Remove function.
5807 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
5808 New commands.
5809 (rcirc-mode-map): Change binding of C-c C-l to
5810 rcirc-toggle-low-priority.
5811 (rcirc-mode): Initialize coding system based on
5812 rcirc-coding-system-alist. New change-major-mode-hook to part the
5813 channel on a mode change. Make kill-buffer-hook buffer-local.
5814 (rcirc-change-major-mode-hook): New function.
5815 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
5816 (rcirc-last-post-time): New variable.
5817 (rcirc-process-message): Store the last time user posted a message
5818 to this target.
5819 (rcirc-multiline-minor-mode): New mode.
5820 (rcirc-multiline-minor-mode-map): New mode map.
5821 (rcirc-edit-multiline): Put multiline-edit buffer in
5822 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
5823 (rcirc-print): Ignore any line starting with an ignored nick.
5824 (rcirc-print): Decode using rcirc-decode-coding-system.
5825 (rcirc-track-minor-mode): Update global-mode-string when disabling
5826 this mode.
5827 (minor-mode-alist): Add LowPri indicator.
5828 (rcirc-toggle-low-priority): New function.
5829 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
5830 next lowpriority buffer with activity.
5831 (rcirc-record-activity): Sort buffers in rcirc-activity by the
5832 last time the user posted a message in to the target.
5833 (rcirc-update-activity-string): New formatting for low priority
5834 buffers.
5835 (rcirc-split-activity): New function.
5836 (rcirc-handler-PART, rcirc-handler-KICK)
5837 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
5838 (rcirc-nick-away-alist): New variable.
5839 (rcirc-handler-301): New handler. Away messages are printed once
5840 per change.
5841
5842 2006-04-08 Eli Zaretskii <eliz@gnu.org>
5843
5844 * info.el (Info-follow-nearest-node): Doc fix.
5845
5846 * international/mule-cmds.el (set-locale-environment): Make sure
5847 the coding-system preferred by the locale's language has the same
5848 EOL conversion type as the original buffer-file-coding-system.
5849 (locale-language-names): Add a few MS Windows language codes.
5850
5851 2006-04-07 Richard Stallman <rms@gnu.org>
5852
5853 * simple.el (eval-expression): Doc fix.
5854
5855 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
5856 (eval-defun): Doc fixes.
5857
5858 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
5859
5860 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
5861
5862 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
5863
5864 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
5865 GDB list command without argument for greater generality.
5866
5867 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
5868
5869 * subr.el (string-or-null-p): New function.
5870
5871 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
5872
5873 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
5874
5875 * files.el: Update comment about safe-local-variable declarations.
5876
5877 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
5878
5879 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
5880 See idlwave.org.
5881
5882 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
5883 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
5884
5885 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
5886 See idlwave.org.
5887
5888 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
5889 version 6.0 (minimal changes). See idlwave.org.
5890
5891 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
5892 6.0 (minimal changes). See idlwave.org.
5893
5894 * progmodes/idlw-rinfo.el: File obsoleted and removed.
5895
5896 2006-04-06 Romain Francoise <romain@orebokech.com>
5897
5898 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
5899 symmetric encryption features and a new asynchronous interface to
5900 GnuPG. This new version is version 1.4, plus whitespace changes.
5901
5902 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
5903
5904 * files.el: Move some `safe-local-variable' declarations to the
5905 respective files.
5906
5907 * textmodes/ispell.el (ispell-check-comments)
5908 (ispell-local-dictionary): Mark as safe.
5909
5910 * abbrev.el (abbrev-mode): Mark as safe.
5911
5912 * add-log.el (change-log-default-name): Mark as safe.
5913
5914 * textmodes/reftex-vars.el (reftex-vref-is-default)
5915 (reftex-fref-is-default, reftex-level-indent)
5916 (reftex-guess-label-type): Mark as safe.
5917
5918 * textmodes/fill.el (colon-double-space): Mark as safe.
5919
5920 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
5921 (sentence-end-double-space, sentence-end-without-period)
5922 (sentence-end-without-space, sentence-end, sentence-end-base)
5923 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
5924
5925 2006-04-06 Kim F. Storm <storm@cua.dk>
5926
5927 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
5928 the :set-after list.
5929 (ido-downcase-unc-hosts): New user option. Default on.
5930 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
5931 when it is set, as regexps are now applied on the fly.
5932 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
5933 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
5934 on the fly, but only when ido-process-ignore-lists is set.
5935 Do case insensitive filtering if ido-downcase-unc-hosts is set.
5936 Only downcase names if ido-downcase-unc-hosts is set.
5937
5938 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
5939
5940 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
5941
5942 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
5943
5944 2006-04-05 Kim F. Storm <storm@cua.dk>
5945
5946 * ido.el (ido-mode): Set after ido-unc-hosts and
5947 ido-ignore-unc-host-regexps.
5948 (ido-save-history): Save ido-unc-hosts-cache.
5949 (ido-load-history): Load ido-unc-hosts-cache.
5950 (ido-reread-directory): Refresh unc hosts cache in // dir.
5951
5952 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
5953 to nil while displaying slash screen.
5954
5955 2006-04-05 Daiki Ueno <ueno@unixuser.org>
5956
5957 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
5958 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
5959
5960 2006-04-05 Kenichi Handa <handa@m17n.org>
5961
5962 * international/characters.el: Setup cases of Latin, Greek, and
5963 Cyrillic characters in CJK charsets.
5964
5965 2006-03-29 Daiki Ueno <ueno@unixuser.org>
5966
5967 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
5968 default-enable-multibyte-characters. This reverts the change from
5969 revision 6.17 which is no longer necessary because the passphrase
5970 is sent separately now. GnuPG messages are unreadable under
5971 multibyte locales with default-enable-multibyte-characters set to nil.
5972
5973 2006-04-04 Andreas Schwab <schwab@suse.de>
5974
5975 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
5976 and `byte-compile-warnings' as `safe-local-variable'.
5977
5978 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
5979
5980 * man.el (Man-mode-map): Restore the \r binding.
5981 (Man-abstract-xref-man-page): If Man-target-string is a function,
5982 call it.
5983 (Man-highlight-references): Use Man-default-man-entry to get the
5984 target. Deal with xrefs too.
5985 (Man-highlight-references0): Don't call the target function.
5986
5987 * woman.el (WoMan-xref-man-page): Strip the section number, woman
5988 cannot deal with it.
5989
5990 2006-04-04 Daiki Ueno <ueno@unixuser.org>
5991
5992 * pgg-gpg.el: Clean up process buffers every time gpg processes
5993 complete.
5994
5995 2006-04-04 Kenichi Handa <handa@m17n.org>
5996
5997 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
5998 here.
5999 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
6000 Temporarily bind inhibit-field-text-motion to t.
6001
6002 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
6003
6004 * startup.el (normal-splash-screen): Only set mode-line-format in the
6005 splash buffer, so as not to interfere when debugging the code.
6006 Ignore errors when switching buffer.
6007
6008 2006-04-03 Romain Francoise <romain@orebokech.com>
6009
6010 * dired.el (dired-dnd-protocol-alist): Fix typo.
6011
6012 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
6013
6014 * savehist.el (savehist): Add :version.
6015 (savehist-ignored-variables): New variable.
6016 (savehist-minibuffer-hook): Don't save variables listed in
6017 `savehist-ignored-variables'.
6018
6019 * dired.el (dired-dnd-protocol-alist): Mention that change does
6020 only apply to new buffers in doc string.
6021
6022 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
6023
6024 * recentf.el (recentf-open-files-item): Include newline in button
6025 field, so opening a file will work, when the point is at the end
6026 of the file name. Allow, for example, to [i]search a file by
6027 extension and just push RET to open it.
6028
6029 2006-04-03 Daiki Ueno <ueno@unixuser.org>
6030
6031 * pgg-gpg.el (pgg-gpg-process-filter)
6032 (pgg-gpg-wait-for-completion): Check if buffer is alive.
6033
6034 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
6035 lines, temporary fix.
6036
6037 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
6038
6039 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
6040
6041 2006-04-02 Richard Stallman <rms@gnu.org>
6042
6043 * progmodes/compile.el (compilation-message-face): Make it defcustom.
6044
6045 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
6046
6047 * ibuf-macs.el (define-ibuffer-column): Add a new key:
6048 header-mouse-map.
6049
6050 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
6051 (ibuffer-mode-header-map): New keymaps.
6052 (ibuffer-update-title-and-summary): Enable mouse face highlighting
6053 and keybindings for column headers.
6054 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
6055 property.
6056
6057 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
6058
6059 * speedbar.el (speedbar-after-create-hook): Doc fix.
6060
6061 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
6062
6063 * shell.el (shell-directory-tracker)
6064 (shell-dynamic-complete-command): Doc fixes.
6065
6066 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
6067
6068 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
6069 terminals.
6070
6071 2006-04-01 Kim F. Storm <storm@cua.dk>
6072
6073 * ido.el (ido-unc-hosts-cache): New defvar.
6074 (ido-unc-hosts): If value of defcustom is a function, call it to
6075 get list of UNC hosts. Add function-item choices to specify
6076 ido-unc-hosts-net-view or user function.
6077 (ido-ignore-unc-host-regexps): New defcustom.
6078 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
6079 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
6080 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
6081
6082 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
6083
6084 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
6085 wwidth.
6086
6087 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
6088
6089 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
6090 (ido-max-work-file-list, ido-switch-buffer)
6091 (ido-read-file-name-as-directory-commands):
6092 Fix typos in docstrings.
6093
6094 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6095
6096 * term/mac-win.el (mac-system-coding-system): Define and use after
6097 Mac-specific coding systems are ready.
6098
6099 2006-03-27 Romain Francoise <romain@orebokech.com>
6100
6101 * net/rcirc.el (rcirc-connect): Add autoload cookie.
6102
6103 * ldefs-boot.el: Update.
6104
6105 2006-03-27 Daiki Ueno <ueno@unixuser.org>
6106
6107 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
6108 passphrases when it is not needed.
6109 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
6110 passphrase stuff from gpg, should only be necessary when you use
6111 gpg with a smartcard.
6112
6113 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
6114
6115 * comint.el (comint-dynamic-list-completions): Allow user to
6116 select *Completions* buffer.
6117
6118 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
6119
6120 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
6121
6122 2006-03-26 Andreas Schwab <schwab@suse.de>
6123
6124 * progmodes/gud.el (gdb): Only complain about multiple debugging
6125 when the gdb process is still running.
6126
6127 2006-03-25 Eli Zaretskii <eliz@gnu.org>
6128
6129 * mail/rmail.el (tool-bar-map): Defvar it.
6130 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
6131 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
6132
6133 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
6134
6135 * help.el (print-help-return-message): Suggest to use
6136 display-buffer instead of switch-to-buffer-other-window to restore
6137 the previous window without selecting it.
6138
6139 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6140
6141 * frame.el (select-frame-by-name): Call x-focus-frame also when
6142 window-system is mac.
6143
6144 * term/mac-win.el: Adjust Courier font specifications in
6145 x-fixed-font-alist.
6146 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
6147 when directly encoding to UTF-16 in native byte order, no BOM.
6148
6149 2006-03-25 Kim F. Storm <storm@cua.dk>
6150
6151 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
6152 (cua--init-keymaps): Use it instead of fixed C-return.
6153 (cua-mode): Set after it.
6154
6155 * emulation/cua-rect.el (cua--init-rectangles):
6156 Use cua-rectangle-mark-key instead of fixed C-return.
6157
6158 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
6159
6160 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
6161 "run" in .gdbinit.
6162 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
6163
6164 2006-03-24 Romain Francoise <romain@orebokech.com>
6165
6166 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
6167 `display-buffer-other-frame'.
6168
6169 2006-03-24 Kim F. Storm <storm@cua.dk>
6170
6171 * apropos.el (apropos-synonyms): Add selection => region.
6172
6173 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
6174
6175 * progmodes/gdb-ui.el (gdb-var-create-regexp)
6176 (gdb-var-list-children-regexp, gdb-var-update-regexp)
6177 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
6178 (gdb-data-list-register-values-regexp)
6179 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
6180 Future proof against new fields being added to MI output.
6181 (gdb-send): Don't treat backslashes for program input as
6182 continuations.
6183 (gdb-assembler-handler): Don't use window-start for this handler.
6184 (gdb-frame-handler): Don't change to hollow arrow if overlay
6185 arrow doesn't move to new frame.
6186
6187 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
6188
6189 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
6190 prevent compiler warnings.
6191 (gdb-stopped): Check for gud-last-last-frame (case: signal).
6192 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
6193 (gdb-assembler-custom): Use hollow-right-triangle for assembler
6194 buffer too.
6195
6196 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
6197
6198 * pgg-gpg.el (pgg-gpg-update-agent): Check for
6199 make-network-process, so we can use the same code in Gnus v5-10
6200 too and have this file fully synchronized with that release.
6201
6202 2006-03-23 Romain Francoise <romain@orebokech.com>
6203
6204 * ibuf-ext.el (ibuffer-read-filter-group-name):
6205 Use `ibuffer-generate-filter-groups' to make completion list match
6206 the filter groups that are really displayed in the Ibuffer buffer.
6207 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
6208
6209 2006-03-23 Kenichi Handa <handa@m17n.org>
6210
6211 * international/mule-cmds.el (sort-coding-systems): Describe that
6212 the argument is modified in docstring.
6213
6214 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
6215
6216 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
6217 (pgg-gpg-update-agent): New function.
6218 (pgg-gpg-use-agent-p): New function.
6219 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
6220 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
6221 (pgg-gpg-sign-region): Use it.
6222
6223 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
6224
6225 * cus-edit.el (custom-face-set): Call custom-push-theme before
6226 face-spec set so that `changed' theme is correctly saved.
6227 (custom-face-reset-standard): Reset to recalculated face rather
6228 than defface spec.
6229
6230 * custom.el (custom-push-theme): Only save `changed' theme if the
6231 current face does not match the defface specs.
6232
6233 2006-03-21 Simon Josefsson <jas@extundo.com>
6234
6235 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
6236 <wilde@sha-bang.de>.
6237 (pgg-gpg-use-agent): New variable.
6238 (pgg-gpg-process-region): Use it.
6239 (pgg-gpg-encrypt-region): Likewise.
6240 (pgg-gpg-encrypt-symmetric-region): Likewise.
6241 (pgg-gpg-decrypt-region): Likewise.
6242 (pgg-gpg-sign-region): Likewise.
6243 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
6244
6245 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
6246
6247 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
6248 bracket links.
6249
6250 2006-03-21 Kim F. Storm <storm@cua.dk>
6251
6252 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
6253 fringe-indicator-alist instead of modifying global value.
6254 (gdb-frame-handler): Likewise.
6255
6256 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
6257
6258 * diff-mode.el (diff-function): Make it inherit from diff-header
6259 instead of diff-context.
6260
6261 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
6262 bitmap.
6263 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
6264 change names in macro above for consistency.
6265 (gdb-frame-handler): Use hollow-right-triangle for all selected
6266 frames which except the innermost (where execution has stopped).
6267 (gdb-reset): Reset buffer-local values of overlay-arrow.
6268
6269 2006-03-20 Richard Stallman <rms@gnu.org>
6270
6271 * simple.el (set-mark-command): Doc fix.
6272
6273 * files.el (display-buffer-other-frame): New command.
6274 (ctl-x-4-map): Bind C-x 5 C-o to it.
6275
6276 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6277
6278 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
6279 rather than just defer-time, in case defer-time has been changed but
6280 the timer isn't running yet.
6281 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
6282
6283 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
6284
6285 * help-mode.el (help-follow-symbol): New function.
6286 Essentially identical to the old `help-follow', but do not let
6287 `push-button' do the work when on an xref.
6288 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
6289
6290 2006-03-19 Richard Stallman <rms@gnu.org>
6291
6292 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
6293 preceded by the word `program'.
6294 (help-follow-mouse, help-follow): Throw error if not on xref.
6295 Delete no longer used args.
6296
6297 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
6298
6299 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
6300 annotation ensure gud-overlay-arrow-position is redisplayed.
6301
6302 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6303
6304 * textmodes/bibtex.el (bibtex-include-OPTkey)
6305 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
6306 (bibtex-autokey-name-case-convert)
6307 (bibtex-autokey-titleword-case-convert): Make these the aliases
6308 for the following two variables.
6309 (bibtex-autokey-name-case-convert-function)
6310 (bibtex-autokey-titleword-case-convert-function): Make these the
6311 real names.
6312 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
6313 bibtex-font-lock-crossref sublists.
6314 (bibtex-mode): Revert 2005-12-30 change (which made
6315 completion-ignore-case buffer-local).
6316 (bibtex-url): Simplify.
6317
6318 2006-03-19 Kim F. Storm <storm@cua.dk>
6319
6320 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
6321 cursor property value to 2 (to align with C level change).
6322
6323 2006-03-19 Bill Wohler <wohler@newt.com>
6324
6325 * image.el (image-load-path-for-library): Shorten first line in
6326 docstring.
6327
6328 2006-03-18 Richard Stallman <rms@gnu.org>
6329
6330 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
6331
6332 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
6333
6334 * isearch.el (isearch-other-meta-char): Handle user bindings for
6335 shifted control characters.
6336
6337 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
6338
6339 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
6340 part that matches email addresses, file names, etc.
6341
6342 2006-03-18 Eli Zaretskii <eliz@gnu.org>
6343
6344 * term/w32-win.el (mouse-set-font):
6345 Mention w32-list-proportional-fonts in the doc string.
6346
6347 2006-03-18 Kim F. Storm <storm@cua.dk>
6348
6349 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
6350 (ido-unc-hosts): New user option to explicitly define list of know
6351 UNC-style hosts for completion.
6352 (ido-cache-unc-host-shares-time): New user option.
6353 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
6354 New helper functions for UNC file-name support.
6355 (ido-may-cache-directory): Check for UNC host. Simplify.
6356 (ido-wash-history): Clean out old UNC hosts.
6357 (ido-nonreadable-directory-p): UNC hosts are always readable.
6358 (ido-directory-too-big-p): UNC hosts are never too big.
6359 (ido-set-current-directory): Handle UNC root path.
6360 (ido-file-name-all-completions): Complete UNC host names from
6361 ido-unc-hosts list. Cache UNC host shares.
6362 (ido-make-file-list-1): Don't filter UNC root.
6363 (ido-exhibit): Check for // in root directory, and switch to UNC
6364 mode by setting ido-current-directory to //.
6365
6366 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
6367
6368 * cus-edit.el (customize-changed-options): Mention explicit
6369 version number as default in prompt.
6370
6371 2006-03-17 Bill Wohler <wohler@newt.com>
6372
6373 * image.el (image-load-path-for-library): Minor docstring fix.
6374
6375 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
6376
6377 * textmodes/org.el (org-read-date): Include subgroup 5 into
6378 replacement text.
6379 (org-popup-calendar-for-date-prompt): Fix customization type.
6380
6381 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
6382
6383 * progmodes/gdb-ui.el (gud-watch): Provide completion.
6384 (gdb-continuation): New variable.
6385 (gdb-send): Deal with continuation lines.
6386
6387 * progmodes/gud.el (gud-gdb-complete-command)
6388 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
6389 expressions.
6390 (gud-tooltip-mode): Use buffer-local value.
6391
6392 2006-03-16 Kim F. Storm <storm@cua.dk>
6393
6394 * ido.el (ido-edit-input): Use selected match, if any.
6395
6396 2006-03-16 Bill Wohler <wohler@newt.com>
6397
6398 * image.el (image-load-path-for-library): Prefer user's images in
6399 image-load-path.
6400
6401 2006-03-16 Martin Rudalics <rudalics@gmx.at>
6402
6403 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
6404 when checking for attempt to drag leftmost or rightmost scrollbar.
6405
6406 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
6407
6408 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
6409 (gdb-force-mode-line-update): New function.
6410 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
6411 (gdb-exited): Use them.
6412 (gdb-signal): New function.
6413 (gdb-annotation-rules): Provide a rule for it.
6414
6415 2006-03-16 Kenichi Handa <handa@m17n.org>
6416
6417 * international/mule.el (auto-coding-regexp-alist): Add entries
6418 for Unicode BOM.
6419
6420 * sort.el (sort-build-lists): Temporarily bind
6421 inhibit-field-text-motion to t.
6422
6423 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
6424
6425 * locate.el (locate-command, locate-make-command-line)
6426 (locate-fcodes-file, locate-update-command)
6427 (locate-prompt-for-command, locate, locate-with-filter)
6428 (locate-get-file-positions): Doc fixes.
6429 (locate-buffer-name, locate-header-face): Remove leading `*' in
6430 defcustom.
6431 (locate-filter-output): Use `keep-lines' instead of its alias
6432 `delete-non-matching-lines'.
6433 (locate-get-filename, locate-get-dirname): Add introductory comment.
6434 (locate-find-directory-other-window): Give appropriate error
6435 message if used outside main listing.
6436
6437 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
6438
6439 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
6440 the new extend-region feature.
6441 (font-lock-after-change-function): Update correspondingly.
6442 * jit-lock.el (jit-lock-after-change): Update correspondingly.
6443 * progmodes/grep.el (font-lock-lines-before): Don't disable.
6444
6445 2006-03-15 Bill Wohler <wohler@newt.com>
6446
6447 * image.el (image-load-path-for-library): Fix example by not
6448 recommending that one binds image-load-path. Just defvar it to
6449 placate compiler and only use it if previously defined.
6450
6451 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
6452
6453 * textmodes/org.el (org-insert-centered): Use `string-width' to
6454 make underlining work for wide characters.
6455 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
6456 TAB to `org-cycle', to make sure that no binding in
6457 `outline-mode-map' can supercede it.
6458
6459 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
6460
6461 * allout.el: Increment version to 2.2.1 in file commentary.
6462
6463 (allout-version): Increment to 2.2.1.
6464
6465 (allout-default-layout): New customization variable, used when the
6466 file lacks a specific allout-layout. Uses allout-layout-type for
6467 recursively nested definition.
6468
6469 (allout-layout-type): Widget defining allout layouts, necessary for
6470 self-recursive definition.
6471
6472 (allout-mode): Incorporate allout-default-layout as fallback for
6473 allout-layout.
6474
6475 (allout-layout): Mark as 'safe-local-variable', and refer mention
6476 fallback to `allout-default-layout' in absence of a specified value.
6477 (allout-passphrase-verifier-string)
6478 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
6479
6480 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
6481
6482 (allout-get-encryption-passphrase-verifier): Use correct name of
6483 passphrase verifier in docstring.
6484
6485 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
6486
6487 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
6488 elements.
6489 (gdb-find-watch-expression): Make it work for arrays too.
6490 Follow change to gdb-var-list.
6491 (gud-watch): Allow the user to enter variable name with a prexix
6492 arg. Create keybindings.
6493 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
6494 (gdb-var-list-children-handler, gdb-var-update-handler)
6495 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
6496 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
6497 Follow change to gdb-var-list.
6498 (gdb-starting): Don't show the overlay arrows when program is running.
6499
6500 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
6501 gdb-var-list.
6502
6503 2006-03-14 Bill Wohler <wohler@newt.com>
6504
6505 * image.el (image-load-path-for-library): Pass value of path
6506 rather than symbol. Always return list of directories.
6507 Guarantee that image directory comes first.
6508
6509 2006-03-14 Alan Mackenzie <acm@muc.de>
6510
6511 * font-core.el (font-lock-extend-region\(-function\)?.):
6512 New function/variable.
6513
6514 * font-lock.el (font-lock-after-change-function):
6515 Call font-lock-extend-region. Obey font-lock-lines-before.
6516 (font-lock-default-fontify-region): Remove reference to
6517 font-lock-lines-before.
6518
6519 * jit-lock.el (jit-lock-after-change):
6520 Call font-lock-extend-region. Obey font-lock-lines-before.
6521
6522 2006-03-14 David Ponce <david@dponce.com>
6523
6524 * tree-widget.el (tree-widget-themes-load-path)
6525 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
6526
6527 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
6528
6529 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
6530 (rcirc-print): Mark the start of text at the end of the prompt.
6531 (rcirc-track-minor-mode): Add autoload cookie.
6532 (rcirc-update-activity-string): Add space to front of mode-line
6533 indicator.
6534
6535 2006-03-13 Miles Bader <miles@gnu.org>
6536
6537 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
6538 (rcirc-abbrev-nick): Remove function.
6539 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
6540
6541 2006-03-13 David Ponce <david@dponce.com>
6542
6543 * tree-widget.el: Handle themes across all occurrences of the main
6544 themes sub-directory found in tree-widget-themes-load-path.
6545 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
6546 (tree-widget--locate-sub-directory): Return all occurrences.
6547 (tree-widget-themes-path): New function.
6548 Replace tree-widget-themes-directory, and return a list of directories.
6549 (tree-widget-set-parent-theme)
6550 (tree-widget-lookup-image): Use it.
6551
6552 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
6553
6554 * textmodes/org.el (org-link-search): Avoid self-matching of
6555 links, allow target text to be distributed over several lines.
6556 (org-search-not-link): New function.
6557 (org-set-regexps-and-options, org-get-current-options):
6558 New startup options.
6559 (org-export-as-html): Take odd-level setting from local variable.
6560 (org-fontify-emphasized-text): New option.
6561 (org-set-font-lock-defaults): Include emphasized text.
6562 (org-follow-mhe-link): Allow folder-only links, fix folder name.
6563 (org-font-lock): Customize group renamed from `org-faces'.
6564
6565 2006-03-13 John Paul Wallington <jpw@pobox.com>
6566
6567 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
6568 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
6569
6570 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
6571
6572 * cus-start.el (all): Delete :version keyword for members of the
6573 fringe group, since the entire group is new in 22.1.
6574
6575 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
6576
6577 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
6578 map if value is hexadecimal (an address).
6579 (gud-watch): Only search roots for existing watch expressions.
6580 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
6581 prevent caching problems with speedbar-update-directory-contents.
6582
6583 2006-03-12 Juri Linkov <juri@jurta.org>
6584
6585 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
6586 before comparing with `low' and `warn'.
6587
6588 * info.el (Info-dir-remove-duplicates): Move point to the
6589 beginning of the current line after deleting the entries from
6590 redundant heading. Use marker for `limit' and compare it with
6591 point before calling `re-search-forward'.
6592
6593 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
6594
6595 * simple.el (yank): Fix typo in docstring.
6596
6597 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
6598
6599 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
6600 messages, where "D" is the 6th character.
6601
6602 2006-03-11 Eli Zaretskii <eliz@gnu.org>
6603
6604 * simple.el (yank): Fix last change.
6605
6606 2006-03-11 David Ponce <david@dponce.com>
6607
6608 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
6609 merging elements from the standard ispell-dictionary-alist.
6610 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
6611 alist, and return the new alist.
6612
6613 2006-03-11 Richard Stallman <rms@gnu.org>
6614
6615 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
6616
6617 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
6618 the way it is implemented is too unclean.
6619
6620 * simple.el (kill-region, yank): Doc fix.
6621
6622 * battery.el (battery-echo-area-format): Doc fix.
6623 (battery-mode-line-format): Likewise.
6624 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
6625 (battery-linux-proc-acpi): Ignore batteries that say "charged".
6626
6627 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
6628
6629 * progmodes/octave-mod.el (octave-indent-for-comment):
6630 Behave according to do string.
6631
6632 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
6633
6634 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
6635 Be visible only if major mode is Mail Mode.
6636
6637 * textmodes/flyspell.el (flyspell-external-point-words)
6638 (flyspell-process-localwords): Fix last changes.
6639
6640 2006-03-11 Eli Zaretskii <eliz@gnu.org>
6641
6642 * calendar/holidays.el (list-holidays): Doc fix.
6643
6644 * international/mule.el (auto-coding-alist): Add .odt
6645 (OpenOffice's open document) files.
6646
6647 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
6648 document) files. Mention in the doc string the need to sync with
6649 auto-coding-alist.
6650
6651 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
6652
6653 * files.el (hack-local-variables-confirm): Don't prompt for ! if
6654 enable-local-variables is set to always query, or there is no
6655 savable variable.
6656
6657 2006-03-10 Bill Wohler <wohler@newt.com>
6658
6659 * image.el (image-load-path-for-library): Merge at least three
6660 functions from Gnus and MH-E into this one function that can now
6661 be shared.
6662
6663 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
6664
6665 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
6666 gdb-remove-mouse-face and remove help-echo too.
6667 (gdb-enqueue-input): Correct conditional clause.
6668
6669 2006-03-10 Glenn Morris <rgm@gnu.org>
6670
6671 * calendar/calendar.el (calendar-holidays): Doc fix.
6672 * calendar/holidays.el (list-holidays): Doc fix.
6673
6674 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
6675
6676 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
6677 it gets called in gdb-prompt anyway.
6678 (gdb-use-separate-io-buffer): Only restore window arrangement for
6679 gdb-many-windows.
6680 (gdb-enqueue-input): Make it harder to send GDB input when program
6681 is running.
6682 (gdb-buffer-list): New variable.
6683 (gdb-remove-mouse-face): New function.
6684 (gdb-starting): Use it when GDB input won't get sent.
6685
6686 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
6687
6688 * help.el (view-lossage): Remove trailing whitespace before
6689 inserting "\n".
6690
6691 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
6692
6693 * files.el (hack-local-variables-confirm):
6694 Set coding-system-for-read to nil before writing to .emacs.
6695
6696 * arc-mode.el (archive-extract): Check if an existing buffer name
6697 comes from a different archive.
6698
6699 * help.el (describe-key-briefly): If KEY is a down event, read and
6700 discard the up event.
6701
6702 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
6703
6704 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
6705 be edited and use font-lock-warning-face for any changes.
6706
6707 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
6708 (gdb-edit-value): Use it to report any errors.
6709
6710 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
6711
6712 * help.el (describe-key): Remove leftover test code.
6713
6714 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
6715
6716 * textmodes/org.el: Move defvars out of eval-when-compile.
6717 Use buffer-file-name variable.
6718 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
6719 arg `file'.
6720 (org-level-faces): Remove startup dependency.
6721 (org-cycle, org-map-tree, org-scan-tags)
6722 (org-remember-handler): Don't call `outline-level' directly.
6723 (org-mhe-search-all-folders): New option.
6724 (org-mhe-get-message-folder-from-index)
6725 (org-mhe-get-message-folder): Fix indexing search.
6726 (org-format-agenda-item): Handle nil TAGS argument.
6727 (org-cleaned-string-for-export, org-activate-target-links)
6728 (org-make-target-link-regexp): Deal with empty radio target list.
6729 (org-tag): New face.
6730 (org-get-level-face): New function.
6731 (org-set-font-lock-defaults): Simplify setup for headlines.
6732 (org-complete): Pass common substring to `display-completion-list'.
6733
6734 2006-03-06 David Ponce <david@dponce.com>
6735
6736 * tree-widget.el: Update Commentary header.
6737 (tree-widget-theme-name): Ignore parent themes.
6738 (tree-widget-set-parent-theme): New function.
6739 (tree-widget-set-theme): Use it.
6740 (tree-widget-set-image-properties): Move definition. Does nothing
6741 if image properties have already been set.
6742 (tree-widget-image-properties): Move definition. Receive an image
6743 name. Set the :pointer property.
6744 (tree-widget-lookup-image): Doc fix. Search in parent themes.
6745 Don't set the :pointer image property.
6746 (tree-widget-convert-widget): New function. Handle :dynargs
6747 compatibility here.
6748 (tree-widget): Use it to :convert-widget. Add the :expander-p
6749 predicate to control when the :expander function is entered.
6750 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
6751 (tree-widget-value-create): Handle :expander-p. widget-apply
6752 :expander.
6753 (tree-widget-expander-p): New function. Default value of the
6754 :expander-p property.
6755
6756 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
6757
6758 * help.el (describe-key): Properly handle the return value of
6759 read-key-sequence when grabbing an up-event. Cleanup mouse-1
6760 remaps. Handle string and vector `follow-link' values.
6761
6762 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
6763
6764 * complete.el (PC-expand-many-files): Try be more careful when parsing
6765 the shell's output.
6766
6767 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
6768
6769 * outline.el (hide-sublevels): Provide better interactive default.
6770
6771 2006-03-06 Kenichi Handa <handa@m17n.org>
6772
6773 * international/fontset.el (create-fontset-from-fontset-spec):
6774 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
6775
6776 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
6777
6778 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
6779 backslashes instead of one in regexp.
6780 (gud-tooltip-dereference): Add missing optional argument.
6781
6782 2006-03-04 John Paul Wallington <jpw@pobox.com>
6783
6784 * wdired.el (toplevel): Require `cl' at compile-time.
6785
6786 2006-03-04 Andreas Schwab <schwab@suse.de>
6787
6788 * server.el (server-process-filter): Handle errors during
6789 evaluation of the argument.
6790
6791 2006-03-03 John Paul Wallington <jpw@pobox.com>
6792
6793 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
6794 escape parentheses at beginning of line.
6795 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
6796 (t-mouse-mode): Remove period from end of error message.
6797
6798 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
6799
6800 * textmodes/flyspell.el (flyspell-process-localwords):
6801 Be case-sensitive.
6802
6803 2006-03-03 Martin Rudalics <rudalics@gmx.at>
6804
6805 * cus-edit.el (custom-quote): Remove function, since it has been
6806 moved to custom.el.
6807
6808 * font-lock.el (lisp-font-lock-keywords-2)
6809 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
6810 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
6811 they have no special meaning.
6812
6813 * midnight.el (clean-buffer-list): Handle case where base-buffer of
6814 indirect buffer gets killed before indirect buffer. Use dolist.
6815
6816 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
6817
6818 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
6819 value instead of a literal constant (1) on more pauses.
6820
6821 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
6822
6823 * textmodes/flyspell.el (flyspell-external-point-words):
6824 Be case-sensitive.
6825
6826 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
6827
6828 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
6829 with "www".
6830
6831 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
6832
6833 * allout.el: Restablish intermediate missing comment header to
6834 preserve outline structure.
6835 (allout-beginning-of-current-entry): Skip invisible text.
6836 (allout-open-topic): Fix opening a topic at end-of-buffer.
6837 (allout-minor-mode): Move nearer to allout-mode function.
6838
6839 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
6840
6841 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
6842
6843 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
6844
6845 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
6846 is nil.
6847
6848 * progmodes/gud.el (gud-speedbar-menu-items):
6849 Use buffer-local-value and add missing :visible keyword.
6850
6851 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
6852
6853 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
6854
6855 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
6856 must be `follow-link'.
6857
6858 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
6859
6860 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
6861 formatting: No nested anchors.
6862 (org-all-targets): Fix bug with XEmacs compatibility.
6863 (org-read-date): Add (require 'parse-time).
6864 (org-set-tags): Fix bug with extra inserted space.
6865 (org-export-html-style): Define a style class for targets.
6866 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
6867 (org-hide-leading-stars): New option.
6868 (org-hide): New face.
6869 (org-set-font-lock-defaults): Allow to hide leading stars.
6870 (org-get-legal-level, org-tr-level): New functions.
6871 (org-odd-levels-only): New option.
6872 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
6873 (org-demote, org-promote): Deal with double-star levels.
6874 (org-convert-to-odd-levels): New command.
6875
6876 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
6877
6878 * speedbar.el (speedbar-update-localized-contents): Try to
6879 preserve window-start.
6880 (speedbar-update-directory-contents): Try to preserve window-start
6881 and window-point.
6882 (speedbar-update-special-contents): Don't move back to start of window.
6883
6884 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
6885 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
6886 speedbar-timer-fn.
6887 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
6888 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
6889 instead of gdb-speedbar-timer-fn.
6890
6891 2006-02-28 Jay Belanger <belanger@truman.edu>
6892
6893 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
6894 (math-compose-expr): Use latex option when calling
6895 `math-compose-tex-matrix' for latex mode.
6896
6897 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
6898
6899 * speedbar.el: Re-instate comments about developing for speedbar
6900 [this is what info and gdb-ui use even if better methods exist now].
6901
6902 * t-mouse.el: New file.
6903 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
6904 (t-mouse-lispy-buffer-posn-from-coords): Remove.
6905 (t-mouse-make-event-element): Use posn-at-x-y instead.
6906 (t-mouse-make-event): Deal with Fedora Core 3.
6907 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
6908 (t-mouse-mouse-position-function): New function. Use it instead
6909 of advising mouse-position.
6910 (t-mouse-mode): New minor mode.
6911 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
6912
6913 2006-02-27 Glenn Morris <rgm@gnu.org>
6914
6915 * calendar/calendar.el (calendar-holidays): Doc fix.
6916
6917 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
6918
6919 * progmodes/gdb-ui.el (gdb-source-window): New variable.
6920 Re-introduce the concept of a source window.
6921 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
6922 consistency with get-buffer-create.
6923 (def-gdb-auto-update-handler, gdb-info-locals-handler)
6924 (gdb-data-list-register-values-handler)
6925 (gdb-stack-list-locals-handler): Try to preserve window-start as
6926 well as window-point.
6927 (gdb-display-source-buffer): New function (old concept).
6928 (gdb-goto-breakpoint): Use it.
6929
6930 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
6931 for gdb-ui/gdb-mi (old concept).
6932
6933 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
6934
6935 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
6936 binding.
6937
6938 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
6939
6940 * textmodes/reftex-sel.el (reftex-select-label-map)
6941 (reftex-select-bib-map): Add `follow-mouse' binding.
6942
6943 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
6944
6945 * jka-cmpr-hook.el (jka-compr-compression-info-list)
6946 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
6947 Give :set functions to provide automatic updating.
6948 Update docstring. Give compiler defvars early in the file
6949 and move the defcustoms to a later spot where all called functions
6950 are defined.
6951 (jka-compr-file-name-handler-entry): Doc fix.
6952 (jka-compr-compression-info-list--internal)
6953 (jka-compr-mode-alist-additions--internal)
6954 (jka-compr-load-suffixes--internal): New variables.
6955 (jka-compr-install): Set the three above variables.
6956 Update `load-file-rep-suffixes' instead of `load-suffixes'.
6957 (jka-compr-update, jka-compr-set): New functions.
6958 (auto-compression-mode): Doc fix.
6959
6960 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
6961 Update `load-file-rep-suffixes' instead of `load-suffixes'.
6962 Use jka-compr-compression-info-list--internal,
6963 jka-compr-mode-alist-additions--internal and
6964 jka-compr-load-suffixes--internal.
6965
6966 * files.el (load-library):
6967 * loadhist.el (file-loadhist-lookup):
6968 * startup.el (command-line):
6969 * subr.el (locate-library):
6970 * emacs-lisp/autoload.el (update-directory-autoloads):
6971 * emacs-lisp/find-func.el (find-library-suffixes):
6972 Use `get-load-suffixes' instead of `load-suffixes'.
6973
6974 * subr.el (locate-library):
6975 * emacs-lisp/find-func.el (find-library-name):
6976 Use `load-file-rep-suffixes' instead of '("").
6977
6978 2006-02-26 Kim F. Storm <storm@cua.dk>
6979
6980 * ido.el (ido-save-history, ido-load-history): Simplify.
6981 Don't use find-file-noselect to avoid interference from other modes.
6982
6983 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
6984
6985 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
6986 to use the default shell if filename is not available.
6987 Reported by Giorgos Keramidas.
6988
6989 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
6990
6991 * progmodes/etags.el (tags-completion-table): Do completion from
6992 all the tables in the current list, as documented in the manual.
6993
6994 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6995
6996 * CC Mode Update to 5.31.3.
6997
6998 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
6999
7000 * progmodes/cc-mode.el (c-postprocess-file-styles):
7001 Bind inhibit-read-only to t, around the call to
7002 c-remove-any-local-eval-or-mode-variables, so that it works on a
7003 RO file.
7004
7005 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7006
7007 * progmodes/cc-awk.el: Correct a typo.
7008
7009 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7010
7011 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
7012 c-hungry-delete-backwards, at the request of RMS. Leave the old
7013 name as an alias.
7014
7015 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7016
7017 * progmodes/cc-mode.el: Correct a typo.
7018
7019 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7020
7021 * progmodes/cc-defs.el: Update the version number to 5.31.3.
7022
7023 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7024
7025 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
7026 brace-else-brace (error due to mbeg, mend being undefined).
7027
7028 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7029
7030 * progmodes/cc-mode.el: File Local variables: Solve the problem
7031 where both `mode' and c-file-offsets are specified: `mode' will
7032 overwrite c-f-o's settings:
7033 (c-remove-any-local-eval-or-mode-variables): New function.
7034 (c-postprocess-file-styles): Call the above new function, within
7035 c-tentative-buffer-change, to splat `mode' and `eval' before the
7036 second hack-local-variables.
7037
7038 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7039
7040 * progmodes/cc-mode.el:
7041 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
7042 (c-after-change): Protect the match data with save-match-data.
7043 It was getting corrupted by c-after-change-check-<>-operators.
7044
7045 * cc-defs.el: [Supersedes patch V1.38]:
7046 (top level): Check for a buggy font-lock-compile-keywords ONLY in
7047 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
7048
7049 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
7050 with save-match-data. It was being corrupted when Font Lock was
7051 not enabled.
7052
7053 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
7054
7055 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
7056 Mode and Subword Mode.
7057
7058 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
7059 real labels ("case 1:" or "foo:") from non-labels ("public:").
7060 (c-forward-objc-directive): Replace c-forward-token-2 with crude
7061 coding; c-f-t-2 doesn't move over a token at EOB.
7062
7063 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
7064
7065 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
7066 (c-update-modeline): Concatenate the minor mode indicators
7067 directly onto mode-name, removing c-submode-indicators.
7068 Sometimes, c-s-i got separated from the mode name on the mode line.
7069
7070 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
7071 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
7072
7073 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
7074
7075 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
7076 error message when there's an evaluation error to show whether
7077 it's loaded from source or not.
7078 (c-filter-ops): Make it available at runtime too to work when
7079 `c-make-init-lang-vars-fun' needs to evaluate from source.
7080
7081 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
7082
7083 * help.el (help): Revert last part of 2006-02-23 change (deletion
7084 of the `provide' call).
7085
7086 2006-02-23 Juri Linkov <juri@jurta.org>
7087
7088 * compare-w.el (compare-windows-highlight): Add new value
7089 `persistent' and change :type from `boolean' to `choice'.
7090 (compare-windows-overlays1, compare-windows-overlays2):
7091 New internal variables.
7092 (compare-windows-highlight): If compare-windows-highlight is
7093 `persistent', add current overlays to compare-windows-overlays[12]
7094 instead of adding compare-windows-dehighlight to pre-command-hook.
7095 (compare-windows-dehighlight): Delete all overlays from
7096 compare-windows-overlays[12].
7097
7098 * info.el (Info-search): Don't bind search-spaces-regexp to
7099 Info-search-whitespace-regexp in non-regexp isearch mode.
7100
7101 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7102
7103 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
7104
7105 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
7106
7107 * textmodes/org.el (org-xemacs-p)
7108 (org-export-html-show-new-buffer, org-table-may-need-update)
7109 (org-insert-item, org-mhe-get-message-real-folder)
7110 (org-mhe-get-message-folder-from-index)
7111 (org-mhe-get-message-folder, org-mhe-get-message-num)
7112 (org-mhe-get-header, org-make-org-heading-search-string)
7113 (org-make-org-heading-camel, org-table-sort-lines)
7114 (org-format-org-table-html, org-format-table-table-html):
7115 Fix typos in docstrings.
7116
7117 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
7118
7119 * textmodes/org.el (org-cleaned-string-for-export)
7120 (org-solidify-link-text): New function.
7121 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
7122 XEmacs, just to silence the compiler.
7123 (org-export-as-ascii, org-export-as-html-and-open):
7124 Use `org-cleaned-string-for-export' and create internal links.
7125 (org-follow-mhe-link): Require mh-e, use folder.
7126
7127 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
7128
7129 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
7130
7131 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
7132 gdb-debug-log-length.
7133 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
7134 it a real ring but...
7135 (gud-gdba-marker-filter): ...make it work like mark-ring.
7136 (gdb-enable-debug): Rename from gdb-enable-debug-log.
7137 (gdb-mouse-jump): New function. Add bindings.
7138
7139 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
7140
7141 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
7142 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
7143 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
7144 (gdb-debug-log-length): Customize it's length.
7145 (gud-watch, gdb-var-create-handler): Display function::var format
7146 but don't use to create variable object.
7147 (gdb-var-create-handler): Use message-box in place of message.
7148 (gdb-stopped): Call gdb-exited if signalled.
7149
7150 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
7151
7152 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
7153
7154 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
7155
7156 * textmodes/reftex.el (reftex-locate-file): Search all extensions
7157 if `reftex-try-all-extensions' is set.
7158
7159 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
7160 fail silently when there is no valid argument at point.
7161 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
7162 `fail-silently' argument. From a patch by David Reiter.
7163
7164 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
7165 New commands.
7166 (org-mark-ring): New variable.
7167 (org-mark-ring-length): New option.
7168 (org-open-at-point, org-goto, org-open-file): Push old position
7169 onto the mark ring.
7170 (org-add-hook): New function.
7171 (org-export-table-remove-special-lines): New option.
7172 (org-skip-comments, org-format-org-table-html): Respect new
7173 option `org-export-table-remove-special-lines'.
7174 (org-open-file): Allow special command configuration for
7175 directory link.
7176 (org-file-apps): Fix bugs in customize type, added setting
7177 for directories.
7178 (org-activate-tags, org-format-agenda-item, org-complete)
7179 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
7180 (org-get-tags, org-get-buffer-tags, org-open-at-point)
7181 (org-link-search, org-make-org-heading-search-string)
7182 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
7183 (org-radio-targets, org-file-link-context-use-camel-case)
7184 (org-activate-camels): New options.
7185 (org-update-radio-target-regexp, org-all-targets)
7186 (org-make-target-link-regexp, org-activate-target-links):
7187 New functions.
7188 (org-make-org-heading-search-string): New function.
7189 (org-store-link, org-insert-link): Use new option
7190 `org-file-link-context-use-camel-case'.
7191 (org-activate-camels): Use new option `org-activate-camels'.
7192 (org-link-regexp): Add mhe prefix.
7193 (org-open-at-point, org-store-link): Support for mhe links.
7194 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
7195 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
7196 (org-mhe-get-header, org-follow-mhe-link): New functions.
7197 (org-remove-angle-brackets, org-add-angle-brackets):
7198 New functions.
7199 (org-bracket-link-regexp): New constant.
7200 (org-read-date): Fix bug that was rejecting all typed dates.
7201 (org-link-search): Make hierarchy above visible after a match.
7202 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
7203 (org-store-link): Fix bug with link creation when cursor is in
7204 an empty line.
7205 (org-open-at-point): Fix bug with matching a link.
7206 Fixed buggy argument sequence in call to `org-view-tags'.
7207 (org-compile-prefix-format): Set `org-prefix-has-tag'.
7208 (org-prefix-has-tag): New variable.
7209 (org-format-agenda-item): Remove tags from headline
7210 if appropriate.
7211 (org-agenda-remove-tags-when-in-prefix): New option.
7212
7213 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
7214
7215 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
7216 Fix the regular expressions.
7217
7218 2006-02-21 Richard M. Stallman <rms@gnu.org>
7219
7220 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
7221 if there's no other specific basis.
7222
7223 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
7224 as variables at all.
7225 (unsafep-variable): Rename arg; doc fix.
7226
7227 * abbrevlist.el (list-one-abbrev-table): Add autoload.
7228
7229 * calendar/appt.el (diary-selective-display): Add defvar.
7230
7231 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
7232
7233 * isearch.el (search-whitespace-regexp): Fix custom type.
7234
7235 * help.el (describe-key-briefly): Compute interactive args
7236 in same was as before previous change.
7237
7238 * files.el (enable-local-variables): Doc fix.
7239
7240 2006-02-21 Kim F. Storm <storm@cua.dk>
7241
7242 * fringe.el: Cleanup as file is now pre-loaded.
7243 (fringe-bitmaps): Initialize unconditionally.
7244 (fringe-mode, set-fringe-style): Remove autoload cookies.
7245
7246 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
7247
7248 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
7249 `horizontal-bar'.
7250 (fringe-cursor-alist): Use `horizontal-bar'.
7251
7252 2006-02-20 Kim F. Storm <storm@cua.dk>
7253
7254 * fringe.el (fringe-bitmaps): Update to new bitmap names.
7255 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
7256
7257 * loadup.el: Load "fringe" on window systems.
7258
7259 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
7260
7261 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
7262 out of scope components.
7263
7264 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
7265 default.
7266
7267 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
7268
7269 * custom.el (customize-mark-to-save, customize-mark-as-set):
7270 Load the symbol first.
7271
7272 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
7273
7274 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
7275 strech spec so it doesn't display as "^J" on the header line
7276 when `Buffer-menu-use-header-line' is t.
7277
7278 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
7279
7280 * speedbar.el (speedbar-make-button): Keep text properties
7281 of string arguments if desired.
7282
7283 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
7284 expessions.
7285
7286 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
7287 of speedbar.
7288
7289 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
7290
7291 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
7292 to value of `read-file-name-completion-ignore-case'.
7293
7294 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
7295
7296 * custom.el (customize-mark-as-set): Push to `user' theme.
7297
7298 * cus-edit.el (custom-save-variables): Allow unthemed values.
7299 (customize-set-variable): Push setting to `user' theme.
7300
7301 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
7302
7303 * progmodes/gud.el: Don't require font-lock as it's now
7304 automatically loaded.
7305 (gud-speedbar-buttons): Replace gdb-var-changed with
7306 gdb-force-update.
7307
7308 * progmodes/gdb-ui.el (gdb-force-update): Rename from
7309 gdb-var-changed.
7310 (gdb-post-prompt): Use it.
7311 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
7312 (gdb-var-update-handler, gdb-var-delete)
7313 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
7314 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
7315 gdb-force-update in gdb-post-prompt.
7316 (gdb-reset): Clear watch expressions from speedbar when quitting.
7317
7318 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
7319
7320 * viper-cmd.el (viper-insert-state-post-command-sentinel)
7321 (viper-change-state-to-vi, viper-change-state-to-emacs):
7322 Make aware of cursor coloring in the Emacs state.
7323 (viper-special-read-and-insert-char): Use read-char-exclusive.
7324 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
7325
7326 * viper-init.el (viper-emacs-state-cursor-color): New variable.
7327
7328 * viper-util.el (viper-save-cursor-color)
7329 (viper-get-saved-cursor-color-in-replace-mode)
7330 (viper-get-saved-cursor-color-in-insert-mode)
7331 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
7332 state.
7333 (viper-get-saved-cursor-color-in-emacs-mode): New function.
7334
7335 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
7336 (ediff-ignore-case-option3, ediff-actual-diff-options)
7337 (ediff-actual-diff3-options): New variables to control case sensitivity.
7338 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
7339 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
7340 (ediff-toggle-ignore-case): New function.
7341 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
7342
7343 * ediff-help.el (ediff-long-help-message-narrow2)
7344 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
7345 (ediff-long-help-message-word-mode): Add ignore-case command.
7346 (ediff-help-for-quick-help): Add ignore-case command.
7347
7348 * ediff-merg.el: Move provide to the end.
7349
7350 * ediff-ptch.el: Move provide to the end.
7351
7352 * ediff-wind.el: Move provide to the end.
7353
7354 * ediff-mult.el: Move provide to the end.
7355 (ediff-set-meta-overlay): Enable follow-link.
7356
7357 * ediff.el: Move provide to the end.
7358 Break recursive load cycle in eval-when-compile.
7359 (ediff-patch-buffer): Better heuristics.
7360
7361 * ediff-util.el: Move provide to the end.
7362 Break recursive load cycle in eval-when-compile.
7363 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
7364 defuns.
7365 (ediff-submit-report): Pass the values of ediff-diff3-program,
7366 ediff-diff3-options.
7367
7368 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
7369
7370 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
7371 the opening bracket of the following bracketing pairs: {}, [], (), <>,
7372 `' (for example, in the docstring of `windmove-default-keybindings').
7373
7374 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
7375
7376 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
7377 shadow face. Don't provide binding to edit variable when it is
7378 out of scope.
7379
7380 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
7381 (gdb-var-update-handler): Detect out of scope variables with pre
7382 GDB 6.4 too.
7383 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
7384 Reset status of variable objects to nil in update handlers.
7385 (gdb-var-update-handler-1): Detect when a variable object comes
7386 in scope. setcar on var changes gdb-var-list directly.
7387
7388 2006-02-17 Juri Linkov <juri@jurta.org>
7389
7390 * ffap.el (ffap) <defface>: Add explicit face declaration.
7391 (ffap-highlight): Use face `ffap' directly instead of checking
7392 for its existence.
7393
7394 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
7395 `visible-ok' of `other-buffer' to find the right original buffer.
7396
7397 * info.el (Info-search): Skip `Local Variables' node.
7398
7399 2006-02-17 Juri Linkov <juri@jurta.org>
7400
7401 * info.el (Info-find-file): Check for symbols `apropos', `history',
7402 `toc' in the input filename, and return these symbols as is.
7403 (Info-find-node-2): Set Info-current-file to symbols `apropos',
7404 `history', `toc' instead of strings.
7405 (Info-set-mode-line): For non-string Info-current-file use the
7406 symbol's name inside **.
7407 (Info-isearch-push-state): Add quote before Info-current-file and
7408 Info-current-node.
7409 (Info-isearch-pop-state): Use `equal' instead of `string='.
7410 (Info-extract-pointer, Info-following-node-name): Use
7411 `match-string-no-properties' instead of `match-string'.
7412 (Info-up): Check `old-file' for `stringp'.
7413 (Info-history): Use `equal' instead of `string-equal'.
7414 Check `file' for `stringp'.
7415 (Info-history): Use symbol `history' instead of string as first arg
7416 of `Info-find-node'.
7417 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
7418 `toc' instead of string.
7419 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
7420 instead of `buffer-substring', and `match-string-no-properties'
7421 instead of `match-string'.
7422 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
7423 instead of strings.
7424 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
7425 Use symbol `apropos' instead of string.
7426 (Info-copy-current-node-name): Check `Info-current-file' for
7427 `stringp' and construct a command with `Info-find-node' from it.
7428 (Info-fontify-node): Use `match-string-no-properties' instead of
7429 `match-string' and check file names for `stringp'.
7430 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
7431 `history', `toc' instead of strings.
7432
7433 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
7434
7435 * files.el: Rearrange functions and variables in the file local
7436 variables section.
7437
7438 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
7439
7440 * files.el: Add truncate-lines, ispell-check-comments and
7441 ispell-local-dictionary as safe local variables.
7442
7443 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
7444
7445 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
7446 out of scope variables.
7447 (gud-speedbar-buttons): Use unless.
7448
7449 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
7450 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
7451 (gdb-show-changed-values): Also use for out of scope variables.
7452 (gdb-var-update-handler-1): Note if variable goes out of scope.
7453
7454 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
7455
7456 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
7457 default to global variable values for unsupplied args.
7458 (rcirc-get-buffer-create): Fix bug with setting the target.
7459 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
7460 test for rcirc-always-use-server-buffer-flag here.
7461 (rcirc-response-formats): Add %N, which is a facified nick. %n
7462 uses the default face. Change the ACTION format string. If the
7463 "nick" is the server, don't print anything for that field.
7464 Comment fixes.
7465 (rcirc-target-buffer): Don't test
7466 rcirc-always-use-server-buffer-flag here.
7467 (rcirc-print): Squeeze extra spaces out of the text before message.
7468 (rcirc-put-nick-channel): Strip potential "@" char from nick
7469 before adding them to nick table.
7470 (rcirc-url-regexp): Improve to match address like "foo.com".
7471
7472 2006-02-17 Eli Zaretskii <eliz@gnu.org>
7473
7474 * allout.el (allout-hidden-p): Move this defsubst before
7475 allout-overlay-interior-modification-handler, where it is first
7476 used.
7477
7478 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
7479
7480 * allout.el: Use allout invisible-text overlays instead of
7481 selective display for concealed text. Also, lots of general
7482 cleanup, and improved compatibility code.
7483
7484 (allout-version) Incremented, corrected, revised, and refined
7485 module commentary.
7486
7487 (provide 'allout): Moved to the bottom, added a require of overlay.
7488
7489 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
7490 `except-current'.
7491 (allout-write-file-hook-handler): Minimize delay.
7492 (count-trailing-whitespace-region): New function so
7493 auto-encryption of current topic can resituate cursor exactly.
7494 PGP/GPG encryption trims trailing whitespace from lines, which
7495 must be accounted for across encryption then decryption.
7496
7497 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
7498 just plain "\C-c", to avoid intruding on user's keybinding space.
7499
7500 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
7501 parameter, so user request to provide a new password is done.
7502
7503 (allout-outside-normal-auto-fill-function, allout-auto-fill):
7504 Refined mechanism for auto-filling behavior while in allout mode.
7505
7506 (allout-mode): Explicitly specify the mode map in the docstring.
7507 Clarify provision for various write-file hook var names.
7508 Adjusted for invisible-text overlays instead of selective-display.
7509
7510 (allout-depth): Really return 0 if not within any topic. This
7511 rectifies `allout-beginning-of-level' and sequence numbering
7512 errors that occur when cutting and pasting numbered topics.
7513 Changed from a in-line subst to a regular function, as well.
7514
7515 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
7516
7517 (allout-end-of-subtree, allout-end-of-subtree)
7518 (allout-end-of-entry, allout-end-of-current-heading)
7519 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
7520 (allout-show-children, allout-show-to-offshoot)
7521 (allout-hide-current-entry, allout-show-current-entry): Rectified
7522 handling of trailing blank lines between items.
7523
7524 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
7525 (allout-current-depth, allout-unprotected, allout-hidden-p)
7526 (allout-on-current-heading-p, allout-listify-exposed)
7527 (allout-chart-subtree, allout-goto-prefix)
7528 (allout-back-to-current-heading, allout-get-body-text)
7529 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
7530 (allout-hide-region-body, allout-toggle-subtree-encryption)
7531 (allout-encrypt-string, allout-encrypted-key-info)
7532 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
7533 (allout-file-vars-section-data): Adjusted for use with
7534 invisible-text overlays instead of selective-display.
7535
7536 (allout-kill-line, allout-kill-topic, allout-yank-processing):
7537 Reworked for use with invisible text overlays.
7538
7539 (allout-current-topic-collapsed-p): New function.
7540
7541 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
7542 to know when to close the containing topic.
7543
7544 (allout-pre-command-business, allout-post-command-business):
7545 Simplify undo-batching and dynamic isearch exposure.
7546
7547 (allout-set-overlay-category): New for invisible-text overlays.
7548 Sets properties of allout-overlay-category, used by
7549 allout-flag-region to set invisible-text overlay properties.
7550 (allout-get-invisibility-overlay): Get the first qualifying
7551 invisibility overlay, so we can find the extent of it.
7552 (allout-back-to-visible-text): Get to just before the beginnining
7553 of the current invisibility overlay, if any.
7554
7555 (allout-overlay-insert-in-front-handler)
7556 (allout-overlay-interior-modification-handler)
7557 (allout-before-change-handler, allout-isearch-end-handler): New
7558 functions to handle extraordinary actions affecting concealed
7559 text.
7560
7561 (allout-flag-region): Use overlays instead of selective-display
7562 for invisible text - by inheritence from the properties of
7563 allout-overlay-category in mainline Emacs, and applied
7564 property-by-property in XEmacs, some recent versions of which
7565 don't inherit the properties from the category. Provisions to
7566 respond to concealed-text edits simplified drastically.
7567
7568 (allout-isearch-rectification, allout-isearch-was-font-lock)
7569 (allout-isearch-expose, allout-enwrap-isearch)
7570 (allout-isearch-abort, allout-pre-was-isearching)
7571 (allout-isearch-prior-pos, allout-isearch-did-quit)
7572 (allout-isearch-dynamic-expose)
7573 (allout-hide-current-entry-completely): Functions deleted.
7574
7575 (allout-undo-aggregation): Explicit undo aggregation no longer
7576 necessary due to transition away from selective-display.
7577
7578 (set-allout-regexp, allout-up-current-level)
7579 (allout-next-visible-heading, allout-forward-current-level)
7580 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
7581 (allout-kill-line, allout-yank-processing, allout-show-children)
7582 (allout-expose-topic, allout-old-expose-topic)
7583 (allout-listify-exposed, allout-insert-latex-header)
7584 (allout-toggle-subtree-encryption, allout-encrypt-string)
7585 (remove-from-invisibility-spec, allout-hide-current-subtree):
7586 Ditched unused variables.
7587
7588 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
7589
7590 * textmodes/ispell.el (ispell-change-dictionary): Call
7591 ispell-buffer-local-dict instead of
7592 ispell-accept-buffer-local-defs.
7593 (ispell-local-dictionary-alist): Accept as valid any coding-system
7594 supported by Emacs.
7595 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
7596 changed to iso-8859-3.
7597
7598 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
7599
7600 * speedbar.el (speedbar-frame-width): Make an inline function
7601 instead of a macro. Use frame-width.
7602 (speedbar-try-completion, speedbar-update-contents)
7603 (speedbar-timer-fn): Use consp.
7604 (speedbar-update-localized-contents): Try to preserve point.
7605
7606 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
7607 (menu): Re-order menu items.
7608 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
7609 field.
7610 (gdb-var-update-handler-1): Use it for GDB 6.4+.
7611 (gdb-post-prompt): Speed things by not forcing update.
7612
7613 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
7614
7615 * wid-edit.el (widget-button-click): For mouse-1, cancel button
7616 press and perform default action if we get a mouse movement event.
7617
7618 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
7619
7620 * calendar/icalendar.el (icalendar--get-event-property)
7621 (icalendar--get-event-property-attributes): Fix typos in
7622 docstrings.
7623
7624 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
7625 docstring.
7626
7627 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
7628
7629 * bs.el (bs-mode): Use `buffer-disable-undo'.
7630 (bs--get-file-name): Simplify.
7631 (bs-show-in-buffer): Mark the buffer as not modified.
7632
7633 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
7634
7635 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
7636 widget-button-click.
7637
7638 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
7639 (custom-mode): Update docstring.
7640
7641 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
7642 binding.
7643
7644 * files.el (hack-local-variables-confirm): Allow scrolling if the
7645 file variable list is too long. Kill temp buffer after use.
7646
7647 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
7648
7649 * progmodes/gud.el (gdb): Improve doc string.
7650 (gdb-script-font-lock-keywords): Expand allowed character set.
7651
7652 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
7653 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
7654 (gdb-separate-io-interrupt, gdb-separate-io-quit)
7655 (gdb-separate-io-stop, gdb-separate-io-eof):
7656 Rename from gdb-inferior-* to gdb-separate-*.
7657 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
7658
7659 2006-02-14 Jay Belanger <belanger@truman.edu>
7660
7661 * calc/calc-arith.el (math-check-known-scalarp): Make sure
7662 expression is a symbol before checking that it is bound.
7663
7664 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
7665 test to see if equation can be solved.
7666
7667 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
7668
7669 * wid-edit.el (widget-button-click): Use :pressed-face property
7670 for overlay face, if it exists.
7671
7672 * cus-edit.el (custom-manual, custom-add-see-also)
7673 (custom-add-parent-links, custom-group-link): Add :pressed-face
7674 property to links.
7675
7676 * files.el (hack-local-variables): Remove ignored variables before
7677 checking if any variables need setting.
7678
7679 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7680
7681 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
7682
7683 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
7684
7685 * help.el (where-is): Fix message for remapped commands.
7686
7687 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
7688 Fix typos in docstrings.
7689
7690 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
7691
7692 * files.el (safe-local-variable-values): New option.
7693 (hack-local-variables-prop-line): Return a list of variable-value
7694 pairs if MODE-ONLY is non-nil.
7695 (hack-local-variables): Construct list of variable-value pairs,
7696 and apply or reject them in one go. Ask for confirmation if
7697 variables are not known safe.
7698 (hack-local-variables-confirm): Complete rewrite. Support
7699 `safe-local-variable-values'.
7700 (enable-local-variables): Update docstring to reflect new
7701 behavior.
7702 (ignored-local-variables): Ignore ignored-local-variables and
7703 safe-local-variable-values.
7704 (safe-local-variable-p): New function.
7705 (risky-local-variable-p): `safe-local-variable' property check
7706 moved to safe-local-variable-p.
7707 (hack-one-local-variable): Checks moved to hack-local-variables.
7708
7709 (byte-compile-dynamic, c-basic-offset, c-file-style)
7710 (c-indent-level, comment-column, fill-column, fill-prefix)
7711 (indent-tabs-mode, kept-new-versions, no-byte-compile)
7712 (no-update-autoloads, outline-regexp, page-delimiter)
7713 (paragraph-start, paragraph-separate, sentence-end)
7714 (sentence-end-double-space tab-width, version-control):
7715 Add `safe-local-variable' property.
7716
7717 * find-lisp.el: Delete nonexistent `autocompile' file variable.
7718
7719 * icomplete.el, play/landmark.el: Change nonexistent
7720 `outline-layout' file variable to `allout-layout'.
7721
7722 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
7723
7724 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
7725 (gdb-get-changed-registers): Test value of gud-minor-mode relative
7726 to gud-comint-buffer.
7727 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
7728 gdb-ui.el for gdb-mi.el.
7729 (gdb-post-prompt, gdb-get-changed-registers): Move test for
7730 registers buffer to gdb-get-changed-registers.
7731 (gdb-breakpoint-regexp): New regexp. Allow toggling and
7732 deletion of catchpoints (throw and catch).
7733 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
7734 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
7735 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
7736 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
7737 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
7738
7739 2006-02-13 Jay Belanger <belanger@truman.edu>
7740
7741 * calc/calc-arith.el (math-check-known-matrixp): Make sure
7742 expression is a symbol before checking that it is bound.
7743
7744 2006-02-13 Richard M. Stallman <rms@gnu.org>
7745
7746 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
7747 for the minibuffer too, but not if resize-mini-windows will interfere.
7748
7749 * help.el (describe-key-briefly, describe-key): Do all arg-reading
7750 inside `interactive' spec.
7751 (describe-key-briefly-internal, describe-key-internal):
7752 Functions merged back into their callers.
7753
7754 2006-02-13 Martin Rudalics <rudalics@gmx.at>
7755
7756 * info.el (info-xref-visited): Inherit from info-xref too.
7757 (Info-set-mode-line): Replace occurrences of `%' by `%%'
7758 when propertizing Info-current-file and Info-current-node.
7759
7760 2006-02-13 Juri Linkov <juri@jurta.org>
7761
7762 * tumme.el (tumme-thumbnail-storage): Fix docstring.
7763 (tumme-thumb-name): Fix per-directory format.
7764
7765 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
7766
7767 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
7768
7769 2006-02-12 Miles Bader <miles@gnu.org>
7770
7771 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
7772
7773 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
7774
7775 * tumme.el: Remove history section. If someone needs the it, it
7776 can always be found in CVS.
7777
7778 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
7779
7780 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
7781 about the Thumbnail Managing Standard option.
7782
7783 2006-02-12 Richard M. Stallman <rms@gnu.org>
7784
7785 * subr.el (substitute-key-definition): Doc fix.
7786
7787 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
7788
7789 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
7790
7791 * info.el (Info-mode): Doc fix.
7792
7793 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
7794
7795 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
7796
7797 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
7798 because on Solaris a POSIX compatible "id" is needed. Reported by
7799 Magnus Henoch <mange@freemail.hu>.
7800
7801 2006-02-12 Juri Linkov <juri@jurta.org>
7802
7803 * tumme.el: Remove todo item about Thumbnail Managing Standard.
7804 (tumme) <defgroup>: Change :group to `multimedia'.
7805 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
7806 Managing Standard.
7807 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
7808 Fix dostring.
7809 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
7810 and %y. Fix docstring.
7811 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
7812 (tumme-cmd-create-standard-thumbnail-command): New user options.
7813 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
7814 is `standard'. Fix docstring.
7815 (tumme-thumb-width, tumme-thumb-height): New user options.
7816 (tumme-external-viewer): Try to find various viewers.
7817 (tumme-get-thumbnail-image): Use `create-image' instead of
7818 constructing the `image' structure.
7819 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
7820 `standard'.
7821 (tumme-thumb-name): Add file name generation for standard storage.
7822 Simplify code for other storages.
7823 (tumme-thumb-name): Use width %w and height %h instead of size %s.
7824 Add modification time %m and thumbnail-nq8 %q.
7825 Use `tumme-cmd-create-standard-thumbnail-command' if
7826 tumme-thumbnail-storage is `standard'.
7827 (tumme-dired-insert-marked-thumbs): New autoload command.
7828 (tumme-dired-after-readin-hook): New function.
7829 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
7830 `tumme-thumb-size'.
7831 (tumme-display-image): Replace size-x %x and size-y %y with
7832 width %w and height %h.
7833
7834 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
7835 `tumme-dired-insert-marked-thumbs'.
7836
7837 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
7838
7839 * tumme.el (tumme-write-tag): Fix small bug (file name did not
7840 include path).
7841 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
7842 matching tag.
7843
7844 2006-02-12 Miles Bader <miles@gnu.org>
7845
7846 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
7847 New variables.
7848 (rcirc-abbrev-nick): New function.
7849 (rcirc-format-response-string): Rewrite to use the formats in
7850 `rcirc-response-formats' and expand escape sequences therein.
7851 A text-property `rcirc-text' is added over the actual response
7852 text to make easy to find inside the returned string.
7853 (rcirc-print): When filling, just look for the `rcirc-text'
7854 text-property to find the appropriate fill prefix, instead of
7855 using hardwired patterns.
7856
7857 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
7858
7859 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
7860 Managing Standard.
7861
7862 2006-02-11 Kim F. Storm <storm@cua.dk>
7863
7864 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
7865 Don't use insert-buffer; do insert-buffer-substring directly.
7866 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
7867
7868 2006-02-11 Martin Rudalics <rudalics@gmx.at>
7869
7870 * files.el (revert-buffer, recover-file): Replace buffer-read-only
7871 with inhibit-read-only. Suggested by Stefan Monnier.
7872 (revert-buffer): Let insert-file-contents discard
7873 buffer-undo-list. Simplify code.
7874 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
7875
7876 2006-02-11 Eli Zaretskii <eliz@gnu.org>
7877
7878 * menu-bar.el (menu-bar-select-yank): Add a doc string.
7879
7880 * help.el (describe-key-briefly): Now a wrapper for
7881 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
7882 to t. Populate yank-menu if empty.
7883 (describe-key-briefly-internal): Renamed from describe-key-briefly.
7884 (describe-key): Now a wrapper for describe-key-internal. Bind
7885 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
7886 (describe-key-internal): Renamed from describe-key.
7887
7888 2006-02-11 Milan Zamazal <pdm@zamazal.org>
7889
7890 * progmodes/glasses.el (glasses-separator): Doc fix.
7891 (glasses-original-separator): New defcustom.
7892 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
7893
7894 2006-02-11 Martin Rudalics <rudalics@gmx.at>
7895
7896 * mwheel.el (mouse-wheel-up-event): Doc fix.
7897
7898 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
7899
7900 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
7901 (tumme-dir): New function. Copied from thumbs.el.
7902
7903 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
7904
7905 * desktop.el (desktop-outvar): Fix typo.
7906 (desktop-save-buffer-p): Doc fix.
7907
7908 * subr.el (substitute-key-definition): Fix typo.
7909
7910 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7911
7912 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
7913 when window-system is mac.
7914
7915 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
7916
7917 2006-02-10 Kim F. Storm <storm@cua.dk>
7918
7919 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
7920 indirect-function instead of using condition-case.
7921
7922 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
7923
7924 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
7925 less `colloquial'...
7926
7927 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
7928
7929 * tumme.el: Add a couple of todo items.
7930
7931 2006-02-09 Lars Hansen <larsh@soem.dk>
7932
7933 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
7934 (highlight-changes-mode): Don't change desktop-locals-to-save.
7935
7936 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
7937
7938 * image-mode.el (image-toggle-display): Clear image cache if using
7939 filename.
7940
7941 2006-02-09 Masatake YAMATO <jet@gyve.org>
7942
7943 * dired-x.el (dired-guess-shell-alist-default): Add .man as
7944 a `dired-man' target.
7945
7946 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
7947 boundary of symbols.
7948
7949 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
7950
7951 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
7952
7953 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
7954
7955 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
7956 `mapcar'; return nil.
7957
7958 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
7959
7960 * mouse.el (mouse-drag-track): Don't change window if we rebind to
7961 some other event.
7962
7963 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
7964
7965 * net/rcirc.el (rcirc-startup-channels-alist):
7966 Add irc.freenode.net and #emacs as defaults.
7967 (rcirc-ignore-all-activity-flag): Remove variable.
7968 (rcirc-authinfo): New variable.
7969 (rcirc-authinfo-filename): Remove variable.
7970 (rcirc-always-use-server-buffer-flag): New flag.
7971 (rcirc): M-x rcirc will automatically connect without prompting.
7972 C-u M-x rcirc will prompt. Use rcirc-connect to create a
7973 connection in lisp.
7974 (rcirc-process-server-response-1): Remove everything but the nick
7975 portion of the sender so it doesn't need to be done everywhere
7976 else. Update related code.
7977 (global-map): Remove global keybindings.
7978 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
7979 (rcirc-send-input): Split into several functions.
7980 (rcirc-process-input-line, rcirc-process-message)
7981 (rcirc-process-command): New functions.
7982 (rcirc-target-buffer): New function to determine where to route
7983 messages.
7984 (rcirc-user-nick): Save match data.
7985 (rcirc-toggle-ignore-buffer-activity)
7986 (rcirc-update-activity-string): Remove global ignore functionality,
7987 which can be done now by toggling rcirc-track-minor-mode.
7988 (rcirc-track-minor-mode-map): New keymap.
7989 (rcirc-track-minor-mode): New minor-mode.
7990 (ignore): Make the ignore output nicer. Always print it when
7991 adding or removing nicks.
7992 (rcirc-url-regexp): Improve.
7993 (rcirc-mangle-text): Remove properties before using text in the
7994 modeline.
7995 (rcirc-authenticate): Authentication data comes from
7996 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
7997 (rcirc-server-prefix): Inherit from rcirc-server.
7998
7999 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
8000
8001 * Makefile.in (compile): Append "|| true" to the end of the `find'
8002 command, like compile-always does.
8003
8004 2006-02-08 Sam Steingold <sds@gnu.org>
8005
8006 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
8007 output from a dead connection.
8008
8009 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
8010
8011 * dired.el (dired-mode-map): Add more bindings for tumme.
8012
8013 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
8014
8015 * wdired.el (wdired-mode-map): Use remap.
8016 (wdired-get-filename): Massage.
8017 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
8018 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
8019 `keymap' property rather than `local-map'.
8020
8021 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
8022
8023 * tumme.el (tumme-get-thumbnail-image): New utility function.
8024 Suggested by from Chong Yidong.
8025 (tumme-dired-with-window-configuration): Rename from
8026 `tumme-dired'. Add code to save window configuration.
8027 (tumme-restore-window-configuration): New command to restore the
8028 window configuration that `tumme-dired-with-window-configuration'
8029 saves before it changes the window configuration.
8030 (tumme-show-all-from-dir): New command to display thumbnails for
8031 all files in a directory entered by the user, like M-x thumbs.
8032 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
8033 have been created.
8034 (tumme-display-thumbnail-original-image): Call `display-buffer'.
8035 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
8036 Remove obsolete test function.
8037
8038 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
8039
8040 * vc.el (small-temporary-file-directory): Remove defvar; there's
8041 a defcustom for it in files.el.
8042
8043 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
8044 Fix typo in message.
8045 (tumme-gallery-generate): Fix typo in `error' message.
8046 (tumme-display-window-height-correction)
8047 (tumme-display-window-width-correction, tumme-line-up-dynamic)
8048 (tumme-line-up-interactive): Dox fixes.
8049 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
8050 (tumme-restore-window-configuration, tumme-format-properties-string)
8051 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
8052 Fix typos in docstrings.
8053
8054 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
8055
8056 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
8057
8058 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
8059
8060 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
8061 User should use hook if desired.
8062
8063 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
8064 buffer if necessary.
8065 (gdb-delete-frame-or-window): New function.
8066 (gdb-breakpoints-mode-map): Bind "q" to it.
8067
8068 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
8069
8070 * textmodes/nroff-mode.el: Clean up name space.
8071 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
8072 (nroff-mode): Obey the global setting of nroff-electric-mode.
8073 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
8074
8075 * calendar/calendar.el (calendar-increment-month): Typo in last change.
8076
8077 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
8078
8079 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
8080
8081 2006-02-06 Lars Hansen <larsh@soem.dk>
8082
8083 * generic-x.el (etc-fstab-generic-mode): Add file system types
8084 cifs and usbdevfs. Allow special chars in file names.
8085
8086 2006-02-05 Jay Belanger <belanger@truman.edu>
8087
8088 Update copyright notices of the files in lisp/calc.
8089
8090 2006-02-05 Romain Francoise <romain@orebokech.com>
8091
8092 Update copyright notices of all files in the lisp/play directory.
8093
8094 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
8095
8096 * ldefs-boot.el: Regenerate.
8097
8098 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
8099
8100 2006-02-05 Kim F. Storm <storm@cua.dk>
8101
8102 * files.el (magic-mode-regexp-match-limit): New defvar.
8103 (set-auto-mode): Use it to limit magic-mode-alist matching.
8104
8105 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
8106
8107 * simple.el (display-message-or-buffer): Compare the number of
8108 characters to the frame width when determining whether a 1-line
8109 message string will fit in the echo area. Count screen lines
8110 instead of buffer lines when determining whether a multi-line
8111 message will fit in the echo area/minibuffer window.
8112
8113 2006-02-04 Eli Zaretskii <eliz@gnu.org>
8114
8115 * info.el (Info-index, Info-mode): Improve the description of the
8116 `i' command.
8117
8118 * ldefs-boot.el: Regenerate.
8119
8120 2006-02-03 Werner Lemberg <wl@gnu.org>
8121
8122 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
8123 greedy to find the closing bracket in \*[...] and similar
8124 expressions. This is a first rough fix -- many additional
8125 refinements are necessary to make nroff mode really usable with groff.
8126
8127 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
8128
8129 * international/mule-cmds.el (set-locale-environment):
8130 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
8131 libX11.
8132
8133 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
8134
8135 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
8136 archive are created in archive-tmpdir.
8137
8138 2006-02-02 John Paul Wallington <jpw@pobox.com>
8139
8140 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
8141 (ibuffer-fontification-alist): Use it.
8142 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
8143 to "* z" and the Ibuffer Mark menu.
8144
8145 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
8146
8147 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
8148
8149 * textmodes/table.el (*table--cell-describe-mode)
8150 (*table--cell-describe-bindings): Undo last change since
8151 print-help-return-message is not obsoleted by anything at all.
8152
8153 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
8154
8155 * emulation/cua-base.el (cua-mode): Doc fix.
8156
8157 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
8158
8159 * dframe.el (dframe-handle-make-frame-visible)
8160 (dframe-handle-iconify-frame, dframe-get-focus)
8161 (dframe-select-attached-frame, dframe-power-click)
8162 (dframe-frame-mode): Fix typos in docstrings.
8163
8164 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
8165 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
8166 Fix typos in docstrings.
8167
8168 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
8169 (hi-lock-face-buffer, hi-lock-font-lock-hook)
8170 (hi-lock-archaic-interface-message-used)
8171 (hi-lock-file-patterns-range): Fix typos in docstrings.
8172
8173 * savehist.el (savehist-loaded, savehist-load, savehist-install)
8174 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
8175
8176 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
8177 Fix typo in docstring.
8178
8179 * net/newsticker.el (newsticker--decode-iso8601-date)
8180 (newsticker--set-customvar, newsticker--buffer-insert-item)
8181 (newsticker--do-run-auto-mark-filter)
8182 (newsticker--parse-generic-feed): Doc fixes.
8183 (newsticker--retrieval-timer-list, newsticker-url-list)
8184 (newsticker-hide-immortal-items-in-echo-area)
8185 (newsticker-hide-obsolete-items-in-echo-area)
8186 (newsticker-new-item-face, newsticker--enclosure)
8187 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
8188 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
8189 (newsticker--parse-generic-feed, newsticker--cache-contains)
8190 (newsticker--stat-num-items, newsticker-download-enclosures):
8191 Fix typos in docstrings.
8192
8193 * net/rcirc.el (rcirc-debug): Doc fix.
8194 (rcirc-fill-column, rcirc-receive-message-hooks)
8195 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
8196 (rcirc-mode, rcirc-generate-new-buffer-name)
8197 (rcirc-startup-channels, rcirc-ignore-update-automatic)
8198 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
8199 Fix typos in docstrings.
8200 (rcirc-print): "?\ " -> "?\s".
8201 (rcirc-cmd-join): Improve argument/docstring consistency.
8202
8203 2006-02-01 Mark A. Hershberger <mah@everybody.org>
8204
8205 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
8206 before narrow-to-region.
8207
8208 2006-02-01 Richard M. Stallman <rms@gnu.org>
8209
8210 * simple.el (move-beginning-of-line): Scan properly for invis change.
8211
8212 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
8213
8214 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
8215
8216 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
8217 change bit only when id-format is 'integer. Reported by Matt
8218 Hodges <M.P.Hodges@rl.ac.uk>.
8219
8220 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
8221
8222 * hilit-chg.el (highlight-changes-initial-state)
8223 (highlight-changes-global-initial-state): Doc fixes.
8224 (highlight-changes-global-modes, global-highlight-changes):
8225 Fix typos in docstrings.
8226
8227 2006-02-01 Kim F. Storm <storm@cua.dk>
8228
8229 * emulation/cua-base.el (cua-mode): Mention that CUA enables
8230 transient-mark-mode in doc string.
8231
8232 2006-01-31 Richard M. Stallman <rms@gnu.org>
8233
8234 * replace.el (multi-occur): Doc fix.
8235 (multi-occur-in-matching-buffers): Rename from
8236 multi-occur-by-filename-regexp. Prefix arg says match
8237 buffer names instead of file names.
8238
8239 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
8240
8241 * bs.el: Allow non-default values of `bs-header-lines-length'.
8242 (bs--running-in-xemacs): Remove (not needed anymore).
8243 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
8244 instead of `shrink-window', thus avoiding having to compute the
8245 height of the window.
8246 (bs--up): Wrap around even when there's no header.
8247 (bs--down): Use `forward-line' instead of `next-line'.
8248
8249 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
8250
8251 * image-mode.el (image-toggle-display): Use file name if possible,
8252 instead of unnecessarily allocating a (possibly huge) lisp string.
8253
8254 2006-01-30 John Paul Wallington <jpw@pobox.com>
8255
8256 * subr.el (toplevel): Define `cl-assertion-failed' condition here
8257 because the `assert' macro signals it at runtime.
8258
8259 * emacs-lisp/cl.el (toplevel): Remove definition of
8260 `cl-assertion-failed' condition.
8261
8262 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
8263
8264 * thumbs.el (thumbs-marked-list): Make buffer-local and
8265 permanent-local.
8266 (thumbs-insert-thumb): Make help-echo non-sticky.
8267 (thumbs-file-alist): Use eolp as check for (non)-image.
8268
8269 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
8270
8271 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
8272 (ediff-before-session-group-setup-hooks)
8273 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
8274 Fix typos in docstrings.
8275
8276 * window.el (bw-dir, bw-eqdir, balance-windows)
8277 (split-window-keep-point): Fix typos in docstrings.
8278
8279 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
8280 (org-quote-string, org-calendar-to-agenda-key)
8281 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
8282 (org-show-following-heading, org-tags-column)
8283 (org-use-tag-inheritance, org, org-allow-space-in-links)
8284 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
8285 (org-enable-table-editor, org-calc-default-modes)
8286 (org-table-allow-automatic-line-recalculation)
8287 (org-export-html-style, org-export-with-fixed-width)
8288 (org-export-with-sub-superscripts, org-special-keyword)
8289 (org-formula, org-time-grid, org-table-may-need-update)
8290 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
8291 (org-goto-quit, org-get-indentation, org-end-of-item)
8292 (org-move-item-down, org-move-item-up)
8293 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
8294 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
8295 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
8296 (org-agenda-log-mode, org-agenda-toggle-diary)
8297 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
8298 (org-agenda-file-to-end, org-agenda-no-heading-message)
8299 (org-agenda-get-closed, org-format-agenda-item)
8300 (org-cmp-priority, org-cmp-category, org-cmp-time)
8301 (org-agenda-change-all-lines, org-agenda-diary-entry)
8302 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
8303 (org-link-search, org-camel-to-words, org-open-file)
8304 (org-remember-handler, org-table-convert-region)
8305 (org-table-move-row-down, org-table-move-row-up)
8306 (org-table-copy-region, org-table-wrap-region)
8307 (org-table-toggle-vline-visibility)
8308 (org-table-get-vertical-vector, org-table-modify-formulas)
8309 (org-table-get-specials, org-recalc-commands)
8310 (org-table-rotate-recalc-marks, org-table-eval-formula)
8311 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
8312 (org-level-color-stars-only, org-insert-heading):
8313 Fix typos in docstrings.
8314 (last-arg): Add defvar.
8315
8316 * makefile.w32-in (WINS): Add erc.
8317 (MH_E_SRC): Update (copied from lisp/Makefile.in).
8318
8319 2006-01-29 Bill Wohler <wohler@newt.com>
8320
8321 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
8322 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
8323 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
8324 (mh-autoloads): Don't use comments on otherwise empty lines.
8325
8326 2006-01-29 Edward O'Connor <ted@oconnor.cx>
8327
8328 * emulation/viper.el (viper-major-mode-modifier-list): Add
8329 insert-state and vi-state entries for erc-mode.
8330 (viper-go-away, viper-set-hooks): Add and remove
8331 viper-comint-mode-hook from erc-mode-hook as appropriate.
8332
8333 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
8334
8335 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
8336
8337 * bs.el (bs--format-aux): Implement `middle' alignment as
8338 described in the docstring for `bs-attributes-list'.
8339 (bs--get-name): Simplify. Don't pad the buffer name.
8340
8341 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
8342
8343 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
8344 English aspell dictionary is installed, use the first entry of
8345 ispell-dictionary-alist-1.
8346
8347 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
8348
8349 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
8350 Doc fix.
8351
8352 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
8353
8354 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
8355 for `process-file', in order to let it work for older Emacsen too.
8356
8357 2006-01-27 Eli Zaretskii <eliz@gnu.org>
8358
8359 * international/latexenc.el: Add a suitable `coding:' tag.
8360 (latexenc-find-file-coding-system): Undo last change.
8361
8362 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
8363
8364 * international/latexenc.el (latexenc-find-file-coding-system):
8365 Make sure latexenc-main-file is a regular file and is readable.
8366
8367 2006-01-27 Andre Spiegel <spiegel@gnu.org>
8368
8369 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
8370 Pass FILE to vc-user-login-name.
8371
8372 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
8373
8374 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
8375
8376 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
8377 there are no more images to display.
8378 (thumbs-mark, thumbs-unmark): Revert change so that they move to
8379 the next image.
8380
8381 2006-01-26 Richard M. Stallman <rms@gnu.org>
8382
8383 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
8384
8385 * wid-edit.el (advertised-widget-backward): New alias.
8386 (widget-keymap): Use advertised-widget-backward for S-TAB.
8387
8388 * tumme.el: Correct the keywords.
8389 (tumme-dir-max-size): Use defvar.
8390 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
8391
8392 * simple.el (move-beginning-of-line): Take account of fields.
8393 (clone-indirect-buffer-other-window): Take args like
8394 clone-indirect-buffer, and work like it.
8395
8396 * help-fns.el (describe-function): Don't pass `nil' as default.
8397
8398 * files.el (risky-local-variable-p): Follow var aliases.
8399
8400 * subr.el (lazy-completion-table): Doc fix.
8401
8402 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
8403 global binding of `line'.
8404
8405 2006-01-25 Andre Spiegel <spiegel@gnu.org>
8406
8407 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
8408 Tramp.
8409
8410 * vc.el (vc-default-dired-state-info): Pass FILE to
8411 vc-user-login-name.
8412 (vc-default-update-changelog): Don't use vc-user-login-name, we
8413 don't need it here.
8414
8415 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
8416 no longer necessary.
8417
8418 2006-01-25 Kenichi Handa <handa@m17n.org>
8419
8420 * international/mule.el (decode-char): Avoid the overhead of
8421 calling utf-lookup-subst-table-for-decode if
8422 utf-translate-cjk-mode is nil.
8423 (encode-char): Avoid the overhead of calling
8424 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
8425 nil.
8426
8427 2006-01-22 Kenichi Handa <handa@m17n.org>
8428
8429 * international/mule.el (make-subsidiary-coding-system): Reset
8430 `coding-system-define-form' property of subsidiaries to nil.
8431 Avoid duplicated entry in coding-system-alist.
8432 (make-coding-system): Avoid duplicated entry in
8433 coding-system-alist.
8434 (define-coding-system-alias): Likewise.
8435
8436 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
8437
8438 * completion.el: Minor fixes in introductory comment.
8439 (completion-def-wrapper): Fix alist.
8440
8441 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
8442
8443 * thumbs.el (thumbs-new-image-size): New function.
8444 (thumbs-increment-image-size-element)
8445 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
8446 (thumbs-decrement-image-size): Delete.
8447 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
8448 temp files and use to resize.
8449 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
8450 Use increment argument to enlarge/shrink. Preserve point.
8451 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
8452 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
8453 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
8454 (thumbs-mark, thumbs-unmark): Preserve point.
8455 (thumbs-modify-image): Keep old temp files and use to modify.
8456 Cleanup old temp files at load time. Preserve point.
8457 (thumbs-view-image-mode-map): Use new command names.
8458
8459 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
8460
8461 * log-view.el (log-view-minor-wrap): First rev is the one at point.
8462
8463 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
8464 the nastiest part of the cyclic dependency.
8465 (cal-menu-update): Use dotimes and calendar-increment-month.
8466
8467 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
8468 (calendar-week-start-day): Add an :initializer.
8469 (calendar-mode-map): Use suppress-keymap, and command remapping.
8470 (describe-calendar-mode): Setup xref-stack info for the back button.
8471 (calendar-star-date): Insert before delete.
8472 (calendar-set-mode-line): Add file-modified info if applicable.
8473 (calendar-increment-month): New function.
8474
8475 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
8476
8477 * font-lock.el (lisp-font-lock-keywords-2):
8478 Recognize "& keywords" only at word boundaries.
8479
8480 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
8481
8482 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
8483 and permanent-local.
8484 (thumbs-max-image-number): New variable.
8485 (thumbs-do-thumbs-insertion): Use them.
8486 (thumbs-per-line): Change default to 4.
8487 (thumbs-marked-list): Rename from thumbs-markedL.
8488 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
8489 (thumbs-rename-images): Use -list instead of L for internal variables.
8490 (thumbs-call-convert): Use call-process instead of shell-command.
8491 (thumbs-insert-thumb): Add filename as help-echo to each image.
8492 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
8493 Give dir to thumbs-show-thumbs-list.
8494 (thumbs-show-thumbs-list): Set default-directory to that of images.
8495 (thumbs-dired-show): Rename from thumbs-dired-show-all.
8496 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
8497 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
8498 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
8499
8500 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
8501
8502 * ses.el (ses-read-cell): Provide a default value.
8503
8504 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
8505
8506 * term/w32-win.el (image-library-alist): Add additional names for
8507 GIF library.
8508
8509 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
8510
8511 * international/latexenc.el (latexenc-find-file-coding-system):
8512 Add file-regular-p check.
8513
8514 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
8515
8516 * simple.el (clone-buffer): Don't show the new buffer in the same
8517 window.
8518
8519 2006-01-23 Juri Linkov <juri@jurta.org>
8520
8521 * faces.el (link, link-visited): New faces based on default values
8522 of `info-xref' and `info-xref-visited'.
8523
8524 * info.el (info-xref): Inherit from `link'.
8525 (info-xref-visited): Inherit from `link-visited'.
8526
8527 * cus-edit.el (custom-buffer-create-internal): Use widget type
8528 `custom-manual' instead of `info-link' and don't set properties
8529 `button-face' and `mouse-face' explicitly.
8530 (custom-browse-group-tag, custom-browse-variable-tag)
8531 (custom-browse-face-tag): Inherit from widget class
8532 `custom-group-link' instead of `push-button'.
8533 (custom-button-unraised): Inherit from `underline' face.
8534 (custom-link): Inherit from `link' face. Fix doc and group.
8535 (custom-add-parent-links, custom-group-value-create): Don't set
8536 properties `button-face' and `mouse-face' explicitly for
8537 `custom-group-link' widget.
8538 (custom-group-link): Add properties `button-face' and `mouse-face'
8539 to widget definition.
8540 (custom-field-keymap): New variable. Put `custom-field-keymap' to
8541 editable-field's :keymap property.
8542 (custom-mode): Fix docstring: substitute keybindings for
8543 `widget-forward' and `widget-backward' from `widget-keymap',
8544 `widget-complete' from `custom-field-keymap', replace old
8545 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
8546
8547 * desktop.el (desktop-load-file): Check for `fboundp' before
8548 calling `symbol-function'.
8549
8550 * simple.el (clone-buffer, clone-indirect-buffer)
8551 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
8552 `read-string'. Fix prompts.
8553
8554 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
8555
8556 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
8557
8558 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
8559
8560 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
8561
8562 * startup.el (inhibit-splash-screen, initial-scratch-message):
8563 Doc fixes.
8564
8565 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
8566
8567 Sync with Tramp 2.0.52.
8568
8569 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
8570 net/tramp-vc.el: Add code for unloading Tramp. See comment before
8571 `tramp-unload-tramp' for checklist.
8572
8573 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
8574 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
8575 (tramp-unload-file-name-handler-alist)
8576 (tramp-unload-tramp): New defuns.
8577 (tramp-advice-PC-expand-many-files): New defadvice.
8578 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
8579 removed.
8580 (tramp-handle-expand-file-name): Remove double slash.
8581 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
8582 It doesn't matter, because it will be converted later on.
8583 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
8584 implementation was just heuristic.
8585 (tramp-post-connection): Set uid and gid properties.
8586 (tramp-convert-file-attributes): Set file's gid change bit.
8587 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
8588 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
8589 in case of su(do)? methods. The home directory of the local user
8590 will be taken else.
8591 (tramp-open-connection-telnet)
8592 (tramp-open-connection-rsh, tramp-open-connection-su)
8593 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
8594 local shell prompt could hurt. Reported by Romain Francoise
8595 <romain@orebokech.com>.
8596 (tramp-let-maybe): Add `edebug-form-spec' property.
8597 (tramp-handle-expand-file-name): Bind `default-directory' locally
8598 to "/" in order to avoid problems with UNC shares or Cygwin
8599 mounts.
8600 (tramp-md5-function): Fix typo in error message.
8601
8602 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
8603
8604 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
8605 for byte-compiler pacification.
8606
8607 2006-01-22 Andre Spiegel <spiegel@gnu.org>
8608
8609 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
8610 ID-FORMAT `string'. This allows us to get rid of
8611 `vc-user-login-name UID'.
8612
8613 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
8614
8615 2006-01-22 John Paul Wallington <jpw@pobox.com>
8616
8617 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
8618
8619 2006-01-21 Martin Rudalics <rudalics@gmx.at>
8620
8621 * emacs-lisp/find-func.el (find-definition-noselect)
8622 (find-variable-noselect): Search variables in C source code too.
8623 (find-function-C-source, find-function-noselect, find-function)
8624 (find-function-other-frame, find-variable-noselect, find-variable)
8625 (find-variable-other-frame, find-variable-at-point):
8626 Fix docstrings.
8627
8628 2006-01-21 Francesco Potorti` <pot@gnu.org>
8629
8630 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
8631
8632 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
8633
8634 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
8635 Default to disabling the "Save affix" question.
8636
8637 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
8638
8639 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
8640 the first arg to run-python.
8641
8642 2006-01-21 Eli Zaretskii <eliz@gnu.org>
8643
8644 * startup.el (command-line-1): Handle --no-desktop if desktop.el
8645 is not loaded.
8646
8647 2006-01-20 Jay Belanger <belanger@truman.edu>
8648
8649 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
8650 limit is 0.
8651
8652 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
8653 the correct variable.
8654
8655 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
8656
8657 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
8658 link. Fixed buggy argument sequence in call to `org-view-tags'.
8659 (org-compile-prefix-format): Set `org-prefix-has-tag'.
8660 (org-prefix-has-tag): New variable.
8661 (org-format-agenda-item): Remove tags from headline if
8662 appropriate.
8663 (org-agenda-remove-tags-when-in-prefix): New option.
8664 (org-get-tags-at): New function.
8665
8666 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
8667
8668 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
8669 (thumbs-find-image): Move image name and number from buffer name
8670 to mode name. Set thumbs-buffer. Preserve point so that large
8671 images remain visible.
8672 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
8673 order.
8674 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
8675 mode name.
8676 (thumbs-next-image, thumbs-previous-image): Make them work.
8677
8678 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
8679
8680 * cus-edit.el (custom-buffer-create-internal): State in the text above
8681 the whole buffer buttons that they do not operate on hidden items.
8682 (custom-face-menu): Use `custom-face-save' instead of
8683 `custom-face-save-command'.
8684 (custom-face-save-command): Make it an alias for `custom-face-save'
8685 and declare it obsolete.
8686 (custom-face-save): Doc fix.
8687
8688 * dired.el (dired-no-confirm): Add quote.
8689 (dired-subdir-alist-pre-R): Add quote in
8690 `make-variable-buffer-local' form and remove unbalanced parenthesis.
8691
8692 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
8693
8694 * textmodes/table.el (table-mode-indicator): Typo in last change.
8695
8696 2006-01-19 Richard M. Stallman <rms@gnu.org>
8697
8698 * outline.el (hide-leaves): Don't call outline-end-of-heading.
8699 Fixes bug reported in Nov 2005.
8700
8701 * isearch.el (isearch-forward): Doc fix.
8702
8703 * dired.el (dired-move-to-filename-regexp): Define as alias.
8704 (dired-no-confirm): Use defcustom.
8705 (dired-subdir-alist-pre-R): Put defvar at top level.
8706
8707 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
8708
8709 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
8710 Mark as risky.
8711
8712 * simple.el (set-mark-command): Doc fix.
8713 (clone-indirect-buffer-other-window):
8714 Read arg like clone-indirect-buffer.
8715 (move-beginning-of-line): Skip invisible newlines.
8716
8717 2006-01-19 Masatake YAMATO <jet@gyve.org>
8718
8719 * progmodes/cpp.el (cpp-edit-load): Make the order of
8720 listed conditions in a base C code buffer and its associate
8721 CPP Edit buffer the same.
8722
8723 2006-01-19 Kenichi Handa <handa@m17n.org>
8724
8725 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
8726 (rmail-mime-feature): Likewise.
8727 (rmail-require-mime-maybe): Use display-warning to show a warning
8728 message.
8729
8730 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
8731 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
8732
8733 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
8734
8735 * array.el: Move defvars out of eval-when-compile.
8736 (array-make-template): Replace undeclared global var with a local one.
8737 (array-mode): Inline initialization functions.
8738 (array-init-local-variables, array-init-max-row)
8739 (array-init-max-column, array-init-columns-per-line)
8740 (array-init-field-width, array-init-rows-numbered)
8741 (array-init-line-length, array-init-lines-per-row): Remove.
8742
8743 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
8744 (doc-mode-map): Define explicitly.
8745 (doctor-txtype): Use mapc.
8746
8747 * textmodes/table.el: Move defvars out of eval-when-compile.
8748 Remove harmful code meant to avoid byte-compiler warnings.
8749 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
8750 specification that checks table-fixed-width-mode directly.
8751 (table-recognize-region, table-recognize-cell):
8752 Use restore-buffer-modified-p.
8753 (table-fixed-width-mode): Remove code that refreshes
8754 table-fixed-mode-indicator.
8755 (*table--cell-describe-bindings, *table--cell-describe-mode):
8756 Avoid obsolete name print-help-return-message.
8757 (table--test-cell-list): Don't use replace-regexp from elisp.
8758 (table--point-entered-cell-function, table--point-left-cell-function):
8759 Don't set table-fixed-mode-indicator, use force-mode-line-update.
8760
8761 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
8762 that was after the end of file. Use buffer-file-name variable.
8763 (org-timestamp-change): Use with-current-buffer.
8764 (org-todo-list): Don't unnecessarily define a new buffer-local var.
8765 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
8766 `file'.
8767
8768 * progmodes/fortran.el: Move defvars out of eval-when-compile.
8769 (fortran-break-line): Remove unused var `opoint'.
8770 (fortran-abbrev-start): Obey help-event-list.
8771
8772 2006-01-18 Jesper Harder <harder@phys.au.dk>
8773
8774 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
8775
8776 2006-01-18 Masatake YAMATO <jet@gyve.org>
8777
8778 * progmodes/make-mode.el (makefile-imake-mode): New mode
8779 derived from makefile-mode.
8780 (makefile-imake-mode-syntax-table): New syntax table
8781 derived from makefile-mode-syntax-table.
8782 (makefile-mode): Write about makefile-imake-mode in doc string.
8783 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
8784 (makefile-imake-font-lock-keywords): New font lock keywords.
8785
8786 * files.el (auto-mode-alist): Add Imakefile.
8787
8788 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
8789
8790 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
8791 loading the file rather than when turning on flyspell-mode.
8792
8793 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
8794
8795 * cus-edit.el (customize-rogue): Minor doc fix.
8796
8797 2006-01-17 Juri Linkov <juri@jurta.org>
8798
8799 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
8800 instead of the file at the mark as default if the file at the mark
8801 is the same as the file at point or if dired-dwim-target-directory
8802 is not the same as the current directory and the mark is not active.
8803
8804 * log-view.el (log-view-minor-wrap): Use the same logic to get
8805 revisions as `log-view-diff'.
8806
8807 * info.el (Info-revert-find-node): Check for Info-current-file
8808 before preserving new-history.
8809
8810 * man.el (Man-heading-regexp): Add `/'.
8811
8812 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
8813 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
8814
8815 2006-01-16 Juri Linkov <juri@jurta.org>
8816
8817 * faces.el (mode-line-faces): New defgroup.
8818 (mode-line-highlight): Move definition after new defgroup.
8819 (mode-line, mode-line-inactive, mode-line-highlight):
8820 Replace :group `modeline' with `mode-line-faces'.
8821 (mode-line-buffer-id): New face.
8822 (modeline-buffer-id): New face alias.
8823 (vertical-border): Remove :group `modeline'.
8824
8825 * bindings.el (propertized-buffer-identification): Use face
8826 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
8827 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
8828 (mode-line-buffer-identification-keymap): For mouse-1 replace
8829 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
8830 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
8831 mouse-3.
8832
8833 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
8834 Buffer-menu-buffer. Doc fix.
8835 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
8836 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
8837 `Buffer-menu-buffer'.
8838
8839 * info.el (Info-mode-line-node-keymap): New defvar.
8840 (Info-set-mode-line): Use `stringp' to check Info-current-file.
8841 Propertize Info-current-node with `mode-line-buffer-id' and
8842 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
8843
8844 * time.el (display-time-mail-face): Replace :group `faces' with
8845 `mode-line-faces'.
8846
8847 2006-01-16 Kenichi Handa <handa@m17n.org>
8848
8849 * international/code-pages.el: Add autoload cookies for cp125[0345678].
8850
8851 * language/european.el (cp1252): New alias for windows-1252.
8852
8853 * international/mule.el (autoload-coding-system): Prepare for EOL
8854 variants.
8855
8856 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
8857
8858 * term.el (term-raw-map): Add mapping for insert.
8859 (term-send-insert): New.
8860 (term-mode): Make variables local here instead of doing it in
8861 `term-emulate-terminal'.
8862 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
8863 Scroll reverse needs to take into account the scroll region.
8864 Saving and restoring the cursor should save the color attributes too.
8865 (term-reset-terminal): Reset the scroll region.
8866 (term-handle-ansi-escape): Cursor up and down should take into
8867 account the scroll region.
8868 (term-set-scroll-region): Rename from `term-scroll-region'.
8869 Move to 0,0 after setting the region.
8870 (term-handle-scroll): Handle scroll up.
8871 (term-down): Fix off by one error.
8872 (term-delete-lines): Do not delete outside the scroll region.
8873 (term-insert-lines): Take into account the scroll region.
8874
8875 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
8876
8877 * textmodes/ispell.el (ispell-internal-change-dictionary)
8878 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
8879 (start, end): Move declaration outside of eval-when-compile.
8880
8881 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
8882 (flyspell-mode-on): Use it.
8883
8884 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
8885 ispell-kill-ispell-hook.
8886
8887 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
8888
8889 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
8890 (Custom-reset-saved): Do not ask for confirmation in single option
8891 buffers.
8892
8893 2006-01-13 Richard M. Stallman <rms@gnu.org>
8894
8895 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
8896
8897 2006-01-13 Romain Francoise <romain@orebokech.com>
8898
8899 * add-log.el (add-change-log-entry, change-log-merge):
8900 Conditionally use `hard-newline'.
8901
8902 2006-01-13 Martin Rudalics <rudalics@gmx.at>
8903
8904 * wid-edit.el (widget-field-end): If the overlay is no longer
8905 associated with a buffer, behave as if the overlay didn't exist.
8906
8907 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
8908 Make sure the links use the `custom-link' face.
8909
8910 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
8911
8912 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
8913 (ld-script-mode): Don't set indent-line-function since we don't
8914 have one.
8915
8916 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
8917
8918 * textmodes/org.el (org-open-file): Use mailcap for selecting an
8919 application.
8920 (org-file-apps-defaults-gnu): Use mailcap as the default for
8921 selecting an application on a UNIX system.
8922 (org-agenda-show-tags): New command.
8923 (org-table-insert-hline): Keep cursor in current table line.
8924 (org-table-convert): Offset effect of modifying
8925 `org-table-insert-hline'.
8926 (org-format-agenda-item): New optional argument TAG.
8927 (org-compile-prefix-format): Handle %T format for the tag.
8928 (org-expand-wide-chars): New function.
8929 (org-table-insert-row, org-table-insert-hline):
8930 Use `org-expand-wide-chars'.
8931 (org-open-file): Fix bug in program launch.
8932 (org-get-time-of-day): Fix bug with times before 1am.
8933 (org-agenda-menu): Add tags commands.
8934
8935 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
8936
8937 * textmodes/ispell.el (ispell-init-process): Include the used
8938 dictionary in ispell process start message.
8939 (ispell-internal-change-dictionary): When flyspell-mode is active
8940 and dictionary is changed, make sure ispell process is restarted
8941 and flyspell word cache cleared out for the current buffer.
8942 (ispell-change-dictionary): Make sure flyspell word cache is
8943 cleared out in all buffers with active flyspell mode when
8944 dictionary is globally changed.
8945 Call ispell-internal-change-dictionary after dictionary change.
8946
8947 2006-01-13 Eli Zaretskii <eliz@gnu.org>
8948
8949 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
8950
8951 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
8952 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
8953 years. Fix small differences wrt Makefile.in.
8954 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
8955 Makefile.in does.
8956
8957 2006-01-12 Bill Wohler <wohler@newt.com>
8958
8959 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
8960 mh-search.el.
8961
8962 2006-01-12 Masatake YAMATO <jet@gyve.org>
8963
8964 * progmodes/ld-script.el: Update copyright year.
8965
8966 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
8967
8968 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
8969 Don't add widget if setting undefined.
8970
8971 2006-01-12 John Paul Wallington <jpw@pobox.com>
8972
8973 * help-fns.el (describe-variable): Remove newlines from void
8974 variable output.
8975
8976 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
8977
8978 * wdired.el (wdired-mode-map): Add help echo for
8979 wdired-abort-changes.
8980
8981 * man.el (Man-file-name-regexp): Adjust for a list of files.
8982
8983 2006-01-12 Masatake YAMATO <jet@gyve.org>
8984
8985 * progmodes/ld-script.el (auto-mode-alist): Support
8986 suffix conventions used in netbsd and eCos.
8987
8988 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
8989
8990 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
8991 (custom-variable-menu, custom-face-menu, custom-group-menu)
8992 (Custom-mode-menu): Change names of menu items. (As discussed on
8993 emacs-devel.)
8994 (custom-face-menu): Add "Undo Edits" item.
8995
8996 * startup.el (init-file-user): defcustom -> defvar.
8997
8998 * tooltip.el (tooltip-mode): Doc fix.
8999
9000 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
9001
9002 * reveal.el (reveal-post-command): window-buffer signals an error on
9003 dead windows rather than returning nil.
9004 (reveal-open-new-overlays): An overlay might die while we open others.
9005
9006 2006-01-11 Bill Wohler <wohler@newt.com>
9007
9008 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
9009 phrasing in docstring.
9010
9011 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
9012 can give some systems gas. Add new file mh-buffers.el.
9013
9014 2006-01-06 Masatake YAMATO <jet@gyve.org>
9015
9016 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
9017 C preprocessor forward ported from GNU Emacs 21.2.
9018
9019 * progmodes/asm-mode.el (asm-font-lock-keywords):
9020 Use `cpp-font-lock-keywords'.
9021
9022 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
9023
9024 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
9025 of $ for "\\.ld[s]?".
9026
9027 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
9028
9029 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
9030 (tcl-indent-line): Return `noindent' if inside a string.
9031
9032 * progmodes/flymake.el (flymake-split-string): Remove more than one
9033 empty string at beg/end of the result.
9034 (flymake-find-buildfile, flymake-find-possible-master-files):
9035 Use expand-file-name.
9036 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
9037 since expand-file-name does it for us. Use directory-file-name.
9038 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
9039 (flymake-ler-get-type, flymake-ler-get-text)
9040 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
9041 (flymake-current-line-no): Remove spurious interactive spec.
9042 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
9043 (flymake-check-include): Remove arg inc-path merged into inc-name.
9044 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
9045 Arg regexp-list replaced by a simple regexp.
9046 (flymake-master-make-header-init, flymake-master-tex-init):
9047 Correspondingly replace regexp-list with a regexp. Fix regexp.
9048
9049 2006-01-10 Simon Josefsson <jas@extundo.com>
9050
9051 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
9052 describing AUTH PLAIN fix.
9053
9054 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
9055
9056 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
9057 (report-emacs-bug): Don't record initial prompt text.
9058 Instead, add text properties to prompting text.
9059 (report-emacs-bug-hook): Delete prompting text.
9060
9061 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
9062
9063 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
9064 `dirs'. Adjust callers.
9065
9066 2006-01-09 John Paul Wallington <jpw@gnu.org>
9067
9068 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
9069
9070 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
9071
9072 * reveal.el (reveal-open-new-overlays): New extracted fun.
9073 (reveal-close-old-overlays): Idem. Check overlays's liveness before
9074 using them. Simplify the code.
9075 (reveal-post-command): Use them. Fix up obsolete windows in
9076 reveal-open-spots.
9077
9078 * progmodes/flymake.el: Use `require' rather than autoload for
9079 XEmacs's overlays.
9080 (flymake-get-common-file-prefix, flymake-build-relative-filename):
9081 Delete. Use file-relative-name instead.
9082 (flymake-get-syntax-check-program-args, flymake-perl-init):
9083 Simplify the resulting code.
9084
9085 * log-view.el (log-view-file-re, log-view-message-re): Add support
9086 for DaRCS output.
9087
9088 2006-01-09 Alex Schroeder <alex@gnu.org>
9089
9090 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
9091 identifiers sometimes added in square brackets at the beginning of
9092 subject lines.
9093
9094 2006-01-07 Richard M. Stallman <rms@gnu.org>
9095
9096 * cus-edit.el (Custom-set, Custom-save): Doc fix.
9097 (Custom-reset-current, Custom-reset-saved): Change question text.
9098 (Custom-reset-standard): Likewise.
9099 (custom-variable-reset-saved): Doc fix.
9100
9101 2006-01-07 Eli Zaretskii <eliz@gnu.org>
9102
9103 * startup.el (init-file-user): Doc fix.
9104
9105 2006-01-07 Alex Schroeder <alex@gnu.org>
9106
9107 * mail/rmail.el (rmail-current-subject): New function.
9108 (rmail-current-subject-regexp): New function.
9109 (rmail-next-same-subject): Use it.
9110
9111 * mail/rmailsum.el (rmail-summary-by-topic):
9112 Use rmail-current-subject and rmail-current-subject-regexp.
9113 (rmail-summary-next-same-subject): Ditto.
9114
9115 * net/rcirc.el (rcirc-send-input): No longer check whether the
9116 process is open, since not all commands need an open process.
9117 (rcirc-send-string): Check whether the process is open before
9118 sending anything.
9119 (rcirc-ignore-list): New option.
9120 (rcirc-ignore-list-automatic): New variable.
9121 (rcirc-print): Take rcirc-ignore-list into account.
9122 (rcirc-cmd-ignore): New command.
9123 (rcirc-ignore-update-automatic): New function.
9124 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
9125 list if ignored nicks.
9126 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
9127
9128 2006-01-06 David Reitter <david.reitter@gmail.com>
9129
9130 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
9131 reflect the address to which the report will be sent.
9132
9133 2006-01-06 Eli Zaretskii <eliz@gnu.org>
9134
9135 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
9136 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
9137
9138 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
9139
9140 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
9141
9142 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
9143 the doc string: "functoin" => "function".
9144 * ldefs-boot.el: Likewise.
9145
9146 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
9147 message text: "Duplicat" => "Duplicate".
9148
9149 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
9150
9151 * files.el (basic-save-buffer-2): If backing-up failed, reset
9152 buffer-backed-up to nil.
9153
9154 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
9155
9156 * progmodes/gud.el (gdb-script-skip-to-head)
9157 (gdb-script-calculate-indentation): Indent for breakpoint command
9158 lists also.
9159
9160 2006-01-05 Bill Wohler <wohler@newt.com>
9161
9162 * Makefile.in (compile-always): Add mh-autoloads dependency.
9163 (bootstrap): Remove mh-autoloads dependency, as compile dependency
9164 provides it.
9165 (updates): Remove mh-autoloads dependency, since it probably has
9166 already run recently (via recompile).
9167
9168 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
9169
9170 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
9171 argument `force' to disable the flyspell-last-buffer optimization.
9172 (flyspell-mode-on): Use it.
9173
9174 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
9175 flymake-simple-cleanup.
9176 (flymake-allowed-file-name-masks): Use this new default.
9177 All the functions are now called in the right buffer rather than
9178 passing the buffer as argument.
9179 (flymake-process-sentinel): Switch to buffer before calling cleanup.
9180 (flymake-parse-err-lines): Remove redundant buffer arg.
9181 (flymake-get-program-dir): Comment out unused function.
9182 (flymake-start-syntax-check, flymake-start-syntax-check-process):
9183 Remove redundant buffer argument.
9184 (flymake-get-real-file-name, flymake-simple-java-cleanup)
9185 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
9186
9187 2006-01-05 Richard M. Stallman <rms@gnu.org>
9188
9189 * info.el (Info-find-node): Don't record previous node if have none.
9190 (info): Go to directory only if history is empty.
9191
9192 * simple.el (mark): Doc fix.
9193
9194 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9195
9196 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
9197 already of desired type.
9198 (mac-ae-list): Coerce parameter to "list" type.
9199 (mac-dispatch-apple-event): Replace cadr part of event with a
9200 dummy position so that event-start returns it.
9201
9202 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
9203
9204 * textmodes/org.el (org-end-of-subtree): New function.
9205 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
9206 Use `org-end-of-subtree'.
9207 (org-agenda, org-agenda-convert-date): Protect calls to
9208 `fit-window-to-buffer'.
9209 (org-tags-view): Force matching of sublevels when doing a
9210 todo-only search. Define the correct redo command, including the
9211 arguments.
9212 (org-agenda-redo): Display message.
9213 (org-check-for-org-mode): New function.
9214 (org-agenda-type): New variable.
9215 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
9216 Set `org-agenda-type'.
9217 (org-agenda-check-type): New function.
9218 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
9219 (org-agenda-week-view, org-agenda-day-view)
9220 (org-agenda-next-date-line, org-agenda-previous-date-line)
9221 (org-agenda-log-mode, org-agenda-toggle-diary)
9222 (org-agenda-toggle-time-grid, org-agenda-date-later)
9223 (org-agenda-date-prompt, org-agenda-diary-entry)
9224 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
9225 (org-agenda-convert-date, org-agenda-menu):
9226 Use `org-agenda-check-type'.
9227 (org-make-overlay, org-delete-overlay)
9228 (org-detatch-overlay, org-move-overlay, org-overlay-put):
9229 New compatibility functions.
9230 (org-calendar-select-mouse): New command.
9231
9232 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
9233
9234 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
9235 (Custom-reset-standard): Fix y-or-n-p messages.
9236 (custom-link): New face for links.
9237 (custom-buffer-create-internal, custom-manual): Use it.
9238 (custom-face-save): Push to theme-face before setting face spec.
9239
9240 * wid-edit.el (widget-default-mouse-face-get): New function.
9241 (widget-specify-button): Handle mouse-face like button-face.
9242
9243 * custom.el (load-theme): Clear old theme settings if reloading.
9244
9245 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
9246
9247 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
9248 "Erase Customization" button back to same position it occupies in
9249 the individual State menus.
9250
9251 2006-01-04 Kim F. Storm <storm@cua.dk>
9252
9253 * wid-edit.el (key-sequence): Rework widget to read key binding
9254 using `kbd' syntax. Use C-q to insert literal key, event, or code.
9255 (widget-key-sequence-default-value): Default value for empty sequence.
9256 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
9257 (widget-key-sequence-read-event): New command for C-q.
9258 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
9259 (widget-key-sequence-value-to-external): New functions.
9260
9261 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
9262
9263 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
9264 Use expand-file-name.
9265 (flymake-delete-temp-directory): Use expand-file-name,
9266 file-name-directory, and directory-file-name.
9267 (flymake-strrchr): Delete.
9268 (flymake-start-syntax-check): Don't pass the redundant buffer argument
9269 to the init-f function.
9270 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
9271 (flymake-init-find-buildfile-dir)
9272 (flymake-init-create-temp-source-and-master-buffer-copy)
9273 (flymake-simple-make-init-impl, flymake-simple-make-init)
9274 (flymake-master-make-init, flymake-master-make-header-init)
9275 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
9276 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
9277 (flymake-xml-init): Remove corresponding redundant buffer argument.
9278 (flymake-allowed-file-name-masks): Remove last elems that are equal to
9279 the default anyway. Clean up regexps.
9280
9281 * progmodes/flymake.el (flymake-temp-source-file-name)
9282 (flymake-master-file-name, flymake-temp-master-file-name)
9283 (flymake-base-dir): New buffer-local vars.
9284 (flymake-buffer-data, flymake-get-buffer-value)
9285 (flymake-set-buffer-value): Replace those hash-tables by the new
9286 buffer-local vars. Update callers.
9287
9288 * progmodes/flymake.el (flymake-check-start-time)
9289 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
9290 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
9291 Move definition, so we can remove redundant earlier declaration.
9292 (flymake-replace-regexp-in-string, flymake-split-string)
9293 (flymake-get-temp-dir): Use defalias.
9294 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
9295 (flymake-xemacs-window-edges): Remove unused function.
9296 (flymake-get-point-pixel-pos): Move.
9297 (flymake-pid-to-names, flymake-reg-names)
9298 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
9299 Replace by a simple list flymake-processes and by process-buffer.
9300 Update callers. Other than simplify the code, it uses buffers rather
9301 than buffer-names so it doesn't get confused by uniquify.
9302 (flymake-buffer-data): The global value should just be nil.
9303
9304 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
9305 Optimize the body of a defalias like any other code.
9306
9307 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
9308 Make sure we've setup font-lock's vars. It may influence which
9309 function we then call.
9310 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
9311 here since it's too late anyway.
9312
9313 2006-01-03 Romain Francoise <romain@orebokech.com>
9314
9315 * startup.el (fancy-splash-tail, normal-splash-screen):
9316 Update copyright year.
9317
9318 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
9319
9320 * mouse.el (mouse-drag-track): Rename, from
9321 `mouse-drag-region-1'. Includes optional argument required to
9322 enable post-drag event processing (e.g. delete region keys).
9323 Can be used without this argument to track a mouse region and operate
9324 on it as soon as the drag completes.
9325 (mouse-drag-region): Use `mouse-drag-track'.
9326
9327 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
9328
9329 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
9330 Move to `custom-buffer' group.
9331
9332 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
9333 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
9334 (custom-theme-insert-face-marker, custom-theme-variable-menu)
9335 (custom-theme-face-menu): New variables.
9336 (custom-theme-add-variable, custom-theme-variable-action)
9337 (custom-variable-reset-theme, custom-theme-delete-variable)
9338 (custom-face-reset-theme, custom-theme-face-action)
9339 (custom-theme-delete-face, custom-theme-merge-theme)
9340 (custom-theme-add-face, custom-theme-visit-theme): New functions.
9341
9342 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
9343
9344 * custom.el: Move Custom Themes commentary to start of theme code.
9345 (custom-known-themes): Rename `standard' theme to `changed'.
9346 (custom-push-theme): Caller no longer specifies what theme to use
9347 when doing `reset'---the setting is simply removed from the theme.
9348 Delete MODE from `theme-value' and `theme-settings' properties.
9349 (custom-declare-theme): Ignore &rest args since we don't use them.
9350
9351 (custom-loaded-themes): Delete variable.
9352 (custom-theme-load-themes, custom-theme-loaded-p)
9353 (custom-theme-value): Delete functions.
9354
9355 (custom-declare-theme): Signal error on invalid theme names.
9356 (provide-theme): custom-loaded-themes was deleted.
9357 (load-theme): Load the file unconditionally.
9358 (enable-theme): Call `load-theme' if theme is undefined.
9359 (custom-enabled-themes): Only update value for successful loads.
9360 (disable-theme): Complete from enabled themes when interactive.
9361 (custom-variable-theme-value): Calculate theme value directly.
9362
9363 (custom-theme-reset-variables, custom-reset-variables): Mark as
9364 XEmacs compatibility functions. We don't actually use these.
9365
9366 * cus-edit.el (custom-variable-state-set):
9367 Use custom-variable-theme-value instead of custom-theme-value.
9368 (custom-face-state-set): Rename `standard' theme to `changed'.
9369 (custom-save-variables, custom-save-faces): Delete unneeded
9370 references to custom-reset-variables.
9371 (custom-save-resets): Delete function.
9372 (custom-save-variables, custom-save-faces): MODE argument deleted.
9373 (custom-save-variables, custom-save-faces): Ignore theme values.
9374
9375 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
9376 compatibility function.
9377
9378 2006-01-01 Richard M. Stallman <rms@gnu.org>
9379
9380 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
9381 (Custom-reset-current, Custom-reset-saved): Likewise.
9382 (Custom-reset-standard): Show message if aborted.
9383 (custom-mode): Doc fix, describing those commands.
9384
9385 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
9386 put on event-kind property.
9387
9388 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
9389
9390 * custom.el (provide-theme): Ban `user' theme name.
9391 (custom-enabling-themes): New variable.
9392 (enable-theme): Don't enable user if custom-enabling-themes is t.
9393 (custom-enabled-themes): Make it a defcustom.
9394 (custom-theme-recalc-face): No-op if face is undefined.
9395
9396 * cus-edit.el (custom-button-mouse): New variable.
9397 (custom-button-mouse): New face.
9398 (custom-raised-buttons, custom-mode): Use it.
9399
9400 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
9401
9402 2005-12-31 Eli Zaretskii <eliz@gnu.org>
9403
9404 * progmodes/gud.el (gud-display-line): Support hl-line in the
9405 source buffer.
9406
9407 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
9408
9409 * mouse.el (mouse-drag-window-above): Verify that the found window
9410 overlaps with the given window in the horizontal dimension.
9411
9412 2005-12-31 Eli Zaretskii <eliz@gnu.org>
9413
9414 * Makefile.in (cvs-update): New target.
9415
9416 * makefile.w32-in (cvs-update): Ditto.
9417
9418 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
9419
9420 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
9421 (custom-new-theme-mode-map): New variable.
9422
9423 2005-12-30 Richard M. Stallman <rms@gnu.org>
9424
9425 * custom.el (custom-load-themes): Function deleted.
9426
9427 * cus-edit.el (custom-save-loaded-themes): Function deleted.
9428 (custom-save-variables): Don't delete or add custom-load-themes call.
9429
9430 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
9431
9432 * cus-start.el: Add `visible-cursor'.
9433
9434 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
9435 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
9436 (flymake-process-filter): Switch to buffer before calling it instead.
9437 (flymake-post-syntax-check, flymake-highlight-err-lines)
9438 (flymake-delete-own-overlays, flymake-parse-err-lines)
9439 (flymake-start-syntax-check, flymake-start-syntax-check-process)
9440 (flymake-count-lines, flymake-parse-residual):
9441 Remove constant buffer argument.
9442 (flymake-start-syntax-check-for-current-buffer): Remove.
9443 Update callers to use flymake-start-syntax-check instead.
9444 (flymake-display-err-menu-for-current-line):
9445 Remove unused var `mouse-pos'.
9446 (flymake-restore-formatting): Comment out unused function.
9447 (flymake-report-status, flymake-report-fatal-status): Remove buffer
9448 argument, use current-buffer instead. Update callers.
9449
9450 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9451
9452 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
9453 buffer-local because choose-completion-delete-max-match requires
9454 that we set completion-ignore-case (i.e., binding via let is not
9455 sufficient).
9456 (bibtex-complete): Always set completion-ignore-case and
9457 choose-completion-string-functions. The latter is needed because
9458 choose-completion-string-functions keeps its value if we quit the
9459 *Completions* buffer without requesting a completion.
9460
9461 2005-12-30 Andreas Schwab <schwab@suse.de>
9462
9463 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
9464
9465 2005-12-30 Eli Zaretskii <eliz@gnu.org>
9466
9467 * jit-lock.el (jit-lock-chunk-size): Doc fix.
9468
9469 2005-12-30 Juri Linkov <juri@jurta.org>
9470
9471 * locate.el (locate-fcodes-file, locate-header-face)
9472 * progmodes/delphi.el (delphi-other-face)
9473 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
9474
9475 * paren.el (show-paren-match, show-paren-mismatch): Use existing
9476 group `paren-showing-faces'.
9477
9478 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
9479 (goto-address): Fix docstring.
9480
9481 * net/webjump.el (webjump-sample-sites): Update URLs.
9482
9483 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
9484
9485 * subr.el (cancel-change-group): Add listp around pending-undo-list.
9486
9487 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
9488
9489 * font-lock.el (font-lock-compile-keywords): Signal an error when
9490 font-lock-set-defaults hasn't been called.
9491
9492 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
9493
9494 * subr.el (noreturn, 1value): Doc fixes.
9495
9496 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9497
9498 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
9499 that assoc-string returns nil.
9500
9501 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9502
9503 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
9504 (bibtex-entry-type-str, bibtex-empty-field-re)
9505 (bibtex-search-backward-string, bibtex-preamble-prefix)
9506 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
9507 (bibtex-any-valid-entry-type): New variable.
9508 (bibtex-parse-field-name): Simplify.
9509 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
9510 (bibtex-preamble-prefix): Include left delimiter.
9511 (bibtex-search-forward-field, bibtex-search-backward-field):
9512 Allow unbounded search past entry boundaries (required by bibtex-pop).
9513 (bibtex-text-in-field-bounds): Use push.
9514 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
9515 (bibtex-parse-preamble, bibtex-valid-entry)
9516 (bibtex-beginning-first-field): New functions.
9517 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
9518 (bibtex-map-entries): Fix docstring.
9519 (bibtex-flash-head): New arg prompt. Simplify.
9520 (bibtex-enclosing-field): Include code of bibtex-inside-field.
9521 (bibtex-insert-kill): Simplify. Always insert text past the
9522 current field or entry.
9523 (bibtex-format-entry): Use bibtex-parse-field.
9524 (bibtex-pop): Use bibtex-beginning-of-entry and
9525 bibtex-end-of-entry to initiate the search. Insert empty field if
9526 we found ourselves.
9527 (bibtex-print-help-message): New args field and comma.
9528 Handle entry keys.
9529 (bibtex-make-field): Use bibtex-beginning-of-entry.
9530 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
9531 invalid entry.
9532 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
9533 Handle preambles. Simplify code for thorough test.
9534 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
9535 New arg comma. Handle entry heads.
9536 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
9537 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
9538 New arg comma.
9539 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
9540 (bibtex-fill-field): Simplify.
9541 (bibtex-fill-entry): Use bibtex-beginning-first-field and
9542 bibtex-parse-field.
9543 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
9544 (bibtex-complete): Use bibtex-parse-preamble.
9545
9546 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
9547
9548 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
9549 Display name of expression instead of convenience variable.
9550 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
9551
9552 * progmodes/gud.el (gud-tooltip-dereference): Rename from
9553 toggle-gud-tooltip-dereference.
9554 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
9555 (gud-tooltip-tips): ...here when dereferencing.
9556
9557 2005-12-28 Bill Wohler <wohler@newt.com>
9558
9559 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
9560
9561 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
9562
9563 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
9564 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
9565 (vc-annotate-display-autoscale): Adjust call.
9566 (vc-annotate-display-default): Adjust call. Make arg compulsory.
9567 Fix interactive spec.
9568 (vc-annotate-time-span): Remove.
9569 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
9570 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
9571 (vc-annotate-display-select): Use new name.
9572
9573 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
9574 (vc-annotate-mode-menu): Remove left-over redundant declaration.
9575 Correct the construction of span entries. Simplify.
9576 (vc-annotate-display-select): Fix the nil case.
9577 (vc-annotate): Remove obsolete (and now broken) code.
9578 (vc-annotate-extract-revision-at-line): Remove obsolete code.
9579 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
9580
9581 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
9582
9583 * subr.el (lazy-completion-table): Correct typo in docstring.
9584
9585 * startup.el (command-line): Use `custom-reevaluate-setting' for
9586 `send-mail-function'.
9587
9588 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
9589
9590 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
9591
9592 * mail/smtpmail.el (smtpmail-try-auth-methods):
9593 Send credentials together with "AUTH PLAIN" command.
9594
9595 2005-12-27 Richard M. Stallman <rms@gnu.org>
9596
9597 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
9598 mouse-2, go back to previously selected window, so it's selected
9599 when mouse-2 command runs.
9600
9601 2005-12-27 Juri Linkov <juri@jurta.org>
9602
9603 * descr-text.el (describe-text-sexp): Use square brackets for
9604 button [Show] to distinguish it from the property value `show'.
9605 (describe-property-list): Use `insert-text-button' with
9606 `help-face' type instead of putting face in quotes, because button
9607 is not created automatically for a list of faces.
9608 (describe-text-properties-1): Put button-type value in quotes to
9609 distinguish from plain text "button".
9610 (describe-char): Display code point values in hex. Don't use
9611 `symbol-name' for `current-input-method' because it is a string.
9612 Use `insert-text-button' with `help-face' type instead of putting
9613 hardcoded face in quotes, because button is not created automatically.
9614
9615 2005-12-27 Richard M. Stallman <rms@gnu.org>
9616
9617 * progmodes/glasses.el (glasses-face): More specific custom type.
9618
9619 * files.el (set-visited-file-name): Doc fix.
9620
9621 * textmodes/flyspell.el (flyspell-external-point-words):
9622 Use local var buffer-scan-pos to advance scan for next misspelling.
9623 Advance it only after we find the misspelling.
9624
9625 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
9626
9627 * textmodes/flyspell.el (flyspell-external-point-words):
9628 New criteria for finding the misspelling in the buffer.
9629
9630 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
9631
9632 * help-mode.el (help-insert-string): Set help-xref-stack-item
9633 rather than call help-setup-xref.
9634
9635 * descr-text.el (describe-char): Revert previous changes for
9636 optional buffer argument.
9637
9638 2005-12-27 Juri Linkov <juri@jurta.org>
9639
9640 * help-mode.el (help-insert-string): New function. Save buffer
9641 contents in cases where it is impossible to recompute the old contents.
9642
9643 * descr-text.el (describe-char): Set help-xref-stack-item
9644 explicitly after buffer has been generated.
9645
9646 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9647
9648 * cus-start.el (all): Add x-gtk-show-hidden-files.
9649
9650 2005-12-26 Richard M. Stallman <rms@gnu.org>
9651
9652 * replace.el (perform-replace): Calculate match-again
9653 before skipping read-only matches.
9654
9655 * paren.el (paren-showing-faces): New group.
9656 (show-paren-match, show-paren-mismatch): Move to that group.
9657
9658 * button.el (button): Put into group `basic-faces'.
9659
9660 * progmodes/make-mode.el: Remove faces from group `faces'.
9661
9662 * apropos.el (apropos, apropos-value): Doc fix.
9663 (apropos-documentation): Doc fix.
9664
9665 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
9666
9667 * subr.el (lazy-completion-table): Remove argument `args'.
9668
9669 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
9670 Don't use the `args' argument of lazy-completion-table.
9671
9672 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
9673
9674 * descr-text.el (describe-char): Add optional argument for buffer.
9675 Set buffer appropriately. Call help-setup-xref.
9676 Suggested by Stefan Monnier.
9677
9678 2005-12-26 Juri Linkov <juri@jurta.org>
9679
9680 * descr-text.el: Require `help-fns' at runtime. Don't require
9681 `button' for byte compilation.
9682 (describe-text-widget): Add `help-echo' for first button.
9683 Use `help-info' for second.
9684 (describe-property-list): Use `help-argument-name' instead of `italic'.
9685 (describe-text-category): Add prompt to interactive spec.
9686 Call `help-setup-xref'.
9687 (describe-char): Use `help-character-set'. Add `help-echo' for
9688 code point. Use `help-input-method'. Remove superfluous insert.
9689
9690 2005-12-25 Richard M. Stallman <rms@gnu.org>
9691
9692 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
9693 at point, in case of narrowing.
9694
9695 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
9696
9697 * locate.el (locate-header-face): Allow nil in type.
9698
9699 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
9700
9701 2005-12-25 Romain Francoise <romain@orebokech.com>
9702
9703 * battery.el (battery-linux-proc-acpi): Also try
9704 `/proc/acpi/thermal_zone/THM0/temperature'.
9705
9706 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
9707
9708 * custom.el (custom-push-theme): Fix docstring.
9709
9710 * cus-edit.el (custom-variable-set, custom-variable-save)
9711 (custom-variable-save): Custom-quote widget values.
9712 (customize-save-variable): Fix custom-push-theme call.
9713
9714 2005-12-24 Eli Zaretskii <eliz@gnu.org>
9715
9716 * w32-fns.el (w32-batch-update-autoloads): New function.
9717
9718 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
9719 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
9720 from the command line.
9721
9722 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
9723
9724 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
9725 reset means to remove setting from theme entirely. Don't keep
9726 expanding theme-settings list; delete old entries if necessary.
9727
9728 * cus-edit.el (custom-buffer-create-internal): Move "Erase
9729 customization" button one line up.
9730 (custom-themed): New face.
9731 (custom-magic-alist): New value, THEMED, for theme settings.
9732 (custom-variable-state-set, custom-face-state-set):
9733 Check theme-value instead of saved-value.
9734 (custom-variable-reset-standard, custom-face-reset-standard):
9735 Remove theme setting entirely. Recalculate new values.
9736 (custom-variable-set, custom-variable-set)
9737 (custom-variable-reset-saved, custom-variable-reset-backup)
9738 (custom-face-set, custom-face-reset-saved): Update `user' theme.
9739 (custom-variable-save): Fix typos.
9740
9741 2005-12-23 Juri Linkov <juri@jurta.org>
9742
9743 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
9744 Add autoload cookies.
9745 (edebug-outside-d-c-i-n-s-w): New variable.
9746 (edebug-display, edebug-outside-excursion): Use it to save the
9747 original value of default-cursor-in-non-selected-windows.
9748 Set default-cursor-in-non-selected-windows to t while Edebug
9749 is active.
9750 (edebug-mode, edebug-eval-mode): Doc fix.
9751
9752 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
9753 with `buffer-substring-no-properties' to remove common substring
9754 highlighting.
9755
9756 * info.el (info-other-window, info): Rename function argument
9757 `file' to `file-or-node'.
9758 (Info-complete-menu-item): Use local variable `complete-nodes' to
9759 keep the global value of `Info-complete-nodes' unchanged for
9760 subsequent completions.
9761 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
9762
9763 * simple.el (get-next-valid-buffer, last-buffer)
9764 (next-error-buffer-p, next-error-find-buffer)
9765 (minibuffer-history-sexp-flag): Doc fix.
9766
9767 * savehist.el (savehist-mode-hook): Add `:group'.
9768
9769 * log-view.el: Call autoload for vc-find-version.
9770 (log-view-current-file): Adjust subgroup numbers.
9771 (log-view-current-tag): Add `length'.
9772
9773 2005-12-23 Richard M. Stallman <rms@gnu.org>
9774
9775 * vc.el (vc-annotate-car-last-cons): Defn moved up.
9776
9777 2005-12-23 Juri Linkov <juri@jurta.org>
9778
9779 * hi-lock.el (hi-lock-archaic-interface-message-used)
9780 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
9781 (hi-lock-mode): Display "Hi" in the mode line only when
9782 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
9783 (hi-lock-write-interactive-patterns):
9784 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
9785 (hi-lock-set-pattern, hi-lock-set-file-patterns)
9786 (hi-lock-font-lock-hook): Set 3rd arg `how' of
9787 font-lock-add-keywords to t.
9788
9789 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
9790
9791 * hi-lock.el (hi-lock-highlight-range): New variable.
9792 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
9793 only if font-lock-fontified is non-nil. Remove overlays.
9794 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
9795 font-lock-fontified is non-nil, otherwise use overlays (instead of
9796 text properties).
9797 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
9798 New variables.
9799 (hi-lock-string-serialize) New function.
9800
9801 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9802
9803 * menu-bar.el (menu-find-file-existing): New function.
9804 (menu-bar-file-menu): Use menu-find-file-existing for Open.
9805
9806 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
9807
9808 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
9809
9810 * vc.el: Remove unnecessary leading * in docstrings.
9811 (vc-annotate-mode-map): Move initialization into declaration.
9812 (vc-static-header-alist): Nitpick on the regexp.
9813 (vc-default-init-version): New fun.
9814 (vc-register): Use it.
9815 (vc-insert-headers): Use dolist.
9816 (vc-annotate-get-backend): Remove unused function.
9817 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
9818 (vc-annotate-mode): Remove corresponding call.
9819 (vc-annotate-car-last-cons): Simplify.
9820 (vc-annotate-buffers): Remove var.
9821 (vc-annotate-backend): Make it buffer-local.
9822 (vc-annotate): Move the interaction to the interactive spec.
9823 Add a `buf' argument.
9824 (vc-annotate-warp-version): Use this new `buf' argument to avoid
9825 killing&creating a vc-annotate buffer, which is very disruptive when
9826 the buffers are shown in dedicated frames.
9827
9828 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
9829
9830 * descr-text.el: Add FSF as maintainer.
9831 (describe-text-mode, describe-text-mode-map)
9832 (describe-text-mode-hook, describe-text-done): Delete. Use normal
9833 help-mode.
9834 (describe-text-widget, describe-text-sexp)
9835 (describe-property-list, describe-text-category)
9836 (describe-text-properties, describe-text-properties-1)
9837 (describe-char): Use help buttons instead of widgets.
9838 (describe-char-unicodedata-file): Make URL link in doc string.
9839
9840 2005-12-22 Richard M. Stallman <rms@gnu.org>
9841
9842 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
9843 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
9844 Don't include buttons that write a file when there's no file.
9845 (custom-variable-menu, custom-face-menu, custom-group-menu):
9846 Don't include commands that write a file when there's no file.
9847 (customize-browse): Reword the top-of-buffer help intro.
9848 (custom-buffer-create-internal): Fix previous change.
9849 (customize-changed-options-previous-release): Prev release is 21.1.
9850 (customize-changed-options): Doc fix.
9851 (customize-changed): New alias.
9852 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
9853 Say "standard values".
9854 (Custom-reset-standard): Doc fix.
9855 (custom-face-reset-standard): Doc fix.
9856
9857 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
9858
9859 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
9860 even if font-lock-mode is non-nil since it may be t without having
9861 turned on font-lock-mode-internal.
9862 (font-lock-choose-keywords): Minor optimization.
9863 (font-lock-add-keywords, font-lock-remove-keywords)
9864 (font-lock-set-defaults): Don't call make-local-variable on a variable
9865 that we know to already be local.
9866
9867 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
9868
9869 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
9870 messages if in the minibuffer.
9871
9872 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
9873
9874 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
9875 (tex-mode-flyspell-verify, flyspell-get-word)
9876 (flyspell-external-point-words): Don't use point-min/max uselessly.
9877
9878 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
9879 by Kevin Rodgers. Instead, just hide the completions buffer if we
9880 don't need to show it.
9881
9882 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
9883
9884 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
9885
9886 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
9887
9888 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
9889 delete-windows-on with an inexistent buffer.
9890
9891 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
9892
9893 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
9894 Delete defcustom variable :tag names.
9895
9896 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
9897
9898 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
9899 (log-view-font-lock-keywords): Ajust subgroup numbers.
9900 (log-view-current-tag): Don't hard code the number of subgroups.
9901
9902 2005-12-20 Juri Linkov <juri@jurta.org>
9903
9904 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
9905 (tooltip-x-offset, tooltip-y-offset): Doc fix.
9906
9907 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
9908 (menu-bar-non-minibuffer-window-p): Instead of checking
9909 display-multi-frame-p, use selected-frame when menu-updating-frame
9910 is nil.
9911
9912 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
9913
9914 * align.el (align-rules-list): Use [ \t] instead of \s-
9915 for column separators in text mode.
9916
9917 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
9918
9919 * help-mode.el (help-customize-variable, help-customize-face):
9920 Don't pop help-xref-stack as help-follow no longer pushes
9921 anything on to it.
9922
9923 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
9924
9925 * textmodes/org.el (org-agenda-custom-commands): New option.
9926 (org-agenda): Offer custom commands on splash screen.
9927 (org-make-tags-matcher): Parser for Boolean logic added.
9928 (org-agenda-set-tags): New command.
9929 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
9930 (org-set-tags): Efficiency improvements.
9931 (org-auto-align-tags): New option.
9932 (org-todo, org-demote, org-promote): Realign tags.
9933 (org-tags-completion-function): Use also "&" and "|" as separators.
9934 (org-org-menu): Agenda commands simplified.
9935
9936 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
9937
9938 * cus-edit.el (customize-apropos, customize-apropos-options):
9939 Docstring changes.
9940
9941 * font-lock.el (font-lock): Add tags to the links in the defgroup.
9942
9943 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
9944
9945 * longlines.el (longlines-mode): Wrap while widened.
9946 (longlines-decode-region, longlines-encode-region): Compute max
9947 just once.
9948
9949 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9950
9951 * cus-edit.el (mac): New group.
9952
9953 * cus-start.el (all): Add user options in macterm.c. Add test for
9954 Mac-related built-ins. Fix test for GTK-related built-ins.
9955
9956 * term/mac-win.el (mac-handle-language-change)
9957 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
9958 (mac-services-open-selection, mac-services-mail-selection)
9959 (mac-services-mail-to, mac-services-insert-text)
9960 (mac-dispatch-apple-event): Add docstrings.
9961 (x-get-selection, mac-select-convert-to-string): Select coding
9962 system from `utf-16be' and `utf-16le' using `byteorder'.
9963
9964 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
9965
9966 * subr.el (lazy-completion-table): Don't be fooled if the var holds
9967 a "list" (lambda ...) rather than a real completion list.
9968
9969 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
9970 lexical-let when encountering ((lambda (...) ...) ...).
9971
9972 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9973
9974 * progmodes/sh-script.el (sh-mode):
9975 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
9976 * textmodes/picture.el (picture-mode): Update docstrings.
9977
9978 2005-12-17 Eli Zaretskii <eliz@gnu.org>
9979
9980 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
9981 commands enclosed in $(ARGQUOTE)s should not be split between two
9982 lines, as that will break with GNU Make >3.80, when sh.exe is used
9983 and arg quoting is with '..'.
9984 (autoloads): Don't break the quoted --eval expression between
9985 several lines.
9986
9987 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
9988
9989 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
9990 Capture error from printing circular structures.
9991
9992 2005-12-17 Martin Rudalics <rudalics@gmx.at>
9993
9994 * wid-edit.el (widget-checkbox-action): Clear undo info.
9995
9996 2005-12-16 Bill Wohler <wohler@newt.com>
9997
9998 * menu-bar.el (kill-this-buffer): Set a good example by using menu
9999 bar, not menubar in comment.
10000
10001 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
10002
10003 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
10004 After-change-functions should not clobber the match data.
10005
10006 2005-12-16 Juri Linkov <juri@jurta.org>
10007
10008 * simple.el (choose-completion): Use `buffer-substring-no-properties'
10009 instead of `buffer-substring'.
10010 (completion-common-substring): Doc fix.
10011 (completion-setup-function): Use minibuffer-completion-contents
10012 instead of minibuffer-contents. Don't set common-string-length
10013 initially. Remove special handling of partial-completion-mode.
10014 Move computation of completion-base-size into one cond.
10015 Call completion-base-size-function in mainbuf. In computation of
10016 completion-base-size for file name completion don't move point to
10017 the end of the minibuffer. Move computation of common-string-length
10018 into one cond. Start putting faces only when common-string-length>=0.
10019 Add condition to put completions-common-part when
10020 common-string-length>0.
10021
10022 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
10023 place point at the first different character in the minibuffer
10024 even if this position is at the beginning of the minibuffer.
10025
10026 * info.el (Info-read-node-name-1): In completion-base-size-function's
10027 lambda return 1 if common-substring or minibuffer-completion-contents
10028 starts with (, and 0 otherwise.
10029
10030 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
10031 Use `crm-current-element' for second arg of `display-completion-list'.
10032
10033 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
10034
10035 * files.el (set-auto-mode): Look for an interpreter specified on
10036 the first line also if search for mode specification succeeded,
10037 but the mode is not known.
10038
10039 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
10040
10041 * textmodes/org.el (org-tags-match-list-sublevels): New option.
10042 (org-open-at-point): Implement tag searches as links.
10043 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
10044 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
10045 (org-tags-sparse-tree, org-tags-view, org-set-tags)
10046 (org-agenda-dispatch): New commands.
10047 (org-use-tag-inheritance, org-tags-column): New options.
10048 (org-tab-follows-link, org-return-follows-link): New options.
10049 (org-tags): New customize group.
10050 (org-start-icalendar-file): Get local time zone.
10051 (org-tags-completion-function): New function.
10052 (org-set-font-lock-defaults): Make sure links will also be
10053 highlighted inside headlines.
10054
10055 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
10056
10057 * term.el (term-emulate-terminal):
10058 Let term-handle-ansi-terminal-messages override what Bash says about
10059 its current directory.
10060
10061 2005-12-16 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
10062
10063 * bindings.el (last-buffer): Move to simple.el.
10064 * simple.el (last-buffer): Move here.
10065 (get-next-valid-buffer): New function.
10066 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
10067 (prev-buffer): Ditto. Rename to `previous-buffer'.
10068
10069 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
10070 * bindings.el (global-map): Ditto.
10071
10072 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
10073
10074 * cus-edit.el: Introductory comment change.
10075 (custom-magic-alist): Change message string for the `rogue' state.
10076
10077 2005-12-15 Richard M. Stallman <rms@gnu.org>
10078
10079 * tooltip.el: Delete defcustom variable :tag names.
10080
10081 * complete.el (partial-completion-mode): Doc fix.
10082
10083 * textmodes/flyspell.el (flyspell-external-point-words):
10084 Use save-excursion to ensure we don't move backward in the
10085 search loop, not even one character.
10086 (flyspell-delete-all-overlays): Use remove-overlays directly.
10087
10088 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
10089 (ispell-start-process): Set that variable.
10090 Clear ispell-buffer-local-name.
10091 (ispell-internal-change-dictionary):
10092 Set ispell-current-dictionary after killing process.
10093 (ispell-buffer-local-dict):
10094 Don't set spell-personal-dictionary after killing process.
10095 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
10096 (ispell-tex-skip-alists, ispell-html-skip-alists)
10097 (ispell-skip-region-alist): Mark as risky.
10098
10099 * net/newsticker.el (newsticker--retrieval-timer-list)
10100 (newsticker--display-timer, newsticker-running-p)
10101 (newsticker-ticker-running-p): Definitions moved up.
10102
10103 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
10104
10105 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
10106
10107 2005-12-15 David Ponce <david@dponce.com>
10108
10109 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
10110 (recentf-edit-list, recentf-open-files): Signal an error when
10111 there is no recent file.
10112
10113 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
10114
10115 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
10116 read-only except for texinfo-format-region evaluation.
10117
10118 2005-12-14 Richard M. Stallman <rms@gnu.org>
10119
10120 * vc.el (vc-default-previous-version, vc-default-next-version)
10121 (vc-do-command): Doc fixes.
10122
10123 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10124
10125 * textmodes/bibtex.el (bibtex-expand-strings)
10126 (bibtex-autokey-expand-string, bibtex-name-part)
10127 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
10128 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
10129 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
10130 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
10131 (bibtex-entry-postfix, bibtex-known-entry-type-re)
10132 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
10133 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
10134 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
10135 (bibtex-beginning-of-last-entry): Remove.
10136 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
10137 message if comma is missing but buffer is read-only.
10138 (bibtex-parse-field-text): Handle whitespaces at the end of field
10139 text. Return 3-element list with beginning and end of field text
10140 and end of field.
10141 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
10142 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
10143 (bibtex-search-forward-field, bibtex-search-backward-field):
10144 Search always delimited by limits of entry. Use more efficient
10145 search algorithms.
10146 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
10147 bibtex-end-of-name-in-field.
10148 (bibtex-text-in-field-bounds): Handle BibTeX strings when
10149 extracting the content of a field.
10150 (bibtex-text-in-field): Use search limits.
10151 (bibtex-parse-string-prefix): Handle empty string keys based on
10152 bibtex-string-empty-key.
10153 (bibtex-parse-string): Fix docstring.
10154 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
10155 (bibtex-preamble-prefix, bibtex-strings): New functions.
10156 (bibtex-skip-to-valid-entry): Include preceding whitespace in
10157 BibTeX entries (consistent with other BibTeX functions).
10158 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
10159 (bibtex-search-entry): Fix docstring. Simplify.
10160 (bibtex-flash-head, bibtex-complete-string-cleanup)
10161 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
10162 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
10163 (bibtex-parse-entry): New optional arg content.
10164 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
10165 Use bibtex-text-in-field-bounds.
10166 (bibtex-print-help-message): Handle BibTeX strings and preambles.
10167 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
10168 bibtex-parse-string-postfix.
10169 (bibtex-find-text-internal): New function.
10170 (bibtex-remove-delimiters): Use it.
10171 (bibtex-find-text): Use it. New optional arg help.
10172 (bibtex-complete): Handle BibTeX string and preamble entries.
10173 (bibtex-Preamble): Fix order of closing delimiters.
10174
10175 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
10176
10177 * vc.el (vc-default-revert): New fun.
10178
10179 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
10180
10181 2005-12-14 Romain Francoise <romain@orebokech.com>
10182
10183 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
10184 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
10185 (font-lock-remove-keywords): Likewise.
10186
10187 2005-12-14 Juri Linkov <juri@jurta.org>
10188
10189 * log-view.el (log-view-diff): Doc fix.
10190
10191 * isearch.el (isearch-query-replace): Use (mark) instead of
10192 isearch-opoint if mark is active in transient-mark-mode.
10193
10194 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
10195
10196 * isearch.el (isearch-query-replace): Check for isearch-other-end.
10197
10198 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
10199
10200 * progmodes/cpp.el (cpp-face): New widget.
10201 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
10202
10203 2005-12-14 Juri Linkov <juri@jurta.org>
10204
10205 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
10206 around `erase-buffer' and `insert'.
10207
10208 * descr-text.el (describe-text-properties): Replace buffer name
10209 "*Help-2*" with "*Help*<2>".
10210 (describe-char): Add functions print-help-return-message,
10211 toggle-read-only. Use help-setup-xref with nil to not store
10212 describe-char in help-xref-stack. Use help-make-xrefs to
10213 make [back] button.
10214
10215 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
10216
10217 * wdired.el (wdired-old-point): New internal variable.
10218 (wdired-change-to-wdired-mode): Set it buffer-locally.
10219 (wdired-abort-changes): Restore point after aborting changes.
10220
10221 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
10222
10223 * vc.el (vc-do-command): Add a new value t for okstatus.
10224
10225 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
10226 frame in case of errors.
10227
10228 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10229
10230 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
10231 so it comes after "On the Left" in the menu.
10232
10233 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
10234
10235 * cus-edit.el (customize-apropos, customize-apropos-options)
10236 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
10237
10238 2005-12-12 Bill Wohler <wohler@newt.com>
10239
10240 * vc-svn.el (vc-svn-registered): Fix problem of visiting
10241 non-writable Subversion-controlled files by saving window
10242 configuration before calling vc-do-command. vc-do-command calls
10243 pop-to-buffer on error which is unexpected during registration.
10244
10245 2005-12-12 Jay Belanger <belanger@truman.edu>
10246
10247 * calc/README: Update the summary of changes.
10248
10249 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
10250
10251 * descr-text.el (describe-char): Rework last fix to solve the problem
10252 is the same way it's solved for everything else in that function
10253 (i.e. by extracting the info before setting up the *Help* buffer).
10254
10255 2005-12-12 Kim F. Storm <storm@cua.dk>
10256
10257 * subr.el (version-regexp-alist): Allow space as separator before
10258 non-numeric part, e.g. "1.0 alpha".
10259 (version-to-list): Interpret .X.Y version as 0.X.Y version.
10260
10261 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
10262
10263 * textmodes/org.el (org-agenda, org-timeline, org-todo):
10264 Implement Logging and the keep-modes setting.
10265 (org-get-category): Make sure a string is returned.
10266 (org-log-done): New function.
10267 (org-log-done, org-closed-string): New options.
10268
10269 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10270
10271 * tooltip.el (tooltip-y-offset): Change default to 20.
10272
10273 2005-12-12 Richard M. Stallman <rms@gnu.org>
10274
10275 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
10276
10277 * frame.el (display-hourglass): Doc fix.
10278
10279 * help.el (help-for-help-internal): Simplify entry for `a'.
10280
10281 * info.el (Info-on-current-buffer): Doc fix.
10282 (info-insert-file-contents): Don't test (featurep 'jka-compr).
10283
10284 * startup.el (inhibit-splash-screen): Make this the real name.
10285 (inhibit-startup-message): Make this the alias.
10286 (command-line): Find only simple.el, and use its directory
10287 to fill in other preloaded files' names.
10288 (command-line): Deactivate the mark if deactivate-mark is set.
10289
10290 * international/mule.el (load-with-code-conversion):
10291 Bind deactivate-mark.
10292
10293 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
10294
10295 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
10296
10297 * cus-edit.el (customize-apropos): Avoid listing an option more
10298 than once under different aliases. No longer list user options
10299 that are not defined with defcustom (unless a prefix arg is given).
10300 Doc fix.
10301 (customize-apropos-options): Doc fix.
10302
10303 2005-12-11 Juri Linkov <juri@jurta.org>
10304
10305 * frame.el (set-background-color, set-foreground-color)
10306 (set-cursor-color, set-mouse-color, set-border-color):
10307 Add explicit prompts to read colors by `facemenu-read-color'.
10308 (show-trailing-whitespace, blink-cursor-delay)
10309 (blink-cursor-interval, display-hourglass, hourglass-delay):
10310 Remove tags.
10311 (display-hourglass, hourglass-delay): Doc fix.
10312 (cursor-in-non-selected-windows): Capitalize words in tag.
10313
10314 * faces.el (frame-background-mode): Replace `choice-item' keywords
10315 with `const' to not make [default] button. Change default value tag
10316 from `default' to `automatic'. Doc fix.
10317 (trailing-whitespace) <defface>: Change group `whitespace' to
10318 `whitespace-faces'.
10319
10320 2005-12-11 Richard M. Stallman <rms@gnu.org>
10321
10322 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
10323
10324 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10325
10326 * term/mac-win.el: Create keymap for mac-apple-event-map.
10327
10328 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
10329
10330 * tooltip.el (tooltip-mode): Move to start of file so that it
10331 appears at top of customize buffer.
10332
10333 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
10334 Add the gud groupname.
10335 (gud-tooltip-mode): Add the tooltip groupname.
10336 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
10337 avoid conflict with tooltip-use-echo-area.
10338
10339 2005-12-10 Romain Francoise <romain@orebokech.com>
10340
10341 * help.el (help-for-help-internal): Add `r' in doc string.
10342
10343 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
10344
10345 * align.el (align-regexp, align-highlight-rule):
10346 Use region-beginning and region-end instead of point and mark, so that
10347 repetition (with `repeat-complex-command') recomputes the region
10348 bounds.
10349
10350 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
10351
10352 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
10353 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
10354 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
10355 (balance-windows): Rewrite using the above new functions.
10356
10357 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
10358
10359 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
10360 react if global-hi-lock-mode seems intended.
10361 (global-hi-lock-mode) Renamed from hi-lock-mode.
10362 (hi-lock-archaic-interface-message-used)
10363 (hi-lock-archaic-interface-deduce): New variables.
10364 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
10365 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
10366 (hi-lock-find-patterns, hi-lock-font-lock-hook):
10367 Replace hi-lock-buffer-mode with hi-lock-mode.
10368
10369 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
10370
10371 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
10372 completion list, even after a partial completion has been
10373 inserted in the current buffer. If there are more than 1
10374 completion, redisplay the *Completions* buffer; if the
10375 completion is unique, delete the *Completions* window.
10376
10377 2005-12-10 Eli Zaretskii <eliz@gnu.org>
10378
10379 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
10380 strings and long subject lines that were broken into multiple
10381 lines at arbitrary places. Handle subjects that have "Re: " in
10382 the middle.
10383
10384 2005-12-10 John W. Eaton <jwe@octave.org>
10385
10386 * emacs/octave-mod.el (octave-electric-space): Don't indent
10387 comments or strings if octave-auto-indent is nil.
10388
10389 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10390
10391 * term/mac-win.el: Require url when compiling.
10392 Call mac-process-deferred-apple-events after loading init files.
10393 (mac-apple-event-map): New defvar. Define event handlers in it.
10394 (core-event, internet-event): New Apple event class symbols.
10395 (open-application, reopen-application, open-documents)
10396 (print-documents, open-contents, quit-application)
10397 (application-died, show-preferences, autosave-now, get-url):
10398 New Apple event ID symbols.
10399 (about): New HICommand ID symbol.
10400 (mac-event-spec, mac-event-ae): New macros.
10401 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
10402 (mac-ae-selection-range, mac-ae-text-for-search)
10403 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
10404 (mac-application-menu-map): Remove keymap. Handlers for HICommand
10405 and Services menu events are now defined in mac-apple-event-map.
10406 (mac-drag-n-drop): Remove selection range handling.
10407
10408 2005-12-10 Kenichi Handa <handa@m17n.org>
10409
10410 * simple.el (zap-to-char):
10411 * isearch.el (isearch-process-search-char): Translate CHAR by
10412 translation-table-for-input.
10413
10414 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
10415
10416 * foldout.el (foldout-exit-fold): Properly hide subtree.
10417
10418 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
10419
10420 * files.el (save-buffer):
10421 * international/ucs-tables.el (ucs-set-table-for-input):
10422 * mail/mail-extr.el (mail-extract-address-components):
10423 * mail/sendmail.el (mail-mode): Reformat doc string.
10424
10425 2005-12-09 Juri Linkov <juri@jurta.org>
10426
10427 * isearch.el (isearch-highlight): Change main overlay priority
10428 from 1 to 1001. Simplify.
10429 (isearch-lazy-highlight-update): Change lazy overlay priority
10430 from 0 to 1000.
10431
10432 * replace.el (replace-highlight): Change overlay priority from
10433 1 to 1001.
10434
10435 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
10436 Change overlay priority from 1 to 1001. Reuse existing overlay.
10437
10438 * compare-w.el (compare-windows-highlight): Change overlay
10439 priority from 1 to 1000.
10440
10441 * menu-bar.el (menu-bar-edit-menu): Add listp around
10442 pending-undo-list to disable menu item "undo" when pending
10443 undo list is empty.
10444
10445 * locate.el (locate): Disable undo in *Locate* buffer.
10446
10447 2005-12-09 Kim F. Storm <storm@cua.dk>
10448
10449 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
10450
10451 2005-12-09 David Ponce <david@dponce.com>
10452
10453 * recentf.el: Improvement of the menu code.
10454 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
10455 instead of menu hook.
10456 (recentf-show-menu, recentf-hide-menu): New functions.
10457 (recentf-menu-customization-changed, recentf-mode): Use them.
10458 (recentf-menu-action, recentf-max-menu-items)
10459 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
10460 (recentf-arrange-by-rule-others)
10461 (recentf-arrange-by-rules-min-items)
10462 (recentf-arrange-by-rule-subfilter) : Don't use
10463 `recentf-menu-customization-changed'.
10464 (recentf-arrange-rules): Likewise. Accept functions to compute
10465 sub-menu titles.
10466 (recentf-menu-filter): Likewise. Doc fix.
10467 (recentf-menu-value-shortcut): Doc fix.
10468 (recentf-dump-variable): Quote atom value.
10469 (recentf-make-menu-items): Update to use it as a menu filter.
10470 (recentf-match-rule): New function.
10471 (recentf-arrange-by-rule): Use it.
10472 (recentf-indirect-mode-rule): New function.
10473 (recentf-build-mode-rules): Use it.
10474 (recentf-dir-rule): New function.
10475 (recentf-arrange-by-dir): Use it.
10476 (recentf-filter-changer-current): Rename from
10477 `recentf-filter-changer-state'. All references updated.
10478 (recentf-filter-changer-alist): Update filter names.
10479 (recentf-filter-changer-select): New function.
10480 (recentf-filter-changer): Use it. Make a sub-menu from filters
10481 available in `recentf-filter-changer-alist'.
10482 (recentf-data-cache, recentf-clear-data)
10483 (recentf-update-menu): Remove. All references updated.
10484 (recentf-match-rule-p, recentf-build-dir-rules)
10485 (recentf-filter-changer-goto-next)
10486 (recentf-filter-changer-get-current)
10487 (recentf-filter-changer-get-next): Remove.
10488
10489 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
10490
10491 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
10492 buffer "Reset" button to "Reset to Current" for consistency with
10493 the State buttons.
10494
10495 2005-12-08 John Paul Wallington <jpw@pobox.com>
10496
10497 * ibuf-ext.el (define-ibuffer-filter filename):
10498 If `dired-directory' is a list then really use its car.
10499
10500 2005-12-08 Kim F. Storm <storm@cua.dk>
10501
10502 * emulation/cua-rect.el (cua--rectangle-aux-replace):
10503 Fix indention of text on right side of replaced rectangle.
10504
10505 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
10506
10507 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
10508 No need to check gud-comint-buffer is bound.
10509 (gdb): Prevent multiple debugging when first session uses gdba.
10510
10511 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10512
10513 CC Mode update to 5.31.
10514
10515 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
10516 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
10517 We might do this function properly in the future).
10518
10519 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
10520 New macros c-sentence-end and c-default-value-sentence end, to cope
10521 with Emacs 22's new function `sentence-end'.
10522
10523 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10524
10525 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
10526 compat issue using `c-put-overlay' and `c-delete-overlay'.
10527
10528 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
10529 New compat macros to handle overlays/extents.
10530
10531 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10532
10533 * progmodes/cc-fix.el: Add definitions of the macros push and pop
10534 (for GNU Emacs 20.4)
10535
10536 * progmodes/cc-defs.el:
10537 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
10538
10539 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
10540 highlighting mechanism so it will work in XEmacs too.
10541
10542 * progmodes/cc-defs.el: Insert c-int-to-char.
10543
10544 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
10545 call to the new macro c-int-to-char. This solves XEmacs's
10546 regarding characters as different from integers.
10547
10548 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10549
10550 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
10551 New internal helper.
10552
10553 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
10554 construct to make the indirect face lookup work in XEmacs.
10555
10556 (c-cpp-matchers): Append the negation char face to the existing
10557 fontification, so that the cpp face doesn't disappear.
10558 Use `c-make-syntactic-matcher' to avoid negation chars in comments
10559 and strings.
10560
10561 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
10562 to map to `font-lock-negation-char-face' in emacsen where it exists.
10563
10564 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10565
10566 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
10567
10568 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
10569 Rename "c-subword-move-mode" as "c-subword-mode".
10570
10571 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
10572 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
10573
10574 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10575
10576 * progmodes/cc-mode.el: Added autoload directive for
10577 `c-subword-move-mode' for use in older emacsen.
10578
10579 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10580
10581 * progmodes/cc-mode.el:
10582 (i) Insert a binding for C-c C-backspace into
10583 c-bind-special-erase-keys which works in TTYs.
10584 (ii) Make sure that when file styles are used, any explicitly
10585 given style variables take priority over those in the style.
10586 Do this by calling `hack-local-variables' a second time.
10587
10588 * progmodes/cc-vars.el: Add language specific customization
10589 widgets for AWK to c-doc-comment-style, c-require-final-newline
10590 and c-default-style. Add a defcustom for awk-mode-hook.
10591 Give c-syntactic-element and c-syntactic-context doc-strings by
10592 directly setting their `variable-documentation' propery.
10593 This allows Emacs 22.1 to read these with C-h v.
10594
10595 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
10596
10597 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10598
10599 * progmodes/cc-fonts.el, cc-vars.el
10600 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
10601 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
10602 Masatake YAMATO.
10603
10604 (c-doc-comment-style): Made GtkDoc default in C mode.
10605
10606 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
10607 and C-c C-<delete>.
10608
10609 (c-bind-special-erase-keys): New function for use on
10610 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
10611
10612 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
10613 <delete> key behavior in XEmacs according to `delete-forward-p'.
10614 C.f. `c-electric-delete'.
10615
10616 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10617
10618 * progmodes/cc-mode.el: Give c-hungry-backspace and
10619 c-hungry-delete-forward permanent key bindings.
10620
10621 * progmodes/cc-cmds.el (c-electric-semi&comma):
10622 Bind c-syntactic-context for calls to "criteria functions", for
10623 consistency with other calls to user functions.
10624
10625 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
10626 `current-prefix-arg', since this might be the prefix arg to a
10627 command which calls c-indent-command as a function. Change the
10628 interactive spec from "p" to "P".
10629
10630 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
10631 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
10632 was difficult to understand.
10633
10634 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10635
10636 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
10637 first char of an identifier.
10638
10639 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
10640 +" syntax in C++.
10641
10642 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10643
10644 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
10645 auto-fill doesn't split a c-comment's last word from a hanging
10646 "*/" when a space is typed between them after fill-column.
10647
10648 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
10649
10650 * progmodes/cc-styles.el (c-set-style)
10651 (c-setup-paragraph-variables): Abort the command if we're not in a
10652 CC Mode buffer.
10653
10654 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
10655 with blank comment-prefix, and a blank line as the comment's
10656 second line.
10657
10658 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10659
10660 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
10661 Incorporate the patterns added in the Emacs development branch
10662 for the new Emacs 22 face `font-lock-negation-char-face'.
10663
10664 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
10665 of "red" since it stands out better in xterms and DOS terminals.
10666
10667 * progmodes/cc-engine.el (c-literal-faces):
10668 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
10669
10670 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10671
10672 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
10673 forcibly enable c-electric-flag.
10674
10675 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
10676 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
10677 after the comment-prefix of a C-style comment will close that comment.
10678
10679 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10680
10681 * progmodes/cc-fonts.el (c-basic-matchers-before)
10682 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
10683 in Pike.
10684
10685 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
10686 digraphs.
10687
10688 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
10689 (c-cpp-message-directives, c-cpp-include-directives)
10690 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
10691 (c-cpp-expr-directives): Introduce new language constants to
10692 control cpp syntax in a cleaner way.
10693
10694 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
10695
10696 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
10697
10698 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
10699 (c-multiline-string-start-char): New language constants and
10700 variables to specify how newlines in string literals work.
10701
10702 (c-font-lock-invalid-string): Use them.
10703
10704 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
10705 unbalanced close brace is entered. Optimization by avoiding going
10706 back over arbitrarily large blocks. Removed hints that this
10707 function only would be relevant/useful in AWK.
10708
10709 (c-electric-brace): Indent syntactically after the cleanups since
10710 lineup functions might do it differently then.
10711
10712 * progmodes/cc-engine.el, cc-langs.el
10713 (c-opt-op-identifier-prefix): New language constant and variable.
10714
10715 (c-just-after-func-arglist-p, c-after-special-operator-id)
10716 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
10717
10718 * progmodes/cc-align.el, cc-engine.el
10719 (c-after-special-operator-id): New helper to handle C++ operator
10720 identifiers.
10721
10722 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
10723 (c-guess-basic-syntax): Handle C++ operator identifiers in
10724 declarations.
10725
10726 * progmodes/cc-langs.el (c-assignment-operators): Add the
10727 trigraph version of ^= too.
10728
10729 * progmodes/cc-langs.el (c-assignment-operators): Add the
10730 trigraph version of |= in C++.
10731
10732 * progmodes/cc-fonts.el (c-font-lock-declarators):
10733 Handle `c-decl-hangon-kwds' after the identifier name.
10734
10735 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
10736 whether an arglist is "nonempty", ignore a comment after the open
10737 paren if it isn't followed by a non-comment token on the same line.
10738
10739 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
10740 Enable heuristics below the point to cope with classes inside special
10741 brace lists in Pike.
10742
10743 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10744
10745 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
10746
10747 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10748
10749 * progmodes/cc-guess.el (cc-guess-install): New function to
10750 install an already guessed style in another buffer.
10751
10752 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
10753 sets `inhibit-read-only' - `c-save-buffer-state' should be used
10754 anyway if the change always is undone.
10755
10756 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10757
10758 Implement togglable electricity:
10759
10760 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
10761 saying when it should be used.
10762
10763 * progmodes/cc-engine.el: Add the new buffer-local variable,
10764 c-electric-flag.
10765
10766 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
10767 c-toggle-auto-newline.
10768
10769 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
10770 c-toggle-auto-newline. Remove the binding for
10771 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
10772 c-toggle-electric-state.
10773
10774 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
10775
10776 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
10777 c-\(forward\|backward\)-subword.
10778 (c-update-modeline): Add the new modeline flag `l' for
10779 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
10780 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
10781 Make the old name an alias of the new name.
10782 (c-toggle-electric-state): New function.
10783 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
10784 Adapt these functions to do electric things only when
10785 c-electric-flag is non-nil.
10786 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
10787 new functions from c-electric-brace.
10788 (c-point-syntax): Add a check for "virtual semicolons" in AWK
10789 mode, so that the tentative extra newline doesn't change the
10790 syntax of the following brace.
10791 (c-electric-brace): Restructure by extracting the above functions.
10792 Tidy up the coding somewhat.
10793 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
10794 restructure a bit.
10795
10796 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10797
10798 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
10799 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
10800
10801 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
10802 (c-submode-indicators): Change name from `c-auto-hungry-string'
10803 since it's now used to track another submode.
10804
10805 (c-update-modeline): Convert to function and extended to check
10806 `c-subword-move-mode'.
10807
10808 (c-forward-into-nomenclature, c-backward-into-nomenclature):
10809 Convert to compat aliases for `c-forward-subword' and
10810 `c-backward-subword'.
10811
10812 * progmodes/cc-subword.el: New functions and minor mode to handle
10813 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
10814
10815 (c-forward-subword, c-backward-subword, c-mark-subword)
10816 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
10817 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
10818 Functions corresponding to the standard word handling functions.
10819
10820 (c-subword-move-mode): Minor mode that replaces all the standard
10821 word handling functions with their subword equivalences.
10822
10823 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10824
10825 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
10826 entry for one-liner-defun.
10827
10828 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
10829 name in its def-edebug-spec.
10830
10831 * progmodes/cc-cmds.el (c-electric-brace): Make the
10832 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
10833 compacts space before a comment, if this will make things fit on
10834 one line.
10835
10836 Introduce an "awk" style, mainly for auto-newline and clean-ups.
10837
10838 * progmodes/cc-align.el: New function c-snug-1line-defun-close
10839
10840 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
10841 clean-up one-liner-defun.
10842
10843 * progmodes/cc-styles.el: Add the new "awk" style.
10844
10845 * progmodes/cc-vars.el: Add description of one-liner-defun to
10846 c-cleanup-list's doc-string. New user options,
10847 c-max-one-liner-length. In c-default-style, set the default style
10848 for AWK to "awk".
10849
10850 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10851
10852 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
10853 macros inside labels.
10854
10855 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
10856 `c-at-statement-start-p' and `c-at-expression-start-p'.
10857
10858 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
10859 error if the mark isn't set.
10860
10861 * progmodes/cc-engine.el (c-guess-continued-construct)
10862 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
10863 accurately detect functions inside functions.
10864
10865 * progmodes/cc-engine.el (c-at-expression-start-p): New function
10866 like `c-at-statement-start-p' that additionally recognizes commas
10867 and expression parentheses as delimiters.
10868
10869 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
10870 to avoid heuristics that doesn't work for unclosed blocks.
10871 (c-at-statement-start-p): New function.
10872
10873 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
10874 Objective-C directives, e.g. directives spanning lines should work
10875 reasonably well now.
10876
10877 (c-put-c-type-property, c-clear-c-type-property): New helpers.
10878
10879 (c-forward-objc-directive): New function to move over any ObjC
10880 directive.
10881
10882 (c-just-after-func-arglist-p, c-guess-basic-syntax)
10883 (c-basic-matchers-before): Use it.
10884
10885 (c-font-lock-objc-iip-decl): Remove.
10886
10887 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
10888 in the template arglist recognition.
10889
10890 * progmodes/cc-styles.el (c-style-alist): Fix several
10891 inconsistencies in the Whitesmith style.
10892
10893 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
10894 New lineup function to get lines after Whitesmith style blocks
10895 correctly indented.
10896
10897 (c-lineup-whitesmith-in-block): Back out the compensation for
10898 opening parens since it's done using `add' lists in the style
10899 definition instead. Don't use the anchor position since it varies
10900 too much between the syntactic symbols. :P
10901
10902 * progmodes/cc-vars.el (c-valid-offset): Update.
10903
10904 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
10905 lists where the offsets are combined according to several
10906 different methods: `first', `min', `max', and `add'.
10907 Report offset evaluation errors with `c-benign-error' so that some kind
10908 of reindentation still is done.
10909
10910 * progmodes/cc-engine.el (c-guess-basic-syntax):
10911 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
10912 `arglist-close'.
10913
10914 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
10915 situations for `arglist-cont-nonempty' and `arglist-close'.
10916
10917 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
10918
10919 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
10920 cc-bytecomp-boundp' in a number of places.
10921
10922 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
10923 macro related issue.
10924
10925 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10926
10927 * progmodes/cc-awk.el: Change the terminology of regexps: A char
10928 list is now [asdf], a char class [:alpha:].
10929 Include code for char classes.
10930 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
10931 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
10932
10933 Remove (nearly all of) the cruft associated with AWK Mode's former
10934 concept of "virtual semicolons":
10935
10936 Adapt c-beginning-of-statement, c-end-of-statement (together with
10937 subfunctions) to use the new notion of "virtual semicolon" in
10938 place of the old awkward special handling for AWK. There remains
10939 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
10940 * progmodes/cc-cmds.el:
10941 (c-ascertain-adjacent-literal): In the backwards direction, now
10942 recognises AWK regexp delimiters as string delimiters.
10943 (c-after-statement-terminator-p): Adapt for virtual semicolons;
10944 check more rigorously for "end of macro".
10945 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
10946 virtual semicolons;
10947 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
10948 out the code for forward movement into ...
10949 (c-end-of-statement): Now contains the code for forward movement,
10950 adapted for virtual semicolons.
10951
10952 * progmodes/cc-engine.el:
10953 (c-ws*-string-limit-regexp): New regexp.
10954 (c-forward-single-comment, c-backward-single-comment): Comment out
10955 the (now redundant) "special" AWK stuff.
10956
10957 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
10958 c-string-par-start, c-string-par-separate to be more like Text
10959 Mode than Fundamental Mode.
10960
10961 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
10962
10963 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
10964 to the fontified region so that fontification doesn't occur
10965 outside it (could happen e.g. when fontifying a line with an
10966 unfinished declaration).
10967
10968 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
10969
10970 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
10971 start of the file. ^L now separate sections of the file.
10972 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
10973 (c-awk-one-line-possibly-open-string-re)
10974 (c-awk-regexp-one-line-possibly-open-char-class-re)
10975 (c-awk-one-line-possibly-open-regexp-re)
10976 (c-awk-one-line-non-syn-ws*-re): New defonsts.
10977 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
10978
10979 Amend the concept of "virtual semicolons" (in the indentation
10980 engine) for languages like AWK, such that they are now
10981 conceptually attached to end of the last token of a statement, not
10982 the end of the line. (In AWK Mode, however, the pertinent text
10983 property is still physically set on the EOL.) Remove the specific
10984 tests for awk-mode, thus facilitating the introduction of other
10985 language modes where EOLs can end statements.
10986 (Note: The funtionality in cc-cmds.el, specifically
10987 c-beginning/end-of-statement has yet to be amended.)
10988
10989 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
10990 New macros.
10991
10992 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
10993 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
10994 c-vsemi-status-unknown-p-fn (in a new page).
10995
10996 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
10997 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
10998 numerous awkward forms like
10999 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
11000 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
11001 variable before-ws-ip, the place just after char-before-ip appears.
11002
11003 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
11004 a comment.
11005
11006 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11007
11008 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
11009 `c-tentative-buffer-changes'.
11010
11011 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
11012 convert to macro to choose between Emacs and XEmacs at compile time.
11013
11014 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
11015
11016 (c-tentative-buffer-changes): New macro to handle temporary buffer
11017 changes in a convenient way.
11018
11019 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
11020 for `c-tentative-buffer-changes'.
11021
11022 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
11023 the checks for paren sexps between the point and the keyword, to
11024 avoid some false alarms.
11025
11026 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
11027 Fixed a situation where an error could be thrown for unbalanced
11028 parens. Changed to make use of c-keyword-member' to avoid some
11029 repeated regexp matches.
11030
11031 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
11032 These language variable are no longer necessary.
11033
11034 (c-block-stmt-kwds): New language constant used by
11035 c-looking-at-inexpr-block'.
11036
11037 (c-guess-basic-syntax): Remove an optional check that looked at
11038 the existence of the now removed language variables.
11039
11040 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
11041 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
11042 object instantiation expressions as declarations in some contexts.
11043 This bug only affected languages where the declarator can't be
11044 enclosed in parentheses.
11045
11046 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
11047 insert newlines before and after substatement braces.
11048
11049 * progmodes/cc-engine.el: Improved the heuristics for recognizing
11050 function declaration headers and the handling of C++ style member
11051 init lists.
11052
11053 (c-just-after-func-arglist-p): Rewritten to use
11054 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
11055
11056 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
11057
11058 (c-guess-basic-syntax): Adapt case 5B for the new
11059 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
11060 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
11061 covers all cases now).
11062
11063 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
11064
11065 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11066
11067 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
11068 c-string-par-start/separate c-sentence-end-with-esc-eol,
11069 initialised in c-setup-paragraph-variables, used in string
11070 scanning subroutines of c-beginning-of-statement.
11071
11072 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
11073 which precedes the newly inserted `{'.
11074
11075 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11076
11077 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
11078 function for declaration level blocks. It should now cope with
11079 templates better and also be a lot more comprehensible.
11080
11081 (c-looking-at-decl-block): The new function.
11082
11083 (c-search-uplist-for-classkey): The old one. It's now a wrapper
11084 for compatibility.
11085
11086 (c-add-class-syntax, c-guess-continued-construct)
11087 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
11088
11089 (c-decl-block-key): Change to tell apart ambiguous and
11090 unambiguous keywords. Pike specials are now handled directly in
11091 the code instead.
11092
11093 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
11094 New language constants and variables to make the backward skip in
11095 `c-looking-at-decl-block' as tight as possible.
11096
11097 (c-nonsymbol-token-char-list): New language constant.
11098
11099 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
11100 find balanced template arglists backwards.
11101
11102 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
11103 making char classes for `c-syntactic-skip-backward'.
11104
11105 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
11106 16D - can't be a class-close at that point.
11107
11108 * progmodes/cc-engine.el (c-guess-basic-syntax)
11109 (c-add-class-syntax): Don't narrow out the enclosing declaration
11110 level. This makes everything a lot easier, and it was actually
11111 only four small places that needed it to work. Some places that
11112 previously did `widen' are removed now, which has the effect that
11113 `c-guess-basic-syntax' never will look at things outside the
11114 current narrowment now. The anchor position for `topmost-intro'
11115 is affected by this, but it was so bogus it was basically useless
11116 before, and now it's equally bogus but in a slightly different way.
11117
11118 (c-narrow-out-enclosing-class): Gone.
11119
11120 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
11121 the narrowed region.
11122
11123 (c-least-enclosing-brace): Remove silly optional argument.
11124
11125 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
11126 the point could be left directly after an open paren when finding
11127 the beginning of the first decl in the block.
11128
11129 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
11130 Specify which submatch to use.
11131
11132 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
11133
11134 (c-decl-start-re): No longer any need for special treatment of
11135 ObjC due to the above.
11136
11137 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
11138 presumably follows C in that regard.
11139
11140 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
11141 New language constants to specify operator tokens inside
11142 identifiers in a more high level way.
11143
11144 (c-opt-identifier-prefix-key): New internal language constant.
11145
11146 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
11147 (c-identifier-start, c-identifier-key): Now completely calculated
11148 from other constants.
11149
11150 (c-identifier-last-sym-match): Decommission since it's no longer used.
11151
11152 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
11153
11154 * progmodes/cc-engine.el (c-forward-name): Remove the
11155 optimization when c-identifier-key is equal to c-symbol-key since
11156 it doesn't work in byte compiled files. Don't record empty
11157 regions as identifiers.
11158
11159 * progmodes/cc-langs.el (c-filter-ops): New helper function to
11160 simplify access to `c-operators' and its likes.
11161
11162 (c-operator-list, c-all-op-syntax-tokens)
11163 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
11164 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
11165 (c-primary-expr-regexp, c-cast-parens): Use it.
11166
11167 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
11168 an explicit language in functions.
11169
11170 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
11171 variant of adornment.
11172
11173 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
11174 variable.
11175
11176 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
11177 the Pike value.
11178
11179 * progmodes/cc-engine.el (c-on-identifier)
11180 (c-simple-skip-symbol-backward): Small fix for handling "-"
11181 correctly in `skip-chars-backward'. Affected the operator lfun
11182 syntax in Pike.
11183
11184 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
11185 diagnostic message about precompiled language vars not being used.
11186
11187 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
11188 "__attribute__" is followed by a parenthesis.
11189
11190 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
11191 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
11192 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
11193
11194 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
11195 Internal cleanups to properly detect the declared identifiers in
11196 various declarations.
11197
11198 (c-decl-start-kwds): New language constant to recognize
11199 declarations that can start anywhere. Used for class declarations
11200 in Pike.
11201
11202 (c-specifier-key, c-not-decl-init-keywords)
11203 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
11204 (c-find-decl-spots): Implement `c-decl-start-kwds'.
11205
11206 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
11207 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
11208 handling of the compiler specific extension keywords into a new
11209 language constant `c-decl-hangon-kwds' that defines keyword
11210 clauses to be ignored in declarations.
11211
11212 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
11213 past unrecognized tokens when handling `c-colon-type-list-kwds'.
11214 Necessary to stop at the declared identifier in e.g. IDL valuetype
11215 declarations.
11216
11217 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
11218 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
11219 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
11220 (c-forward-decl-or-cast-1): Recognize the declared identifier in
11221 class and enum declarations as such and not as part of the type.
11222
11223 (c-forward-decl-or-cast-1, c-forward-label): Relax the
11224 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
11225
11226 (c-forward-decl-or-cast-1): Don't disregard sure signs of
11227 declarations when there's some syntax error later on.
11228
11229 (c-complex-decl-matchers): Did away with a reference to
11230 `c-specifier-key'.
11231
11232 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
11233 value - this variable is always dynamically bound.
11234
11235 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
11236 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
11237 * cc-cmds.el, cc-defs.el: Change the policy for marking up
11238 functions that might do hidden buffer changes: All such internal
11239 functions are now marked instead of those that don't.
11240
11241 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
11242 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
11243 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
11244 (c-literal-type): Allow these functions to make hidden buffer changes,
11245 so that they are free to use text property caching later on.
11246
11247 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
11248 (c-electric-brace, c-electric-slash, c-electric-star)
11249 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
11250 (c-electric-paren, c-electric-continued-statement, c-indent-command)
11251 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
11252 (c-context-line-break): Add `c-save-buffer-state' calls to comply
11253 with the changed semantics of the functions above.
11254
11255 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
11256 when macros occur in obscure places. Optimized the sexp movement
11257 a bit.
11258
11259 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11260
11261 Enhancements for c-beginning-of-statement to work in AWK Mode:
11262
11263 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
11264 (completed statement) with `}' (statement completed by closing
11265 brace or semicolon) and `$' (statement completed by EOL).
11266
11267 (c-awk-virtual-semicolon-ends-prev-line-p)
11268 (c-awk-virtual-semicolon-ends-line-p)
11269 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
11270 (c-awk-at-statement-end-p): New functions.
11271
11272 * progmodes/cc-cmds.el: Simplify the structure of functions
11273 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
11274 two functions and c-beginning-of-statement to handle AWK Mode.
11275
11276 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
11277 c-backward-single-comment for AWK mode. Attempt to clarify their
11278 doc-strings.
11279
11280 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
11281
11282 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11283
11284 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
11285 label handling. Labels are now recognized in a uniform and more
11286 robust way, regardless of context. Text properties are put on all
11287 labels to recognize the following declarations better.
11288 Multiword labels are handled both in indentation and fontification for
11289 the benefit of language extensions like Qt. For consistency, keywords
11290 in labels are now fontified with the label face instead.
11291 That also applies to "case" and "default".
11292
11293 (c-beginning-of-statement-1): Fix some bugs in the label
11294 handling. Disregard `c-nonlabel-token-key' in labels that begin
11295 with `c-label-kwds'.
11296
11297 (c-find-decl-spots): Support that the callback adds more
11298 `c-decl-end' spots to find.
11299
11300 (c-forward-decl-or-cast-1): Don't treat a list of plain
11301 identifiers followed by a colon as a declaration.
11302
11303 (c-forward-label): New function to recognize labels.
11304
11305 (c-guess-basic-syntax): Replace uses of `c-label-key' with
11306 `c-forward-label'. Moved the label recognition cases (14 and 15)
11307 earlier since they aren't so context sensitive now. Handle labels
11308 on the top level gracefully. Moved access label recognition to
11309 the generic label case (CASE 15) - removed CASE 5E.
11310
11311 (c-font-lock-declarations): Add recognition of labels in the
11312 same round since we need to handle labels in parallell with other
11313 declarations to recognize both accurately. It should also improve
11314 speed.
11315
11316 (c-simple-decl-matchers, c-basic-matchers-after):
11317 Move `c-font-lock-labels' so that it only is used on decoration level 2
11318 since `c-font-lock-declarations' handles it otherwise.
11319
11320 (c-complex-decl-matchers): Remove the simplistic recognition of
11321 access labels.
11322
11323 (c-decl-prefix-re): Remove the kludges that was necessary to cope
11324 with labels earlier.
11325
11326 (c-decl-start-re): New language variable to make
11327 `c-font-lock-declarations' stop for the special protection labels
11328 in Objective-C that start with `@'.
11329
11330 (c-label-key): Remove since it's no longer used.
11331
11332 (c-recognize-colon-labels, c-label-prefix-re): New language
11333 constants to support recognition of generic colon-terminated labels.
11334
11335 (c-type-decl-end-used): `c-decl-end' is now used whenever there
11336 are colon terminated labels.
11337
11338 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
11339 first argument starts with a special brace list.
11340
11341 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
11342 (c-font-lock-declarations): Break out the declaration and cast
11343 recognition from `c-font-lock-declarations' to a new function, so
11344 that it can be used in the indentation engine.
11345
11346 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
11347 up to the start of the literal. Fixed bug with the point on the
11348 wrong side of the search limit that could happen when the start
11349 position is inside a literal.
11350
11351 * progmodes/cc-engine.el (c-parse-state)
11352 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
11353 so that it's kept a little bit back to increase the hit rate.
11354
11355 (c-parse-state): Change the macro handling and fixed some
11356 glitches. Macro context is checked more often than necessary now,
11357 but otoh less garbage conses are generated.
11358
11359 * progmodes/cc-engine.el (c-parse-state)
11360 (c-invalidate-state-cache): Cache the last position where
11361 `c-state-cache' applies. This can speed up refontification quite
11362 a bit in blocks where there are many non-brace parens before the point.
11363
11364 (c-state-cache-end): New variable for this.
11365
11366 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
11367 cache variable.
11368
11369 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
11370 get close initial continue positions when the start position is
11371 inside a literal or macro. Do not call the callback for spots
11372 before the start position (which can happen e.g. for `c-decl-end'
11373 spots inside comments). Optimize better in special cases when the
11374 region is a single line inside a literal or macro (typically when
11375 the current line is refontified).
11376
11377 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
11378 to `c-add-stmt-syntax' - there's no need to explicitly whack off
11379 entries from the paren state.
11380
11381 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
11382 special case for "else if" clauses.
11383
11384 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
11385 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
11386
11387 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
11388 New language variable to recognize the gcc extension with statement
11389 blocks inside expressions.
11390
11391 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
11392 it somewhat more comprehensible. The argument AT-BLOCK-START is
11393 no longer used and hence removed.
11394
11395 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
11396 to `c-add-stmt-syntax'.
11397
11398 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
11399 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
11400 This fixes bogus label recognition.
11401
11402 * progmodes/cc-engine.el (c-add-type, c-check-type)
11403 (c-forward-name, c-forward-type): Improve storage of template
11404 types in `c-found-types' so that they can be recognized better.
11405
11406 (c-syntactic-content): Add option to skip past nested parens.
11407
11408 * progmodes/cc-engine.el (c-forward-name):
11409 Set `c-last-identifier-range' all the time. It's less work that way.
11410 Handle that there might not be an identifier to store in
11411 `c-last-identifier-range'.
11412
11413 (c-forward-type): Handle that `c-last-identifier-range' might be
11414 nil from `c-forward-name'.
11415
11416 * progmodes/cc-defs.el (c-safe-scan-lists)
11417 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
11418
11419 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
11420 to work even if the form fails.
11421
11422 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
11423 down in a large file in one go.
11424
11425 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
11426
11427 * progmodes/cc-align.el (c-lineup-assignments): New lineup
11428 function which is like `c-lineup-math' but returns nil instead of
11429 `c-basic-offset' when it doesn't match.
11430
11431 (c-lineup-math): Change to use `c-lineup-assignments'.
11432
11433 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11434
11435 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
11436 c-beginning-of-statement. New subfunctions
11437 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
11438
11439 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11440
11441 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
11442 hardcoded char classes whereever possible. Changed a couple of
11443 places to use skip by syntax instead of skip by char class.
11444
11445 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
11446 Fix a bug in the regexp that caused extreme backtracking.
11447
11448 * progmodes/cc-langs.el (c-block-comment-starter)
11449 (c-block-comment-ender): New language constants to specify in a
11450 single place how block comments look.
11451
11452 (c-comment-start-regexp, c-block-comment-start-regexp)
11453 (comment-start, comment-end, comment-start-skip)
11454 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
11455 (c-syntactic-ws, c-nonempty-syntactic-ws)
11456 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
11457 `c-line-comment-starter', `c-block-comment-starter' and
11458 `c-block-comment-ender'.
11459
11460 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
11461 New language constants to break up things a bit.
11462
11463 (c-simple-ws): New language constant for simple whitespace.
11464
11465 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
11466
11467 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
11468 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
11469 newlines. Allow and ignore nil elements in the list.
11470
11471 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11472
11473 * progmodes/cc-cmds.el: Comment out a (n almost certainly
11474 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
11475
11476 * progmodes/cc-cmds.el: Tidy up the comments in
11477 c-beginning-of-statement and subfunctions.
11478
11479 * progmodes/cc-awk.el: Replace calls to put-text-property to the
11480 more flexible c-put-char-property and c-clear-char-properties.
11481 Add the author's email address.
11482
11483 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
11484
11485 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
11486 closing "*/" of a block comment.
11487
11488 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
11489 subfunctions) so that it works at BOB and EOB.
11490
11491 * progmodes/cc-cmds.el, cc-vars.el: More updating of
11492 c-beginning-of-statement, including new variable
11493 c-block-comment-start-regexp.
11494
11495 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11496
11497 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
11498 symbols from `*-font-lock-extra-types' so that there's no need to
11499 use `regexp-opt' on those lists.
11500
11501 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
11502 `c-type-modifier-kwds' is empty.
11503
11504 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
11505 there are several strings on the same line.
11506
11507 * progmodes/cc-engine.el (c-literal-limits): Remove the
11508 compatibility function for older emacsen. `c-literal-limits-fast'
11509 has now taken the place of this function.
11510
11511 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
11512 with older emacsen: We now require `pps-extended-state'.
11513
11514 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11515
11516 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
11517 which obviates the need to hack sentence-end. This now handles
11518 escaped newlines in strings correctly. Correct minor bugs in
11519 c-move-over-sentence and in c-beginning-of-statement.
11520
11521 * progmodes/cc-cmds.el (c-beginning-of-statement (and
11522 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
11523 that movement over macros and code are rigorously separated from
11524 eachother. Correct a few incidental bugs.
11525
11526 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
11527 Improve its doc-string. Improve the handling of certain specific cases.
11528
11529 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11530
11531 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
11532 (c-guess-basic-syntax): Change the way class-level labels are
11533 recognized; they can now contain essentially any symbols.
11534
11535 (c-opt-extra-label-key): New language variable to cope with the
11536 special protection label syntax in Objective-C.
11537
11538 (c-opt-access-key): Remove; this is now handled better by
11539 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
11540
11541 (c-complex-decl-matchers): Update to handle that
11542 `c-opt-access-key' no longer exists.
11543
11544 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
11545 improved label recognition in `c-beginning-of-statement-1'.
11546
11547 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
11548 Recognize bitfields better.
11549
11550 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
11551 Remove some cruft and fixed a bug that could cause it to go to a
11552 position further down.
11553
11554 * progmodes/cc-langs.el, cc-engine.el
11555 (c-beginning-of-statement-1): Improve detection of labels in
11556 declaration contexts.
11557
11558 (c-beginning-of-decl-1): Use it.
11559
11560 (c-nonlabel-token-key): New language constant and variable needed
11561 by `c-beginning-of-statement-1'.
11562
11563 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
11564 manifested itself due to the correction in `c-forward-sexp'.
11565
11566 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
11567 Make these behave as documented when used at the buffer limits.
11568
11569 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
11570 (c-type-decl-end-used): Made this a language variable.
11571
11572 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
11573 correctly when `combine-after-change-calls' is used together with
11574 temporary narrowings.
11575
11576 * progmodes/cc-engine.el (c-beginning-of-statement-1):
11577 Report labels correctly when the start point is immediately after the
11578 colon.
11579
11580 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
11581 Remove since it isn't used anymore.
11582
11583 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
11584 bracket arglists such as template parens in C++.
11585
11586 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
11587 in the last check-in. Some optimization.
11588
11589 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
11590 where it could stop at the same level in a preceding sexp when
11591 PAREN-LEVEL is set.
11592
11593 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
11594 text property lookup only when it's needed.
11595
11596 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
11597 Change the policy for paren marked angle brackets to be more
11598 persistent; once marked they remain marked even when they're found
11599 to be unbalanced in the searched region. This should keep the
11600 paren syntax around even when individual lines are refontified in
11601 multiline template arglists.
11602
11603 (c-parse-and-markup-<>-arglists): New dynamically bound variable
11604 to control markup so that incorrect angle bracket arglists aren't
11605 marked in contexts where the correct value for
11606 `c-disallow-comma-in-<>-arglists' isn't known.
11607
11608 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
11609 argument has become `c-parse-and-markup-<>-arglists'.
11610
11611 (c-remove-<>-arglist-properties): Remove - no longer used.
11612
11613 (c-after-change-check-<>-operators): New function used on
11614 `after-change-functions' to avoid that "<" and ">" characters that
11615 are part of longer operators have paren syntax.
11616
11617 (c-<>-multichar-token-regexp): New language variable used by
11618 `c-after-change-check-<>-operators'.
11619
11620 (c-after-change): Call `c-after-change-check-<>-operators'.
11621
11622 (c-font-lock-<>-arglists): Use the context properties set by
11623 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
11624 correctly to avoid doing invalid markup.
11625
11626 (c-font-lock-declarations): Remove code that undoes the invalid
11627 markup done by `c-font-lock-<>-arglists'.
11628
11629 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
11630 after `c-font-lock-declarations'.
11631
11632 * progmodes/cc-engine.el (c-syntactic-skip-backward):
11633 Add paren-level feature.
11634
11635 (c-guess-basic-syntax): Improve the anchor position for
11636 `template-args-cont' in nested template arglists. There's still
11637 much to be desired in this area, though.
11638
11639 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
11640
11641 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
11642 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
11643
11644 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
11645
11646 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
11647 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
11648
11649 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
11650 it doesn't work no longer are supported.
11651
11652 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
11653 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
11654 requires support for the syntax-table' text property, which rules
11655 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
11656 cruft associated with those versions.
11657
11658 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
11659 for the `syntax-table' text property, which rules out Emacs 19 and
11660 XEmacs < 21.4. Removed various compatibility cruft associated
11661 with those versions.
11662
11663 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
11664 support for the `syntax-table' text property.
11665
11666 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
11667 variable and use an extra quoted face name instead. All the
11668 emacsen flavors handle that correctly.
11669
11670 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
11671 (c-font-lock-declarators, c-font-lock-declarations)
11672 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
11673 property to mark the items in in declarator lists to handle
11674 refontification inside multiline declarations better.
11675
11676 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
11677 construct like "a * b = c;" as a declaration.
11678
11679 2005-12-08 Kim F. Storm <storm@cua.dk>
11680
11681 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
11682 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
11683 select either meta, hyper, or super modifier for rectangle commands.
11684 (cua--rectangle-modifier-key): New defvar.
11685 (cua--M/H-key): Use it. Remove special case for `space'.
11686 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
11687 on X, to meta otherwise. Always bind C-return to toggle
11688 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
11689
11690 * emulation/cua-rect.el (cua-help-for-rectangle):
11691 Use cua--rectangle-modifier-key. Handle super modifier too.
11692 (cua--init-rectangles): Always bind C-return to toggle rectangle.
11693 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
11694
11695 * ido.el: Move Acknowledgements and History after Commentary.
11696 Minor changes to Commentary.
11697
11698 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
11699 keymap if cua--prefix-override-timer is `shift'.
11700 (cua--shift-control-prefix): New function; emulate "type prefix
11701 key twice" functionality to handle shifted prefix key override.
11702 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
11703 New commands.
11704 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
11705
11706 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
11707
11708 * textmodes/org.el (org-insert-heading): Try to do items before
11709 headings.
11710 (org-agenda-mode): Quote `org-agenda-mode-hook'.
11711 (org-insert-item): New function.
11712 (org-renumber-ordered-list): Don't skip to higher level lists.
11713
11714 2005-12-08 Juri Linkov <juri@jurta.org>
11715
11716 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
11717
11718 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
11719
11720 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
11721
11722 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
11723 the constructed function name fun-1.
11724
11725 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
11726 because such links don't lead to parent documentation.
11727
11728 2005-12-08 Kenichi Handa <handa@m17n.org>
11729
11730 * descr-text.el (describe-char): Use *Help-2* buffer if the
11731 current buffer is *Help*. Call describe-text-properties while
11732 setting the original buffer.
11733
11734 2005-12-07 Bill Wohler <wohler@newt.com>
11735
11736 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
11737 and causes problems with non-MH users (such as Gnus users).
11738
11739 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
11740
11741 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
11742 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
11743 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
11744 command "info sources". Move calls to GDB command "list".
11745 (gdb-find-file-hook): Just use gdb-source-file-list.
11746 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
11747 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
11748 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
11749 (gdb-data-list-register-values-handler): Use correct trigger name.
11750
11751 2005-12-07 Kim F. Storm <storm@cua.dk>
11752
11753 * ido.el (ido-completion-map): Rename from ido-mode-map.
11754 (ido-common-completion-map, ido-file-completion-map)
11755 (ido-file-dir-completion-map, ido-buffer-completion-map):
11756 Rename from ido-mode-....-map.
11757 (ido-init-completion-maps): Rename from ido-init-mode-maps.
11758 (ido-setup-completion-map): Rename from ido-define-mode-map.
11759 (ido-read-internal): Bind minibuffer-local-filename-completion-map
11760 to ido-completion-map.
11761
11762 2005-12-07 Kenichi Handa <handa@m17n.org>
11763
11764 * international/mule-cmds.el
11765 (set-display-table-and-terminal-coding-system): If the coding
11766 system specified in `unibyte-display' property is different from
11767 the arg coding-system, don't setup standard-display-table.
11768
11769 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
11770
11771 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
11772 that comments end at \n, regardless of selective-display.
11773
11774 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
11775
11776 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
11777 (gdb-version): New variables.
11778 (gdb-source-file-list, gdb-register-names)
11779 (gdb-changed-registers): New variables for use with GDB 6.4+.
11780 (gdb-ann3): Replace with...
11781 (gdb-init-1, gdb-init-2): ...two new functions.
11782 (gdba, gdb-prompt): Call gdb-init-1.
11783 (gdb-get-version): New function. Call gdb-init-2 from here.
11784 (gud-watch): Make it work with mouse events too.
11785 (gdb-post-prompt): Don't add to queue until GDB version is known.
11786 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
11787 (gdb-locals-mode): Use gdb-version.
11788 (gdb-memory-format-map, gdb-memory-unit-map)
11789 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
11790 (gdb-locals-font-lock-keywords-1)
11791 (gdb-locals-font-lock-keywords-2): New variables.
11792 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
11793 (gdb-set-gud-minor-mode-existing-buffers-1)
11794 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
11795 (gdb-var-update-1, gdb-var-update-handler-1)
11796 (gdb-data-list-register-values-handler)
11797 (gdb-data-list-register-values-custom)
11798 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
11799 (gdb-stack-list-locals-handler, gdb-get-register-names):
11800 New functions for use with GDB 6.4+.
11801 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
11802 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
11803 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
11804 (gdb-stack-list-locals-regexp)
11805 (gdb-data-list-register-names-regexp): New regexps for use with
11806 GDB 6.4+.
11807
11808 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
11809
11810 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
11811
11812 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
11813
11814 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
11815 prompts work for AUTH PLAIN. Also reported by Steve Allan
11816 <seallan@verizon.net>.
11817
11818 2005-12-06 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
11819
11820 * frame.el (set-frame-parameter): Add doc string.
11821
11822 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
11823
11824 * textmodes/org.el (org-occur-highlights): New variable.
11825 (org-highlight-new-match, org-remove-occur-highlights): New functions.
11826 (org-highlight-sparse-tree-matches): New option.
11827 (org-do-occur): New function.
11828 (org-get-heading): Make it work also at beginning of line.
11829 (org-category-table): New variable.
11830 (org-get-category-table, org-get-category)
11831 (org-camel-to-words, org-link-search): New functions.
11832 (org-select-this-todo-keyword): New variable.
11833 (org-todo-list): New command.
11834 (org-shiftright, org-shiftleft): New commands.
11835 (org-agenda-todo): Add prefix argument.
11836 (org-show-hierarchy-above): New option.
11837 (org-show-todo-tree): Numerical prefix creates tree for specific
11838 TODO keyword.
11839 (org-outline-level): New function, to assign a level to plain
11840 lists items.
11841 (org-cycle-include-plain-lists): New option.
11842 (org-mode): Use `org-outline-level' as value of `outline-level'.
11843 (org-cycle): Temporarily switch `outline-regexp' if
11844 `org-cycle-include-plain-lists' is non-nil.
11845 (org-start-icalendar-file): Fix format bug.
11846 (org-agenda-get-day-entries): Create category table.
11847 (org-agenda-get-todos, org-agenda-get-timestamps)
11848 (org-agenda-get-deadlines, org-agenda-get-scheduled)
11849 (org-agenda-get-blocks): Use `org-get-category'.
11850 (org-context-in-file-links): Rename from
11851 `org-line-numbers-in-file-links'.
11852
11853 2005-12-06 Romain Francoise <romain@orebokech.com>
11854
11855 * window.el (balance-windows): Delete extraneous third arg in call
11856 to `enlarge-window'.
11857
11858 2005-12-06 Kenichi Handa <handa@m17n.org>
11859
11860 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
11861
11862 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
11863
11864 * progmodes/gdb-ui.el (gdb-var-create-handler)
11865 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
11866 (gdb-var-list-children-handler, gdb-var-update-handler):
11867 Current buffer is already gdb-partial-output-buffer, don't
11868 make it current again.
11869
11870 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
11871
11872 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
11873 (list-buffers-noselect): Use it.
11874
11875 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
11876
11877 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
11878 (mail-yank-ignored-headers): Use regexp-opt.
11879 (mail-mode-map): Move initialization into declaration.
11880 (mail-sent-via): Remove unused shadowed var `to-line'.
11881 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
11882 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
11883 (mail-do-fcc): Use dolist and push.
11884 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
11885 (mail-yank-ignored-headers): Don't autoload.
11886
11887 2005-12-05 Kenichi Handa <handa@m17n.org>
11888
11889 * international/mule-cmds.el (set-language-info-internal): New fun.
11890 (set-language-info): Call set-language-info-internal to update
11891 language-info-alist. If LANG-ENV is the current one, call
11892 set-language-environment to make INFO effective now.
11893 (set-language-info-alist): Likewise.
11894 (locale-language-names): With locale "en", use English
11895 lang. env. but set the default codings to iso-8859-1.
11896
11897 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
11898
11899 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
11900 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
11901 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
11902 for plain strings.
11903 (gdb-frames-mode): Remove redundant call to font-lock-mode.
11904 (gdb-all-registers): Rename from toggle-gdb-all-registers.
11905 Create registers buffer if necessary. Echo new state in minibuffer.
11906 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
11907
11908 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
11909
11910 * info.el (Info-fontify-node): Match external links using
11911 non-directory part of filename.
11912
11913 2005-12-04 Juri Linkov <juri@jurta.org>
11914
11915 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
11916 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
11917 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
11918 because there is no customization option for it.
11919
11920 * font-lock.el (lisp-font-lock-keywords-1):
11921 Add define-global-minor-mode.
11922
11923 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
11924
11925 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
11926 properties on the constructed variable names.
11927
11928 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11929 Put `definition-name' properties on the constructed function names
11930 next-sym and prev-sym.
11931
11932 * emacs-lisp/find-func.el (find-function-regexp):
11933 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
11934 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
11935 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
11936 and easy-menu-define.
11937
11938 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
11939 easy-mmode-define-global-mode and define-global-minor-mode.
11940 (lisp-imenu-generic-expression): Add define-global-minor-mode.
11941
11942 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
11943 instead of easy-mmode-define-global-mode.
11944
11945 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
11946 Use define-minor-mode instead of easy-mmode-define-minor-mode.
11947
11948 * cus-edit.el (customize-group, customize-group-other-window):
11949 Filter out autoloaded options from the group completion list by
11950 using heuristics that autoloaded groups don't have `custom-autoload'
11951 property on their symbols (they have only `custom-loads').
11952
11953 * simple.el (completion-setup-function): Put completions-common-part
11954 face on complete completion string too (i.e. completion string
11955 without completions-first-difference face).
11956
11957 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
11958
11959 2005-12-03 Eli Zaretskii <eliz@gnu.org>
11960
11961 * view.el (view-mode): Doc fix.
11962
11963 * disp-table.el (standard-display-european): Add to the warning
11964 message a reference to the doc string.
11965
11966 * play/yow.el (apropos-zippy): Call print-help-return-message,
11967 similar to other Help and Apropos commands.
11968
11969 * help.el (print-help-return-message): If pop-up-frames is
11970 non-nil, set up help-return-method to delete the help window and,
11971 possibly, its frame as well, and don't display message about
11972 scrolling the help window. Doc fix.
11973 (help-return-method): Doc fix.
11974
11975 2005-12-03 Martin Rudalics <rudalics@gmx.at>
11976
11977 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
11978 whereby names of length one or names starting with a
11979 symbol-constituent character would not be returned.
11980
11981 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
11982
11983 * subr.el (atomic-change-group): Add edebug and indentation spec.
11984
11985 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
11986
11987 * completion.el (save-completions-file-name): Fix typo in last change.
11988
11989 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11990
11991 * info.el: Move back/forward history to the beginning of the tool bar.
11992
11993 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
11994
11995 * allout.el (eval-when-compile): Remove unnecessary load of cl.
11996 Add fset of allout-real-isearch-abort during compile to fix
11997 byte-compilation warnings.
11998 (allout-mode-p): Move definition of this macro above all uses, or
11999 byte compilation in barren emacs (eg, during emacs build) will
12000 lack the definition.
12001 (allout-mode): Move this variable above any uses, or byte
12002 compilation will fail.
12003 (allout-resolve-xref): Remove use of personal file-reference function.
12004 (allout-toggle-current-subtree-encryption): Do the current (ie,
12005 visible containing) topic, rather than nearest around point. Doc fix.
12006 (allout-toggle-subtree-encryption): New function, workhorse that
12007 works on nearest topic containing point.
12008 (allout-encrypt-string): Signal requirement for newer version of pgg.
12009 (allout-resumptions): Doc fix.
12010
12011 2005-12-02 Eli Zaretskii <eliz@gnu.org>
12012
12013 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
12014
12015 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
12016
12017 * textmodes/flyspell.el (flyspell-external-point-words):
12018 Consider a misspelling as found in the string search if: (a) misspelling
12019 and found string lengths match, or (b) misspelling is found as
12020 element in a boundary-chars separated longer string, or (c)
12021 ispell-program-name is really ispell and misspelling is found as
12022 part of a TeX string. After successful match move beginning of
12023 search region to end of match. Warn about not found misspellings
12024 once the process is done.
12025 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
12026
12027 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
12028
12029 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
12030 tool bar (removed inadvertently).
12031
12032 2005-12-02 Juri Linkov <juri@jurta.org>
12033
12034 * log-view.el (log-view-diff): Clarify doc string.
12035
12036 2005-12-01 Bill Wohler <wohler@newt.com>
12037
12038 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
12039 triggers lm-verify errors.
12040
12041 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
12042
12043 * simple.el (transient-mark-mode, line-number-mode)
12044 (column-number-mode, size-indication-mode): Remove `:require nil'.
12045
12046 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
12047
12048 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
12049 in the margin also.
12050 (gdb-breakpoints-mode-map): Use D instead of d for
12051 gdb-delete-breakpoint.
12052 (gdb-get-frame-number): Require a number to match on.
12053 (gdb-threads-mode-map): Add follow-link binding.
12054
12055 2005-11-30 Jason Rumney <jasonr@gnu.org>
12056
12057 * isearch.el (isearch-mode-map): Avoid exiting search on
12058 language-change event.
12059
12060 2005-11-30 Romain Francoise <romain@orebokech.com>
12061
12062 * speedbar.el (speedbar-default-position): New defcustom.
12063 (speedbar-frame-reposition-smartly): Use it.
12064
12065 * dframe.el (dframe-reposition-frame-emacs): Fix position
12066 computation for `left' location.
12067 Update copyright year.
12068
12069 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
12070
12071 * help.el (help-map): Move initialization into declaration.
12072
12073 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
12074
12075 * help-fns.el (help-argument-name): Don't autoload.
12076 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
12077 to be re-loaded when customizing the `help' group.
12078
12079 2005-11-30 John Paul Wallington <jpw@gnu.org>
12080
12081 * help-fns.el (describe-function-1): Fill arglist output.
12082
12083 2005-11-30 Kim F. Storm <storm@cua.dk>
12084
12085 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
12086 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
12087 after revert-buffer (or anything else which kills all local variables).
12088
12089 * apropos.el (apropos-parse-pattern): Doc fix.
12090 Set apropos-regexp directly, rather than expecting callers to do so.
12091 (apropos-command, apropos, apropos-value, apropos-documentation):
12092 Simplify calls to apropos-parse-pattern.
12093
12094 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
12095
12096 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
12097 (hi-lock-face-phrase-buffer): Use hi-yellow face.
12098 (hi-lock-write-interactive-patterns): Use comment-region.
12099
12100 * longlines.el (longlines-mode): Add mail-setup-hook.
12101
12102 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
12103
12104 * simple.el (sendmail-user-agent-compose, next-line):
12105 Conditionally use hard-newline.
12106
12107 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
12108
12109 * international/latexenc.el (latex-inputenc-coding-alist):
12110 Reword doc string.
12111
12112 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
12113
12114 * help.el (describe-key-briefly, describe-key): Recognize default
12115 bindings.
12116
12117 2005-11-29 Romain Francoise <romain@orebokech.com>
12118
12119 * view.el (view-inhibit-help-message): New defcustom.
12120 (view-mode-enter): Use it.
12121
12122 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
12123
12124 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
12125 Preserve user position.
12126
12127 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
12128
12129 * font-lock.el: Throw error if facemenu is not loaded to prevent
12130 accidental change of loading order in loadup.el. (Suggested by RMS.)
12131
12132 * loadup.el: Add comment explaining why facemenu must be loaded
12133 before font-lock.
12134
12135 2005-11-28 Jay Belanger <belanger@truman.edu>
12136
12137 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
12138 (calc-dispatch-map): Add more keys for `calc-same-interface'.
12139
12140 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
12141
12142 * calc/calc-embed.el (calc-do-embedded): Update help message.
12143
12144 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
12145
12146 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12147
12148 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
12149
12150 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
12151 called-interactively-p.
12152 (elp-profilable-p): Rename from elp-not-profilable-p.
12153 Invert result and take into account macros and autoloaded functions.
12154 (elp-instrument-function): Update call.
12155 (elp-instrument-package): Update call. Add completion.
12156 (elp-pack-number): Use match-string.
12157 (elp-results-jump-to-definition-by-mouse): Merge into
12158 elp-results-jump-to-definition and then remove.
12159 (elp-output-insert-symname): Make help echo text single-line.
12160
12161 * replace.el (query-replace-map): Move initialization into declaration.
12162 (occur-engine): Use with-current-buffer.
12163 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
12164 (occur-mode-mouse-goto): Replace with an alias.
12165
12166 2005-11-28 Juri Linkov <juri@jurta.org>
12167
12168 * simple.el (quoted-insert): Let-bind input-method-function to nil.
12169
12170 * term/w32-win.el: Bind [S-tab] to [backtab].
12171
12172 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
12173 `Info-find-file' to t.
12174
12175 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
12176 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
12177 and same-window-regexps.
12178 (occur-next-error): Don't move point for arg 0.
12179
12180 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
12181
12182 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
12183
12184 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12185
12186 * log-edit.el (log-edit-changelog-use-first): New var.
12187 (log-edit-changelog-ours-p): Use it.
12188 (log-edit-insert-changelog): Set it with new arg `use-first'.
12189 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
12190 (log-edit-hook): Add them to the list of suggested options.
12191
12192 * textmodes/flyspell.el (flyspell-last-buffer): New var.
12193 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
12194 redundant work.
12195 (flyspell-mode-on): Use add-hook for after-change-functions.
12196 (flyspell-mode-off): Use remove-hook for after-change-functions.
12197 (flyspell-changes): Make it buffer-local.
12198 (flyspell-after-change-function): Make it non-interactive. Use push.
12199 (flyspell-post-command-hook): Check input-pending-p while processing
12200 the potentially long list of buffer changes.
12201
12202 2005-11-28 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
12203
12204 * buff-menu.el (list-buffers-noselect): Display the selected
12205 frame's buffer list, not the global one.
12206
12207 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
12208
12209 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
12210 that (list last-input-event) works as in interactive spec.
12211
12212 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
12213
12214 * loadup.el ("facemenu"): Load facemenu before font-lock, because
12215 `facemenu-keymap' needs to be defined when font-lock is loaded.
12216 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
12217
12218 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
12219
12220 * completion.el: Remove useless leading * in defcustom docstrings.
12221 (save-completions-file-name): Use ~/.emacs.d if available.
12222 (completion-standard-syntax-table): Rename from
12223 cmpl-standard-syntax-table and fold initialization into declaration,
12224 thus removing cmpl-make-standard-completion-syntax-table.
12225 (completion-lisp-syntax-table, completion-c-syntax-table)
12226 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
12227 (cmpl-saved-syntax, cmpl-saved-point): Remove.
12228 (symbol-under-point, symbol-before-point)
12229 (symbol-under-or-before-point, symbol-before-point-for-complete)
12230 (add-completions-from-c-buffer): Use with-syntax-table.
12231 (make-completion): Don't return a list of completion entries.
12232 Update callers.
12233 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
12234 (completion-initialize): Rename from initialize-completions.
12235 (completion-find-file-hook): Rename from cmpl-find-file-hook.
12236 (kill-emacs-save-completions): Collect stats here.
12237 (save-completions-to-file, load-completions-from-file):
12238 Use with-current-buffer.
12239 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
12240 into a function. Move all calls to toplevel.
12241 (completion-lisp-mode-hook): New fun.
12242 (completion-c-mode-hook, completion-setup-fortran-mode):
12243 Set the syntax-table here. Use local-set-key.
12244 (completion-saved-bindings): New var.
12245 (dynamic-completion-mode): Make it into a proper minor mode.
12246 (load-completions-from-file): Remove unused var `num-uses'.
12247
12248 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
12249 constructor if it is explicitly overridden.
12250
12251 * complete.el (PC-completion-as-file-name-predicate):
12252 Use minibuffer-completing-file-name.
12253 (partial-completion-mode): Use find-file-not-found-functions.
12254 (PC-lisp-complete-symbol): Use with-syntax-table.
12255 (PC-look-for-include-file): Remove dead setq.
12256 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
12257 (PC-complete): Use with-current-buffer.
12258
12259 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
12260 escape single quotes.
12261
12262 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
12263
12264 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
12265 of `if' whose condition always returned nil. Doc fix.
12266
12267 * buff-menu.el (Buffer-menu-revert-function): Make the selected
12268 window's buffer the current buffer around the call to
12269 `list-buffers-noselect'. This is necessary to mark that buffer
12270 with a `.' in the Buffer Menu when called from Lisp, for instance
12271 by Auto Revert Mode.
12272
12273 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
12274
12275 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
12276 attaching to it.
12277 (gdb-pre-prompt): Make sure gdb-error is reset.
12278
12279 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
12280 with a child process, detect it.
12281 (gud-speedbar-buttons): Match regexp more carefully.
12282
12283 2005-11-27 Richard M. Stallman <rms@gnu.org>
12284
12285 * mouse.el (mouse-drag-move-window-bottom):
12286 Use adjust-window-trailing-edge.
12287
12288 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
12289
12290 * simple.el (blink-matching-open): Ignore
12291 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
12292 (blink-matching-paren-on-screen): Update docstring.
12293
12294 * paren.el (show-paren-mode): No longer change
12295 `blink-matching-paren-on-screen'.
12296
12297 2005-11-27 John Paul Wallington <jpw@pobox.com>
12298
12299 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
12300 (gdb-threads-select, gdb-edit-register-value):
12301 Use `posn-set-point' instead of `mouse-set-point' because the
12302 latter is not fbound when configured without X.
12303
12304 2005-11-27 Kim F. Storm <storm@cua.dk>
12305
12306 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
12307 existing face when partially highlighting a TAB in a rectangle.
12308
12309 2005-11-26 Kim F. Storm <storm@cua.dk>
12310
12311 * ido.el (ido-mode-map): Doc fix.
12312 (ido-mode-common-map, ido-mode-file-map)
12313 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
12314 (ido-define-mode-map): Rewrite. Select one of the new maps as
12315 parent for ido-mode-map instead of building from scratch.
12316 (ido-init-mode-maps): New defun to initialize new maps.
12317 (ido-mode): Call it.
12318 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
12319 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
12320
12321 2005-11-26 John Paul Wallington <jpw@pobox.com>
12322
12323 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
12324 `mouse-set-point' because the latter is not fbound when configured
12325 without X.
12326
12327 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
12328
12329 * files.el (file-relative-name): Doc fix.
12330
12331 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
12332
12333 * progmodes/octave-inf.el (inferior-octave-startup): Force a
12334 non-empty string for secondary prompt PS2.
12335
12336 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
12337
12338 * progmodes/compile.el (compilation-setup): Fix last change.
12339
12340 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
12341
12342 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
12343 (gdb-mouse-toggle-breakpoint-margin)
12344 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
12345 Add gdb-server-prefix to keep out of command history.
12346 (gdb-edit-register-value): New function.
12347 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
12348 (gdb-info-registers-custom): Use above map.
12349
12350 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
12351
12352 * custom.el (enable-theme): Signal error if argument is not a
12353 theme. Don't recalculate a face if it's not loaded yet.
12354
12355 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
12356 the `user' theme is in effect.
12357
12358 * info.el (Info-on-current-buffer): Record actual filename in
12359 Info-current-file, instead of t, or a fake filename if a non-file
12360 buffer. Make autoload.
12361 (Info-find-node, Info-revert-find-node): No need to check for
12362 Info-current-file nil.
12363 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
12364 Info-current-file is now never `t'.
12365 (Info-fontify-node): Many simplifications due to Info-current-file
12366 always being valid. Use Info-find-file to find node filename.
12367
12368 2005-11-25 David Kastrup <dak@gnu.org>
12369
12370 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
12371 new character, then delete" in order to preserve markers.
12372
12373 2005-11-25 David Ponce <david@dponce.com>
12374
12375 * recentf.el (recentf-arrange-by-rule): Handle a special
12376 `auto-mode-alist'-like "strip suffix" rule.
12377 (recentf-build-mode-rules): Handle second level auto-mode entries.
12378
12379 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
12380
12381 * viper-keym.el (viper-ESC-key): Use different values in terminal and
12382 window modes.
12383
12384 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
12385 jde-javadoc-checker-report-mode.
12386
12387 * ediff-wind (ediff-make-wide-display): Slight simplification.
12388
12389 * ediff.el (ediff-date): Change the date of last update.
12390
12391 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
12392
12393 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
12394 Use define-minor-mode, and make it a local mode. Turn on font-lock.
12395 (hi-lock-mode): New global minor mode.
12396 (turn-on-hi-lock-if-enabled): New function.
12397 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
12398 Change arguments to regexp and face instead of a font-lock pattern.
12399 Directly set face property, instead of refontifying.
12400 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
12401 (hi-lock-find-patterns): Use line-number-at-pos.
12402
12403 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
12404 arguments for hi-lock-set-pattern.
12405 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
12406 Call font-lock-fontify-buffer.
12407 (hi-lock-find-file-hook, hi-lock-current-line)
12408 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
12409
12410 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
12411 turned off.
12412
12413 * progmodes/compile.el (compilation-setup): Don't fiddle with
12414 font-lock-defaults.
12415
12416 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
12417
12418 * progmodes/gdb-ui.el (gdb-var-create-handler)
12419 (gdb-var-list-children-handler): Find values for all variable
12420 objects. gud-speedbar-buttons decides whether to display them.
12421
12422 2005-11-24 Romain Francoise <romain@orebokech.com>
12423
12424 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
12425 buffer name with a space.
12426
12427 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
12428
12429 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
12430 `org-export-local-list-max-depth'. Change default value to 3.
12431 (org-auto-renumber-ordered-lists)
12432 (org-plain-list-ordered-item-terminator): New options.
12433 (org-at-item-p, org-beginning-of-item, org-end-of-item)
12434 (org-get-indentation, org-get-string-indentation)
12435 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
12436 New functions.
12437 (org-move-item-down, org-move-item-up): New commands.
12438 (org-export-as-html): New classes for CSS support. Bug fix in
12439 regular expression detecting fixed-width regions. Respect
12440 `org-local-list-ordered-item-terminator'.
12441 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
12442 also a list item.
12443 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
12444 New item moving functions.
12445
12446 2005-11-24 Juri Linkov <juri@jurta.org>
12447
12448 * isearch.el (isearch-repeat): With empty search ring set
12449 `isearch-error' to the error string instead of signaling error
12450 with the function `error'.
12451
12452 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12453
12454 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
12455
12456 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
12457
12458 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
12459 and variable.
12460 (gdb-var-create-handler, gdb-var-list-children-handler):
12461 Don't match on "char **...".
12462 (gdb-var-update-handler): Find values for all variable objects.
12463 (gdb-info-frames-custom): Identify frames by leading "#".
12464
12465 * progmodes/gud.el (gud-speedbar-menu-items): Add
12466 gdb-speedbar-auto-raise as radio button.
12467 (gud-speedbar-buttons): Raise speedbar if requested.
12468 Don't match on "char **...".
12469 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
12470 Make it editable.
12471
12472 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
12473
12474 * info.el (Info-fontify-node): Handle the case where
12475 Info-current-file is t.
12476
12477 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
12478
12479 * simple.el (blink-matching-open): Fix off-by-one in last change.
12480
12481 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12482
12483 * term/mac-win.el: Don't change default directory.
12484
12485 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
12486
12487 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
12488 buffers correctly. (It used to throw an error in such buffers.)
12489 Make it ask for confirmation in group buffers and other Custom
12490 buffers containing more than one customization item.
12491
12492 2005-11-22 John Paul Wallington <jpw@gnu.org>
12493
12494 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
12495 property on mail and url overlays.
12496 (goto-address-at-point): Use `posn-set-point' instead of
12497 `mouse-set-point' because the latter is not fbound when configured
12498 without X.
12499
12500 2005-11-22 Lars Hansen <larsh@soem.dk>
12501
12502 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
12503 (ls-lisp-classify, ls-lisp-format): Delete call to
12504 ls-lisp-parse-symlink.
12505 (ls-lisp-handle-switches): Handle symlinks to directories as
12506 directories when ls-lisp-dirs-first in non-nil.
12507
12508 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
12509
12510 * startup.el (command-line): Make sure that loaddefs.el is handled
12511 correctly in load-history.
12512
12513 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
12514
12515 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
12516 (gdb-struct-string, gdb-array-string): New constants.
12517 (gdb-info-locals-handler): Use them.
12518 (gdb-reset): Reset gdb-var-list to nil.
12519
12520 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12521
12522 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
12523 in patterns.
12524
12525 2005-11-21 Juri Linkov <juri@jurta.org>
12526
12527 * custom.el (defcustom): Update link types in docstring.
12528
12529 2005-11-20 Martin Rudalics <rudalics@gmx.at>
12530
12531 * custom.el (defgroup): Add doc-string-elt info.
12532
12533 * widget.el (define-widget): Don't use declare for the doc-string-elt.
12534
12535 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12536
12537 * newcomment.el (comment-enter-backward): Fix last fix.
12538
12539 * simple.el (blink-matching-open):
12540 * paren.el (show-paren-function): Allow new paren-class info.
12541
12542 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
12543
12544 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
12545 handled automagically.
12546
12547 2005-11-20 Andreas Schwab <schwab@suse.de>
12548
12549 * descr-text.el (describe-char): When copying overlays put them
12550 over the full char description instead of just the first character
12551 of it.
12552
12553 2005-11-20 Juri Linkov <juri@jurta.org>
12554
12555 * simple.el (what-cursor-position):
12556 * descr-text.el (describe-char): Use Lisp-readable syntax
12557 for octal and hex. Reorder decimal, octal and hex values.
12558 Remove excess whitespace in the output. Use `=' in `column='
12559 like in `point=' and `Hscroll='.
12560
12561 * international/mule-cmds.el (encoded-string-description):
12562 Use Lisp-readable syntax for hex.
12563
12564 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
12565
12566 * newcomment.el (comment-enter-backward): Handle the case where the
12567 comment is closed by EOB.
12568
12569 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
12570
12571 * longlines.el (longlines-before-revert-hook)
12572 (longlines-after-revert-hook): New functions.
12573 (longlines-mode): Turn off longlines temporarily when reverting.
12574 Add a message-setup-hook.
12575 (longlines-decode-buffer): New function.
12576 (longlines-wrap-line): Preserve marker positions.
12577
12578 2005-11-19 Andreas Schwab <schwab@suse.de>
12579
12580 * emacs-lisp/shadow.el: Handle compressed files.
12581
12582 2005-11-19 Romain Francoise <romain@orebokech.com>
12583
12584 * net/browse-url.el (browse-url-default-browser): Signal an error
12585 if no usable browser can be found, rather than try to load w3.
12586
12587 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
12588
12589 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
12590 replacing existing properties.
12591 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
12592 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
12593 tty specs.
12594 (rcirc-server-prefix, rcirc-server): New faces.
12595 (rcirc-url-regexp): Generate with rx macro.
12596 (rcirc-last-server-message-time): New variable.
12597 (rcirc-filter): Record time of last message.
12598 (rcirc-keepalive): Kill processes that did not send a message
12599 since the last ping.
12600 (rcirc-mode): Give rcirc-topic a local binding here.
12601
12602 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org>
12603
12604 * subr.el (read-passwd): Fontify the prompt as we do with other
12605 prompts.
12606
12607 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
12608
12609 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
12610 binding buffer-read-only to nil.
12611
12612 2005-11-19 Eli Zaretskii <eliz@gnu.org>
12613
12614 * complete.el (partial-completion-mode):
12615 Mention completion-auto-help in the doc string.
12616
12617 * man.el (Man-highlight-references): Doc fix. Reformat code in a
12618 more Lisp-ish way.
12619
12620 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
12621
12622 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
12623 digits, not 8, to avoid misalignment for files larger than 100MB.
12624
12625 2005-11-19 Eli Zaretskii <eliz@gnu.org>
12626
12627 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
12628 Mention "keyboard shortcuts" in the help text.
12629
12630 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12631
12632 * startup.el (fancy-splash-default-action): Discard only
12633 mouse-down and succeeding mouse-up events in the splash screen
12634 window so that drag-n-drop event can be processed.
12635
12636 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
12637
12638 * longlines.el (longlines-mode): Add hacks for mail-mode and
12639 message-mode.
12640
12641 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
12642
12643 * textmodes/org.el (org-table-sort-lines): New command.
12644 (org-tbl-menu): Add entry for `org-table-sort-lines'.
12645 (org-add-file): Command removed, use `org-agenda-file-to-front'
12646 instead.
12647 (org-export-icalendar): Use `org-icalendar-combined-name'.
12648 (org-cycle-agenda-files, org-agenda-file-to-end)
12649 (org-agenda-file-to-front): New commands.
12650 (org-table-tab-jumps-over-hlines, org-export-html-style):
12651 New options.
12652 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
12653 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
12654 New functions.
12655 (org-fill-paragraph): Call `org-table-align' in tables.
12656 (org-mode): Call `org-set-autofill-regexps'.
12657 (org-export-as-html): Support for local handformatted lists.
12658 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
12659 (org-export-local-list-max-depth): New option.
12660 (org-html-expand): Use `org-html-protect'.
12661
12662 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
12663
12664 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
12665 to "p".
12666 (gdb): Move definition of gud-pp to...
12667
12668 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
12669 speedbar.
12670 (gdb-find-watch-expression): New function.
12671
12672 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
12673
12674 * faces.el (face-attribute, set-face-attribute): Mention existence
12675 of `:ignore-defface' setting in docstring.
12676
12677 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
12678
12679 * simple.el (completion-setup-function): Fix last change.
12680
12681 2005-11-17 John Paul Wallington <jpw@pobox.com>
12682
12683 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
12684 Use `posn-set-point' instead of `mouse-set-point' because the
12685 latter is not fbound when configured without X.
12686
12687 * comint.el (comint-insert-input): Likewise.
12688
12689 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
12690
12691 * simple.el (hard-newline): New variable.
12692 (sendmail-user-agent-compose, next-line): Use it.
12693
12694 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
12695 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
12696 (mail-mail-reply-to, mail-mail-followup-to)
12697 (mail-position-on-field, mail-signature, mail-yank-original)
12698 (mail-attach-file): Likewise.
12699
12700 * mail/mailheader.el (mail-header-format)
12701 (mail-header-format-function): Likewise.
12702
12703 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
12704
12705 2005-11-17 Juri Linkov <juri@jurta.org>
12706
12707 * font-lock.el (font-lock-faces): Rename this defgroup from
12708 `font-lock-highlighting-faces'.
12709 (font-lock-comment-face, font-lock-comment-delimiter-face)
12710 (font-lock-string-face, font-lock-doc-face)
12711 (font-lock-keyword-face, font-lock-builtin-face)
12712 (font-lock-function-name-face, font-lock-variable-name-face)
12713 (font-lock-type-face, font-lock-constant-face)
12714 (font-lock-warning-face, font-lock-negation-char-face)
12715 (font-lock-preprocessor-face)
12716 (font-lock-regexp-grouping-backslash)
12717 (font-lock-regexp-grouping-construct): Rename :group from
12718 `font-lock-highlighting-faces' to `font-lock-faces'.
12719
12720 * cus-edit.el (lisp, c, tex):
12721 * progmodes/ada-mode.el (ada):
12722 * progmodes/asm-mode.el (asm):
12723 * progmodes/cperl-mode.el (cperl-faces):
12724 * progmodes/cpp.el (cpp):
12725 * progmodes/dcl-mode.el (dcl):
12726 * progmodes/f90.el (f90):
12727 * progmodes/fortran.el (fortran):
12728 * progmodes/icon.el (icon):
12729 * progmodes/idlwave.el (idlwave-misc):
12730 * progmodes/m4-mode.el (m4):
12731 * progmodes/make-mode.el (makefile):
12732 * progmodes/meta-mode.el (meta-font):
12733 * progmodes/modula2.el (modula2):
12734 * progmodes/octave-mod.el (octave):
12735 * progmodes/pascal.el (pascal):
12736 * progmodes/perl-mode.el (perl):
12737 * progmodes/prolog.el (prolog):
12738 * progmodes/ps-mode.el (PostScript-edit):
12739 * progmodes/scheme.el (scheme):
12740 * progmodes/sh-script.el (sh-script):
12741 * progmodes/simula.el (simula):
12742 * progmodes/tcl.el (tcl):
12743 * textmodes/nroff-mode.el (nroff):
12744 * textmodes/reftex-vars.el (reftex-fontification-configurations):
12745 * textmodes/sgml-mode.el (sgml):
12746 * textmodes/texinfo.el (texinfo):
12747 Add :link (custom-group-link font-lock-faces) to defgroup.
12748
12749 * hi-lock.el (hi-lock): Rename this defgroup from
12750 `hi-lock-interactive-text-highlighting'. Change parent group from
12751 `faces' to `font-lock'. Add link to the manual.
12752 (hi-lock-mode, hi-lock-file-patterns-range)
12753 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
12754 `hi-lock-interactive-text-highlighting' to `hi-lock'.
12755 (hi-lock-faces): Add :group `faces'.
12756
12757 * cus-edit.el (custom-variable-prompt): Clarify the code.
12758
12759 * faces.el (face-read-string): Set the default value arg of
12760 completing-read.
12761
12762 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
12763
12764 * rfn-eshadow.el (file-name-shadow-properties)
12765 (file-name-shadow-tty-properties, file-name-shadow-mode):
12766 Remove autoloads, because the file is now preloaded.
12767
12768 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12769
12770 * printing.el (easy-menu-intern): Don't define.
12771 (pr-get-symbol): Use easy-menu-intern only if defined.
12772
12773 * simple.el (blink-matching-open): Simplify a bit.
12774 (completion-setup-function): Fix the case of partial-completion-mode
12775 when the minibuffer's contents start with "-".
12776 Obey completion-base-size-function even when
12777 minibuffer-completing-file-name is non-nil.
12778
12779 2005-11-16 Richard M. Stallman <rms@gnu.org>
12780
12781 * net/eudcb-ph.el (eudc-ph-open-session):
12782 Use set-process-query-on-exit-flag.
12783
12784 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
12785
12786 * international/ucs-tables.el (ucs-set-table-for-input):
12787 Use make-local-variable, not make-variable-buffer-local.
12788
12789 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
12790 Improve warning message text.
12791
12792 * savehist.el (savehist-save-hook): Add :group.
12793
12794 * menu-bar.el (menu-bar-help-menu):
12795 Rename Find Extra Packages to External Packages.
12796
12797 * cus-edit.el (Custom-reset-standard): Verify that
12798 :custom-standard-value prop exists before calling it.
12799
12800 * apropos.el (apropos-calc-scores): Use apropos-pattern.
12801
12802 2005-11-16 Martin Rudalics <rudalics@gmx.at>
12803
12804 * wid-edit.el (color): Enclose %t in %{...%}.
12805
12806 * cus-edit.el (face): Enclose %t in %{...%}.
12807
12808 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
12809
12810 * savehist.el (savehist-mode-hook): Re-add the var.
12811 (savehist-mode): Use it.
12812
12813 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12814
12815 * textmodes/flyspell.el: Fix commenting convention.
12816 Remove unnecessary leading * in custom docstrings.
12817 (flyspell-emacs): Remove unused var.
12818 (flyspell-delete-region-overlays): Use remove-overlays.
12819 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
12820 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
12821 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
12822 (flyspell-debug-signal-word-checked): Use with-current-buffer.
12823 (make-flyspell-overlay): Don't locally reuse a global name.
12824 (flyspell-highlight-incorrect-region)
12825 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
12826 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
12827 (flyspell-notify-misspell): Remove unused args `start' and `end'.
12828 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
12829 Wrap calls to accept-process-output inside with-local-quit since it's
12830 often called from a post-command-hook.
12831 (flyspell-correct-word, flyspell-auto-correct-word):
12832 Use ispell-send-string.
12833 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
12834
12835 * calendar/diary-lib.el (diary-list-entries): Also hide the
12836 terminating newline.
12837
12838 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
12839
12840 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
12841 window-system, to allow fonts on tty.
12842
12843 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
12844
12845 * progmodes/gud.el (gud-speedbar-item-info): New function.
12846 (gud-install-speedbar-variables): Use it to display data type
12847 of watch expression as a tooltip in speedbar.
12848
12849 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
12850
12851 * font-core.el (global-font-lock-mode): Add :version keyword,
12852 because default was changed.
12853
12854 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
12855
12856 * startup.el (command-line): Use `custom-reevaluate-setting' for
12857 `file-name-shadow-mode'.
12858
12859 * loadup.el: Preload rfn-eshadow.
12860
12861 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
12862 Add :version keyword.
12863 (file-name-shadow-properties, file-name-shadow-tty-properties)
12864 (file-name-shadow): Add :version keyword.
12865
12866 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
12867 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
12868 in the custom-group property of the symbol frames and the fringe
12869 group got no link to its parent group frames.
12870 Doc fix.
12871
12872 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
12873
12874 * progmodes/gud.el (gud-stop-subjob): New function.
12875 (gud-menu-map, gud-tool-bar-map): Use it.
12876
12877 2005-11-16 Kim F. Storm <storm@cua.dk>
12878
12879 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
12880 than kill it.
12881 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
12882 to a more useful/logical place.
12883
12884 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
12885
12886 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
12887 go buttons complementary.
12888
12889 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
12890
12891 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
12892 (rfn-eshadow-sifn-equal): New function.
12893 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
12894
12895 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
12896
12897 * viper-utils.el (viper-non-word-characters-reformed-vi):
12898 Quote `-' in string.
12899
12900 * viper.el (viper-emacs-state-mode-list): Ensure that
12901 rcirc-mode buffers come up in Emacs state.
12902
12903 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
12904 operation.
12905
12906 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
12907
12908 * term.el (term-termcap-format): Fix typos.
12909 (term-down): Fix the negative argument case.
12910
12911 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
12912
12913 * progmodes/gdb-ui.el: Remove face-alias left over from change on
12914 2005-08-15.
12915 (gdb-ann3): New command gud-go.
12916 (menu): Accomodate gdb-mi.el.
12917 (gdb-assembler-custom): Make buffer of selected window current
12918 so that set-window-point works.
12919
12920 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
12921 buttons and include new ones.
12922
12923 2005-11-16 Kim F. Storm <storm@cua.dk>
12924
12925 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
12926 (gud-menu-map): Use it.
12927
12928 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
12929
12930 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
12931 that works correctly for Custom and that does not override a user
12932 who disables it.
12933
12934 * help-mode.el (help-make-xrefs, help-xref-on-pp)
12935 (help-xref-interned, help-follow): Make hyperlinks for variables
12936 that are unbound, but have a non-nil variable-documentation property.
12937
12938 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
12939 mode hook. (It conflicted with defcustoms for some mode hooks.)
12940 Use the `variable-documentation' property to give the mode hook a
12941 docstring and expand that docstring.
12942
12943 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
12944
12945 * savehist.el (savehist-mode): Don't bother with
12946 `custom-set-minor-mode'.
12947 (savehist-coding-system): Check XEmacs version.
12948 (history-length): Declare also at run time.
12949 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
12950 Don't set the customize state.
12951 (savehist-minibuffer-hook): Special case for when
12952 minibuffer-history-variable is equal to t.
12953
12954 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
12955
12956 * files.el (write-file): Refresh VC status.
12957
12958 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
12959 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
12960 than fundamental-mode to see if the mode was set.
12961
12962 2005-11-14 Romain Francoise <romain@orebokech.com>
12963
12964 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
12965 dummy function in `eval-when-compile' to avoid compiler warning.
12966 Require `man' at compile time.
12967
12968 2005-11-14 Jay Belanger <belanger@truman.edu>
12969
12970 * calc-alg.el (calcFunc-write-out-power): Rename it to
12971 calcFunc-powerexpand.
12972 (math-write-out-power): Rename it to math-powerexpand; have it
12973 handle negative exponents.
12974 (calc-writeoutpower): Rename it to calc-powerexpand.
12975
12976 * calc-ext.el: Change calcFunc-writeoutpower and
12977 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
12978 autoloads.
12979 Add calcFunc-ldiv to autoloads.
12980
12981 * calc-arith.el (calcFunc-ldiv): New function.
12982
12983 * calc.el (calc-left-divide): New function.
12984
12985 2005-11-14 Juri Linkov <juri@jurta.org>
12986
12987 * cus-edit.el (custom-variable-prompt): Set the default value arg
12988 of completing-read.
12989
12990 * cus-dep.el (custom-make-dependencies): Reverse the list of
12991 found dependencies.
12992
12993 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
12994
12995 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
12996 Highlighting" entry, it is on by default now.
12997 (menu-bar-options-save): Do not save global-font-lock-mode.
12998
12999 2005-11-13 Richard M. Stallman <rms@gnu.org>
13000
13001 * textmodes/flyspell.el (flyspell-large-region):
13002 Call flyspell-accept-buffer-local-defs.
13003
13004 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
13005
13006 * textmodes/flyspell.el (flyspell-notify-misspell):
13007 Fix misspelling of "Misspelling".
13008 (flyspell-process-localwords): New function.
13009 (flyspell-large-region): Call flyspell-process-localwords and
13010 flyspell-delete-region-overlays.
13011 (flyspell-delete-region-overlays): New function.
13012 (flyspell-delete-all-overlays): Call that.
13013
13014 2005-11-13 Richard M. Stallman <rms@gnu.org>
13015
13016 * help.el (help-for-help-internal): Improve doc of C-h a.
13017 (describe-key): Improve prompt; doc fix.
13018
13019 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
13020
13021 * vc-svn.el (vc-svn-registered): Catch all errors.
13022
13023 * cus-dep.el (custom-make-dependencies): Typo.
13024
13025 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
13026
13027 * net/tramp-util.el (top): Fix compilation warning.
13028
13029 2005-11-13 Kim F. Storm <storm@cua.dk>
13030
13031 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
13032
13033 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
13034
13035 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
13036 (gud-speedbar-buttons): Match on "const char *" too.
13037
13038 * progmodes/gdb-ui.el (gdb-var-create-handler)
13039 (gdb-var-list-children-handler): Match on "const char *" too.
13040 (gdb-var-evaluate-expression-handler): Match on empty string.
13041 (gdb-var-update-handler): Only call
13042 gdb-var-evaluate-expression-handler when required.
13043
13044 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
13045
13046 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
13047 selected window. This still doesn't work for speedbar.
13048 (gud-speedbar-buttons): Handle string expressions properly.
13049
13050 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
13051 (gdb-var-create-handler): Handle string expressions properly.
13052 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
13053 Handle string expressions properly. Move "type" field into regexp.
13054
13055 2005-11-12 Karl Fogel <kfogel@red-bean.com>
13056
13057 * bookmark.el (bookmark-maybe-message): New function to reduce
13058 code duplication: invokes `message' iff baud-rate is high enough.
13059 (bookmark-write-file): Use above instead of an inline conditional.
13060 (bookmark-load): Same.
13061
13062 2005-11-12 Karl Fogel <kfogel@red-bean.com>
13063
13064 * bookmark.el (bookmark-write-file): Don't visit the destination
13065 file, just write the data to it using write-region. This is
13066 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
13067 change to avoid visiting the file in the first place.
13068
13069 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
13070
13071 * hi-lock.el (hi-lock-mode): Set the default value of
13072 font-lock-defaults.
13073
13074 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
13075
13076 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
13077 arg to `file-attributes'.
13078 (find-lisp-format): The UID and GID can now be strings.
13079
13080 2005-11-12 Kim F. Storm <storm@cua.dk>
13081
13082 * help.el (help-map): Bind C-h d to apropos-documentation.
13083
13084 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
13085 when point is at end-of-buffer.
13086
13087 * apropos.el (apropos-match-face): Doc fix.
13088 (apropos-sort-by-scores): Add new choice `verbose'.
13089 (apropos-documentation-sort-by-scores): New defcustom.
13090 (apropos-pattern): Now contains the pattern entered by the user.
13091 (apropos-pattern-quoted): New defvar.
13092 (apropos-regexp): New defvar, containing the regexp corresponding
13093 to apropos-pattern.
13094 (apropos-all-words-regexp): Rename from apropos-all-regexp.
13095 (apropos-read-pattern): New defun. Use it to read pattern arg in
13096 interactive calls; returns list of words for a word list, and
13097 string for a regexp.
13098 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
13099 parses a list of words or regexp as returned by apropos-read-pattern.
13100 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
13101 (apropos-score-doc): Return a very high score if the string
13102 entered by the user matches literally.
13103 (apropos-variable): Doc fix. Use apropos-read-pattern.
13104 (apropos-command): Doc fix. Use apropos-read-pattern and
13105 apropos-parse-pattern. Call apropos-print with nosubst=t.
13106 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
13107 apropos-parse-pattern.
13108 (apropos-documentation): Doc fix. Use apropos-read-pattern and
13109 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
13110 apropos-documentation-sort-by-scores. Call apropos-print with
13111 nosubst=t.
13112 (apropos-documentation-internal): Pass doc string through
13113 substitute-key-definition before adding text properties.
13114 Highlight substring matching literal user input if possible.
13115 (apropos-documentation-check-doc-file): Remove locals beg and end.
13116 Fix calculation of score (as added twice). Pass doc string through
13117 substitute-key-definition before adding text properties.
13118 (apropos-documentation-check-elc-file): Pass doc string through
13119 substitute-key-definition before adding text properties.
13120 Highlight substring matching literal user input if possible.
13121 (apropos-print): Add new arg NOSUBST; if set, command and variable
13122 doc strings have already been passed through substitute-key-definition.
13123 Add code to handle apropos-accumulator items without score element
13124 for backwards compatibility (e.g. with woman package).
13125 Only show scores if apropos-sort-by-scores is `verbose'.
13126
13127 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
13128
13129 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
13130 Add jka-compr-load-suffixes to load-suffixes.
13131
13132 * jka-compr.el: Require jka-cmpr-hook.
13133 (jka-compr-info-compress-message, jka-compr-info-compress-program)
13134 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
13135 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
13136 (jka-compr-info-can-append, jka-compr-info-strip-extension)
13137 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
13138 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
13139 (jka-compr-uninstall): Remove entries from
13140 jka-compr-added-to-file-coding-system-alist after they are used.
13141 (jka-compr-error): Remove unused var `curbuf'.
13142 (jka-compr-file-local-copy): Remove unused var `notfound'.
13143
13144 2005-11-10 Romain Francoise <romain@orebokech.com>
13145
13146 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
13147
13148 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
13149
13150 * progmodes/gud.el (gud-menu-map): Move parentheses.
13151 (gdb): New command gud-pv.
13152
13153 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
13154
13155 * tar-mode.el: Remove spurious or unnecessary leading stars
13156 in docstrings.
13157 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
13158 (tar-parse-octal-integer-safe): Use mapc.
13159 (tar-header-block-summarize): Remove unused var `ck'.
13160 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
13161 cleared before. Obey default-enable-multibyte-characters.
13162 Use mapconcat. Simplify setting of tar-header-offset.
13163 (tar-mode-map): Move initialization inside delcaration.
13164 (tar-flag-deleted): Use `abs'.
13165 (tar-expunge-internal): Remove unused var `line'.
13166 (tar-expunge-internal): Don't hardcode point-min==1.
13167 (tar-expunge): Widen while doing set-buffer-multibyte.
13168 (tar-rename-entry): Use file-name-coding-system.
13169 (tar-alter-one-field): Don't hardcode point-min==1.
13170 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
13171 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
13172
13173 2005-11-10 Masatake YAMATO <jet@gyve.org>
13174
13175 * add-log.el (add-log-current-defun): Handle class::method
13176 notation of c++. Fix incorrect comment.
13177
13178 2005-11-10 Alan Mackenzie <acm@muc.de>
13179
13180 * help-fns.el (describe-variable): Make C-h v work when a variable
13181 has variable documentation yet is unbound.
13182
13183 2005-11-10 Masatake YAMATO <jet@gyve.org>
13184
13185 * man.el (Man-highlight-references): Set an empty
13186 string to `Man-arguments' if it is nil.
13187 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
13188
13189 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13190
13191 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
13192 commenting conventions.
13193
13194 * cus-dep.el (custom-make-dependencies): Simplify.
13195 Better follow the commenting conventions.
13196
13197 2005-11-09 Richard M. Stallman <rms@gnu.org>
13198
13199 * apropos.el (apropos-pattern): Rename from apropos-regexp.
13200 (apropos-orig-pattern): Rename from apropos-orig-regexp.
13201 All uses changed.
13202 (apropos-rewrite-regexp): Doc fix.
13203 (apropos-variable, apropos-command, apropos, apropos-value):
13204 Change prompt; carry through the argument renaming.
13205
13206 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
13207
13208 * find-lisp.el: Require dired.
13209 (find-lisp-find-dired-internal): Do not call
13210 `abbreviate-file-name' on DIR.
13211
13212 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
13213
13214 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
13215
13216 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
13217
13218 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
13219 when using the speedbar.
13220 (gdb): New command gud-pp.
13221 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
13222
13223 2005-11-09 Juri Linkov <juri@jurta.org>
13224
13225 * replace.el (occur-excluded-properties): New defcustom.
13226 (occur-1, occur-engine, occur-accumulate-lines): Use it.
13227
13228 2005-11-08 Jay Belanger <belanger@truman.edu>
13229
13230 * calc/calc-units.el (math-convert-units): Replace any composite
13231 unit by its definition.
13232
13233 2005-11-08 Lars Hansen <larsh@soem.dk>
13234
13235 * emacs-lisp/autoload.el (update-directory-autoloads):
13236 Add obsolete function alias.
13237
13238 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13239
13240 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
13241 comment-indent-function.
13242 (lisp-comment-indent): Replace by an alias for comment-indent-default.
13243
13244 * reveal.el (reveal-post-command): Rework the handling of
13245 reveal-open-spots, so as to be more reliable. There were several
13246 tricky corner cases where an open spot might be lost, or where
13247 a closed spot might end up on the list of open spots.
13248 Only reveal text that's ellipsised.
13249
13250 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
13251
13252 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
13253
13254 2005-11-07 John Paul Wallington <jpw@gnu.org>
13255
13256 * ibuffer.el (ibuffer): Search iconified frames too when
13257 getting Ibuffer buffer's window.
13258
13259 2005-11-06 Richard M. Stallman <rms@gnu.org>
13260
13261 * progmodes/compile.el (compilation-internal-error-properties):
13262 save-excursion around the computation of MARKER.
13263
13264 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
13265
13266 * textmodes/flyspell.el (flyspell-external-point-words):
13267 flyspell-get-word returns a list, not just a string.
13268
13269 2005-11-06 John Paul Wallington <jpw@pobox.com>
13270
13271 * ibuffer.el (ibuffer): Search all visible frames when getting
13272 Ibuffer buffer's window.
13273
13274 2005-11-07 Masatake YAMATO <jet@gyve.org>
13275
13276 * man.el (Man-reference-regexp): Accept spaces between
13277 `Man-name-regexp' and `Man-section-regexp'.
13278 (Man-apropos-regexp): New variable.
13279 (Man-abstract-xref-man-page): Use value for `Man-target-string'
13280 if available.
13281 (Man-highlight-references, Man-highlight-references0):
13282 Handle the case when `Man-arguments' includes "-k".
13283 (Man-highlight-references0): Rename the argument `TARGET-POS' to
13284 `TARGET'. `TARGET' can be a number, function or nil.
13285
13286 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
13287
13288 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
13289 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
13290 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
13291 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
13292 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
13293 (gdb-send-item): Use buffer-local-value and simplify.
13294
13295 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
13296
13297 * startup.el (command-line): Use `custom-reevaluate-setting' for
13298 `global-font-lock-mode'.
13299
13300 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
13301 by default, except in batch mode or when the -D option is given.
13302
13303 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
13304 specified keyword args on to `define-minor-mode'. Update docstring.
13305
13306 2005-11-05 Romain Francoise <romain@orebokech.com>
13307
13308 * replace.el (occur-engine): Add marker at end of line, too.
13309
13310 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
13311
13312 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
13313 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13314 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13315 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13316 argument to all these routines, so the passphrase can be managed
13317 externally and passed in to the system.
13318 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
13319 pgg-add-passphrase-to-cache function.
13320
13321 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
13322 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
13323 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
13324 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
13325 argument to all these routines, so the passphrase can be managed
13326 externally and passed in to the system.
13327 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
13328 function.
13329
13330 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
13331
13332 * font-lock.el: Don't deal with font-lock-face-attributes here,
13333 move the code ...
13334
13335 * startup.el (command-line): ... here. Use face-spec-set instead
13336 of custom-declare-face.
13337
13338 * faces.el (face-spec-set): Reset the face if spec is not nil.
13339
13340 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
13341
13342 * newcomment.el (comment-region-internal): Box more tightly in the
13343 common case where there's no TAB in the boxed text.
13344
13345 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13346
13347 * info.el (info-tool-bar-map): Use images prev-node, next-node and
13348 up-node.
13349
13350 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
13351
13352 * newsticker.el: Commentary updated. Code formatting changed.
13353 (newsticker-version): Change to "1.9".
13354 (newsticker, newsticker-feed): Doc fix.
13355 (newsticker-url-list): Doc fix. Add option "Weekly".
13356 (newsticker-retrieval-interval): Add option "Weekly".
13357 (newsticker-headline-processing): Doc fix.
13358 (newsticker-auto-mark-filter): Remove.
13359 (newsticker-auto-mark-filter-list): New.
13360 (newsticker-layout, newsticker-sort-method): Doc fix.
13361 (newsticker-hide-old-items-in-newsticker-buffer)
13362 (newsticker-heading-format, newsticker-item-format)
13363 (newsticker-desc-format): Doc fix.
13364 (newsticker-show-all-rss-elements): Remove.
13365 (newsticker-show-all-news-elements): New.
13366 (newsticker-faces, newsticker-ticker): Doc fix.
13367 (remove-from-invisibility-spec): Code formatting.
13368 (newsticker--process-ids): New.
13369 (newsticker-mode): Doc fix.
13370 (newsticker-mode): Change mode-line-format.
13371 (newsticker-start): Remove debug output.
13372 (newsticker-start-ticker): Doc fix. Add autoload cookie.
13373 (newsticker-w3m-show-inline-images): Code formatting.
13374 (newsticker-next-item): Call `force-mode-line-update'.
13375 (newsticker-previous-item): Call `force-mode-line-update'.
13376 (newsticker-next-feed): Call `force-mode-line-update'.
13377 (newsticker-previous-feed): Call `force-mode-line-update'.
13378 (newsticker-mark-all-items-at-point-as-read): Code formatting.
13379 (newsticker-show-old-items): Do not show descs.
13380 (newsticker-hide-entry): Hide too much.
13381 (newsticker-hide-entry, newsticker-show-entry)
13382 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
13383 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
13384 (newsticker-toggle-auto-narrow-to-item): Code formatting.
13385 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
13386 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
13387 (newsticker-get-news): Call `force-mode-line-update'.
13388 Collect process ids.
13389 (newsticker--sentinel): Change coding system handling.
13390 Move image retrieval to new functions newsticker--get-logo-url-*.
13391 Move feed parsing to new functions newsticker--parse-*.
13392 Update list of process ids.
13393 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
13394 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
13395 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
13396 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
13397 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
13398 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
13399 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
13400 (newsticker--decode-coding-string): Remove.
13401 (newsticker--decode-numeric-entities): Check input. Format code.
13402 (newsticker--remove-whitespace): Check input.
13403 (newsticker--do-forget-preformatted): Doc fix.
13404 (newsticker--decode-rfc822-date): Allow for missing time.
13405 (newsticker--update-process-ids): New.
13406 (newsticker--image-sentinel): Change comment.
13407 (newsticker--image-read): Change error message.
13408 (newsticker--imenu-goto): Doc fix. Show headline title.
13409 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
13410 (newsticker--buffer-do-insert-text): Clean whitespace in
13411 html-rendered headline title. Code formatting.
13412 Call `newsticker--buffer-print-extra-elements'.
13413 (newsticker--buffer-print-extra-element): Remove.
13414 (newsticker--buffer-print-extra-elements): New.
13415 (newsticker--buffer-do-print-extra-element): New.
13416 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
13417 large sizes.
13418 (newsticker--run-auto-mark-filter)
13419 (newsticker--do-run-auto-mark-filter):
13420 Use `newsticker-auto-mark-filter-list'.
13421
13422 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
13423
13424 * net/rcirc.el: Use split-string OMIT-NULLS argument.
13425 (rcirc-print): Force redisplay before running hooks. Do long
13426 buffer truncation after making new text read-only. Deal with nil
13427 text when decoding strings. If TARGET is nil, use either the
13428 currently selected buffer, if it is an rcirc buffer and of the
13429 same process or the process buffer.
13430 (rcirc-mode): Remove header-line. Recompute short buffer names.
13431 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
13432 (rcirc-short-buffer-name): Add variable.
13433 (rcirc-kill-buffer-hook): Recompute short buffer names.
13434 Remove nick from private channel.
13435 (rcirc-send-input): Send command text to current-buffer.
13436 Don't clear overlay arrow here.
13437 (rcirc-short-buffer-name): Return a short buffer name.
13438 (rcirc-update-short-buffer-names, rcirc-abbreviate)
13439 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
13440 buffer-name abbreviations.
13441 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
13442 Do not touch nick-table when killing a parted channel.
13443 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
13444 Clear arrow from current buffer if it is now hidden.
13445 (rcirc-current-buffer): Add variable.
13446 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
13447 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
13448 Remove -face from names.
13449 (rcirc-update-activity-string): Print "DND" when globally ignoring
13450 activity.
13451 (rcirc-ignore-buffer-activity-flag): Rename from
13452 rcirc-ignore-channel-activity.
13453 (rcirc-ignore-all-activity-flag): Doc fix.
13454 (rcirc-channels): Remove variable.
13455 (rcirc-kill-buffer-hook):
13456 (rcirc-get-buffer-create): Add nick to private channel.
13457 (rcirc-multiline-edit-submit): Remove tabs.
13458 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
13459 folded.
13460 (rcirc-remove-nick-channel): Bug fix.
13461 (rcirc-toggle-ignore-buffer-activity): Rename from
13462 rcirc-toggle-ignore-channel-activity.
13463 (rcirc-record-activity): Add buffers to the front of the list.
13464 (rcirc-update-activity): Remove killed buffers from list.
13465 (rcirc-process-server-response-1): Remove last argument if it is
13466 null before calling handler.
13467 (rcirc): Add "rcirc" defcustom prefix.
13468 (rcirc-prompt): Simplify default prompt.
13469 Use custom-initialize-default.
13470 (rcirc-private-chats): Remove variable.
13471 (rcirc-prompt): Change initialization.
13472 (rcirc-version): Remove function.
13473 (rcirc-id-string): Add constant.
13474 (rcirc-last-buffer): Remove variable.
13475 (rcirc-buffer-alist): Add variable.
13476 (rcirc-connect): Update variable setup.
13477 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
13478 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
13479 default.
13480 (rcirc-handler-generic): Trigger activity.
13481 (rcirc-send-message): Create the buffor of the target.
13482 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
13483 (rcirc-get-buffer): Just return nil if there is no matching buffer.
13484 (rcirc-multiline-edit-cancel): Remove function.
13485 (rcirc-set-last-buffer): Remove function.
13486 (rcirc-get-any-buffer): Add function.
13487 (rcirc-join-channels): Don't print /join text.
13488 (rcirc-toggle-ignore-channel-activity): Add and update echo area
13489 messages.
13490 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
13491 (rcirc-handler-NOTICE): Recognize CTCP responses.
13492 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
13493 constructing TOPIC string for buffers we are not JOINed.
13494 (rcirc-handler-CTCP-response): Add handler.
13495 (rcirc-multiline-edit-submit): Restore the window-configuration
13496 before adjusting point.
13497 (rcirc): Add customization group.
13498 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
13499 (rcirc-user-full-name, rcirc-startup-channels-alist)
13500 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
13501 (rcirc-ignore-all-activity-flag, rcirc-time-format)
13502 (rcirc-input-ring-size, rcirc-read-only-flag)
13503 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
13504 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
13505 Change defvar to defcustom.
13506 (rcirc-update-prompt): Add optional ALL arg, which will update
13507 prompts in all rcirc buffers. Regexp quote replacement text.
13508 (rcirc-fill-column): Accept frame-width as a value.
13509 (rcirc-set-changed): Add function.
13510 (rcirc-next-active-buffer): Write more meaningful messages.
13511 (rcirc-faces): Add customization group.
13512 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
13513 (rcirc-nick-in-message-face, rcirc-prompt-face)
13514 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
13515 (with-rcirc-process-buffer): Move before first usage.
13516 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
13517 (rcirc-debug-flag): Rename from `rcirc-log-p'.
13518 (rcirc-debug): Rename from `rcirc-log'.
13519 (rcirc-format-response-string): Do not print `-' chars for a
13520 NOTICE with no sender. Simplify output of server responses.
13521
13522 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
13523
13524 (rcirc-browse-url-map, rcirc-browse-url-at-point)
13525 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
13526 Make urls mouse and RET clickable.
13527
13528 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
13529
13530 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
13531
13532 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
13533
13534 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
13535 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13536 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13537 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13538 argument to all these routines, so the passphrase can be managed
13539 externally and passed in to the system.
13540 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
13541 pgg-add-passphrase-to-cache function.
13542
13543 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
13544 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
13545 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
13546 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
13547 argument to all these routines, so the passphrase can be managed
13548 externally and passed in to the system.
13549 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
13550 function.
13551
13552 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
13553
13554 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
13555 from goto-address-url-regexp.
13556
13557 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
13558
13559 * textmodes/org.el (org-read-date, org-goto-calendar)
13560 (org-recenter-calendar, org-agenda-goto-calendar):
13561 Temporarily clear `calendar-move-hook'.
13562
13563 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
13564
13565 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
13566 merging.
13567
13568 * ediff-util.el (ediff-previous-difference): Don't skip regions that
13569 have merge clashes.
13570
13571 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13572
13573 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
13574 Undo previous change.
13575
13576 * startup.el (command-line): Use `custom-reevaluate-setting' for
13577 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
13578 tty-register-default-colors on Mac.
13579
13580 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
13581
13582 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
13583 (gdb-buffer-type): Make it automatically buffer local...
13584 (gdb-get-create-buffer): ...and set it accordingly.
13585 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
13586 actually work.
13587
13588 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
13589
13590 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
13591 not red.
13592
13593 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
13594
13595 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
13596 case GUD buffer is not visible.
13597 (gdb-goto-breakpoint): Try to force display in source buffer.
13598 (gdb-frame-gdb-buffer): Copy other similar functions.
13599 (gdb-restore-windows): Don't display source if not asked for.
13600 (gdb-assembler-buffer-name): Don't capitalise.
13601
13602 2005-11-03 Richard M. Stallman <rms@gnu.org>
13603
13604 * wid-edit.el (key-sequence): New widget type.
13605
13606 * simple.el (set-mark-command-repeat-pop): New variable.
13607 (set-mark-command): Only interpret plan C-@ after a pop as a pop
13608 if set-mark-command-repeat-pop is true.
13609
13610 * info.el (Info-fontify-node): Don't display extra "see" if there
13611 already is one here.
13612
13613 * mouse.el: Fix special handling of DEL after dragging a region:
13614 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
13615 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
13616
13617 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
13618
13619 * textmodes/ispell.el (ispell-command-loop): Change `i' description
13620 not to assume it pertains to an affix.
13621
13622 * textmodes/flyspell.el (flyspell-post-command-hook):
13623 Bind deactivate-mark to prevent deactivation.
13624
13625 2005-11-03 Lars Hansen <larsh@soem.dk>
13626
13627 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
13628 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
13629 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
13630
13631 2005-11-03 Romain Francoise <romain@orebokech.com>
13632
13633 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
13634 Update copyright years.
13635
13636 2005-11-03 Sam Steingold <sds@gnu.org>
13637
13638 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
13639 Use system-type instead of window-system because window-system is not
13640 correctly defined during loadup.
13641
13642 2005-11-02 Mark A. Hershberger <mah@everybody.org>
13643
13644 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
13645 (xml-parse-tag): Join strings separated by a comment properly.
13646
13647 2005-11-02 Andreas Schwab <schwab@suse.de>
13648
13649 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
13650
13651 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13652
13653 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
13654 (byte-optimize-pure-func): Quote the eval'd value.
13655
13656 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
13657 Rename from perl-font-lock-syntactic-face-function.
13658 Change the calling convention so it can be used as a font-lock MATCHER.
13659 Do the parse-partial-sexp loop outselves.
13660 (perl-font-lock-syntactic-keywords): Use it.
13661 (perl-mode): Don't set font-lock-syntactic-face-function any more.
13662
13663 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
13664
13665 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
13666 disassembly buffer too.
13667 (gdb-exited): Remove overlay arrows when execution has finished.
13668 (gdb-info-frames-custom, gdb-info-threads-custom)
13669 (gdb-info-registers-custom): Don't add inappropriate text
13670 properties if inferior is not active.
13671
13672 2005-11-02 Glenn Morris <rgm@gnu.org>
13673
13674 * progmodes/fortran.el (fortran-blink-match):
13675 Use `blink-matching-delay'.
13676
13677 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
13678
13679 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
13680
13681 2005-11-02 Lars Hansen <larsh@soem.dk>
13682
13683 * net/tramp.el (tramp-action-out-of-band): Handle scp message
13684 "Permission denied".
13685
13686 2005-11-01 Richard M. Stallman <rms@gnu.org>
13687
13688 * textmodes/flyspell.el (flyspell-external-point-words):
13689 Pass nil to flyspell-get-word.
13690
13691 2005-11-02 Kim F. Storm <storm@cua.dk>
13692
13693 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
13694 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
13695
13696 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
13697
13698 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
13699 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
13700 (calendar-mouse-print-dates): Add optional `event' argument.
13701 Update interactive-spec.
13702 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
13703 Use `calendar-event-to-date' instead of `event'.
13704
13705 2005-11-02 Masatake YAMATO <jet@gyve.org>
13706
13707 * progmodes/ld-script.el (ld-script-builtins):
13708 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
13709 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
13710 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
13711
13712 2005-11-01 Romain Francoise <romain@orebokech.com>
13713
13714 * vc-sccs.el: Update copyright year.
13715 * ezimage.el: Likewise.
13716
13717 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
13718
13719 * info.el (Info-fontify-node): Use `string-width' for fontifying
13720 underlined titles.
13721
13722 2005-11-01 Juri Linkov <juri@jurta.org>
13723
13724 * info.el (Info-fontify-node): Downcase node header keywords Node,
13725 Prev, Next, Up before comparison.
13726 (Info-history): Insert absolute directory name, and put invisible
13727 property on it.
13728
13729 2005-11-01 Juri Linkov <juri@jurta.org>
13730
13731 * info.el (Info-file-supports-index-cookies): New variable.
13732 (Info-find-node-2): Check makeinfo version for index cookie support.
13733 (Info-index-nodes): Search for nodes with index cookies only when
13734 Info-file-supports-index-cookies is t. Otherwise, search nodes
13735 with "Index" in the node name.
13736 (Info-index-node): Search index cookie in the current node only when
13737 Info-file-supports-index-cookies is t. Otherwise, check the word
13738 "Index" in the node name.
13739 (Info-find-emacs-command-nodes): Remove code that searches nodes
13740 with "Index" node name in the top menu.
13741
13742 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
13743
13744 * progmodes/scheme.el (scheme-mode-variables): Use the default
13745 comment-indent-function.
13746
13747 * faces.el (face-attribute): Handle the case where a face inherits from
13748 a non-existent face.
13749
13750 * simple.el (eval-expression-print-format): Use lisp-readable syntax
13751 for octal and hexa output, and merge the char into the paren.
13752 (kill-new): Use push.
13753 (copy-to-buffer): Use with-current-buffer.
13754 (completion-setup-function): Move code in loop to remove redundancy.
13755 (minibuffer-local-must-match-map): Don't add bindings that duplicate
13756 those inherited from minibuffer-local-completion-map.
13757
13758 * savehist.el (savehist-mode) <defcustom>:
13759 Use custom-set-minor-mode if available.
13760 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
13761 and emit a message if applicable.
13762
13763 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
13764
13765 * savehist.el: Sync up to version 19.
13766 (savehist-mode): New minor mode.
13767 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
13768 (savehist-length): Remove (use history-length instead).
13769 (savehist-file-modes): Rename from savehist-modes.
13770 (savehist-save-hook, savehist-loaded): New vars.
13771 (savehist-load): Use savehist-mode. Try to smooth up transition from
13772 old format to new format.
13773 (savehist-install): Allow savehist-autosave-interval to be nil.
13774 (savehist-save): Run the new hook. Be more careful to only trim the
13775 history variables.
13776 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
13777 (savehist-printable): Print into a buffer rather than char-by-char.
13778
13779 2005-11-01 John Wiegley <johnw@newartisans.com>
13780
13781 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
13782 toggle-ignore keybinding (C-a). The author said it had been
13783 disabled much earlier due to a possible incompatibility, but after
13784 many months of usage I have encountered no problems (and it is a
13785 rather useful option, especially for switching to " *temp*").
13786
13787 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
13788 support for OS/X's AddressBook, by calling out to the open source
13789 program "contacts" (installable through Fink).
13790
13791 * net/eudc.el (eudc-expand-inline): If the
13792 `eudc-multiple-match-handling-method' is set to `all', delete the
13793 query string before inserting the query result.
13794
13795 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
13796 flag, to prevent Eshell from using the system ls when
13797 `eshell-ls-insert-directory' is in used.
13798 (eshell-ls-insert-directory): Disable font-lock in directory
13799 buffer so that Eshell's own fontification is seen. This broke
13800 recently due to changes in font-lock, so this goes back to version
13801 21 behavior.
13802
13803 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
13804
13805 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
13806 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
13807 (gdb-many-windows): Doc fix.
13808
13809 2005-10-31 Romain Francoise <romain@orebokech.com>
13810
13811 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
13812
13813 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
13814
13815 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
13816 that global-font-lock-mode can be enabled by default.
13817
13818 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
13819 (font-lock-add-keywords, font-lock-remove-keywords)
13820 (font-lock-fontify-buffer): Remove autoload cookies.
13821
13822 * jit-lock.el (jit-lock-register): Likewise.
13823
13824 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
13825
13826 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
13827
13828 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
13829 intact if there is no gud-comint-buffer.
13830
13831 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
13832
13833 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
13834 old prompt comint-prompt-read-only is t and GDB commands are
13835 issued from tool bar etc.
13836
13837 2005-10-31 Masatake YAMATO <jet@gyve.org>
13838
13839 * vc.el (vc-directory-exclusion-list): Add "{arch}".
13840
13841 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
13842
13843 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
13844 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
13845
13846 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
13847
13848 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
13849 starting at beginning of line. Fontification is messed up when
13850 `open-paren-in-column-0-is-defun-start' set to t.
13851 Reported by John Paul Wallington <jpw@pobox.com>.
13852
13853 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
13854
13855 * comint.el (comint-send-input): Call `comint-update-fence' when
13856 `comint-process-echoes' and `comint-prompt-read-only' are both
13857 non-nil, to avoid leftover read-only newline.
13858
13859 2005-10-30 Richard M. Stallman <rms@gnu.org>
13860
13861 * textmodes/flyspell.el (flyspell-external-point-words):
13862 Detect when WORD can't be checked properly because
13863 flyspell-get-word finds just part of it, and move on.
13864
13865 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
13866 boundarychar for Polish.
13867 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
13868 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
13869
13870 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
13871
13872 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
13873 (gdb-registers-font-lock-keywords): Delete.
13874 (gdb-registers-mode): Don't fontify.
13875 (gdb-info-registers-custom): Use text properties instead as, in
13876 future, changed register values will use font-lock-warning-face.
13877 (gdb-local-font-lock-keywords): Rename to...
13878 (gdb-locals-font-lock-keywords): ...for consistency.
13879
13880 2005-10-30 Andre Spiegel <spiegel@gnu.org>
13881
13882 * vc.el (vc-switch-backend): Better error message if the buffer is
13883 not visiting a file under version control.
13884
13885 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
13886
13887 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
13888
13889 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
13890 ~/.emacs.d/.emacs.
13891
13892 2005-10-29 Richard M. Stallman <rms@gnu.org>
13893
13894 * replace.el (occur-mode-mouse-goto): Always go to other window.
13895 (occur-mode-goto-occurrence): Always switch in same window.
13896
13897 * simple.el (undo): Display message at end, not at start.
13898
13899 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
13900 New arg REUSE-CELL.
13901 (cancel-timer-internal): New function.
13902 (timer-event-handler): Use cancel-timer-internal,
13903 and pass the cell it returns to timer-activate...
13904
13905 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
13906 (jit-lock-deferred-fontify, jit-lock-context-fontify)
13907 (jit-lock-after-change): Test memory-full.
13908
13909 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
13910
13911 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13912 part of the decoded armor to find the key-identifier.
13913 (pgg-gpg-lookup-key-owner): New function to return the
13914 human-readable identifier of a key owner.
13915 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
13916 key itself.
13917 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13918 the key value) if we have a key and can match it against a secret
13919 key. Also, added a note pointing out fact that the prompt only
13920 indicates the first matching key.
13921
13922 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
13923 pgg-decrypt-region.
13924 (pgg-pending-timers): A new hash for tracking the passphrase cache
13925 timers, so that new ones supercede old ones.
13926 (pgg-add-passphrase-to-cache): Rename from
13927 `pgg-add-passphrase-cache' to reduce confusion (all callers
13928 changed). Modified to cancel old timers when new ones are added.
13929 (pgg-remove-passphrase-from-cache): Rename from
13930 `pgg-remove-passphrase-cache' to reduce confusion (all callers
13931 changed). Modified to cancel old timers when their keys are
13932 removed from the cache.
13933 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
13934 XEmacs, an indirection to delete-itimer.
13935 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
13936 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
13937 users can only check cache without risk of prompting. Correct bug in
13938 notruncate behavior.
13939 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
13940 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
13941 Add informative docstrings.
13942 (pgg-decrypt): Convey provided passphrase in subordinate call to
13943 pgg-decrypt-region.
13944
13945 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13946 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13947 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13948 `passphrase' argument, so the passphrase can be managed externally
13949 and then passed in to the system.
13950
13951 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13952 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
13953 so the passphrase cache can be used reliably with identifiers
13954 besides a pgp packet's key id.
13955
13956 * pgg-gpg.el (pgg-pgp-encrypt-region)
13957 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
13958 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
13959 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
13960 argument to all these routines, so the passphrase can be managed
13961 externally and passed in to the system.
13962
13963 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13964 `notruncate' argument, so the passphrase cache can be used
13965 reliably with identifiers besides a pgp packet's key id.
13966
13967 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
13968
13969 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13970 symmetric encryption.
13971 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13972 encrypted session key.
13973 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13974 message ask for the passphrase in a proper way.
13975
13976 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13977 New user commands for symmetric encryption.
13978
13979 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
13980
13981 * textmodes/conf-mode.el (conf-assignment-sign)
13982 (conf-assignment-regexp): Fix docstrings.
13983 (conf-mode-initialize): New function.
13984 (conf-mode): Remove optional args. Use delay-mode-hooks to
13985 recognize recursive calls.
13986 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
13987 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
13988 (conf-xdefaults-mode): Use define-derived-mode and
13989 conf-mode-initialize.
13990
13991 2005-10-29 Romain Francoise <romain@orebokech.com>
13992
13993 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
13994
13995 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
13996
13997 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13998 part of the decoded armor to find the key-identifier.
13999 (pgg-gpg-lookup-key-owner): New function to return the
14000 human-readable identifier of a key owner.
14001 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
14002 key itself.
14003 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
14004 the key value) if we have a key and can match it against a secret
14005 key. Also, added a note pointing out fact that the prompt only
14006 indicates the first matching key.
14007
14008 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
14009 pgg-decrypt-region.
14010 (pgg-pending-timers): A new hash for tracking the passphrase cache
14011 timers, so that new ones supercede old ones.
14012 (pgg-add-passphrase-to-cache): Rename from
14013 `pgg-add-passphrase-cache' to reduce confusion (all callers
14014 changed). Modified to cancel old timers when new ones are added.
14015 (pgg-remove-passphrase-from-cache): Rename from
14016 `pgg-remove-passphrase-cache' to reduce confusion (all callers
14017 changed). Modified to cancel old timers when their keys are
14018 removed from the cache.
14019 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
14020 XEmacs, an indirection to delete-itimer.
14021 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
14022 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
14023 users can only check cache without risk of prompting. Correct bug in
14024 notruncate behavior.
14025 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
14026 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
14027 Add informative docstrings.
14028 (pgg-decrypt): Convey provided passphrase in subordinate call to
14029 pgg-decrypt-region.
14030
14031 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
14032
14033 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
14034 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
14035 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
14036 `passphrase' argument, so the passphrase can be managed externally
14037 and then passed in to the system.
14038
14039 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
14040 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
14041 so the passphrase cache can be used reliably with identifiers
14042 besides a pgp packet's key id.
14043
14044 * pgg-gpg.el (pgg-pgp-encrypt-region)
14045 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
14046 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
14047 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
14048 argument to all these routines, so the passphrase can be managed
14049 externally and passed in to the system.
14050
14051 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
14052 `notruncate' argument, so the passphrase cache can be used
14053 reliably with identifiers besides a pgp packet's key id.
14054
14055 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
14056
14057 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
14058 symmetric encryption.
14059 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
14060 encrypted session key.
14061 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
14062 message ask for the passphrase in a proper way.
14063
14064 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
14065 New user commands for symmetric encryption.
14066
14067 2005-10-28 Bill Wohler <wohler@newt.com>
14068
14069 * help-mode.el (help-url): New button type. Calls browse-url.
14070 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
14071 Similar to Info nodes: URL `url'.
14072 (help-make-xrefs): Create help-url buttons for
14073 help-xref-url-regexp matches.
14074
14075 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
14076
14077 * tool-bar.el (tool-bar-add-item-from-menu)
14078 (tool-bar-local-item-from-menu): Fix doc strings.
14079
14080 2005-10-28 Romain Francoise <romain@orebokech.com>
14081
14082 * ldefs-boot.el: Update.
14083
14084 * subr.el (locate-library): Move from help-fns.el.
14085 * help-fns.el (locate-library): Move to subr.el.
14086
14087 2005-10-28 Richard M. Stallman <rms@gnu.org>
14088
14089 * net/tramp.el (tramp-completion-mode): defvar moved up.
14090
14091 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
14092
14093 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
14094
14095 * files.el (find-file-noselect): Use %d to format large file size.
14096
14097 * bindings.el (mode-line-format): Add %e.
14098
14099 * loadup.el ("facemenu"): Load unconditionally.
14100 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
14101 ("x-dnd"): Load, when appropriate.
14102
14103 * startup.el (command-line): Call before-init-hook earlier.
14104 Warn about some bad characters in -u user name.
14105
14106 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
14107 (flyspell-external-point-words): Error if misspelled word is not found.
14108 Set flyspell-large-region-beg at end of word.
14109
14110 2005-10-28 Andreas Schwab <schwab@suse.de>
14111
14112 * view.el (View-revert-buffer-scroll-page-forward):
14113 Use view-page-size-default.
14114
14115 2005-10-28 Juri Linkov <juri@jurta.org>
14116
14117 * international/quail.el (quail-get-current-str): Translate last
14118 raw character for deterministic input methods.
14119
14120 2005-10-27 Jay Belanger <belanger@truman.edu>
14121
14122 * calc/calc-ext.el: Add functions to autoloads.
14123 (math-identity-matrix-p, math-ident-row-p): New functions.
14124
14125 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
14126 multiplication by an identity matrix; don't turn multiplication by
14127 an inverse matrix into division.
14128 (math-div-symbol-fancy): Replace division by matrices with
14129 multiplication by inverse.
14130
14131 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
14132
14133 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
14134 (calc-writeoutpower): New functions.
14135
14136 2005-10-27 Romain Francoise <romain@orebokech.com>
14137
14138 * replace.el (occur-engine): Include colon in mouse-face highlight.
14139
14140 * dired-x.el: Change Maintainer field.
14141
14142 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
14143
14144 * longlines.el (longlines-mode): Bind after-change-functions to
14145 nil during initial decoding and final encoding.
14146
14147 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
14148
14149 * term.el (term-emulate-terminal, term-handle-colors-array)
14150 (term-handle-ansi-escape): Specify the terminfo capabilities
14151 implemented.
14152
14153 2005-10-26 Richard M. Stallman <rms@gnu.org>
14154
14155 * info.el (Info-fontify-node): Fix detection of sentence-break
14156 before *Note.
14157
14158 2005-10-26 Romain Francoise <romain@orebokech.com>
14159
14160 * smerge-mode.el: Add `tools' to file keywords.
14161
14162 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
14163
14164 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
14165 when the fringe is not available.
14166
14167 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
14168 (def-gdb-auto-update-trigger): Simplify construction.
14169 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
14170 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
14171 defined explicitly.
14172 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
14173 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
14174 defined explicitly.
14175 (gdb-info-locals-custom): Remove as it's a no-op.
14176
14177 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
14178
14179 * longlines.el (longlines-mode): Remove narrowing before
14180 performing the initial decoding or final encoding.
14181
14182 2005-10-25 Romain Francoise <romain@orebokech.com>
14183
14184 * emacs-lisp/find-func.el (find-library-name): Also strip
14185 extension if library name ends in .el, to take advantage of
14186 `find-library-suffixes'.
14187
14188 2005-10-25 Richard M. Stallman <rms@gnu.org>
14189
14190 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
14191
14192 2005-10-25 Juri Linkov <juri@jurta.org>
14193
14194 * textmodes/texinfo.el (texinfo-mode): Change charset of one
14195 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
14196
14197 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14198
14199 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
14200 (blackbox-redefine-key): Add argument `map'.
14201
14202 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
14203 regions when moving the jit-lock-context-unfontify-pos boundary.
14204
14205 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
14206
14207 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
14208
14209 2005-10-25 Masatake YAMATO <jet@gyve.org>
14210
14211 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
14212
14213 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
14214
14215 * play/blackbox.el (blackbox-redefine-key): New function.
14216 (blackbox-mode-map): Use it to remap existing bindings for cursor
14217 motion instead of binding literal keys.
14218
14219 2005-10-25 Glenn Morris <rgm@gnu.org>
14220
14221 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
14222 diary does not end in a newline. Do not assume a blank line at
14223 the start of the diary file.
14224
14225 2005-10-25 Kenichi Handa <handa@m17n.org>
14226
14227 * international/quail.el (quail-translate-key): If the input
14228 method is deterministic and failed to handle the last key, restart
14229 the key handling loop from an appropriate key.
14230
14231 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
14232
14233 * vc.el (vc-dired-mode): Extend comment for binding of
14234 `directory-listing-before-filename-regexp'.
14235
14236 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14237
14238 * textmodes/texinfo.el (texinfo-mode):
14239 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
14240 not to unnecessarily expose emacs-mule's internal char codes.
14241
14242 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
14243
14244 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
14245 Display hand pointer and help-echo on disabled icon too.
14246 (gdb-mouse-until): New function.
14247 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
14248
14249 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
14250
14251 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
14252 with 2005-10-23 change to doctor.el.
14253
14254 * finder.el (finder-mode-map): Add follow-link binding.
14255
14256 2005-10-25 Kim F. Storm <storm@cua.dk>
14257
14258 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
14259 to gdb-mouse-toggle-breakpoint-fringe.
14260 (gdb-mouse-toggle-breakpoint-margin): Rename from
14261 gdb-mouse-toggle-breakpoint. Fix doc.
14262 (gdb-mouse-toggle-breakpoint-fringe): New defun.
14263 (gdb-put-string): Add optional SPROPS arg. Add props to string.
14264 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
14265 string properties also for fringe breakpoint bitmaps.
14266
14267 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
14268
14269 * textmodes/org.el (org-start-icalendar-file): Fix format form.
14270
14271 2005-10-25 Masatake YAMATO <jet@gyve.org>
14272
14273 * simple.el (completion-common-substring):
14274 Use `completion-common-substring' prior to `completion-base-size'.
14275
14276 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
14277
14278 * savehist.el: Require CL while compiling.
14279 (savehist-history-variables): Remove.
14280 (savehist-save-minibuffer-history, savehist-additional-variables)
14281 (savehist-minibuffer-history-variables): New vars.
14282 (savehist-save): Use them.
14283 (savehist-uninstall, savehist-minibuffer-hook): New funs.
14284 (savehist-install): New fun, extracted from savehist-load.
14285 (savehist-load): Use them.
14286
14287 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
14288
14289 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
14290 a dummy doc-string-elt property.
14291 (defalias, defvaralias, define-category): Add a docstring property.
14292
14293 * image.el (defimage):
14294 * widget.el (define-widget):
14295 * custom.el (defface, defcustom): Add `doc-string' declaration.
14296
14297 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
14298 (defadvice): Add `doc-string' declaration.
14299
14300 * emacs-lisp/byte-run.el (macro-declaration-function):
14301 Handle `doc-string' declarations.
14302 (define-obsolete-function-alias, define-obsolete-variable-alias):
14303 Add `doc-string' declaration.
14304
14305 2005-10-24 Kenichi Handa <handa@m17n.org>
14306
14307 * international/utf-7.el (utf-7): Add autoload cookie.
14308
14309 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
14310
14311 2005-10-24 Eli Zaretskii <eliz@gnu.org>
14312
14313 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
14314 list of directories passed to batch-update-autoloads. Add "." to
14315 the list of the echoed directories.
14316
14317 * pgg-def.el:
14318 * pgg-gpg.el:
14319 * pgg-parse.el:
14320 * pgg-pgp.el:
14321 * pgg-pgp5.el:
14322 * pgg.el: Moved here from the gnus subdirectory.
14323
14324 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
14325
14326 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
14327 in case comint-prompt-read-only is set to t.
14328
14329 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
14330 in case comint-prompt-read-only is set to t.
14331
14332 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
14333
14334 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
14335 Now a string.
14336 (icalendar-import-format): Handle CLASS, STATUS, URL.
14337 Rename `subject' to `summary'.
14338 (icalendar-import-format-summary): Rename from
14339 `icalendar-import-format-subject'.
14340 (icalendar-import-format-url, icalendar-import-format-status)
14341 (icalendar-import-format-class): New variables.
14342 (icalendar--rris): Take variable argument list.
14343 (icalendar--datestring-to-isodate): Remove unnecessary
14344 calendar-style check when converting dates with explicit month names.
14345 (icalendar-export-region): Change return type of conversion
14346 subroutines. Bury current buffer unless error occurred.
14347 (icalendar--convert-to-ical)
14348 (icalendar--parse-summary-and-rest): New functions.
14349 (icalendar--convert-ordinary-to-ical)
14350 (icalendar--convert-weekly-to-ical)
14351 (icalendar--convert-yearly-to-ical)
14352 (icalendar--convert-block-to-ical)
14353 (icalendar--convert-cyclic-to-ical)
14354 (icalendar--convert-anniversary-to-ical): Change return type.
14355 Strip trailing blanks from subject.
14356 (icalendar--convert-sexp-to-ical): Change return type.
14357 Strip trailing blanks from subject. Handle simple sexp
14358 entries as generated by icalendar.el.
14359 (icalendar--convert-float-to-ical)
14360 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
14361 (icalendar-import-file): Doc fix.
14362 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
14363 Correct call to icalendar--rris.
14364 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
14365 `summary'.
14366 (icalendar--add-diary-entry): Rename `subject' to `summary'.
14367
14368 2005-10-24 Romain Francoise <romain@orebokech.com>
14369
14370 * server.el (server-sentinel): Set query-on-exit flag to nil on
14371 new client processes (it isn't inherited from the server process).
14372
14373 * replace.el (occur-engine): Rearrange text properties.
14374
14375 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
14376
14377 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
14378 case-fold-search is nil.
14379 (debug-help-follow): Use help-xref-interned directly.
14380
14381 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
14382
14383 * thumbs.el (thumbs-image-type): Add .pbm.
14384
14385 2005-10-23 Richard M. Stallman <rms@gnu.org>
14386
14387 * faces.el (inhibit-face-set-after-frame-default): New variable.
14388 (set-face-attribute): Bind it.
14389 (face-set-after-frame-default): Test it.
14390
14391 * help-fns.el (describe-simplify-lib-file-name): New function.
14392 (describe-function-1, describe-variable): Use it.
14393
14394 * faces.el (describe-face): Use describe-simplify-lib-file-name.
14395
14396 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
14397 Eliminate nil as possible value.
14398 (tooltip-hide-delay): Reduce internal-border-width.
14399
14400 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
14401 (menu-bar-file-menu) <new-file>: Likewise.
14402
14403 * simple.el (line-move-finish): Ignore fields computing LINE-END.
14404
14405 * international/mule.el (load-with-code-conversion):
14406 Pass full file name to `eval-buffer' unless preloading.
14407
14408 * textmodes/flyspell.el (flyspell-large-region):
14409 Call ispell-check-version.
14410
14411 * textmodes/ispell.el (ispell-local-dictionary-overridden):
14412 Fix the make-variable-buffer-local call that was supposed
14413 to be for this variable.
14414 (ispell-aspell-supports-utf8): Doc fix.
14415 (ispell-find-aspell-dictionaries): Preserve elements of
14416 ispell-dictionary-alist for dictionaries that aspell doesn't report.
14417 (ispell-aspell-find-dictionary): Return nil on error.
14418
14419 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
14420 (doctor-symptoms): Likewise.
14421
14422 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
14423
14424 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
14425
14426 * cus-edit.el (custom-button, custom-button-pressed): New vars.
14427 (custom-raised-buttons): Add :set spec.
14428 (custom-button-unraised, custom-button-pressed-unraised):
14429 New faces, so that custom-raised-buttons actually does something.
14430 (custom-mode): Use custom-button and custom-button-pressed.
14431
14432 * wid-edit.el (widget-specify-button): Don't ignore
14433 widget-mouse-face on graphic terminals.
14434 (widget-move-and-invoke): Cleanup.
14435
14436 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
14437
14438 * whitespace.el (whitespace-cleanup): Doc fix.
14439
14440 2005-10-23 Romain Francoise <romain@orebokech.com>
14441
14442 * emulation/viper.el (viper-set-hooks): Quote forms passed to
14443 `eval-after-load' to avoid evaluating their result.
14444
14445 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
14446
14447 * files.el (directory-listing-before-filename-regexp):
14448 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
14449
14450 * dired.el (dired-move-to-filename-regexp): Remove.
14451 All occurences replaced by `directory-listing-before-filename-regexp'.
14452
14453 * dired-x.el, locate.el, vc.el:
14454 Replace `dired-move-to-filename-regexp' by
14455 `directory-listing-before-filename-regexp'. In vc.el it is
14456 overwritten locally; maybe this can be handled in files.el too.
14457
14458 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
14459 replaced by `directory-listing-before-filename-regexp'.
14460
14461 2005-10-23 Andreas Schwab <schwab@suse.de>
14462
14463 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
14464 and eval-next-after-load.
14465
14466 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
14467
14468 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
14469 exist, create it.
14470
14471 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
14472
14473 * allout.el: Remove autoloads for mailcrypt and crypt++.
14474 Require pgg, pgg-gpg during compilation.
14475 (allout-version): Increment version number to 2.1, and use a literal
14476 rather than RCS Id.
14477 (allout-default-encryption-scheme): Remove.
14478 (allout-passphrase-verifier-handling)
14479 (allout-passphrase-verifier-string)
14480 (allout-file-passphrase-verifier-string)
14481 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
14482 (allout-passphrase-hint-handling): Rename and simplify.
14483 (allout-init): Use `find-file-hook' if available, otherwise
14484 `find-file-hooks'.
14485 (allout-mode): Use `write-file-functions' if available, otherwise
14486 `local-write-file-hooks' and, instead of making auto-save-hook
14487 buffer local, make the write-file-hook activity contingent to
14488 allout-mode.
14489 (allout-mode): Use key-binding substitution in the docstring.
14490 (allout-kill-line): Spell-out kill ring data structure mutation
14491 instead of using byte-compiler-complaint-provoking `pop'.
14492 (allout-insert-listified): Use `insert' rather than `insert-string'
14493 (allout-toggle-current-subtree-encryption): Update docstring, adjust
14494 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
14495 (allout-encrypt-string): Totally revamped vis new underlying
14496 encryption facilities.
14497 (allout-mc-activate-passwd): Remove.
14498 (allout-obtain-passphrase): New, more or less replaces
14499 allout-mc-activate-passwd.
14500 (allout-encrypted-key-info): More or less replaces
14501 allout-encrypted-text-type.
14502 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
14503 (my-mark-marker): Use `(featurep 'xemacs)'.
14504
14505 2005-10-23 Lars Hansen <larsh@soem.dk>
14506
14507 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
14508 (byte-compile-file-form-defmumble, byte-compile-defun)
14509 (byte-compile-defmacro): Use it.
14510 (byte-compile-form): Don't call byte-compile-set-symbol-position
14511 when a byte-compile handler is called.
14512
14513 2005-10-22 Romain Francoise <romain@orebokech.com>
14514
14515 * savehist.el (savehist-history-variables): Add `grep-find-history'.
14516
14517 * subr.el (eval-after-load): Convert library name to an absolute
14518 file name using locate-library, since load-history no longer has
14519 library names in it.
14520
14521 2005-10-22 Richard M. Stallman <rms@gnu.org>
14522
14523 * files.el (make-temp-file): Move from subr.el.
14524 * subr.el (make-temp-file): Move to files.el.
14525
14526 * window.el (get-buffer-window-list): Move from subr.el.
14527 * subr.el (get-buffer-window-list): Move to window.el.
14528
14529 * image.el (image-load-path): Use eval-at-startup to initialize.
14530
14531 * subr.el (eval-at-startup): New macro.
14532
14533 * subr.el: Much rearrangement of functions and division
14534 into pages. No code changes.
14535
14536 2005-10-22 Kenichi Handa <handa@m17n.org>
14537
14538 * tar-mode.el (tar-extract): Be sure to call
14539 find-operation-coding-system if set-auto-coding doesn't find a
14540 coding system.
14541
14542 2005-10-22 Kim F. Storm <storm@cua.dk>
14543
14544 * image.el (image-type-header-regexps): Rename from image-type-regexps.
14545 Change users.
14546 (image-type-file-name-regexps): New defconst.
14547 (image-type-from-data): Simplify loop.
14548 (image-type-from-buffer): New defun.
14549 (image-type-from-file-header): Use it instead of image-type-from-data.
14550 Use image-search-load-path instead of only looking in data-directory.
14551 (image-type-from-file-name): New defun.
14552 (image-search-load-path): Change `pathname' to `filename'.
14553 Make PATH arg optional, default to image-load-path.
14554
14555 2005-10-21 Richard M. Stallman <rms@gnu.org>
14556
14557 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
14558
14559 * textmodes/paragraphs.el (sentence-end-base): New variable.
14560 (sentence-end): Use sentence-end-base.
14561
14562 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
14563
14564 * font-lock.el (font-lock-default-fontify-region): Check the multiline
14565 property independently from the font-lock-multiline variable.
14566
14567 2005-10-21 Richard M. Stallman <rms@gnu.org>
14568
14569 * emacs-lisp/find-func.el (find-library-name): Doc fix.
14570
14571 * startup.el (command-line): Convert library names
14572 in `load-history' to absolute file names.
14573
14574 * subr.el (symbol-file): Doc fix.
14575
14576 * loadhist.el (file-loadhist-lookup): Call locate-library
14577 instead of find-library-name. Don't try converting
14578 abs file names to library names, since load-history no longer
14579 has library names in it.
14580 (file-dependents, file-provides, file-requires): Doc fixes.
14581
14582 2005-10-21 Juri Linkov <juri@jurta.org>
14583
14584 * progmodes/etags.el (tags-table-mode): New function.
14585 (tags-verify-table): Replace initialize-new-tags-table with
14586 tags-table-mode.
14587
14588 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
14589 default value.
14590 (desktop-modes-not-to-save): Add tags-table-mode to the
14591 default value.
14592
14593 * info.el (Info-index-next): Add total number of index
14594 alternatives to the message.
14595
14596 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
14597 backward only space (instead of space and period) before looking
14598 at sentence end.
14599
14600 * simple.el (set-variable): Use user-variable-p instead of symbolp.
14601 Add the old variable value as 4th default-value arg of read-string.
14602
14603 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14604
14605 * cus-face.el (custom-declare-face): Make face from X resources
14606 also on Mac.
14607
14608 * disp-table.el (standard-display-g1, standard-display-graphic):
14609 Refuse to use string glyphs also on Mac.
14610 (standard-display-european): Don't set terminal coding system also
14611 on Mac.
14612
14613 * frame.el (display-screens): Use x-display-screens also on Mac.
14614
14615 2005-10-21 Romain Francoise <romain@orebokech.com>
14616
14617 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
14618
14619 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
14620
14621 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
14622 and $? into sexps.
14623
14624 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
14625 warning face on open-paren-in-column-0.
14626
14627 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
14628 boundary case. Fix typo.
14629 Suggested by Martin Rudalics <rudalics@gmx.at>.
14630
14631 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
14632
14633 * textmodes/org.el (org-combined-agenda-icalendar-file)
14634 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
14635 (org-export-icalendar-this-file)
14636 (org-export-icalendar-all-agenda-files)
14637 (org-export-icalendar-combine-agenda-files): New commands.
14638 (org-export-icalendar, org-print-icalendar-entries)
14639 (org-start-icalendar-file, org-finish-icalendar-file)
14640 (org-ical-ts-to-string): New functions.
14641 (org-read-date, org-goto-calendar)
14642 (org-agenda-goto-calendar): Inhibit displaying diary entries by
14643 call to `calendar'.
14644 (orgtbl-setup): Remove the :keys arguments from the menu description.
14645 (org-after-save-iCalendar-file-hook): New variable.
14646
14647 2005-10-21 Kenichi Handa <handa@m17n.org>
14648
14649 * language/vietnamese.el (tcvn-5712): Make it an alias of
14650 vietnamese-tcvn coding-system.
14651
14652 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
14653
14654 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
14655 group id is given.
14656
14657 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
14658
14659 * progmodes/sh-script.el (sh-escaped-line-re): New var.
14660 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
14661 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
14662 whose line is either continued or ends with a comment.
14663
14664 2005-10-20 Romain Francoise <romain@orebokech.com>
14665
14666 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
14667
14668 * replace.el (occur-engine): Add follow-link property.
14669
14670 * font-core.el (font-lock-mode): Doc fix.
14671
14672 2005-10-20 Richard M. Stallman <rms@gnu.org>
14673
14674 * net/rcirc.el: New file.
14675
14676 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
14677
14678 * term.el (term-term-name): Initialize to "eterm-color".
14679
14680 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
14681
14682 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
14683 for encryption functionality.
14684 Move allout customization subgroup from `editing' to `outlines' group.
14685 Fix commentary keywords to legitimate ones.
14686 Update author info (using my current email address, obscurified).
14687 (allout-encrypt-string, allout-encryption-produce-work-buffer)
14688 (allout-encrypted-topic-p, allout-encrypted-text-type)
14689 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
14690 (allout-situate-encryption-key-verifier)
14691 (allout-get-encryption-key-verifier, allout-verify-key)
14692 (allout-next-topic-pending-encryption)
14693 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
14694 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
14695 (outline-key-verifier-handling, outline-key-hint-handling)
14696 (outline-encrypt-unencrypted-on-saves): New defcustoms.
14697 (allout-file-key-verifier-string, allout-encryption-scheme)
14698 (allout-key-verifier-string, allout-key-hint-string)
14699 (allout-after-save-decrypt): New variables.
14700 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
14701 (allout-after-saves-handler): New hook functions.
14702 (allout-post-command-business): Do allout-after-save-decrypt.
14703 (allout-enable-file-variable-adjustment): Custom var to enable
14704 mechanism for adding and adjusting settings of Emacs file variables.
14705 (allout-adjust-file-variable, allout-file-vars-section-data):
14706 New functions, implement the mechanism.
14707 (outlineify-sticky): Use the file vars mechanism.
14708 (allout-inhibit-protection, allout-during-write-cue)
14709 (allout-override-protect, allout-before-change-protect): Remove.
14710 (allout-flag-region, allout-open-topic): Adjust read-only text.
14711 (allout-open-line-not-read-only): Add to facilitate read-only
14712 text based protection.
14713 (allout-kill-line): Revise to adjust read-only text, clue the
14714 user about the inhibition.
14715 (allout-unprotected): Use unwind-protect.
14716 (allout-shift-in, allout-shift-out): Disallow manually shifting a
14717 topic deeper than the offspring depth of the previous topic -
14718 avoiding confusing "containment discontinuities".
14719 (allout-reindent-bodies): Fix retention of body relative hanging
14720 indent during promotion of collapsed bodies.
14721 (allout-open-topic): Make it easy to open new topic with same
14722 bullet as current topic - topic creation functions provided with
14723 any universal argument provokes now prompt for bullet, defaulting
14724 to the bullet of the previous topic.
14725 (allout-plain-bullets-string, allout-distinctive-bullets-string):
14726 Plain bullet alternates `.' period and `,' comma only. All other
14727 bullets are relegated to special status (but customizable).
14728 (allout-end-of-entry): Rename from allout-end-of-current-entry
14729 since it actually operates w.r.t. most immediately containing
14730 entry, visible or not.
14731 (allout-hide-current-entry, allout-show-current-entry): Use the
14732 revised version.
14733 (allout-old-expose-topic): Solidify deprecation.
14734 (allout-end-of-subtree): Add so we can span concealed as well
14735 as visible topics.
14736 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
14737 (allout-end-of-current-heading): Tweak to just respect the first line.
14738 (allout-get-body-text): Add.
14739 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
14740 when invoked interactively.
14741 (allout-up-current-level): Use `interactive-p'.
14742 (allout-mode, allout-init): Miscellaneous docstring and
14743 operational refinements, as well as hookups of new encryption stuff.
14744 (allout-beginning-of-current-entry): Now works as advertised.
14745 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
14746 (allout-isearch-rectification): Refine condition for isearching.
14747 (allout-isearch-abort, allout-enwrap-isearch)
14748 (allout-flag-region, my-region-active-p): Relocate some macros.
14749 (allout-title): Fallback title is (buffer-name), not
14750 non-existing (current-buffer-name).
14751 (subst-char-in-string): Define if absent (for some XEmacs versions).
14752
14753 2005-10-20 Jari Aalto <jari.aalto@cante.net>
14754
14755 * mail/sendmail.el (mail-setup-hook, mail-aliases)
14756 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
14757 (mail-citation-prefix-regexp, mail-signature-file)
14758 (mail-default-headers, mail-bury-selects-summary)
14759 (mail-send-nonascii): Add autoload cookies.
14760
14761 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
14762
14763 * frame.el (blink-cursor-mode): Add `mac' to the list of
14764 window-system's that support blinking cursor.
14765
14766 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
14767
14768 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
14769
14770 2005-10-20 Eli Zaretskii <eliz@gnu.org>
14771
14772 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
14773 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
14774 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
14775
14776 2005-10-20 Kim F. Storm <storm@cua.dk>
14777
14778 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
14779 (ido-set-current-directory): Don't add / after final @.
14780 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
14781 Explicitly handle ange-ftp completion oddities.
14782 (ido-make-file-list): Don't rotate list at tramp root to avoid
14783 triggering tramp file handler for expand-file-name via get-file-buffer.
14784
14785 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
14786
14787 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
14788
14789 2005-10-19 Jay Belanger <belanger@truman.edu>
14790
14791 * calc/calc-units.el (math-standard-units): Add units, adjust
14792 symbols and update values.
14793 (math-unit-prefixes): Add more prefixes.
14794
14795 2005-10-19 Romain Francoise <romain@orebokech.com>
14796
14797 * bookmark.el (bookmark-menu-heading): New face.
14798 (bookmark-bmenu-list): Use it.
14799 Don't fiddle with `baud-rate' at top-level.
14800
14801 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
14802
14803 * image.el (create-image, find-image): Mention max-image-size in
14804 docstring.
14805
14806 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
14807
14808 * savehist.el (savehist-load): Revert to checking XEmacs.
14809
14810 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
14811 Various docstring and line-width fixups.
14812 (conf-mode): Use cond.
14813 Set font-lock-defaults. Don't set comment-use-syntax.
14814
14815 2005-10-18 David Ponce <david@dponce.com>
14816
14817 * tree-widget.el (tree-widget-button-click): New function.
14818 (tree-widget-button-keymap): Use it.
14819
14820 2005-10-18 Romain Francoise <romain@orebokech.com>
14821
14822 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
14823 (bookmark-bmenu-hide-filenames): Add follow-link property.
14824 Improve help-echo text.
14825
14826 * ffap.el (find-file-at-point): Doc fix.
14827
14828 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14829
14830 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
14831
14832 2005-10-18 Masatake YAMATO <jet@gyve.org>
14833
14834 Install to the CVS repository what I forgot to install in my
14835 2005-10-16 changes.
14836
14837 * progmodes/python.el (python-complete-symbol): Pass the common
14838 prefix substring of completion to `display-completion-list'.
14839
14840 * textmodes/org.el (org-complete): Ditto.
14841
14842 2005-10-18 Masatake YAMATO <jet@gyve.org>
14843
14844 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
14845
14846 * woman.el (WoMan-xref-man-page): New button type derived
14847 from `Man-abstract-xref-man-page'.
14848 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
14849
14850 * man.el (Man-abstract-xref-man-page): New button type.
14851 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
14852 (Man-highlight-references): Add new optional argument `xref-man-type'.
14853
14854 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
14855
14856 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
14857
14858 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
14859
14860 * cus-edit.el (Custom-move-and-invoke): Delete.
14861 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
14862
14863 * wid-edit.el (widget-move-and-invoke): New function, from
14864 Custom-move-and-invoke.
14865
14866 2005-10-17 Bill Wohler <wohler@newt.com>
14867
14868 Move all remaining images from lisp/toolbar to etc/images, move
14869 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
14870 the low resolution images in their own directory (low-color).
14871
14872 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
14873 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
14874 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
14875 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
14876 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
14877 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
14878 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
14879
14880 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
14881 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
14882 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
14883 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
14884 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
14885 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
14886 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
14887 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
14888 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
14889 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
14890 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
14891 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
14892 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
14893 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
14894 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
14895
14896 To conform with convention, replace the underscore (_) in the
14897 following image names with dash (-) or (/) as appropriate.
14898
14899 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
14900 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
14901 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
14902 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
14903 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
14904 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
14905 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
14906 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
14907 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
14908 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
14909 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
14910 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
14911 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
14912 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
14913 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
14914
14915 * info.el (info-tool-bar-map): Replace underscores in image names
14916 with dashes.
14917
14918 * makefile.w32-in (WINS): Remove toolbar.
14919
14920 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
14921
14922 * tool-bar.el: Move to lisp from toolbar. Now that
14923 toolbar is empty, it should be deleted when folks run "cvs up -P".
14924
14925 2005-10-18 Jay Belanger <belanger@truman.edu>
14926
14927 * calc/calc-store.el (calc-store-into): Get the proper variable name
14928 to display in message.
14929
14930 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
14931
14932 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
14933 expressions display in speedbar for all buffers when debugging.
14934 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
14935
14936 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
14937 (speedbar-insert-button, speedbar-make-button):
14938 Use add-text-properties.
14939 (speedbar-update-localized-contents)
14940 (speedbar-update-directory-contents)
14941 (speedbar-update-special-contents): Use dolist.
14942 (speedbar-buffer-easymenu-definition): Add a menu separator.
14943
14944 2005-10-17 Jason Rumney <jasonr@gnu.org>
14945
14946 * makefile.w32-in: Use $(lisp) consistently.
14947 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
14948 for shell specific generation of mh-autoloads.
14949
14950 2005-10-17 Richard M. Stallman <rms@gnu.org>
14951
14952 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
14953
14954 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
14955
14956 * jit-lock.el (jit-lock-fontify-now):
14957 Move jit-lock-context-unfontify-pos to avoid wasted work.
14958
14959 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
14960
14961 * net/tramp.el (tramp-completion-mode): New defvar. Used in
14962 `tramp-completion-mode' for checking if we are in completion mode.
14963 (tramp-completion-handle-file-name-all-completions): Reorder code
14964 in order to complete for file names only in case there are no
14965 method/user/host completions. This is necessary for cooperation
14966 with ido. Reported by Kim F. Storm <storm@cua.dk>.
14967
14968 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
14969
14970 * longlines.el (longlines-search-forward)
14971 (longlines-search-backward): Match any number of spaces.
14972
14973 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
14974
14975 * diff-mode.el (diff-mode): Doc fix.
14976
14977 2005-10-16 David Reitter <david.reitter@gmail.com>
14978
14979 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
14980 as default on darwin and windows systems.
14981
14982 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
14983
14984 * arc-mode.el (archive-zip-extract): Doc fix.
14985
14986 2005-10-16 Romain Francoise <romain@orebokech.com>
14987
14988 * mouse.el (mouse-1-click-follows-link): Doc fix.
14989
14990 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14991
14992 * savehist.el: Don't require CL at runtime.
14993 (savehist-xemacs): Remove.
14994 (savehist-coding-system): Use utf-8 if present, regardless of religion.
14995 (savehist-no-conversion): Use (featurep 'xemacs).
14996 (savehist-load): Check existence of start-itimer rather than XEmacs.
14997 Use an idle timer.
14998 (savehist-process-for-saving): Replace use of CL funs `subseq' and
14999 `delete-if-not'.
15000
15001 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
15002
15003 * savehist.el: Newer version.
15004 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
15005 (savehist-last-checksum, savehist-no-conversion): New vars.
15006 (savehist-autosave, savehist-process-for-saving, savehist-printable):
15007 New functions.
15008 (savehist-load, savehist-save): Use them.
15009 (savehist-delimit): Remove.
15010
15011 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
15012
15013 * progmodes/compile.el (compilation-goto-locus): Display the
15014 compilation buffer first and the source buffer second, in case they're
15015 in overlapping frames. Don't raise the compilation frame if it was the
15016 selected window upon entry. Pass the `other-window' arg to
15017 pop-to-buffer.
15018
15019 * info.el (Info-fontify-node): Use dolist.
15020 Change add-text-properties to put-text-property.
15021
15022 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15023
15024 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
15025 bound of search.
15026
15027 2005-10-16 Masatake YAMATO <jet@gyve.org>
15028
15029 * dabbrev.el (dabbrev-completion): Pass the common
15030 prefix substring of completion to `display-completion-list'.
15031
15032 * filecache.el (file-cache-minibuffer-complete)
15033 (file-cache-complete): Ditto.
15034
15035 * tempo.el (tempo-display-completions): Ditto.
15036
15037 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
15038
15039 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
15040
15041 * eshell/em-hist.el (eshell-list-history): Ditto.
15042
15043 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
15044
15045 * mail/mailalias.el (mail-complete): Ditto.
15046
15047 * progmodes/etags.el (complete-tag): Ditto.
15048
15049 * progmodes/make-mode.el (makefile-complete): Ditto.
15050
15051 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
15052
15053 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
15054
15055 * progmodes/pascal.el (pascal-complete-word)
15056 (pascal-show-completions): Ditto.
15057
15058 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
15059
15060 * simple.el (completion-common-substring): New variable.
15061 (completion-setup-function): Use `completion-common-substring'
15062 to put faces.
15063
15064 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15065
15066 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
15067 (x-get-selection, mac-select-convert-to-string): Convert from/to
15068 UTF-16 clipboard data as in native byte order, no BOM.
15069
15070 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
15071
15072 * progmodes/gud.el (gud-tool-bar-map): Rename the images
15073 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
15074 (gud-sentinel): Use speedbar-frame to check for speedbar.
15075
15076 2005-10-15 Richard M. Stallman <rms@gnu.org>
15077
15078 * savehist.el: New file.
15079
15080 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
15081
15082 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
15083 Fix bug in \bf fontification.
15084
15085 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
15086
15087 * pcvs.el (cvs-edit-log-files): New var.
15088 (cvs-mode-edit-log): New arg `file'.
15089 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
15090 Instead force the use of the original file and nothing else.
15091 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
15092 the cvs-minor-wrap-function is set.
15093 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
15094
15095 2005-10-14 Bill Wohler <wohler@newt.com>
15096
15097 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
15098 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
15099 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
15100 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
15101 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
15102 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
15103 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
15104 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
15105 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
15106 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
15107 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
15108 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
15109 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
15110 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
15111 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
15112
15113 * progmodes/gud.el (gud-tool-bar-map): Rename the images
15114 appropriately (for example, gud-break to gud/break).
15115
15116 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
15117
15118 * longlines.el (longlinges-search-function)
15119 (longlines-search-forward, longlines-search-backward): New functions.
15120 (longlines-mode): Set isearch-search-fun-function to
15121 longlinges-search-function.
15122
15123 * mouse.el (mouse-drag-region-1): Handle the case where a
15124 double-click event is bound to an arbitrary function.
15125
15126 2005-10-14 David Ponce <david@dponce.com>
15127
15128 * recentf.el (recentf-track-opened-file)
15129 (recentf-track-closed-file, recentf-update-menu)
15130 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
15131 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
15132 mouse-1-click-follows-link.
15133
15134 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15135
15136 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
15137 Gnome file-manager.png. Suggested by
15138 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
15139
15140 * toolbar/README: Add diropen.xpm.
15141
15142 2005-10-13 Bill Wohler <wohler@newt.com>
15143
15144 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
15145 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
15146
15147 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
15148
15149 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
15150 Don't waste the byte-compiler's time on constant data.
15151
15152 2005-10-13 Kenichi Handa <handa@m17n.org>
15153
15154 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
15155 byte with `escape-glyph' face.
15156
15157 * international/fontset.el (ccl-encode-unicode-font):
15158 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
15159 Handle the case that ucs-mule-to-mule-unicode translates a character to
15160 ASCII (usually for IPA characters).
15161
15162 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15163
15164 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
15165 Don't hide the underline of titles if font-lock-mode is disabled.
15166
15167 2005-10-12 Bill Wohler <wohler@newt.com>
15168
15169 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
15170 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
15171 files in MH-E-SRC have been updated.
15172 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
15173
15174 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15175
15176 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
15177 (mixal-mode-syntax-table): Add \n as end-comment.
15178 (mixal-operation-codes-alist): Immediately initialize to full value.
15179 (mixal-add-operation-code): Remove.
15180 (mixal-describe-operation-code): Make the arg non-optional.
15181 Use the interactive spec instead.
15182 Use mixal-operation-codes-alist rather than mixal-operation-codes.
15183 (mixal-font-lock-keywords): Don't highlight comments here any more.
15184 (mixal-font-lock-syntactic-keywords): New var.
15185 (mixal-mode): Use it. Fix comment-start-skip.
15186
15187 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15188
15189 * startup.el (command-line-x-option-alist): -nb => -nbi
15190
15191 2005-10-12 Kim F. Storm <storm@cua.dk>
15192
15193 * startup.el (fancy-splash-default-action): Discard mouse click in
15194 the splash screen window, as it has no sensible meaning in the
15195 next window to be selected. Fixes error reported by Jan D.
15196
15197 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
15198
15199 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
15200
15201 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15202
15203 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
15204 Try to fix up minor layout issues like indentation, line break, etc...
15205 (mixal-mode-syntax-table): Don't try to specify comment syntax,
15206 because it doesn't work.
15207 (mixal-operation-codes): Add some more codes.
15208 (mixal-font-lock-keywords): Process comments here.
15209 (mixal-mode): mixasm no longer needs -g option.
15210
15211 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
15212
15213 * progmodes/sh-script.el (sh-tmp-file):
15214 Use mktemp -t. Finish support for es and rc shells.
15215
15216 2005-10-11 Jay Belanger <belanger@truman.edu>
15217
15218 * calc/calcalg2.el (calc-integral): With an argument, compute the
15219 definite integral.
15220
15221 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
15222
15223 * mouse.el (mouse-drag-region-1): Don't try to catch a
15224 double-click when doing follow-link (it's overridden anyway).
15225
15226 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
15227
15228 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
15229 (autoload-print-form-outbuf): Add docstring.
15230
15231 2005-10-11 Juri Linkov <juri@jurta.org>
15232
15233 * info.el (Info-mode-menu): Delete menu item "Edit".
15234 (Info-mode): Delete description of Info-edit from docstring,
15235 and rearrange descriptions of Info commands in the order
15236 they are documented in the Info manual.
15237
15238 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15239
15240 * calendar/appt.el (appt-check): Use diary-selective-display var.
15241
15242 2005-10-10 Richard M. Stallman <rms@gnu.org>
15243
15244 * net/newsticker.el (newsticker-start, newsticker-show-news):
15245 Add autoload cookies.
15246
15247 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
15248
15249 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
15250
15251 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
15252
15253 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
15254
15255 2005-10-10 Jay Belanger <belanger@truman.edu>
15256
15257 * calc/calc-arith.el (math-check-known-scalarp)
15258 (math-check-known-matrixp): Check the values of arguments that are
15259 variables.
15260 (math-check-known-square-matrixp): New function.
15261 (math-known-square-matrixp): Use math-check-known-square-matrixp.
15262 (math-super-types): Add sqmatrix type.
15263
15264 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
15265 mode name `square' to `sqmatrix'.
15266
15267 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
15268 mode name `square' to `sqmatrix'.
15269
15270 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
15271
15272 * progmodes/etags.el (select-tags-table-mode): Don't use
15273 selective-display.
15274 (tags-select-tags-table): Pass `button' to the action function.
15275 (select-tags-table): Place the side-info on button properties rather
15276 than in hidden text. Abbreviate file names.
15277 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
15278 (select-tags-table-select): Add `button' argument.
15279 Get side-info from the button property rather than from hidden text.
15280
15281 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
15282
15283 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
15284 (gud-speedbar-buttons): Preserve point if possible.
15285 (gud-sentinel): Restore previous speedbar display type.
15286
15287 * progmodes/gdb-ui.el (gdba): Improve diagram.
15288 (def-gdb-auto-update-handler, gdb-info-locals-handler)
15289 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
15290 Call get-buffer-window once.
15291
15292 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
15293
15294 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
15295 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
15296 (pascal-indent-command): Remove unused var `ind'.
15297 (pascal-indent-case): Remove unused var `oldpos'.
15298 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
15299 since it's now used as a proper minor mode map.
15300 (pascal-outline): Rename to pascal-outline-mode.
15301 (pascal-outline-mode): Use define-minor-mode.
15302 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
15303 selective-display.
15304
15305 2005-10-10 Andreas Schwab <schwab@suse.de>
15306
15307 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
15308 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
15309
15310 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
15311 outside source directory.
15312
15313 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
15314
15315 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
15316 C-x' as a prefix.
15317 (orgtbl-mode-map): Full keymap instead of sparse, because all
15318 `self-insert-command' keys are redefined in this map.
15319 (org-export-as-html): Specify charset for HTML file, by taking it
15320 from the coding system.
15321
15322 2005-10-10 Kenichi Handa <handa@m17n.org>
15323
15324 * textmodes/flyspell.el (flyspell-check-word-p):
15325 If unread-command-events is non-empty, don't call sit-for.
15326
15327 2005-10-09 Richard M. Stallman <rms@gnu.org>
15328
15329 * font-lock.el (font-lock-syntactic-keywords)
15330 (font-lock-keywords): Doc fixes.
15331
15332 * textmodes/flyspell.el (flyspell-external-point-words):
15333 Simplify logic, and don't try to check for consecutive appearances
15334 of one incorrect word.
15335
15336 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
15337
15338 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
15339 separator.
15340
15341 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
15342 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
15343 (gud-expansion-speedbar-buttons): New function.
15344 (gud-speedbar-buttons): Check for gud-comint-buffer.
15345
15346 2005-10-09 Bill Wohler <wohler@newt.com>
15347
15348 * Makefile.in (updates): Add mh-loaddefs dependency.
15349
15350 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
15351
15352 * speedbar.el (speedbar-file-key-map): Fix typo.
15353
15354 2005-10-09 Daniel Brockman <daniel@brockman.se>
15355
15356 * cus-start.el (line-spacing): Add custom spec.
15357
15358 2005-10-09 Romain Francoise <romain@orebokech.com>
15359
15360 * textmodes/ispell.el (ispell-check-version): Fix last change.
15361
15362 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15363
15364 * term/x-win.el: Remove -i, --icon-type from comment.
15365
15366 * startup.el (command-line-x-option-alist): Remove options -i,
15367 -itype, --icon-type, added -nb, --no-bitmap-icon
15368
15369 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
15370
15371 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
15372 instead of :active.
15373
15374 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
15375
15376 * textmodes/ispell.el (ispell-check-version):
15377 Ignore hyphen, and all that follows, in aspell's version text.
15378
15379 2005-10-08 Jay Belanger <belanger@truman.edu>
15380
15381 * calc/calc-arith.el (math-known-square-matrixp): New function.
15382 (math-pow-fancy): Check for matrices before distributing exponent
15383 across products.
15384
15385 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
15386 fullscreen keypad. Suggested by Luc Teirlinck.
15387 (calc-keypad-show-input): Add space for formatting.
15388
15389 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
15390 Add square matrix option.
15391
15392 * calc/calc-poly.el (math-expand-term): Check for matrices instead
15393 of checking calc-matrix-mode when deciding how to expand.
15394
15395 * calc/calc.el (calc-set-mode-line): Add square matrix option.
15396
15397 2005-10-08 Lars Hansen <larsh@soem.dk>
15398
15399 * net/tramp.el (tramp-perl-directory-files-and-attributes):
15400 Add error handling.
15401 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
15402
15403 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
15404
15405 Sync with Tramp 2.0.51.
15406
15407 * net/tramp.el (tramp-handle-set-visited-file-modtime)
15408 (tramp-handle-insert-file-contents, tramp-handle-write-region):
15409 Insert special handling for `last-coding-system-used', again
15410 it still seems to be necessary (unlike stated before).
15411 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
15412 (tramp-password-prompt-regexp): There might be other words before
15413 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
15414 (tramp-chunksize): Improve docstring.
15415 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
15416 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
15417 Christian Joergensen <bugs@razor.dk>.
15418
15419 2005-10-07 Glenn Morris <rgm@gnu.org>
15420
15421 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
15422 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
15423 precision'.
15424
15425 2005-10-07 Romain Francoise <romain@orebokech.com>
15426
15427 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
15428 (ibuffer-do-shell-command-pipe-replace)
15429 (ibuffer-do-shell-command-file, ibuffer-do-eval)
15430 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
15431 (ibuffer-do-revert, ibuffer-do-replace-regexp)
15432 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
15433 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
15434 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
15435 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
15436 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
15437 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
15438 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
15439 Autoload file sans suffix.
15440
15441 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
15442
15443 2005-10-07 David Ponce <david@dponce.com>
15444
15445 * recentf.el (recentf-menu-open-all-flag): New option.
15446 (recentf-digit-shortcut-command-name): New function.
15447 (recentf--shortcuts-keymap): New variable.
15448 (recentf-menu-shortcuts): New variable.
15449 (recentf-make-menu-items): Initialize it. Replace the "More..."
15450 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
15451 (recentf-menu-value-shortcut): New function.
15452 (recentf-make-menu-item): Use it. No more in-lined.
15453 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
15454 (recentf-open-most-recent-file): Rename from
15455 `recentf-open-file-with-key'. Don't depend on key binding.
15456 (recentf-mode-map): New variable.
15457 (recentf-mode): Use it.
15458
15459 2005-10-06 Bill Wohler <wohler@newt.com>
15460
15461 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
15462
15463 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
15464 (MH-E-SRC): New. Used by mh-autoloads.
15465 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
15466 files in MH-E-SRC have been updated.
15467 (compile, recompile, bootstrap): Depend on mh-autoloads.
15468
15469 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
15470
15471 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
15472 gud-break and gud-remove icons when the fringe is not available.
15473
15474 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
15475 Typo.
15476
15477 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
15478
15479 * play/zone.el (zone): Wrap body with save-window-excursion.
15480
15481 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
15482
15483 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
15484 Use the new `list-only' arg to diary-list-entries.
15485
15486 * calendar/diary-lib.el: Use overlays rather than selective-display.
15487 (diary-selective-display): New var.
15488 (diary-header-line-format): Use it.
15489 (diary-list-entries): Add argument `list-only'.
15490 Put the buffer in diary-mode. Don't add \^M at beg and end.
15491 Replace \^M by invisible overlays.
15492 (diary-unhide-everything): Replace \^M by invisible overlays.
15493 (print-diary-entries): Look for overlays rather than \^M.
15494 Add a space to the temp buffer name.
15495 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
15496 Put the buffer in diary-mode.
15497 (list-sexp-diary-entries): Replace \^M by invisible overlays.
15498 (diary-anniversary): Make the year arg optional.
15499 (diary-time-regexp): New const.
15500 (diary-font-lock-keywords): Use it to accept a few more time formats.
15501
15502 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
15503
15504 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
15505
15506 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
15507 Fix bug introduced 2005-07-03: Use (car (last ...))
15508 to faithfully reproduce replaced artist-last.
15509 (artist-set-arrow-points-for-poly): Likewise.
15510 Suggested by Johan Bockg\e,Ae\e(Brd.
15511
15512 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
15513
15514 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
15515 * wid-edit.el (widget):
15516 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
15517 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
15518
15519 2005-10-06 Kenichi Handa <handa@m17n.org>
15520
15521 * international/mule-cmds.el (set-language-environment):
15522 Fix setting up of case-table for unibyte mode.
15523
15524 * simple.el (what-cursor-position): If the character is displayed
15525 by some `display' text property, show that. Don't use
15526 single-key-description for eight-bit characters in multibyte mode.
15527
15528 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
15529
15530 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
15531 (gdb-ann3): Set it.
15532 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
15533 (gdb-info-frames-custom): Use inverse-video for first five
15534 characters of selected frame only.
15535 (gdb-get-frame-number): Select frame even when point is on frame
15536 number.
15537
15538 2005-10-06 Masatake YAMATO <jet@gyve.org>
15539
15540 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
15541 Put `font-lock-function-name-face'.
15542 (gdb-info-frames-custom): Put `font-lock-function-name-face'
15543 and `font-lock-variable-name-face'
15544 (gdb-registers-font-lock-keywords): New font lock keywords definition.
15545 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
15546 (gdb-memory-font-lock-keywords): New font lock keywords definition.
15547 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
15548 (gdb-local-font-lock-keywords): New font lock keywords definition.
15549 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
15550 (gdb-threads-font-lock-keywords): New font lock keywords definition.
15551 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
15552
15553 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
15554
15555 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
15556 (ediff-merge-region-is-non-clash-to-skip): Previously called
15557 ediff-merge-region-is-non-clash.
15558
15559 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
15560 Use insert-buffer-substring.
15561
15562 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
15563 selecting files to patch. Also bug fixes.
15564
15565 * ediff-util.el (ediff-setup): Bug fix.
15566 (ediff-next-difference): Never skip clashes that differ in white
15567 space only.
15568
15569 * ediff-wind.el (ediff-setup-control-frame)
15570 (ediff-destroy-control-frame): Check the menubar feature.
15571
15572 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
15573 (viper-refresh-mode-line): Use make-local-variable to localize
15574 some vars instead of make-variable-buffer-local. Suggested by
15575 Stefan Monnier.
15576
15577 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
15578 (viper-restore-cursor-type, viper-set-insert-cursor-type):
15579 Use make-local-variable instead of make-variable-buffer-local.
15580 Suggested by Stefan Monnier.
15581
15582 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
15583 (viper-comint-mode-hook): Use make-local-variable on
15584 require-final-newline.
15585 (viper-non-hook-settings): Don't use make-variable-buffer-local.
15586
15587 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
15588
15589 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
15590 also the second char of a comment-start sequence.
15591 (scheme-sexp-comment-syntax-table): New var.
15592 (lambda, define): Set their scheme-doc-string-elt property.
15593 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
15594 Use lisp-font-lock-syntactic-face-function now that it properly
15595 handles |...| symbols.
15596 (scheme-mode-variables): Set lisp-doc-string-elt-property,
15597 parse-sexp-lookup-properties and font-lock-extra-managed-props.
15598
15599 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
15600 bit from # to |.
15601 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
15602
15603 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
15604 (lisp-doc-string-elt-property): New var.
15605 (lisp-font-lock-syntactic-face-function): Use it.
15606 Rewrite to recognize docstrings even for forms not at toplevel.
15607
15608 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
15609 annotation on the | part of #| rather than on the # part.
15610 (scheme-font-lock-syntactic-face-function): New function, to
15611 distinguish strings from |...| symbols.
15612 (scheme-mode-variables): Use it. Also fix up the font-lock-time
15613 syntax-table so that #|...|# is properly highlighted.
15614
15615 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
15616 Don't mark as docstring the 3rd elem of an unknown toplevel form.
15617
15618 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
15619
15620 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
15621 and C-e.
15622
15623 * emacs-lisp/eldoc.el: Move comments into docstrings.
15624 (eldoc-message-commands): Initialize in its declaration.
15625 Add move-beginning-of-line and move-end-of-line.
15626 (eldoc-add-command, eldoc-add-command-completions)
15627 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
15628
15629 * outline.el (outline-mark-subtree): Activate the mark.
15630
15631 * calendar/appt.el (appt-time-regexp): New var.
15632 (appt-add, appt-make-list): Use it.
15633 (appt-convert-time): Clean up.
15634
15635 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
15636 Don't set any syntax-table property here.
15637 (tex-font-lock-verb): New function. Do it here.
15638 (tex-font-lock-syntactic-keywords): Use it.
15639
15640 2005-10-04 Richard M. Stallman <rms@gnu.org>
15641
15642 * wid-edit.el (widget-file-complete): Get the widget start point
15643 the right way. Default directory to `/' if file has none.
15644
15645 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
15646
15647 * textmodes/flyspell.el (flyspell-mode-on):
15648 Call ispell-maybe-find-aspell-dictionaries.
15649
15650 * textmodes/ispell.el (ispell-word, ispell-region):
15651 Call ispell-maybe-find-aspell-dictionaries.
15652 (ispell-accept-buffer-local-defs):
15653 Don't call ispell-maybe-find-aspell-dictionaries
15654
15655 2005-10-04 Richard M. Stallman <rms@gnu.org>
15656
15657 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
15658
15659 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
15660
15661 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
15662 instead of `fboundp' in order to allow for anonymous functions.
15663
15664 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
15665
15666 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
15667 case the user clicks on the link while another window is selected.
15668 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
15669
15670 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
15671 functionality.
15672 (dframe-help-echo): Save point in case mouse tracking is off.
15673
15674 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
15675
15676 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
15677
15678 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15679
15680 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
15681 not change the global value of those vars.
15682
15683 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
15684 make-local-variable which we do not need any more.
15685
15686 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
15687
15688 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
15689 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
15690 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
15691 (speedbar-path-line): Define obsolete aliases.
15692 (speedbar-line-directory): Doc fix.
15693
15694 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
15695 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
15696 instead of speedbar-line-path.
15697
15698 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15699
15700 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
15701 to nil if dropping on a window. Handle dropping on a minibuffer window
15702 like dropping on a non-window part of Emacs.
15703
15704 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15705
15706 * net/ange-ftp.el: Use with-current-buffer.
15707 (ange-ftp-insert-directory): Do not follow symlinks any more.
15708
15709 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
15710 Remove interactive spec.
15711
15712 2005-10-03 Kim F. Storm <storm@cua.dk>
15713
15714 * ido.el (ido-mode): Use custom-initialize-set.
15715
15716 2005-10-02 Richard M. Stallman <rms@gnu.org>
15717
15718 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
15719 Use insert-buffer-substring.
15720
15721 * net/tramp.el: Pacify byte compiler warnings in pacification code.
15722 (tramp-handle-file-local-copy): Use insert-buffer-substring.
15723
15724 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
15725
15726 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
15727 in last change.
15728 (ange-ftp-insert-directory): Fix up the search for the case where
15729 `file' is absolute.
15730
15731 2005-10-02 Romain Francoise <romain@orebokech.com>
15732
15733 * progmodes/compile.el (compile-goto-error): Delete extra paren.
15734
15735 2005-10-02 Andreas Schwab <schwab@suse.de>
15736
15737 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
15738 directory component in the session info.
15739
15740 2005-10-01 Richard M. Stallman <rms@gnu.org>
15741
15742 * comint.el (comint-redirect-subvert-readonly): Doc fix.
15743
15744 * simple.el (next-error-internal): New function.
15745
15746 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
15747 (compilation-start): Pass new arg to compilation-buffer-name.
15748 (compile-goto-error): Use next-error-internal.
15749
15750 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
15751
15752 * speedbar.el: Remove RCS tag.
15753 (speedbar-check-read-only): Handle non-existent files.
15754
15755 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
15756
15757 * info.el (Info-speedbar-hierarchy-buttons)
15758 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
15759
15760 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15761
15762 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
15763 Do not match newline.
15764 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
15765 (bibtex-summary): Remove unnecessary save-excursion.
15766 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
15767
15768 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15769
15770 * term/mac-win.el: Add charset info for "iso10646-1".
15771 Modify default fontset to use ATSUI-compatible fonts for some charsets
15772 if available.
15773
15774 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
15775
15776 * speedbar.el: Re-apply arch tag.
15777 (speedbar-version): Rename to version 1.0. Suggested by Eric
15778 M. Ludlam.
15779 Reapply two changes from Emacs CVS' version of speedbar lost
15780 during the merge:
15781 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
15782 (speedbar-frame-parameters): Improve customize type.
15783
15784 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
15785
15786 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
15787 (ange-ftp-file-directory-p): Fix the symlink case.
15788 (ange-ftp-insert-directory): When listing a single file, get a list of
15789 the parent buffer and extract the relevant line. Inspired from a patch
15790 by Katsumi Yamaoka <yamaoka@jpl.org>.
15791 (ange-ftp-file-name-sans-versions): Simplify.
15792
15793 2005-09-30 Bill Wohler <wohler@newt.com>
15794
15795 Move MH-E image files from toolbar and mail directories into
15796 etc/images.
15797
15798 * mail/reply2.*: Move to etc/images/mail/reply*.
15799
15800 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
15801 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
15802 etc/images.
15803
15804 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
15805 * toolbar/reply*: Move to etc/images/mail.
15806
15807 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
15808
15809 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
15810
15811 * speedbar.el: New version 1.0pre3.
15812
15813 Frame management code (including timer, and mouse click specifics)
15814 moved to dframe.el:
15815 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
15816 (speedbar-timer): Removed. Use dframe-timer.
15817 (speedbar-close-frame): Removed. Use dframe-close-frame.
15818 (speedbar-activity-change-focus-flag): Removed. Use
15819 dframe-activity-change-focus-flag.
15820 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
15821 dframe-update-speed.
15822
15823 (speedbar-current-frame): New macro. Use this instead of the
15824 variable speedbar-frame.
15825
15826 (speedbar-use-images, speedbar-expand-image-button-alist)
15827 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
15828
15829 (speedbar-find-image-on-load-path): Removed. Replaced by
15830 defezimage in ezimage.el.
15831 (speedbar-expand-image-button-alist): Removed. Replaced by
15832 ezimage-expand-image-button-alist in ezimage.el.
15833
15834 (speedbar-ignored-directory-regexp)
15835 (speedbar-add-ignored-directory-regexp)
15836 (speedbar-ignored-directory-expressions)
15837 (speedbar-line-directory, speedbar-buffers-line-directory)
15838 (speedbar-directory-line, speedbar-buffers-line-directory):
15839 Renamed, replacing `path' with `directory'.
15840
15841 (speedbar-create-directory, speedbar-expand-line-descendants)
15842 (speedbar-toggle-line-expansion)
15843 (speedbar-contract-line-descendants): New commands.
15844
15845 (speedbar-query-confirmation-method, speedbar-select-frame-method)
15846 (speedbar-use-tool-tips-flag): New options.
15847
15848 (speedbar-check-read-only, speedbar-require-version)
15849 (speedbar-insert-separator, speedbar-buffers-tail-notes)
15850 (speedbar-handle-delete-frame, speedbar-try-completion)
15851 (speedbar-update-localized-contents): New functions.
15852
15853 (speedbar-incompatible-version, speedbar-ro-to-do-point)
15854 (speedbar-object-read-only-indicator): New variables.
15855
15856 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
15857 New hooks.
15858
15859 (speedbar-separator-face): New face.
15860
15861 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
15862 (speedbar-ignored-modes): Add fundamental-mode.
15863 (speedbar-directory-unshown-regexp): Add . directories.
15864
15865 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
15866 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
15867 `]' for full expand/close.
15868 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
15869
15870 (speedbar-check-vc): Support hidden files.
15871 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
15872 (speedbar-this-file-in-vc): Use vc-state if available. If VC
15873 state is nil, it is not checked out.
15874
15875 (speedbar-line-text, speedbar-line-token): Support expand buttons
15876 with no text.
15877 (speedbar-refresh): Universal argument acts as power-click.
15878 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
15879 that buffer to get variable values.
15880
15881 And many other bugfixes.
15882
15883 * dframe.el, ezimage.el, sb-image.el: New files.
15884
15885 * sb-*.xpm: Remove files. New image files installed into
15886 etc/images/ezimage.
15887
15888 2005-09-30 Kenichi Handa <handa@m17n.org>
15889
15890 * ps-mule.el (ps-mule-show-warning): If a character is in
15891 ps-print-translation-table, don't treat it as non-printable.
15892
15893 2005-09-30 David Ponce <david@dponce.com>
15894
15895 * tree-widget.el (tree-widget-themes-load-path): New variable.
15896 (tree-widget-themes-directory): Doc fix.
15897 (tree-widget-image-formats) [Emacs]: Doc fix.
15898 (tree-widget--locate-sub-directory): New function.
15899 (tree-widget-themes-directory): Use it.
15900
15901 * recentf.el (recentf-filename-handlers): Rename from
15902 `recentf-filename-handler'. Allow a list of functions.
15903 (recentf-menu-items-for-commands): Fix :help strings.
15904 (recentf-apply-filename-handlers): New function.
15905 (recentf-expand-file-name): Use it.
15906 (recentf-cleanup): Remove duplicates too.
15907
15908 2005-09-29 Juri Linkov <juri@jurta.org>
15909
15910 * faces.el: Rearrange face definitions to be in the same order as
15911 their face descriptions in "(emacs)Standard Faces".
15912
15913 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
15914
15915 * tooltip.el (tooltip): Add group `basic-faces'.
15916
15917 * buff-menu.el (Buffer-menu-buffer): Remove group
15918 `font-lock-highlighting-faces'.
15919
15920 * progmodes/compile.el (compilation-error, compilation-warning)
15921 (compilation-info, compilation-line-number, compilation-column-number):
15922 Change group from `font-lock-highlighting-faces' to `compilation'.
15923
15924 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
15925 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
15926 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
15927 (vhdl-font-lock-reserved-words-face)
15928 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
15929 `font-lock-highlighting-faces'.
15930
15931 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
15932
15933 2005-09-28 Kim F. Storm <storm@cua.dk>
15934
15935 * emulation/cua-base.el: Set CUA move property on additional commands:
15936 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
15937 forward-sexp, backward-sexp, forward-list, backward-list.
15938
15939 2005-09-28 Romain Francoise <romain@orebokech.com>
15940
15941 * comint.el (comint-show-output): Really set point at the
15942 beginning of the output when not using `comint-use-prompt-regexp'.
15943
15944 2005-09-27 Jay Belanger <belanger@truman.edu>
15945
15946 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
15947 in TeX mode.
15948
15949 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
15950
15951 * textmodes/org.el (org-table-sum): Fix format string.
15952
15953 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
15954 Quote face names.
15955
15956 2005-09-26 Romain Francoise <romain@orebokech.com>
15957
15958 * isearch.el (isearch-forward-regexp): Close doc string.
15959
15960 2005-09-25 Richard M. Stallman <rms@gnu.org>
15961
15962 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
15963
15964 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
15965
15966 * progmodes/compile.el (compilation-error-properties):
15967 When getting the file from the previous error message,
15968 correctly decode the new data format.
15969
15970 * progmodes/cc-cmds.el (c-electric-paren):
15971 Call old-blink-paren only for close-paren.
15972
15973 2005-09-24 Andreas Schwab <schwab@suse.de>
15974
15975 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
15976 condition.
15977
15978 2005-09-25 Romain Francoise <romain@orebokech.com>
15979
15980 * dired-aux.el (dired-copy-file-recursive):
15981 * dired.el (dired-delete-file):
15982 * ediff-mult.el (ediff-dir-diff-copy-file):
15983 * ediff-util.el (ediff-test-save-region):
15984 * forms.el (forms-mode):
15985 * ido.el (ido-file-internal, ido-delete-file-at-head):
15986 * log-edit.el (log-edit-done):
15987 * ses.el (ses-yank-resize):
15988 * play/gomoku.el (gomoku-human-plays, gomoku)
15989 (gomoku-human-resigns, gomoku-prompt-for-other-game)
15990 (gomoku-offer-a-draw):
15991 * play/landmark.el (lm-human-resigns, lm):
15992 * net/eudcb-ldap.el (eudc-ldap-check-base):
15993 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
15994 * progmodes/ebrowse.el (ebrowse-find-pattern):
15995 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
15996 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
15997 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
15998
15999 * vc.el (vc-delete-file):
16000 * play/gomoku.el (gomoku-terminate-game, gomoku)
16001 (gomoku-prompt-for-move, gomoku-human-takes-back):
16002 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
16003 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
16004
16005 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
16006
16007 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
16008 color rxvt terminals by using the code xterm.el used to use before
16009 2005-04-09 in order to match the colors used by rxvt.
16010
16011 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
16012
16013 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
16014 colors rxvt-unicode terminals by using the same code as xterm.el.
16015
16016 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
16017
16018 * textmodes/tex-mode.el (tex-font-lock-append-prop)
16019 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
16020 new symbol used for the tex-verbatim face.
16021
16022 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
16023
16024 * woman.el (woman-file-name):
16025 * wid-edit.el (widget-file-prompt-value)
16026 (widget-coding-system-prompt-value):
16027 * w32-fns.el (set-w32-system-coding-system):
16028 * vc.el (vc-version-diff, vc-annotate):
16029 * textmodes/reftex-auc.el (reftex-arg-cite)
16030 (reftex-arg-index-tag):
16031 * textmodes/refer.el (refer-get-bib-files):
16032 * textmodes/artist.el (artist-figlet-choose-font):
16033 * terminal.el (terminal-emulator):
16034 * replace.el (occur-read-primary-args):
16035 * rect.el (string-rectangle, string-insert-rectangle):
16036 * ps-print.el (ps-print-preprint):
16037 * progmodes/pascal.el (pascal-goto-defun):
16038 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
16039 * progmodes/compile.el (compilation-find-file):
16040 * printing.el (pr-interactive-n-up):
16041 * play/animate.el (animate-birthday-present):
16042 * net/rcompile.el (remote-compile):
16043 * man.el (man, Man-goto-section, Man-follow-manual-reference):
16044 * mail/rmailsum.el (rmail-summary-search-backward)
16045 (rmail-summary-search):
16046 * mail/rmailout.el (rmail-output-read-rmail-file-name)
16047 (rmail-output-read-file-name):
16048 * mail/rmail.el (rmail-search, rmail-search-backwards):
16049 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
16050 * locate.el (locate):
16051 * international/quail.el (quail-show-keyboard-layout):
16052 * international/mule.el (set-buffer-file-coding-system)
16053 (revert-buffer-with-coding-system, set-file-name-coding-system)
16054 (set-terminal-coding-system, set-keyboard-coding-system)
16055 (set-next-selection-coding-system):
16056 * international/mule-diag.el (describe-coding-system)
16057 (describe-font, describe-fontset):
16058 * international/mule-cmds.el (universal-coding-system-argument)
16059 (search-unencodable-char, describe-input-method)
16060 (set-language-environment, describe-language-environment):
16061 * international/codepage.el (codepage-setup):
16062 * international/code-pages.el (codepage-setup):
16063 * info.el (Info-search, Info-follow-reference)
16064 (Info-search-backward):
16065 * emacs-lisp/advice.el (ad-read-advised-function)
16066 (ad-read-advice-class, ad-clear-cache, ad-activate)
16067 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
16068 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
16069 (ad-read-regexp):
16070 * ediff-util.el (ediff-toggle-regexp-match):
16071 * ediff-ptch.el (ediff-prompt-for-patch-file):
16072 * dired-aux.el (dired-diff):
16073 * diff.el (diff):
16074 * cus-edit.el (custom-variable-prompt):
16075 * calendar/timeclock.el (timeclock-ask-for-project):
16076 * calc/calcalg3.el (calc-get-fit-variables):
16077 * calc/calc-store.el (calc-edit-variable)
16078 (calc-permanent-variable):
16079 * vc-mcvs.el (vc-mcvs-register):
16080 * shadowfile.el (shadow-define-literal-group):
16081 * woman.el (woman-file-name):
16082 * vc.el (vc-version-diff, vc-merge):
16083 * textmodes/reftex-index.el (reftex-index-complete-tag):
16084 * format.el (format-decode-buffer, format-decode-region):
16085 * emulation/viper-cmd.el (viper-read-string-with-history):
16086 * emacs-lisp/debug.el (cancel-debug-on-entry):
16087 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
16088 * ediff.el (ediff-merge-revisions)
16089 (ediff-merge-revisions-with-ancestor, ediff-revision):
16090 * completion.el (interactive-completion-string-reader):
16091 * calc/calc-prog.el (calc-user-define-formula):
16092 Follow convention for reading with the minibuffer.
16093
16094 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
16095
16096 * progmodes/python.el (python-describe-symbol): Add globals() and
16097 locals() to the arguments of emacs.ehelp.
16098
16099 2005-09-24 Magnus Henoch <mange@freemail.hu>
16100
16101 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
16102 New function, code extracted from ispell-valid-dictionary-list.
16103 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
16104 Call it.
16105
16106 2005-09-24 Eli Zaretskii <eliz@gnu.org>
16107
16108 * subr.el (version-regexp-alist): Extend valid syntax for version
16109 strings: allow any of the characters -,_,+ to separate the
16110 alpha/beta/rc part from the version part. Doc fix.
16111 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
16112
16113 2005-09-23 David Reitter <david.reitter@gmail.com>
16114
16115 * mail/mailclient.el: New file.
16116
16117 2005-09-23 Richard M. Stallman <rms@gnu.org>
16118
16119 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
16120 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
16121 Doc fixes.
16122
16123 * progmodes/cc-mode.el (c-font-lock-init):
16124 Specify font-lock-lines-before.
16125
16126 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
16127
16128 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
16129 whole conflict.
16130
16131 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
16132
16133 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
16134 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
16135 of `remap' feature when available. Additional key bindings for
16136 better tty support.
16137 (org-mode-restart, org-force-self-insert): New commands.
16138 (org-time-stamp-inactive): New command.
16139 (org-remap): New function.
16140 (org-table-auto-blank-field, org-level-color-stars-only): New options.
16141 (org-enable-fixed-width-editor): Move to `org-structure'
16142 customization group.
16143 (org-self-insert-command, orgtbl-self-insert-command): Modify to
16144 blank field after field motion commands.
16145
16146 2005-09-23 Kenichi Handa <handa@m17n.org>
16147
16148 * international/mule-cmds.el (set-language-environment):
16149 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
16150 have to call utf-translate-cjk-load-tables.
16151
16152 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
16153
16154 * mouse.el (mouse-move-drag-overlay): Fix last change.
16155
16156 2005-09-22 David Ponce <david@dponce.com>
16157
16158 * tree-widget.el (tree-widget-value-create): Fix previous change.
16159
16160 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16161
16162 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
16163
16164 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
16165
16166 * mouse.el (mouse-move-drag-overlay): New function.
16167 (mouse-drag-region-1): Use it.
16168 Try to simplify a bit the state handling. Handle clicks on links
16169 inside intangible areas.
16170 (mouse-save-then-kill): Minor simplification.
16171 (mouse-secondary-overlay): Make it always non-nil instead of
16172 recreating it each time.
16173 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
16174 (mouse-kill-secondary, mouse-secondary-save-then-kill):
16175 Simplify accordingly.
16176
16177 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16178
16179 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
16180
16181 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
16182
16183 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
16184 (ediff-file-name-sans-prefix): Treat nil as an empty string.
16185 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
16186 to patch.
16187
16188 * ediff-util.el: Use insert-buffer-substring.
16189
16190 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
16191
16192 * emulation/viper-cmd.el (viper-change-state): Don't move over the
16193 field boundaries in the minibuffer.
16194 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
16195 (viper-minibuffer-post-command-hook): New hook.
16196 (viper-line): Don't move cursor at bolp.
16197
16198 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
16199
16200 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
16201 avoid compiler warnings.
16202
16203 * emulation/viper-macs.el (ex-map): Better messages.
16204
16205 * emulation/viper-utils.el (viper-beginning-of-field): New function.
16206
16207 * emulation/viper.el: Replace make-variable-buffer-local with
16208 viper-make-variable-buffer-local everywhere, to avoid warnings.
16209
16210 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16211
16212 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
16213 Delete unused var `old-selected-window'.
16214 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
16215 (mouse-drag-secondary): Delete unused var `start-frame'.
16216
16217 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
16218
16219 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
16220
16221 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16222
16223 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
16224 Re-indent within 80 columns. Use inhibit-read-only.
16225
16226 2005-09-19 Romain Francoise <romain@orebokech.com>
16227
16228 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
16229
16230 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16231
16232 * font-lock.el (font-lock-default-fontify-region): Don't add a line
16233 unconditionally, since the after-change-function already did it.
16234
16235 2005-09-19 Miles Bader <miles@gnu.org>
16236
16237 * net/newsticker.el: Get rid of CVS keyword.
16238
16239 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
16240
16241 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
16242 The prompt is formatted later.
16243
16244 2005-09-19 David Ponce <david@dponce.com>
16245
16246 * tree-widget.el (tree-widget-value-create): Save the converted
16247 tree :node widget.
16248
16249 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
16250
16251 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
16252 variable `message'.
16253
16254 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
16255
16256 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
16257 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
16258 <slawomir.nowaczyk.847@student.lu.se>.
16259
16260 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
16261
16262 * image.el (image-load-path): Use symbol `data-directory' instead
16263 of its value, for backward compatibility with packages that bind
16264 it during `find-image'. Suggested by Katsumi Yamaoka.
16265 (image-search-load-path): Handle symbols whose values are strings.
16266
16267 2005-09-18 Romain Francoise <romain@orebokech.com>
16268
16269 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
16270 with-current-buffer form in save-excursion.
16271
16272 2005-09-18 Deepak Goel <deego@gnufans.org>
16273
16274 * apropos.el (apropos-command): Fix `message' call: first arg
16275 should be a format spec. In this and all other cases that appear
16276 below and elsewhere in the source code, I made a change only when
16277 two conditions were satisfied: [1] I can think of a possibility
16278 that the arguments would cause an error, for example, the code in
16279 question relies on external variables such as filenames. [2] I
16280 was sure that the arg to `message' could not have been nil in the code.
16281
16282 * textmodes/tildify.el (tildify-region): Ditto.
16283
16284 * textmodes/reftex-index.el (reftex-index-change-entry)
16285 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
16286 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
16287 * textmodes/org.el (org-complete, org-deadline, org-schedule)
16288 (org-priority, org-table-sum):
16289 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
16290 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
16291 (flyspell-word, flyspell-display-next-corrections):
16292 * textmodes/bibtex.el (bibtex-print-help-message):
16293 * textmodes/artist.el (artist-key-set-point-poly):
16294 * term/mac-win.el (mac-services-insert-text):
16295 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
16296 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
16297 (vhdl-port-paste-testbench, vhdl-compose-new-component)
16298 (vhdl-compose-configuration):
16299 * progmodes/sh-script.el (sh-blink, sh-show-indent)
16300 (sh-set-indent, sh-learn-line-indent):
16301 * progmodes/ps-mode.el (ps-mode-target-column):
16302 * progmodes/idlwave.el (idlwave-make-tags)
16303 (idlwave-scan-library-catalogs):
16304 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
16305 * progmodes/gud.el (gud-jdb-analyze-source):
16306 * progmodes/flymake.el (flymake-log):
16307 * progmodes/ebnf2ps.el (ebnf-generate-region):
16308 * progmodes/cmacexp.el (c-macro-expansion):
16309 * progmodes/ada-xref.el (ada-treat-cmd-string):
16310 * progmodes/ada-mode.el (ada-create-case-exception-substring)
16311 (ada-justified-indent-current, ada-batch-reformat):
16312 * play/zone.el (zone):
16313 * play/landmark.el (lm-move):
16314 * play/decipher.el (decipher-show-alphabet):
16315 * net/newsticker.el (newsticker--display-jump)
16316 (newsticker--display-scroll):
16317 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
16318 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
16319 * mail/feedmail.el (feedmail-dump-message-to-queue):
16320 * eshell/esh-proc.el (eshell-remove-process-entry):
16321 * emulation/ws-mode.el (ws-last-error):
16322 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
16323 (viper-record-kbd-macro):
16324 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
16325 * emacs-lisp/lisp-mnt.el (lm-report-bug):
16326 * emacs-lisp/find-func.el (find-function-noselect):
16327 * calendar/timeclock.el (timeclock-status-string)
16328 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
16329 (timeclock-when-to-leave-string):
16330 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
16331 * calc/calc-units.el (calc-enter-units-table):
16332 * calc/calc-mode.el (calc-mode-record-mode):
16333 * woman.el (woman-mini-help):
16334 * wdired.el (wdired-change-to-wdired-mode):
16335 * vc.el (vc-retrieve-snapshot):
16336 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
16337 * startup.el (display-startup-echo-area-message):
16338 * simple.el (set-goal-column):
16339 * ses.el (ses-command-hook, ses-recalculate-cell):
16340 * server.el (server-process-filter):
16341 * printing.el (pr-interface-txt-print, pr-interface-printify)
16342 (pr-interface-ps):
16343 * pcvs.el (cvs-help):
16344 * log-edit.el (log-edit, log-edit-mode-help):
16345 * iswitchb.el (iswitchb-possible-new-buffer):
16346 * isearch.el (isearch-edit-string):
16347 * image-mode.el (image-mode, image-minor-mode):
16348 * ibuf-macs.el (define-ibuffer-filter):
16349 * hi-lock.el (hi-lock-find-patterns):
16350 * files.el (toggle-read-only):
16351 * ediff-util.el (ediff-copy-diff)
16352 (ediff-write-merge-buffer-and-maybe-kill):
16353 * echistory.el (Electric-history-undefined):
16354 * dnd.el (dnd-insert-text):
16355 * dired-aux.el (dired-query):
16356 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
16357 * bookmark.el (bookmark-bmenu-locate):
16358 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
16359 Fix `message' calls to ensure first arg is a format string.
16360 The change was made only when these two conditions were satisfied:
16361 [1] when there is a possibility that the arguments would cause an error
16362 for example, if the code in question relies on external variables
16363 such as filenames, and
16364 [2] if the arg to `message' could not have been nil in the code.
16365
16366 * pcomplete.el (pcomplete--help): Fix `message' format spec.
16367 Not having a %s would be weird, though not technically wrong.
16368
16369 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16370
16371 * term/mac-win.el (mac-add-charset-info): Doc fix.
16372
16373 2005-09-17 Romain Francoise <romain@orebokech.com>
16374
16375 * shell.el (shell-resync-dirs): Handle echoing processes more
16376 reliably. Don't insert resync command if `comint-process-echoes'
16377 is non-nil.
16378
16379 2005-09-17 Magnus Henoch <mange@freemail.hu>
16380
16381 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
16382 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
16383 aspell versions >= 0.60.
16384 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
16385 only if ispell-aspell-supports-utf8 is non-nil.
16386
16387 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
16388
16389 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
16390 buffer-local value to lisp-indent-function.
16391
16392 2005-09-17 Milan Zamazal <pdm@zamazal.org>
16393
16394 * progmodes/glasses.el (glasses-make-readable): If
16395 glasses-separator differs from underscore, put appropriate
16396 overlays over underscore characters.
16397 (glasses-convert-to-unreadable): If glasses-separator differs from
16398 underscore, try to convert glasses-separator characters to
16399 underscores.
16400
16401 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
16402
16403 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
16404 Use with-syntax-table and dolist.
16405
16406 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
16407
16408 * textmodes/reftex-auc.el:
16409 * textmodes/reftex-cite.el:
16410 * textmodes/reftex-dcr.el:
16411 * textmodes/reftex-global.el:
16412 * textmodes/reftex-parse.el:
16413 * textmodes/reftex-ref.el:
16414 * textmodes/reftex-sel.el:
16415 * textmodes/reftex-toc.el:
16416 * textmodes/reftex-vars.el:
16417 * textmodes/reftex.el: Small changes to remove compiler warnings.
16418
16419 * textmodes/reftex-index.el: Likewise.
16420 (reftex-query-index-phrase): More efficient use of markers.
16421
16422 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
16423
16424 * image.el (image-load-path): New variable.
16425 (image-search-load-path): New function.
16426 (find-image): Search for images in `image-load-path'.
16427
16428 2005-09-15 Richard M. Stallman <rms@gnu.org>
16429
16430 * follow.el: Change Maintainer field.
16431
16432 2005-09-15 David Ponce <david@dponce.com>
16433
16434 * recentf.el (recentf-save-file-modes): New option.
16435 (recentf-save-list): Use it.
16436
16437 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
16438
16439 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
16440 (mode-line-mule-info, mode-line-modified): Move bindings from
16441 mouse-3 to mouse-1.
16442
16443 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
16444
16445 * simple.el (sendmail-user-agent-compose): Revert last change.
16446
16447 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
16448
16449 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
16450 Use with-current-buffer.
16451 (ange-ftp-gwp-start): Remove unused var `gw-user'.
16452 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
16453 (ange-ftp-insert-directory): Remove unused var `short'.
16454 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
16455
16456 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
16457 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
16458
16459 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
16460 (check-calendar-holidays, diary-list-entries): Autoload.
16461 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
16462 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
16463
16464 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
16465 which mistakenly removed a call to display-buffer.
16466
16467 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
16468
16469 * obsolete/iso-insert.el: Move to obsolete/ from international/.
16470
16471 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
16472
16473 * progmodes/hideshow.el
16474 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
16475 (hs-allow-nesting): New user var.
16476 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
16477 (hs-hide-block-at-point): When nesting allowed,
16478 if there is already an overlay in place, delete it.
16479 (hs-safety-is-job-n): Delete func; remove call sites.
16480 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
16481 (hs-overlay-at): New func.
16482 (hs-already-hidden-p, hs-show-block): Use it.
16483 (hs-hide-all): Don't pre-clean if nesting allowed.
16484 (hs-show-all): Temporarily disallow
16485 nesting around call to `hs-discard-overlays'.
16486
16487 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
16488
16489 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
16490 Delete unused local var.
16491
16492 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
16493
16494 * help-fns.el (describe-categories): "?\ " -> "?\s".
16495 (help-do-arg-highlight): Recognize also ARG-n, as in
16496 `move-to-left-margin' (ARG+n is already recognized). Simplify.
16497
16498 * international/codepage.el (dos-unsupported-char-glyph):
16499 * net/newsticker.el (tool-bar-map, w3-mode-map)
16500 (w3m-minor-mode-map):
16501 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
16502 (ent-alist):
16503 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
16504
16505 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
16506
16507 * custom.el (custom-push-theme): Handle the case where a symbol is
16508 bound but face properties have not yet been assigned.
16509
16510 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
16511 Fix behavior if noerase is `t' and there is no mail buffer.
16512
16513 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
16514 if `continue' is nil, rather than signal an error.
16515
16516 2005-09-12 Richard M. Stallman <rms@gnu.org>
16517
16518 * font-lock.el (font-lock-keywords): Add autoload.
16519
16520 * help-fns.el (describe-variable): Rearrange to put source link
16521 in a predictable place.
16522
16523 * net/newsticker.el: New file.
16524
16525 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16526
16527 * calendar/calendar.el (calendar-for-loop): Add edebug info.
16528 (calendar-basic-setup): Use the new nil arg.
16529 (number-of-diary-entries): Move to diary-lib.el.
16530
16531 * calendar/diary-lib.el: Use with-current-buffer, match-string.
16532 (diary-list-entries): Use with-syntax-table and dolist.
16533 Rename from list-diary-entries.
16534 Use number-of-diary-entries if `number' is nil.
16535 (diary, diary-view-entries): Use this new name and new nil arg value.
16536 (number-of-diary-entries): Move from calendar.el.
16537 (diary-unhide-everything): New function.
16538 (include-other-diary-files, fancy-diary-display)
16539 (diary-show-all-entries, make-diary-entry): Use it.
16540 (diary-mail-entries): Use buffer-string.
16541 (mark-diary-entries): Fix long standing paren typo.
16542 (diary-sexp-entry): Use count-lines.
16543 (make-diary-entry): Avoid `previous-line'.
16544 (diary-mode-map): New var.
16545 (diary-mode): Redraw cal after saving. Setup header-line.
16546 (fancy-diary-display-mode): Use local-set-key.
16547
16548 * startup.el (command-line): Try calling various terminal-init-foo-bar
16549 functions by stripping hyphenated suffixes from $TERM.
16550
16551 * files.el (normal-mode): Check boundness of font-lock-keywords.
16552
16553 2005-09-12 Richard M. Stallman <rms@gnu.org>
16554
16555 * progmodes/compile.el: Don't decide a file's directory
16556 until the user actually tries to go there.
16557 (compilation-next-error-function):
16558 Pass compilation-find-file the directory from the file-struct.
16559 (compilation-internal-error-properties): Separate local FILE-STRUCT
16560 from FILE. Doc the args better. Rename arg FMT to FMTS.
16561 (compilation-find-file): Arg DIR renamed to DIRECTORY.
16562 Expand it, and if nil, use default-directory.
16563 (compilation-get-file-structure): Don't mix specified directory
16564 with default directory. Put specified directory into
16565 file-struct. Don't make the file name absolute.
16566
16567 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
16568 (compile-command): Add autoload.
16569 (compilation-disable-input): Add autoload.
16570
16571 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
16572
16573 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
16574 strings of the variables it can override.
16575 (time-stamp): New (as yet undocumented) time-stamp-format escapes
16576 %Q and %q, for fully-qualified domain name and unqualified host name.
16577
16578 2005-09-11 Kim F. Storm <storm@cua.dk>
16579
16580 * emacs-lisp/authors.el (authors-aliases): Update list.
16581 (authors-fixed-entries): Update mldrag.el entry.
16582
16583 2005-09-10 Alan Mackenzie <acm@muc.de>
16584
16585 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
16586 from the region narrowed to.
16587
16588 2005-09-10 Magnus Henoch <mange@freemail.hu>
16589
16590 * textmodes/ispell.el (ispell-check-version): Signal an error if
16591 aspell version is less than 0.60.
16592
16593 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
16594
16595 * progmodes/octave-inf.el (inferior-octave-startup):
16596 Resync current dir at the end.
16597
16598 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
16599
16600 * woman.el (woman-topic-at-point-default):
16601 Rename to woman-use-topic-at-point-default.
16602 (woman-topic-at-point): Rename to woman-use-topic-at-point.
16603 (woman-file-name): Reflect renames above. Automatically use the
16604 word at point as topic if woman-use-topic-at-point is non-nil.
16605 Otherwise offer it as default but don't insert it in the
16606 minibuffer. Also use `test-completion' instead of `assoc' as
16607 suggested by Stefan Monnier.
16608
16609 2005-09-10 Andre Spiegel <spiegel@gnu.org>
16610
16611 * vc.el (vc-directory, vc-update-change-log): Throw an error on
16612 the attempt to do it over Tramp. This is not yet supported.
16613
16614 2005-09-10 Eli Zaretskii <eliz@gnu.org>
16615
16616 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
16617 (menu-bar-non-minibuffer-window-p): New functions.
16618 ("Split Window", "Save As..."): Use them.
16619 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
16620 ("Print Buffer", "Truncate Long Lines in this Buffer"):
16621 Use menu-bar-menu-frame-live-and-visible-p.
16622 ("Save Buffer", "Insert File", "Open Directory...")
16623 ("Open File...", "Visit New File..."):
16624 Use menu-bar-non-minibuffer-window-p.
16625 (kill-this-buffer-enabled-p, dired <menu-enable>):
16626 Use menu-bar-non-minibuffer-window-p.
16627
16628 2005-09-09 Eli Zaretskii <eliz@gnu.org>
16629
16630 * cus-start.el (all): Don't complain about fringe-related
16631 built-ins if fringes are not supported. Ditto about
16632 selection-related built-ins. Fix the test for GTK-related built-ins.
16633
16634 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
16635 ("Postscript Print Buffer", "Print Region", "Save As...")
16636 ("Save", "Insert File...", "Open Directory...")
16637 ("Open File...", "Visit New File..."")
16638 ("Truncate Long Lines in this Buffer"): Don't look at
16639 menu-updating-frame if this display does not support multiple frames.
16640
16641 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
16642
16643 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
16644
16645 2005-09-09 Emilio Lopes <eclig@gmx.net>
16646
16647 * woman.el: Format- and whitespace-related changes.
16648
16649 2005-09-09 Eli Zaretskii <eliz@gnu.org>
16650
16651 * woman.el: Fix my email address.
16652
16653 2005-09-08 Richard M. Stallman <rms@gnu.org>
16654
16655 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
16656 (sh-mode): Locally set skeleton-pair-default-alist.
16657
16658 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
16659
16660 * progmodes/flymake.el: Require `compile' unconditionally.
16661
16662 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
16663
16664 * woman.el (woman-file-name): Provide a default, not initial input.
16665
16666 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
16667
16668 * font-lock.el (font-lock-support-mode): Doc fix.
16669
16670 * descr-text.el (describe-property-list): Handle non-symbol prop names.
16671
16672 2005-09-08 Richard M. Stallman <rms@gnu.org>
16673
16674 * simple.el (blink-matching-open): Get rid of text props from
16675 the string shown in echo area. Don't permanently set point.
16676 Some rearrangements.
16677
16678 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
16679
16680 * recentf.el (recentf-filename-handler): Add custom choice
16681 `abbreviate-file-name'.
16682
16683 * msb.el (msb--very-many-menus): Fix typo.
16684
16685 * disp-table.el (standard-display-european): Don't set
16686 enable-multibyte-characters to nil.
16687
16688 2005-09-08 David Ponce <david@dponce.com>
16689
16690 * recentf.el (recentf-show-file-shortcuts-flag): New option.
16691 (recentf-expand-file-name): Doc fix.
16692 (recentf-dialog-mode-map): Define digit shortcuts.
16693 (recentf--files-with-key): New variable.
16694 (recentf-show-digit-shortcut-filter): New function.
16695 (recentf-open-files-items): New function.
16696 (recentf-open-files): Use it.
16697 (recentf-open-file-with-key): New command.
16698
16699 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
16700
16701 * buff-menu.el (Buffer-menu-sort-by-column): New function.
16702 Suggested by Kim F. Storm.
16703 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
16704 (Buffer-menu-make-sort-button): Use global keymap.
16705
16706 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
16707
16708 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
16709 (Man-getpage-in-background-advice): Remove defadvice; it isn't
16710 necessary any longer with the remapped command.
16711 (Man-bgproc-sentinel-advice): Remove defadvice which counts
16712 formatting time only.
16713
16714 * net/tramp.el (tramp-action-password)
16715 (tramp-multi-action-password): Compile the password prompt from
16716 `method', `user' and `host'. Sometimes it isn't obvious which
16717 password to enter, for example with remote files offered by
16718 recentf.el, or with multiple steps. Suggested by Robert Marshall
16719 <robert@chezmarshall.freeserve.co.uk>.
16720
16721 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16722
16723 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
16724 Fix regexp for when "s///" is at the beginning of line.
16725
16726 2005-09-07 Jay Belanger <belanger@truman.edu>
16727
16728 * calc/calc-poly.el (math-expand-term): Multiply out any powers
16729 when in matrix mode.
16730
16731 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
16732
16733 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
16734 non-anonymous functions.
16735
16736 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
16737
16738 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
16739 when using a header line. Otherwise, use mouse-1-click-follows-link.
16740
16741 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
16742 can't be moved; don't signal an error.
16743
16744 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
16745
16746 * cus-theme.el (custom-theme-write-faces): Save the current face
16747 spec, not the defface spec.
16748
16749 * custom.el (custom-known-themes): Clarify meaning of "standard".
16750 (custom-push-theme): Save old values in the standard theme.
16751 (disable-theme): Correct typo.
16752 (custom-face-theme-value) Deleted unused function.
16753 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
16754
16755 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
16756
16757 * progmodes/compile.el (compilation-goto-locus): Take into account
16758 iconified frames when determining whether the buffer is
16759 already visible.
16760 Don't reset window height if the window already existed.
16761
16762 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
16763
16764 * custom.el (load-theme): Rename from require-theme.
16765 Add interactive spec.
16766 (enable-theme): Rename from custom-enable-theme.
16767 Add interactive spec.
16768 (disable-theme): Rename from custom-disable-theme.
16769 Add interactive spec.
16770 (custom-make-theme-feature): Doc fix.
16771 (custom-theme-directory): Doc fix.
16772 (provide-theme): Call enable-theme.
16773
16774 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
16775
16776 * obsolete/lazy-lock.el (lazy-lock-mode):
16777 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
16778 font-lock-mode if it's off. Print a warning instead.
16779
16780 * progmodes/compile.el (compilation-start): Ignore errors if the
16781 process died before we get to send-eof.
16782
16783 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
16784 Undo last change. Enclosing the result in quotes broke things on Unix
16785 since tex-send-command passes it through shell-quote-argument.
16786 (tex-send-command): Pass `file' through convert-standard-filename
16787 when possible.
16788 (tex-uptodate-p): Handle the case where TeX hasn't put additional
16789 info in a transcript.
16790
16791 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
16792
16793 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
16794 fix compilation warning. Reorder the key definitions to group
16795 together keys emitted by the current version of xterm.
16796
16797 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
16798 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
16799 Reorder predicates to correct min-color usage.
16800
16801 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
16802
16803 * longlines.el (longlines-mode): Inhibit read-only when encoding.
16804 Kill local variables when longlines-mode is turned off.
16805
16806 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
16807
16808 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
16809
16810 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
16811
16812 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
16813
16814 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
16815 (font-lock-lines-before): Change default to being inactive.
16816 (font-lock-default-fontify-region): Obey font-lock-lines-before.
16817 (font-lock-after-change-function): Don't handle f-l-lines-before here.
16818
16819 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
16820
16821 * net/tramp.el (tramp-handle-make-auto-save-file-name):
16822 Deactivate temporarily advice if active (not needed for Emacs 22,
16823 but for backwards compatibility).
16824 (tramp-exists-file-name-handler): Rewrite. First implementation
16825 was too simple.
16826 (tramp-advice-make-auto-save-file-name):
16827 Call `tramp-handle-make-auto-save-file-name' (again, just for
16828 backwards compatibility).
16829
16830 2005-08-31 Reto Zimmermann <reto@gnu.org>
16831
16832 * progmodes/vhdl-mode.el
16833 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
16834 (vhdl-end-p): Fix indentation bug "else" after "-- when".
16835 (vhdl-set-default-project): New function (easier setting of default).
16836 (vhdl-port-copy): Handle extended identifiers for generics.
16837 (vhdl-compiler-alist): Better description for error message regexp.
16838 (vhdl-make): Query for target, use previous as default.
16839 (vhdl-port-copy): Fix port copy for port names starting with "signal".
16840 (vhdl-font-lock-keywords-2): Fix fontification for record
16841 el. assign.
16842 (vhdl-speedbar-make-subpack-line): Add package body link.
16843 (vhdl-generate-makefile-1): Not include itself as dependency.
16844 (vhdl-font-lock-init): Highlight c-preprocessor directives.
16845 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
16846 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
16847 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
16848 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
16849 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
16850 (vhdl-import-project): Add string argument for `error'.
16851 (vhdl-compose-configuration)
16852 (vhdl-compose-configuration-architecture): Add configuration
16853 declaration generation.
16854 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
16855 (vhdl-trailer-re): Add "record" keyword (better indentation).
16856 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
16857 "[^ \t-\"]+".
16858 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
16859 (vhdl-testbench-entity-file-name)
16860 (vhdl-testbench-architecture-file-name): Allow separate
16861 customization of testbench file names.
16862 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
16863 (vhdl-get-visible-signals): Allow newline within alias declaration.
16864 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
16865 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
16866 (member-ignore-case): Alias for missing function in XEmacs.
16867 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
16868 (vhdl-update-sensitivity-list): Ignore case on read signals.
16869 (vhdl-replace-string): Adjust case only for file names.
16870 (vhdl-update-sensitivity-list): Fix search for read signals.
16871 (vhdl-update-sensitivity-list): Exclude formal parameters.
16872 (vhdl-get-visible-signals): Include aliases of signals.
16873 (vhdl-get-visible-signals): Fix signal name searching.
16874 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
16875 (vhdl-fixup-whitespace-region): Fix for character
16876 literals (e.g. `:').
16877
16878 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
16879
16880 * ansi-color.el (comint-last-output-start):
16881 * bs.el (font-lock-verbose):
16882 * diff-mode.el (add-log-buffer-file-name-function):
16883 * dired-x.el (vm-folder-directory):
16884 * faces.el (help-xref-stack-item):
16885 * files.el (font-lock-keywords):
16886 * find-lisp.el (dired-buffers, dired-subdir-alist):
16887 * ido.el (cua-inhibit-cua-keys):
16888 * log-view.el (cvs-minor-wrap-function):
16889 * outline.el (font-lock-warning-face):
16890 * simple.el (compilation-current-error):
16891 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
16892 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
16893 * tooltip.el (comint-prompt-regexp):
16894 * w32-fns.el (explicit-shell-file-name):
16895 * term/mac-win.el (mac-charset-info-alist)
16896 (mac-services-selection, mac-system-script-code):
16897 * term/tty-colors.el (msdos-color-values):
16898 * term/w32-win.el (xlfd-regexp-registry-subnum):
16899 * term/x-win.el (x-keysym-table, x-selection-timeout)
16900 (x-session-id, x-session-previous-id):
16901 * textmodes/ispell.el (mail-yank-prefix):
16902 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
16903 * textmodes/org.el (calc-embedded-close-formula)
16904 (calc-embedded-open-formula)
16905 (font-lock-unfontify-region-function):
16906 * textmodes/reftex-global.el (isearch-next-buffer-function)
16907 (TeX-master):
16908 * textmodes/reftex.el (font-lock-keywords):
16909 * textmodes/tex-mode.el (font-lock-comment-face)
16910 (font-lock-doc-face):
16911 * textmodes/texinfo.el (outline-heading-alist):
16912 Add defvars.
16913
16914 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
16915 (artist-spray-chars, artist-mode-init, artist-replace-string)
16916 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
16917 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
16918 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
16919
16920 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
16921 (conf-align-assignments): "?\ " -> "?\s".
16922
16923 * textmodes/reftex-index.el (TeX-master): Add defvar.
16924 (reftex-index-phrases-marker): Move up defvar.
16925
16926 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
16927 (reftex-toc-include-labels-indicator)
16928 (reftex-toc-include-index-indicator)
16929 (reftex-toc-max-level-indicator): Move up declarations.
16930
16931 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
16932 of args to `tramp-run-real-handler', even if it's empty in this case.
16933
16934 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16935
16936 * dired.el (dired-move-to-filename-regexp): Add date format for
16937 Mac OS X 10.3 in East Asian locales.
16938
16939 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
16940
16941 * files.el (make-auto-save-file-name): Add file name handler call
16942 if applicable.
16943
16944 * net/tramp.el (tramp-file-name-handler-alist)
16945 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
16946 (tramp-handle-make-auto-save-file-name): Rename from
16947 `tramp-make-auto-save-file-name'.
16948 (tramp-exists-file-name-handler): New defun.
16949 (tramp-advice-make-auto-save-file-name): Make defadvice only when
16950 `make-auto-save-file-name' is not a magic file name operation.
16951
16952 2005-08-30 Richard M. Stallman <rms@gnu.org>
16953
16954 * files.el (risky-local-variable-p):
16955 Match `-predicates' and `-commands.
16956
16957 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
16958 (custom-save-all): Visit the file if necessary;
16959 kill the buffer if we created it.
16960 (custom-save-delete): Don't visit file or kill buffer here.
16961
16962 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
16963
16964 * textmodes/org.el (org-special-keyword): New face.
16965 (org-table-copy-down, org-table-eval-formula)
16966 (org-table-recalculate, org-init-section-numbers):
16967 Use `string-to-number' instead of `string-to-int'.
16968 (org-get-location): Use `insert-buffer-substring' instead of
16969 `insert-buffer'.
16970 (org-modify-diary-entry-string): New function.
16971 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
16972 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
16973 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
16974 active region.
16975 (org-export-as-html): Handle QUOTE keyword.
16976 (org-quote-string): New option.
16977 (org-bookmark-jump-unhide): New function, used for
16978 `bookmark-after-jump-hook'.
16979 (org-diary-default-entry): Apply only when not called through
16980 `org-agenda'.
16981
16982 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
16983
16984 * net/eudc.el (mode-popup-menu):
16985 * play/handwrite.el (ps-printer-name, ps-lpr-command):
16986 * progmodes/ada-mode.el (compile-auto-highlight)
16987 (skeleton-further-elements):
16988 * progmodes/autoconf.el (font-lock-syntactic-keywords):
16989 * progmodes/cmacexp.el (msdos-shells):
16990 * progmodes/compile.el (font-lock-extra-managed-props)
16991 (font-lock-keywords, font-lock-maximum-size)
16992 (font-lock-support-mode):
16993 * progmodes/grep.el (font-lock-lines-before):
16994 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
16995 * progmodes/mixal-mode.el (compile-command):
16996 * progmodes/perl-mode.el (font-lock-comment-face)
16997 (font-lock-doc-face, font-lock-string-face):
16998 * progmodes/prolog.el (comint-prompt-regexp):
16999 * progmodes/sh-script.el (font-lock-comment-face)
17000 (font-lock-set-defaults, font-lock-string-face):
17001 * progmodes/sql.el (font-lock-keyword-face)
17002 (font-lock-set-defaults, font-lock-string-face):
17003 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
17004 (itimer-version, lazy-lock-defer-contextually)
17005 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
17006 Add defvars.
17007
17008 * progmodes/cperl-mode.el (cperl-electric-lbrace)
17009 (cperl-electric-keyword, cperl-electric-pod)
17010 (cperl-electric-backspace, cperl-forward-re)
17011 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
17012 (vc-rcs-header, vc-sccs-header): Add defvars.
17013
17014 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
17015 (font-lock-syntactic-keywords, gud-find-expr-function):
17016 Add defvars.
17017
17018 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
17019 (gdb-frame-parameters): Declare before use.
17020
17021 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
17022 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
17023 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
17024 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
17025
17026 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
17027 (idlwave-help-with-source): Use `insert-buffer-substring', not
17028 `insert-buffer'.
17029
17030 2005-08-29 Juri Linkov <juri@jurta.org>
17031
17032 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
17033 Put outline-back-to-heading function call inside save-excursion.
17034
17035 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
17036
17037 * man.el (Man-init-defvars, Man-translate-references)
17038 (Man-support-local-filenames, Man-highlight-references):
17039 * progmodes/sql.el (sql-interactive-mode):
17040 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
17041
17042 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
17043 (compilation-mode-font-lock-keywords): Add defvars.
17044 (checkdoc-interactive-loop): "?\ " -> "?\s".
17045
17046 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
17047 (font-lock-doc-face, font-lock-string-face)
17048 (font-lock-keywords-case-fold-search): Add defvars.
17049 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
17050
17051 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
17052 Don't pass X and Y (they are ignored anyway).
17053 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
17054 (mouse-delete-window): Make arguments optional.
17055
17056 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
17057 (caesar-translate-table, minor-modes, news-buffer-save)
17058 (news-group-name, news-minor-modes): Add defvars.
17059
17060 * emacs-lisp/lselect.el (mouse-highlight-priority)
17061 (x-lost-selection-functions, zmacs-regions):
17062 * emacs-lisp/pp.el (font-lock-verbose):
17063 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
17064 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
17065 (ses-mode-map):
17066 * emacs-lisp/tcover-unsafep.el (safe-functions):
17067 * international/mule-cmds.el (mac-system-coding-system)
17068 (mac-system-locale):
17069 * language/ethio-util.el (rmail-current-message)
17070 (rmail-message-vector):
17071 * language/thai-util.el (thai-auto-composition-mode):
17072 * mail/metamail.el (rmail-current-message, rmail-message-vector):
17073 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
17074 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
17075 (vm-primary-inbox, vm-spool-files):
17076 * mail/rmail.el (deleted-head, font-lock-fontified)
17077 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
17078 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
17079 (total-messages):
17080 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
17081 (rmail-summary-mode-map):
17082 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
17083 (rmail-last-label, rmail-last-multi-labels)
17084 (rmail-summary-vector, rmail-total-messages):
17085 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
17086 * mail/rmailsum.el (msgnum):
17087 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
17088 (rmail-current-message):
17089 * obsolete/fast-lock.el (font-lock-face-list):
17090 * obsolete/rnewspost.el (mail-reply-buffer):
17091 * obsolete/scribe.el (compile-command):
17092 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
17093
17094 2005-08-28 John Paul Wallington <jpw@gnu.org>
17095
17096 * ibuf-ext.el (ibuffer-auto-update-changed):
17097 Use `frame-or-buffer-changed-p' to check whether we need to update.
17098 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
17099 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
17100 as a `frame-or-buffer-changed-p' state vector instead.
17101
17102 2005-08-27 Romain Francoise <romain@orebokech.com>
17103
17104 * textmodes/makeinfo.el (makeinfo-compile):
17105 Use `compilation-start'. Set `next-error-function' according to
17106 `disable-errors'.
17107 (makeinfo-next-error): New function.
17108 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
17109 (makeinfo-buffer): Likewise.
17110
17111 * progmodes/compile.el (compilation-start): Add autoload cookie.
17112
17113 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
17114 * textmodes/sgml-mode.el: Likewise.
17115 * progmodes/python.el: Likewise.
17116
17117 2005-08-27 Eli Zaretskii <eliz@gnu.org>
17118
17119 * simple.el (blink-matching-paren-distance): Document the meaning
17120 of nil value, and allow to customize to nil.
17121
17122 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
17123 command.com, not command.exe.
17124
17125 2005-08-26 John Wiegley <johnw@newartisans.com>
17126
17127 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
17128 code around a bit so that an extraneous nil argument is not added
17129 to a command when no args are given.
17130
17131 * eshell/esh-arg.el (eshell-parse-double-quote): If a
17132 double-quoted argument resolves to nil, return it as an empty
17133 string rather than as nil. This made it impossible to pass "" to
17134 a shell script as a null string argument.
17135
17136 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
17137
17138 * outline.el (outline-invent-heading): New fun.
17139 (outline-promote, outline-demote): Use it.
17140 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
17141 (outline-end-of-subtree): Remove unused var `opoint'.
17142
17143 2005-08-26 David Reitter <david.reitter@gmail.com>
17144
17145 * menu-bar.el (truncate-lines, write-file, print-buffer)
17146 (ps-print-buffer-faces, ps-print-buffer, split-window):
17147 Disable menu items when the frame they refer to is invisible, or when
17148 they refer to a buffer and the minibuffer is selected.
17149
17150 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
17151
17152 * progmodes/flymake.el (flymake-highlight-err-lines):
17153 Use save-excursion around flymake-highlight-line to preserve point.
17154
17155 2005-08-26 Eli Zaretskii <eliz@gnu.org>
17156
17157 * progmodes/octave-mod.el: Change Author and Maintainer address.
17158 (octave-maintainer-address): Change Kurt's email address.
17159 * progmodes/octave-inf.el: Change Author and Maintainer address.
17160 * progmodes/octave-hlp.el: Change Author and Maintainer address.
17161
17162 2005-08-26 Kim F. Storm <storm@cua.dk>
17163
17164 * subr.el (version-list-<, version-list-<=, version-list-=):
17165 Rename from integer-list-*.
17166 (version-list-not-zero): Likewise. Fix while loop.
17167 (version=): Use version-list-= instead of string-equal.
17168
17169 2005-08-26 Richard M. Stallman <rms@gnu.org>
17170
17171 * outline.el (outline-promote): Try shortening the heading.
17172 As last resort, read the heading to use.
17173 (outline-demote): As last resort, read the heading to use.
17174
17175 2005-08-26 Romain Francoise <romain@orebokech.com>
17176
17177 * progmodes/compile.el (compilation-start): Doc fix.
17178
17179 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
17180 (antlr-font-lock-additional-keywords): Fix reference to
17181 `antlr-font-lock-literal-regexp' erroneously changed during the
17182 mass face rename.
17183 (antlr-run-tool): Use `compilation-start'.
17184
17185 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
17186 instead of the obsolete `compile-internal'.
17187
17188 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
17189
17190 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
17191 (number, original-date):
17192 * calendar/cal-china.el (date):
17193 * calendar/cal-coptic.el (date):
17194 * calendar/cal-french.el (date):
17195 * calendar/cal-hebrew.el (date, entry, number, original-date):
17196 * calendar/cal-islam.el (date, number, original-date):
17197 * calendar/cal-iso.el (date):
17198 * calendar/cal-julian.el (date):
17199 * calendar/cal-mayan.el (date):
17200 * calendar/cal-menu.el (date, event):
17201 * calendar/cal-persia.el (date):
17202 * calendar/lunar.el (date):
17203 * calendar/solar.el (date): Add defvars.
17204
17205 * emerge.el:
17206 * ibuffer.el:
17207 * info-xref.el:
17208 * obsolete/bg-mouse.el:
17209 * obsolete/sun-curs.el:
17210 * obsolete/swedish.el: Move the `defvar's to the top level.
17211
17212 * smerge-mode.el (smerge-refined-change): Add :group.
17213
17214 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
17215
17216 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
17217 (smerge-keep-n): Remove props.
17218 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
17219 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
17220 now that it's done in smerge-keep-n.
17221 (smerge-refined-change): New face.
17222 (smerge-refine-chopup-region, smerge-refine-highlight-change)
17223 (smerge-refine): New funs.
17224 (smerge-basic-map): Bind smerge-refine.
17225
17226 2005-08-25 Juri Linkov <juri@jurta.org>
17227
17228 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
17229 compilation-process-setup-function and compilation-disable-input
17230 in grep-mode instead of let-bindings in grep.
17231
17232 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
17233 Delete "Automatic File De/compression" (auto-compression-mode).
17234
17235 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
17236
17237 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
17238 Silence warning about non-existent variable.
17239
17240 2005-08-25 Richard M. Stallman <rms@gnu.org>
17241
17242 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
17243 Rename "Describe Key" to "Describe Key or Mouse Operation".
17244
17245 * mail/mailalias.el (build-mail-aliases): Delete comments
17246 from the contents before processing them.
17247
17248 * isearch.el (isearch-edit-string): Erase the Search prompt
17249 if user enters an empty string and there is no default.
17250
17251 * comint.el (comint-file-name-prefix): Add autoload.
17252
17253 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
17254
17255 * subr.el (play-sound): Rearrange to avoid warning.
17256
17257 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
17258
17259 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
17260 New hook.
17261 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
17262
17263 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
17264
17265 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
17266
17267 * custom.el (custom-theme-set-variables): Sort minor modes last.
17268
17269 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17270
17271 * subr.el (version-separator, version-regexp-alist): New vars used by
17272 version comparison funs.
17273 (integer-list-<, integer-list-=, integer-list-<=)
17274 (integer-list-not-zero): New funs for integer list comparison.
17275 (version-to-list, version=, version<, version<=): New funs for version
17276 comparison.
17277
17278 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
17279
17280 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
17281 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
17282 time to silence the byte-compiler.
17283
17284 * ibuffer.el (ibuffer-compile-make-eliding-form)
17285 (ibuffer-check-formats): Use `with-no-warnings' to hide references
17286 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
17287 so it's silly to get warnings for it).
17288 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
17289 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
17290 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
17291 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
17292 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
17293 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
17294 Defvar at compile time.
17295 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
17296 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
17297 Declare them before use.
17298
17299 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
17300 (info-xref-good, info-xref-bad): Defvar at compile time.
17301
17302 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
17303 Use `let*' instead of `let'.
17304
17305 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
17306 (*mouse-y*, menu, char): Defvar at compile time.
17307 (sc::menu): Declare it before use.
17308 (sc::pack-one-line): Use `let', not `let*'.
17309
17310 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
17311 (mail-send-hook): Defvar at compile time.
17312
17313 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
17314 Defvar at compile time.
17315
17316 * term/sun-mouse.el (current-global-mousemap)
17317 (current-local-mousemap): Declare them before use.
17318
17319 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
17320
17321 * bookmark.el (bookmark-after-jump-hook): New hook.
17322 (bookmark-jump): Run `bookmark-after-jump-hook'.
17323
17324 2005-08-23 Juri Linkov <juri@jurta.org>
17325
17326 * faces.el (minibuffer-prompt): Doc fix.
17327
17328 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
17329
17330 * progmodes/xscheme.el: Trivial changes to silence warnings.
17331 (xscheme-previous-mode, xscheme-previous-process-state):
17332 Add defvars.
17333 (xscheme-last-input-end, xscheme-process-command-line)
17334 (xscheme-process-name, xscheme-buffer-name)
17335 (xscheme-expressions-ring-max, xscheme-expressions-ring)
17336 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
17337 (xscheme-control-g-synchronization-p)
17338 (xscheme-control-g-disabled-p, xscheme-string-receiver)
17339 (default-xscheme-runlight, xscheme-runlight)
17340 (xscheme-runlight-string, xscheme-process-filter-state)
17341 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
17342 Move to beginning of file.
17343 (scheme-interaction-mode-commands-alist)
17344 (scheme-interaction-mode-map, scheme-debugger-mode-map):
17345 Declare them before use. Note: the initialization code for the
17346 variables has not been moved because it uses functions that reference
17347 the variables.
17348 (xscheme-control-g-message-string, xscheme-process-filter-alist)
17349 (xscheme-prompt-for-expression-map): Declare them before use.
17350 (scheme-debugger-mode-commands): "?\ " -> "?\s".
17351
17352 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
17353
17354 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
17355
17356 2005-08-22 Juri Linkov <juri@jurta.org>
17357
17358 * faces.el (set-face-underline): Delete this duplicate function
17359 and make an obsolete alias to set-face-underline-p.
17360 (set-face-underline-p): Use docstring of set-face-underline.
17361 (describe-face): Create hyperlink to parent face.
17362
17363 * info.el (Info-insert-dir): Use save-excursion around
17364 insert-buffer-substring.
17365 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
17366 (Info-escape-percent): Delete function.
17367 (Info-fontify-node): Replace Info-escape-percent by
17368 replace-regexp-in-string with REP arg set to lambda that
17369 duplicates `%' and preserves text properties.
17370
17371 * progmodes/compile.el (compilation-disable-input): Doc fix.
17372 (define-compilation-mode): Doc fix and refill.
17373 (kill-compilation): Use `mode-name' in the error message.
17374 (compilation-find-file): Use `compilation-error' in the
17375 read-file-name's prompt.
17376
17377 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
17378
17379 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
17380 (smerge-auto-leave): Make undo re-enable the mode.
17381 (debug-ignored-errors): Add the user-error of impossible resolution.
17382 (smerge-resolve): Move things around a bit, in preparation for later.
17383 (smerge-diff): Don't fail if the buffer has no associated file.
17384 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
17385 (smerge-conflict-overlay): New function.
17386 (smerge-match-conflict): Don't add text properties here.
17387 (smerge-find-conflict): Instead, add an overlay here.
17388 Also check for the case where we're inside a conflict already, so as to
17389 obviate the need for font-lock-multiline, which is unbearably slow with
17390 large conflicts and ciomplex font-lock patterns.
17391 (smerge-remove-props): Remove overlay rather than text-properties.
17392 (smerge-mode): Don't set font-lock-multiline.
17393 Remove overlays when turned off.
17394
17395 2005-08-21 Kim F. Storm <storm@cua.dk>
17396
17397 * ido.el (ido-ignore-item-p): Use save-match-data.
17398 Bind case-fold-search to ido-case-fold locally.
17399
17400 2005-08-20 Richard M. Stallman <rms@gnu.org>
17401
17402 * files.el (normal-mode): If font lock is on, turn it off and on.
17403
17404 * subr.el (replace-regexp-in-string): Doc fix.
17405
17406 * startup.el (command-line-1): Don't suppress startup screen
17407 due to existing processes.
17408
17409 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
17410
17411 * progmodes/compile.el (compilation-disable-input): Default to nil.
17412
17413 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
17414
17415 * progmodes/compile.el (compilation-disable-input): New defcustom.
17416 (compilation-start): If compilation-disable-input is non-nil, send
17417 EOF to the compilation process.
17418
17419 2005-08-20 Eli Zaretskii <eliz@gnu.org>
17420
17421 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
17422 Run the argument of tex-shell-cd-command through
17423 convert-standard-filename, to get the correct style of slashes on
17424 Windows, and enclose the result in quotes, in case the file name
17425 includes whitespace or other special characters.
17426
17427 2005-08-19 Andreas Schwab <schwab@suse.de>
17428
17429 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
17430 process.
17431
17432 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
17433
17434 * cus-start.el (minibuffer-prompt-properties): Correct typo.
17435
17436 2005-08-18 Kim F. Storm <storm@cua.dk>
17437
17438 * scroll-lock.el: Fix errors due to incorrect line wrapping.
17439
17440 2005-08-18 Richard M. Stallman <rms@gnu.org>
17441
17442 * scroll-lock.el: New file.
17443
17444 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
17445
17446 * dired.el (dired-move-to-end-of-filename):
17447 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
17448
17449 2005-08-18 Kim F. Storm <storm@cua.dk>
17450
17451 * ido.el (ido-everywhere): Fix defcustom :set function to disable
17452 rather than toggle mode when custom value is nil.
17453 (ido-everywhere): Fix defun doc string.
17454
17455 2005-08-17 Richard M. Stallman <rms@gnu.org>
17456
17457 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
17458 as tag instead of "Inviolable".
17459
17460 2005-08-17 Kim F. Storm <storm@cua.dk>
17461
17462 * windmove.el (windmove-coordinates-of-position): Remove.
17463 (windmove-coordinates-of-window-position): Remove.
17464 (windmove-reference-loc): Use posn-at-point instead.
17465
17466 * subr.el (insert-for-yank-1): Doc fix.
17467
17468 * ido.el (ido-enter-matching-directory): Rename from
17469 ido-enter-single-matching-directory. Change `slash' choice to
17470 `only'. Add `first' choice.
17471 (ido-exhibit): Adapt to above changes.
17472
17473 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
17474
17475 * Makefile.in: Expand comment about building loaddefs.el.
17476
17477 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
17478
17479 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
17480 Comment use of defadvice.
17481
17482 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
17483
17484 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
17485
17486 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
17487 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
17488 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
17489 * progmodes/idlw-shell.el, progmodes/ld-script.el,
17490 * progmodes/which-func.el, ruler-mode.el, strokes.el,
17491 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
17492 for backward compatibility for faces that did not appear in the
17493 previous Emacs release.
17494
17495 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
17496
17497 2005-08-15 Kim F. Storm <storm@cua.dk>
17498
17499 * emulation/cua-base.el (cua-delete-region): Return t if
17500 deleted region was non-empty.
17501 (cua-replace-region): Inhibit overwrite-mode for
17502 self-insert-command if replaced region was non-empty.
17503 (cua--explicit-region-start, cua--status-string): Make them
17504 buffer-local at top-level...
17505 (cua-mode): ...rather than when mode is enabled.
17506
17507 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
17508
17509 * progmodes/vhdl-mode.el (vhdl-emacs-21):
17510 Set t for Emacs 21, 22, and so on.
17511
17512 2005-08-15 David Ponce <david@dponce.com>
17513
17514 * tree-widget.el: Update Commentary header.
17515 (tree-widget-theme): Doc fix.
17516 (tree-widget-space-width): New option.
17517 (tree-widget-image-properties): Look up in the default theme too.
17518 (tree-widget--cursors): Only for images with arrow pointer shape.
17519 (tree-widget-lookup-image): Pointer shape is hand by default.
17520 (tree-widget-icon): Rename generic icon widget from
17521 `tree-widget-control'.
17522 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
17523 derive from `tree-widget-icon'.
17524 (tree-widget-handle): Improve default look and feel of the text
17525 representation.
17526 (tree-widget): Rename :*-control properties to :*-icon properties.
17527 Add :action and :help-echo properties.
17528 (tree-widget-after-toggle-functions): Move.
17529 (tree-widget-close-node, tree-widget-open-node): Remove.
17530 (tree-widget-before-create-icon-functions): New hook.
17531 (tree-widget-value-create): Update to allow customization of icons
17532 and nodes at run-time via that new hook.
17533 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
17534 (tree-widget-icon-action, tree-widget-icon-help-echo)
17535 (tree-widget-action, tree-widget-help-echo): New functions.
17536
17537 2005-08-15 Kim F. Storm <storm@cua.dk>
17538
17539 * ido.el (ido-buffer-internal): Use with-no-warnings.
17540 (ido-make-merged-file-list): Use while-no-input.
17541
17542 2005-08-15 Richard M. Stallman <rms@gnu.org>
17543
17544 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
17545 (flyspell-large-region): Fix doc and custom type.
17546
17547 2005-08-14 Richard M. Stallman <rms@gnu.org>
17548
17549 * files.el (interpreter-mode-alist): Doc fix.
17550
17551 * mail/rmail.el (rmail-nonignored-headers): New variable.
17552 (rmail-clear-headers): Use it.
17553 (rmail-reply): Better handling of mail-followup-to header.
17554
17555 * progmodes/sh-script.el (sh-font-lock-keywords-var):
17556 Rename variable from sh-font-lock-keywords. In the `shell' entry,
17557 don't try to refer to executable-font-lock-keywords.
17558 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
17559 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
17560 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
17561 (sh-mode): Set comment-start-skip, local-abbrev-table,
17562 imenu-case-fold-search.
17563 (sh-set-shell): Don't set them here.
17564 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
17565 Don't cache the results in the original alist; don't ever modify
17566 that alist.
17567
17568 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
17569
17570 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
17571 empty.
17572
17573 2005-08-15 Andreas Schwab <schwab@suse.de>
17574
17575 * desktop.el: Put autoload cookie at risky-local-variable declarations.
17576
17577 * dired.el, info.el, mail/rmail.el: Revert last change.
17578
17579 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
17580
17581 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
17582 modification in `eval-after-load' form.
17583 * info.el: Likewise.
17584 * mail/rmail.el: Likewise.
17585
17586 2005-08-14 Juri Linkov <juri@jurta.org>
17587
17588 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17589 Remove highlighting of "Compilation started". Highlight only
17590 the word "finished" in "Compilation finished". Add highlighting
17591 of "interrupt", "killed", "terminated" and the exit code.
17592 (compilation-start): Add newline after header. Use exactly the
17593 same time stamp format as the finishing message.
17594 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
17595
17596 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
17597 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
17598 Add highlighting of "interrupt", "killed", "terminated".
17599
17600 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
17601 enabled and the current command is self-insert-command, call it
17602 explicitly with overwrite-mode bound to nil, to not allow it
17603 to delete the character after the selected region.
17604
17605 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
17606
17607 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
17608 move-end-of-line, end-of-line, and beginning-of-line to the list
17609 of commands after which the echo area is updated.
17610
17611 2005-08-12 Eli Zaretskii <eliz@gnu.org>
17612
17613 * cus-edit.el (custom-save-all, custom-save-delete):
17614 Bind recentf-exclude to exclude custom-file.
17615
17616 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
17617
17618 * mail/rmailsum.el (rmail-summary-end-of-message): New command
17619 to go to the bottom of the mail message. Added to
17620 `rmail-summary-mode-map' with key "/".
17621 (rmail-summary-show-message): New (internal) function for use by
17622 both `rmail-summary-beginning/end-of-message'.
17623 (rmail-summary-beginning-of-message): Change to use
17624 rmail-summary-show-message.
17625
17626 * mail/rmail.el (rmail-end-of-message): New command to go to the
17627 end of the current message. Added to `rmail-mode-map' with key "/".
17628 (rmail-beginning-of-message): Fix to work as documented.
17629 (rmail-mode): Change documentation.
17630
17631 * progmodes/compile.el (compilation-start): Add the line
17632 "Compilation started" with compilation start time.
17633 (compilation-mode-font-lock-keywords): Add `started' to keywords.
17634
17635 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
17636
17637 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
17638 of menu items.
17639
17640 2005-08-11 Richard M. Stallman <rms@gnu.org>
17641
17642 * simple.el (pop-global-mark): Reverse test of widen-automatically.
17643
17644 * battery.el (battery-status-function): Don't use ignore-errors.
17645
17646 2005-08-11 Lute Kamstra <lute@gnu.org>
17647
17648 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
17649 define-obsolete-variable-alias.
17650
17651 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
17652
17653 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
17654 (ange-ftp-send-cmd): Revert last change, and expand
17655 the comment explaining the problem.
17656
17657 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
17658
17659 * ldefs-boot.el: Update.
17660
17661 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
17662 item to "Time, Load and Mail". Change help echo text.
17663
17664 * time.el (display-time-use-mail-icon, display-time-format)
17665 (display-time-string-forms): Shorten first line of docstrings.
17666
17667 2005-08-10 Lars Hansen <larsh@soem.dk>
17668
17669 * desktop.el (desktop-buffer-mode-handlers):
17670 Make non-customizable. Add autoload cookie. Change initial value to
17671 nil; add elements in respective modules instead. Fix doc string.
17672 (desktop-load-file): New function.
17673 (desktop-minor-mode-handlers): New autoloaded variable.
17674 (desktop-create-buffer): Call minor mode handlers.
17675 Use desktop-load-file to load major and minor mode modules prior to
17676 checking for a handler.
17677 (desktop-save): Don't add nil to desktop-minor-modes for minor
17678 modes with nil function in desktop-minor-mode-table. Don't delete
17679 desktop file before rewriting it.
17680 (desktop-locals-to-save): Add autoload cookie. Don't make
17681 automatically buffer-local. Add variables column-number-mode,
17682 size-indication-mode, indent-tabs-mode,
17683 indicate-buffer-boundaries, indicate-empty-lines and
17684 show-trailing-whitespace.
17685 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
17686 regexps. Don't use desktop-clear-preserve-buffers-regexp.
17687 (desktop-clear-preserve-buffers-regexp): Delete.
17688 (desktop-clear-preserve-buffers): Update initial value and docstring.
17689 (desktop-save-buffer): Fix doc string.
17690
17691 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
17692 (hilit-chg-desktop-restore): New function.
17693 (highlight-changes-mode): Add highlight-changes-mode to
17694 desktop-locals-to-save.
17695
17696 * dired.el: Add handler to desktop-buffer-mode-handlers.
17697 (dired-restore-desktop-buffer): Remove autoload cookie.
17698 (dired-mode): Add autoload cookie.
17699
17700 * info.el: Add handler to desktop-buffer-mode-handlers.
17701 (Info-restore-desktop-buffer): Remove autoload cookie.
17702 (Info-mode): Add autoload cookie.
17703
17704 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
17705 (mh-restore-desktop-buffer): Remove autoload cookie.
17706 (mh-folder-mode): Add autoload cookie.
17707
17708 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
17709 (rmail-restore-desktop-buffer): Remove autoload cookie.
17710
17711 2005-08-11 Masatake YAMATO <jet@gyve.org>
17712
17713 * hexl.el (hexl-address-region):
17714 (hexl-ascii-region, hexl-font-lock-keywords):
17715 (hexl-highlight-line-range): Use the term "region"
17716 instead of "area" for consistency with the other symbols
17717 defined in hexl.el.
17718
17719 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
17720
17721 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
17722 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
17723 out by Juri Linkov). Add `display-battery-mode'.
17724
17725 2005-08-09 Juri Linkov <juri@jurta.org>
17726
17727 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17728 Remove `-text' from face variable names.
17729 (compilation-error-file-name, compilation-warning-file-name)
17730 (compilation-info-file-name): Delete faces.
17731 (compilation-line-number, compilation-column-number):
17732 Remove face underlining.
17733 (compilation-message-face): Set to `underline' value by default.
17734 (compilation-error-face, compilation-warning-face)
17735 (compilation-info-face): Remove `-file-name' from face names.
17736 (compilation-error-text-face, compilation-warning-text-face)
17737 (compilation-info-text-face): Delete face variables.
17738 (compilation-text-face): Delete function.
17739
17740 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
17741 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
17742 (grep-error-face): Set to `compilation-error' instead of
17743 `compilation-error-face' (which is redefined to `grep-hit-face' in
17744 grep buffers).
17745 (grep-mode-font-lock-keywords): Remove `-text' from face variable
17746 names. Use `grep-error-face' instead of `compilation-error-text-face'.
17747
17748 * dired-aux.el (dired-do-query-replace-regexp):
17749 Use `query-replace-read-args'.
17750
17751 * replace.el (query-replace-read-from, query-replace-read-to)
17752 (query-replace-read-args): Rename arg `string' to `prompt'.
17753
17754 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
17755
17756 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
17757
17758 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
17759 uploading files.
17760 (ange-ftp-canonize-filename): Handle file names beginning with ~
17761 correctly.
17762
17763 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
17764
17765 * textmodes/fill.el (canonically-space-region)
17766 (fill-context-prefix, fill-french-nobreak-p)
17767 (fill-delete-newlines, fill-comment-paragraph)
17768 (justify-current-line): "?\ " -> "?\s".
17769
17770 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
17771
17772 * textmodes/fill.el (fill-nonuniform-paragraphs):
17773 Improve argument/docstring consistency.
17774
17775 2005-08-09 Richard M. Stallman <rms@gnu.org>
17776
17777 * textmodes/ispell.el (ispell-word): More fboundp checks.
17778
17779 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
17780 (find-file-noselect-1): Call it here, only if RAWFILE.
17781 (normal-mode): Always set some major mode.
17782 (save-some-buffers-action-alist): Change some explanation strings.
17783 (file-name-non-special): In the `quote' method, use unwind-protect.
17784
17785 2005-08-09 Magnus Henoch <mange@freemail.hu>
17786
17787 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
17788 (ispell-have-aspell-dictionaries): New variable.
17789 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
17790 (ispell-get-aspell-config-value): New function.
17791 (ispell-aspell-find-dictionary): New function.
17792 (ispell-aspell-add-aliases): New function.
17793 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
17794 appropriate. Don't look for ispell dictionaries if we use aspell.
17795 (ispell-menu-map): Don't build a submenu of dictionaries.
17796
17797 2005-08-09 Richard M. Stallman <rms@gnu.org>
17798
17799 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
17800 (sql-read-passwd): Use read-passwd.
17801
17802 * progmodes/idlw-toolbar.el (idlwave-toolbar)
17803 (idlwave-toolbar-is-possible): Add defvars.
17804
17805 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
17806 Avoid warnings.
17807
17808 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
17809 (idlwave-system-class-info, idlwave-executive-commands-alist):
17810 Use defvar.
17811
17812 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
17813
17814 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
17815 Avoid warnings.
17816
17817 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
17818 and content-type: headers.
17819
17820 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
17821
17822 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
17823 and rename some of them to be more self-explanatory.
17824
17825 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
17826
17827 * startup.el (command-line-1): Implement -scriptload.
17828
17829 * replace.el (occur-engine): Initial *Occur* output not undoable.
17830
17831 * menu-bar.el (menu-bar-file-menu): Rename some menu items
17832 and improve help strings.
17833
17834 * isearch.el (isearch-repeat): When changing direction,
17835 mark search successful.
17836
17837 * ediff-init.el: Use (featurep 'xemacs).
17838
17839 * comint.el (send-invisible): Identify buffer, if not selected.
17840
17841 * align.el: Delete autoload for c-guess-basic-syntax.
17842
17843 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
17844
17845 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
17846 Improve argument/docstring consistency. Doc fixes.
17847 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
17848 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
17849 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
17850 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
17851 (r2bv-organization, r2bv-pages, r2bv-primary-author)
17852 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
17853 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
17854 Defvar at compile time.
17855
17856 2005-08-09 Juri Linkov <juri@jurta.org>
17857
17858 * info.el: Replace `info' with upper-case `Info' where appropriate.
17859 (info-title-1, info-title-2, info-title-3, info-title-4)
17860 (info-menu-header): Move up face definitions.
17861 (info-menu-star): Rename from `info-menu-5'.
17862 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
17863 (Info-fontify-visited-nodes): Fix docstring.
17864 (Info-hide-note-references): Fix docstring.
17865 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
17866 menu items in the same way as on cross-references.
17867 (info-apropos): Fix sorting order and formatting to be like in the
17868 stand-alone Info browser. Display error messages for 1 sec.
17869 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
17870 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
17871 from the menu bar.
17872 (Info-insert-dir): Restore point after calling
17873 `insert-buffer-substring'.
17874
17875 2005-08-08 Richard M. Stallman <rms@gnu.org>
17876
17877 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
17878 (recompute-lucid-menubar): Add defvars.
17879
17880 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
17881
17882 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
17883
17884 * net/net-utils.el (run-dig): Rename from `dig'.
17885
17886 * play/gametree.el (gametree-mode): Use make-local-variable,
17887 not make-variable-buffer-local.
17888
17889 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
17890
17891 * ansi-color.el (ansi-color-make-extent)
17892 (ansi-color-set-extent-face): Use fboundp, not functionp.
17893
17894 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
17895 not make-variable-buffer-local.
17896
17897 * bookmark.el (Info-current-file): Add defvar.
17898 (bookmark-jump-noselect): Use with-no-warnings.
17899
17900 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
17901
17902 * ebuff-menu.el (Helper-return-blurb): Add defvar.
17903
17904 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
17905
17906 * find-file.el (ada-procedure-start-regexp)
17907 (ada-package-start-regexp): Add defvars.
17908
17909 * info.el (Info-insert-dir): Use insert-buffer-substring.
17910
17911 * xml.el (xml-att-def-re): Add defvar.
17912
17913 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
17914 calling convention.
17915
17916 * subr.el (while-no-input): Return t if there is input.
17917
17918 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
17919
17920 * cus-start.el (all): Add `overflow-newline-into-fringe'.
17921
17922 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
17923
17924 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
17925 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
17926
17927 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
17928
17929 * cmuscheme.el (scheme-start-file): Replace reference to
17930 `user-emacs-directory' by "~/.emacs.d/".
17931
17932 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
17933
17934 * info.el (Info-dir-remove-duplicates): Avoid case folding
17935 in loop; instead, keep downcased strings for comparison.
17936 Suggested by Helmut Eller.
17937
17938 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
17939
17940 Sync with Tramp 2.0.50.
17941
17942 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
17943 XEmacs case; not necessary anymore.
17944 (tramp-user-regexp): Allow "@" as part of user name.
17945 (tramp-handle-set-visited-file-modtime)
17946 (tramp-handle-insert-file-contents)
17947 (tramp-handle-write-region): No special handling for
17948 `last-coding-system-used, because this is done in
17949 `tramp-accept-process-output' now.
17950 (tramp-accept-process-output): New defun.
17951 (tramp-process-one-action, tramp-process-one-multi-action)
17952 (tramp-wait-for-regexp, tramp-wait-for-output)
17953 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
17954 Howells <dhowells@redhat.com>.
17955 (clear-visited-file-modtime): Defadvice removed. The check for
17956 unset buffer's modtime does not need to be based on
17957 `tramp-buffer-file-attributes'. Suggested by RMS.
17958 (tramp-message): Insert "\n" if not being at beginning of line.
17959 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
17960 sequence with same logic.
17961 (tramp-completion-handle-expand-file-name): Discard call of
17962 `tramp-drop-volume-letter'. It is not necessary, and there have
17963 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
17964 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
17965 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
17966 should always be visible.
17967 (tramp-handle-insert-directory, tramp-setup-complete)
17968 (tramp-set-process-query-on-exit-flag)
17969 (tramp-append-tramp-buffers): Pacify byte-compiler.
17970 (tramp-bug): Delete non-existing variables from list.
17971 Apply `tramp-load-report-modules' as pre-hook.
17972 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
17973 `shell-prompt-pattern' because of non-7bit characters.
17974 Reported by Sebastian Luque <sluque@mun.ca>.
17975 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
17976 (tramp-match-string-list): Remove function.
17977 (tramp-wait-for-regexp): Remove call of that function.
17978 Suggested by Kim F. Storm <storm@cua.dk>.
17979 (tramp-set-auto-save-file-modes): Use octal integer code #o600
17980 instead of octal character code ?\600. The latter resulted in a
17981 syntax error with XEmacs.
17982
17983 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
17984 XEmacs case; not necessary anymore.
17985 (tramp-smb-handle-write-region): No special handling for
17986 `last-coding-system-used, because this is done in
17987 `tramp-accept-process-output' now.
17988 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
17989
17990 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
17991
17992 * wid-edit.el (widget-choice-value-create):
17993 Unconditionally respect user choice. Set :explicit-choice back to nil
17994 when no longer needed.
17995 (widget-choice-action): Unconditionally respect user choice.
17996 Eliminate :explicit-choice-value.
17997
17998 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
17999
18000 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
18001 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
18002 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
18003 running new function `toggle-indicate-empty-lines'.
18004 Rename "Customize" item to "Customize fringe".
18005 Rename "Indicators" item to "Buffer boundaries" and change help echo.
18006 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
18007 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
18008 Delete "Empty lines only" item.
18009 (menu-bar-showhide-fringe-ind-customize): New function.
18010 (menu-bar-showhide-fringe-ind-mixed)
18011 (menu-bar-showhide-fringe-ind-box)
18012 (menu-bar-showhide-fringe-ind-right)
18013 (menu-bar-showhide-fringe-ind-left)
18014 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
18015 instead of `fringe-indicators'.
18016
18017 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
18018
18019 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
18020 Change the date of last update.
18021
18022 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
18023
18024 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
18025 (viper-exec-yank, viper-put-back): Don't display modification msg
18026 if in the minibuffer.
18027
18028 * viper-init.el (viper-replace-overlay-cursor-color)
18029 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
18030 Make variables frame local.
18031
18032 * viper-util.el (viper-append-filter-alist): Use append instead of
18033 nconc.
18034
18035 * viper.el (viper-vi-state-mode-list)
18036 (viper-emacs-state-mode-list): Move help-mode and
18037 completion-list-mode from the first list to the second.
18038 (viper-mode): Docstring.
18039 (viper-go-away, viper-non-hook-settings): Don't localize
18040 minor-mode-alist in newer Emacsen. Add advice to
18041 set-cursor-color. Don't bind "\C-c\\".
18042
18043 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
18044
18045 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
18046 (scheme-macro-expand-command): New user options.
18047 (scheme-trace-procedure, scheme-expand-current-form): New commands.
18048 (scheme-form-at-point, scheme-start-file)
18049 (scheme-interactively-start-process): New functions.
18050 (scheme-get-process): New function, extracted from `scheme-proc'.
18051 (run-scheme): Call `scheme-start-file' to get start file, and pass
18052 it to `make-comint'.
18053 (switch-to-scheme, scheme-proc):
18054 Call `scheme-interactively-start-process' if no Scheme buffer/process
18055 is available.
18056
18057 2005-08-06 Juri Linkov <juri@jurta.org>
18058
18059 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18060 Use `compilation-text-face', `compilation-info-text-face' and
18061 `compilation-error-text-face' instead of `font-lock-keyword-face'.
18062 (compilation-error): New face.
18063 (compilation-error-file-name): Inherit from
18064 `compilation-error' instead of `font-lock-warning-face'.
18065 (compilation-warning-file-name): Inherit from
18066 `compilation-warning' instead of `font-lock-warning-face'.
18067 (compilation-info, compilation-error-file-name)
18068 (compilation-warning-file-name, compilation-info-file-name)
18069 (compilation-line-number, compilation-column-number): Doc fix.
18070 (compilation-error-text-face, compilation-warning-text-face)
18071 (compilation-info-text-face): New face variables.
18072 (compilation-line-face, compilation-column-face)
18073 (compilation-enter-directory-face)
18074 (compilation-leave-directory-face): Doc fix.
18075 (compilation-text-face): New function.
18076
18077 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
18078 instead of 1 to display binary file names as info file links.
18079 (grep-error-face): Use `compilation-error-face' instead of
18080 `font-lock-keyword-face'.
18081 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
18082 and `compilation-warning-text-face' instead of
18083 `font-lock-keyword-face'. Use `compilation-error-text-face'
18084 instead of `grep-error-face'.
18085
18086 2005-08-05 Kenichi Handa <handa@m17n.org>
18087
18088 * international/code-pages.el: Add autoload cookies for all coding
18089 systems.
18090
18091 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
18092
18093 * cus-start.el (all): Put undo.c where it alphabetically belongs.
18094
18095 2005-08-04 Juri Linkov <juri@jurta.org>
18096
18097 * progmodes/compile.el (compilation-mode-map):
18098 * progmodes/grep.el (grep-mode-map):
18099 Bind TAB to `compilation-next-error' and [backtab] to
18100 `compilation-previous-error'.
18101
18102 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
18103 matching line numbers, column numbers and their ranges with regexp
18104 matching only line numbers.
18105 (grep-context-face): New face variable.
18106 (grep-mode-font-lock-keywords): Use it.
18107
18108 * faces.el (read-face-name): Delete duplicate faces.
18109
18110 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
18111
18112 * thumbs.el (thumbs-find-image): Don't make variables
18113 automatically buffer local.
18114 (thumbs-current-tmp-filename, thumbs-current-image-filename)
18115 (thumbs-image-num): Make automatically buffer local.
18116 (thumbs-show-thumbs-list): Use `make-local-variable', not
18117 `make-variable-buffer-local'.
18118 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
18119
18120 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
18121 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
18122 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
18123 (bother, bye, canyou, chatlst, continue, deathlst, describe)
18124 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
18125 (feelings-about, foullst, found, hello, history, howareyoulst)
18126 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
18127 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
18128 (neglst, obj, object, owner, please, problems, qlist)
18129 (random-adjective, relation, remlst, repetitive-shortness)
18130 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
18131 (shortlst, something, sportslst, stallmanlst, states, subj)
18132 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
18133 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
18134 Defvar at compile time.
18135
18136 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
18137 not `make-variable-buffer-local'.
18138
18139 2005-08-02 Kim F. Storm <storm@cua.dk>
18140
18141 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
18142 rectangle overlay in selected window.
18143
18144 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
18145
18146 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
18147 instead of display group. Make `indicate-buffer-boundaries'
18148 customizable through Custom.
18149
18150 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
18151
18152 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
18153 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
18154 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
18155 (gdb-put-string): Fix typos in docstrings.
18156
18157 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
18158
18159 Update copyright notices of files in progmodes directory for
18160 release of Emacs 22.1.
18161
18162 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
18163
18164 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
18165 Don't barf if the GUD buffer has been killed.
18166
18167 2005-08-01 Kim F. Storm <storm@cua.dk>
18168
18169 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
18170
18171 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
18172
18173 * simple.el (next-error-follow-minor-mode):
18174 make-variable-buffer-local -> make-local-variable.
18175
18176 * emacs-lisp/cl-extra.el: Require CL also when compiling.
18177
18178 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
18179 (byte-compile-form-make-variable-buffer-local): New functions to warn
18180 about misuses of make-variable-buffer-local where make-local-variable
18181 was meant.
18182
18183 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
18184
18185 * bs.el (bs-attributes-list): Doc fix.
18186 (bs): Update url-link.
18187
18188 * desktop.el (desktop-save-buffer): Fix typos in docstring.
18189 (desktop-load-default): Simplify.
18190
18191 * ibuffer.el (ibuffer-columnize-and-insert-list)
18192 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
18193 (ibuffer-unmark-all, ibuffer-toggle-marks)
18194 (ibuffer-unmark-forward, ibuffer-unmark-backward)
18195 (ibuffer-compile-make-format-form, ibuffer-format-column)
18196 (ibuffer-current-buffers-with-marks)
18197 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
18198 (ibuffer): Doc fix.
18199 (ibuffer-mode): Fix typo in docstring.
18200 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
18201 with `define-obsolete-variable-alias'.
18202 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
18203
18204 2005-07-29 Kenichi Handa <handa@m17n.org>
18205
18206 * international/mule-cmds.el (select-message-coding-system):
18207 Be sure to use LF for end-of-line. If no coding system is decided,
18208 return iso-8859-1-unix.
18209
18210 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
18211
18212 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
18213 (ange-ftp-pending-error-line): New vars.
18214 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
18215 to handle the non-fatal no-route-to-host messages.
18216 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
18217
18218 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
18219
18220 * isearch.el (isearch-mode-map, isearch-other-meta-char)
18221 (isearch-quote-char, isearch-printing-char)
18222 (isearch-text-char-description): "?\ " -> "?\s".
18223 (isearch-lazy-highlight-cleanup)
18224 (isearch-lazy-highlight-initial-delay)
18225 (isearch-lazy-highlight-interval)
18226 (isearch-lazy-highlight-max-at-a-time)
18227 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
18228 Declare with define-obsolete-*-alias macros.
18229 (isearch-forward): Fix typo in docstring.
18230 (search-invisible, search-ring-yank-pointer)
18231 (regexp-search-ring-yank-pointer): Doc fixes.
18232
18233 * recentf.el (recentf-menu-append-commands-p): Declare with
18234 `define-obsolete-variable-alias'.
18235 (recentf-max-saved-items, recentf-menu-filter)
18236 (recentf-arrange-by-rule-subfilter): Doc fixes.
18237 (recentf-menu-append-commands-flag)
18238 (recentf-initialize-file-name-history, recentf-expand-file-name)
18239 (recentf-clear-data): Fix typos in docstrings.
18240
18241 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
18242
18243 * progmodes/gdb-ui.el: Smarten comments.
18244 (gdb-info-breakpoints-custom): Use nowarn when finding file.
18245
18246 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
18247
18248 * term/apollo.el (terminal-init-apollo): New function containing
18249 all former top level forms in the file.
18250 * term/bobcat.el (terminal-init-bobcat):
18251 * term/cygwin.el (terminal-init-cygwin):
18252 * term/iris-ansi.el (terminal-init-iris-ansi):
18253 * term/linux.el (terminal-init-linux):
18254 * term/news.el (terminal-init-news):
18255 * term/rxvt.el (terminal-init-rxvt):
18256 * term/sun.el (terminal-init-sun):
18257 * term/tvi970.el (terminal-init-tvi970):
18258 * term/vt100.el (terminal-init-vt100):
18259 * term/vt102.el (terminal-init-vt102):
18260 * term/vt125.el (terminal-init-vt125):
18261 * term/vt200.el (terminal-init-vt200):
18262 * term/vt201.el (terminal-init-vt201):
18263 * term/vt220.el (terminal-init-vt220):
18264 * term/vt240.el (terminal-init-vt240):
18265 * term/vt300.el (terminal-init-vt300):
18266 * term/vt320.el (terminal-init-vt320):
18267 * term/vt400.el (terminal-init-vt400):
18268 * term/vt420.el (terminal-init-vt420):
18269 * term/wyse50.el (terminal-init-wyse50):
18270 * term/xterm.el (terminal-init-xterm): Likewise.
18271
18272 * term/README: Describe the terminal-init-* functionality.
18273
18274 * startup.el (command-line): After loading the terminal initialization
18275 file call the corresponding terminal initialization function.
18276
18277 2005-07-27 Kenichi Handa <handa@m17n.org>
18278
18279 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
18280 negative.
18281
18282 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
18283 (ps-mule-composition-prologue): Fix for the case that
18284 RelativeCompose is false.
18285
18286 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
18287
18288 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
18289
18290 * descr-text.el (describe-char): Handle the case where the list of
18291 chars is displayed in a separate frame.
18292 Be a bit more discriminating when looking for the char.
18293
18294 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
18295
18296 * bookmark.el (bookmark-automatically-show-annotations)
18297 (bookmark-read-annotation-text-func): Doc fixes.
18298 (bookmark-save): Improve argument/docstring consistency.
18299 (bookmark-get-bookmark, bookmark-get-bookmark-record)
18300 (bookmark-alist-from-buffer)
18301 (bookmark-upgrade-file-format-from-0)
18302 (bookmark-grok-file-format-version)
18303 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
18304 (bookmark-read-annotation-mode)
18305 (bookmark-insert-current-bookmark, bookmark-jump)
18306 (bookmark-exit-hook): Fix typos in docstrings.
18307 (bookmark-exit-hooks): Define as obsolete alias.
18308 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
18309 not `bookmark-exit-hooks'. Fix docstring.
18310 (bookmark-bmenu-select): "?\ " -> "?\s".
18311
18312 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
18313
18314 * startup.el (command-line): Fix typo.
18315
18316 2005-07-24 Richard M. Stallman <rms@gnu.org>
18317
18318 * tooltip.el (tooltip-mode): Test emacs-basic-display,
18319 not emacs-quick-startup.
18320
18321 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
18322
18323 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
18324 (reb-next-match, reb-show-subexp): Use `with-selected-window'
18325 instead of `reb-with-current-window'.
18326 (reb-prev-match): Likewise. Also, don't move left if the search
18327 was unsuccessful.
18328 (reb-initialize-buffer): New function.
18329 (re-builder, reb-change-syntax): Use it.
18330
18331 * man.el (Man-goto-page): Make second argument NOERROR optional.
18332
18333 2005-07-23 Richard M. Stallman <rms@gnu.org>
18334
18335 * man.el (Man-bgproc-sentinel): Check here for failure to find
18336 any man page in the output, and report the error here.
18337 (Man-arguments): Make it permanent local.
18338 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
18339 (Man-mode): Pass t for NOERROR.
18340
18341 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
18342 (grep-mode-font-lock-keywords):
18343 Don't use compilation-...-face for messages that are not file names.
18344
18345 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18346 Don't use compilation-...-face for messages that are not file names.
18347
18348 2005-07-22 Juri Linkov <juri@jurta.org>
18349
18350 * startup.el (normal-splash-screen): Update menu name.
18351
18352 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
18353
18354 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18355
18356 * term/xterm.el: Load term/rxvt if the terminal is actually an
18357 rxvt terminal.
18358 (xterm-rxvt-set-background-mode): Remove, not used anymore.
18359
18360 * term/rxvt.el (function-key-map): Use substitute-key-definition
18361 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
18362
18363 * term/cygwin.el: New file.
18364
18365 2005-07-22 Kim F. Storm <storm@cua.dk>
18366
18367 * image-file.el (insert-image-file, image-file-yank-handler):
18368 Fix last change to maintain a (unique) yank-handler on yanked images.
18369
18370 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
18371
18372 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
18373 of the file size (as in "177B" for 177 bytes). This happens with
18374 "ls -lh" on FreeBSD.
18375
18376 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
18377
18378 * hilit-chg.el (highlight-changes-global-initial-state)
18379 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
18380 (hilit-chg-fixup, highlight-changes-mode):
18381 Fix typos in docstrings.
18382 (highlight-changes-global-modes, highlight-changes-rotate-faces):
18383 Doc fixes.
18384
18385 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
18386
18387 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
18388 mode function using `eval-after-load'.
18389
18390 2005-07-21 Kim F. Storm <storm@cua.dk>
18391
18392 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
18393 included when reporting an emacs crash, and tell about the DEBUG file.
18394
18395 * image-file.el (insert-image-file): Add yank-handler.
18396 (image-file-yank-handler): Yank handler to make unique copies of
18397 images when they are yanked into a buffer next to each other.
18398
18399 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
18400
18401 * comint.el (comint-use-prompt-regexp, comint-send-input)
18402 (comint-source-default, comint-extract-string)
18403 (comint-get-source, comint-word, comint-completion)
18404 (comint-source, comint-prompt-read-only, comint-update-fence):
18405 Fix typos in docstrings.
18406 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
18407 Declare with define-obsolete-*-alias macros.
18408 (comint-previous-matching-input-from-input)
18409 (comint-next-matching-input-from-input)
18410 (comint-previous-matching-input, comint-next-matching-input)
18411 (comint-forward-matching-input):
18412 Improve argument/docstring consistency.
18413
18414 * desktop.el (desktop-clear-preserve-buffers-regexp):
18415 Also preserve the *server* buffer.
18416
18417 * simple.el (clone-indirect-buffer): Doc fix.
18418 (fixup-whitespace, just-one-space)
18419 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
18420 (next-error, next-error-highlight)
18421 (next-error-highlight-no-select, next-error-last-buffer)
18422 (next-error-buffer-p, next-error-find-buffer, next-error)
18423 (previous-error, next-error-no-select, previous-error-no-select)
18424 (open-line, split-line, minibuffer-prompt-width, kill-new)
18425 (binary-overwrite-mode): Fix typos in docstrings.
18426 (set-fill-column): Fix typo in message.
18427
18428 * skeleton.el (skeleton-proxy-new): Doc fix.
18429
18430 * strokes.el (strokes-load-hook): Doc fix.
18431 (strokes-grid-resolution, strokes-get-grid-position)
18432 (strokes-renormalize-to-grid, strokes-read-stroke)
18433 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
18434 (strokes-global-map): Fix typos in docstrings.
18435 (strokes-help): Doc fix. Fix help message and pass it through
18436 `substitute-command-keys'.
18437
18438 * tempo.el (tempo-insert-prompt, tempo-interactive)
18439 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
18440 (tempo-insert-string-functions, tempo-local-tags)
18441 (tempo-define-template, tempo-insert-template)
18442 (tempo-insert-prompt-compat, tempo-is-user-element)
18443 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
18444 Fix typos in docstrings.
18445
18446 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
18447 (vcursor-key-bindings, vcursor-use-vcursor-map)
18448 (vcursor-find-window, vcursor-scroll-down)
18449 (vcursor-disable, vcursor-beginning-of-buffer)
18450 (vcursor-end-of-buffer): Fix typos in docstrings.
18451 (vcursor-relative-move, vcursor-get-char-count):
18452 Improve argument/docstring consistency.
18453
18454 * version.el: "?\ " -> "?\s".
18455
18456 * wid-edit.el (widget-default-create, widget-after-change)
18457 (widget-default-format-handler, widget-checklist-add-item)
18458 (widget-radio-add-item, widget-choose, widget-specify-secret)
18459 (widget-field-value-create, widget-field-value-get)
18460 (widget-editable-list-format-handler)
18461 (widget-editable-list-entry-create, widget-group-value-create)
18462 (widget-documentation-link-add)
18463 (widget-documentation-string-value-create): "?\ " -> "?\s".
18464 (widget-convert-text): Doc fix.
18465 (widget-narrow-to-field, widget-field-find)
18466 (widget-url-link-action, widget-emacs-library-link-action)
18467 (widget-color-notify): Fix typos in docstrings.
18468
18469 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
18470 (x-select-text, set-w32-system-coding-system)
18471 (w32-add-charset-info): Fix typos in docstrings.
18472
18473 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
18474 (cua-enable-cua-keys, cua-use-hyper-key)
18475 (cua-virtual-rectangle-edges): Fix typos in docstrings.
18476 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
18477
18478 * net/tramp.el (tramp-handle-load): Fix typo in error message.
18479
18480 * emacs-lisp/re-builder.el (regexp-builder): Declare with
18481 `defalias' instead of faking it.
18482
18483 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
18484 (eshell-ls-missing, eshell-ls-dired-initial-args)
18485 (eshell-ls-use-in-dired): Fix typos in docstrings.
18486
18487 2005-07-20 Kim F. Storm <storm@cua.dk>
18488
18489 * emulation/cua-base.el (cua-mode): Improve doc string.
18490
18491 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
18492
18493 * abbrev.el (expand-region-abbrevs): Doc fix.
18494 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
18495 Improve argument/docstring consistency.
18496
18497 * arc-mode.el (archive-get-descr, archive-alternate-display):
18498 Doc fixes.
18499 (archive-l-e): Improve argument/docstring consistency.
18500 (archive-tmpdir, archive-unixdate, archive-unixtime)
18501 (archive-chmod-entry): Fix typos in docstrings.
18502 (archive-unflag, archive-unflag-backwards)
18503 (archive-unmark-all-files): "?\ " -> "?\s".
18504
18505 * buff-menu.el (Buffer-menu-unmark): Doc fix.
18506 (Buffer-menu-not-modified, Buffer-menu-execute)
18507 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
18508 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
18509
18510 * composite.el (compose-string, encode-composition-rule)
18511 (compose-last-chars): Fix typos in docstrings.
18512
18513 * desktop.el (desktop-enable, desktop-basefilename):
18514 Declare with `define-obsolete-variable-alias'.
18515 (desktop-internal-v2s): Don't quote keywords.
18516 (desktop-clear): "?\ " -> "?\s".
18517
18518 * dired.el (dired-align-file, dired-flag-backup-files)
18519 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
18520 (dired-listing-switches, dired-ls-F-marks-symlinks)
18521 (dired-dwim-target, dired-load-hook, dired-mode-hook)
18522 (dired-directory, dired-faces, dired, dired-revert)
18523 (dired-mode, dired-summary, dired-view-file)
18524 (dired-copy-filename-as-kill, dired-delete-file)
18525 (dired-no-confirm, dired-unmark-all-marks)
18526 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
18527 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
18528 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
18529 Fix typos in message strings.
18530
18531 * dired-x.el (virtual-dired): Declare with `defalias'.
18532 (dired-mark-unmarked-files, dired-local-variables-file)
18533 (dired-omit-here-always): Doc fix.
18534 (dired-omit-mode, dired-find-subdir)
18535 (dired-enable-local-variables, dired-clean-up-buffers-too)
18536 (dired-extra-startup, dired-mark-extension, dired-jump)
18537 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
18538 (dired-smart-shell-command, dired-guess-shell-alist-user)
18539 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
18540 (dired-x-bind-find-file, dired-x-submit-report):
18541 Fix typos in docstrings.
18542 (dired-mark-unmarked-files): "?\ " -> "?\s".
18543
18544 * dirtrack.el (dirtrack-list): Fix typos in docstring.
18545
18546 * faces.el (describe-face): "?\ " -> "?\s".
18547 (read-all-face-attributes, read-face-font, modify-face)
18548 (face-attr-construct, italic): Fix typos in docstrings.
18549 (frame-update-face-colors): Declare with
18550 `define-obsolete-function-alias'.
18551
18552 * files.el (find-file-noselect, recode-file-name): Doc fixes.
18553 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
18554 (magic-mode-alist, buffer-file-numbers-unique)
18555 (write-file-functions, get-free-disk-space):
18556 Fix typos in docstrings.
18557 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
18558 (write-contents-hooks, write-file-hooks):
18559 Declare with `define-obsolete-variable-alias'.
18560
18561 * forms-d2.el (arch-rj): Fix typo in docstrings.
18562 (arch-tocol): Likewise. "?\ " -> "?\s".
18563
18564 * frame.el (set-frame-font, cursor-in-non-selected-windows):
18565 Fix typo in docstring.
18566 (set-screen-width, set-screen-height): Delete redundant info in
18567 doctrings.
18568 (new-frame, screen-height, screen-width): Declare with
18569 `define-obsolete-function-alias'.
18570 (delete-frame-hook, blink-cursor): Declare with
18571 `define-obsolete-variable-alias'.
18572
18573 * paths.el (prune-directory-list): Fix typos in docstring.
18574
18575 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
18576 (cvs-prefix-get): Fix typos in docstrings.
18577
18578 * ps-print.el (ps-extend-face-list, ps-extend-face)
18579 (ps-print-background-image): Fix typos in docstrings.
18580 (ps-default-fg, ps-default-bg): Doc fixes.
18581
18582 * s-region.el (s-region-bind): Doc fix.
18583 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
18584
18585 * textmodes/org.el (org-table-formula-substitute-names)
18586 (org-table-get-vertical-vector): Doc fixes.
18587 (org-table-recalculate): Remove unused argument to `message'.
18588
18589 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
18590
18591 * textmodes/org.el (org-table-column-names)
18592 (org-table-column-name-regexp)
18593 (org-table-named-field-locations): New variables.
18594 (org-archive-subtree): Protect `this-command' when calling
18595 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
18596 the kill buffer.
18597 (org-complete): Remove fixed-formula completion.
18598 (org-edit-formulas-map): New variable.
18599 (org-table-edit-formulas): New command.
18600 (org-finish-edit-formulas, org-abort-edit-formulas)
18601 (org-show-variable, org-table-get-vertical-vector): New functions.
18602 (org-table-maybe-eval-formula): Handle `:=' fields.
18603 (org-table-get-stored-formulas, org-table-store-formulas)
18604 (org-table-get-formula, org-table-modify-formulas)
18605 (org-table-replace-in-formulas): Handle named field formulas.
18606 (org-table-get-specials): Store locations of named fields.
18607
18608 2005-07-19 Juri Linkov <juri@jurta.org>
18609
18610 * progmodes/grep.el (grep-regexp-alist)
18611 (grep-mode-font-lock-keywords, grep-process-setup):
18612 Use default GNU grep match color "01;31m" instead of "01;41m".
18613 (grep-regexp-alist, grep-mode-font-lock-keywords):
18614 Use `\\[[0-9]*m' instead of `\\[00m'.
18615 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
18616 sgr_start where its handling is more important. Use the real
18617 length of sgr_start instead of constant 8.
18618 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
18619 specially. Delete all remaining escape sequences.
18620 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
18621 (grep-regexp-alist): Make hyperlink only for binary file name
18622 instead of the whole line.
18623 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
18624 (grep-mode): Add autoload.
18625
18626 * emacs-lisp/find-func.el (find-function-regexp):
18627 Add `define-compilation-mode'.
18628
18629 2005-07-19 Juri Linkov <juri@jurta.org>
18630
18631 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
18632 (compare-windows-sync-string-size, compare-windows-recenter)
18633 (compare-windows-highlight, compare-windows): Add version 22.1.
18634 (compare-windows) <defface>: Inherit from lazy-highlight instead
18635 of duplicating its default value.
18636
18637 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
18638 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
18639
18640 * descr-text.el (describe-char): Create link buttons for `charset'
18641 and `code point'. Add the current input method name with a link
18642 button to `to input' field. Print face names of display table
18643 characters in `The display table entry is displayed by' section
18644 instead of printing face-id in the `display' field.
18645 Guess hardcoded faces and create a link button for them.
18646 Skip empty fields when calculating max-width.
18647 Treat `widget-create' specially while inserting strings from the
18648 collected field list.
18649 (describe-char-after): Made obsolete in version 22.1, not 21.5.
18650
18651 * diff-mode.el (diff-file-header): Change foreground color from
18652 yellow to green on light backgrounds.
18653 (diff-context): Inherit from `shadow' only for color/grayscale
18654 with more than 88 colors.
18655 (diff-indicator-removed, diff-indicator-added)
18656 (diff-indicator-changed): New faces.
18657 (diff-font-lock-keywords): Use new faces. Regroup rules.
18658 Add "^---$" for `normal' diff format. Fontify `#' lines with
18659 font-lock-comment-delimiter-face and font-lock-comment-face.
18660 Add `#' to ^[^...] in the rule for `diff-context-face'.
18661
18662 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
18663 a button-like box. Inherit from `highlight' on low colors.
18664 (shadow): Use shades of gray only for color/grayscale with
18665 more than 88 colors. Use green for light backgrounds with
18666 8 colors, and yellow for dark backgrounds with 8 colors.
18667
18668 * font-lock.el (font-lock-regexp-grouping-backslash):
18669 Don't inherit from escape-glyph (use bold for all cases).
18670
18671 * info.el (info-xref-visited): Use light foreground color `violet'
18672 for dark backgrounds instead of dark color `magenta3'.
18673 (info-title-1): Use `yellow' color for dark backgrounds.
18674
18675 * isearch.el (isearch): Use not-too-dark magenta3 instead of
18676 too-light magenta2.
18677
18678 * replace.el (match): Use slightly more light RoyalBlue3 instead
18679 of dark RoyalBlue4.
18680
18681 * wid-edit.el (widget-inactive): Inherit from `shadow'.
18682
18683 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
18684
18685 * novice.el (disabled-command-hook): Declare it with
18686 `define-obsolete-variable-alias'.
18687
18688 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
18689 (desktop-buffer-misc-functions, desktop-buffer-handlers)
18690 (desktop-load-default): Add release to obsolescence info.
18691 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
18692 (desktop-append-buffer-args, desktop-read):
18693 Fix typos in docstrings.
18694 (desktop-kill): Fix typo in message.
18695 (desktop-save): Doc fix.
18696
18697 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
18698
18699 * viper-cmd.el (viper-escape-to-state): Bug fix.
18700 (viper-envelop-ESC-key): Change the definition of fast
18701 keysequence so it'll work with keyboard macros.
18702
18703 * ediff.el (ediff-patch-buffer): Change the docstring.
18704
18705 2005-07-19 Kenichi Handa <handa@m17n.org>
18706
18707 * international/mule-cmds.el (select-safe-coding-system): Try to
18708 use an auto-coding (if any) before anything else. If the found
18709 auto-coding is invalid, show a warning message.
18710
18711 * international/mule.el (find-auto-coding): New function created
18712 by modifying the body of set-auto-coding.
18713 (set-auto-coding): Use find-auto-coding to find a coding.
18714
18715 2005-07-18 Richard M. Stallman <rms@gnu.org>
18716
18717 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
18718 not isearch-mode-end-hook-error.
18719 (allout-before-change-protect): Fix error message.
18720
18721 2005-07-18 Juri Linkov <juri@jurta.org>
18722
18723 * allout.el (allout-mode):
18724 * calculator.el (calculator-copy):
18725 * custom.el (custom-known-themes):
18726 * dired.el (dired-desktop-buffer-misc-data)
18727 (dired-restore-desktop-buffer):
18728 * dired-x.el (dired-omit-marker-char):
18729 * files.el (basic-save-buffer):
18730 * font-core.el (font-lock-mode):
18731 * calendar/calendar.el (calendar-goto-hebrew-date)
18732 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
18733 (calendar-goto-persian-date):
18734 * language/ethio-util.el (ethio-sera-to-fidel-region):
18735 * textmodes/picture.el (picture-mode):
18736 Delete duplicate duplicate words.
18737
18738 2005-07-18 Juri Linkov <juri@jurta.org>
18739
18740 * isearch.el (isearch-mode-map): Remove key bindings for regexp
18741 chars * ? } |.
18742 (isearch-fallback): Don't call `isearch-process-search-char'.
18743 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
18744 (isearch-process-search-char): Call `isearch-fallback' for regexp
18745 chars * ? } |.
18746 (isearch-return-char): Make obsolete with `make-obsolete' instead
18747 of simply documenting it as obsolete in the docstring.
18748 (isearch-fallback): Refill docstring.
18749
18750 * international/isearch-x.el
18751 (isearch-process-search-multibyte-characters): Remove unneeded
18752 `concat'. Add intermediate values to `junk-hist' instead of
18753 `minibuffer-history'. Test the length of `str'.
18754
18755 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
18756
18757 * allout.el (allout-resolve-xref): Fix typos in error strings.
18758 (allout-before-change-protect): Remove unneeded `concat'.
18759
18760 * array.el (array-mode, array-reconfigure-rows)
18761 (untabify-backward): Fix typos in docstrings.
18762 (array-reconfigure-rows): Use `insert-buffer-substring', not
18763 `insert-buffer'.
18764
18765 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
18766 * progmodes/ada-mode.el (ada-make-body):
18767 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
18768
18769 * dired.el (dired-log):
18770 * tar-mode.el (tar-subfile-save-buffer):
18771 * play/zone.el (zone-pgm-stress-destress):
18772 Use `insert-buffer-substring', not `insert-buffer'.
18773
18774 2005-07-17 Simon Josefsson <jas@extundo.com>
18775
18776 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
18777
18778 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
18779
18780 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
18781 Add plain auth method.
18782 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
18783
18784 2005-07-17 Kim F. Storm <storm@cua.dk>
18785
18786 * ido.el (dired-other-window): Add ido property.
18787
18788 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
18789
18790 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
18791 Fix typo in docstring.
18792 (byte-compile-interactive-only-functions): Add `insert-buffer' and
18793 `insert-file-literally'.
18794
18795 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
18796 info and delete redundant message. Doc fix.
18797 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
18798 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
18799
18800 2005-07-16 Richard M. Stallman <rms@gnu.org>
18801
18802 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
18803 (byte-compile-and): Use byte-compile-and-recursion.
18804 (byte-compile-or-recursion): New function.
18805 (byte-compile-or): Use that.
18806 (byte-compile-if): Guard the else-clause too.
18807 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
18808
18809 * isearch.el (isearch-mode-end-hook-quit): New variable.
18810 (isearch-done): Bind it.
18811 (isearch-mode-end-hook): Doc fix.
18812
18813 * allout.el (allout-isearch-did-quit): Variable deleted.
18814 (allout-real-isearch-abort): Function name no longer used.
18815 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
18816 (allout-isearch-rectification): isearch-mode always exists.
18817 Don't set allout-isearch-did-quit.
18818 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
18819 allout-isearch-did-quit.
18820 (allout-enwrap-isearch): Just add the hook.
18821 (allout-isearch-abort): Function deleted.
18822 (allout-pre-command-business): Avoid warning.
18823
18824 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
18825 Correctly avoid warnings.
18826 (pascal-outline): Likewise.
18827
18828 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
18829
18830 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
18831
18832 * play/tetris.el (tetris-mode): Avoid warning.
18833
18834 * play/snake.el (snake-mode): Avoid warning.
18835
18836 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
18837 (gamegrid-set-display-table): Avoid warning.
18838 (gamegrid-set-timer): Likewise.
18839 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
18840 (gamegrid-add-score-with-update-game-score-1): Take FILE
18841 as argument.
18842 (gamegrid-add-score-with-update-game-score): Pass that argument.
18843 Rename have-shared-game-dir to gamegrid-shared-game-dir.
18844
18845 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
18846
18847 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
18848 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
18849
18850 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
18851 and insert-file.
18852
18853 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
18854 (sc-ask): Avoid warnings.
18855
18856 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
18857 (eshell-hist-initialize): Use that var the natural way.
18858
18859 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
18860
18861 * emacs-lisp/re-builder.el (reb-cook-regexp):
18862 Avoid warning calling lre-compile-string.
18863 (reb-color-display-p): Avoid warning.
18864
18865 * calculator.el (calculator-last-input): Guard uses
18866 of event-key and key-press-event-p.
18867 (event-key, key-press-event-p): Delete definitions.
18868
18869 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
18870 (find-gc-source-directory, find-gc-subrs-callers)
18871 (find-gc-noreturn-list, find-gc-source-files)
18872 (find-gc-subrs-called): Vars renamed and defvar'd.
18873
18874 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
18875 (checkdoc-overlay-put, checkdoc-delete-overlay)
18876 (checkdoc-overlay-start, checkdoc-overlay-end)
18877 (checkdoc-mode-line-update, checkdoc-char=):
18878 Define such that compiler knows they are defined.
18879 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
18880 (checkdoc-read-event): Delete. Use read-event directly.
18881
18882 * whitespace.el (whitespace-make-overlay)
18883 (whitespace-overlay-put, whitespace-delete-overlay)
18884 (whitespace-overlay-start, whitespace-overlay-end):
18885 Define such that compiler knows they are defined.
18886 (whitespace): Move conditional inside.
18887
18888 * tempo.el (tempo-insert-template): Suppress warning.
18889
18890 * ediff-diff.el (longlines-mode): Add defvar.
18891
18892 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
18893
18894 * server.el: Bind "C-x #" in a way that works even if C-x is
18895 redefined to a command key, not a prefix key.
18896
18897 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
18898
18899 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
18900 cl-make-type-test till execution time.
18901
18902 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
18903
18904 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
18905 arg ARG and use it.
18906
18907 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
18908
18909 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
18910
18911 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
18912
18913 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
18914 a defcustom with two :set or :type keywords.
18915
18916 2005-07-15 Richard M. Stallman <rms@gnu.org>
18917
18918 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
18919 Don't give ^M comment-end syntax.
18920
18921 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
18922
18923 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
18924 Don't consider gdbmi (gdb-mi.el has its own update functions).
18925 (gdb-var-delete): Make it work for gdbmi as well.
18926 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
18927
18928 * progmodes/gud.el (etags, sdb): Only require etags when needed.
18929 (gud-speedbar-menu-items): Correct logic for enabling items.
18930
18931 2005-07-15 Kim F. Storm <storm@cua.dk>
18932
18933 * ido.el: Fix commentary.
18934 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
18935 Use with-no-warnings around ffap-guesser.
18936 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
18937 Let bind minibuffer-completing-file-name to t.
18938
18939 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
18940
18941 * startup.el (site-run-file, keyboard-type): Doc fixes.
18942 (command-line): Check for "--basic-display" argument; also for
18943 "--quick", not "--bare-bones" (which was renamed).
18944 (fancy-splash-text): Add missing item "Getting New Versions".
18945 (normal-splash-screen): Fix typos and improve consistency with
18946 `fancy-splash-text'. Update copyright year.
18947
18948 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
18949 valid binding for `help-char'.
18950
18951 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
18952
18953 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
18954
18955 * term.el (term-mode): Disable cua-mode for term buffers.
18956
18957 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
18958
18959 * add-log.el (add-log-mailing-address, change-log-merge):
18960 Doc fixes.
18961 (change-log-get-method-definition): Fix typo in docstring.
18962
18963 2005-07-14 Kim F. Storm <storm@cua.dk>
18964
18965 * emulation/cua-base.el:
18966 (cua--pre-command-handler-1, cua--pre-command-handler)
18967 (cua--post-command-handler-1, cua--post-command-handler):
18968 Split in two. Check (buffer local) value of cua-mode.
18969 (cua-selection-mode): New command.
18970
18971 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
18972
18973 * custom.el (custom-initialize-safe-set)
18974 (custom-initialize-safe-default): Doc fixes.
18975
18976 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
18977 and simplify :init-value again.
18978
18979 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
18980 and simplify :init-value again. Delete autoload.
18981
18982 * startup.el (command-line): Use `custom-reevaluate-setting' again
18983 for tooltip-mode.
18984
18985 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
18986 a defcustom with two :initialize keywords.
18987
18988 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
18989
18990 * allout.el (my-mark-marker, allout-isearch-prior-pos)
18991 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
18992 (allout-post-command-business, allout-flag-region)
18993 (isearch-reenable-font-lock, allout-yank)
18994 (allout-insert-latex-header, allout-insert-latex-trailer)
18995 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
18996 (allout-latex-verb-quote): Fix typos in docstrings.
18997 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
18998 (allout-unprotected, allout-prefix-data):
18999 Improve argument/docstring consistency.
19000 (allout-chart-subtree): Fix argument spec.
19001 (allout-open-topic): Rename `use_sib_bullet' argument to
19002 `use-sib-bullet'. Doc fix.
19003
19004 * whitespace.el (whitespace-check-buffer-leading)
19005 (whitespace-check-buffer-trailing)
19006 (whitespace-check-buffer-indent)
19007 (whitespace-check-buffer-spacetab)
19008 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
19009 (whitespace-check-leading-whitespace)
19010 (whitespace-check-trailing-whitespace)
19011 (whitespace-check-spacetab-whitespace)
19012 (whitespace-check-indent-whitespace)
19013 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
19014 (whitespace-modes): Fix typos in docstrings.
19015 (defgroup, defcustom): Doc fixes.
19016
19017 * winner.el (winner-mode, winner-boring-buffers)
19018 (winner-pending-undo-ring): Doc fixes.
19019 (winner-ring): Remove unneeded `progn'.
19020 (winner-equal): `defsubst' it.
19021 (winner-redo): Fix message.
19022
19023 2005-07-13 Kim F. Storm <storm@cua.dk>
19024
19025 * simple.el (line-move-1): Always use vertical-motion to
19026 do the last (or only) line move to ensure some movement.
19027 Undo 2005-06-23 change--don't check for overlays.
19028
19029 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19030
19031 * term/mac-win.el (ccl-encode-mac-roman-font)
19032 (ccl-encode-mac-centraleurroman-font)
19033 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
19034 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
19035 Change charset-id boundary of dimension to ?\xef.
19036 (mac-char-fontspec-list): New constant.
19037 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
19038 argument. Nil uses itself as family in font-spec. Previous
19039 behavior for nil is now provided by non-nil non-string argument.
19040 All callers changed. Add font-specs for Mac fonts to
19041 "fontset-default" unless iso8859-1 fonts are installed.
19042
19043 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
19044
19045 * progmodes/sh-script.el (sh-get-indent-info): Only indent
19046 a continuation line if the \ is preceded by SPC or TAB.
19047 (sh-get-indent-info): Simplify.
19048 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
19049 Use with-current-buffer.
19050
19051 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
19052 when the matched text is empty.
19053
19054 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
19055
19056 * startup.el (command-line): Revert to previous handling of
19057 tooltip-mode. Explain in comment why the complexity is needed.
19058
19059 * tooltip.el (tooltip-mode): Revert to previous implementation of
19060 its defcustom.
19061
19062 * frame.el (blink-cursor-mode): Revert to previous implementation
19063 of its defcustom. Update comment.
19064
19065 2005-07-12 Lars Hansen <larsh@soem.dk>
19066
19067 * desktop.el: Update e-mail address.
19068
19069 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19070
19071 * term/mac-win.el (mac-services-mail-selection)
19072 (mac-services-mail-to): New functions.
19073 (mac-application-menu-map): Bind them.
19074
19075 2005-07-12 wulei <milton@wulei.net> (tiny change)
19076
19077 * progmodes/gdb-ui.el: Add note about buffering with Windows.
19078
19079 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
19080
19081 * custom.el (custom-reevaluate-setting): Doc fix.
19082
19083 2005-07-11 Jay Belanger <belanger@truman.edu>
19084
19085 * calc/calc.el (calc-embedded-announce-formula-alist)
19086 (calc-embedded-open-close-plain-alist)
19087 (calc-embedded-open-close-mode-alist): Add checks for additional
19088 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
19089
19090 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
19091
19092 * custom.el (custom-enable-theme): Don't add theme to
19093 `custom-enabled-themes' with `push' because there is no
19094 setf-method for `delq'.
19095
19096 2005-07-11 Richard M. Stallman <rms@gnu.org>
19097
19098 * custom.el (custom-declare-variable): Doc fix.
19099
19100 * dired-aux.el (dired-compare-directories): Remove "." and ".."
19101 from the alists.
19102
19103 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
19104 Do nothing if edebug-active.
19105
19106 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
19107 (edebug-display): Do it here instead.
19108
19109 2005-07-10 Richard M. Stallman <rms@gnu.org>
19110
19111 * cus-face.el (custom-theme-set-faces): Make it work.
19112 (custom-reset-faces): Doc fix.
19113 (custom-theme-reset-internal-face, custom-theme-face-value):
19114 Functions deleted.
19115
19116 * custom.el (custom-push-theme): Maintain list of the settings
19117 of a given theme in its theme-settings property.
19118 Maintain position of old settings in the theme-value
19119 or theme-face property.
19120 (custom-enabled-themes): New variable.
19121 (custom-theme-enabled-p): New function.
19122 (provide-theme): Update custom-enabled-themes.
19123 Disable and reenable the `user' theme.
19124 (require-theme): Doc fix.
19125 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
19126 (custom-theme-value, custom-theme-variable-value): Likewise.
19127 (custom-theme-reset-internal): Likewise.
19128 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
19129 (custom-enable-theme, custom-disable-theme): New functions.
19130 (custom-variable-theme-value, custom-face-theme-value): Likewise.
19131 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
19132 (custom-theme-reset-variables): Simplify.
19133 (deftheme, custom-declare-theme, custom-make-theme-feature):
19134 Definitions moved.
19135
19136 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
19137
19138 * longlines.el (longlines-show-region)
19139 (longlines-unshow-hard-newlines): Recognize hard newlines by
19140 non-nil hard property, instead of t.
19141
19142 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
19143
19144 * viper-cmd.el (viper--key-maps): New variable.
19145 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
19146 emulation-mode-map-alists.
19147 (viper-envelop-ESC-key): Use viper-subseq.
19148 (viper-search-forward/backward/next): Disable debug-on-error.
19149
19150 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
19151 (viper-ESC-key): New defcustoms.
19152
19153 * viper-macs.el (ex-map-read-args): Use viper-subseq.
19154
19155 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
19156 (viper-subseq): Copy of subseq from cl.el.
19157
19158 * viper.el (viper-go-away, viper-set-hooks): Use
19159 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
19160
19161 * viper-mous.el (viper-current-frame-saved): Use defvar.
19162
19163 * viper-init.el: Get rid of -face in face names.
19164
19165 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
19166 Make it work with longlines mode
19167
19168 * ediff-mult.el (ediff-meta-mode-hook): New variable.
19169
19170 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
19171
19172 * ediff-init.el: Get rid of -face in face names.
19173
19174 2005-07-10 Richard M. Stallman <rms@gnu.org>
19175
19176 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
19177 and with-timeout-unsuspend.
19178
19179 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
19180 and with-timeout-unsuspend.
19181
19182 * emacs-lisp/timer.el (with-timeout-timers): New variable.
19183 (with-timeout): Bind that variable to record timers.
19184 (with-timeout-suspend, with-timeout-unsuspend): New functions.
19185
19186 * emacs-lisp/debug.el (debug-help-follow): New function.
19187 (debugger-mode-map): Use that instead of help-follow.
19188 (debugger-setup-buffer): Use eval-buffer-list
19189 to handle eval-buffer frames.
19190
19191 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
19192
19193 * timezone.el (timezone-parse-date): Change first regexp
19194 so it will not mistakenly match dates with no time zone.
19195
19196 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
19197
19198 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
19199
19200 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
19201
19202 * custom.el (custom-initialize-safe-set)
19203 (custom-initialize-safe-default): New functions.
19204
19205 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
19206 and simplify :init-value.
19207
19208 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
19209 and simplify :init-value. Delete obsolete comment.
19210
19211 * startup.el (command-line): Use `custom-reevaluate-setting' to
19212 handle `tooltip-mode'. Delete obsolete comment.
19213
19214 * files.el (set-visited-file-name): Avoid calling
19215 `file-name-nondirectory' with a nil argument.
19216
19217 2005-07-09 Richard M. Stallman <rms@gnu.org>
19218
19219 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
19220 was called with nil for the buffer, handle the read position right.
19221 Handle read position for eval-region, too.
19222
19223 2005-07-09 Juri Linkov <juri@jurta.org>
19224
19225 * fringe.el (fringe-mode): Add period in docstring.
19226 (fringe-query-style): Build prompt depending on `all-frames' arg.
19227
19228 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
19229 to not create links to unrelated functions in the Help buffer.
19230
19231 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
19232 Doc fix.
19233
19234 * simple.el (next-error-hook): New variable.
19235 (next-error): Use it. Doc fix.
19236
19237 * textmodes/ispell.el (ispell-command-loop): Add current
19238 dictionary name and program name to mode-line-format.
19239 (ispell-region, ispell-process-line): Add current dictionary name
19240 and program name to messages.
19241
19242 2005-07-08 Jay Belanger <belanger@truman.edu>
19243
19244 * calc/calc.el (calc-embedded-announce-formula-alist)
19245 (calc-embedded-open-close-formula-alist)
19246 (calc-embedded-open-close-word-alist)
19247 (calc-embedded-open-close-plain-alist)
19248 (calc-embedded-open-close-new-formula-alist)
19249 (calc-embedded-open-close-mode-alist)
19250 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
19251 (calc-embedded-mode-hook): New variables.
19252
19253 * calc/calc-embed.el (calc-embedded-firsttime)
19254 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
19255 New variables.
19256 (calc-do-embedded): Use calc-embedded-firsttime,
19257 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
19258 determine whether or not to run hooks.
19259 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
19260 calc-embedded-firsttime-formula appropriately.
19261 Set calc-embedded delimiter variables according to mode.
19262
19263 2005-07-08 Richard M. Stallman <rms@gnu.org>
19264
19265 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
19266 Check for "emacs", etc., as entire symbol, not just as word.
19267 (checkdoc-file-comments-engine): Use regexp-quote on FN.
19268
19269 * files.el (set-visited-file-name): Report the error
19270 for "empty filename" earlier.
19271 (kill-some-buffers): Ignore buffers already dead.
19272
19273 * fringe.el (fringe-mode): Doc fix.
19274
19275 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
19276 Check for (featurep 'xemacs) and turn off warnings in what it guards.
19277 Use unwind-protect to ensure byte-compile-unresolved-functions
19278 is updated.
19279
19280 * whitespace.el (whitespace-buffer-leading-cleanup):
19281 Simplify w/ skip-chars-forward.
19282 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
19283
19284 * mail/rmail.el (rmail-only-expunge): Fix paren error.
19285 Unconditionally try to leave point at the same old place.
19286
19287 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
19288
19289 * comint.el (comint-postoutput-scroll-to-bottom)
19290 (comint-show-maximum-output): Take scroll-margin into consideration.
19291
19292 2005-07-08 Kim F. Storm <storm@cua.dk>
19293
19294 * ido.el (ido-use-filename-at-point): New choice `guess'.
19295 (ido-file-internal): Try ffap-guesser if selected.
19296
19297 * ido.el (ido-before-fallback-functions): New hook.
19298 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
19299 (ido-read-file-name): Run it.
19300
19301 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
19302
19303 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
19304 strings rather than a list of symbols to the completion function.
19305
19306 2005-07-07 Jay Belanger <belanger@truman.edu>
19307
19308 * calc/calc-units.el (math-apply-units): Change the places in
19309 which units are simplified.
19310
19311 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
19312
19313 * cus-edit.el (customize-option, customize-option-other-window):
19314 Make them handle aliases.
19315
19316 * custom.el (custom-variable-p): Make it recursively follow
19317 aliases. Mention that in the docstring.
19318
19319 2005-07-07 Richard M. Stallman <rms@gnu.org>
19320
19321 * cus-start.el (exec-path): Use `directory' instead of `file'.
19322 Fix tag for nil.
19323
19324 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
19325
19326 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
19327 when called non-interactively. Doc fix.
19328
19329 2005-07-07 Lute Kamstra <lute@gnu.org>
19330
19331 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
19332 new address as well.
19333
19334 2005-07-07 Kenichi Handa <handa@m17n.org>
19335
19336 * international/mule.el (make-coding-system):
19337 Describe `ascii-incompatible' property in the docstring.
19338 (set-file-name-coding-system): Signal an error if coding-system is
19339 ascii-incompatible.
19340 (set-keyboard-coding-system): Likewise.
19341
19342 * international/mule-cmds.el (set-default-coding-systems):
19343 Don't set default-file-name-coding-system and
19344 default-keyboard-coding-system if coding-system is ASCII-incompatible.
19345
19346 * international/utf-16.el: Declare that all UTF-16-based coding
19347 systems are ASCII-incompatible.
19348
19349 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
19350
19351 * progmodes/gud.el: Require font-lock for displaying errors.
19352 Used by gdb-ui.el.
19353
19354 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
19355
19356 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
19357 values for the pattern lists which are `read'able but not
19358 `append'able (like symbols).
19359
19360 2005-07-06 Richard M. Stallman <rms@gnu.org>
19361
19362 * progmodes/flymake.el (flymake-float-time): Instead of
19363 with-no-warnings, test for xemacs.
19364 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
19365 to avoid warning.
19366
19367 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
19368
19369 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
19370
19371 2005-07-05 Lute Kamstra <lute@gnu.org>
19372
19373 * battery.el: Add support for Darwin (with much debugging help
19374 from Samuel Lauber <sam124@operamail.com>).
19375 (battery-status-function, battery-echo-area-format)
19376 (battery-mode-line-format): Add support for pmset on Darwin.
19377 (battery-load-low, battery-load-critical): New user options.
19378 (battery-pmset): New function.
19379
19380 2005-07-05 Lute Kamstra <lute@gnu.org>
19381
19382 Update FSF's address in GPL notices.
19383
19384 * textmodes/page-ext.el: Update FSF's address.
19385
19386 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19387
19388 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
19389 filling from using prefix when filling a single-line docstring.
19390
19391 * progmodes/flymake.el: Remove useless eval-when-compile.
19392
19393 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
19394
19395 2005-07-04 Richard M. Stallman <rms@gnu.org>
19396
19397 * textmodes/org.el (org-file-apps-defaults-gnu):
19398 Rename from org-file-apps-defaults-linux.
19399 (org-default-apps): Don't test system-type for `linux'.
19400 (org-file-apps): Doc fix.
19401
19402 2005-07-04 David Ponce <david@dponce.com>
19403
19404 * tree-widget.el: Improve header Commentary section.
19405 (tree-widget) [defgroup]
19406 (tree-widget-image-enable, tree-widget-themes-directory)
19407 (tree-widget-theme, tree-widget-image-properties-emacs)
19408 (tree-widget-image-properties-xemacs, tree-widget-create-image)
19409 (tree-widget-image-formats, tree-widget-control)
19410 (tree-widget-empty-control, tree-widget-leaf-control
19411 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
19412 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
19413 (tree-widget-keep, tree-widget-after-toggle-functions)
19414 (tree-widget-open-node, tree-widget-close-node): Doc fix.
19415 (tree-widget-open-control, tree-widget-close-control): Fix doc and
19416 :help-echo message.
19417 (tree-widget-set-theme): Doc fix. Use `string-equal'.
19418 (tree-widget-image-properties): Doc fix. Clearer implementation.
19419 (tree-widget--cursors): New constant.
19420 (tree-widget-lookup-image): New function split from
19421 `tree-widget-find-image'. Clearer implementation.
19422 (tree-widget-find-image): Use it.
19423 (tree-widget-button-keymap): Use `set-keymap-parent'.
19424 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
19425 Define the sub-widgets here.
19426 (tree-widget-node): Check that :node is not a tree-widget.
19427 (tree-widget-get-super, tree-widget-open-control)
19428 (tree-widget-close-control, tree-widget-empty-control)
19429 (tree-widget-leaf-control, tree-widget-guide)
19430 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
19431 (tree-widget-no-handle, tree-widget-value-delete)
19432 (tree-widget-map): Remove.
19433 (tree-widget-children-value-save): Doc fix. Simplified.
19434 (tree-widget-value-create): Update according to previous changes.
19435
19436 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
19437
19438 * textmodes/org.el: Leading space replaced by TABS.
19439 (org-recalc-marks, org-table-rotate-recalc-marks)
19440 (org-table-get-specials): Treat "^" and "_" marks.
19441 (org-table-justify-field-maybe): Optional argument NEW.
19442 (org-table-eval-formula): Parsing of the format simplified.
19443 New modes C,I. Honor the %= parameter in the current table.
19444 Avoid unnecessary re-align by using the NEW argument to
19445 `org-table-justify-field-maybe'.
19446 (org-calc-default-modes): Default for date-format mimicks org-mode.
19447 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
19448
19449 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
19450
19451 * cus-face.el (custom-theme-set-faces): Make it handle face
19452 aliases whose alias declarations are pre- or autoloaded.
19453
19454 2005-07-04 Juri Linkov <juri@jurta.org>
19455
19456 * faces.el (read-face-name): Put the code for getting a face name
19457 from the buffer before adding the faces from the `face' property.
19458 Use `completing-read-multiple' instead of `completing-read'.
19459 Require `crm'. Add default value and post-process the returned
19460 list of faces.
19461
19462 * emacs-lisp/crm.el (crm-find-current-element)
19463 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
19464
19465 * emacs-lisp/lisp-mode.el (eval-defun-1):
19466 * emacs-lisp/edebug.el (edebug-eval-defun):
19467 Remove unnecessary quotes.
19468
19469 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
19470
19471 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
19472 (prolog-indent-level): Fix typo in docstring.
19473
19474 * info.el (Info-history, Info-history-forward)
19475 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
19476
19477 * add-log.el (add-change-log-entry):
19478 * comint.el (comint-dynamic-list-input-ring)
19479 (comint-dynamic-list-completions):
19480 * dabbrev.el (dabbrev-expand):
19481 * delim-col.el (delimit-columns-rectangle-line):
19482 * diff-mode.el (diff-context->unified, diff-reverse-direction)
19483 (diff-unified->context):
19484 * ediff-init.el (ediff-abbrev-jobname):
19485 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
19486 (ediff-replace-session-activity-marker-in-meta-buffer):
19487 * info.el (Info-summary):
19488 * lpr.el (printify-region):
19489 * printing.el (pr-create-interface):
19490 * ps-print.el (ps-print-quote):
19491 * ses.el (ses-column-widths, ses-print-cell)
19492 (ses-adjust-print-width, ses-center):
19493 * shell.el (shell-file-name-quote-list):
19494 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
19495 (strokes-fill-current-buffer-with-whitespace)
19496 (strokes-xpm-for-stroke, strokes-list-strokes)
19497 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
19498 * term.el (term-dynamic-list-input-ring)
19499 (term-dynamic-list-completions):
19500 * calc/calc.el (math-format-stack-value):
19501 * emacs-lisp/edebug.el (edebug-display-freq-count):
19502 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
19503 (delphi-new-comment-line):
19504 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
19505 * progmodes/executable.el (executable-set-magic):
19506 * progmodes/python.el (inferior-python-mode):
19507 * progmodes/scheme.el (scheme-mode-syntax-table):
19508 * progmodes/sh-script.el (sh-maybe-here-document):
19509 * progmodes/sql.el (sql-copy-column):
19510 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
19511 * textmodes/bibtex.el (bibtex-mode):
19512 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
19513 (sgml-auto-attributes):
19514 * textmodes/table.el (table-insert, table-shorten-cell)
19515 (table--generate-source-scan-lines, table-delete-row)
19516 (*table--cell-delete-char, table--spacify-frame)
19517 (table--horizontally-shift-above-and-below)
19518 (table--cell-insert-char, table--cell-blank-str)
19519 (table--fill-region-strictly):
19520 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
19521 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
19522
19523 * add-log.el (change-log):
19524 * apropos.el (apropos):
19525 * comint.el (comint-completion, comint-source):
19526 * dabbrev.el (dabbrev):
19527 * delim-col.el (columns):
19528 * diff-mode.el (diff-mode):
19529 * ediff.el (ediff):
19530 * ediff-diff.el (ediff-diff):
19531 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
19532 * ediff-mult.el (ediff-mult):
19533 * ediff-ptch.el (ediff-ptch):
19534 * ediff-wind.el (ediff-window):
19535 * facemenu.el (facemenu):
19536 * indent.el (indent):
19537 * info.el (info):
19538 * jka-cmpr-hook.el (compression, jka-compr):
19539 * lpr.el (lpr):
19540 * outline.el (outlines):
19541 * pcmpl-cvs.el (pcmpl-cvs):
19542 * pcmpl-rpm.el (pcmpl-rpm):
19543 * printing.el (printing):
19544 * ps-print.el (postscript, ps-print, ps-print-horizontal)
19545 (ps-print-vertical, ps-print-headers, ps-print-font)
19546 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
19547 (ps-print-background, ps-print-printer, ps-print-page)
19548 (ps-print-miscellany):
19549 * ses.el (ses):
19550 * shell.el (shell, shell-directories, shell-faces):
19551 * startup.el (initialization):
19552 * strokes.el (strokes):
19553 * term.el (term):
19554 * uniquify.el (uniquify):
19555 * w32-vars.el (w32):
19556 * calc/calc.el (calc):
19557 * emacs-lisp/bytecomp.el (bytecomp):
19558 * emacs-lisp/cl-indent.el (lisp-indent):
19559 * emacs-lisp/edebug.el (edebug):
19560 * emacs-lisp/elp.el (elp):
19561 * emacs-lisp/testcover.el (testcover):
19562 * emacs-lisp/trace.el (trace):
19563 * emulation/viper-ex.el (viper-ex):
19564 * emulation/viper-mous.el (viper-mouse):
19565 * mail/mailalias.el (mailalias):
19566 * mail/supercite.el (supercite, supercite-frames)
19567 (supercite-attr, supercite-cite, supercite-hooks):
19568 * net/rcompile.el (remote-compile):
19569 * net/rlogin.el (rlogin):
19570 * obsolete/ooutline.el (outlines):
19571 * progmodes/delphi.el (delphi):
19572 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
19573 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
19574 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
19575 (ebnf-optimization):
19576 * progmodes/etags.el (etags):
19577 * progmodes/executable.el (executable):
19578 * progmodes/idlwave.el (idlwave):
19579 * progmodes/pascal.el (pascal):
19580 * progmodes/prolog.el (prolog):
19581 * progmodes/python.el (python):
19582 * progmodes/scheme.el (scheme):
19583 * progmodes/sh-script.el (sh, sh-script):
19584 * progmodes/sql.el (SQL):
19585 * progmodes/tcl.el (tcl):
19586 * textmodes/bibtex.el (bibtex, bibtex-autokey):
19587 * textmodes/enriched.el (enriched):
19588 * textmodes/makeinfo.el (makeinfo):
19589 * textmodes/sgml-mode.el (sgml):
19590 * textmodes/table.el (table-hooks):
19591 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
19592 * textmodes/texinfo.el (texinfo):
19593 * textmodes/two-column.el (two-column):
19594 Finish `defgroup' description with period.
19595
19596 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
19597 * eshell/esh-var.el (eshell-var):
19598 * progmodes/vhdl-mode.el (vhdl-testbench):
19599 * textmodes/org.el (org): Fix typos in docstrings.
19600
19601 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
19602 consistency.
19603
19604 * progmodes/flymake.el (flymake-find-file): Remove.
19605 (flymake-float-time): Use `with-no-warnings'.
19606 (flymake-check-start-time, flymake-check-was-interrupted)
19607 (flymake-err-info, flymake-is-running, flymake-last-change-time)
19608 (flymake-new-err-info): `defvar' at compile time.
19609
19610 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
19611
19612 * replace.el (occur-hook): Doc fix.
19613 (occur-1): Don't call `occur-hook' if there are no matches.
19614
19615 2005-07-03 Richard M. Stallman <rms@gnu.org>
19616
19617 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
19618 global-map, save the same map.
19619 (global-map): Don't alter it at top level.
19620 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
19621 Then alter it here instead.
19622 (tpu-edt-off): Set global-map to the saved one.
19623
19624 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
19625 All references simplified.
19626 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
19627 (zmacs-regions): Add defvar.
19628 (repeat-complex-command-map): Everything about that deleted.
19629
19630 * textmodes/artist.el (artist-key-is-drawing)
19631 (artist-key-endpoint1, artist-key-poly-point-list)
19632 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
19633 (artist-key-compl-table, artist-rb-save-data)
19634 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
19635 Don't put them in eval-when-compile.
19636 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
19637
19638 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
19639 Use with-no-warnings.
19640
19641 * net/browse-url.el (dos-windows-version): Add defvar.
19642
19643 * mail/supercite.el (filladapt-prefix-table): Add defvar.
19644
19645 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
19646 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
19647 (rmail-new-summary-line-count): Rename from new-summary-line-count.
19648 Add defvar.
19649 (rmail-summary-beginning-of-message): Use with-no-warnings.
19650 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
19651
19652 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
19653 Use with-no-warnings.
19654
19655 * emulation/vi.el (vi-mark-region): Use c-mark-function.
19656 (c-mark-function): Add point-moving-unit property.
19657 (vi-goto-line): Use with-no-warnings.
19658
19659 * emulation/edt.el (edt-last-copied-word): Add defvar.
19660 (zmacs-region-stays): Likewise.
19661 (edt-mark-section-wisely): Use c-mark-function for C.
19662 Use makr-defun for Fortran.
19663 (time-string): defvar deleted.
19664 (edt-display-the-time): Don't set time-string.
19665
19666 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
19667
19668 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
19669 Don't warn when name is not constant
19670 or for defining the group `emacs'.
19671
19672 * tooltip.el (gud-tooltip-mode): Add defvar.
19673
19674 * startup.el (default-frame-background-mode): Add defvar.
19675
19676 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
19677
19678 * info.el (tool-bar-map): Add defvar.
19679
19680 * dired.el (dnd-protocol-alist): Add defvar.
19681
19682 * dired-aux.el (dired-query): Display question with answer, when
19683 the user answers.
19684
19685 * custom.el (custom-add-option): Doc fix.
19686
19687 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
19688
19689 2005-07-03 Eli Zaretskii <eliz@gnu.org>
19690
19691 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
19692 bogus name from the last change.
19693
19694 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
19695
19696 * custom.el (custom-declare-variable): Fix typos in comment.
19697 (custom-known-themes): Doc fix.
19698 (custom-theme-directory): New defcustom.
19699 (require-theme): Make it check `custom-theme-directory'.
19700
19701 * cus-theme.el (custom-new-theme-mode): New function.
19702 (custom-theme-name, custom-theme-variables, custom-theme-faces)
19703 (custom-theme-description): Add compiler defvars.
19704 (customize-create-theme): Add doc to the "*New Custom Theme*"
19705 buffer. Use `custom-new-theme-mode'.
19706 (custom-theme-write): Put the created buffer in emacs-lisp-mode
19707 and save it to the `custom-theme-directory'. Make this the
19708 default directory of the buffer.
19709
19710 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
19711
19712 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
19713 Fix unbalanced parentheses.
19714
19715 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
19716
19717 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
19718 into flymake-mode and delegate to flymake-mode.
19719
19720 * find-file.el (ff-which-function-are-we-in): Clean up.
19721
19722 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
19723
19724 * replace.el (occur-rename-buffer): Fix docstring.
19725
19726 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
19727 (edt-last-copied-word, edt-learn-macro-count)
19728 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
19729 (edt-rect-start-point, edt-user-global-map, rect-start-point)
19730 (time-string, zmacs-region-stays):
19731 * emulation/edt-mapper.el (edt-save-function-key-map)
19732 (EDT-key-name): `defvar' to silence the byte-compiler.
19733
19734 2005-07-02 Martin Rudalics <rudalics@gmx.at>
19735
19736 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
19737 font-lock-regexp-backslash. Doc fix.
19738 (font-lock-regexp-backslash-grouping-construct): Rename from
19739 font-lock-regexp-backslash-construct. Doc fix.
19740 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
19741 grouping constructs.
19742
19743 2005-07-02 Eli Zaretskii <eliz@gnu.org>
19744
19745 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
19746 updating all the prerequisites.
19747
19748 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
19749
19750 * textmodes/org.el (org-agenda-start-on-weekday)
19751 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
19752 (org-agenda-use-time-grid, org-archive-location)
19753 (org-allow-space-in-links, org-usenet-links-prefer-google)
19754 (org-enable-table-editor, org-export-default-language)
19755 (org-export-html-show-new-buffer, org-fill-paragraph)
19756 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
19757 (org-goto-quit, org-occur, org-eval-in-calendar)
19758 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
19759 (org-agenda-diary-entry, org-remember-help)
19760 (org-table-convert-region, org-at-table-p)
19761 (org-table-move-row-down, org-table-move-row-up)
19762 (org-table-copy-region, org-table-toggle-vline-visibility)
19763 (org-table-get-stored-formulas, org-table-get-specials)
19764 (org-recalc-commands, org-table-eval-formula)
19765 (org-table-formula-substitute-names, orgtbl-make-binding)
19766 (org-format-org-table-html, org-format-table-table-html)
19767 (org-format-table-table-html-using-table-generate-source)
19768 (org-customize): Fix typos in docstrings.
19769 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
19770 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
19771 (org-back-to-heading): Doc fixes.
19772 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
19773 (org-agenda-change-all-lines, org-get-header):
19774 Improve argument/docstring consistency.
19775 (orgtbl-error): Fix error message.
19776
19777 * progmodes/flymake.el (flymake-find-possible-master-files)
19778 (flymake-master-file-compare, flymake-get-line-err-count)
19779 (flymake-highlight-line, flymake-gui-warnings-enabled):
19780 Fix typos in docstrings.
19781 (flymake-parse-line, flymake-get-project-include-dirs-function)
19782 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
19783 Doc fixes.
19784 (flymake-get-project-include-dirs-function)
19785 (flymake-make-err-menu-data):
19786 Improve argument/docstring consistency.
19787
19788 2005-07-01 Lute Kamstra <lute@gnu.org>
19789
19790 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
19791 Catch errors with ignore-errors. Use temporary buffer.
19792 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
19793
19794 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
19795 background color faces.
19796 (facemenu-set-foreground, facemenu-set-background):
19797 Use facemenu-set-face-from-menu.
19798 (facemenu-set-face-from-menu): Treat face names that start with
19799 "fg:" or "bg:" as special.
19800 (facemenu-add-new-color): Don't create faces. Simplify.
19801
19802 2005-06-30 Richard M. Stallman <rms@gnu.org>
19803
19804 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
19805 (crm-find-current-element): Likewise.
19806
19807 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
19808
19809 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
19810
19811 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
19812
19813 * arc-mode.el (archive-extract): Make it work as a mouse binding.
19814 (archive-mouse-extract): Make it an obsolete alias.
19815 (archive-mode-map): Don't use archive-mouse-extract any more.
19816 (archive-mode, archive-extract): write-contents-hooks ->
19817 write-contents-functions.
19818 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
19819 first arg.
19820 (archive-rename-entry): Update the call.
19821 (archive-zip-summarize): Remove unused var `method'.
19822 (archive-lzh-summarize): Remove unused var `creator'.
19823
19824 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
19825 dedicated frame upon exit.
19826
19827 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
19828 (archive-zip-extract, archive-zip-expunge)
19829 (archive-zip-update, archive-zip-update-case): Use executable-find.
19830 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
19831 Use restore-buffer-modified-p.
19832 (archive-extract, archive-add-new-member, archive-write-file-member):
19833 Use with-current-buffer.
19834 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
19835
19836 2005-06-30 Andreas Schwab <schwab@suse.de>
19837
19838 * progmodes/gud.el (gud-filter): Remove unneeded progn.
19839
19840 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
19841
19842 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
19843
19844 2005-06-30 Juri Linkov <juri@jurta.org>
19845
19846 * faces.el (vertical-border): Inherit from mode-line-inactive
19847 only on tty.
19848
19849 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
19850
19851 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
19852 example, -NLINES in the `occur' docstring).
19853
19854 * replace.el (occur-1): When no matches are found, do not set the
19855 `buffer-read-only' and modified flags for the occur buffer,
19856 because it is deleted.
19857
19858 * emulation/cua-base.el (cua-check-pending-input)
19859 (cua-repeat-replace-region, cua-mode, cua-debug)
19860 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
19861 Fix typos in docstrings.
19862
19863 * emulation/cua-gmrk.el (cua-toggle-global-mark)
19864 (cua-cut-region-to-global-mark)
19865 (cua--cut-rectangle-to-global-mark):
19866 Remove period from end of messages.
19867
19868 * emulation/cua-rect.el (cua-do-rectangle-padding):
19869 Remove period from end of messages.
19870 (cua--rectangle-seq-format): Fix typo in docstring.
19871 (cua-sequence-rectangle, cua-fill-char-rectangle):
19872 Improve argument/docstring consistency.
19873
19874 2005-06-29 Juri Linkov <juri@jurta.org>
19875
19876 * faces.el (default-frame-background-mode): New internal variable.
19877 (frame-set-background-mode): Use it.
19878
19879 * startup.el (normal-top-level): Set default-frame-background-mode
19880 instead of frame-background-mode. Before setting it, test for its
19881 nil value. Remove tests for frame-background-mode and frame
19882 parameter `reverse'. Add test for "unspecified-fg".
19883
19884 * term/xterm.el (xterm-rxvt-set-background-mode):
19885 * term/rxvt.el (rxvt-set-background-mode):
19886 Set default-frame-background-mode instead of frame-background-mode.
19887
19888 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
19889
19890 * simple.el (set-variable): Warn about obsolete user variables.
19891
19892 * imenu.el (imenu--completion-buffer):
19893 * mouse.el (mouse-buffer-menu-alist):
19894 * msb.el (msb-invisible-buffer-p):
19895 * calendar/diary-lib.el (diary-header-line-format):
19896 * emacs-lisp/pp.el (pp-buffer):
19897 * progmodes/cperl-mode.el (cperl-do-auto-fill):
19898 * textmodes/picture.el (picture-replace-match):
19899 Change space constants followed by a sexp to "?\s ".
19900
19901 * play/decipher.el (decipher-loop-with-breaks):
19902 * textmodes/texinfo.el (texinfo-insert-@item): Change space
19903 constants "protected" from end of line by a comment to "?\s".
19904
19905 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19906
19907 * font-lock.el (save-buffer-state): Use `declare'.
19908
19909 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
19910 reset the syntax-table to cperl-mode-syntax-table.
19911 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
19912 "foo_print_bar" is not matched as a reserved keyword.
19913
19914 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
19915
19916 * textmodes/org.el (orgtbl-setup): New function, for delayed
19917 setup for the orgtbl commands.
19918 (org-calc-default-modes): New option.
19919 (orgtbl-make-binding): Use `defun' to get better help display.
19920 (org-diary): Call `org-compile-prefix-format'.
19921 (org-table-formula-substitute-names): New function.
19922 (org-agenda-day-view, org-agenda-week-view): New commands.
19923 (org-agenda-toggle-week-view): Command removed.
19924 (org-tbl-menu): Split off from org-org-menu.
19925 (org-mode): Move removal of outline-mode menus to here.
19926 (org-table-formula-debug): New option.
19927 (org-table-insert-row): Keep first field if just "#" or "*".
19928 (org-mode): Paragraph regexps fixed.
19929 (org-table-recalculate-regexp): New constant.
19930 (org-table-justify-field-maybe): Avoid replace if not necessary.
19931 (org-copy-special, org-cut-special): Use `call-interactively'.
19932 (org-table-copy-region): Take region from `interactive' call.
19933 (org-trim): Return string even if no match.
19934 (org-formula): New face.
19935 (org-set-font-lock-defaults): No longer highlight "FIXME".
19936 But highlight formula-related fields in table.
19937 (org-table-p): Use regexp, not fontification.
19938 (org-table-align): Handle white space at end of line.
19939 (org-table-formula-evaluate-inline): New option.
19940 (org-mode): Auto-wrapping in comment lines turned off.
19941 (org-table-copy-down): Evaluate only in copied field, not in
19942 destination.
19943 (org-table-current-formula): Variable removed.
19944 (org-table-store-formulas, org-table-get-stored-formulas)
19945 (org-table-modify-formulas, org-table-replace-in-formulas)
19946 (org-table-maybe-eval-formula): New functions.
19947 (org-table-get-formula): Modify to use stored formulas.
19948 (org-table-insert-column, org-table-delete-column)
19949 (org-table-move-column): Call `org-table-modify-formulas'.
19950 (org-complete): Add completion for keyword formulas.
19951 (orgtbl-mode): Pull orgtbl-mode-map to start of
19952 minor-mode-map-alist.
19953
19954 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19955
19956 * progmodes/python.el (python-check): Require `compile' before
19957 modifying its variables.
19958
19959 * newcomment.el (comment-indent-default): Don't get fooled by an early
19960 end of buffer.
19961
19962 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19963
19964 * ps-print.el (ps-print-version): Fix version number.
19965
19966 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
19967
19968 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
19969
19970 2005-06-28 Richard M. Stallman <rms@gnu.org>
19971
19972 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
19973 (flyspell-local-mouse-map): Declaration deleted.
19974 (flyspell-mouse-map): Bind only mouse-2.
19975 (flyspell-mode-map): Don't test flyspell-use-local-map.
19976 (flyspell-overlay-keymap-property-name): Var deleted.
19977 (flyspell-mode-on): Don't make local bindings for
19978 flyspell-mouse-map and flyspell-mode-map.
19979 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
19980
19981 * textmodes/ispell.el (ispell-word): Do not ignore short words.
19982
19983 * progmodes/compile.el (compilation-next-error-function):
19984 Don't switch buffers; operate on the current buffer.
19985
19986 * progmodes/compile.el (compilation-error-file-name)
19987 (compilation-warning-file-name, compilation-info-file-name)
19988 (compilation-line-number, compilation-column-number): New faces.
19989 (compilation-error-face, compilation-warning-face)
19990 (compilation-info-face, compilation-line-face)
19991 (compilation-column-face): Use them.
19992
19993 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
19994
19995 * comint.el (comint-password-prompt-regexp): Accept ", try again".
19996
19997 * bindings.el (global-map): Bind insertchar and its variants.
19998
19999 2005-06-27 Richard M. Stallman <rms@gnu.org>
20000
20001 * textmodes/artist.el (artist-text-overwrite)
20002 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
20003
20004 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20005
20006 * ps-print.el: It was not working the page selection for printing.
20007 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
20008 (ps-print-version): New version 6.6.7.
20009 (ps-end-sheet): New fun.
20010 (ps-header-sheet, ps-end-job): Call it.
20011
20012 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
20013
20014 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
20015
20016 2005-06-27 Lute Kamstra <lute@gnu.org>
20017
20018 * facemenu.el (facemenu-unlisted-faces): Add foreground and
20019 background color faces.
20020 (facemenu-get-face): Delete function.
20021 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
20022 (facemenu-add-new-color): Make second argument mandatory.
20023 Create the appropriate face and return it. Simplify.
20024 (facemenu-set-foreground, facemenu-set-background): Don't check if
20025 color is defined. Use return value of facemenu-add-new-color.
20026
20027 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
20028
20029 * progmodes/gud.el (gud-filter): Add missing argument to
20030 with-selected-window.
20031
20032 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
20033
20034 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
20035 a :require to the defcustom.
20036
20037 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
20038 defcustoms corresponding to minor modes.
20039
20040 2005-06-26 David Ponce <david@dponce.com>
20041
20042 * recentf.el: Require tree-widget instead of wid-edit.
20043 (recentf-filename-handler): Fix widget :type.
20044 (recentf-cancel-dialog, recentf-open-more-files)
20045 (recentf-open-files-action): Doc fix.
20046 (recentf-dialog-goto-first): New function.
20047 (recentf-dialog-mode-map): Set parent keymap first.
20048 (recentf-dialog-mode): Define with define-derived-mode.
20049 Don't display continuation lines in dialogs.
20050 (recentf-edit-list): Rename from recentf-edit-selected-items.
20051 (recentf-edit-list-select): Rename from recentf-edit-list-action.
20052 Simplify.
20053 (recentf-edit-list-validate): New function.
20054 (recentf-edit-list): Update accordingly.
20055 (recentf-open-files-item-shift): Remove.
20056 (recentf-open-files-item): Convert menu elements into tree and
20057 link widgets. Don't create the widgets.
20058 (recentf-open-files): Update accordingly.
20059 (recentf-save-list): Untabify.
20060
20061 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
20062
20063 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
20064 (keep-lines): Add INTERACTIVE arg. Never delete lines only
20065 partially contained in the active region. Do not take active
20066 region into account when called from Lisp, unless INTERACTIVE arg
20067 is non-nil. Use `forward-line' instead of `beginning-of-line' to
20068 avoid trouble with fields. Make marker point nowhere when no
20069 longer used. Always return nil. Doc fix.
20070 (flush-lines): Add INTERACTIVE arg. Do not take active region
20071 into account when called from Lisp, unless INTERACTIVE arg is
20072 non-nil. Use `forward-line' instead of `beginning-of-line' to
20073 avoid trouble with fields. Make marker point nowhere when no
20074 longer used. Always return nil. Doc fix.
20075 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
20076 interchangeable. Do not take active region into account when
20077 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
20078 message in echo area when called from Lisp, unless INTERACTIVE arg
20079 is non-nil. Avoid saying "1 occurrences". Do not use markers.
20080 Return the number of matches. Doc fix.
20081 (occur): Doc fix.
20082 (perform-replace): Make comment follow double space convention for
20083 the sake of `outline-minor-mode'.
20084
20085 * faces.el (facep): Doc fix.
20086
20087 2005-06-25 Richard M. Stallman <rms@gnu.org>
20088
20089 * facemenu.el (facemenu-enable-faces-p): New function.
20090 (facemenu-background-menu, facemenu-foreground-menu)
20091 (facemenu-face-menu): Add menu-enable property.
20092
20093 * jka-compr.el (jka-compr-insert-file-contents):
20094 Special handling if cannot find the uncompression program.
20095
20096 * cus-face.el (custom-face-attributes): Add autoload.
20097
20098 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
20099 Bind comment-indent-function locally.
20100
20101 * window.el (save-selected-window): Use save-current-buffer.
20102
20103 * subr.el (with-selected-window): Use save-current-buffer.
20104
20105 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
20106 and with-current-buffer.
20107
20108 2005-06-24 Richard M. Stallman <rms@gnu.org>
20109
20110 * simple.el (line-move-1): Fix previous change.
20111
20112 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
20113
20114 * replace.el (occur-1): Set `buffer-read-only' and the
20115 buffer-modified flag before running `occur-hook' to protect
20116 against unintentional buffer switches that can lead to data loss.
20117
20118 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
20119
20120 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
20121 (gud-gdb-marker-filter): Use font-lock-warning-face for any
20122 initial error.
20123
20124 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
20125 after fresh input.
20126 (gdb-var-create-handler): Put name of expression in quotes.
20127
20128 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
20129
20130 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
20131 elements of RING in order, and without bogus nil elements.
20132
20133 2005-06-23 Richard M. Stallman <rms@gnu.org>
20134
20135 * simple.el (set-variable): Args renamed; doc fix.
20136 (line-move-1): When there are overlays around, use vertical-motion.
20137
20138 * faces.el (escape-glyph): Use brown against light background.
20139 (nobreak-space): Rename from no-break-space.
20140 Fix previous change.
20141
20142 * dired-aux.el (dired-do-copy): Fix arg prompt.
20143
20144 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
20145
20146 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
20147
20148 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
20149 rather than "Distributor".
20150
20151 2005-06-23 Lute Kamstra <lute@gnu.org>
20152
20153 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
20154 (debug-on-entry): Use it. New interactive declaration that uses
20155 function-called-at-point.
20156
20157 2005-06-23 Kim F. Storm <storm@cua.dk>
20158
20159 * subr.el (save-match-data): Add comment about using evaporate arg
20160 to set-match-data.
20161
20162 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
20163
20164 * cus-edit.el (customize-face)
20165 (customize-face-other-window): Handle face aliases.
20166
20167 * faces.el (face-documentation, set-face-attribute)
20168 (face-spec-set): Handle face aliases.
20169
20170 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
20171
20172 * help-mode.el (help-make-xrefs): If a symbol representing a face
20173 name is not followed by the word "face", it could still be a
20174 function or variable name, so don't bypass other checks.
20175
20176 2005-06-22 Juri Linkov <juri@jurta.org>
20177
20178 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
20179 Replace aliased functions with calls where second arg `inherit' is t.
20180
20181 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
20182
20183 * progmodes/gdb-ui.el (gdb-error): New variable.
20184 (gdb-error): New function.
20185 (gdb-annotation-rules): Act on error-begin and error annotations.
20186 (gdb-concat-output): Use font-lock-warning-face for errors.
20187
20188 2005-06-22 Miles Bader <miles@gnu.org>
20189
20190 * bindings.el (propertized-buffer-identification): Use renamed
20191 `Buffer-menu-buffer' face.
20192
20193 * faces.el (vertical-border): Rename from `vertical-divider'.
20194 (escape-glyph): Change dark-background color back to `cyan'.
20195
20196 2005-06-21 Juri Linkov <juri@jurta.org>
20197
20198 * faces.el (face-user-default-spec): Try getting `customized-face'
20199 prior to `saved-face'.
20200 (frame-background-mode): Refill docstring.
20201
20202 * emacs-lisp/lisp-mode.el (eval-defun-1):
20203 * emacs-lisp/edebug.el (edebug-eval-defun):
20204 Set `saved-face' temporarily to nil before calling form.
20205 Set `customized-face' to the new spec after that.
20206
20207 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
20208
20209 * subr.el (1value, lambda, key-substitution-in-progress):
20210 Doc fixes.
20211
20212 * autoinsert.el (auto-insert-alist):
20213 * ses.el (ses-call-printer):
20214 * subr.el (noreturn):
20215 * emacs-lisp/lisp.el (check-parens):
20216 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
20217 * net/browse-url.el (browse-url-mosaic):
20218 * progmodes/cc-defs.el (c-safe-scan-lists):
20219 * progmodes/ebnf-abn.el (ebnf-abn-lex):
20220 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
20221 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
20222 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
20223 * progmodes/ebnf-iso.el (ebnf-iso-lex):
20224 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
20225
20226 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
20227
20228 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
20229
20230 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
20231
20232 * calendar/appt.el (appt-make-list): Activate the package, if
20233 not already active (for backwards compatibility).
20234
20235 2005-06-20 Kim F. Storm <storm@cua.dk>
20236
20237 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
20238
20239 2005-06-20 Miles Bader <miles@gnu.org>
20240
20241 * faces.el (vertical-divider): New face.
20242
20243 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
20244
20245 * simple.el (kill-whole-line): Doc fix.
20246 (next-error-buffer-p, next-error-find-buffer)
20247 (clone-indirect-buffer): Fix typos in docstrings.
20248 (comment-line-break-function): Doc fix: don't say variable
20249 is automatically buffer-local (it isn't).
20250
20251 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
20252
20253 * net/tramp-ftp.el (top):
20254 * net/tramp-smb.el (top):
20255 * net/tramp-util.el (top):
20256 * net/tramp-uu.el (top):
20257 * net/tramp-vc.el (top):
20258 * net/tramp.el (top): Revert copyright years back to original
20259 ones. Tramp has a life outside GNU Emacs.
20260
20261 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
20262
20263 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
20264
20265 2005-06-18 Juri Linkov <juri@jurta.org>
20266
20267 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
20268 end of first regexp to limit the match to the position between
20269 line number and source line with same separator character as used
20270 between file name and line number. In the second regexp limit
20271 mouse-face area to file name and line number by adding new group
20272 for them and referring it in HYPERLINK arg.
20273 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
20274 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
20275 previous line where grep markers may be already removed.
20276
20277 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
20278
20279 * progmodes/ps-mode.el: Update version and maintainer's email address.
20280
20281 2005-06-18 Steve Youngs <steve@xemacs.org>
20282
20283 * net/browse-url.el (browse-url-browser-function)
20284 (browse-url-default-browser): Add firefox.
20285 (browse-url-firefox-program, browse-url-firefox-arguments)
20286 (browse-url-firefox-startup-arguments)
20287 (browse-url-firefox-new-window-is-tab): New defcustoms.
20288 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
20289
20290 2005-06-17 Richard M. Stallman <rms@gnu.org>
20291
20292 * startup.el (command-line): Warn if specified user name has
20293 no home directory.
20294
20295 * term.el (term-get-old-input, term-input-filter, term-input-sender)
20296 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
20297
20298 * longlines.el (longlines-mode, longlines-show-hard-newlines):
20299 Doc fixes.
20300
20301 * faces.el (underline): Try bold if terminal doesn't support underline.
20302
20303 * mail/sendmail.el (mail-setup-with-from): New variable.
20304 (mail-insert-from-field): New function.
20305 (sendmail-send-it): Call it.
20306 (mail-setup): Optionally call it here.
20307
20308 * term/linux.el: Call tty-no-underline.
20309
20310 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
20311
20312 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
20313
20314 2005-06-17 Miles Bader <miles@gnu.org>
20315
20316 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
20317 (ediff-current-diff-C, ediff-current-diff-Ancestor)
20318 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
20319 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
20320 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
20321 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
20322 Remove "-face" suffix from face names.
20323 (ediff-current-diff-face-A, ediff-current-diff-face-B)
20324 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
20325 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
20326 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
20327 (ediff-even-diff-face-A, ediff-even-diff-face-B)
20328 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
20329 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
20330 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
20331 New backward-compatibility aliases for renamed faces.
20332 (ediff-current-diff-face-A, ediff-current-diff-face-B)
20333 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
20334 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
20335 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
20336 (ediff-even-diff-face-A, ediff-even-diff-face-B)
20337 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
20338 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
20339 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
20340 Use renamed ediff faces.
20341
20342 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
20343 Remove "-face" suffix from face names.
20344 (eshell-test-ok-face, eshell-test-failed-face):
20345 New backward-compatibility aliases for renamed faces.
20346 (eshell-run-test): Use renamed eshell-test faces.
20347
20348 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
20349 face name.
20350 (eshell-prompt-face): New backward-compatibility alias for renamed
20351 face.
20352 (eshell-emit-prompt): Use renamed eshell-prompt face.
20353
20354 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
20355 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
20356 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
20357 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
20358 Remove "-face" suffix from face names.
20359 (eshell-ls-directory-face, eshell-ls-symlink-face)
20360 (eshell-ls-executable-face, eshell-ls-readonly-face)
20361 (eshell-ls-unreadable-face, eshell-ls-special-face)
20362 (eshell-ls-missing-face, eshell-ls-archive-face)
20363 (eshell-ls-backup-face, eshell-ls-product-face)
20364 (eshell-ls-clutter-face):
20365 New backward-compatibility aliases for renamed faces.
20366 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
20367
20368 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
20369 Remove "-face" suffix from face name.
20370 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
20371 instead of literal face.
20372
20373 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
20374
20375 * emacs-lisp/warnings.el (display-warning, lwarn)
20376 (warning-minimum-log-level): Doc fixes.
20377 (warning-minimum-level, warning-minimum-log-level):
20378 Add :debug to :type choices.
20379
20380 * progmodes/ada-mode.el (ada-format-paramlist)
20381 (ada-get-indent-case, ada-check-matching-start)
20382 (ada-check-defun-name, ada-goto-matching-decl-start)
20383 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
20384 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
20385 (ada-make-subprogram-body): Follow error conventions.
20386 (ada-case-exception-file, ada-indent-comment-as-code)
20387 (ada-indent-handle-comment-special, ada-indent-renames)
20388 (ada-indent-return, ada-search-directories-internal)
20389 (ada-tab-policy, ada-case-exception-substring)
20390 (ada-other-file-alist, ada-matching-start-re)
20391 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
20392 (ada-imenu-generic-expression, ada-compile-goto-error)
20393 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
20394 (ada-popup-menu, ada-add-extensions, ada-mode)
20395 (ada-region-selected, ada-create-case-exception)
20396 (ada-create-case-exception-substring, ada-after-keyword-p)
20397 (ada-activate-keys-for-case, ada-adjust-case-region)
20398 (ada-adjust-case-buffer, ada-format-paramlist)
20399 (ada-scan-paramlist, ada-insert-paramlist)
20400 (ada-indent-newline-indent)
20401 (ada-indent-newline-indent-conditional)
20402 (ada-justified-indent-current, ada-goto-previous-word)
20403 (ada-indent-current, ada-get-indent-open-paren)
20404 (ada-get-indent-paramlist, ada-get-indent-end)
20405 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
20406 (ada-get-indent-block-start, ada-get-indent-subprog)
20407 (ada-get-indent-noindent, ada-get-indent-label)
20408 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
20409 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
20410 (ada-goto-stmt-end, ada-goto-next-word)
20411 (ada-check-matching-start, ada-check-defun-name)
20412 (ada-goto-matching-decl-start, ada-goto-matching-start)
20413 (ada-goto-matching-end, ada-search-ignore-string-comment)
20414 (ada-in-decl-p, ada-looking-at-semi-or)
20415 (ada-looking-at-semi-private, ada-in-paramlist-p)
20416 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
20417 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
20418 (ada-next-procedure, ada-previous-procedure, ada-next-package)
20419 (ada-previous-package, ada-create-menu)
20420 (ada-fill-comment-paragraph-justify)
20421 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
20422 (ada-other-file-name, ada-last-which-function-line)
20423 (ada-last-which-function-subprog, ada-which-function)
20424 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
20425 (ada-gen-treat-proc, ada-check-emacs-version)
20426 (ada-continuation-indent, ada-align-region-separate):
20427 Fix typos in docstrings.
20428 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
20429
20430 2005-06-16 Lute Kamstra <lute@gnu.org>
20431
20432 * simple.el (fundamental-mode): Run after-change-major-mode-hook
20433 conditionally.
20434
20435 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
20436
20437 * comint.el (comint-replace-by-expanded-filename)
20438 (comint-prompt-regexp, comint-delimiter-argument-list)
20439 (comint-preinput-scroll-to-bottom):
20440 * info.el (Info-hide-cookies-node):
20441 * ls-lisp.el (ls-lisp-classify):
20442 * find-file.el (ff-search-directories, ff-special-constructs)
20443 (ff-find-other-file):
20444 * font-lock.el (font-lock-keywords):
20445 * shell.el (shell-prompt-pattern)
20446 (shell-dynamic-complete-functions, shell-mode)
20447 (shell-delimiter-argument-list):
20448 * term.el (term-replace-by-expanded-filename)
20449 (term-prompt-regexp, term-delimiter-argument-list):
20450 * woman.el (woman-ignore, woman0-if):
20451 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
20452 * emacs-lisp/elint.el (elint-init-env):
20453 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
20454 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
20455 * language/ethio-util.el (ethio-tilde-escape)
20456 (ethio-use-three-dot-question):
20457 * net/zone-mode.el (zone-mode-load-time-setup):
20458 * progmodes/cc-align.el (c-lineup-argcont):
20459 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
20460 * progmodes/cperl-mode.el (cperl-set-style-back):
20461 * progmodes/inf-lisp.el (inferior-lisp-prompt):
20462 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
20463 Fix spellings in docstrings.
20464
20465 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
20466 * progmodes/modula2.el (m2-for): Fix spellings.
20467
20468 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
20469
20470 * simple.el (undo-more): Don't use `format' on `error' arguments.
20471 Improve argument/docstring consistency.
20472 (pending-undo-list): Doc fix.
20473
20474 * smerge-mode.el (smerge-ensure-match):
20475 * emulation/vip.el (vip-ex):
20476 * net/zone-mode.el (zone-mode-update-serial):
20477 * progmodes/idlwave.el (idlwave-complete):
20478 * progmodes/vhdl-mode.el (vhdl-visit-file)
20479 (vhdl-compose-wire-components):
20480 Don't use `format' on `error' arguments.
20481
20482 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
20483 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
20484 (tooltip-help-tips): Fix typos in docstrings.
20485
20486 2005-06-16 David Ponce <david@dponce.com>
20487
20488 * tree-widget.el (tree-widget-value-create): Simplify last change.
20489
20490 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
20491
20492 * ido.el (ido-incomplete-regexp): New variable.
20493 (ido-set-matches-1): Handle invalid-regexp error and set
20494 ido-incomplete-regexp.
20495 (ido-incomplete-regexp): New face.
20496 (ido-completions): Use it.
20497 (ido-complete, ido-exit-minibuffer, ido-completions):
20498 Handle incomplete regexps.
20499 (ido-completions): Add check for complete match when entering a regexp.
20500
20501 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20502
20503 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
20504
20505 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
20506
20507 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
20508 by field delimiters.
20509
20510 2005-06-15 David Ponce <david@dponce.com>
20511
20512 * tree-widget.el: eval-and-compile inlined functions so they will
20513 be available at run-time too.
20514 (tree-widget-super-format-handler)
20515 (tree-widget-format-handler): Remove.
20516 (tree-widget-value-create): Handle the :indent property.
20517
20518 2005-06-15 Miles Bader <miles@gnu.org>
20519
20520 * progmodes/which-func.el (which-func): Only inherit
20521 `font-lock-function-name-face' when that makes sense against the
20522 default mode-line face, otherwise set the face color explicitly.
20523
20524 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
20525 faces instead of (non-existent) variables.
20526
20527 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
20528
20529 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
20530 (iswitchb-get-matched-buffers): Likewise. Simplify.
20531
20532 2005-06-14 Miles Bader <miles@gnu.org>
20533
20534 * progmodes/ld-script.el (ld-script-location-counter):
20535 Remove "-face" suffix from face name.
20536 (ld-script-location-counter-face):
20537 New backward-compatibility alias for renamed face.
20538 (ld-script-location-counter-face): Use renamed face.
20539
20540 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
20541 (cperl-hash): Remove "-face" suffix from face names.
20542 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
20543 New backward-compatibility aliases for renamed faces.
20544 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
20545 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
20546
20547 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
20548 name.
20549 (which-func-face): New backward-compatibility alias for renamed face.
20550 (which-func-format): Use renamed which-func face.
20551
20552 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
20553 (vhdl-function, vhdl-directive, vhdl-reserved-word)
20554 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
20555 names.
20556 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
20557 (vhdl-speedbar-configuration, vhdl-speedbar-package)
20558 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
20559 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
20560 (vhdl-speedbar-architecture-selected)
20561 (vhdl-speedbar-configuration-selected)
20562 (vhdl-speedbar-package-selected)
20563 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
20564 names.
20565 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
20566 Use renamed faces.
20567 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
20568 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
20569 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
20570 Use renamed faces.
20571 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
20572 names.
20573 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
20574 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
20575 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
20576 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
20577 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
20578 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
20579
20580 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
20581 face name.
20582 (sh-heredoc-face): New backward-compatibility alias for renamed face.
20583 (sh-heredoc-face): Use renamed sh-heredoc face.
20584
20585 * progmodes/idlw-help.el (idlwave-help-link):
20586 Remove "-face" suffix from face name.
20587 (idlwave-help-link-face):
20588 New backward-compatibility alias for renamed face.
20589 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
20590
20591 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
20592 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
20593 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
20594 New backward-compatibility aliases for renamed faces.
20595 (idlwave-shell-disabled-breakpoint-face)
20596 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
20597
20598 * progmodes/flymake.el (flymake-errline, flymake-warnline):
20599 Remove "-face" suffix from face names.
20600 (flymake-errline-face, flymake-warnline-face):
20601 New backward-compatibility aliases for renamed faces.
20602 (flymake-highlight-line): Use renamed flymake faces.
20603
20604 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
20605 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
20606 (ebrowse-member-class, ebrowse-progress):
20607 Remove "-face" suffix from face names.
20608 (ebrowse-tree-mark-face, ebrowse-root-class-face)
20609 (ebrowse-file-name-face, ebrowse-default-face)
20610 (ebrowse-member-attribute-face, ebrowse-member-class-face)
20611 (ebrowse-progress-face):
20612 New backward-compatibility aliases for renamed faces.
20613 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
20614 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
20615 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
20616 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
20617
20618 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
20619 antlr-syntax)
20620 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
20621 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
20622 names.
20623 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
20624 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
20625 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
20626 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
20627 backward-compatibility aliases for renamed faces.
20628 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
20629 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
20630 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
20631 remove "font-lock-". Use renamed antlr-mode faces.
20632 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
20633 literal face-names with face variable references.
20634
20635 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
20636 face name.
20637 (Buffer-menu-buffer-face): New backward-compatibility alias for
20638 renamed face.
20639 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
20640
20641 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
20642
20643 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
20644 Eliminate "-face" suffix.
20645 (makefile-targets): Inherit from font-lock-function-name-face and
20646 eliminate "-face" suffix.
20647 (makefile-shell): Remove attributes and eliminate "-face" suffix.
20648 (makefile-*-font-lock-keywords): Append makefile-targets in rule
20649 actions, instead of prepending, to make it less visible.
20650 (makefile-previous-dependency, makefile-match-dependency):
20651 Don't match a target on a continuation line.
20652
20653 * files.el (auto-mode-alist): Put Makefile in gmake mode.
20654
20655 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
20656
20657 * progmodes/gdb-ui.el (menu): Re-order menu items.
20658 (gdb-tooltip-print): Respect tooltip-use-echo-area.
20659
20660 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
20661 Define in tooltip.el.
20662 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
20663 (gud-tooltip-tips): Respect tooltip-use-echo-area and
20664 gud-tooltip-echo-area.
20665
20666 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
20667 backward compatibility and make obsolete.
20668 (tooltip-help-tips): Use tooltip-use-echo-area.
20669 (tooltip-show-help-function): Rename to...
20670 (tooltip-show-help): ...this, because it is a function.
20671 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
20672
20673 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
20674
20675 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
20676 (edebug-print-length, edebug-print-level, edebug-print-circle)
20677 (edebug-modify-breakpoint, edebug-eval-last-sexp)
20678 (edebug-eval-print-last-sexp): Doc fixes.
20679
20680 2005-06-14 Kim F. Storm <storm@cua.dk>
20681
20682 * ido.el (ido-mode): Make a new keymap every time we enable ido,
20683 as the coverage buffer/file/both may change.
20684
20685 2005-06-14 Lute Kamstra <lute@gnu.org>
20686
20687 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
20688 and run-mode-hooks. Simplify.
20689
20690 * mail/rmailedit.el (rmail-edit-mode):
20691 * progmodes/octave-inf.el (inferior-octave-mode):
20692 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
20693
20694 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
20695 and run-mode-hooks.
20696 (recentf-edit-list, recentf-open-files): Don't call
20697 kill-all-local-variables directly.
20698
20699 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
20700
20701 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
20702
20703 * emacs-lisp/byte-run.el (make-obsolete)
20704 (define-obsolete-function-alias): Rename arguments FUNCTION and
20705 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
20706 (make-obsolete-variable, define-obsolete-variable-alias):
20707 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
20708 respectively.
20709
20710 * isearchb.el (isearchb-activate):
20711 * pcvs.el (cvs-mode):
20712 * ses.el (ses-load):
20713 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
20714 * net/tramp.el (tramp-find-file-exists-command)
20715 (tramp-find-shell):
20716 * progmodes/ada-mode.el (ada-create-case-exception)
20717 (ada-create-case-exception-substring, ada-make-subprogram-body):
20718 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
20719 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
20720 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
20721 * textmodes/org.el (org-promote, org-evaluate-time-range)
20722 (org-agenda-next-date-line, org-agenda-previous-date-line)
20723 (org-agenda-error, org-open-at-point, org-table-move-row)
20724 (org-format-table-table-html-using-table-generate-source)
20725 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
20726 * textmodes/reftex.el (reftex-access-scan-info):
20727 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
20728 (reftex-toc-promote-prepare): Follow error conventions.
20729
20730 * diff-mode.el (diff-mode): Fix typo in docstring.
20731
20732 * forms.el (forms--intuit-from-file): Fix reference to
20733 `forms-number-of-fields' in error message.
20734 (forms-print): Fix quoting in error message.
20735
20736 * forms.el (forms-mode):
20737 * emulation/vi.el (vi-goto-insert-state):
20738 * progmodes/flymake.el (flymake-new-err-info)
20739 (flymake-start-syntax-check-for-current-buffer)
20740 (flymake-simple-cleanup):
20741 * eshell/esh-var.el (eshell/export):
20742 * progmodes/gud.el (xdb):
20743 * textmodes/flyspell.el (flyspell-incorrect-hook)
20744 (flyspell-maybe-correct-transposition)
20745 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
20746
20747 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
20748
20749 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
20750 minibuffer prompt.
20751
20752 2005-06-13 Kim F. Storm <storm@cua.dk>
20753
20754 * subr.el (add-to-ordered-list): New defun.
20755
20756 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
20757 add cua--keymap-alist to emulation-mode-map-alists.
20758
20759 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
20760
20761 * subr.el (complete-in-turn): New macro.
20762 (dynamic-completion-table, lazy-completion-table): Add debug info.
20763
20764 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
20765 in preference to face aliases.
20766
20767 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
20768 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
20769 Remove unused vars `start' and `firstline'.
20770 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
20771 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
20772
20773 2005-06-13 Eli Zaretskii <eliz@gnu.org>
20774
20775 * cus-start.el (all): Don't complain about missing GTK-related
20776 variables, unless either `gtk' is boundp or this isn't a
20777 `windows-nt' build.
20778
20779 2005-06-13 Lute Kamstra <lute@gnu.org>
20780
20781 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
20782 run-mode-hooks.
20783
20784 * ediff-mult.el (ediff-meta-mode):
20785 * ediff-util.el (ediff-mode): Use run-mode-hooks.
20786
20787 * ledit.el (ledit-mode): Use delay-mode-hooks.
20788
20789 * woman.el (woman-mode-line-format): Delete constant.
20790 (woman-mode-map): Initialize it properly.
20791 (woman-mode): Set mode-class property to special.
20792 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
20793 Set major-mode and mode-name. Don't set mode-line-format directly.
20794 (Man-getpage-in-background): Don't reference woman-mode-line-format.
20795
20796 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
20797 string argument obsolete.
20798
20799 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
20800
20801 * textmodes/org.el (org-CUA-compatible): New option.
20802 (org-disputed-keys): New variable.
20803 (org-key): New function.
20804 (orgtbl-make-binding): Add docstring to the created function.
20805 (org-mode): Set paragraph start/separate regexps.
20806 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
20807 (org-archive-location, org-archive-mark-done)
20808 (org-archive-stamp-time): New options.
20809 (org-archive-subtree): New command.
20810 (org-fill-paragraph): New function.
20811 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
20812 (org-fake-empty-table-line): Function removed.
20813 (org-format-org-table-html): Do not create empty table lines at
20814 separator lines. Improved table header treatment.
20815 (org-link-format): New option.
20816 (org-make-link): New function.
20817 (org-insert-link, org-store-link): Use org-make-link.
20818 (org-open-file): Quote file name for shell command, to allow
20819 spaces in file names.
20820 (org-link-regexp): Fix bug with mailto link.
20821 (org-link-maybe-angles-regexp, org-protected-link-regexp):
20822 New constants.
20823 (org-export-as-html): Deal with the optional angles around a link.
20824 Better treatment of file: links.
20825 (org-open-at-point): Replace @{ and @} with < and >.
20826 (org-run-mode-hooks): Function removed.
20827 (org-agenda-mode): No longer use `org-run-mode-hooks'.
20828
20829 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
20830
20831 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
20832 MI command -data-list-register-values.
20833 (gdb-post-prompt): Indent properly.
20834
20835 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
20836
20837 * hilit-chg.el (highlight-changes-colors): Rename from
20838 `highlight-changes-colours'.
20839 (highlight-changes-colours): Keep as obsolete alias.
20840 (highlight-changes-face-list): Doc fix.
20841 (hilit-chg-make-list): Use `highlight-changes-colors'.
20842
20843 2005-06-12 Mark A. Hershberger <mah@everybody.org>
20844
20845 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
20846 defun-prompt-regexp.
20847
20848 2005-06-12 Eli Zaretskii <eliz@gnu.org>
20849
20850 * loadup.el: Don't say we are dumping under 2 names on windows-nt
20851 and cygwin.
20852
20853 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
20854 Don't use an old loaddefs.el, as in Makefile.in.
20855
20856 2005-06-12 Lute Kamstra <lute@gnu.org>
20857
20858 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
20859
20860 * man.el (Man-mode-map): Initialize it properly.
20861 (Man-mode): Set mode-class property to special.
20862
20863 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
20864
20865 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
20866
20867 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
20868 A newline is needed in the docstring there.
20869
20870 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
20871 Doc fixes.
20872
20873 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20874
20875 * printing.el: Doc fix. The menubar is no more changed when printing
20876 is loaded, it only changes when pr-menu-bind or pr-update-menus is
20877 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
20878 (pr-version): New version number (6.8.4).
20879 (pr-menu-bind): New command.
20880 (pr-update-menus): Docstring and code fix.
20881 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
20882 Docstring fix.
20883 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
20884 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
20885
20886 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
20887
20888 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
20889 "Returns" to "return", document useful return values, etc.
20890
20891 2005-06-11 Alan Mackenzie <acm@muc.de>
20892
20893 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
20894 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
20895 (adaptive-file-function): Minor amendment to doc-string.
20896
20897 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
20898
20899 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
20900 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
20901 Fix :type--it is `integer', not `string'.
20902
20903 * faces.el (modeline-highlight): Rename from (the erroneous)
20904 `modeline-higilight'.
20905
20906 2005-06-11 Lute Kamstra <lute@gnu.org>
20907
20908 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
20909 lisp-interaction-mode-map but make it the parent.
20910 (edebug-eval-mode): Use define-derived-mode.
20911
20912 2005-06-11 Andreas Schwab <schwab@suse.de>
20913
20914 * bindings.el: Add binding of `ESC functionkey' for every
20915 `M-functionkey'.
20916 * hexl.el (hexl-mode-map): Likewise.
20917
20918 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
20919
20920 * progmodes/compile.el (compilation-error-regexp-alist-alist)
20921 [msft]: update regexp for newer msft compilers.
20922
20923 2005-06-10 Mark A. Hershberger <mah@everybody.org>
20924
20925 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
20926 ATTLIST portions of included DTDs.
20927 (xml-parse-dtd): Eliminate use of inefficient match-data.
20928
20929 2005-06-10 Miles Bader <miles@gnu.org>
20930
20931 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
20932 (mpuz-text): Remove "-face" suffix from face names.
20933 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
20934 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
20935 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
20936
20937 * play/gomoku.el (gomoku-O, gomoku-X):
20938 Remove "-face" suffix from face names.
20939 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
20940 New backward-compatibility aliases for renamed faces.
20941 (gomoku-font-lock-keywords): Use renamed gomoku faces.
20942
20943 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
20944
20945 * thumbs.el: Fixes for changes of 2005-06-09.
20946 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
20947 as a directory.
20948 (thumbs-thumbname): Remove directory separator from format string;
20949 `thumbs-thumbsdir' now returns a valid directory name.
20950 (thumbs-temp-dir): New defsubst.
20951 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
20952 Use it.
20953
20954 * cus-edit.el (minibuffer):
20955 * files.el (make-backup-file-name-function):
20956 * filesets.el (filesets-external-viewers):
20957 * hilit-chg.el (highlight-changes-colours)
20958 (highlight-changes-face-list, highlight-changes-rotate-faces):
20959 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
20960 * kmacro.el (kmacro-call-macro):
20961 * log-edit.el (log-edit-changelog-full-paragraphs):
20962 * mouse.el (mouse-1-click-follows-link):
20963 * skeleton.el (skeleton-autowrap):
20964 * subr.el (insert-for-yank-1):
20965 * tempo.el (tempo-insert-region):
20966 * terminal.el (terminal-emulator):
20967 * time.el (display-time-mail-face):
20968 * vc.el (vc-annotate):
20969 * vcursor.el (vcursor-copy-line):
20970 * woman.el (woman-bold-headings, woman-ignore)
20971 (woman-default-faces, woman-monochrome-faces):
20972 * calendar/todo-mode.el (todo-insert-threshold):
20973 * emulation/pc-select.el (pc-select-selection-keys-only)
20974 (pc-selection-mode):
20975 * emulation/vip.el (vip-find-char-forward):
20976 * emulation/viper-cmd.el (viper-find-char-forward):
20977 * international/mule-cmds.el
20978 (select-safe-coding-system-accept-default-p)
20979 (input-method-exit-on-invalid-key):
20980 * international/mule-diag.el (describe-coding-system):
20981 * international/ucs-tables.el (unify-8859-on-encoding-mode):
20982 * net/browse-url.el (browse-url-xterm-program):
20983 * obsolete/lazy-lock.el (lazy-lock-mode):
20984 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
20985 (cperl-mode):
20986 * progmodes/cpp.el (cpp-face-light-name-list)
20987 (cpp-face-dark-name-list):
20988 * progmodes/delphi.el (delphi-newline-always-indents):
20989 Fix spellings in docstrings.
20990
20991 * ido.el (ido-mode, ido-file-extensions-order)
20992 (ido-default-file-method, ido-default-buffer-method)
20993 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
20994 (ido-decorations, ido-read-file-name-as-directory-commands)
20995 (ido-read-file-name-non-ido, ido-work-directory-list)
20996 (ido-ignore-item-temp-list, ido-current-directory)
20997 (ido-magic-forward-char, ido-enter-find-file)
20998 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
20999 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
21000
21001 2005-06-10 Lute Kamstra <lute@gnu.org>
21002
21003 * play/dunnet.el (dun-mode): Use define-derived-mode.
21004 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
21005 obsolete alias.
21006
21007 * play/doctor.el (doctor-mode-map): Remove defvar.
21008 (doctor-mode): Use define-derived-mode.
21009
21010 * mail/mspools.el (mspools-mode):
21011 * net/eudc-hotlist.el (eudc-hotlist-mode):
21012 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
21013
21014 2005-06-10 Miles Bader <miles@gnu.org>
21015
21016 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
21017 Remove "-face" suffix from face names.
21018 (flyspell-incorrect-face, flyspell-duplicate-face):
21019 New backward-compatibility aliases for renamed faces.
21020 (flyspell-mode-on, make-flyspell-overlay)
21021 (flyspell-highlight-incorrect-region)
21022 (flyspell-highlight-duplicate-region)
21023 (flyspell-display-next-corrections)
21024 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
21025
21026 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
21027 from face name.
21028 (texinfo-heading-face): New backward-compatibility alias for
21029 renamed face.
21030 (texinfo-heading-face): Use renamed texinfo-heading face.
21031
21032 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
21033 suffix from face names.
21034 (tex-math-face, tex-verbatim-face):
21035 New backward-compatibility aliases for renamed faces.
21036 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
21037 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
21038 literal face name.
21039
21040 * textmodes/table.el (table-cell): Remove "-face" suffix from face
21041 name.
21042 (table-cell-face): New backward-compatibility alias for renamed face.
21043 (table--put-cell-face-property, table--update-cell-face):
21044 Use renamed table-cell face.
21045
21046 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
21047 from face name.
21048 (sgml-namespace-face): New backward-compatibility alias for
21049 renamed face.
21050 (sgml-namespace-face): Use renamed sgml-namespace face.
21051
21052 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
21053 (org-level-4, org-level-5, org-level-6, org-level-7)
21054 (org-level-8, org-warning, org-headline-done)
21055 (org-deadline-announce, org-scheduled-today)
21056 (org-scheduled-previously, org-link, org-done, org-table)
21057 (org-time-grid): Remove "-face" suffix from face names.
21058 (org-level-1-face, org-level-2-face, org-level-3-face)
21059 (org-level-4-face, org-level-5-face, org-level-6-face)
21060 (org-level-7-face, org-level-8-face, org-warning-face)
21061 (org-headline-done-face, org-deadline-announce-face)
21062 (org-scheduled-today-face, org-scheduled-previously-face)
21063 (org-link-face, org-done-face, org-table-face)
21064 (org-time-grid-face):
21065 New backward-compatibility aliases for renamed faces.
21066 (org-level-faces, org-set-font-lock-defaults, org-timeline)
21067 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
21068 (org-agenda-get-timestamps, org-agenda-get-scheduled)
21069 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
21070
21071 * emulation/viper-init.el (viper-search, viper-replace-overlay)
21072 (viper-minibuffer-emacs, viper-minibuffer-insert)
21073 (viper-minibuffer-vi): Remove "-face" suffix from face names.
21074 (viper-search-face, viper-replace-overlay-face)
21075 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
21076 (viper-minibuffer-vi-face):
21077 New backward-compatibility aliases for renamed faces.
21078 (viper-search-face, viper-replace-overlay-face)
21079 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
21080 (viper-minibuffer-vi-face): Use renamed viper faces.
21081
21082 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
21083 Remove "-face" suffix from face names.
21084 (testcover-nohits-face, testcover-1value-face):
21085 New backward-compatibility aliases for renamed faces.
21086 (testcover-mark): Use renamed testcover faces.
21087
21088 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
21089 face name.
21090 (diary-button-face): New backward-compatibility alias for renamed face.
21091 (diary-entry): Use renamed diary-button face.
21092
21093 * calendar/calendar.el (diary, calendar-today, holiday)
21094 (mark-visible-calendar-date): Remove "-face" suffix from face names.
21095 (diary-face, calendar-today-face, holiday-face):
21096 New backward-compatibility aliases for renamed faces.
21097 (eval-after-load "facemenu", diary-entry-marker)
21098 (calendar-today-marker, calendar-holiday-marker, diary-face):
21099 Use renamed calendar faces.
21100
21101 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
21102 (compare-windows-face): New backward-compatibility alias for
21103 renamed face.
21104 (compare-windows-highlight): Use renamed compare-windows face.
21105
21106 * strokes.el (strokes-char): Remove "-face" suffix from face name.
21107 (strokes-char-face): New backward-compatibility alias for renamed face.
21108 (strokes-encode-buffer): Use renamed strokes-char face.
21109
21110 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
21111 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
21112 Remove "-face" suffix from face names.
21113 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
21114 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
21115 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
21116 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
21117 Use renamed pcvs faces.
21118 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
21119 * pcvs-defs.el (cvs-mode-map): Likewise.
21120 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
21121
21122 * info.el (info-title-1, info-title-2, info-title-3)
21123 (info-title-4): Remove "-face" suffix from and downcase face names.
21124 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
21125 (Info-title-4-face):
21126 New backward-compatibility aliases for renamed faces.
21127 (Info-fontify-node): Use renamed info faces.
21128
21129 * hilit-chg.el (highlight-changes, highlight-changes-delete):
21130 Remove "-face" suffix from face names.
21131 (highlight-changes-face, highlight-changes-delete-face):
21132 New backward-compatibility aliases for renamed faces.
21133 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
21134 (hilit-chg-make-list): Use renamed highlight-changes faces.
21135
21136 * generic-x.el (show-tabs-tab, show-tabs-space):
21137 Remove "-face" suffix from face names.
21138 (show-tabs-tab-face, show-tabs-space-face):
21139 New backward-compatibility aliases for renamed faces.
21140 (show-tabs-generic-mode-font-lock-defaults-1)
21141 (show-tabs-generic-mode-font-lock-defaults-2):
21142 Use renamed show-tabs faces.
21143
21144 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
21145 (smerge-markers): Remove "-face" suffix from face names.
21146 (smerge-mine-face, smerge-other-face, smerge-base-face)
21147 (smerge-markers-face):
21148 New backward-compatibility aliases for renamed faces.
21149 (smerge-mine-face, smerge-other-face, smerge-base-face)
21150 (smerge-markers-face): Use renamed smerge faces.
21151
21152 * log-view.el (log-view-file, log-view-message): Remove "-face"
21153 suffix from face names.
21154 (log-view-file-face, log-view-message-face):
21155 New backward-compatibility aliases for renamed faces.
21156 (log-view-file-face, log-view-message-face): Use renamed log-view
21157 faces.
21158
21159 * paren.el (show-paren-match, show-paren-mismatch):
21160 Remove "-face" suffix from face names.
21161 (show-paren-match-face, show-paren-mismatch-face):
21162 New backward-compatibility aliases for renamed faces.
21163 (show-paren-function): Use renamed show-paren faces.
21164
21165 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
21166 (ruler-mode-margins, ruler-mode-fringes)
21167 (ruler-mode-column-number, ruler-mode-fill-column)
21168 (ruler-mode-comment-column, ruler-mode-goal-column)
21169 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
21170 suffix from face names.
21171 (ruler-mode-default-face, ruler-mode-pad-face)
21172 (ruler-mode-margins-face, ruler-mode-fringes-face)
21173 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
21174 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
21175 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
21176 New backward-compatibility aliases for renamed faces.
21177 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
21178 (ruler-mode-column-number, ruler-mode-fill-column)
21179 (ruler-mode-comment-column, ruler-mode-goal-column)
21180 (ruler-mode-tab-stop, ruler-mode-current-column)
21181 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
21182 faces.
21183
21184 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
21185 face name.
21186 (whitespace-highlight-the-space): Use renamed face.
21187 (whitespace-highlight-face): New backward-compatibility alias for
21188 renamed face.
21189
21190 * woman.el (woman-italic, woman-bold, woman-unknown)
21191 (woman-addition, woman-symbol-face):
21192 Remove "-face" suffix from face names.
21193 (woman-italic-face, woman-bold-face, woman-unknown-face)
21194 (woman-addition-face):
21195 New backward-compatibility aliases for renamed faces.
21196 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
21197 (woman-decode-region, woman-replace-match)
21198 (woman-display-extended-fonts, woman-special-characters)
21199 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
21200 Use renamed woman faces.
21201
21202 * longlines.el (longlines-visible-face): Face removed.
21203
21204 * diff-mode.el (diff-header, diff-file-header, diff-index)
21205 (diff-hunk-header, diff-removed, diff-added, diff-changed)
21206 (diff-function, diff-context, diff-nonexistent): Remove "-face"
21207 suffix from face names.
21208 (diff-header-face, diff-file-header-face, diff-index-face)
21209 (diff-hunk-header-face, diff-removed-face, diff-added-face)
21210 (diff-changed-face, diff-function-face, diff-context-face)
21211 (diff-nonexistent-face): New backward-compatibility aliases for
21212 renamed faces.
21213 (diff-header-face, diff-file-header-face)
21214 (diff-index, diff-index-face, diff-hunk-header)
21215 (diff-hunk-header-face, diff-removed, diff-removed-face)
21216 (diff-added, diff-added-face, diff-changed-face, diff-function)
21217 (diff-function-face, diff-context-face, diff-nonexistent)
21218 (diff-nonexistent-face): Use renamed diff-mode faces.
21219
21220 * progmodes/compile.el (compilation-warning-face)
21221 (compilation-info-face): Remove "-face" suffix from face names.
21222 (compilation-warning-face, compilation-info-face):
21223 New backward-compatibility aliases for renamed faces.
21224 (compilation-warning-face, compilation-info-face):
21225 Use renamed compilation faces.
21226
21227 * add-log.el (change-log-date, change-log-name)
21228 (change-log-email, change-log-file, change-log-list)
21229 (change-log-conditionals, change-log-function)
21230 (change-log-acknowledgement): Remove "-face" suffix from face names.
21231 (change-log-date-face, change-log-name-face)
21232 (change-log-email-face, change-log-file-face)
21233 (change-log-list-face, change-log-conditionals-face)
21234 (change-log-function-face, change-log-acknowledgement-face):
21235 New backward-compatibility aliases for renamed faces.
21236 (change-log-font-lock-keywords): Use renamed change-log faces.
21237
21238 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
21239 (custom-set, custom-changed, custom-saved, custom-button)
21240 (custom-button-pressed, custom-documentation, custom-state)
21241 (custom-comment, custom-comment-tag, custom-variable-tag)
21242 (custom-variable-button, custom-face-tag, custom-group-tag-1)
21243 (custom-group-tag): Remove "-face" suffix from face names.
21244 (custom-magic-alist, custom-magic-value-create)
21245 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
21246 (custom-invalid-face, custom-rogue-face, custom-modified-face)
21247 (custom-set-face, custom-changed-face, custom-saved-face)
21248 (custom-button-face, custom-button-pressed-face)
21249 (custom-documentation-face, custom-state-face)
21250 (custom-comment-face, custom-comment-tag-face)
21251 (custom-variable-tag-face, custom-variable-button-face)
21252 (custom-face-tag-face, custom-group-tag-face-1)
21253 (custom-group-tag-face):
21254 New backward-compatibility aliases for renamed faces.
21255
21256 * wid-edit.el (widget-documentation, widget-button)
21257 (widget-field, widget-single-line-field, widget-inactive)
21258 (widget-button-pressed): "-face" suffix removed from face names.
21259 (widget-documentation-face, widget-button-face)
21260 (widget-field-face, widget-single-line-field-face)
21261 (widget-inactive-face, widget-button-pressed-face):
21262 New backward-compatibility aliases for renamed faces.
21263 (widget-documentation-face, widget-button-face)
21264 (widget-button-pressed-face, widget-specify-field)
21265 (widget-specify-inactive): Use renamed widget faces.
21266
21267 2005-06-10 Kenichi Handa <handa@m17n.org>
21268
21269 * term/x-win.el (x-clipboard-yank): Remove condition-case
21270 wrapping.
21271
21272 2005-06-11 Kenichi Handa <handa@m17n.org>
21273
21274 * add-log.el (change-log-font-lock-keywords): Make the regexp for
21275 date lines stricter.
21276
21277 2005-06-10 Zhang Wei <id.brep@gmail.com>
21278
21279 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
21280 of x-get-selection.
21281
21282 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
21283
21284 * comint.el (comint-mode, comint-snapshot-last-prompt):
21285 * frame.el (frame-current-scroll-bars):
21286 * term.el (term-mode, term-check-proc, term-input-sender)
21287 (term-simple-send, term-extract-string, term-word)
21288 (term-match-partial-filename):
21289 * window.el (window-current-scroll-bars):
21290 * emulation/cua-base.el (cua-normal-cursor-color)
21291 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
21292 (cua-global-mark-cursor-color):
21293 * mail/undigest.el (rmail-forward-separator-regex):
21294 Fix typos in docstrings.
21295
21296 * comint.el (comint-check-proc, make-comint-in-buffer)
21297 (comint-source-default): Doc fixes.
21298
21299 * term.el (term-send-string): Improve argument/docstring consistency.
21300
21301 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
21302
21303 * comint.el (comint-send-input): Bind `inhibit-read-only' around
21304 call to `delete-region'.
21305 (comint-mode-hook): Do not enable Font Lock by default.
21306
21307 2005-06-09 Lute Kamstra <lute@gnu.org>
21308
21309 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
21310 could be void.
21311
21312 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
21313
21314 * emacs-lisp/debug.el (debugger-will-be-back): New var.
21315 (debug): Use it.
21316 (debugger-step-through, debugger-continue, debugger-jump)
21317 (debugger-return-value): Set it when needed.
21318 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
21319 Use inhibit-read-only.
21320
21321 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
21322
21323 * window.el (shrink-window-if-larger-than-buffer)
21324 (window-size-fixed): Fix typo in docstring.
21325
21326 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
21327 thumbnails directory on loading.
21328 (thumbs-conversion-program): Use `eq' to check the system type,
21329 not `equal'.
21330 (thumbs-temp-dir): Initialize to `temporary-file-directory',
21331 not "/tmp". Fix docstring.
21332 (thumbs-thumbsdir): New function to return the thumbnails
21333 directory, creating it if needed.
21334 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
21335 (thumbs-temp-file): Delete variable and make it into a function.
21336 (thumbs-resize-image, thumbs-modify-image): Use it.
21337 (thumbs-kill-buffer): Simplify.
21338 (thumbs-gensym): Defalias or duplicate CL `gensym'.
21339 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
21340 docstrings.
21341
21342 2005-06-09 Kim F. Storm <storm@cua.dk>
21343
21344 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
21345 set-match-data to free markers in match-data.
21346
21347 * replace.el (replace-match-data): Pass RESEAT arg `t' to
21348 match-data to unchain markers in match-data.
21349
21350 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
21351
21352 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
21353 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
21354 unnecessary now.
21355
21356 2005-06-08 Richard M. Stallman <rms@gnu.org>
21357
21358 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
21359 give the variable a doc string that doesn't say don't set it directly.
21360
21361 * textmodes/ispell.el (ispell-check-version):
21362 Use match-string-no-properties.
21363 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
21364 (ispell-buffer-local-words): Likewise.
21365
21366 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
21367 except on terminals with enough colors to really display it.
21368 (makefile-dependency-regex): Delete spurious `bb'.
21369
21370 * faces.el (escape-glyph): Use blue once again in last case.
21371 (no-break-space): Redefine so that it isn't invisible on a tty.
21372
21373 2005-06-08 Kim F. Storm <storm@cua.dk>
21374
21375 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
21376 also when reading directory name.
21377
21378 2005-06-08 Lute Kamstra <lute@gnu.org>
21379
21380 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
21381 (flyspell-mode-line-string): Remove autoload cookie.
21382 (flyspell-mode): Remove defvar.
21383
21384 2005-06-07 Lute Kamstra <lute@gnu.org>
21385
21386 * textmodes/org.el (org-run-mode-hooks): New function.
21387 (org-agenda-mode): Use it.
21388
21389 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
21390
21391 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
21392
21393 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
21394
21395 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
21396
21397 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
21398
21399 * font-lock.el (font-lock-add-keywords): Doc fix.
21400
21401 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
21402
21403 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
21404 (tex-compile-default): In the absence of any history, use the order in
21405 tex-compile-alist to choose the preferred command.
21406 (tex-compile-commands): Reorder a bit.
21407
21408 * textmodes/flyspell.el (flyspell-auto-correct-binding)
21409 (flyspell-incorrect-face, flyspell-duplicate-face):
21410 Use (X)Emacs-agnostic code.
21411 (flyspell-mode-map): Don't overwrite at each load. Remove code
21412 redundant with the subsequent add-minor-mode. Merge Emacs and
21413 XEmacs code.
21414 (flyspell-word): Minor simplification.
21415 (flyspell-math-tex-command-p): Quieten the byte-compiler.
21416 (flyspell-external-point-words): Remove unused vars `size' and `start'.
21417 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
21418 Merge the corresponding Emacs code.
21419 (flyspell-correct-word, flyspell-xemacs-popup):
21420 Use flyspell-do-correct.
21421
21422 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
21423 a dedicated window.
21424
21425 * international/latexenc.el (latexenc-find-file-coding-system):
21426 Undo part of last patch, to turn off a compiler warning.
21427
21428 2005-06-06 Juri Linkov <juri@jurta.org>
21429
21430 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
21431 Rename `tmm-inactive-face' to `tmm-inactive'.
21432
21433 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
21434
21435 * iswitchb.el: Rename faces.
21436
21437 2005-06-06 Kim F. Storm <storm@cua.dk>
21438
21439 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
21440 (cua-global-mark): Remove -face suffix from face names.
21441
21442 * emulation/cua-gmrk.el (cua--init-global-mark):
21443 Remove cua-global-mark face setup.
21444
21445 2005-06-06 Richard M. Stallman <rms@gnu.org>
21446
21447 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
21448 just like other allowed characters.
21449 (makefile-match-dependency): Exclude leading and training whitespace
21450 from the range of regexp subexp 1.
21451 (makefile-macroassign-regex): Don't try to match the body,
21452 just the name of the macro being defined.
21453
21454 * info.el (Info-read-node-name-2): New function.
21455 (Info-read-node-name-1): Use that.
21456 Add a completion-base-size-function property.
21457
21458 * simple.el (completion-setup-function): Look for
21459 completion-base-size-function property of minibuffer-completion-table.
21460
21461 * files.el (locate-file-completion): Doc fix.
21462
21463 * printing.el: Don't call pr-update-menus; user must do that.
21464
21465 * emacs-lisp/debug.el (debugger-window): New variable.
21466 (debug): Use debugger-window if it is set and still alive.
21467 Record debugger-window for next entry.
21468
21469 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
21470
21471 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
21472
21473 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
21474 (hack-one-local-variable, hack-local-variables)
21475 (hack-local-variables-prop-line): Pass that arg.
21476
21477 2005-06-06 Kim F. Storm <storm@cua.dk>
21478
21479 * ido.el (ido-first-match, ido-only-match, ido-subdir)
21480 (ido-indicator): Remove -face suffix from face names.
21481
21482 2005-06-06 Juri Linkov <juri@jurta.org>
21483
21484 * font-lock.el (font-lock-regexp-backslash)
21485 (font-lock-regexp-backslash-construct): New faces.
21486 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
21487 after `('. Add `while-no-input' to control structures.
21488
21489 * faces.el (no-break-space, shadow): New faces.
21490 (escape-glyph): Use less loud colors pink2 and red4.
21491
21492 * diff-mode.el (diff-context-face)
21493 * dired.el (dired-ignored)
21494 * rfn-eshadow.el (file-name-shadow)
21495 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
21496
21497 * info.el (Info-title-1-face): Use green instead of yellow because
21498 bold yellow is not readable on light backgrounds.
21499
21500 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
21501 before selecting the desired mode to not spend time fontifying
21502 old contents.
21503
21504 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
21505
21506 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
21507 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
21508
21509 * ps-print.el (ps-default-fg, ps-default-bg):
21510 Fix typos in docstrings.
21511
21512 * isearchb.el (isearchb): Don't pass a spurious second argument to
21513 `iswitchb-completions'.
21514
21515 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
21516
21517 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
21518 to preserve point.
21519 (gdb-find-file-hook): Add doc string.
21520
21521 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
21522 C dereferenced pointer expression.
21523 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
21524
21525 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
21526
21527 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
21528 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
21529 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
21530 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
21531 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
21532 Make background transparent.
21533
21534 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
21535
21536 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
21537 (font-lock-remove-keywords): Doc fix.
21538 (font-lock-mode-major-mode): Compiler defvar.
21539 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
21540
21541 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
21542 (font-lock-mode): Update `font-lock-mode-major-mode'.
21543 (font-lock-set-defaults): Compiler defvar.
21544 (font-lock-default-function): Take `font-lock-mode-major-mode'
21545 into account.
21546
21547 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
21548 keep track of which major mode it enabled the minor mode for.
21549 Use find-file-hook again. Update docstring.
21550
21551 * simple.el (eval-expression-print-level)
21552 (eval-expression-print-length, eval-expression-debug-on-error):
21553 Doc fixes.
21554
21555 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
21556
21557 * iswitchb.el (iswitchb-single-match-face)
21558 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
21559 (iswitchb-invalid-regexp-face): New faces.
21560 (iswitchb-completions): Use them.
21561 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
21562 now marked as an obsolete alias.
21563 (iswitchb-read-buffer): Remove check for bound font variables.
21564 (iswitchb-invalid-regexp): New free variable.
21565 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
21566 set iswitchb-invalid-regexp.
21567 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
21568 invalid regexps.
21569 (iswitchb-completions): Add check for complete match when entering
21570 a regexp.
21571 (iswitchb-completions): Remove require-match argument.
21572 (iswitchb-exhibit): Fix caller.
21573 (iswitchb-common-match-inserted): New variable.
21574 (iswitchb-complete, iswitchb-completion-help): Use it.
21575
21576 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
21577
21578 * url-http.el (url-http-chunked-encoding-after-change-function):
21579 Use `url-http-debug' instead of `message'.
21580
21581 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
21582
21583 * url-http.el (url-http-parse-headers): Pass redirected URL as a
21584 callback argument.
21585
21586 2005-06-04 Kim F. Storm <storm@cua.dk>
21587
21588 * simple.el (line-move): Only call sit-for when moving backwards.
21589
21590 * ido.el (ido-make-merged-file-list-1): New defun split from
21591 ido-make-merged-file-list.
21592 (ido-make-merged-file-list): Bind throw-on-input around call to
21593 ido-make-merged-file-list-1. Return input-pending-p if
21594 interrupted by more input available.
21595 (ido-read-internal): Handle input-pending-p return value from
21596 ido-make-merged-file-list.
21597
21598 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
21599
21600 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
21601 compatibility code.
21602
21603 * international/latexenc.el (latexenc-find-file-coding-system):
21604 Don't inherit the EOL part of the coding-system from the
21605 tex-main buffer. Fit within 80 columns.
21606
21607 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
21608
21609 * tmm.el (tmm-inactive-face): New face.
21610 (tmm-remove-inactive-mouse-face): New function.
21611 (tmm-prompt, tmm-add-one-shortcut)
21612 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
21613 but not selectable.
21614
21615 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
21616
21617 * faces.el (face-equal): Improve argument/docstring consistency.
21618
21619 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
21620
21621 * progmodes/make-mode.el (makefile-targets-face)
21622 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
21623 (makefile-bsdmake-dependency-regex)
21624 (makefile-makepp-rule-action-regex)
21625 (makefile-bsdmake-rule-action-regex): New constants.
21626 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
21627
21628 * progmodes/compile.el (compilation-error-regexp-alist-alist):
21629 Allow (...) within `...' for makepp messages.
21630
21631 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
21632
21633 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
21634
21635 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
21636 "." files are deleted from all file lists before comparison.
21637
21638 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
21639 (viper-ESC-key): Made them customizable.
21640
21641 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
21642
21643 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
21644
21645 * autorevert.el (auto-revert-buffers): Use save-match-data.
21646
21647 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21648
21649 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
21650 menu items with a nil command binding.
21651
21652 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
21653
21654 * emacs-lisp/cl-macs.el (defsetf):
21655 Improve argument/docstring consistency.
21656
21657 * faces.el (list-faces-display): Improve the formatting by
21658 computing the maximum length required for any face-name (reworked
21659 patch of 1999-01-11, accidentally deleted on 1999-07-21).
21660 (internal-find-face): Remove redundant info in docstring.
21661
21662 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
21663
21664 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
21665 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
21666 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
21667 (gdb-assembler-custom): Improve regexps.
21668 (def-gdb-auto-update-handler): Use window point to preserve point.
21669
21670 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21671
21672 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
21673
21674 2005-05-31 Jay Belanger <belanger@truman.edu>
21675
21676 * calc/calc-embed.el (calc-embedded-word): Change argument passed
21677 to calc-embedded.
21678 (calc-embedded-make-info): Have plain prefix argument select
21679 entire line.
21680
21681 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
21682
21683 * faces.el (list-faces-display): Signal error if passed a regexp
21684 that matches no face name.
21685
21686 * simple.el (filter-buffer-substring): Fix typo in docstring.
21687
21688 2005-05-31 Richard M. Stallman <rms@gnu.org>
21689
21690 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
21691 (vhdl-emacs-21): Doc fix.
21692 (vhdl-mode): Unconditionally set comment-padding.
21693 (vhdl-fixup-whitespace-region): Insert spaces only where
21694 there are none.
21695 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
21696
21697 2005-05-30 John Wiegley <johnw@newartisans.com>
21698
21699 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
21700 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
21701 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
21702 `directory-sep-char' to ?/, and all uses of `string-to-int' to
21703 `string-to-number'.
21704
21705 2005-05-30 Jay Belanger <belanger@truman.edu>
21706
21707 * calc/calc.el (calc-bug-address): Fix docstring.
21708 (calc-window-hook, calc-trail-window-hook): New variables.
21709 (calc-trail-display): Restore use of calc-trail-window-hook.
21710 (calc): Restore use of calc-window-hook.
21711
21712 2005-05-31 Masatake YAMATO <jet@gyve.org>
21713
21714 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
21715
21716 * help-fns.el (help-C-file-name): Add autoload mark for
21717 `find-function-noselect'.
21718
21719 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21720
21721 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
21722 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
21723
21724 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
21725
21726 * calendar/diary-lib.el (mark-included-diary-files): Only kill
21727 included diary buffer if it was not already being visited.
21728 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
21729
21730 * calendar/icalendar.el (top-level): Do not require appt.
21731
21732 * mail/supercite.el (sc-select-attribution): Only use a list
21733 element from sc-attrib-selection-list if it returns a string.
21734 Reported by Davide G. M. Salvetti <salve@debian.org>.
21735
21736 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
21737
21738 * thumbs.el (thumbs-thumbname): The resulting thumbname now
21739 includes a hash value to improve its uniqueness, and has a ".jpg"
21740 extension. Also, it is now a valid filename on all systems.
21741 (thumbs-make-thumb): Use `let', not `let*'.
21742 (thumbs-show-thumbs-list): Check for JPEG availability.
21743
21744 2005-05-30 Richard M. Stallman <rms@gnu.org>
21745
21746 * filesets.el (filesets-menu-ensure-use-cached):
21747 Prevent warning when emacs-version>= is undefined.
21748
21749 * printing.el (pr-interactive-n-up): Use string-to-number.
21750
21751 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
21752
21753 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
21754 Warn only when name to be defined is quoted.
21755
21756 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
21757
21758 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
21759 Make regexp more robust.
21760 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
21761 Force regeneration of disassembly.
21762
21763 2005-05-29 Jay Belanger <belanger@truman.edu>
21764
21765 * calc/calc.el (calc-user-invocation): Check if
21766 calc-invocation-macro is non-nil.
21767
21768 2005-05-29 Juri Linkov <juri@jurta.org>
21769
21770 * add-log.el (change-log-font-lock-keywords):
21771 Add `+' to e-mail regexp to accept mail address with keywords.
21772
21773 * man.el (Man-name-regexp): Add `:' to accept qualified names.
21774
21775 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
21776
21777 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
21778
21779 * ielm.el (inferior-emacs-lisp-mode): Ditto.
21780
21781 2005-05-29 Richard M. Stallman <rms@gnu.org>
21782
21783 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
21784 Undo the change that moves to end of the current word.
21785
21786 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
21787
21788 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
21789 Throw error when count <= 0 to ensure input is a number.
21790 (gdb-read-memory-custom): Pick up address from buffer.
21791 (gdb-memory-mode): Allow user to increment and decrement
21792 memory address from header line.
21793
21794 2005-05-29 Richard M. Stallman <rms@gnu.org>
21795
21796 * flyspell.el (flyspell-version): Function deleted.
21797 (flyspell-auto-correct-previous-hook): Doc fix.
21798
21799 * jit-lock.el (jit-lock-function, jit-lock-after-change):
21800 Do nothing if memory is full.
21801
21802 * font-lock.el (font-lock-fontify-syntactically-region):
21803 Pass t for GREEDY to looking-back.
21804
21805 * saveplace.el (save-place-alist-to-file): Write the file
21806 using write-region.
21807
21808 * subr.el (looking-back): New argument GREEDY.
21809
21810 * progmodes/compile.el (compilation-start): Set the mode
21811 before inserting the initial text.
21812
21813 * progmodes/which-func.el (which-func-update-1): Turn the mode
21814 off in case of error by setting which-func-mode.
21815
21816 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
21817
21818 * flyspell.el (flyspell-auto-correct-previous-word):
21819 Narrow down to what's on the screen, and recenter overlays
21820 at the end of the next word.
21821
21822 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
21823
21824 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
21825 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
21826 (flyspell-abbrev-p): Default to nil.
21827 (flyspell-use-global-abbrev-table-p): Doc fix.
21828 (flyspell-large-region): Allow nil as value.
21829 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
21830
21831 (mail-mode-flyspell-verify): More robust handling
21832 of `mail-header-separator'. More efficient signature detection.
21833 Allow for regexp metacharacters in message-header-separator.
21834 Adding `To' not to be checked in mail-mode-flyspell-verify.
21835
21836 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
21837 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
21838 Bind flyspell-auto-correct-binding.
21839 Bind C-. and C-, .
21840 (flyspell-mode-map): Likewise.
21841 (flyspell-mode): Doc fix.
21842 (flyspell-accept-buffer-local-defs): Preserve current buffer.
21843 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
21844 (flyspell-word-cache-result): New var, always local.
21845 (flyspell-check-pre-word-p): Doc fix.
21846 (flyspell-check-changed-word-p): Handle spc like newline.
21847 (flyspell-post-command-hook): Set flyspell-word-cache-result.
21848 (flyspell-word-search-backward, flyspell-word-search-forward):
21849 New functions.
21850 (flyspell-word): Return t if nothing to check.
21851 When parsing TeX code, check for after } or \.
21852 Use flyspell-word-search-backward to find previous word.
21853 Return nil if duplicated word.
21854 For word already checked, return same value as last time.
21855 Set flyspell-word-cache-result after checking.
21856 Don't clobber the return value.
21857 (flyspell-get-word): Major rewrite.
21858 (flyspell-external-point-words): New locals pword, pcount.
21859 Fix size used in progress message.
21860 Find the proper corresponding word in flyspell-large-region-buffer.
21861 (flyspell-region): Check for flyspell-large-region = nil.
21862 (flyspell-highlight-incorrect-region): Clean up overlays in region.
21863 (flyspell-auto-correct-word): Check that WORD is a cons.
21864 (flyspell-correct-word): Likewise.
21865
21866 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
21867
21868 * progmodes/make-mode.el (makefile-rule-action-regex)
21869 (makefile-macroassign-regex, makefile-makepp-mode)
21870 (makefile-bsdmake-mode): Continuation lines may be empty.
21871 Reported by Joshua Varner.
21872 (makefile-makepp-font-lock-keywords): Add $(stem).
21873
21874 2005-05-28 Karl Berry <karl@gnu.org>
21875
21876 * textmodes/tex-mode.el: Now that tex-send-command calls
21877 shell-quote-argument (2005-03-31 change), remove all calls to
21878 shell-quote-argument; they all end up invoking tex-send-command.
21879 The double quoting loses on filenames with non-safe characters,
21880 such as "@". Reported by Frederik Fouvry.
21881
21882 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
21883
21884 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
21885 about preserving point.
21886
21887 2005-05-27 Jay Belanger <belanger@truman.edu>
21888
21889 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
21890 Info-goto-node.
21891
21892 * calc/calc-embed.el (calc-embed-arg): New variable.
21893 (calc-do-embedded-activate, calc-embedded-activate-formula)
21894 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
21895 variable by new variable.
21896 (calc-embedded-make-info): Replace undeclared variable by new
21897 variable. When selecting region with positive prefix
21898 argument, use end of previous line instead of beginning of line.
21899
21900 * calc/calc-aent.el (calc-arg-values): Declare it.
21901
21902 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
21903 Declare them.
21904
21905 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
21906
21907 * calc/calc.el (calc-alg-map): Declare it.
21908
21909 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
21910
21911 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
21912
21913 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
21914 (gdb-registers-buffer, toggle-gdb-all-registers):
21915 Toggle display of floating point registers.
21916 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
21917
21918 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
21919 (toggle-gud-tooltip-dereference):
21920 Rename from gud-toggle-tooltip-dereference.
21921
21922 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
21923
21924 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
21925
21926 2005-05-27 Jay Belanger <belanger@truman.edu>
21927
21928 * calc/calc-prog.el (calc-kbd-report): Remove.
21929 (calc-kbd-query): Rewrite.
21930
21931 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
21932
21933 * image.el (image-library-alist): Move to image.c.
21934 (image-type-available-p): Doc fix.
21935
21936 2005-05-27 Lute Kamstra <lute@gnu.org>
21937
21938 * calc/calc.el (calc):
21939 * outline.el (outline-1, outline-2, outline-3, outline-4)
21940 (outline-5, outline-6, outline-7, outline-8):
21941 * textmodes/dns-mode.el (dns-mode):
21942 * textmodes/sgml-mode.el (sgml-namespace-face):
21943 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
21944 (tex-verbatim-face, tex-use-reftex):
21945 * textmodes/texinfo.el (texinfo-heading-face):
21946 Specify customization group.
21947
21948 * longlines.el: Don't require easy-mmode.
21949 (longlines-visible-face): Specify customization group.
21950
21951 2005-05-27 Kenichi Handa <handa@m17n.org>
21952
21953 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
21954 encoding table of windows-1251.
21955
21956 * international/ucs-tables.el (ucs-set-table-for-input):
21957 If translation-table-for-input of a coding system is a symbol, get
21958 its translation-table property.
21959
21960 * international/code-pages.el: Don't register a coding system into
21961 non-iso-charset-alist more than once.
21962 (cp-make-coding-system): Likewise.
21963
21964 2005-05-26 John Wiegley <johnw@newartisans.com>
21965
21966 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
21967 `eshell-resume-eval' is wrapped in a list, it indicates that the
21968 command was run asynchronously. In that case, unwrap the value
21969 before checking the delimiter value.
21970
21971 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
21972 character before a space at the end of a line is \, assume the space
21973 is part of the last argument rather than a final argument separator.
21974
21975 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
21976 is in use, and the target is `t' or `nil' (which are the most common
21977 values), don't assume that the symbol target is a buffer.
21978
21979 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
21980
21981 * calendar/calendar.el (calendar-mode-line-format):
21982 Use mode-line-highlight as mouse-face.
21983
21984 * time.el (display-time-string-forms, display-time-update):
21985 Use mode-line-highlight as mouse-face.
21986
21987 2005-05-26 Jay Belanger <belanger@truman.edu>
21988
21989 * calc/calc.el (calc-language-alist): Remove extra defvar.
21990
21991 2005-05-26 Lute Kamstra <lute@gnu.org>
21992
21993 * arc-mode.el (archive-mode):
21994 * bookmark.el (bookmark-read-annotation-mode)
21995 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
21996 * bs.el (bs-mode):
21997 * calc/calc-yank.el (calc-edit-mode):
21998 * calc/calc.el (calc-mode, calc-trail-mode):
21999 * calculator.el (calculator-mode):
22000 * chistory.el (command-history-mode):
22001 * comint.el:
22002 * cus-edit.el (custom-mode):
22003 * descr-text.el (describe-text-mode):
22004 * ebuff-menu.el (Electric-buffer-menu-mode):
22005 * ediff-util.el (ediff-mode):
22006 * emacs-lisp/re-builder.el (reb-mode):
22007 * emulation/vi.el (vi-mode-setup):
22008 * emulation/ws-mode.el (wordstar-mode):
22009 * eshell/esh-mode.el (eshell-mode):
22010 * forms.el (forms-mode):
22011 * help-mode.el (help-mode):
22012 * hexl.el (hexl-mode):
22013 * ibuffer.el (ibuffer-mode):
22014 * ielm.el (inferior-emacs-lisp-mode):
22015 * info.el (Info-mode, Info-edit-mode):
22016 * international/swedish.el:
22017 * ledit.el (ledit-from-lisp-mode):
22018 * locate.el (locate-mode):
22019 * mail/rmail.el (rmail-mode):
22020 * mail/rmailedit.el (rmail-edit-mode):
22021 * mail/rmailsum.el (rmail-summary-mode):
22022 * mail/supercite.el (sc-electric-mode):
22023 * net/eudc.el (eudc-mode):
22024 * net/quickurl.el (quickurl-list-mode):
22025 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
22026 * obsolete/ooutline.el (outline-mode):
22027 * obsolete/options.el (Edit-options-mode):
22028 * obsolete/rnews.el (news-mode):
22029 * obsolete/rnewspost.el (news-reply-mode):
22030 * play/5x5.el (5x5-mode):
22031 * play/decipher.el (decipher-mode, decipher-stats-mode):
22032 * play/gomoku.el (gomoku-mode):
22033 * play/snake.el (snake-mode):
22034 * play/solitaire.el (solitaire-mode):
22035 * play/tetris.el (tetris-mode):
22036 * progmodes/ada-mode.el (ada-mode):
22037 * progmodes/antlr-mode.el (antlr-mode):
22038 * progmodes/autoconf.el (autoconf-mode):
22039 * progmodes/dcl-mode.el (dcl-mode):
22040 * progmodes/delphi.el (delphi-mode):
22041 * progmodes/ebrowse.el (ebrowse-tree-mode)
22042 (ebrowse-electric-list-mode, ebrowse-member-mode)
22043 (ebrowse-electric-position-mode):
22044 * progmodes/f90.el (f90-mode):
22045 * progmodes/fortran.el (fortran-mode):
22046 * progmodes/icon.el (icon-mode):
22047 * progmodes/idlw-help.el (idlwave-help-mode):
22048 * progmodes/idlw-shell.el (idlwave-shell-mode):
22049 * progmodes/idlwave.el (idlwave-mode):
22050 * progmodes/inf-lisp.el (inferior-lisp-mode):
22051 * progmodes/m4-mode.el (m4-mode):
22052 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
22053 * progmodes/modula2.el (modula-2-mode):
22054 * progmodes/octave-inf.el (inferior-octave-mode):
22055 * progmodes/octave-mod.el (octave-mode):
22056 * progmodes/pascal.el (pascal-mode):
22057 * progmodes/sh-script.el (sh-mode):
22058 * progmodes/sql.el (sql-mode, sql-interactive-mode):
22059 * progmodes/vhdl-mode.el (vhdl-mode):
22060 * progmodes/xscheme.el (scheme-interaction-mode):
22061 * replace.el (occur-mode):
22062 * ses.el (ses-mode):
22063 * simple.el (completion-list-mode):
22064 * skeleton.el:
22065 * speedbar.el (speedbar-mode):
22066 * term.el (term-mode):
22067 * terminal.el (terminal-edit-mode):
22068 * textmodes/reftex-index.el (reftex-index-mode)
22069 (reftex-index-phrases-mode):
22070 * textmodes/reftex-sel.el (reftex-select-label-mode)
22071 (reftex-select-bib-mode):
22072 * textmodes/reftex-toc.el (reftex-toc-mode):
22073 * wdired.el (wdired-change-to-wdired-mode):
22074 * wid-browse.el (widget-browse-mode):
22075 Use run-mode-hooks.
22076
22077 * array.el (array-mode):
22078 * calendar/todo-mode.el (todo-mode):
22079 * man.el (Man-mode):
22080 * play/landmark.el (lm-mode):
22081 * play/mpuz.el (mpuz-mode):
22082 Use kill-all-local-variables and run-mode-hooks.
22083
22084 * subr.el (delay-mode-hooks): Specify indentation.
22085
22086 2005-05-26 Mark A. Hershberger <mah@everybody.org>
22087
22088 * xml.el (xml-substitute-special): Don't die for undefined xml
22089 entities.
22090
22091 2005-05-26 Jay Belanger <belanger@truman.edu>
22092
22093 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
22094 of nil.
22095
22096 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
22097
22098 * progmodes/gdb-ui.el (gdb-frame-address):
22099 Rename from gdb-current-address.
22100 (gdb-previous-frame-address): Rename from gdb-previous-address.
22101 (gdb-selected-frame): Rename from gdb-current-frame.
22102 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
22103 (gdb-frame-number): Rename from gdb-current-stack-level.
22104 (gdb-ann3): Match new mode-name for disassembly buffer.
22105 Extend initialization of variables.
22106 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
22107 (gdb-memory-mode): Use mouse-face in header line.
22108 (gdb-assembler-buffer-name): Call it disassembly and give frame
22109 in mode line.
22110 (gdb-source-spec-regexp, gdb-assembler-custom)
22111 (gdb-invalidate-assembler, gdb-frame-handler):
22112 Make robust to leading zeroes in address format.
22113
22114 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
22115
22116 * textmodes/org.el (org-mode): Use `define-derived-mode' to
22117 define `org-mode'.
22118 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
22119
22120 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
22121
22122 * log-edit.el (log-edit-changelog-entries): Distinguish between
22123 filenames like xfns.c and fns.c.
22124
22125 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
22126
22127 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
22128 point after reverting.
22129 (Buffer-menu-make-sort-button): Handle the case where
22130 `Buffer-menu-use-header-line' is nil.
22131
22132 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
22133
22134 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
22135 New funcs. In minibuffer-local-completion-map bind `]', `/'
22136 and `:' to them.
22137
22138 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
22139
22140 * startup.el (normal-top-level): Allow modification of load-path while
22141 we're iterating over it.
22142
22143 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
22144
22145 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
22146 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
22147 (thumbs-resize-interactive, thumbs-insert-image)
22148 (thumbs-insert-thumb, thumbs-dired-show-marked)
22149 (thumbs-find-image-at-point, thumbs-delete-images)
22150 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
22151 (thumbs-increment-image-size, thumbs-decrement-image-size):
22152 Fix typos in docstrings.
22153
22154 2005-05-24 Andre Spiegel <spiegel@gnu.org>
22155
22156 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
22157 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
22158 (cperl-mode): Use them.
22159
22160 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
22161
22162 * window.el (quit-window, shrink-window-if-larger-than-buffer):
22163 Doc fixes.
22164
22165 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
22166
22167 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
22168 Bind C-d to gdb-inferior-io-eof.
22169
22170 * dired.el (dired-dnd-popup-notice): Use message-box.
22171
22172 2005-05-23 Masatake YAMATO <jet@gyve.org>
22173
22174 * bindings.el (mode-line-major-mode-keymap):
22175 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
22176
22177 * faces.el (mode-line-highlight): New face.
22178
22179 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
22180 as mouse-face.
22181
22182 * bindings.el (top-level, help-echo, mode-line-modified)
22183 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
22184 as mouse-face.
22185
22186 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
22187
22188 * progmodes/cc-engine.el (c-guess-basic-syntax):
22189 Remove spurious call to `zerop'.
22190
22191 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
22192
22193 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
22194
22195 CC Mode update to 5.30.10:
22196
22197 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
22198 could go past the limit in decoration level 2, thereby causing
22199 errors during interactive fontification.
22200
22201 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
22202 the file is evaluated interactively.
22203
22204 * cc-engine.el (c-guess-basic-syntax): Handle operator
22205 declarations somewhat better in C++.
22206
22207 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
22208 make use of `run-mode-hooks' which has been added in Emacs 21.1.
22209 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
22210 (awk-mode): Use it.
22211 (make-local-hook): Suppress warning about obsoleteness.
22212
22213 * cc-engine.el, cc-align.el, cc-cmds.el
22214 (c-append-backslashes-forward, c-delete-backslashes-forward)
22215 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
22216 Compensate for return value from `forward-line' when it has moved
22217 but not to a different line due to eob.
22218
22219 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
22220 `objc-method-intro' and `objc-method-args-cont'.
22221
22222 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
22223
22224 CC Mode update to 5.30.10:
22225
22226 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
22227 in the copyright statement. Incidentally, change "along with GNU
22228 Emacs" to "along with this program" where it occurs.
22229
22230 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
22231 so that it is interactive, hence can be found by M-x awk-mode
22232 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
22233 <gmorris+emacs@ast.cam.ac.uk>.
22234
22235 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
22236 Mode's regexps.
22237
22238 2005-05-23 Kevin Ryde <user42@zip.com.au>
22239
22240 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
22241 c-parse-state, to avoid a lisp error (on bad code).
22242
22243 2005-05-23 Lute Kamstra <lute@gnu.org>
22244
22245 * subr.el (font-lock-defaults): Remove defvar as it's already
22246 defined in font-core.el.
22247
22248 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
22249
22250 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
22251
22252 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
22253 more general and work when GDB variable "print pretty" is on,
22254 as with Emacs, for example.
22255
22256 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
22257
22258 * font-core.el: Update comment.
22259
22260 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
22261 Use `after-change-major-mode-hook' instead of `find-file-hook'.
22262
22263 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
22264
22265 2005-05-22 Eli Zaretskii <eliz@gnu.org>
22266
22267 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
22268 and `yank-handler' in the doc strings.
22269
22270 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
22271
22272 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
22273
22274 2005-05-22 Richard M. Stallman <rms@gnu.org>
22275
22276 * help.el (describe-key): Move print-help-return-message call
22277 out of conditional.
22278
22279 * progmodes/etags.el (list-tags): Use with-no-warnings.
22280
22281 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
22282 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
22283 (starttls-extra-args, starttls-extra-arguments): Add defvars.
22284
22285 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
22286
22287 * language/viet-util.el (viet-viscii-nonascii-translation-table):
22288 Add defvar.
22289
22290 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
22291 Use defvar, not defconst.
22292
22293 * hexl.el (hexl-follow-line): Use with-no-warnings.
22294
22295 * emulation/tpu-extras.el: Use write-file-functions instead of
22296 write-file-hooks.
22297
22298 * dired.el (dired-font-lock-keywords): Fontify files with junk
22299 extensions even if marked by -F.
22300
22301 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
22302
22303 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
22304 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
22305 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
22306 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
22307 (concatenate, list-length, get*, getf, cl-remprop):
22308 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
22309 (etypecase, progv, lexical-let, lexical-let*)
22310 (multiple-value-bind, multiple-value-setq, shiftf):
22311 Improve argument/docstring consistency.
22312
22313 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
22314
22315 2005-05-22 Andre Spiegel <spiegel@gnu.org>
22316
22317 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
22318 doesn't exist.
22319
22320 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
22321 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
22322
22323 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
22324
22325 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
22326 already deleted variables: auto-fill-hook, blink-paren-hook,
22327 lisp-indent-hook, inhibit-local-variables, unread-command-event,
22328 suspend-hooks, comment-indent-hook, meta-flag,
22329 before-change-function, after-change-function,
22330 font-lock-doc-string-face.
22331
22332 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
22333
22334 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
22335
22336 2005-05-21 Eli Zaretskii <eliz@gnu.org>
22337
22338 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
22339 rmail-dont-reply-to.
22340
22341 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
22342
22343 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
22344 literal blank when splitting new-header-values.
22345
22346 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
22347
22348 * calendar/cal-menu.el (cal-menu-update): Add separator as a
22349 string so that tmm doesn't create a completion entry for it.
22350
22351 * textmodes/table.el (table-disable-menu): Ditto.
22352
22353 2005-05-21 Richard M. Stallman <rms@gnu.org>
22354
22355 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
22356
22357 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
22358
22359 * net/rcompile.el (remote-compile): Use compilation-start.
22360
22361 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
22362
22363 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
22364
22365 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
22366 Default to makefile-bsdmake-mode on BSD systems.
22367
22368 * imenu.el (imenu-generic-expression, imenu--generic-function'):
22369 REGEXP may also be a search function now. The part of doc-string
22370 for describing the structure was 95% identical to that of
22371 `imenu--generic-function'. Unify it there.
22372
22373 * progmodes/make-mode.el (makefile-imenu-generic-expression):
22374 Use function to find dependencies, because regexp alone is so complex,
22375 it easily goes into an endless loop.
22376 (makefile-makepp-mode): Also add submenu for Perl functions
22377 defined in the makefile.
22378 (makefile-bsdmake-mode): Special imenu-generic-expression no
22379 longer needed, due to function call.
22380 (makefile-match-dependency): Take BOUND into account when checking
22381 if we're through.
22382
22383 2005-05-20 Jay Belanger <belanger@truman.edu>
22384
22385 * calc/calc-units.el (calc-invalidate-units-table):
22386 Use inhibit-read-only.
22387 (math-build-units-table-buffer): Use view-mode.
22388
22389 2005-05-20 David Kastrup <dak@gnu.org>
22390
22391 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
22392 easy-menu-add is not a nop on Emacs; and clarify when to call it.
22393
22394 2005-05-20 Lute Kamstra <lute@gnu.org>
22395
22396 * diff-mode.el (diff-header-face, diff-file-header-face)
22397 (diff-index-face, diff-hunk-header-face, diff-removed-face)
22398 (diff-added-face, diff-changed-face, diff-function-face)
22399 (diff-context-face, diff-nonexistent-face): Put them in the
22400 diff-mode customization group.
22401
22402 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
22403
22404 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
22405
22406 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
22407
22408 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
22409 Minor regexp-optimization.
22410
22411 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
22412
22413 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
22414 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
22415 (org-agenda-add-time-grid-maybe): New function.
22416 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
22417 (org-table-create): `dotimes' instead of `mapcar'.
22418 (org-xor): Simplify implementation.
22419 (org-agenda): `inhibit-redisplay' turned on.
22420 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
22421 a consistent line after a state change.
22422 (org-agenda-remove-times-when-in-prefix): New option.
22423 (org-prefix-has-time): New variable.
22424 (org-parse-time-string): Optional argument NODEFAULT.
22425 (org-format-agenda-item): Parse items for time-of-day
22426 specifications and move these into the prefix if possible.
22427 (org-agenda-priority): Get current heading, not previous heading
22428 during agenda remote editing.
22429
22430 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
22431
22432 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
22433 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
22434 (remove-duplicates, delete-duplicates, substitute)
22435 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
22436 (nsubstitute-if-not, find, find-if, find-if-not, position)
22437 (position-if, position-if-not, count, count-if, count-if-not)
22438 (mismatch, search, sort*, stable-sort, merge, member*)
22439 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
22440 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
22441 (intersection, nintersection, set-difference, nset-difference)
22442 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
22443 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
22444 (nsublis, tree-equal): Improve argument/docstring consistency.
22445
22446 * subr.el (send-string, send-region): Remove obsolescence declaration.
22447 (window-dot, set-window-dot, read-input, show-buffer)
22448 (eval-current-buffer, string-to-int):
22449 Add release number to obsolescence declarations.
22450
22451 2005-05-19 Kim F. Storm <storm@cua.dk>
22452
22453 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
22454 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
22455
22456 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
22457
22458 * faces.el (list-faces-display): Make back button respect optional
22459 regexp arg.
22460
22461 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
22462
22463 * calculator.el (calculator-radix-grouping-mode)
22464 (calculator-radix-grouping-digits, calculator-displayer)
22465 (calculator-radix-grouping-separator, calculator-copy-displayer):
22466 * dabbrev.el (dabbrev-search-these-buffers-only):
22467 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
22468 (diff-advance-after-apply-hunk, diff-mode-hook)
22469 (diff-minor-mode-prefix):
22470 * imenu.el (imenu-use-popup-menu):
22471 * jit-lock.el (jit-lock-context-time):
22472 * newcomment.el (comment-fill-column, comment-column)
22473 (comment-style, comment-padding, comment-multi-line)
22474 (comment-empty-lines, comment-auto-fill-only-comments):
22475 * reveal.el (reveal-around-mark):
22476 * uniquify.el (uniquify-buffer-name-style)
22477 (uniquify-after-kill-buffer-p)
22478 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
22479 (uniquify-min-dir-content, uniquify-separator)
22480 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
22481 * w32-vars.el (w32-fixed-font-alist):
22482 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
22483 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
22484 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
22485 * progmodes/perl-mode.el (perl-indent-level)
22486 (perl-continued-statement-offset, perl-continued-brace-offset)
22487 (perl-brace-offset, perl-brace-imaginary-offset)
22488 (perl-label-offset, perl-indent-continued-arguments)
22489 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
22490 * progmodes/tcl.el (tcl-indent-level)
22491 (tcl-continued-indent-level, tcl-auto-newline)
22492 (tcl-tab-always-indent, tcl-electric-hash-style)
22493 (tcl-help-directory-list, tcl-use-smart-word-finder)
22494 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
22495 (inferior-tcl-source-command):
22496 * textmodes/fill.el (enable-kinsoku):
22497 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
22498 * textmodes/table.el (table-yank-handler):
22499 Specify missing group (and type, if simple) in defcustom.
22500
22501 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
22502
22503 * progmodes/compile.el (compilation-finish-function): Fix defvar.
22504
22505 2005-05-19 Richard M. Stallman <rms@gnu.org>
22506
22507 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
22508
22509 * subr.el (event-basic-type): Don't get an error.
22510 (left-fringe-p): Function deleted.
22511
22512 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
22513 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
22514
22515 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
22516 in recursive copy.
22517
22518 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
22519
22520 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
22521
22522 * emacs-lisp/bytecomp.el
22523 (byte-compile-file-form-custom-declare-variable):
22524 Call byte-compile-nogroup-warn if appropriate.
22525
22526 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
22527 (compilation-set-window): Don't call left-fringe-p; do it directly.
22528
22529 2005-05-19 Jay Belanger <belanger@truman.edu>
22530
22531 * calc/calc-graph.el (calc-graph-format-data): Make sure
22532 var-PlotRejects is bound before trying to check its value.
22533
22534 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
22535
22536 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
22537 definition of this variable from reftex-global.el to reftex.el,
22538 because it is needed in the menu.
22539
22540 2005-05-19 Lute Kamstra <lute@gnu.org>
22541
22542 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
22543 years are fixed. Don't insert a space after a dash.
22544
22545 2005-05-19 Kim F. Storm <storm@cua.dk>
22546
22547 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
22548
22549 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
22550
22551 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
22552 strings, because (eq ... ?\\) is fairly frequent.
22553
22554 * progmodes/make-mode.el (makefile-add-this-line-targets):
22555 Simplify and integrate into `makefile-pickup-targets'.
22556 (makefile-add-this-line-macro): Simplify and integrate into
22557 `makefile-pickup-macros.
22558 (makefile-pickup-filenames-as-targets): Simplify.
22559 (makefile-previous-dependency, makefile-match-dependency):
22560 Don't stumble over `::'.
22561
22562 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
22563
22564 * subr.el (post-command-idle-hook, post-command-idle-delay):
22565 Remove obsoletion of post-command-idle-hook and
22566 post-command-idle-delay.
22567
22568 * faces.el (list-faces-display): Provide button when describe-face
22569 is called to take user back to the list of faces.
22570
22571 * help-fns.el (describe-variable): Remove hyperlinks in a
22572 variable's value as these are quite frequently inappropriate.
22573
22574 * follow.el (follow-submit-feedback, follow-mode):
22575 Remove references to post-command-idle-hook.
22576
22577 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
22578
22579 * progmodes/make-mode.el (makefile-previous-dependency)
22580 (makefile-match-dependency): Check for := (and in bsd mode also
22581 !=) to give a better result, even when font-lock is not on.
22582
22583 2005-05-18 Jay Belanger <belanger@truman.edu>
22584
22585 * calc/calc-help.el (calc-s-prefix-help):
22586 Add `calc-copy-special-constant' to help string.
22587
22588 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
22589
22590 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
22591
22592 2005-05-18 Jay Belanger <belanger@truman.edu>
22593
22594 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
22595 in linear factors are in proper order.
22596
22597 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
22598
22599 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
22600 Support for jurabib.
22601
22602 * textmodes/reftex.el (featurep): Define aliases for overlay
22603 commands, for XEmacs compatibility, and use these aliases in
22604 overlay initializations.
22605 (reftex-highlight): Use `reftex-move-overlay'.
22606 (reftex-unhighlight): Use `reftex-delete-overlay'.
22607 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
22608 (reftex-access-search-path): Use `reftex-uniquify' instead of
22609 `reftex-uniq'
22610
22611 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
22612 `before-string' property modification enables for Emacs as well.
22613 (reftex-select-item): Use `reftex-delete-overlay'.
22614 (reftex-select-mark): Use `reftex-make-overlay' and
22615 `reftex-overlay-put'.
22616 (reftex-select-unmark): Use `reftex-delete-overlay' and
22617 `reftex-overlay-put'.
22618
22619 2005-05-18 Lute Kamstra <lute@gnu.org>
22620
22621 * emacs-lisp/lisp.el (check-parens): Fix docstring.
22622
22623 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
22624
22625 * add-log.el (add-change-log-entry):
22626 * array.el (array-make-template, array-reconfigure-rows)
22627 (array-init-max-row, array-init-max-column)
22628 (array-init-columns-per-line, array-init-field-width):
22629 * replace.el (replace-match-maybe-edit, perform-replace):
22630 * textmodes/spell.el (spell-region):
22631 Replace `read-input' by `read-string'.
22632
22633 * forms.el (forms-mode):
22634 * finder.el (finder-compile-keywords):
22635 * shadowfile.el (shadow-read-files):
22636 Replace `eval-current-buffer' by `eval-buffer'.
22637
22638 * terminal.el (te-pass-through):
22639 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
22640 (ange-ftp-raw-send-cmd):
22641 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
22642 (send-process-next-char, telnet-initial-filter, telnet):
22643 Replace `send-string' by `process-send-string'.
22644
22645 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
22646 (prolog-consult-region): Replace `send-string' by
22647 `process-send-string'; replace `send-region' by `process-send-region'.
22648
22649 * progmodes/delphi.el (delphi-log-msg):
22650 Replace `set-window-dot' by `set-window-point'.
22651
22652 * subr.el (window-dot, set-window-dot, read-input, send-string)
22653 (send-region, show-buffer, eval-current-buffer):
22654 Make really obsolete, as the comment says.
22655
22656 2005-05-17 Kim F. Storm <storm@cua.dk>
22657
22658 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
22659 (cua--init-keymaps): Bind C-return instead of S-return to set
22660 rectangle mark.
22661
22662 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
22663 instead of S-return to toggle/clear rectangle mark.
22664
22665 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
22666
22667 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
22668 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
22669 Also fontify plain strings assigned to variables, mostly so that a
22670 colon has a face and is thus not taken as a dependency separator.
22671 (makefile-previous-dependency): Inline the new matcher, because it
22672 is too complex to work in both directions.
22673 (makefile-match-dependency): Eliminate `backward' arg (see above).
22674 Completely reimplemented so as to not sometimes go into an endless
22675 loop. It should also be more efficient, because first it only
22676 searches for `:', instead of applying the very complex regexp.
22677 (makefile-mode): Cancel `font-lock-support-mode', because blocks
22678 to be fontified in one piece can be too long for JIT.
22679 Makefiles are never *that* big.
22680
22681 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
22682
22683 * dired.el (dired-mode): Simplify.
22684
22685 2005-05-17 Lute Kamstra <lute@gnu.org>
22686
22687 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
22688 defcustom for the mode hook variable.
22689
22690 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
22691 Emacs Lisp Reference Manual.
22692
22693 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
22694
22695 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
22696 (evenp, list*):
22697 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
22698 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
22699
22700 * net/tramp-smb.el (tramp-smb-open-connection):
22701 Pass `tramp-chunksize' as fifth (required) argument.
22702
22703 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
22704
22705 * font-lock.el (lisp-font-lock-keywords-1):
22706 Set `font-lock-negation-char-face' for [^...] char group.
22707 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
22708
22709 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
22710 a var, and refine it to mask one more level of nested vars.
22711 (makefile-rule-action-regex): Turn it into a var, and refine it so
22712 it recognizes backslashed continuation lines as belonging to the
22713 same command.
22714 (makefile-macroassign-regex): Refine it so it recognizes
22715 backslashed continuation lines as belonging to the same command.
22716 (makefile-var-use-regex): Don't look at the next char, because it
22717 might be the same one to be skipped by the initial [^$], leading
22718 to an overlooked variable use.
22719 (makefile-make-font-lock-keywords): Remove two parameters, which
22720 are now variables that some of the modes set locally.
22721 Handle dependency and rule action matching through functions, because
22722 regexps alone match too often. Dependency matching now comes
22723 last, so it can check, whether a colon already matched something else.
22724 (makefile-mode): Inform that font-lock improves makefile parsing
22725 capabilities.
22726 (makefile-match-dependency, makefile-match-action): New functions.
22727
22728 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
22729
22730 * emacs-lisp/cl-extra.el (equalp): Doc fix.
22731
22732 * align.el (align-regexp):
22733 * ansi-color.el (ansi-color-get-face):
22734 * array.el (array-reconfigure-rows, array-init-max-row)
22735 (array-init-max-column, array-init-columns-per-line)
22736 (array-init-field-width):
22737 * dired-aux.el (dired-trample-file-versions):
22738 * dired-x.el (dired-mark-sexp):
22739 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
22740 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
22741 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
22742 * faces.el (face-read-integer):
22743 * files.el (backup-extract-version, insert-directory):
22744 * hexl.el (hexl-insert-decimal-char):
22745 * server.el (server-process-filter):
22746 * shell.el (shell-extract-num):
22747 * startup.el (command-line-1):
22748 * term.el (term-command-hook):
22749 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
22750 (time-stamp-do-number):
22751 * time.el (display-time-update):
22752 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
22753 (timezone-fix-time):
22754 * vms-patch.el (vms-suspend-resume-hook):
22755 * calendar/appt.el (appt-convert-time):
22756 * calendar/cal-bahai.el (mark-bahai-diary-entries):
22757 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
22758 * calendar/cal-islam.el (mark-islamic-diary-entries):
22759 * calendar/calendar.el (calendar-cursor-to-date)
22760 (calendar-star-date):
22761 * calendar/diary-lib.el (diary-attrtype-convert)
22762 (mark-diary-entries, diary-entry-time):
22763 * calendar/solar.el (solar-get-number):
22764 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
22765 * emacs-lisp/re-builder.el (reb-display-subexp):
22766 * emulation/edt.el (edt-set-scroll-margins):
22767 * emulation/tpu-extras.el (tpu-set-scroll-margins):
22768 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
22769 (vip-get-ex-count):
22770 * emulation/viper-ex.el (viper-get-ex-token)
22771 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
22772 * international/fontset.el (fontset-plain-name):
22773 * mail/feedmail.el (feedmail-look-at-queue-directory):
22774 * mail/mailalias.el (mail-get-names):
22775 * mail/rmail.el (rmail-convert-to-babyl-format):
22776 * mail/rmailsum.el (rmail-make-basic-summary-line)
22777 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
22778 (rmail-summary-goto-msg):
22779 * mail/smtpmail.el (smtpmail-read-response):
22780 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
22781 (ange-ftp-vms-add-file-entry):
22782 * play/gametree.el (gametree-looking-at-ply)
22783 (gametree-current-branch-score):
22784 * progmodes/ada-xref.el (ada-prj-find-prj-file)
22785 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
22786 * progmodes/cperl-mode.el (condition-case):
22787 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
22788 (ebrowse-set-member-buffer-column-width)
22789 (ebrowse-select-1st-to-9nth):
22790 * progmodes/etags.el (etags-snarf-tag):
22791 * progmodes/flymake.el (flymake-parse-line):
22792 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
22793 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
22794 (idlwave-shell-menu-def):
22795 * progmodes/ps-mode.el (ps-run-goto-error):
22796 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
22797 (vhdl-speedbar-contract-level):
22798 * term/mac-win.el (x-handle-numeric-switch):
22799 * term/sun-mouse.el (sun-get-frame-data):
22800 * term/w32-win.el (x-handle-numeric-switch):
22801 * term/x-win.el (x-handle-numeric-switch):
22802 * textmodes/ispell.el (ispell-parse-output):
22803 * textmodes/nroff-mode.el (nroff-outline-level):
22804 * textmodes/reftex-cite.el (reftex-bib-sort-year)
22805 (reftex-bib-sort-year-reverse, reftex-format-citation):
22806 * textmodes/reftex-parse.el (reftex-init-section-numbers)
22807 (reftex-section-number):
22808 * textmodes/texinfmt.el (texinfo-paragraphindent):
22809 Replace `string-to-int' by `string-to-number'.
22810
22811 * international/latexenc.el: Add page marker to force the "Local
22812 Variables:" string out of the last page.
22813
22814 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
22815
22816 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
22817 tooltip-change-major-mode.
22818 (gud-tooltip-print-command): Remove case where gud-minor-mode
22819 is gdb ("--fullname").
22820 (gud-tooltip-tips): Turn GUD tooltips off for this case and
22821 explain to user.
22822
22823 2005-05-16 Jay Belanger <belanger@truman.edu>
22824
22825 * calc/calc-store.el (calc-copy-special-constant): New function.
22826
22827 * calc/calc-ext.el (calc-init-extensions): Add binding for
22828 `calc-copy-special-constant'.
22829
22830 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
22831 for the `calc-copy-special-constant' command.
22832
22833 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
22834
22835 * subr.el (left-fringe-p): New function.
22836
22837 * progmodes/compile.el (compilation-setup): Set local value of
22838 overlay-arrow-string to "" always.
22839 (compilation-set-window): Left fringe then don't scroll.
22840 No left fringe then no arrow and scroll message to top.
22841 (compilation-context-lines): Adjust doc string accordingly.
22842
22843 2005-05-16 Kim F. Storm <storm@cua.dk>
22844
22845 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
22846 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
22847 (ido-wide-find-dir-or-delete-dir): New command for M-d.
22848 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
22849 (ido-read-file-name): Handle commands with ido property value
22850 equal to find-file as reading a file name, to allow C-d to enter dired.
22851 (ibuffer-find-file): Add ido property with value find-file.
22852
22853 2005-05-15 Kim F. Storm <storm@cua.dk>
22854
22855 * subr.el (open-network-stream-nowait): Remove.
22856 (open-network-stream-server): Remove.
22857
22858 2005-05-15 Richard M. Stallman <rms@gnu.org>
22859
22860 * faces.el (describe-face): Output a definition link button.
22861
22862 * help-mode.el (help-face-def): New button type.
22863
22864 * emacs-lisp/copyright.el (copyright-fix-years):
22865 Match properly if the first year is 2-digit.
22866 Don't mess up the whitespace after the years by filling.
22867
22868 * dired-aux.el (dired-mark-confirm):
22869 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
22870
22871 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
22872 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
22873 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
22874
22875 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
22876 Set font-lock-comment-start-skip.
22877
22878 * font-lock.el (font-lock-comment-start-skip): New variable.
22879 (font-lock-comment-end-skip): New variable.
22880 (font-lock-fontify-syntactically-region): Use them if non-nil.
22881
22882 2005-05-15 Jay Belanger <belanger@truman.edu>
22883
22884 * calc/calc-store.el (calc-store-value): Return a string rather
22885 than display it as a message.
22886 Use calc-var-name for variable name.
22887 (calc-store-into): Add the result of calc-store-value to message.
22888 (calc-copy-variable): Add a message.
22889 (calc-store-exchange): Improve error messages.
22890 (calc-store-binary, calc-store-map): Don't reset the values of
22891 special constants.
22892
22893 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
22894
22895 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
22896 manual to docstring.
22897
22898 * files.el (hack-local-variables-confirm): Add STRING argument.
22899 Make the function handle non file visiting buffers correctly.
22900 (hack-local-variables-prop-line, hack-local-variables)
22901 (hack-one-local-variable): Use STRING arg of
22902 `hack-local-variables-confirm'.
22903
22904 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
22905
22906 Sync with Tramp 2.0.49.
22907
22908 * net/tramp.el (tramp-handle-dired-call-process)
22909 (tramp-handle-insert-directory):`insert-buffer' cannot be used
22910 because the contents of the Tramp buffer is changed before
22911 insertion (`expand-file' and alike).
22912 (tramp-handle-insert-directory): If `localname' has an empty
22913 nondirectory name, it must not be quoted.
22914 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
22915 variable `tramp-chunksize'. Change callees.
22916 (tramp-open-connection-setup-interactive-shell): Check remote host
22917 for buggy `send-process-string' implementation.
22918 Set `tramp-chunksize' if found. Reported by Michael Kifer
22919 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
22920 (tramp-handle-shell-command): `insert-buffer' cannot be used
22921 because the contents of the Tramp buffer is changed before
22922 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
22923 <frederic.bothamy@free.fr>.
22924 (tramp-set-auto-save): Actions should be done for Tramp file name
22925 handler only. Ange-FTP has its own auto-save mechanism.
22926 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
22927 (tramp-set-auto-save-file-modes): Set file modes of
22928 `buffer-auto-save-file-name' to ?\600 as fallback solution.
22929 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
22930 (tramp-bug): Remove obsolete variable.
22931 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
22932 for presence of `mml-mode'. Make it running for older Emacsen as well.
22933
22934 2005-05-14 John Paul Wallington <jpw@pobox.com>
22935
22936 * ibuf-ext.el (define-ibuffer-filter filename):
22937 If `dired-directory' is a list, use its car.
22938
22939 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
22940
22941 * ibuffer.el (define-ibuffer-column filename):
22942 If `dired-directory' is a list, use its car.
22943
22944 2005-05-14 Richard M. Stallman <rms@gnu.org>
22945
22946 * subr.el (symbol-file): Doc fix.
22947
22948 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
22949 (byte-compile-form): Call byte-compile-nogroup-warn.
22950 (byte-compile-warning-types): Doc fix.
22951
22952 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
22953
22954 * progmodes/cc-engine.el (c-literal-faces):
22955 Add font-lock-comment-delimiter-face.
22956
22957 * net/net-utils.el (dig): Use with-no-warnings.
22958
22959 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
22960 (sc-recite-frame-alist, sc-default-cite-frame)
22961 (sc-default-uncite-frame, sc-default-recite-frame)
22962 (sc-attrib-selection-list, sc-rewrite-header-list):
22963 Mark as risky-local-variable.
22964
22965 * international/ogonek.el (ogonek-jak, ogonek-how):
22966 Don't use beginning-of-buffer.
22967
22968 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
22969
22970 * calendar/solar.el (solar-data-list): Move definition up.
22971
22972 * dnd.el (dnd-protocol-alist): Add autoload.
22973
22974 * progmodes/sh-script.el: Many doc usage fixes.
22975 (sh-indent-after-do): Change default to match common styles.
22976
22977 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
22978
22979 * files.el (interpreter-mode-alist)
22980 (auto-mode-interpreter-regexp): Doc fixes.
22981
22982 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
22983
22984 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
22985
22986 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
22987
22988 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22989
22990 * dired.el (dired-mode): make-variable-buffer-local =>
22991 make-local-variable.
22992
22993 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22994
22995 * term/mac-win.el (mac-select-convert-to-string): Try coding
22996 systems in mac-script-code-coding-systems if specified one cannot
22997 encode string for `com.apple.traditional-mac-plain-text'.
22998
22999 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
23000
23001 * progmodes/make-mode.el (makefile-targets-face)
23002 (makefile-shell-face, makefile-makepp-perl-face): New faces.
23003 (makefile-dependency-regex): Fix it to not make the colon in
23004 $(var:a=b) special.
23005 (makefile-rule-action-regex): New regexp for highlighting embedded
23006 Shell strings.
23007 (makefile-macroassign-regex): Handle != for highlighting as
23008 embedded Shell strings.
23009 (makefile-var-use-regex): New const.
23010 (makefile-statements, makefile-automake-statements)
23011 (makefile-gmake-statements, makefile-makepp-statements)
23012 (makefile-bsdmake-statements): New consts.
23013 (makefile-make-font-lock-keywords): New function.
23014 (makefile-automake-font-lock-keywords)
23015 (makefile-gmake-font-lock-keywords)
23016 (makefile-makepp-font-lock-keywords)
23017 (makefile-bsdmake-font-lock-keywords): New consts.
23018 (makefile-mode-map): Add switchers between the various submodes.
23019 (makefile-mode): Document the availability of the variants.
23020 (makefile-automake-mode, makefile-gmake-mode)
23021 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
23022
23023 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
23024 new variants of makefile-mode.
23025
23026 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23027
23028 * font-lock.el (font-lock-comment-delimiter-face): Fix up
23029 the inheritance.
23030
23031 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
23032
23033 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
23034 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
23035
23036 * files.el (normal-mode): Extend the scope of the
23037 `enable-local-variables' binding to include the `set-auto-mode' call.
23038 (magic-mode-alist): Doc fix.
23039
23040 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23041
23042 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
23043 font-lock-comment-face rather than copying its setting.
23044
23045 2005-05-12 Andreas Schwab <schwab@suse.de>
23046
23047 * eshell/esh-mode.el (eshell-send-input): Doc fix.
23048
23049 2005-05-12 Lute Kamstra <lute@gnu.org>
23050
23051 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
23052 defcustom for the mode hook variable. Delete the last argument.
23053 * generic-x.el: Fix callers of define-generic-mode.
23054 (generic-x-modes): Delete group.
23055 (show-tabs-tab-face, show-tabs-space-face): Put them in the
23056 generic-x customization group.
23057
23058 2005-05-12 Kim F. Storm <storm@cua.dk>
23059
23060 * font-lock.el (font-lock-negation-char-face): Default to "off".
23061
23062 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
23063 font-lock-negation-char-face to ! in !=.
23064
23065 2005-05-12 Masatake YAMATO <jet@gyve.org>
23066
23067 * add-log.el (find-change-log): Fix typos in the docstring
23068 of function.
23069
23070 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
23071
23072 * international/latexenc.el (latexenc-find-file-coding-system):
23073 Avoid `re-search-forward' when looking for input encoding because
23074 of speed and safety. Better regular expressions for recognizing
23075 input encoding. Limit a search for TeX-master/tex-main-file to
23076 the local variable section.
23077
23078 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
23079
23080 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
23081 syntax of $ to "'" (quote).
23082
23083 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
23084
23085 * dnd.el (dnd-protocol-alist): Improve custom type.
23086
23087 * dired.el (dired-dnd-protocol-alist): New variable.
23088 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
23089 `dired-mode-hook' to the end.
23090
23091 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
23092
23093 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
23094 comment-end if comment-start-skip is not set.
23095 Obey the font-lock-comment-delimiter-face variables.
23096
23097 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
23098
23099 * files.el (executable-find): Move from executable.el. Use
23100 locate-file.
23101 * progmodes/executable.el (executable-find): Move to files.el.
23102
23103 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
23104 when trying to ensure forward progress.
23105
23106 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
23107
23108 * mouse-sel.el (mouse-sel-follow-link-p): New function.
23109 (mouse-select, mouse-select-internal, mouse-extend-internal):
23110 Use it to implement mouse-1-click-follows-link functionality.
23111
23112 2005-05-11 Richard M. Stallman <rms@gnu.org>
23113
23114 * font-lock.el (font-lock-fontify-syntactically-region):
23115 Use font-lock-comment-delimiter-face for comment delimiters.
23116
23117 2005-05-10 Jay Belanger <belanger@truman.edu>
23118
23119 * calc/calc-help.el (calc-m-prefix-help): Add mention of
23120 preserving embedded modes.
23121
23122 2005-05-10 Richard M. Stallman <rms@gnu.org>
23123
23124 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
23125
23126 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
23127 Move from ada-stmt.el.
23128 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
23129
23130 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
23131 Move to ada-mode.el.
23132 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
23133
23134 * cus-edit.el (custom-file): Call file-chase-links.
23135
23136 * files.el (read-directory-name): Fix previous change.
23137 (hack-local-variables-confirm): New function.
23138 (hack-local-variables-prop-line, hack-local-variables)
23139 (hack-one-local-variable): Use it.
23140
23141 2005-05-10 Lute Kamstra <lute@gnu.org>
23142
23143 * font-lock.el (font-lock-keywords-alist)
23144 (font-lock-removed-keywords-alist): Clarify docstrings.
23145
23146 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
23147
23148 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
23149 (gdb-source-info): Check for preprocessor info.
23150 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
23151 a macro for a function.
23152 (gdb-info-breakpoints-custom): Try to find file again if not already
23153 found (user might have used GDB dir command).
23154 (gdb-get-location): Update gdb-location-alist correctly for change
23155 to gdb-info-breakpoints-custom.
23156
23157 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
23158 (gud-tooltip-print-command): Add gdbmi case.
23159 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
23160 preprocessor info.
23161
23162 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
23163
23164 * startup.el (fancy-splash-insert): Fix typo in doc string.
23165
23166 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
23167
23168 * obsolete/float.el (string-to-float):
23169 * obsolete/hilit19.el (hilit-add-pattern):
23170 * obsolete/rnews.el (news-parse-range, news-select-message)
23171 (news-get-pruned-list-of-files): Replace `string-to-int' by
23172 `string-to-number'.
23173
23174 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
23175 `find-file-not-found-hooks'; use `add-hook'.
23176 (uncompress-while-visiting): Set `write-file-functions', not
23177 `write-file-hooks'; use `add-hook'.
23178
23179 2005-05-09 Kim F. Storm <storm@cua.dk>
23180
23181 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
23182 (cua-paste): Handle clipboard action.
23183 (cua--init-keymaps): Remap clipboard-kill-region and
23184 clipboard-kill-ring-save.
23185
23186 2005-05-08 Eli Zaretskii <eliz@gnu.org>
23187
23188 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
23189 Improve commentary.
23190
23191 * simple.el (next-error-overlay-arrow-position): Revert the change
23192 made on 2005-04-30.
23193
23194 2005-05-07 Jay Belanger <belanger@truman.edu>
23195
23196 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
23197 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
23198 `calc-sel-reselect'.
23199
23200 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
23201 Calc is in embedded mode.
23202
23203 2005-05-07 Eli Zaretskii <eliz@gnu.org>
23204
23205 * progmodes/compile.el (compilation-setup):
23206 Set overlay-arrow-string to an empty string on text terminals.
23207
23208 * textmodes/ispell.el (ispell-program-name): Try looking for
23209 "aspell" along exec-path, and if found, use it as the default
23210 speller program.
23211
23212 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
23213
23214 * international/mule.el (sgml-xml-auto-coding-function):
23215 Recognize encoding='FOO' in single quotes as well as in double quotes.
23216
23217 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
23218
23219 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
23220 as well as `interactive', so that defmacro* would recognize
23221 `declare' forms.
23222
23223 2005-05-07 Eli Zaretskii <eliz@gnu.org>
23224
23225 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
23226 Explain more about the LIGHTER arg's usage in the doc string.
23227 Add commentary to clarify what the code does. Fix the regexp that
23228 strips whitespace from LIGHTER. Quote LIGHTER before using it,
23229 since it could have characters special to regular expressions.
23230
23231 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
23232
23233 * replace.el (occur-1): Bind inhibit-read-only so that
23234 erase-buffer doesn't barf on read-only text properties (likewise
23235 for add-text-properties in occur-engine). Mark buffer as unmodified.
23236 (occur-engine): Don't set buffer-read-only here.
23237
23238 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
23239
23240 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
23241 list-buffers-directory. This caused the *cvs-commit* buffer to be
23242 sometimes mistakenly reused as a *cvs* buffer.
23243
23244 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
23245
23246 * tooltip.el: Move code for GUD tooltips into gud.el.
23247 (require): CL no longer needed to compile case.
23248 (tooltip-mode): Do not toggle functions for GUD tooltips.
23249 (tooltip-gud-tips-p): Remove. Replace with minor mode
23250 gud-tooltip-mode in gud.el.
23251 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
23252 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
23253 tooltip-gud prefix with gud-tooltip and obsolete.
23254 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
23255 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
23256 (tooltip-mouse-motion): Mouse movement functions/variable.
23257 Rename in gud.el by adding gud prefix.
23258 (tooltip-gud-original-filter, tooltip-gud-dereference)
23259 (tooltip-gud-event, tooltip-toggle-gud-tips)
23260 (tooltip-gud-process-output, tooltip-gud-print-command)
23261 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
23262 gud.el by replacing tooltip-gud prefix with gud-tooltip.
23263 (gdb-tooltip-print): Move to gdb-ui.el.
23264
23265 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
23266 (require): CL needed to compile case.
23267 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
23268 tooltip-gud-tips-p. Make it a minor-mode.
23269 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
23270 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
23271 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
23272 (gud-tooltip-change-major-mode)
23273 (gud-tooltip-activate-mouse-motions-if-enabled)
23274 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
23275 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
23276 (gud-tooltip-original-filter, gud-tooltip-dereference)
23277 (gud-tooltip-event, tooltip-toggle-gud-tips)
23278 (gud-tooltip-process-output, gud-tooltip-print-command)
23279 (gud-tooltip-tips): Move from tooltip.el.
23280
23281 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
23282 (gdb-cpp-define-alist-flags): Doc fix.
23283 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
23284 gud-tooltip-mode is t.
23285
23286 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
23287
23288 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
23289 evaporate if their text is deleted.
23290 (goto-address-at-point): Make it work as a mouse binding as well.
23291 (goto-address-at-mouse): Obsolete it. Update users.
23292
23293 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
23294
23295 * calendar/appt.el (top-level): No longer activate on load.
23296
23297 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
23298
23299 * calendar/cal-bahai.el (mark-bahai-diary-entries):
23300 * net/webjump.el (webjump):
23301 * progmodes/idlw-help.el (idlwave-do-context-help1)
23302 (idlwave-highlight-linked-completions):
23303 * textmodes/po.el (po-find-file-coding-system-guts):
23304 Replace `assoc-ignore-case' by `assoc-string'.
23305
23306 2005-05-06 Eli Zaretskii <eliz@gnu.org>
23307
23308 * files.el (locate-file): Doc fix.
23309
23310 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
23311 Remove the redundant test for ms-dos.
23312
23313 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
23314 look for the preprocessor with exec-suffixes. If not found in
23315 standard places, look in exec-path. Remove most of the tests that
23316 used system-type.
23317
23318 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
23319
23320 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
23321
23322 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
23323 file-name clash with jka-compr.el on 8+3 filesystems.
23324
23325 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23326
23327 * term/mac-win.el: Don't define or bind scroll bar functions if
23328 x-toolkit-scroll-bars is t.
23329 (x-select-text, x-get-selection-value): Clear
23330 x-last-selected-text-clipboard if x-select-enable-clipboard is
23331 nil.
23332 (PRIMARY): Put mac-scrap-name property.
23333 (mac-select-convert-to-file-url): New function.
23334 (public.file-url): New selection target type. Add to
23335 selection-converter-alist.
23336 (x-get-selection, x-selection-value): Handle it.
23337 (x-cut-buffer-or-selection-value): New alias.
23338
23339 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
23340
23341 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
23342 entry to avoid calling bibtex-find-entry with arg global
23343 being t. Remove arg key.
23344 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
23345 (bibtex-copy-summary-as-kill): Change accordingly.
23346
23347 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
23348
23349 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
23350 (org-agenda-date-later): Use with-current-buffer.
23351
23352 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
23353
23354 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
23355 (define-obsolete-variable-alias): Doc Fixes.
23356
23357 2005-05-06 Kim F. Storm <storm@cua.dk>
23358
23359 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
23360 vertical-motion when selective-display is active.
23361
23362 * ido.el (ido-setup-hook): New hook.
23363 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
23364 (ido-input-stack): New var.
23365 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
23366 ido-next-work-file binding to M-O.
23367 Bind M-f to ido-wide-find-file-or-pop-dir.
23368 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
23369 (ido-read-internal): Run ido-setup-hook.
23370 Catch quit in read-file-name and read-string to cancel edit.
23371 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
23372 Automatically pop-all when completing a directory name (RET).
23373 (ido-file-internal): Add with-no-warnings around ffap and dired code.
23374 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
23375 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
23376 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
23377 New functions for M-b/M-f to move among the directory components.
23378 (ido-make-merged-file-list): Catch quit to cancel merge.
23379 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
23380 (ido-completion-help): No warnings for ido-completion-buffer-full.
23381
23382 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
23383
23384 * font-lock.el (font-lock-negation-char-face): New face and variable.
23385 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
23386 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
23387 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
23388 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
23389
23390 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
23391
23392 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
23393 Fix typo in docstring.
23394
23395 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
23396 (ebrowse-print-statistics-line)
23397 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
23398
23399 * term/w32-win.el (image-library-alist): Add additional name for
23400 Xpm library.
23401
23402 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
23403
23404 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
23405 use gcc instead of cpp.
23406
23407 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
23408 (gdb-create-define-alist): Use it.
23409 (gdb-cpp-define-alist-program): Update for MS-DOS.
23410
23411 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
23412
23413 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
23414
23415 2005-05-04 Richard M. Stallman <rms@gnu.org>
23416
23417 * help.el (describe-key): No error when UNTRANSLATED is nil.
23418
23419 * simple.el (line-move-1): Fix previous change to signal errors
23420 appropriately.
23421
23422 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
23423
23424 * calendar/icalendar.el (icalendar-version): Now at 0.12.
23425 (icalendar-duration-correction): Remove.
23426 (icalendar--get-event-properties): Split result at commas.
23427 (icalendar--decode-isoduration): New optional argument
23428 DURATION-CORRECTION.
23429 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
23430 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
23431 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
23432 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
23433 (icalendar--convert-anniversary-to-ical): New functions, extracted
23434 from icalendar-export-region, with bug fixes.
23435 (icalendar-export-region): Use the above functions.
23436 (icalendar-import-buffer): Check before saving diary file.
23437 (icalendar--convert-recurring-to-diary)
23438 (icalendar--convert-non-recurring-all-day-to-diary)
23439 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
23440 extracted from icalendar--convert-ical-to-diary, with bug fixes.
23441 (icalendar--convert-ical-to-diary): Use the above functions.
23442
23443 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
23444
23445 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
23446 Remove these recent additions.
23447 (c-mode): Restore to before 2005-04-28.
23448
23449 * progmodes/cc-vars.el (cc-define-list-program): Remove this
23450 recent addition.
23451
23452 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
23453 (gdb-define-alist): New variables.
23454 (gdb-create-define-alist): New function.
23455 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
23456 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
23457 with string-to-number.
23458 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
23459
23460 * progmodes/gud.el: Replace string-to-int with string-to-number.
23461 (gud-find-file): Handle gdb-define-alist.
23462
23463 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
23464
23465 2005-05-02 Jay Belanger <belanger@truman.edu>
23466
23467 * calc/calc-aent.el (math-read-token):
23468 * calc/calc-bin.el (calc-word-size):
23469 * calc/calc-ext.el (calc-read-number-fancy):
23470 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
23471 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
23472 * calc/calc-frac.el (calc-over-notation):
23473 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
23474 (calc-graph-num-points, calc-graph-init):
23475 * calc/calc-prog.el (calc-read-parse-table-part)
23476 (calc-edit-macro-repeats):
23477 * calc/calc-yank.el (calc-do-grab-rectangle):
23478 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
23479 Replace `string-to-int' by `string-to-number'.
23480
23481 2005-05-02 Kim F. Storm <storm@cua.dk>
23482
23483 * kmacro.el: Use executing-kbd-macro-index variable.
23484
23485 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
23486
23487 * net/rlogin.el (rlogin-parse-words): Delete func.
23488 (rlogin): Use split-string, not rlogin-parse-words.
23489 Also, if there are option-like elements in the parsed args,
23490 take the host to be the first arg immediately following them.
23491 Suggested by Michael Mauger.
23492
23493 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
23494
23495 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
23496
23497 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
23498
23499 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
23500 (cc-mode-cpp-program): Rename to cc-define-list-program and
23501 move to cc-vars.el.
23502
23503 * progmodes/cc-vars.el (cc-define-list-program):
23504 Change to "gcc -E -dM -". Make customizable.
23505
23506 2005-05-02 Kim F. Storm <storm@cua.dk>
23507
23508 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
23509
23510 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
23511
23512 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
23513
23514 * international/mule-util.el (truncate-string): Remove alias and
23515 obsolete declaration.
23516
23517 * international/mule-cmds.el (update-iso-coding-systems):
23518 Remove alias and obsolete declaration.
23519
23520 * international/mule.el (coding-system-parent): Remove alias and
23521 obsolete declaration.
23522
23523 * subr.el (define-function, sref): Remove aliases and obsolete
23524 declarations.
23525 (chars-in-region): Remove obsolete declaration.
23526
23527 2005-05-01 Richard M. Stallman <rms@gnu.org>
23528
23529 * info.el (Info-mode): Set widen-automatically to nil, locally.
23530
23531 * simple.el (widen-automatically): New variable.
23532 (pop-global-mark): Obey widen-automatically.
23533
23534 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
23535
23536 * term/xterm.el (function-key-map): Call substitute-key-definition
23537 before the keymap size is increased by a lot of define-key calls.
23538
23539 2005-05-01 Richard M. Stallman <rms@gnu.org>
23540
23541 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
23542 Rename ARG to ELEMENT. Doc fix.
23543
23544 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
23545
23546 * allout.el (allout-exposure): Remove macro and obsolete declaration.
23547 Remove references to allout-exposure/change to allout-new-exposure.
23548
23549 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
23550 bytecode symbols.
23551
23552 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
23553 (compiled-function-p, focus-frame, unfocus-frame):
23554 Remove aliases and obsolete declarations.
23555 Back out inadvertent changes from previous commit.
23556
23557 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
23558
23559 * files.el (require-final-newline): Make Custom tags consistent
23560 with mode-require-final-newline.
23561 (mode-require-final-newline): Doc fix.
23562
23563 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
23564
23565 * international/latexenc.el (latexenc-find-file-coding-system):
23566 Fix regular expressions.
23567
23568 2005-05-01 David Kastrup <dak@gnu.org>
23569
23570 * international/latexenc.el (latexenc-find-file-coding-system):
23571 Fix regular expressions.
23572
23573 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
23574
23575 * subr.el (string-to-int): Make obsolete.
23576
23577 2005-04-30 Richard M. Stallman <rms@gnu.org>
23578
23579 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
23580
23581 * loadup.el: load jka-comp-hook.
23582
23583 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
23584 (jka-compr-handler): Add autoload. `put' calls moved
23585 to jka-comp-hook.el.
23586 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
23587 (jka-compr-inhibit): Autoload.
23588
23589 * jka-comp-hook.el: New file.
23590 Enable the mode by default.
23591
23592 * files.el (backup-buffer-copy): Use copy-file instead
23593 of write-region, and put back the 'excl.
23594
23595 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
23596
23597 * progmodes/flymake.el (flymake-split-string)
23598 (flymake-split-string, flymake-log, flymake-pid-to-names)
23599 (flymake-reg-names, flymake-get-source-buffer-name)
23600 (flymake-unreg-names, flymake-add-line-err-info)
23601 (flymake-add-err-info): Clarify docstrings.
23602 (flymake-popup-menu, flymake-make-emacs-menu)
23603 (flymake-make-xemacs-menu): Add docstrings.
23604 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
23605 Set variables directly throughout.
23606
23607 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
23608
23609 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
23610 exists. Initialize cc-define-alist.
23611 (c-mode): Add cc-create-define-alist locally to after-save-hook.
23612 If there is no file (Macroexpansion) don't create an alist.
23613
23614 2005-04-29 Sam Steingold <sds@gnu.org>
23615
23616 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
23617 (cc-create-define-alist): Use it instead of the hard-coded string.
23618
23619 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
23620
23621 * international/mule-conf.el (file-coding-system-alist): Fix regexp
23622 for latexenc.
23623
23624 2005-04-29 Lute Kamstra <lute@gnu.org>
23625
23626 * emacs-lisp/generic.el: Improve commentary section.
23627 (define-generic-mode): Improve docstring.
23628
23629 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
23630
23631 * textmodes/org.el (many places): Change to quiet the byte compiler.
23632 (org-prefix-format-compiled): New variable.
23633 (org-compile-prefix-format): New function.
23634 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
23635 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
23636 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
23637 (org-get-entries-from-diary): Use `org-get-time-of-day' for
23638 consistency with entries from `org-mode' files.
23639 (org-get-time-of-day): Fix bug with partial matches early in a line.
23640 (org-non-link-chars): New constant.
23641 (org-link-regexp): Respect `org-non-link-chars'.
23642 (org-agenda-day-view): Remove command.
23643 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
23644 (org-follow-bbdb-link, org-store-link): Search also company field.
23645 (org-highlight-overlay): New variable.
23646 (org-highlight, org-unhighlight): New functions.
23647 (org-agenda-mode): Add pre-command-hook to remove highlight.
23648 (org-evaluate-time-range): Behavior depends upon whether time stamp
23649 contains a time or not.
23650 (org-show-subtree, org-show-entry): New functions.
23651 (org-agenda-cleanup-fancy-diary): Remove empty lines.
23652
23653 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
23654
23655 * comint.el (comint-output-filter-functions): Add autoload cookie.
23656
23657 2005-04-28 Kim F. Storm <storm@cua.dk>
23658
23659 * ido.el (ido-everywhere): Fix last change.
23660
23661 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
23662
23663 * international/latexenc.el: New file.
23664 * international/mule-conf.el (file-coding-system-alist): For .tex,
23665 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
23666
23667 2005-04-28 Lute Kamstra <lute@gnu.org>
23668
23669 * font-lock.el (font-lock-add-keywords)
23670 (font-lock-remove-keywords): Clarify docstring.
23671 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
23672 Don't start docstrings with a `*'.
23673 (font-lock-update-removed-keyword-alist): Give it a docstring.
23674
23675 * generic-x.el: Update commentary section.
23676 Only require font-lock when compiling.
23677 Define all modes conditionally.
23678 Place all generic modes in the generic-x-modes customization group.
23679 (generic-x-modes): New customization group.
23680 (generic-default-modes, generic-mswindows-modes)
23681 (generic-unix-modes, generic-other-modes): New constants.
23682 (generic-define-mswindows-modes, generic-define-unix-modes):
23683 Update docstrings. Make them obsolete.
23684 (generic-extras-enable-list): New default value. Update docstring.
23685 Improve :type. Change :set function.
23686 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
23687 Fix docstring.
23688
23689 * emacs-lisp/generic.el (generic-mode-internal):
23690 Simplify font-lock-defaults.
23691 (define-generic-mode): Fix docstring.
23692
23693 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23694
23695 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
23696 font-lock-face property to highlight matches.
23697
23698 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
23699
23700 * progmodes/cc-mode.el (cc-create-define-alist): New function.
23701 (cc-define-alist): New variable.
23702 (c-mode): Make it local and initialize it.
23703
23704 * progmodes/gdb-ui.el (gdb-active-process): New variable.
23705 (gdb-exited): New function.
23706 (gdb-annotation-rules): Use it.
23707 (gdb-starting): Set gdb-active-process to t.
23708 (gdb-stopping): Amend doc string.
23709 (gdb-reset): Set gdb-active-process to nil.
23710
23711 * tooltip.el (tooltip-gud-tips): Show the associated #define
23712 directives when a C program under GDB is not executing.
23713
23714 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
23715
23716 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
23717 font-lock-fontify-syntactic-keywords.
23718
23719 * font-lock.el (font-lock-default-fontify-region): Don't force
23720 parse-sexp-lookup-properties to nil.
23721
23722 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
23723
23724 * man.el (man-mode-syntax-table): Set up `:' to have
23725 word-constituent syntax.
23726
23727 2005-04-27 Lute Kamstra <lute@gnu.org>
23728
23729 * novice.el (disable-command): Don't add spurious newlines to the
23730 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
23731
23732 2005-04-26 Jay Belanger <belanger@truman.edu>
23733
23734 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
23735 than one window before deleting window.
23736
23737 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
23738
23739 * shell.el (shell-prompt-pattern): Doc fix.
23740 (shell-mode): Set paragraph-separate buffer locally to "\\'".
23741
23742 * comint.el (comint-prompt-regexp, comint-get-old-input)
23743 (comint-use-prompt-regexp)
23744 (comint-use-prompt-regexp-instead-of-fields)
23745 (comint-replace-by-expanded-history, comint-send-input)
23746 (comint-output-filter, comint-get-old-input-default)
23747 (comint-line-beginning-position, comint-bol, comint-show-output)
23748 (comint-backward-matching-input, comint-forward-matching-input)
23749 (comint-next-prompt, comint-previous-prompt):
23750 Rename `comint-use-prompt-regexp-instead-of-fields' to
23751 `comint-use-prompt-regexp'. Keep old name as alias and declare
23752 obsolete.
23753 (comint-use-prompt-regexp): Shorten first line of doc string.
23754
23755 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
23756 Set paragraph-separate buffer locally to "\\'".
23757
23758 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
23759 Adapt to above name change.
23760
23761 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
23762 (smbclient-prompt-regexp): Ditto.
23763
23764 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
23765
23766 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
23767
23768 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
23769 gdb-location-list.
23770 Break lines that are over 80 characters wide.
23771
23772 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
23773
23774 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
23775 New fun and var, to preserve compatibility.
23776
23777 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
23778
23779 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
23780
23781 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
23782 name to file-newer-than-file-p.
23783
23784 2005-04-26 Richard M. Stallman <rms@gnu.org>
23785
23786 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
23787
23788 * progmodes/python.el (python-mode):
23789 Use new name eldoc-documentation-function.
23790
23791 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
23792
23793 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
23794 (eldoc-documentation-function):
23795 Rename from eldoc-print-current-symbol-info-function. Calls changed.
23796
23797 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
23798
23799 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
23800
23801 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
23802
23803 * term/xterm.el (function-key-map): Fix strings for
23804 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
23805 {C,S,A,C-S}-{f1-f12}.
23806
23807 2005-04-26 Kenichi Handa <handa@m17n.org>
23808
23809 * international/mule-cmds.el (select-safe-coding-system):
23810 Fix previous change.
23811
23812 2005-04-26 Lute Kamstra <lute@gnu.org>
23813
23814 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
23815
23816 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
23817 (font-lock-comment-delimiter-face): Ditto.
23818
23819 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
23820
23821 2005-04-25 Jay Belanger <belanger@truman.edu>
23822
23823 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
23824 to t while inserting information; use help-mode.
23825
23826 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
23827
23828 * term.el (ansi-term-color-vector): Use the xterm colors.
23829 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
23830
23831 2005-04-25 Lute Kamstra <lute@gnu.org>
23832
23833 * font-core.el (font-lock-defaults): Fix docstring.
23834
23835 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
23836
23837 2005-04-25 Kenichi Handa <handa@m17n.org>
23838
23839 * international/mule-cmds.el (select-safe-coding-system):
23840 Don't check consistency with coding: spec, etc if raw-text or
23841 no-conversion was found to be safe.
23842
23843 2005-04-24 Richard M. Stallman <rms@gnu.org>
23844
23845 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
23846 citation markers at start of each line.
23847
23848 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
23849 citation markers at start of each line.
23850
23851 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
23852
23853 * files.el (mode-require-final-newline): Fix previous change.
23854 (require-final-newline): Fix type label.
23855
23856 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
23857
23858 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
23859 statement in buffer (broken by 2004-11-24 change).
23860
23861 2005-04-24 Kim F. Storm <storm@cua.dk>
23862
23863 * ido.el (ido-everywhere): Save and restore old read-buffer-function
23864 and read-file-name-function values. Don't overwrite existing
23865 non-nil values if ido-mode is enabled without ido-everywhere.
23866
23867 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
23868
23869 * files.el (mode-require-final-newline): Minor doc fix.
23870
23871 2005-04-24 Eli Zaretskii <eliz@gnu.org>
23872
23873 * subr.el (syntax-after): Doc fix.
23874 (syntax-class): If argument is nil, return nil. Mask off upper 16
23875 bits, not 8 bits.
23876
23877 * files.el (mode-require-final-newline): Doc fix.
23878 (backup-buffer-copy): Fix last change.
23879
23880 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23881
23882 * term/mac-win.el: Require select. Set selection-coding-system to
23883 mac-system-coding-system. Call menu-bar-enable-clipboard.
23884 (x-last-selected-text-clipboard, x-last-selected-text-primary)
23885 (x-select-enable-clipboard): New variables.
23886 (x-select-text, x-get-selection, x-selection-value)
23887 (x-get-selection-value, mac-select-convert-to-string)
23888 (mac-services-open-file, mac-services-open-selection)
23889 (mac-services-insert-text): New functions.
23890 (CLIPBOARD, FIND): Put mac-scrap-name property.
23891 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
23892 (public.tiff): Put mac-ostype property.
23893 (selection-converter-alist): Add entries for them.
23894 (mac-application-menu-map): New keymap.
23895 (interprogram-cut-function, interprogram-paste-function): Set to
23896 x-select-text and x-get-selection-value, respectively.
23897 (split-window-keep-point): Set to t.
23898
23899 2005-04-23 Richard M. Stallman <rms@gnu.org>
23900
23901 * files.el (read-directory-name): Always pass non-nil
23902 DEFAULT-FILENAME arg to read-file-name.
23903 (backup-buffer-copy, basic-save-buffer-2): Take care against
23904 writing thru an unexpected existing symlink.
23905 (revert-buffer): In indirect buffer, revert the base buffer.
23906 (magic-mode-alist): Doc fix.
23907 (buffer-stale-function): Doc fix.
23908 (minibuffer-with-setup-hook): Avoid warning.
23909 (mode-require-final-newline): Doc and custom fix.
23910
23911 * follow.el (follow-end-of-buffer): Use with-no-warnings.
23912
23913 * font-lock.el (font-lock-comment-face): On terminals with few colors,
23914 use the default appearance.
23915 (font-lock-comment-delimiter-face): New face, new variable.
23916
23917 * imenu.el (imenu--generic-function): The official position of a
23918 definition is the start of the line that BEG is in.
23919
23920 * midnight.el (midnight-timer): Move defvar up.
23921
23922 * mouse.el (mouse-drag-region-1): Delete some debugging code.
23923
23924 * saveplace.el (save-place-to-alist): Use with-no-warnings.
23925
23926 * startup.el (command-line): Use with-no-warnings.
23927
23928 * window.el (window-size-fixed): New defvar.
23929
23930 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
23931
23932 * mail/rmail.el (rmail-font-lock-keywords):
23933 Use font-lock-comment-delimiter-face.
23934
23935 * mail/sendmail.el (mail-font-lock-keywords):
23936 Use font-lock-comment-delimiter-face.
23937
23938 * progmodes/compile.el (next-error-highlight-timer): New defvar.
23939
23940 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
23941
23942 * progmodes/compile.el (compilation-mode-font-lock-keywords):
23943 Specify t for LAXMATCH when matching directories.
23944 Save match data around compilation-compat-error-properties form.
23945
23946 2005-04-23 David Kastrup <dak@gnu.org>
23947
23948 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
23949 Mention that the autoloaded aliases should be kept for AUCTeX.
23950
23951 2005-04-23 Andreas Schwab <schwab@suse.de>
23952
23953 * isearch.el (isearch-forward): Doc fix.
23954
23955 2005-04-23 Eli Zaretskii <eliz@gnu.org>
23956
23957 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
23958 (jit-lock-stealth-nice): Change default value to 0.5.
23959
23960 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
23961
23962 * abbrev.el (write-abbrev-file): Write table entries in
23963 alphabetical order by table name.
23964
23965 2005-04-22 Kim F. Storm <storm@cua.dk>
23966
23967 * ido.el (ido-read-internal): Fix `list' completion.
23968
23969 2005-04-22 Kenichi Handa <handa@m17n.org>
23970
23971 * recentf.el (recentf-save-file-coding-system): New variable.
23972 (recentf-save-list): Encode the file by
23973 recentf-save-file-coding-system and add coding: tag.
23974
23975 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
23976
23977 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
23978
23979 2005-04-21 Lute Kamstra <lute@gnu.org>
23980
23981 * loadhist.el (unload-feature): Don't remove a function from hooks
23982 if it is about to be restored to an autoload . Remove functions
23983 that will become unbound from auto-mode-alist. Simplify the code.
23984
23985 * subr.el (assq-delete-all): New implementation that is linear,
23986 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
23987 (rassq-delete-all): New function.
23988
23989 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
23990 Add size-indication-mode.
23991
23992 2005-04-21 Kenichi Handa <handa@m17n.org>
23993
23994 * international/mule-cmds.el: Add autoload for widget-value in
23995 eval-when-compile.
23996
23997 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
23998
23999 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
24000 Add tooltip-mode.
24001
24002 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
24003
24004 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
24005
24006 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
24007 (inferior-lisp-filter-regexp, inferior-lisp-program)
24008 (inferior-lisp-load-command, inferior-lisp-prompt)
24009 (inferior-lisp-mode-hook, lisp-source-modes)
24010 (inferior-lisp-load-hook): defvar->defcustom.
24011 (inferior-lisp-program, inferior-lisp-prompt)
24012 (inferior-lisp-load-hook): Doc fixes.
24013 (inferior-lisp-install-letter-bindings): Small change in
24014 introductory comment.
24015
24016 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
24017
24018 * vc.el (vc-annotate-color-map): Change some colors so that text
24019 using them as foreground is readable on both white and black
24020 backgrounds.
24021
24022 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24023
24024 * international/mule-conf.el (translation-table-for-input):
24025 Remove redundant declaration.
24026
24027 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
24028
24029 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
24030
24031 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
24032 (tooltip-toggle-gud-tips): New function.
24033
24034 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24035
24036 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
24037 right angle brackets.
24038
24039 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
24040
24041 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
24042
24043 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
24044
24045 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
24046 Remove. Update callers to use expand-file-name instead.
24047
24048 * subr.el (syntax-class): New function.
24049
24050 * simple.el (blink-matching-open): Use it.
24051
24052 * paren.el (show-paren-function): Use it to recognize parens that are
24053 also used in 2-char comment markers.
24054
24055 2005-04-19 Lute Kamstra <lute@gnu.org>
24056
24057 * loadhist.el (unload-feature): Update for new format of
24058 load-history. Simplify the code.
24059
24060 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24061
24062 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
24063 (mac-add-charset-info): New function. Initialize variable
24064 mac-charset-info-alist using it.
24065 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
24066 for translation.
24067 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
24068 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
24069 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
24070 New CCL programs.
24071
24072 2005-04-19 Kim F. Storm <storm@cua.dk>
24073
24074 * simple.el (next-buffer, prev-buffer, next-error)
24075 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
24076 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
24077
24078 * bindings.el (next-buffer, prev-buffer, next-error)
24079 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
24080 (clone-indirect-buffer-other-window): Move bindings from simple.el.
24081 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
24082 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
24083
24084 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
24085
24086 * isearch.el (isearch-edit-string): Make the search-ring available for
24087 minibuffer history commands.
24088 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
24089 the default history commands now work just as well.
24090 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
24091
24092 2005-04-18 Kim F. Storm <storm@cua.dk>
24093
24094 * emulation/cua-base.el (cua--pre-command-handler): Add more
24095 elaborate check for shift modifier on non-window systems.
24096
24097 2005-04-18 Lars Hansen <larsh@math.ku.dk>
24098
24099 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
24100
24101 2005-04-18 Kim F. Storm <storm@cua.dk>
24102
24103 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
24104 and make it optional. Don't test tooltip-gud-echo-area here.
24105 (tooltip-gud-process-output, gdb-tooltip-print):
24106 Pass tooltip-gud-echo-area to tooltip-show.
24107 (tooltip-help-tips): Remove second optional arg to tooltip-show.
24108
24109 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24110
24111 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
24112 `display-graphic-p' may not be bound yet.
24113
24114 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
24115
24116 * startup.el (command-line): No longer enable Xterm Mouse mode by
24117 default in terminals compatible with xterm.
24118
24119 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
24120
24121 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
24122
24123 * tooltip.el (tooltip-gud-echo-area): Rename from
24124 tooltip-use-echo-area.
24125 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
24126 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
24127 area independently of where help tooltips are displayed.
24128
24129 2005-04-17 David Kastrup <dak@gnu.org>
24130
24131 * cus-theme.el (custom-theme-write-variables): Quote variables
24132 where necessary.
24133
24134 2005-04-17 Richard M. Stallman <rms@gnu.org>
24135
24136 * simple.el (yank-excluded-properties): Add follow-link to value.
24137
24138 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
24139
24140 * startup.el (fancy-splash-max-time): Just 30 seconds.
24141 (fancy-splash-delay): Just 7.
24142 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
24143
24144 * loadhist.el (unload-feature): Update for new format of load-history.
24145 Simplify the code.
24146
24147 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
24148 (rmail-font-lock-keywords): Don't fontify the text of a citation.
24149
24150 * mail/sendmail.el (mail-font-lock-keywords):
24151 Don't fontify subject text.
24152 Don't fontify the text of a citation.
24153
24154 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
24155
24156 * comint.el (comint-output-filter): Run comint-output-filter-functions
24157 with point where the user had it.
24158
24159 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
24160
24161 * international/ucs-tables.el (ucs-set-table-for-input):
24162 Disable when using unify-on-decoding.
24163
24164 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
24165
24166 * emulation/cua-base.el (cua-global-mark-face): Add special case
24167 for displays supporting a high number of colors.
24168
24169 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
24170
24171 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
24172
24173 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
24174
24175 * filesets.el (filesets-add-buffer): If user supplies a name of a
24176 non-existing fileset, create a new fileset.
24177
24178 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
24179
24180 * textmodes/org.el (org-up-heading-all): Fix bug with
24181 `outline-up-heading-all'.
24182
24183 2005-04-16 Andreas Schwab <schwab@suse.de>
24184
24185 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
24186 /etc/permissions.d/* and /etc/aliases.d/*.
24187
24188 2005-04-16 Kenichi Handa <handa@m17n.org>
24189
24190 * international/code-pages.el (cp-make-coding-system):
24191 Set `translation-table-for-input' property value to the symbol
24192 ucs-mule-to-mule-unicode, not to that value.
24193 (pt154): Escape guillemet by `\'.
24194
24195 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
24196
24197 * loadup.el: Load tooltip if x-show-tip is fboundp.
24198
24199 * startup.el (command-line): Add comment.
24200
24201 * tooltip.el (tooltip-mode): Specify correct standard value for
24202 Custom in init-value.
24203
24204 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
24205
24206 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
24207 possible.
24208
24209 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
24210
24211 * textmodes/org.el (org-agenda-date-prompt): Rename from
24212 `org-agenda-date-today'.
24213 (org-evaluate-time-range): Insert at point instead of directly
24214 after time range.
24215 (org-first-headline-recenter, org-subtree-end-visible-p)
24216 (org-optimize-window-after-visibility-change): New functions
24217 (org-agenda-post-command-hook): Don't allow point at end of line,
24218 to make sure it always hits the text properties.
24219 (org-agenda-next-date-line, org-agenda-previous-date-line):
24220 New commands.
24221 (org-set-regexps-and-options): Category may contain white space.
24222 (org-agenda-get-deadlines, org-agenda-get-scheduled):
24223 Improve marker positions.
24224 (org-agenda-new-marker): Argument POS made optional.
24225 (org-agenda-get-timestamps): Deadlines which are done are listed
24226 in org-done-face now.
24227 (org-agenda-get-todos, org-agenda-get-timestamps)
24228 (org-agenda-get-deadlines, org-agenda-get-scheduled):
24229 Set `undone-face' and `done-face' properties.
24230 (org-last-todo-state-is-todo): New variable.
24231 (org-todo): Set `org-last-todo-state-is-todo'.
24232 (org-agenda-todo): Change face according to
24233 `org-last-todo-state-is-todo'. And change other lines referring to
24234 the same entry.
24235 (org-calendar-goto-agenda): New command.
24236 (org-calendar-to-agenda-key): New option.
24237 (org-startup-folded): New allowed value `content'.
24238 (org-set-regexps-and-options): Accept new value `content' for
24239 `org-startup-folded'.
24240 (org-get-current-options): Handle new value `content' for
24241 `org-startup-folded'.
24242 (org-insert-todo-heading): New command.
24243 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
24244 interactively in empty file and option
24245 `org-insert-mode-line-in-empty-file' has been set.
24246 (org-agenda-todo, org-agenda-priority): Modify to use
24247 `org-agenda-change-all-lines'.
24248 (org-warning-face): Change color on dark background
24249
24250 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24251
24252 * international/mule-cmds.el (set-locale-environment): On Mac OS,
24253 use preferences AppleLocale and AppleLanguages, and variable
24254 mac-system-locale for default locale. On Mac OS Classic, use
24255 mac-system-coding-system for default coding systems.
24256
24257 * term/mac-win.el: Don't set file-name-coding-system.
24258 Decode variables system-name, emacs-build-system, user-login-name, and
24259 user-full-name by mac-system-coding-system on Mac OS Classic.
24260 (mac-system-coding-system): New variable.
24261
24262 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
24263
24264 * startup.el (command-line): Handle `xterm-mouse-mode' before
24265 reading init file.
24266
24267 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
24268
24269 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
24270
24271 * progmodes/sh-script.el (sh-here-document-word): Make it a
24272 defcustom. Doc fix.
24273 (sh-add): Bash uses $(( )) for arithmetic.
24274 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
24275 (sh-maybe-here-document): Remove quotes and leading whitespace
24276 from heredoc word when closing. Indent heredoc with tabs if word
24277 starts with "-".
24278
24279 2005-04-13 Richard M. Stallman <rms@gnu.org>
24280
24281 * simple.el (undo): Fix previous change.
24282
24283 * custom.el (defface): Doc fix.
24284
24285 2005-04-13 Lute Kamstra <lute@gnu.org>
24286
24287 * Makefile.in (DONTCOMPILE): Remove list.
24288 (compile, compile-always): Don't use DONTCOMPILE.
24289 (update-authors): Load the library in which batch-update-authors
24290 is defined.
24291 * makefile.w32-in (DONTCOMPILE): Remove list.
24292 (compile, compile-always): Fix comments.
24293 (update-authors): Load the library in which batch-update-authors
24294 is defined.
24295
24296 * generic-x.el (generic-mode-ini-file-find-file-hook):
24297 Rename to ini-generic-mode-find-file-hook.
24298 Keep generic-mode-ini-file-find-file-hook as an alias.
24299 (ini-generic-mode-find-file-hook): Rename from
24300 generic-mode-ini-file-find-file-hook. Fix docstring.
24301 (ini-generic-mode): Docstring change.
24302 (bat-generic-mode-run-as-comint): Silence the byte compiler.
24303
24304 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
24305 called from lisp.
24306
24307 * generic.el: Move to the emacs-lisp subdir.
24308
24309 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
24310
24311 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
24312 and C-S- function and cursor motion keys.
24313
24314 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
24315
24316 * startup.el (command-line): Enable Xterm Mouse mode by default.
24317 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
24318 for Custom. No longer show "Mouse" in mode line when enabled.
24319 Doc fix.
24320
24321 2005-04-12 Kim F. Storm <storm@cua.dk>
24322
24323 * emulation/cua-base.el (cua-rectangle-face)
24324 (cua-rectangle-noselect-face): Define face attributes here.
24325
24326 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
24327
24328 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
24329
24330 * startup.el (command-line): Turn off blinking cursor if
24331 cursorBlink in resources is off or false.
24332
24333 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24334
24335 * term/mac-win.el (dnd): Require dnd.
24336 (mac-drag-n-drop): Call dnd-handle-one-url.
24337 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
24338 (kTextEncodingISOLatin2): Remove constants.
24339 (mac-script-code-coding-systems): New constant.
24340 (mac-handle-language-change): New function.
24341 (special-event-map): Bind it to `language-change' event.
24342 (mac-centraleurroman, mac-cyrillic): New coding systems.
24343 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
24344 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
24345 and mac-cyrillic-encoder to encode-mac-centraleurroman and
24346 encode-mac-cyrillic, respectively.
24347
24348 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
24349
24350 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
24351 Don't set overlay-arrow-string to "=>" as this is done
24352 globally in C now.
24353
24354 2005-04-12 Lute Kamstra <lute@gnu.org>
24355
24356 * generic-x.el (rc-generic-mode, rul-generic-mode):
24357 Fix auto-mode-alist entries.
24358 (etc-fstab-generic-mode): Tweak fontification.
24359
24360 * generic.el (generic-make-keywords-list): Fix docstring.
24361 (generic-mode-internal): Simplify generic-font-lock-keywords.
24362
24363 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
24364
24365 * whitespace.el (whitespace-buffer-leading)
24366 (whitespace-buffer-trailing): Revert the incorrect test inversion.
24367 However, fix the highlight area for the leading and
24368 trailing whitespaces to show space.
24369
24370 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
24371
24372 * whitespace.el (whitespace-version): Bump to 3.5
24373
24374 (whitespace-buffer-leading, whitespace-buffer-trailing):
24375 Invert sense of the test to highlight the whitespace.
24376
24377 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
24378
24379 * progmodes/gud.el (gud-display-line): GUD uses its own
24380 overlay arrow now so don't set overlay-arrow-string.
24381 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
24382
24383 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
24384
24385 * term.el (term-ansi-current-bold, term-ansi-current-underline)
24386 (term-ansi-current-reverse, term-ansi-current-invisible)
24387 (term-ansi-face-already-done): Change to boolean.
24388 (term-reset-terminal, term-handle-colors-array): Handle the above
24389 vars accordingly.
24390 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
24391 (term-emulate-terminal): Use the new name.
24392
24393 * faces.el (secondary-selection): Use yellow1, not yellow.
24394 (trailing-whitespace): Use red1, not red.
24395
24396 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
24397
24398 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
24399 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
24400 (dired-dnd-handle-file): Call dnd-get-local-file-uri
24401
24402 * cus-edit.el (dnd): New group.
24403
24404 * term/w32-win.el (dnd): Require dnd
24405 (w32-drag-n-drop): Call dnd-handle-one-url.
24406
24407 * x-dnd.el: Require dnd.
24408 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
24409 Call dnd-handle-one-url.
24410 (x-dnd-types-alist, x-dnd-insert-utf8-text)
24411 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
24412 to dnd-insert-text.
24413 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
24414 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
24415 (x-dnd-get-local-file-name, x-dnd-open-local-file)
24416 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
24417
24418 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
24419
24420 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24421
24422 * wdired.el: Doc fixes.
24423 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
24424 (wdired-use-dired-vertical-movement): Rename from
24425 wdired-always-move-to-filename-beginning.
24426 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
24427 (wdired-change-to-wdired-mode): Change mode name.
24428 (wdired-newline): Delete.
24429
24430 2005-04-11 Richard M. Stallman <rms@gnu.org>
24431
24432 * whitespace.el (whitespace-highlight-the-space):
24433 Don't call whitespace-unhighlight-the-space here.
24434
24435 * simple.el (undo): Record t in undo-equiv-table
24436 for the redo record made by an undo-in-region.
24437
24438 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
24439
24440 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
24441 (gdb-frame-inferior-io-buffer): New Functions to control
24442 display of separate IO buffer.
24443 (menu): Add them to menu-bar.
24444 (gdb-display-buffer): Check for buffer another frame.
24445 Protect GUD buffer.
24446 (gdb-setup-windows): Create IO buffer if not already there.
24447 (gdb-memory-mode): Remove purecopy noops.
24448
24449 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
24450
24451 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
24452 and pass to self-insert-command.
24453
24454 2005-04-11 Lute Kamstra <lute@gnu.org>
24455
24456 * generic.el: Commentary section cleanup.
24457 (generic): Delete.
24458 (generic-use-find-file-hook, generic-lines-to-scan)
24459 (generic-find-file-regexp, generic-ignore-files-regexp)
24460 (default-generic-mode, generic-mode-find-file-hook)
24461 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
24462 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
24463 (generic-use-find-file-hook, generic-lines-to-scan)
24464 (generic-find-file-regexp, generic-ignore-files-regexp)
24465 (default-generic-mode, generic-mode-find-file-hook)
24466 (generic-mode-ini-file-find-file-hook): Move from generic.el.
24467
24468 2005-04-10 Karl Fogel <kfogel@red-bean.com>
24469
24470 * bookmark.el (bookmark-write-file): Catch errors writing file.
24471 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
24472
24473 2005-04-10 Richard M. Stallman <rms@gnu.org>
24474
24475 * startup.el (fancy-splash-tail): Update copyright year.
24476 (command-line): Split part of -Q into -D.
24477 (emacs-basic-display): New defvar.
24478 (fancy-splash-text): Correct name of menu item.
24479
24480 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
24481
24482 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
24483 lines in one node.
24484
24485 * comint.el (comint-send-input): New arg ARTIFICIAL.
24486 Callers in this file changed.
24487
24488 * abbrev.el (define-abbrevs): Read system abbrevs properly.
24489
24490 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
24491
24492 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
24493
24494 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
24495 `ldap-search-internal'.
24496
24497 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
24498
24499 * files.el (set-auto-mode-1): Use line-end-position.
24500
24501 * international/latin-1.el:
24502 * international/latin-2.el:
24503 * international/latin-3.el:
24504 * international/latin-4.el:
24505 * international/latin-5.el:
24506 * international/latin-8.el:
24507 * international/latin-9.el: Give punctuation syntax to NBSP.
24508
24509 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
24510 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
24511 Use char-classes to accept non-ascii letters, accepted in some recent
24512 bibtex implementations.
24513
24514 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
24515
24516 * custom.el (custom-set-minor-mode): Any non-nil value for the
24517 variable should enable the mode when set through Custom.
24518
24519 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
24520
24521 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
24522 TAB binding so tab-always-indent is obeyed.
24523 (vhdl-minibuffer-local-map): Move initialization into declaration.
24524 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
24525 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
24526 (vhdl-hooked-abbrev): Avoid test for XEmacs.
24527 (vhdl-current-line): Use line-beginning-position.
24528 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
24529 with-output-to-temp-buffer, so the current position can be recorded.
24530
24531 2005-04-10 Masatake YAMATO <jet@gyve.org>
24532
24533 * progmodes/compile.el (compilation-error-regexp-alist-alist):
24534 Add regexp for gcov.
24535
24536 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
24537
24538 * calendar/time-date.el (time-to-seconds, seconds-to-time)
24539 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
24540 syntax which Emacs 20 doesn't support.
24541
24542 2005-04-09 Richard M. Stallman <rms@gnu.org>
24543
24544 * help.el (describe-key-briefly, describe-key):
24545 Replace strings as event types with "(any string)".
24546
24547 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
24548
24549 * arc-mode.el (archive-mode-map): Move initialization into
24550 the declaration. Override *all* bindings of `undo'.
24551 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
24552
24553 2005-04-09 Jay Belanger <belanger@truman.edu>
24554
24555 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
24556
24557 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
24558
24559 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
24560 (xterm-register-default-colors): Update color values computation
24561 to match xterm-200.
24562
24563 2005-04-09 Kenichi Handa <handa@m17n.org>
24564
24565 * international/code-pages.el (iso-latin-7): Fix the map.
24566
24567 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
24568
24569 * emacs-lisp/lisp.el (defun-prompt-regexp)
24570 (parens-require-spaces, buffer-end, end-of-defun)
24571 (insert-parentheses): Doc fixes.
24572
24573 2005-04-08 Kim F. Storm <storm@cua.dk>
24574
24575 * comint.el (comint-highlight-prompt): Fix face spec.
24576 * hi-lock.el (hi-green): Likewise.
24577
24578 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
24579
24580 * cus-edit.el (custom-modified-face):
24581 * comint.el (comint-highlight-input): Fix previous changes.
24582 * term.el (term-handle-ansi-escape): Add a comment.
24583
24584 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
24585
24586 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
24587 in the buffer and in whitespace-highlighted-space.
24588 (whitespace-unhighlight-the-space): Simplify.
24589 (whitespace-buffer): Simplify.
24590
24591 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
24592
24593 * textmodes/table.el (table-cell-face): Add special case for
24594 displays supporting a high number of colors.
24595 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
24596 (vhdl-font-lock-reserved-words-face)
24597 (vhdl-speedbar-architecture-face)
24598 (vhdl-speedbar-instantiation-face)
24599 (vhdl-speedbar-architecture-selected-face)
24600 (vhdl-speedbar-instantiation-selected-face): Likewise.
24601 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
24602 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
24603 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
24604 (ebrowse-root-class-face, ebrowse-member-attribute-face)
24605 (ebrowse-progress-face): Likewise.
24606 * progmodes/compile.el (compilation-info-face): Likewise.
24607 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
24608 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
24609 * calendar/calendar.el (diary-face): Likewise.
24610 * woman.el (woman-italic-face, woman-bold-face)
24611 (woman-unknown-face): Likewise.
24612 * wid-edit.el (widget-button-pressed-face): Likewise.
24613 * whitespace.el (whitespace-highlight-face): Likewise.
24614 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
24615 * pcvs-info.el (cvs-marked-face): Likewise.
24616 * info.el (info-xref): Likewise.
24617 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
24618 * hilit-chg.el (highlight-changes-face)
24619 (highlight-changes-delete-face): Likewise.
24620 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
24621 (hi-red-b): Likewise.
24622 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
24623 * font-lock.el (font-lock-keyword-face)
24624 (font-lock-function-name-face, font-lock-warning-face): Likewise.
24625 * cus-edit.el (custom-invalid-face, custom-modified-face)
24626 (custom-set-face, custom-changed-face, custom-variable-tag-face)
24627 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
24628 * comint.el (comint-highlight-prompt): Likewise.
24629
24630 2005-04-08 Lute Kamstra <lute@gnu.org>
24631
24632 * font-lock.el (font-lock-keywords): Docstring fixes.
24633
24634 2005-04-08 Kenichi Handa <handa@m17n.org>
24635
24636 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
24637 chars are more than a limit, print " and more..." at the tail.
24638
24639 2005-04-08 Kim F. Storm <storm@cua.dk>
24640
24641 * emacs-lisp/authors.el (authors-aliases): Update list.
24642 (authors-ignored-files): New list.
24643 (authors-fixed-entries): Fix typo.
24644 (authors-renamed-files-alist): Update list.
24645 (authors-add): Check authors-ignored-files.
24646
24647 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
24648
24649 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
24650 optional, to ensure backward compatibility.
24651
24652 2005-04-08 Stephen Eglen <stephen@gnu.org>
24653
24654 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
24655
24656 2005-04-08 Kim F. Storm <storm@cua.dk>
24657
24658 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
24659
24660 * mouse.el (mouse-on-link-p): Doc fix.
24661
24662 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
24663
24664 * ielm.el (ielm-prompt-read-only): Doc fix.
24665
24666 * comint.el (comint-prompt-read-only): Doc fix.
24667
24668 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
24669
24670 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
24671 ensure dired always handles wildcards passed to ffap.
24672 (find-file-at-point): Use it.
24673 (ffap-dired-wildcards): Doc fix.
24674
24675 2005-04-07 Juri Linkov <juri@jurta.org>
24676
24677 * simple.el (next-error-overlay-arrow-position): New defvar.
24678 Put "=>" on its property `overlay-arrow-string'. Add it to
24679 `overlay-arrow-variable-list'.
24680
24681 * progmodes/compile.el (compilation-setup):
24682 Set `next-error-overlay-arrow-position' to nil. Also set it to
24683 nil in the local hook `kill-buffer-hook'. Make local variable
24684 `overlay-arrow-string' and set it to "=>".
24685 (compilation-goto-locus): Set BOL position to
24686 `next-error-overlay-arrow-position' instead of
24687 `overlay-arrow-position'.
24688
24689 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
24690 locally instead of adding it to the global hook.
24691 (Info-kill-buffer): Move up.
24692
24693 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
24694
24695 * term/xterm.el (xterm-standard-colors): Update color values from
24696 xterm-200.
24697
24698 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
24699
24700 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
24701
24702 * fast-lock.el:
24703 * lazy-lock.el: Move them to the obsolete subdir.
24704
24705 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
24706
24707 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
24708 (wdired-add-replace-advice): Remove.
24709 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
24710
24711 2005-04-06 Kim F. Storm <storm@cua.dk>
24712
24713 * startup.el (command-line): Add --bare-bones alias for -Q.
24714
24715 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24716
24717 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
24718 create the startup fontset if a font specification ends with
24719 `mac-roman'.
24720
24721 2005-04-06 Lute Kamstra <lute@gnu.org>
24722
24723 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
24724 change.
24725
24726 * emacs-lisp/copyright.el (copyright-update-year): Replace the
24727 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
24728
24729 2005-04-05 Lute Kamstra <lute@gnu.org>
24730
24731 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
24732 (define-generic-mode): Ditto. Fix debug declaration.
24733
24734 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
24735 Put them in the generic-x group.
24736
24737 * calendar/timeclock.el (timeclock): Doc fix.
24738
24739 * generic.el (define-generic-mode): Don't use custom-current-group.
24740 Document default :group value.
24741 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
24742 (define-global-minor-mode): Don't use custom-current-group.
24743
24744 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
24745
24746 * startup.el (command-line-1): Display startup-echo-area-message
24747 when fancy splash screen is in use.
24748
24749 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
24750 (sh-escaped-newline): New face.
24751 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
24752 newline, and use sh-escaped-newline face.
24753
24754 * progmodes/tcl.el (tcl-escaped-newline): New face.
24755 (tcl-builtin-list): New variable.
24756 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
24757 newlines. Fix keywords subexpression number.
24758
24759 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
24760
24761 * textmodes/org.el (org-diary-default-entry): Fix call to
24762 `add-to-diary-entry'.
24763
24764 2005-04-05 Kim F. Storm <storm@cua.dk>
24765
24766 * ediff-init.el: Use (featurep 'xemacs).
24767
24768 2005-04-05 David Ponce <david@dponce.com>
24769
24770 * cus-edit.el (face): Derive from symbol widget. Display sample
24771 of the current face on the fly.
24772 (widget-face-sample-face-get, widget-face-notify): New functions.
24773 (widget-face-value-create): Remove.
24774
24775 * wid-edit.el (widget-field-end): Temporarily remove field
24776 narrowing before to call `get-char-property'.
24777
24778 2005-04-04 Jay Belanger <belanger@truman.edu>
24779
24780 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
24781 (math-read-subscripts): New variable.
24782 (math-read-preprocess-string): Process subscripts.
24783
24784 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
24785
24786 * comint.el (comint-prompt-read-only): Doc fix.
24787
24788 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
24789 `-1'. Doc fix.
24790
24791 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
24792
24793 * textmodes/org.el (org-insert-mode-line-in-empty-file):
24794 Change default value to nil.
24795
24796 2005-04-04 Lute Kamstra <lute@gnu.org>
24797
24798 * autorevert.el (auto-revert-mode): Specify :group.
24799 * battery.el (display-battery-mode): Specify :group.
24800 * diff-mode.el (diff-minor-mode): Specify :group.
24801 * font-core.el (font-lock-mode): Specify :group.
24802 * hl-line.el (hl-line-mode): Specify :group.
24803 * iimage.el (iimage): New customization group.
24804 (iimage-mode): Specify :group.
24805 * longlines.el (longlines-mode): Specify :group.
24806 * master.el: Don't require easy-mmode.
24807 (master): New customization group.
24808 (master-mode): Specify :group.
24809 * msb.el (msb-mode): Specify :group.
24810 * reveal.el (reveal-mode): Specify :group.
24811 * simple.el (next-error-follow-minor-mode): Specify :group.
24812 * smerge-mode.el (smerge-mode): Specify :group.
24813 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
24814 * emulation/cua-base.el (cua-mode): Specify :group.
24815 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
24816 * language/thai-util.el (thai-auto-composition-mode)
24817 (thai-word-mode): Specify :group.
24818 * mail/supercite.el (sc-minor-mode): Specify :group.
24819 * progmodes/cwarn.el (cwarn-mode): Specify :group.
24820 * progmodes/flymake.el (flymake-mode): Specify :group.
24821 * progmodes/glasses.el (glasses-mode): Specify :group.
24822 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
24823 * textmodes/enriched.el (enriched-mode): Specify :group.
24824 * textmodes/refill.el (refill-mode): Specify :group.
24825
24826 * add-log.el (change-log-font-lock-keywords): Names in
24827 parenthesized lists can contain spaces.
24828
24829 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
24830
24831 * startup.el (fancy-splash-text): Shorten default text of
24832 "Emacs Tutorial" line. Also, if the current language env
24833 indicates an available tutorial file other than TUTORIAL,
24834 extract its title and append it to the line in parentheses.
24835 (fancy-splash-insert): If arg is a thunk, funcall it.
24836
24837 2005-04-04 Jay Belanger <belanger@truman.edu>
24838
24839 * calc.el (calc-language-alist): Add tags to customization type.
24840
24841 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
24842
24843 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
24844 Doc fix.
24845
24846 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
24847
24848 * add-log.el (change-log-font-lock-keywords): The manual
24849 describing a Change Log entry, says: (...) "Aside from these
24850 header lines, every line in the change log starts with a space or
24851 a tab.". The font-lock was not highlighting lines started with
24852 spaces, added support for it.
24853
24854 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
24855
24856 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
24857 (bibtex-generate-url-list): Update docstring accordingly. Put the
24858 complex example in the docstring.
24859 (bibtex-font-lock-url): Use pop.
24860
24861 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
24862
24863 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
24864
24865 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
24866
24867 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
24868
24869 * filesets.el (filesets-set-default): Doc fix.
24870
24871 2005-04-03 Lute Kamstra <lute@gnu.org>
24872
24873 * generic.el (define-generic-mode): Add argument to specify
24874 keywords for defcustom.
24875 (default-generic-mode): Specify :group.
24876
24877 * generic-x.el: Specify :group for all generic modes.
24878
24879 * desktop.el (desktop-no-desktop-file-hook)
24880 (desktop-after-read-hook): Doc fix.
24881
24882 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
24883
24884 * simple.el (visible-mode): Use explicit :group keyword.
24885 This changes the group of `visible-mode-hook' from paren-blinking
24886 to editing-basics.
24887
24888 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
24889
24890 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
24891 mailbox specifications as well as URLs.
24892 (rmail-insert-inbox-text): Remove unused conditional branches.
24893
24894 2005-04-01 Jay Belanger <belanger@truman.edu>
24895
24896 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
24897 (calc-gnuplot-print-command): Move definitions to calc.el.
24898
24899 * calc/calc-embed.el (calc-embedded-announce-formula)
24900 (calc-embedded-open-formula, calc-embedded-close-formula)
24901 (calc-embedded-open-word, calc-embedded-close-word)
24902 (calc-embedded-open-plain, calc-embedded-close-plain)
24903 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
24904 (calc-embedded-open-mode, calc-embedded-close-mode):
24905 Move definitions to calc.el.
24906
24907 * calc/calc.el (calc-settings-file, calc-language-alist):
24908 Make customizable.
24909 (calc-embedded-announce-formula, calc-embedded-open-formula)
24910 (calc-embedded-close-formula, calc-embedded-open-word)
24911 (calc-embedded-close-word, calc-embedded-open-plain)
24912 (calc-embedded-close-plain, calc-embedded-open-new-formula)
24913 (calc-embedded-close-new-formula, calc-embedded-open-mode)
24914 (calc-embedded-close-mode, calc-gnuplot-name)
24915 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
24916 from other files and make customizable.
24917
24918 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
24919
24920 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
24921 Use buffer-live-p.
24922 (cvs-mode-run): Don't call cvs-update-header here.
24923 (cvs-run-process): Call cvs-update-header.
24924 Use process properties for cvs-postprocess and cvs-buffer so that
24925 the sentinel can behave better if the temp buffer is killed.
24926 Use a pipe rather than a tty, to better handle unexpected prompts.
24927 (cvs-sentinel): Rewrite. Call cvs-update-header.
24928
24929 2005-04-01 Andre Spiegel <spiegel@gnu.org>
24930
24931 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
24932 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
24933
24934 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
24935
24936 * generic.el (define-generic-mode): Add indentation rule.
24937
24938 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
24939
24940 * files.el (mode-require-final-newline): Make Custom correctly
24941 report a nil value and allow to set it to nil via Custom.
24942 Doc fix.
24943
24944 2005-04-01 Kenichi Handa <handa@m17n.org>
24945
24946 * international/characters.el: Enable the correct case setting for
24947 dotless-i and dotted-I.
24948
24949 2005-04-01 Kim F. Storm <storm@cua.dk>
24950
24951 * ido.el (ido-file-internal): Fall back to non-ido command if
24952 initial directory is on slow ftp (or tramp) host.
24953
24954 2005-03-31 Richard M. Stallman <rms@gnu.org>
24955
24956 * emacs-lisp/autoload.el (make-autoload):
24957 Handle define-global-minor-mode.
24958
24959 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
24960 Rename from easy-mmode-define-global-mode.
24961 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
24962
24963 * progmodes/scheme.el (scheme-mode-syntax-table):
24964 Update syntax of | and # for two-character comment syntax.
24965
24966 2005-03-31 Lute Kamstra <lute@gnu.org>
24967
24968 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
24969 (define-minor-mode): Call custom-current-group at load-time.
24970
24971 * generic.el (define-generic-mode): Add debug declaration.
24972 Add defcustom for the mode hook.
24973 (generic-mode-internal): Use run-mode-hooks.
24974
24975 2005-03-31 Kim F. Storm <storm@cua.dk>
24976
24977 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
24978 (mouse-fixup-help-message): New defun called by show_help_echo
24979 to fixup mouse-2 prefix in help messages when applicable.
24980
24981 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
24982
24983 2005-03-31 Kenichi Handa <handa@m17n.org>
24984
24985 * language/thai-word.el (thai-find-word-ends): Pay attention to
24986 the case that we reach the end of buffer.
24987
24988 * textmodes/fill.el (fill-text-properties-at): New function.
24989 (fill-newline): Use fill-text-properties-at instead of
24990 text-properties-at.
24991
24992 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
24993
24994 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
24995 not comint-quote-filename.
24996
24997 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
24998
24999 * help-fns.el (help-with-tutorial): Revert last change.
25000
25001 2005-03-31 Kim F. Storm <storm@cua.dk>
25002
25003 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
25004
25005 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
25006
25007 * calendar/cal-china.el: Update reference to "Calendrical
25008 Calculations" book; there's a new edition.
25009 * calendar/cal-coptic.el: Likewise.
25010 * calendar/cal-french.el: Likewise.
25011 * calendar/cal-hebrew.el: Likewise.
25012 * calendar/cal-islam.el: Likewise.
25013 * calendar/cal-iso.el: Likewise.
25014 * calendar/cal-julian.el: Likewise.
25015 * calendar/cal-mayan.el: Likewise.
25016 * calendar/cal-persia.el: Likewise.
25017 * calendar/calendar.el: Likewise.
25018 * calendar/holidays.el: Likewise.
25019 * calendar/lunar.el: Likewise.
25020 * calendar/solar.el: Likewise.
25021
25022 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
25023 white space from doc string.
25024
25025 2005-03-30 Jay Belanger <belanger@truman.edu>
25026
25027 * calc/calc-help.el (calc-full-help): Remove email address.
25028
25029 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
25030
25031 * help-fns.el (help-with-tutorial): Delete title line.
25032
25033 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
25034
25035 * calendar/cal-x.el (calendar-one-frame-setup)
25036 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
25037 rather than `symbol' for set-window-dedicated-p.
25038
25039 * calendar/appt.el (appt-buffer-name): Make it a constant.
25040 (appt-add): Doc fix.
25041
25042 * filesets.el (filesets-menu-path, filesets-menu-before)
25043 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
25044 (filesets-menu-cache-file): Use directory ~/.emacs.d.
25045 (filesets-add-submenu): Delete and use add-submenu instead.
25046
25047 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
25048
25049 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
25050 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
25051 (org-diary-default-entry): New function.
25052 (org-get-entries-from-diary): Better parsing of diary entries.
25053 (org-agenda-check-no-diary): New function.
25054 ("diary-lib"): Advice to function `add-to-diary-list', to allow
25055 linking to diary entries.
25056 (org-agenda-execute-calendar-command): New function.
25057 (org-agenda): Improve visible section in window.
25058 Use `org-fit-agenda-window'.
25059 (org-fit-agenda-window): New option.
25060 (org-move-subtree-down): Better handling of empty lines
25061 at end of subtree.
25062 (org-cycle): Numeric prefix is interpreted now as show-subtree N
25063 levels up.
25064 (org-fontify-done-headline): New option.
25065 (org-headline-done-face): New face.
25066 (org-set-font-lock-defaults): Use `org-headline-done-face'.
25067 (org-table-copy-down): Rename from `org-table-copy-from-above'.
25068 When current field is non-empty, it is copied to next row.
25069 (org-table-copy-from-above): Fix bug which made it
25070 impossible to copy fields containing only a single non-white character.
25071
25072 2005-03-30 Kim F. Storm <storm@cua.dk>
25073
25074 * kmacro.el (kmacro-end-macro): Isearch may store this command
25075 into the macro -- so ignore it when executing keyboard macro.
25076
25077 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
25078
25079 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
25080
25081 2005-03-29 Kenichi Handa <handa@m17n.org>
25082
25083 * language/thai.el ("Thai"): Set setup-function and exit-function
25084 for Thai language environment.
25085
25086 * language/thai-util.el: Require thai-word.
25087 (thai-word-mode-map): New variable.
25088 (thai-word-mode): New minor mode.
25089 (setup-thai-language-environment-internal): New function.
25090 (exit-thai-language-environment-internal): New function.
25091
25092 * language/thai-word.el (thai-word-table): Declare it by defvar,
25093 use dolist to initialize it.
25094 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
25095 (thai-fill-find-break-point): New functions.
25096
25097 2005-03-29 Richard M. Stallman <rms@gnu.org>
25098
25099 * simple.el (idle-update-delay): Move definition up.
25100 (set-mark): Doc fix.
25101
25102 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
25103
25104 * longlines.el: New file.
25105
25106 * simple.el (buffer-substring-filters): New variable.
25107 (filter-buffer-substring): New function.
25108 (kill-region, copy-region-as-kill): Use it.
25109
25110 * register.el (copy-to-register, append-to-register)
25111 (prepend-to-register): Use filter-buffer-substring.
25112
25113 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
25114
25115 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
25116 (gud-filter-pending-text): Move in front of gdb.
25117 (gud-overlay-arrow-position): New variable.
25118 (gud-sentinel, gud-display-line): Use it in place of
25119 overlay-arrow-position.
25120
25121 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
25122
25123 * progmodes/fortran.el (fortran-if-indent): Doc fix.
25124 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
25125 (fortran-font-lock-keywords-4): New variable.
25126 (fortran-blocks-re, fortran-end-block-re)
25127 (fortran-start-block-re): New constants, for hideshow.
25128 (hs-special-modes-alist): Add a Fortran entry.
25129 (fortran-mode-map): Bind fortran-end-of-block,
25130 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
25131 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
25132 (fortran-looking-at-if-then, fortran-end-of-block)
25133 (fortran-beginning-of-block): New functions, for hideshow.
25134
25135 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
25136 Doc fix. Tweak regexp.
25137 (f90-beginning-of-block): Push mark first.
25138
25139 2005-03-29 Jay Belanger <belanger@truman.edu>
25140
25141 * calc/calc.el: Update copyright date.
25142 (calc-version): Increase to 2.1.
25143 (calc-version-date): Remove.
25144
25145 * calc/calc-help.el: Update copyright date.
25146 (calc-full-help): Remove reference to calc-version-date.
25147 Update copyright date.
25148
25149 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
25150
25151 * vc.el (vc-do-command): Use a pipe for async processes, so password
25152 prompts don't show up at places where the user can't reply.
25153
25154 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
25155
25156 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
25157 on the file name we pass to the inferior shell.
25158
25159 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
25160
25161 * progmodes/which-func.el (which-function): Be robust in the face of an
25162 imenu--make-index-alist failure.
25163
25164 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
25165
25166 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
25167
25168 * progmodes/python.el (python-preoutput-filter): Fix last change.
25169
25170 2005-03-29 Lute Kamstra <lute@gnu.org>
25171
25172 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
25173 functions and compiled macros.
25174 (debug-convert-byte-code): Handle macros too.
25175 (debug-on-entry-1): Don't signal an error when trying to clear a
25176 function that is not set to debug on entry.
25177
25178 2005-03-29 Jay Belanger <belanger@truman.edu>
25179
25180 * calc/calc-lang.el: Add functions to math-function-table
25181 properties of tex and math.
25182
25183 2005-03-29 Kenichi Handa <handa@m17n.org>
25184
25185 * ps-mule.el (ps-mule-plot-string): Translate characters by
25186 ps-print-translation-table.
25187 (ps-mule-begin-job): Call find-charset-region/string with
25188 ps-print-translation-table.
25189 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
25190
25191 * ps-print.el (ps-print-translation-table): New variable.
25192 (ps-plot-region): Translate characters by ps-print-translation-table.
25193
25194 2005-03-29 Juri Linkov <juri@jurta.org>
25195
25196 * simple.el (next-error-highlight-timer): New variable.
25197
25198 * progmodes/compile.el (compilation-goto-locus):
25199 Use `next-error-highlight-timer' instead of `sit-for'.
25200
25201 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
25202
25203 * mail/supercite.el (sc-mail-field): Use assoc-string.
25204 (sc-get-address): Simplify regexps.
25205
25206 * files.el (minibuffer-with-setup-hook): New macro.
25207 (find-file-read-args): Use it to avoid let-binding
25208 minibuffer-with-setup-hook (which breaks turning on/off
25209 file-name-shadow-mode while in the prompt).
25210
25211 * complete.el (PC-read-include-file-name-internal):
25212 Use test-completion.
25213
25214 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
25215
25216 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
25217
25218 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
25219
25220 * window.el (window-buffer-height): Use count-screen-lines.
25221
25222 * progmodes/python.el (python-preoutput-leftover): New var.
25223 (python-preoutput-filter): Use it.
25224 (python-send-receive): Loop until all the result has been received.
25225
25226 2005-03-28 Juri Linkov <juri@jurta.org>
25227
25228 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
25229
25230 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
25231 "Recover Crashed Session".
25232 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
25233 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
25234 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
25235 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
25236 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
25237 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
25238 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
25239 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
25240
25241 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
25242 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
25243 Ediff Sessions", "Toggle use of separate control buffer frame",
25244 "Use separate frame for Ediff control buffer".
25245
25246 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
25247 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
25248 "Rename Bookmark", "Delete Bookmark".
25249
25250 * info.el (Info-mode-menu): Remove ellipsis from "Index".
25251 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
25252 Add `:active Info-index-alternatives' to "Next Matching Item".
25253
25254 * wdired.el (wdired-change-to-wdired-mode):
25255 Mention `wdired-abort-changes' key in the initial message.
25256
25257 * international/mule.el (auto-coding-alist): Associate non-ascii
25258 image filename extensions with `no-conversion'.
25259
25260 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
25261
25262 * international/iso-acc.el:
25263 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
25264
25265 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
25266
25267 * textmodes/sgml-mode.el (html-mode): Doc update.
25268
25269 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
25270
25271 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
25272
25273 * term.el (term-move-columns): Fix face after extending a line.
25274 (term-insert-spaces): Likewise.
25275 (term-reset-terminal): Fix off by one error.
25276
25277 2005-03-26 Eli Zaretskii <eliz@gnu.org>
25278
25279 * international/mule.el (auto-coding-alist): Add .xpi files.
25280
25281 * files.el (auto-mode-alist): Add .xpi files.
25282
25283 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
25284
25285 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
25286
25287 2005-03-26 Eli Zaretskii <eliz@gnu.org>
25288
25289 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
25290
25291 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
25292
25293 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
25294 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
25295
25296 * calendar/cal-move.el (calendar-beginning-of-year): Move the
25297 cursor to Jan 1 when needed.
25298 (calendar-end-of-year): Fix -/+ typo.
25299 Reported by Chong Yidong <cyd@stupidchicken.com>.
25300
25301 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
25302
25303 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
25304
25305 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
25306 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
25307
25308 2005-03-25 Richard M. Stallman <rms@gnu.org>
25309
25310 * filesets.el (filesets-init): Add autoload.
25311
25312 * mail/mailalias.el (mail-directory): Doc fix.
25313
25314 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
25315
25316 * mail/mailalias.el (mail-directory-process): Do nothing if
25317 mail-directory-process is an atom.
25318 (mail-get-names): Ignore mail-directory-names if it is an atom.
25319 (mail-directory-process defvar): Doc fix.
25320 (mail-names): Doc fix.
25321
25322 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
25323
25324 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
25325
25326 2005-03-26 Kenichi Handa <handa@m17n.org>
25327
25328 * international/mule-util.el (detect-coding-with-priority):
25329 Call update-coding-systems-internal before detect-coding-region.
25330
25331 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
25332
25333 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
25334 (gdb-frames-mode-map): Add follow-link property.
25335
25336 2005-03-25 Jay Belanger <belanger@truman.edu>
25337
25338 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
25339 for variables.
25340
25341 2005-03-25 Juri Linkov <juri@jurta.org>
25342
25343 * image-mode.el: Optimize image filename extension regexps in
25344 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
25345 in `auto-mode-alist'.
25346 (image-mode): Add `image-toggle-display-text' to local hook
25347 `change-major-mode-hook'. Display the image as an image by
25348 default. Set `cursor-type' and `truncate-lines' if the image
25349 is already displayed. Take into account the current mode (image
25350 or text) in message.
25351 (image-minor-mode): New minor mode.
25352 (image-mode-maybe, image-toggle-display-text): New functions.
25353 (image-toggle-display): Use called-interactively-p.
25354 Let-bind `inhibit-read-only' to t.
25355
25356 * image-mode.el (image-minor-mode): Set `cursor-type' and
25357 `truncate-lines' if the image is already displayed. Add turning
25358 image-minor-mode off to `change-major-mode-hook'. Add message.
25359 Call `image-toggle-display-text' after turning image-minor-mode off.
25360
25361 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
25362
25363 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
25364 Terminal.app, use utf-8.
25365 (set-display-table-and-terminal-coding-system): Add coding-system arg.
25366 (set-locale-environment): Use it.
25367
25368 * term/xterm.el: Undo last change, better done in mule-cmds.el.
25369
25370 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
25371
25372 * progmodes/python.el (python-close-block-statement-p)
25373 (python-outdent-p, python-current-defun): Use symbol-end.
25374
25375 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
25376
25377 * files.el (save-some-buffers): Doc fix.
25378
25379 2005-03-25 Werner Lemberg <wl@gnu.org>
25380
25381 * complete.el, thumbs.el: Replace `legal' with `valid'.
25382 * calendar/calendar.el: Replace `legal' with `valid'.
25383 * emacs-lisp/advice.el: Replace `legal' with `valid'.
25384 * mail/supercite.el: Replace `legal' with `valid'.
25385 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
25386 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
25387 Replace `legal' with `valid'.
25388 * textmodes/reftex-vars.el, textmodes/reftex.el:
25389 Replace `legal' with `valid'.
25390
25391 2005-03-25 Werner Lemberg <wl@gnu.org>
25392
25393 * calc/calc-forms.el, calc/calc-sel.el
25394 * midnight.el, vc-cvs.el
25395 * emacs-lisp/cl-macs.el
25396 * emulation/vip.el
25397 * eshell/esh-io.el, eshell/esh-var.el
25398 * mail/supercite.el
25399 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
25400 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
25401 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
25402 * progmodes/sh-script.el, progmodes/xscheme.el
25403 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
25404 * textmodes/reftex-index.el, textmodes/reftex-parse.el
25405 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
25406 * textmodes/reftex.el, textmodes/org.el:
25407 Replace `illegal' with `invalid'.
25408
25409 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
25410
25411 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
25412 (flymake-find-buildfile, flymake-find-possible-master-files)
25413 (flymake-check-include, flymake-parse-line): Replace loops over the
25414 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
25415
25416 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
25417 Substitute file-name-as-directory in the rest of the file.
25418 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
25419 (flymake-replace-region): Remove unused arg `buffer'.
25420 (flymake-check-patch-master-file-buffer): Update calls to it.
25421 (flymake-add-err-info): Remove unused var `count'.
25422 (flymake-mode): Use define-minor-mode.
25423
25424 * progmodes/flymake.el: Use with-current-buffer.
25425 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
25426 flymake-replace-regexp-in-string, flymake-line-beginning-position)
25427 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
25428 Avoid testing for `xemacs'.
25429 (flymake-nop): Move.
25430 (flymake-region-has-flymake-overlays): Return the computed value.
25431 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
25432 Remove unused var `endline'.
25433 (flymake-get-line-count): Remove unused function.
25434 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
25435
25436 * emulation/vi.el:
25437 * generic.el:
25438 * hilit-chg.el (global-highlight-changes):
25439 * hi-lock.el (hi-lock-mode):
25440 * follow.el: find-file-hooks -> find-file-hook.
25441
25442 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
25443
25444 2005-03-24 Juri Linkov <juri@jurta.org>
25445
25446 * dired.el (dired-mode-map): Add menu item "Compare directories"
25447 for dired-compare-directories.
25448
25449 * dired-aux.el (dired-compare-directories): Add autoload cookie.
25450 Doc fix. Replace `read-file-name' with `read-directory-name'.
25451
25452 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
25453
25454 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
25455
25456 2005-03-24 Jay Belanger <belanger@truman.edu>
25457
25458 * calc/calc-embed.el (calc-embedded-mode-change): Save all
25459 relevant mode settings in calc-embedded-original-modes when modes
25460 are permanently changed.
25461
25462 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
25463
25464 * autoinsert.el: find-file-hooks -> find-file-hook.
25465
25466 2005-03-24 Lute Kamstra <lute@gnu.org>
25467
25468 * generic.el (generic-font-lock-defaults): Make it obsolete.
25469 (generic-font-lock-keywords): New variable to replace
25470 generic-font-lock-defaults.
25471 (generic-mode-set-font-lock): Delete it.
25472 (generic-mode-internal): Don't call generic-mode-set-font-lock.
25473 (generic-bracket-support): Add docstring.
25474
25475 * generic-x.el: Rename generic-font-lock-defaults to
25476 generic-font-lock-keywords throughout.
25477 (mailagent-rules-setup-function): Delete it.
25478 (mailagent-rules-generic-mode): Use anonymous function instead.
25479 (show-tabs-generic-mode-font-lock-defaults-1)
25480 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
25481 Quote faces.
25482 (show-tabs-tab-face, show-tabs-space-face): Specify background,
25483 not foreground.
25484
25485 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
25486 Recognize define-generic-mode.
25487
25488 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
25489
25490 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
25491 if there's no completion table.
25492
25493 2005-03-23 Miles Bader <miles@gnu.org>
25494
25495 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
25496 Remove tty-specific variants, as they're no longer needed.
25497
25498 2005-03-23 Lute Kamstra <lute@gnu.org>
25499
25500 * generic-x.el: Code cleanup: make args constant whenever possible.
25501 (installshield-statement-keyword-list)
25502 (installshield-system-functions-list)
25503 (installshield-system-variables-list, installshield-types-list)
25504 (installshield-funarg-constants-list): Make them constants.
25505
25506 * generic.el (generic-make-keywords-list): Add autoload cookie.
25507
25508 * calendar/time-date.el: Add comment on time value formats.
25509 Don't require parse-time.
25510 (with-decoded-time-value): New macro.
25511 (encode-time-value): New function.
25512 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
25513 (days-to-time): Return a valid time value when arg is huge.
25514 (time-since): Use time-subtract.
25515 (time-to-number-of-days): Use time-to-seconds.
25516
25517 2005-03-23 David Ponce <david@dponce.com>
25518
25519 * recentf.el (recentf-keep): New option.
25520 (recentf-menu-action): Default to `find-file'.
25521 (recentf-keep-non-readable-files-flag)
25522 (recentf-keep-non-readable-files-p)
25523 (recentf-file-readable-p, recentf-find-file)
25524 (recentf-cleanup-remote): Remove.
25525 (recentf-include-p): More robust.
25526 (recentf-keep-p): New function.
25527 (recentf-remove-if-non-kept): Rename from
25528 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
25529 All callers updated.
25530 (recentf-menu-items-for-commands): Fix help string.
25531 (recentf-track-closed-file): Update. Doc fix.
25532 (recentf-cleanup): Update. Count removed files. Doc fix.
25533
25534 2005-03-23 Kim F. Storm <storm@cua.dk>
25535
25536 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
25537 Don't inherit from fringe face (now happens automatically).
25538
25539 2005-03-22 Kim F. Storm <storm@cua.dk>
25540
25541 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
25542 position values.
25543
25544 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
25545
25546 * menu-bar.el (showhide-date-time): Remove.
25547 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
25548 (menu-bar-make-mm-toggle): Simplify.
25549
25550 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
25551
25552 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
25553 Accept qualified variable and function names.
25554
25555 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
25556
25557 * bindings.el (completion-ignored-extensions):
25558 Remove ".lis" for `vax-vms'.
25559
25560 2005-03-22 Andreas Schwab <schwab@suse.de>
25561
25562 * generic-x.el: Revert last change.
25563 * ldefs-boot.el: Update.
25564
25565 2005-03-22 Jay Belanger <belanger@truman.edu>
25566
25567 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
25568 (calc-embedded-save-original-modes)
25569 (calc-embedded-restore-original-modes): New functions.
25570 (calc-do-embedded): Save original modes when entering embedded mode
25571 and restore when leaving embedded mode.
25572 (calc-embedded-modes-change): Change the value of
25573 calc-embedded-original-modes to reflect permanent changes.
25574
25575 2005-03-22 Lute Kamstra <lute@gnu.org>
25576
25577 * generic-x.el: Require generic again.
25578
25579 2005-03-22 Miles Bader <miles@gnu.org>
25580
25581 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
25582 Tweak details to look good on both ttys and bitmap displays, light
25583 or dark background, etc.
25584
25585 2005-03-21 Kim F. Storm <storm@cua.dk>
25586
25587 * tooltip.el (tooltip-show-help-function): Check car and cdr of
25588 mouse position.
25589
25590 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
25591
25592 * icomplete.el: Don't forcibly turn on the mode upon load.
25593 (icomplete-mode): Use define-minor-mode.
25594 (icomplete-eoinput): Default to nil.
25595 (icomplete-minibuffer-setup): Remove autoload.
25596 (icomplete-tidy): Simplify.
25597 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
25598 in the initial state or if the user has modified the field.
25599 Fix handling of icomplete-max-delay-chars.
25600 Remove code that handles the oddball case where
25601 minibuffer-completion-table is an integer.
25602 Wrap icomplete-completions in while-no-input in case building
25603 completions takes more time than expected.
25604 (icomplete-completions): Simplify.
25605
25606 2005-03-21 Richard M. Stallman <rms@gnu.org>
25607
25608 * jka-compr.el (jka-compr-really-do-compress):
25609 Make variable buffer-local.
25610
25611 * image-mode.el: Handle .xpm files too.
25612 (image-toggle-display): Preserve modification flag.
25613
25614 * help.el (where-is): Don't mention aliases with no key bindings.
25615
25616 2005-03-21 Lute Kamstra <lute@gnu.org>
25617
25618 * generic.el: Fix commentary section. Don't require cl for
25619 compilation.
25620 (generic-mode-list): Add autoload cookie.
25621 (generic-use-find-file-hook, generic-lines-to-scan)
25622 (generic-find-file-regexp, generic-ignore-files-regexp)
25623 (generic-mode, generic-mode-find-file-hook)
25624 (generic-mode-ini-file-find-file-hook): Fix docstrings.
25625 (define-generic-mode): Make it a defmacro. Fix docstring.
25626 (generic-mode-internal): Code cleanup. Add autoload cookie.
25627 (generic-mode-set-comments): Code cleanup.
25628 * generic-x.el: Don't prevent compilation. Don't require generic.
25629 Follow coding conventions. Minor code cleanup.
25630 (etc-fstab-generic-mode): Add some keywords.
25631 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
25632 define-generic-mode like a function declaration.
25633
25634 2005-03-21 Jay Belanger <belanger@truman.edu>
25635
25636 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
25637 changing modes.
25638
25639 2005-03-21 Sam Steingold <sds@gnu.org>
25640
25641 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
25642
25643 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
25644
25645 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
25646 Add underscore to "f$ lexicals" regexp.
25647
25648 2005-03-20 Juri Linkov <juri@jurta.org>
25649
25650 * subr.el (progress-reporter-do-update): When `min-value' is equal
25651 to `max-value', set `percentage' to 0 and prevent division by zero.
25652
25653 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
25654
25655 Sync with Tramp 2.0.48.
25656
25657 * net/tramp.el (all): Change all addresses to .gnu.org.
25658 (tramp-append-tramp-buffers): New defun.
25659 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
25660 Catch `dont-send' signal.
25661 (tramp-set-auto-save-file-modes): Set always permissions, because
25662 there might be an old auto-saved file belonging to another
25663 original file. This could be a security threat. Reported by
25664 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
25665 Check for Emacs 21.3.50 removed.
25666
25667 * net/tramp-smb.el (all): Remove debug construct for
25668 `with-parsed-tramp-file-name'.
25669 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
25670 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
25671 No error message if DIRECTORY or FILENAME doesn't exist.
25672 (tramp-smb-open-connection): Check existence of
25673 `tramp-smb-program'.
25674
25675 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
25676
25677 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
25678 Properly handle the case where the `m' or `s' command's argument is not
25679 yet terminated.
25680 (perl-indent-new-calculate): New function.
25681 (perl-indent-line): Use it.
25682
25683 2005-03-20 Miles Bader <miles@gnu.org>
25684
25685 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
25686 in text-mode too. Change to new face names.
25687 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
25688 Add `:weight bold' attribute.
25689 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
25690
25691 2005-03-19 Juri Linkov <juri@jurta.org>
25692
25693 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
25694
25695 * international/mule.el (auto-coding-alist): Sync with
25696 `auto-mode-alist' by adding upper case archive file extensions
25697 and adding ear/war to jar extension.
25698
25699 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
25700
25701 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
25702 running, restart it.
25703
25704 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
25705
25706 * finder.el (finder-current-item): Throw an error on an empty line.
25707
25708 * man.el (Man-follow-manual-reference): If current-word returns
25709 nil, use "".
25710
25711 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
25712
25713 * simple.el (goto-line): Doc fix.
25714
25715 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
25716
25717 * files.el (save-buffer): Doc fix.
25718
25719 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
25720
25721 * recentf.el (recentf-cleanup-remote): New variable.
25722 (recentf-cleanup): Use it to conditionally check availability of
25723 remote files.
25724
25725 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
25726
25727 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
25728 function names.
25729
25730 2005-03-19 Eli Zaretskii <eliz@gnu.org>
25731
25732 * language/thai-word.el: New file.
25733
25734 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
25735
25736 * files.el (backup-buffer): If the file's directory is not
25737 writable, use copy instead of move to backup the file.
25738
25739 2005-03-19 Eli Zaretskii <eliz@gnu.org>
25740
25741 * obsolete/keyswap.el: Moved to obsolete/ from term/.
25742
25743 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
25744
25745 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
25746 Use functionp instead of symbolp and fboundp. Reported by Drkm
25747 <darkman_spam@yahoo.fr>.
25748 (ps-print-version): New version 6.6.6.
25749
25750 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
25751
25752 * textmodes/table.el (table--line-column-position): New idiom.
25753 (table--row-column-insertion-point-p): New function to test
25754 validity of row and column insertion operation at a location.
25755 (table-global-menu, table-cell-menu): Use above functions for
25756 deterministic test operation.
25757 (table--editable-cell-p): Behave in deterministic fashion.
25758
25759 2005-03-18 Juri Linkov <juri@jurta.org>
25760
25761 * isearch.el (isearch-lazy-highlight-new-loop):
25762 Make arguments beg and end optional.
25763 (isearch-update): Remove optional arguments nil from
25764 isearch-lazy-highlight-new-loop.
25765 (isearch-lazy-highlight-search): Let-bind case-fold-search to
25766 isearch-lazy-highlight-case-fold-search instead of
25767 isearch-case-fold-search, and let-bind isearch-regexp to
25768 isearch-lazy-highlight-regexp.
25769 Use isearch-lazy-highlight-last-string instead of isearch-string.
25770
25771 * replace.el (perform-replace): Remove bindings of global
25772 variables isearch-string, isearch-regexp, isearch-case-fold-search.
25773 Add three new arguments to `replace-highlight'.
25774 (replace-highlight): Add arguments string, regexp, case-fold.
25775 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
25776 to allow isearch-lazy-highlight-new-loop to use these values
25777 to set corresponding isearch-lazy-highlight-* internal
25778 variables whose values lazy highlighting will use regardless of
25779 changes to global variables isearch-string, isearch-regexp,
25780 isearch-case-fold-search during lazy highlighting loop.
25781 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
25782 to `lazy-highlight-cleanup'.
25783
25784 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
25785 (ispell-highlight-face): Set default face to `isearch' when
25786 lazy highlighting is enabled.
25787 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
25788 priority to 1. Add lazy highlighting.
25789 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
25790 from `isearch-dehighlight'.
25791
25792 2005-03-18 David Ponce <david@dponce.com>
25793
25794 * files.el (hack-local-variables): Do a case-insensitive search
25795 for End.
25796
25797 2005-03-18 Juri Linkov <juri@jurta.org>
25798
25799 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
25800 `isearch-lazy-highlight-cleanup', add alias to old name and
25801 declare obsolete. Add release numbers to other obsolete vars.
25802 (isearch-done, isearch-lazy-highlight-new-loop):
25803 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
25804 (lazy-highlight-cleanup) <variable>: Doc fix.
25805 (isearch-lazy-highlight-update): Rename obsolete
25806 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
25807
25808 2005-03-18 Kenichi Handa <handa@m17n.org>
25809
25810 * language/thai-util.el: Fix categorization of Thai characters in
25811 thai-category-table.
25812 (thai-composition-pattern): Adjust it for the above change.
25813 (thai-self-insert-command, thai-compose-syllable): New functions.
25814 (thai-compose-region): Use thai-compose-syllable.
25815 (thai-compose-string): Likewise.
25816 (thai-composition-function): Likewise.
25817 (thai-auto-composition): New function.
25818 (thai-auto-composition-mode): New minor mode.
25819
25820 * language/thai.el: Fix patterns to be registered in
25821 composition-function-table.
25822
25823 * international/quail.el (quail-input-method): Locally bind
25824 inhibit-modification-hooks to t.
25825
25826 2005-03-17 Richard M. Stallman <rms@gnu.org>
25827
25828 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
25829 (perl-mode): Use run-mode-hooks.
25830
25831 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
25832 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
25833 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
25834
25835 * mail/sendmail.el (sendmail-send-it): Reenable the code
25836 to compute resend-to-address and use it.
25837
25838 * tar-mode.el (tar-mode): Turn off undo unconditionally.
25839
25840 * image-mode.el: New file.
25841
25842 * image.el (insert-sliced-image): Add autoload cookie.
25843
25844 * font-lock.el (font-lock-lines-before): New user option.
25845 (font-lock-after-change-function): Obey it.
25846
25847 * bindings.el (esc-map): Make M-g a prefix.
25848 Bind M-g g and M-g M-g to goto-line.
25849
25850 * faces.el (face-id): Doc fix.
25851
25852 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
25853
25854 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
25855 (rmail-show-message): Use rmail-unknown-mail-followup-to.
25856 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
25857
25858 * mail/sendmail.el (mail-yank-ignored-headers)
25859 (mail-font-lock-keywords, mail-mode-fill-paragraph):
25860 Add Mail-Followup-To and Mail-Reply-To headers.
25861 (mail-citation-hook): Add autoload cookie.
25862 (mail-mode): Doc fix.
25863 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
25864 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
25865 (mail-mode-fill-paragraph): Handle those headers.
25866 (mail-mailing-lists): New variable.
25867 (mail-mail-reply-to, mail-mail-followup-to): New functions.
25868
25869 2005-03-17 Juri Linkov <juri@jurta.org>
25870
25871 * isearch.el (isearch-fallback): Check for `(car previous)'
25872 before calling `isearch-other-end-state'.
25873
25874 2005-03-17 Kim F. Storm <storm@cua.dk>
25875
25876 * simple.el (move-beginning-of-line): Move to beginning of buffer
25877 line, as well as beginning of screen line.
25878
25879 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
25880
25881 * calendar/diary-lib.el (mark-diary-entries): Use new optional
25882 argument REDRAW rather than calendar-redrawing variable.
25883 * calendar/calendar.el (calendar-redrawing): Delete.
25884 (redraw-calendar): Do not bind calendar-redrawing.
25885
25886 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
25887
25888 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
25889 diary-file buffer.
25890
25891 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
25892
25893 * help.el (describe-mode): Allow a :minor-mode-function property to
25894 specify a different minor mode toggle function than the variable.
25895 * simple.el (auto-fill-function):
25896 * subr.el (add-minor-mode): Use it.
25897
25898 2005-03-16 Kenichi Handa <handa@m17n.org>
25899
25900 * language/ethio-util.el (sera-being-called-by-w3): New variable.
25901 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
25902 (ethio-fidel-to-sera-buffer): Likewise.
25903
25904 2005-03-16 Juri Linkov <juri@jurta.org>
25905
25906 * emacs-lisp/find-func.el (find-function-regexp):
25907 Add defun-emitting macro `menu-bar-make-toggle'.
25908
25909 * isearch.el: Put `isearch-scroll' property to
25910 `split-window-horizontally'.
25911
25912 * info.el: Update error messages for `debug-ignored-errors'.
25913 (Info-isearch-search): Doc fix.
25914 (Info-find-node): Move up code to go into info buffer before
25915 recording the node to the history.
25916 (Info-fontify-node): Fontify titles only if the next line
25917 has two or more `*', `=', `-', `.'.
25918 Display "go to this node" for empty (match-string 3).
25919
25920 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25921
25922 * term/mac-win.el: Add mouse pointer shape constants.
25923
25924 2005-03-15 Kim F. Storm <storm@cua.dk>
25925
25926 * simple.el (move-beginning-of-line): Use vertical-motion.
25927
25928 2005-03-15 Juri Linkov <juri@jurta.org>
25929
25930 * isearch.el (isearch-error): New variable.
25931 (isearch-invalid-regexp, isearch-within-brackets): Remove.
25932 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
25933 (isearch-within-brackets-state): Remove.
25934 (isearch-case-fold-search-state, isearch-pop-fun-state):
25935 Decrease frame index.
25936 (isearch-mode, isearch-top-state, isearch-push-state)
25937 (isearch-edit-string, isearch-abort, isearch-search-and-update)
25938 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
25939 (isearch-search, isearch-lazy-highlight-new-loop):
25940 Replace `isearch-invalid-regexp' with `isearch-error'.
25941 Remove `isearch-within-brackets'.
25942 (isearch-search): Add `search-failed' handler to `condition-case'.
25943 (isearch-lazy-highlight-search): Add `condition-case' to catch
25944 errors and allow `isearch-lazy-highlight-update' to try
25945 highlighting from the beginning of the window.
25946 (isearch-repeat): Move up code to set isearch-wrapped to t
25947 before calling isearch-wrap-function.
25948
25949 * info.el (Info-isearch-initial-node): New internal variable.
25950 (Info-search): Signal an error in isearch mode when search leaves
25951 the initial node. Signal an error when `bound' is non-nil and
25952 nothing was found in the current subfile.
25953 (Info-isearch-search): Remove `condition-case'.
25954 (Info-isearch-wrap): Don't wrap when search failed during leaving
25955 the initial node. If `Info-isearch-search' is nil, wrap around
25956 the current node.
25957 (Info-isearch-start): New fun.
25958 (Info-mode): Add buffer-local hook `Info-isearch-start' to
25959 `isearch-mode-hook'.
25960
25961 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25962
25963 * simple.el (normal-erase-is-backspace): Set default to t if
25964 running on Mac.
25965
25966 * term/mac-win.el (function-key-map): Sync with x-win.el.
25967
25968 2005-03-15 Kenichi Handa <handa@m17n.org>
25969
25970 * international/mule-cmds.el (locale-language-names): Modify the
25971 format of elements and add more entries.
25972 (locale-preferred-coding-systems): Add more entries.
25973 (set-locale-environment): Adjust for the change of
25974 locale-language-names.
25975
25976 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
25977
25978 * pcvs.el (smerge-ediff): Remove bogus autoload.
25979
25980 2005-03-14 Lute Kamstra <lute@gnu.org>
25981
25982 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
25983 Ignore a `*' at the beginning of a line.
25984
25985 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
25986 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
25987 subr.el.
25988 (dont-compile, eval-when-compile, eval-and-compile): Use declare
25989 to specify indentation.
25990
25991 * generic.el (define-generic-mode): Let generic-mode-list be a
25992 list of strings; test membership with equal.
25993
25994 2005-03-14 Kim F. Storm <storm@cua.dk>
25995
25996 * simple.el (next-line, previous-line): Add optional try-vscroll
25997 arg to recognize interactive use. Pass it on to line-move.
25998 (line-move): Don't perform auto-window-vscroll when defining or
25999 executing keyboard macro to ensure consistent behavior.
26000
26001 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
26002
26003 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
26004
26005 2005-03-13 Lute Kamstra <lute@gnu.org>
26006
26007 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
26008 debugger-setup-buffer so that backtrace marks the frames set to
26009 debug-on-exit and we don't have to do it manually. Set an extra
26010 debug-on-exit for macro's.
26011 (debugger-setup-buffer): Don't mark the top frame manually.
26012
26013 2005-03-12 Lute Kamstra <lute@gnu.org>
26014
26015 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
26016 lisp-indent-function throughout.
26017 (with-no-warnings): Set lisp-indent-function property.
26018
26019 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
26020
26021 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
26022 Add entry for backslash.
26023
26024 2005-03-12 Juri Linkov <juri@jurta.org>
26025
26026 * info.el (Info-search): Four fixes for backward search.
26027
26028 2005-03-11 Jay Belanger <belanger@truman.edu>
26029
26030 * calc/calc.el (calc-language-alist): New variable.
26031 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
26032 (calc-embedded-find-modes): Use calc-language-alist instead of
26033 calc-embedded-language-alist.
26034
26035 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
26036
26037 * calendar/calendar.el (calendar-redrawing): New internal
26038 variable.
26039 (redraw-calendar): Remove bogus save-excursion from previous
26040 change. Bind calendar-redrawing to t for mark-diary-entries.
26041 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
26042 calendar if that is why we were called.
26043
26044 2005-03-11 Kenichi Handa <handa@m17n.org>
26045
26046 * international/mule.el (make-coding-system): Set property
26047 coding-system-define-form to nil.
26048 (define-coding-system-alias): Likewise.
26049
26050 2005-03-11 Kenichi Handa <handa@m17n.org>
26051
26052 These changes are suggested by Dave Love <fx@gnu.org>.
26053
26054 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
26055 coding: tag.
26056 (adaptive-fill-regexp): Add more bullets.
26057 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
26058 regexps.
26059
26060 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
26061
26062 * help.el (describe-mode): Properly handle non-trivial lighters.
26063 Don't ignore minor modes that are not listed in minor-mode-list.
26064
26065 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
26066 feature ON when the user requests to turn it OFF.
26067
26068 2005-03-10 Lute Kamstra <lute@gnu.org>
26069
26070 * emacs-lisp/debug.el (debug-entry-code): Delete it.
26071 (implement-debug-on-entry): New function to replace debug-entry-code.
26072 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
26073 second argument as the 2005-03-07 change makes it obsolete.
26074 (debug-on-entry, cancel-debug-on-entry): Update call to
26075 debug-on-entry-1.
26076 (debug, debugger-setup-buffer): Comment update.
26077 (debugger-frame-number): Update to work with implement-debug-on-entry.
26078
26079 2005-03-10 Jay Belanger <belanger@truman.edu>
26080
26081 * calc/calc-embed.el (math-ms-args): Declare it.
26082 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
26083 math-ms-args.
26084 (calc-embedded-subst): Use math-multi-subst-rec to substitute
26085 variables.
26086
26087 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
26088
26089 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
26090 Use message-box.
26091
26092 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
26093 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
26094 (tooltip-gud-tips): Simplify.
26095 (tooltip-gud-tips-p): Remove superfluous :set.
26096 (tooltip-gud-modes): Add fortran-mode.
26097 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
26098
26099 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
26100
26101 2005-03-09 Kim F. Storm <storm@cua.dk>
26102
26103 * play/animate.el (animate-place-char): Use forward-line instead
26104 of next-line to improve performance.
26105
26106 2005-03-09 Simon Josefsson <jas@extundo.com>
26107
26108 * net/browse-url.el (browse-url-default-browser): Doc fix.
26109
26110 2005-03-09 Miles Bader <miles@gnu.org>
26111
26112 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
26113 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
26114
26115 2005-03-09 Kenichi Handa <handa@m17n.org>
26116
26117 * international/latin-1.el: Set case and syntax for 255 only if
26118 set-case-syntax-set-multibyte is nil.
26119
26120 * textmodes/ispell.el (ispell-insert-word): New function.
26121 (ispell-word): Use ispell-insert-word to insert a new word.
26122 (ispell-process-line): Likewise.
26123 (ispell-complete-word): Likewise.
26124
26125 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
26126
26127 * calendar/calendar.el (redraw-calendar): Preserve point.
26128 Reported by Matt Hodges <MPHodges@member.fsf.org>.
26129 (calendar-week-start-day): Move after definition of
26130 redraw-calendar. Delete buffer test, since redraw-calendar has
26131 that now.
26132
26133 * calendar/diary-lib.el (mark-diary-entries): Only call
26134 redraw-calendar in the first of any recursive calls.
26135 Reported by Alan Shutko <ats@acm.org>.
26136
26137 2005-03-08 Juri Linkov <juri@jurta.org>
26138
26139 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
26140 (html-horizontal-rule, html-line, html-image, html-checkboxes)
26141 (html-radio-buttons): Add a space before the trailing `/>' where
26142 sgml-xml-mode is non-nil.
26143 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
26144 the subsequent tag of the empty XML tag.
26145 (html-href-anchor): Don't set initial input to "http:".
26146 (html-image): Ask for the image URL and set point inside alt="".
26147 (html-name-anchor): Duplicate the name in the `id' attribute when
26148 sgml-xml-mode is non-nil.
26149 (html-paragraph): Remove \n before <p>.
26150 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
26151 instead of `checked' when sgml-xml-mode is non-nil.
26152
26153 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
26154 Remove 1 space before #RRGGBB to not truncate it on terminal
26155 windows w/o fringes. Remove 1 space between bg and fg examples
26156 to get more space.
26157 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
26158 avoid byte-compile warnings.
26159
26160 * image-file.el (image-file-handler): Put `safe-magic' property to
26161 `image-file-handler'.
26162
26163 * info.el (Info-isearch-search): Emulate word search in
26164 isearching through multiple Info nodes with Info-search.
26165 (Info-isearch-wrap): Allow isearch-word.
26166
26167 2005-03-08 Lute Kamstra <lute@gnu.org>
26168
26169 * emacs-lisp/debug.el (debugger-step-through): Make sure that
26170 stepping into the debugger's code is not possible.
26171 (debugger-jumping-flag): Docstring update.
26172
26173 2005-03-08 Jay Belanger <belanger@truman.edu>
26174
26175 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
26176 embedded mode begins.
26177 (calc-embedded-language-alist): New variable.
26178 (calc-embedded-find-modes): Use calc-embedded-language-alist to
26179 set default language mode.
26180
26181 2005-03-08 Kenichi Handa <handa@m17n.org>
26182
26183 * international/ccl.el (define-ccl-program): Fix docstring about
26184 extra 256 bytes assured for the output buffer.
26185
26186 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
26187 Fix BUFFER_MAGNIFICATION to 2.
26188 (ccl-encode-mule-utf-16be-with-signature): Likewise.
26189
26190 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
26191
26192 * align.el (align-rules-list): Added an alignment rule for CSS
26193 declarations (applies to css-mode and html-mode buffers).
26194
26195 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
26196
26197 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
26198
26199 2005-03-07 Kim F. Storm <storm@cua.dk>
26200
26201 * simple.el (move-beginning-of-line): New command.
26202
26203 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
26204
26205 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
26206
26207 * emulation/cua-base.el: Put CUA move property on move-end-of-line
26208 and move-beginning-of-line.
26209
26210 * apropos.el (apropos-print): Omit command from M-x ... RET.
26211
26212 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
26213
26214 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
26215 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
26216
26217 2005-03-06 Richard M. Stallman <rms@gnu.org>
26218
26219 * bindings.el (esc-map): Bind M-g to goto-line.
26220
26221 * facemenu.el (global-map): Bind M-o, not M-g.
26222
26223 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
26224
26225 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
26226 "Open Directory" as for "Open File".
26227
26228 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
26229
26230 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
26231 (push-mark-command): Run activate-mark-hook.
26232
26233 2005-03-06 Richard M. Stallman <rms@gnu.org>
26234
26235 * help-mode.el (help-mode-finish): Don't alter the element
26236 in view-return-to-alist if there already is one.
26237
26238 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
26239 make sure the current buffer is the expected one.
26240
26241 * novice.el (disabled-command-function): Output in *Disabled Command*.
26242 Explicitly ignore non-keyboard events, and explicitly handle C-g.
26243
26244 * textmodes/flyspell.el (flyspell-large-region):
26245 Pass args differently for aspell.
26246
26247 * files.el (mode-require-final-newline): Doc fix.
26248
26249 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
26250
26251 * progmodes/which-func.el (which-function):
26252 Specify NOERROR when calling imenu--make-index-alist.
26253
26254 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
26255
26256 * simple.el (normal-erase-is-backspace): Define default value.
26257
26258 * custom.el (custom-theme-set-variables): Remove unused var
26259 `immediate'.
26260 (custom-reevaluate-setting): Simple function to handle variables
26261 that are defined before their default value can really be
26262 computed.
26263
26264 * startup.el (command-line): Use it for temporary-file-directory,
26265 small-emporary-file-directory, auto-save-file-name-transforms,
26266 blink-cursor-mode, and normal-erase-is-backspace.
26267
26268 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
26269 progress, even with buggy anchored keywords.
26270
26271 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
26272
26273 * simple.el (goto-line): Remove unbalanced final parenthesis.
26274
26275 2005-03-05 Richard M. Stallman <rms@gnu.org>
26276
26277 * simple.el (goto-line): Use a number at point as the default.
26278 With C-u as arg, switch buffers.
26279
26280 2005-03-05 Juri Linkov <juri@jurta.org>
26281
26282 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
26283 with `no-blinking-cursor'.
26284
26285 * startup.el (no-blinking-cursor): New defvar.
26286 (command-line): Add `--no-blinking-cursor' to longopts.
26287 Set `no-blinking-cursor' to t for command line arguments
26288 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
26289 with `no-blinking-cursor' in the condition for calling
26290 `blink-cursor-mode'.
26291
26292 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
26293
26294 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
26295 (menu-bar-options-save): Add blink-cursor-mode.
26296 (menu-bar-options-menu): Add blink-cursor-mode.
26297
26298 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
26299
26300 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
26301 (icalendar-export-file, icalendar-export-region)
26302 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
26303 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
26304
26305 2005-03-04 Lute Kamstra <lute@gnu.org>
26306
26307 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
26308 (debug-function-list): Ditto.
26309
26310 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
26311
26312 * textmodes/texinfmt.el (texinfo-append-refill):
26313 Redefine the types of line to which @refill
26314 is not appended by replacing a search for `@refill\\|@bye' with
26315 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
26316 itemize@refill' bug and the unfilled long lines bug.
26317 (texinfmt-version): Update number and date.
26318
26319 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
26320
26321 * international/code-pages.el (windows-1250, windows-125[2-8])
26322 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
26323
26324 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
26325
26326 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
26327 bound yet.
26328
26329 2005-03-02 Romain Francoise <romain@orebokech.com>
26330
26331 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
26332 buffer after removing limits.
26333 (ibuffer-pop-filter): Ditto.
26334 Update copyright.
26335
26336 2005-03-02 Miles Bader <miles@gnu.org>
26337
26338 * button.el (make-text-button): If the user doesn't specify a
26339 type, use the default. Rewrite to use `add-text-properties' and
26340 plist functions.
26341
26342 2005-03-01 Lute Kamstra <lute@gnu.org>
26343
26344 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
26345 (debugger-jumping-flag): New var.
26346 (debug-entry-code): Use it.
26347 (debugger-jump): Use debugger-jumping-flag and add
26348 debugger-reenable to post-command-hook.
26349 (debugger-reenable): Use debugger-jumping-flag and remove itself
26350 from post-command-hook.
26351 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
26352 debugger-reenable.
26353
26354 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
26355
26356 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
26357 inclusion of "itemize\\|", which may be unnecessary, is certainly
26358 inelegant, and stops refilling in itemize lists when formatting
26359 Japanese Texinfo files to Info.
26360 Update copyright to 2005.
26361
26362 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
26363
26364 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
26365 of an error if GDB can't find the source file.
26366
26367 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
26368
26369 * calendar/calendar.el (redraw-calendar): Work from any buffer,
26370 not just the calendar.
26371
26372 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
26373 first.
26374 (diary-redraw-calendar): New function.
26375 (make-diary-entry): Add diary-redraw-calendar to local
26376 write-contents-functions. Turn off selective display before
26377 inserting in diary.
26378
26379 2005-03-01 Kim F. Storm <storm@cua.dk>
26380
26381 * emacs-lisp/copyright.el (copyright-fix-years): New command.
26382
26383 2005-03-01 Lute Kamstra <lute@gnu.org>
26384
26385 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
26386 that debug-entry-code can be safely removed from a function while
26387 this code is being evaluated. Revert the 2005-02-27 change as the
26388 new implementation no longer requires it. Make sure that a
26389 function body containing just a string is not mistaken for a docstring.
26390 (debug): Skip one more frame in case of debug on entry.
26391 (debugger-setup-buffer): Delete one more frame line in case of
26392 debug on entry.
26393 (debugger-frame-number): Update to use the new text introduced by
26394 the 1999-11-03 change. Skip one more frame in case of debug on entry.
26395
26396 2005-02-28 Kim F. Storm <storm@cua.dk>
26397
26398 * double.el (double-translate-key): Call force-window-update after
26399 read-event to avoid crash in redisplay.
26400
26401 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
26402
26403 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
26404 (debug): Use it. Move the inhibit-trace earlier.
26405 (debug-entry-code): New const.
26406 (debug-on-entry-1): Use it.
26407
26408 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
26409
26410 * international/utf-16.el (ccl-encode-mule-utf-16le):
26411 Fix BUFFER_MAGNIFICATION to 2.
26412 (ccl-encode-mule-utf-16be): Likewise.
26413
26414 2005-02-28 Kenichi Handa <handa@m17n.org>
26415
26416 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
26417 Fix BUFFER_MAGNIFICATION to 4.
26418 (ccl-encode-mule-utf-16be-with-signature): Likewise.
26419
26420 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
26421
26422 * speedbar.el (speedbar-update-flag): Doc fix.
26423 (speedbar-show-info-under-mouse): Give set-mouse-position the right
26424 argument.
26425
26426 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
26427
26428 * reveal.el (reveal-post-command): Don't try to reveal overlays which
26429 have a non-nil `invisible' property but are actually visible.
26430
26431 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
26432 for perldoc sections.
26433 (perl-outline-regexp, perl-outline-level): New var and function.
26434 (perl-mode): Use them.
26435
26436 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
26437
26438 * calendar/diary-lib.el (diary-remind): Discard any mark portion
26439 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
26440
26441 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
26442
26443 * cus-edit.el: Comment change.
26444 (custom-buffer-create-internal): Slightly reword text at top of
26445 Custom buffers. Mention there that saving an option edits the
26446 init file. Add link to Emacs manual node on `custom-file'.
26447 (custom-magic-alist): Rewrite individual State messages to use
26448 capitalized keywords. Doc fix.
26449
26450 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
26451
26452 * calendar/calendar.el (calendar-buffer): Move above
26453 calendar-week-start-day.
26454 (calendar-week-start-day): Doc fix. Add :set function.
26455 (calendar-minimum-window-height): New variable.
26456 (generate-calendar-window): Only resize window if selected-window
26457 is displaying the calendar buffer. Use new variable
26458 calendar-minimum-window-height.
26459 (generate-calendar): Reword error message.
26460 (calendar-mode-map): Bind DEL to scroll-other-window-down.
26461
26462 2005-02-27 Andreas Schwab <schwab@suse.de>
26463
26464 * vc.el (vc-do-command): Don't run command asynchronously when
26465 operating in a remote directory.
26466
26467 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
26468 change from sync with Tramp 2.0.47.
26469
26470 2005-02-27 Richard M. Stallman <rms@gnu.org>
26471
26472 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
26473
26474 * textmodes/flyspell.el (flyspell-mode-on):
26475 Call ispell-change-dictionary only if necessary.
26476
26477 * emacs-lisp/re-builder.el (regexp-builder): New function.
26478
26479 * register.el (describe-register-1): Explicitly handle
26480 yank-excluded-properties = t.
26481
26482 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
26483 (custom-magic-alist): Change the status descriptions again.
26484 (face widget-type): Total rewrite based on `restricted-sexp'
26485 to eliminate the confusing double hiding levels.
26486
26487 * emacs-lisp/debug.el (debug-on-entry-1):
26488 If function body is empty, add nil as body form.
26489
26490 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
26491
26492 * emacs-lisp/trace.el (inhibit-trace): New var.
26493 (trace-make-advice): Use it.
26494
26495 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
26496
26497 2005-02-26 Kim F. Storm <storm@cua.dk>
26498
26499 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
26500 (mouse-on-link-p, mouse-drag-region-1): Use it.
26501
26502 2005-02-25 Lute Kamstra <lute@gnu.org>
26503
26504 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
26505
26506 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
26507
26508 * frame.el (blink-cursor-mode): Add :group keyword.
26509
26510 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
26511
26512 * calendar/icalendar.el (icalendar--decode-isodatetime):
26513 New optional argument DAY-SHIFT.
26514 (icalendar-export-region): Fix coding-system-for-write.
26515 (icalendar--convert-ical-to-diary): Shift end-day of all-day
26516 events by one.
26517
26518 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
26519
26520 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
26521
26522 2005-02-24 Kim F. Storm <storm@cua.dk>
26523
26524 * international/iso-acc.el (iso-accents-compose): Fix crash
26525 during redisplay. Call force-window-update after read-event
26526 and delete-region to signal that window is not accurate.
26527
26528 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
26529
26530 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
26531 Remove unused and inexistent var `inhibit-trace'.
26532 (debugger-mode): Use run-mode-hooks.
26533 (debugger-list-functions): Add buttons; setup xref stack.
26534
26535 2005-02-23 Richard M. Stallman <rms@gnu.org>
26536
26537 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
26538 appointment says it was explicitly made.
26539 (appt-add): Set the 3rd element.
26540 (appt-make-list): Preserve explicit appointments.
26541
26542 * subr.el (find-tag-default): Catch errors in forward-sexp.
26543
26544 2005-02-23 Juri Linkov <juri@jurta.org>
26545
26546 * info.el (Info-isearch-search): New defcustom.
26547 (Info-isearch-search): Call the default isearch function
26548 when Info-isearch-search is nil.
26549 (Info-isearch-wrap): Use variable Info-isearch-search.
26550
26551 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
26552
26553 * cus-edit.el: Comment change.
26554
26555 2005-02-22 Kim F. Storm <storm@cua.dk>
26556
26557 * progmodes/hideif.el (hide-ifdef-use-define-alist):
26558 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
26559
26560 2005-02-22 Simon Josefsson <jas@extundo.com>
26561
26562 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
26563 New variable.
26564 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
26565 Oskarsson" <myrkraverk@users.sourceforget.net>.
26566
26567 2005-02-22 Kim F. Storm <storm@cua.dk>
26568
26569 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
26570 check that window of that event is the selected window.
26571 (mouse-drag-region-1): Compare mouse event window to selected
26572 window before setting point.
26573
26574 * tooltip.el (tooltip-show-help-function): Pass event to
26575 mouse-on-link-p so it can check selected window.
26576
26577 2005-02-22 Kenichi Handa <handa@m17n.org>
26578
26579 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
26580 (ps-mule-show-warning): New function.
26581 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
26582 characters are found.
26583
26584 * ps-print.el (ps-header-footer-string): Return a list of header
26585 and footer strings.
26586
26587 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
26588
26589 * pcvs.el (cvs-retrieve-revision): Fix thinko.
26590
26591 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
26592
26593 * frame.el (blink-cursor-mode): Use define-minor-mode.
26594
26595 * term/mac-win.el (function-key-map): Use char-names more consistently.
26596 (file-name-coding-system): Only set it for MacOS-9. The other case is
26597 already handled in mule-cmds.el (where it also works when mac-win.el
26598 is not used).
26599
26600 2005-02-21 Kenichi Handa <handa@m17n.org>
26601
26602 * international/mule.el (ctext-pre-write-conversion): Always use
26603 " *code-converting-work*" buffer for work.
26604
26605 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
26606
26607 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
26608
26609 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
26610
26611 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
26612
26613 * ses.el (undo-more): Restore defadvice, but only the part that
26614 allows changes outside the restricted area of the buffer.
26615
26616 2005-02-20 Kim F. Storm <storm@cua.dk>
26617
26618 * simple.el (line-move): Add fourth optional arg try-vscroll which
26619 must be set to perform auto-window-vscroll.
26620 When moving backwards and doing auto-window-vscroll, automatically
26621 vscroll to the last part of lines which are taller than the window.
26622 (next-line, previous-line): Set try-vscroll arg on line-move.
26623
26624 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
26625
26626 * replace.el (query-replace, query-replace-regexp)
26627 (replace-string, replace-regexp): When operating on region, make
26628 the minibuffer prompt say so.
26629
26630 * isearch.el (isearch-forward): Document isearch-query-replace and
26631 isearch-query-replace-regexp keybindings.
26632
26633 2005-02-19 Jay Belanger <belanger@truman.edu>
26634
26635 * calc/calc-aent.el (math-read-token): Add local variable.
26636
26637 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
26638 (calc-edit-top): Move declaration to earlier in file.
26639 (calc-edit-macro-repeats): Add local variables.
26640
26641 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
26642 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
26643 calcFunc-tanh.
26644 Adjust integration rule for calcFunc-tan.
26645
26646 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
26647
26648 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
26649 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
26650 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
26651 (viper-skip-separators): Bug fix.
26652 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
26653 particular major mode.
26654 (viper-del-backward-char-in-replace): Don't put deleted char on the
26655 kill ring.
26656
26657 * viper-ex.el (viper-color-display-p): New function.
26658 (viper-has-face-support-p): Use viper-color-display-p.
26659
26660 * viper-keym.el (viper-gnus-modifier-map): New keymap.
26661
26662 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
26663
26664 * viper-util.el (viper-glob-unix-files): Fix shell status check.
26665 (viper-file-remote-p): Make equivalent to file-remote-p.
26666
26667 * viper.el (viper-major-mode-modifier-list):
26668 Use viper-gnus-modifier-map.
26669
26670 2005-02-19 David Kastrup <dak@gnu.org>
26671
26672 * subr.el (subregexp-context-p): Fix garbled doc string by adding
26673 quoting.
26674
26675 2005-02-19 Jay Belanger <belanger@truman.edu>
26676
26677 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
26678 Remove extra definitions.
26679 (calc-coth): New function.
26680 (calcFunc-cot): Fix `let'.
26681
26682 2005-02-19 Eli Zaretskii <eliz@gnu.org>
26683
26684 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
26685 the reasons we use "type pc" in these faces.
26686
26687 * button.el (button): Ditto.
26688
26689 2005-02-19 Michael Mauger <mmaug@yahoo.com>
26690
26691 * replace.el (query-replace-read-from): Set the value of
26692 query-replace-from-history-variable to handle the case of an empty
26693 string entered to accept the suggested default.
26694
26695 * net/tramp.el (tramp-file-name-for-operation):
26696 Use dired-call-process instead of dired-call-process-command.
26697
26698 2005-02-19 Jay Belanger <belanger@truman.edu>
26699
26700 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
26701 (math-div-non-trig): New variables.
26702 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
26703 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
26704 (math-combine-prod, math-div-symb-fancy): Add simplifications for
26705 trig expressions.
26706
26707 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
26708
26709 * progmodes/gdb-ui.el (gdb-var-update-handler)
26710 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
26711 for watch expressions,
26712 (gdb-var-create-handler): Don't set speedbar-update-flag.
26713 (gdb-post-prompt): Simplify test for speedbar.
26714
26715 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
26716
26717 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
26718 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
26719 we use the syntax table of the correct buffer.
26720 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
26721 Felix Gatzemeier.
26722
26723 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
26724 (ediff-file-remote-p): Make synonymous with file-remote-p.
26725 In all deffaces ediff-*-face-*, use min-colors.
26726
26727 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
26728 ediff-recurse-to-subdirectories.
26729 (ediff-mark-if-equal): Check that the arguments are strings, use
26730 ediff-same-contents (after to Felix Gatzemeier).
26731
26732 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
26733 nil.
26734
26735 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
26736
26737 * log-view.el (log-view-message-re): Fix up Subversion regexp.
26738
26739 2005-02-18 David Kastrup <dak@gnu.org>
26740
26741 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
26742 use `mark-active' when defined.
26743
26744 2005-02-18 Kenichi Handa <handa@m17n.org>
26745
26746 * ps-print.el (ps-font-info-database): New entry
26747 ZapfChancery-MediumItalic with correct font name. Fix font name
26748 of the entry Zapf-Chancery-MediumItalic.
26749
26750 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
26751
26752 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
26753
26754 2005-02-16 Kim F. Storm <storm@cua.dk>
26755
26756 * ido.el (ido-fallback-command): Pass user input to fallback command.
26757
26758 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
26759
26760 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
26761 (gdb-find-file-hook): Add server prefix.
26762
26763 2005-02-16 Richard M. Stallman <rms@gnu.org>
26764
26765 * replace.el (perform-replace): Pass new args to replace-highlight.
26766 (replace-highlight): Take region args,
26767 and pass them to isearch-lazy-highlight-new-loop.
26768
26769 * novice.el (disabled-command-hook): Autoload the defalias
26770 and the make-obsolete-variable call.
26771
26772 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
26773
26774 * isearch.el (isearch-lazy-highlight-start-limit)
26775 (isearch-lazy-highlight-end-limit): New variables limit
26776 the region for highlighting.
26777 (isearch-lazy-highlight-new-loop): New args BEG and END.
26778 (isearch-lazy-highlight-search): Use the new vars.
26779 (isearch-lazy-highlight-update): Likewise.
26780
26781 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
26782
26783 * cus-start.el (all): Use default-boundp.
26784
26785 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
26786
26787 * menu-bar.el (menu-bar-select-frame): Handle current frame.
26788
26789 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
26790
26791 * autorevert.el (auto-revert-stop-on-user-input)
26792 (auto-revert-verbose): Doc fixes.
26793
26794 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
26795
26796 * international/mule-cmds.el (set-locale-environment): Remove call
26797 to set-selection-coding-system on Windows.
26798
26799 2005-02-15 Jay Belanger <belanger@truman.edu>
26800
26801 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
26802 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
26803 calcFunc-coth.
26804 (math-simplify-sqrt): Add simplifications.
26805
26806 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
26807 to list.
26808
26809 * calc/calc-ext.el: Add functions to autoloads.
26810
26811 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
26812 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
26813 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
26814 (math-csc-raw, math-cot-raw): New functions.
26815
26816 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
26817
26818 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
26819 the variable name in a message.
26820
26821 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
26822 calcFunc-csc, calcFunc-cot.
26823
26824 * calc/calcalg2.el: Add derivative and integration rules for
26825 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
26826 calcFunc-csch, calcFunc-coth.
26827 (math-do-integral-methods): Add to checks for when to use
26828 substitutions.
26829
26830 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
26831
26832 2005-02-15 Lute Kamstra <lute@gnu.org>
26833
26834 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
26835 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
26836 <monnier@iro.umontreal.ca>
26837 (lisp-outline-level): Improve efficiency. Suggested by David
26838 Kastrup <dak@gnu.org>.
26839
26840 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
26841
26842 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
26843 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
26844 (gdb-set-gud-minor-mode-existing-buffers): New functions.
26845 (gdb-find-file-hook): New hook. Add it to find-file-hook.
26846 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
26847
26848 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
26849
26850 * cus-start.el (all): Comment change.
26851
26852 2005-02-14 Lute Kamstra <lute@gnu.org>
26853
26854 * cus-start.el (all): Check if symbol is void.
26855
26856 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
26857
26858 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
26859 optional argument to \cite.
26860
26861 2005-02-14 Richard M. Stallman <rms@gnu.org>
26862
26863 * cus-edit.el (custom-buffer-create-internal): Update help message.
26864 (custom-magic-alist): Update help messages.
26865
26866 * cus-start.el (all): Allow a var to specify a standard value.
26867
26868 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
26869
26870 * custom.el (custom-theme-set-variables): Handle variable aliases.
26871
26872 * frame.el (blink-cursor-timer): Doc fix.
26873 (blink-cursor): Make it an alias for `blink-cursor-mode' and
26874 declare obsolete.
26875 (blink-cursor-mode): Define with defcustom and use correct
26876 standard expression in that defcustom.
26877 * startup.el (command-line): Adapt to above changes in frame.el.
26878
26879 2005-02-11 Lute Kamstra <lute@gnu.org>
26880
26881 * apropos.el (apropos-score-doc): Prevent division by zero.
26882
26883 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
26884
26885 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
26886 (icalendar--get-event-property-attributes)
26887 (icalendar--get-event-properties)
26888 (icalendar--datetime-to-diary-date): New functions.
26889 (icalendar--split-value): Doc fix.
26890 (icalendar--datetime-to-noneuropean-date)
26891 (icalendar--datetime-to-european-date): New optional argument
26892 SEPARATOR. Return result as a string instead of a list.
26893 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
26894 (icalendar--convert-string-for-export): Rename arg S to STRING.
26895 (icalendar-export-region): Doc fix. Change name of error buffer.
26896 Save output buffer.
26897 (icalendar-import-file): Add blank at end of prompt.
26898 (icalendar-import-buffer): Doc fix. Do not switch to error
26899 buffer. Indicate status in return value.
26900 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
26901 buffer. Save output buffer. Handle exception from recurrence
26902 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
26903 events. Fix problems with weekly all-day events.
26904
26905 2005-02-10 Richard M. Stallman <rms@gnu.org>
26906
26907 * simple.el (eval-expression-print-format):
26908 Avoid warning about edebug-active.
26909
26910 * help.el (help-for-help-internal): Rename from help-for-help.
26911 (help-for-help): Define with defalias.
26912
26913 * font-core.el (font-lock-default-function): Use with-no-warnings.
26914
26915 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
26916
26917 * custom.el (defface): Doc fix.
26918
26919 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
26920
26921 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
26922 width 0" to prevent word wrapping problems.
26923
26924 2005-02-09 Kim F. Storm <storm@cua.dk>
26925
26926 * ido.el (ido-file-extensions-order): New defcustom.
26927 (ido-file-extension-lessp, ido-file-extension-aux)
26928 (ido-file-extension-order): New advanced file ordering.
26929 (ido-file-lessp): New simple file ordering.
26930 (ido-sort-list): Remove.
26931 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
26932 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
26933
26934 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
26935
26936 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
26937 that some versions of grep produce.
26938 (grep-mode-font-lock-keywords): Likewise.
26939
26940 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
26941
26942 * progmodes/gdb-ui.el (gdb-location-list): New variable.
26943 (gdb-cdir): Delete.
26944 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
26945 (gdb-source-info): Treat case when source file is in another
26946 directory properly.
26947 (gdb-get-location): New function.
26948
26949 2005-02-07 Jay Belanger <belanger@truman.edu>
26950
26951 * calc/calc-prog.el (calc-write-parse-table-part)
26952 (calc-fix-token-name): Fix a check for language type.
26953
26954 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
26955
26956 2005-02-07 Andre Spiegel <spiegel@gnu.org>
26957
26958 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
26959 as directory not writable.
26960
26961 2005-02-07 Kim F. Storm <storm@cua.dk>
26962
26963 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
26964 (cua--standard-movement-commands): Remove list.
26965 Instead, set CUA property value to move for movement commands.
26966 (cua-movement-commands): Remove. Users must set CUA prop instead.
26967 (cua--pre-command-handler): Check CUA property.
26968 (cua--init-keymaps): Don't remap undo commands.
26969 (cua-mode): Don't call cua--rectangle-on-off.
26970
26971 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
26972 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
26973 (cua--rect-undo-set-point): New var.
26974 (cua--rectangle-undo-boundary): Setup undo apply entry.
26975 (cua--rect-undo-handler): New function for rectangle undo.
26976 (cua--rect-start-position, cua--rect-end-position): Add.
26977 (cua--rectangle-post-command): Call cua--rectangle-set-corners
26978 for restored rectangle. Set point if cua--rect-undo-set-point.
26979
26980 2005-02-06 Jay Belanger <belanger@truman.edu>
26981
26982 * calc/calc-lang.el (calc-tex-language): Display more information
26983 in messages.
26984
26985 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
26986 in TeX mode.
26987
26988 2005-02-06 Richard M. Stallman <rms@gnu.org>
26989
26990 * emacs-lisp/lisp.el (buffer-end): Doc fix.
26991
26992 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
26993
26994 * net/ldap.el (ldap-search-internal): Support attributes with
26995 optional descriptions separated by a semi-colon, as in
26996 "userCertificate;binary".
26997
26998 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
26999
27000 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
27001 isn't a cons (i.e. the version is 0).
27002
27003 2005-02-05 Eli Zaretskii <eliz@gnu.org>
27004
27005 * help.el (help-for-help): Doc fix.
27006
27007 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
27008
27009 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
27010 GDB-Windows on the menu-bar as this works better.
27011
27012 2005-02-04 Jay Belanger <belanger@truman.edu>
27013
27014 * calc/calc-embed.el (calc-embedded-update): Don't put in
27015 unnecessary newlines. Adjust the end of formula marker.
27016
27017 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
27018 (math-latex-parse-two-args): New function.
27019
27020 2005-02-03 Lute Kamstra <lute@gnu.org>
27021
27022 * help-fns.el (help-with-tutorial): Make sure that users cannot
27023 remove the entire text of the tutorial by means of `undo'.
27024
27025 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
27026
27027 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
27028 in recent changes, where the ispell process was repeatedly
27029 killed & restarted.
27030
27031 * international/mule-cmds.el (set-locale-environment): Set file-name
27032 coding system to utf-8 on Darwin systems.
27033 (set-default-coding-systems): Don't set default-file-name-coding-system
27034 on Darwin systems.
27035
27036 2005-02-03 Richard M. Stallman <rms@gnu.org>
27037
27038 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
27039
27040 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
27041
27042 * faces.el (list-faces-display): Add optional argument.
27043
27044 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
27045
27046 * font-core.el (font-lock-default-function): Handle the rare case where
27047 only font-lock-keywords is set.
27048
27049 2005-02-02 Kenichi Handa <handa@m17n.org>
27050
27051 * international/characters.el: Cancel previous change for
27052 I-WITH-DOT-ABOVE and DOTLESS-i.
27053
27054 * international/latin-5.el: Cancel previous change.
27055
27056 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
27057
27058 * progmodes/gud.el: Correction to syntax in gud-menu-map.
27059
27060 2005-02-02 Kenichi Handa <handa@m17n.org>
27061
27062 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
27063 DOTLESS-i.
27064
27065 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
27066 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
27067
27068 * case-table.el (get-upcase-table): New function.
27069 (copy-case-table): Copy upcaes table too if non-nil.
27070 (set-case-syntax-delims): Maintain upcase table too.
27071 (set-case-syntax-pair): Likewise.
27072 (set-upcase-syntax, set-downcase-syntax): New functions.
27073 (set-case-syntax): Maintain upcase table too.
27074
27075 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
27076
27077 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
27078
27079 * progmodes/gud.el (gud-goto-info): New function.
27080 (gud-tool-bar-map): Use correct icon.
27081
27082 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
27083
27084 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
27085 When delegating, order args in the funcall correctly.
27086
27087 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
27088
27089 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
27090
27091 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
27092
27093 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
27094 buffer not visiting a file.
27095
27096 2005-01-31 Jay Belanger <belanger@truman.edu>
27097
27098 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
27099 bound on the line with the formula.
27100
27101 2005-01-31 Kim F. Storm <storm@cua.dk>
27102
27103 * ses.el (ses-create-cell-variable-range)
27104 (ses-destroy-cell-variable-range, ses-reset-header-string)
27105 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
27106 (ses-insert-row): Fix format of apply undo entries.
27107
27108 2005-01-31 Jay Belanger <belanger@truman.edu>
27109
27110 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
27111 parts.
27112
27113 * calc/calc-embed.el (calc-embedded-open-formula)
27114 (calc-embedded-close-formula): Ignore matrix environments.
27115
27116 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
27117 TeX mode.
27118
27119 * calc/calc-lang.el (math-function-table, math-oper-table)
27120 (math-variable-table): Adjust the LaTeX portions.
27121
27122 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
27123 (math-latex-ignore-words): New constant.
27124
27125 2005-01-31 Richard M. Stallman <rms@gnu.org>
27126
27127 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
27128 (ispell-local-dictionary): Doc fix.
27129 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
27130 Don't reinitialize at run time. Don't defcustom.
27131 All uses changed to append ispell-local-dictionary-alist,
27132 or check it first.
27133 (ispell-current-dictionary): New variable for dictionary in use.
27134 (ispell-dictionary): Now used only for global default.
27135 (ispell-start-process): Set ispell-current-dictionary,
27136 not ispell-dictionary.
27137 (ispell-change-dictionary): Use this only for setting
27138 user preferences.
27139 (ispell-internal-change-dictionary): New function
27140 to change the current dictionary in use.
27141 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
27142 Use ispell-current-dictionary.
27143 Handle ispell-local-dictionary-overridden.
27144 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
27145
27146 2005-01-31 Jay Belanger <belanger@truman.edu>
27147
27148 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
27149
27150 * calc/calc-ext.el: Add calc-latex-language to autoloads.
27151 (calc-mode-map): Add calc-latex-language.
27152
27153 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
27154 (math-latex-print-frac): New functions.
27155 (math-oper-table, math-function-table, math-variable-table)
27156 (math-complex-format, math-input-filter): Add latex properties.
27157 (calc-set-language): Set math-expr-special-function-mapping.
27158
27159 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
27160 (calc-write-parse-table-part): Add LaTeX support.
27161
27162 * calc/calc.el (calc-language): Adjust docstring.
27163 (calc-set-mode-line): Add LaTeX support.
27164 (math-expr-special-function-mapping): New variable.
27165 (math-tex-ignore-words): Add to list.
27166
27167 * calc/calccomp.el (math-compose-expr, math-compose-rows):
27168 Add LaTeX support.
27169 (math-compose-expr): Add support for special functions.
27170
27171 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
27172
27173 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
27174
27175 * progmodes/gdb-ui.el (gdb-memory-address)
27176 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
27177 (gdb-memory-mode-map, gdb-memory-format-keymap)
27178 (gdb-memory-format-menu, gdb-memory-unit-keymap)
27179 (gdb-memory-unit-menu): New variables for a buffer
27180 that lets the user examine program memory.
27181 (gdb-memory-set-address, gdb-memory-set-repeat-count)
27182 (gdb-memory-format-binary, gdb-memory-format-octal)
27183 (gdb-memory-format-unsigned, gdb-memory-format-signed)
27184 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
27185 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
27186 (gdb-memory-unit-word, gdb-memory-unit-halfword)
27187 (gdb-memory-unit-byte, gdb-memory-unit-menu)
27188 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
27189 (gdb-memory-mode, gdb-memory-buffer-name)
27190 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
27191 New functions for above buffer.
27192
27193 2005-01-30 Richard M. Stallman <rms@gnu.org>
27194
27195 * cus-edit.el (custom-bury-buffer): Function deleted.
27196 (custom-buffer-done-function): Option deleted.
27197 (custom-buffer-done-kill): New replacement option.
27198 (Custom-buffer-done): Call quit-window.
27199 (custom-buffer-create-internal): Update for above changes.
27200
27201 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
27202
27203 * simple.el (undo-ask-before-discard): New var.
27204 (undo-outer-limit-truncate): Implement it.
27205 (undo-extra-outer-limit): Doc update.
27206
27207 2005-01-29 Richard M. Stallman <rms@gnu.org>
27208
27209 * ses.el (undo-more): Delete defadvice.
27210 (ses-begin-change): Doc fix.
27211
27212 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
27213 instead of rebinding C-x u and C-_.
27214
27215 * files.el (normal-backup-enable-predicate): Return nil for files
27216 in /tmp, regardless of temporary-file-directory.
27217
27218 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
27219
27220 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
27221 (open-rectangle, delete-whitespace-rectangle-line)
27222 (clear-rectangle-line): If FILL, pass t instead of FILL
27223 for move-to-column's 2nd arg.
27224
27225 * simple.el (undo): Fix the test for continuing a series of undos.
27226 (undo-more): Set pending-undo-list to t when we reach end.
27227 (pending-undo-list): Move up defvar.
27228
27229 * wid-edit.el (widget-button-click):
27230 Shorten the range of the track-mouse binding.
27231
27232 * comint.el (comint-insert-input): Undo previous changes;
27233 use last-input-event in interactive spec.
27234
27235 2005-01-29 Eli Zaretskii <eliz@gnu.org>
27236
27237 * progmodes/compile.el (compilation-start): Bind buffer-read-only
27238 to nil before invoking call-process. Reset buffer's modified flag
27239 after fontifying it in the no-async branch.
27240
27241 * wid-edit.el (widget-specify-button): If mouse pointer shape
27242 cannot be changed, use mouse face instead.
27243
27244 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
27245
27246 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
27247 (gdb-goto-breakpoint): Make breakpoint handling work on template
27248 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
27249 (gdb-assembler-custom): Update to recognize breakpoint information
27250 added on 2005-01-19.
27251
27252 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
27253
27254 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
27255 (dsssl-mode): Use define-derived-mode.
27256 (scheme-mode-initialize): Remove.
27257 (scheme-mode): Use run-mode-hooks.
27258
27259 * cus-edit.el (customize-group-other-window)
27260 (custom-buffer-create-other-window): Don't override special-display-*.
27261 (custom-mode-map): Make it dense.
27262
27263 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
27264 sets the default value.
27265
27266 2005-01-28 Eli Zaretskii <eliz@gnu.org>
27267
27268 * descr-text.el: Add more keywords.
27269
27270 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
27271
27272 * speedbar.el: Avoid unnecessary use of locate-library.
27273
27274 * international/mule-cmds.el (standard-display-european-internal):
27275 Don't fiddle with latin-1 non-break space any more since it's now
27276 special cased in the C code.
27277 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
27278
27279 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
27280
27281 * cus-start.el (all): Add `undo-outer-limit'.
27282
27283 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
27284
27285 * textmodes/bibtex.el (bibtex-format-entry):
27286 Use `bibtex-empty-field-re' only on the text of fields, not on entire
27287 field lines.
27288 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
27289 not on part of a buffer.
27290
27291 2005-01-25 Lute Kamstra <lute@gnu.org>
27292
27293 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
27294 nonempty field text strings like "{letters\\macro{}more letters}".
27295 Clarify docstring.
27296 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
27297 (bibtex-entry-offset, bibtex-parse-association)
27298 (bibtex-parse-field-name): Fix typos in docstrings.
27299 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
27300
27301 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
27302
27303 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
27304 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
27305 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
27306 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
27307
27308 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
27309 isearch minor mode.
27310
27311 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
27312
27313 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
27314
27315 2005-01-24 Lute Kamstra <lute@gnu.org>
27316
27317 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
27318 CASECHARS and NOT-CASECHARS regular expressions of the
27319 "nederlands" and "nederlands8" dictionaries to prevent a "Range
27320 striding over charsets" error.
27321
27322 2005-01-24 Jay Belanger <belanger@truman.edu>
27323
27324 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
27325 display variable name.
27326
27327 2005-01-24 Kenichi Handa <handa@m17n.org>
27328
27329 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
27330 Fix setting of the element of encoded-kbd-iso2022-invocations.
27331
27332 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
27333
27334 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
27335 (gdb-threads-select): Change to also accept mouse events.
27336 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
27337 (gdb-threads-mouse-select): Delete.
27338
27339 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
27340
27341 * files.el (insert-directory): Take care of empty directory,
27342 listed without -a switch.
27343
27344 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
27345
27346 * textmodes/refill.el (refill-post-command-function):
27347 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
27348 to the list of functions that we should be careful not to undo.
27349 (refill-late-fill-paragraph-function): Remove.
27350 (refill-saved-state): New var.
27351 (refill-mode): Use it to save fill-paragraph-function.
27352 Save also the value of auto-fill-function.
27353
27354 * term/w32-win.el: Simplify code.
27355
27356 2005-01-23 Kim F. Storm <storm@cua.dk>
27357
27358 * simple.el (line-move): Adapt to new return value from
27359 pos-visible-in-window-p.
27360
27361 * simple.el (line-move): Fix last change. Check partial
27362 visibility at point rather than at window-start.
27363
27364 2005-01-22 Jason Rumney <jasonr@gnu.org>
27365
27366 * term/w32-win.el (xw-defined-colors): Remove debug-message.
27367
27368 2005-01-22 David Kastrup <dak@gnu.org>
27369
27370 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
27371
27372 2005-01-22 Eli Zaretskii <eliz@gnu.org>
27373
27374 * type-break.el (type-break-mode): Add a test for
27375 type-break-file-name being non-nil.
27376
27377 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
27378
27379 * net/eudc.el (top level): Call (message "") via progn, so that
27380 eudc-options-file is loaded.
27381
27382 2005-01-22 Kim F. Storm <storm@cua.dk>
27383
27384 * simple.el (line-move-1): Rename from line-move.
27385 (line-move): New function that adjusts vscroll for partially
27386 visible rows, and calls line-move-1 otherwise.
27387
27388 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
27389
27390 * pcomplete.el: Define pcomplete-read-event instead of read-event,
27391 since it's not a complete read-event implementation
27392
27393 2005-01-20 Jay Belanger <belanger@truman.edu>
27394
27395 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
27396 for called function.
27397
27398 2005-01-20 Steven Tamm <steventamm@mac.com>
27399
27400 * term/mac-win.el (process-connection-type): Remove.
27401 Controlled now by s/darwin.h:PTY_ITERATION.
27402
27403 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
27404
27405 * window.el (handle-select-window): Don't switch window when we're
27406 in the minibuffer.
27407
27408 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
27409
27410 * subr.el (dotimes-with-progress-reporter): New macro.
27411
27412 * ses.el (ses-dotimes-msg): Remove macro.
27413 Use `dotimes-with-progress-reporter' instead.
27414
27415 2005-01-19 Steven Tamm <steventamm@mac.com>
27416
27417 * term/mac-win.el (process-connection-type): Use new
27418 operating-system-release variable to use ptys on Darwin 7 (OS X
27419 10.3) when using carbon build.
27420
27421 2005-01-19 Jay Belanger <belanger@truman.edu>
27422
27423 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
27424 flags if the last command was a tab or M-tab.
27425
27426 * calc/calc-prog.el (calc-user-define-edit): Put original formula
27427 in formula editing buffer.
27428
27429 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
27430
27431 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
27432 breakpoint image symbol in margin.
27433
27434 2005-01-19 Jay Belanger <belanger@truman.edu>
27435
27436 * calc/calc-prog.el (calc-execute-kbd-macro):
27437 Ignore calc-keep-arg-flag.
27438
27439 2005-01-19 Kenichi Handa <handa@m17n.org>
27440
27441 * textmodes/ispell.el (ispell-looking-at): New function.
27442 (ispell-process-line): Use ispell-looking-at to compare the ispell
27443 output and the buffer contents.
27444
27445 2005-01-18 Jay Belanger <belanger@truman.edu>
27446
27447 * calc/calc.el (calc-display-raw): Fix docstring.
27448
27449 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
27450
27451 * simple.el (blink-matching-open): Strip extra info from syntax.
27452
27453 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
27454 funny chars in the end-of-here-doc marker.
27455
27456 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
27457
27458 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
27459 that enable/disabled state of breakpoints is shown correctly in
27460 fringe and on ttys.
27461 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
27462 Add breakpoint information as text properties.
27463 (gdb-mouse-toggle-breakpoint):
27464 Rename to gdb-mouse-set-clear-breakpoint.
27465 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
27466 breakpoints in the margin.
27467 (gdb-remove-strings): Simplify.
27468
27469 2005-01-17 Jay Belanger <belanger@truman.edu>
27470
27471 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
27472 erasing buffer.
27473
27474 2005-01-17 Richard M. Stallman <rms@gnu.org>
27475
27476 * progmodes/grep.el (grep-find): Copy from `grep' the condition
27477 for calling grep-compute-defaults.
27478
27479 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
27480 if buffer is empty.
27481
27482 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
27483
27484 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
27485
27486 * hilit-chg.el (highlight-changes-mode): Don't autoload.
27487
27488 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
27489 non-preloaded variables.
27490
27491 2005-01-17 Steven Tamm <steventamm@mac.com>
27492
27493 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
27494 tex-shell cause to force interactivity when using pipes.
27495
27496 2005-01-17 Kim F. Storm <storm@cua.dk>
27497
27498 * simple.el (just-one-space): Make arg optional.
27499
27500 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
27501
27502 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
27503 posn-at-x-y to t to access left-margin.
27504
27505 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
27506
27507 Sync with Tramp 2.0.47.
27508
27509 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
27510 catching keep-date problems in cp/scp operations.
27511 (tramp-handle-copy-file): Don't call `set-file-modes'
27512 unconditionally. Specialized functions should know better what is
27513 necessary. This improves performance a little bit, and the
27514 functions could catch errors with `cp -p' and `scp -p'.
27515 (tramp-do-copy-or-rename-file-via-buffer)
27516 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
27517 when appropriate.
27518 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
27519 Call `set-file-modes' when appropriate.
27520 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
27521 Johnsson <isak@hypergene.com>
27522 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
27523 of both Tramp buffer and debug buffer. Reported by Joakim Verona
27524 <joakim@verona.se>
27525 (tramp-file-name-for-operation): Mark `shell-command' as magic for
27526 Emacs only.
27527
27528 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
27529 `find-file-hooks' and `dired-mode-hook'.
27530 (tramp-minor-mode-map): Respective map. Add remapping for
27531 `compile' and `recompile'.
27532 (tramp-remap-command, tramp-recompile): New defuns.
27533 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
27534 in buffer "*Compilation*". Call the commands asynchronously.
27535
27536 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
27537 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
27538 `shell-command', because it isn't magic in XEmacs. Reported by
27539 Adrian Aichner <adrian@xemacs.org>.
27540
27541 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
27542 `substitute-in-file-name.
27543 (tramp-smb-handle-substitute-in-file-name): New defun.
27544 (tramp-smb-advice-PC-do-completion): Delete advice.
27545
27546 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
27547
27548 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
27549 Fix error in deleting region.
27550
27551 2005-01-15 Richard M. Stallman <rms@gnu.org>
27552
27553 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
27554 In non-temp buffer, switch syntax table temporarily.
27555
27556 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
27557
27558 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
27559
27560 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
27561
27562 * imenu.el (imenu--split-menu): Copy menulist before sorting.
27563 (imenu--generic-function): Use START, not BEG, as pos of definition.
27564
27565 * simple.el (just-one-space): Argument specifies number of spaces.
27566
27567 * simple.el (eval-expression-print-format): Avoid warning
27568 about edebug-active.
27569
27570 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
27571
27572 * progmodes/sh-script.el: Code copied from make-mode.el
27573 with small changes,
27574 (sh-mode-map): Bind C-c C-\.
27575 (sh-backslash-column, sh-backslash-align): New variables.
27576 (sh-backslash-region, sh-append-backslash): New functions.
27577
27578 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
27579
27580 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
27581 (rmail-pop-password, rmail-pop-password-required): Move to
27582 rmail-obsolete group.
27583 (rmail-set-pop-password): Rename to rmail-set-remote-password.
27584 All callers updated.
27585 (rmail-get-pop-password): Rename to rmail-get-remote-password.
27586 Take an argument specifying whether it is POP or IMAP mailbox we
27587 are using. All callers updated.
27588 (rmail-pop-password-error): Rename to
27589 rmail-remote-password-error. Added mailutils-specific error message.
27590 (rmail-movemail-search-path)
27591 (rmail-movemail-variant-in-use): New variables.
27592 (rmail-remote-password, rmail-remote-password-required):
27593 New customization variables.
27594 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
27595 (rmail-parse-url): New function.
27596 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
27597 with GNU mailutils movemail.
27598
27599 2005-01-15 Kevin Ryde <user42@zip.com.au>
27600
27601 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
27602 suffix to space, $ or '$, to correctly position point when going
27603 to @table style constants like DBL_MAX.
27604
27605 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
27606
27607 * type-break.el (type-break-mode, type-break-file-time)
27608 (type-break-file-keystroke-count, type-break-choose-file):
27609 Don't store data in or load data from the file if type-break-file-name
27610 is nil.
27611 (type-break-file-name): Doc update as per the above.
27612
27613 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
27614
27615 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
27616 lookup-key might return nil; handle that.
27617
27618 2005-01-15 Alan Mackenzie <acm@muc.de>
27619
27620 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
27621 rather than the element found, thus enabling the tree to be setcar'd.
27622
27623 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
27624
27625 * textmodes/org.el (org-show-following-heading): New option.
27626 (org-show-hierarchy-above): Use `org-show-following-heading'.
27627 (org-cycle): Documentation fix.
27628
27629 * textmodes/org.el (orgtbl-optimized): New option
27630 (orgtbl-mode): New command, a minor mode.
27631 (orgtbl-mode-map): New variable.
27632 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
27633 (orgtbl-error, orgtbl-self-insert-command)
27634 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
27635
27636 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
27637 a local variable in each org-mode buffer.
27638
27639 * textmodes/org.el (org-set-regexps-and-options): Rename from
27640 `org-set-regexps'. Added checking for STARTUP keyword.
27641 (org-get-current-options): Add STARTUP options.
27642 (org-table-insert-row): Make mode intelligent about when
27643 realignment is needed.
27644 (org-self-insert-command, org-delete-backward-char, org-delete-char):
27645 New commands.
27646 (org-enable-table-editor): New default value `optimized'.
27647 (org-table-blank-field): Support blanking regions if active.
27648
27649 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
27650
27651 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
27652 if the year is not given.
27653
27654 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
27655 Add new escapes %m and %M, fixed bug with %F by adding
27656 save-match-data.
27657 (reftex-reference): Remove ?. from list of spaces.
27658 (reftex-label-info): Add automatic label prefix recognition.
27659
27660 * textmodes/reftex-index.el (reftex-index-next-phrase):
27661 Add slave parameter to call of `reftex-index-this-phrase'.
27662 (reftex-index-this-phrase): New optional argument.
27663 (reftex-index-region-phrases): Add slave parameter to call of
27664 `reftex-index-this-phrase'.
27665 (reftex-display-index): New argument redo.
27666 (reftex-index-rescan): Add `redo' to arguments of
27667 `reftex-display-index'.
27668 (reftex-index-Rescan, reftex-index-revert)
27669 (reftex-index-switch-index-tag): Add `redo' to arguments of
27670 `reftex-display-index'.
27671 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
27672 indexing. Fix bug with matching is there is a quote before or
27673 after the word.
27674
27675 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
27676 Fix bug when collecting citation keys in lines with comments.
27677 (reftex-citation): Prefix argument no longer rescans the document,
27678 but forces prompting for optional arguments of cite macros.
27679 (reftex-do-citation): Prompting for optional arguments implemented.
27680
27681 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
27682 Add optional arguments to most cite commands.
27683 (reftex-cite-cleanup-optional-args): New option
27684 (reftex-cite-prompt-optional-args): New option.
27685 (reftex-trust-label-prefix): New option.
27686
27687 * textmodes/reftex-toc.el (reftex-toc-find-section):
27688 Add push-mark before changing the position in the buffer.
27689
27690 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
27691 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
27692
27693 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
27694
27695 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
27696 more carefully.
27697
27698 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
27699
27700 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
27701 (sgml-mode): Use it.
27702 (sgml-get-context): Better keep track of implicitly closed tags.
27703
27704 2005-01-13 Kenichi Handa <handa@m17n.org>
27705
27706 * textmodes/ispell.el: These changes are to fix misalignment error
27707 caused by equivalent characters of different Emacs charsets.
27708 (ispell-unified-chars-table): New variable.
27709 (ispell-get-decoded-string): New function.
27710 (ispell-get-casechars, ispell-get-not-casechars)
27711 (ispell-get-otherchars): Call ispell-get-decoded-string.
27712
27713 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
27714
27715 * custom.el (custom-declare-variable): Just put symbol instead
27716 of (defvar . symbol) in `current-load-list'.
27717
27718 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
27719
27720 * emacs-lisp/elint.el: Fixed typo in Commentary section.
27721
27722 2005-01-12 Jay Belanger <belanger@truman.edu>
27723
27724 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
27725 to create a Calc summary.
27726
27727 2005-01-12 Kim F. Storm <storm@cua.dk>
27728
27729 * mouse.el (mouse-on-link-p): Change functionality and doc
27730 string to comply with latest description in lisp ref.
27731
27732 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
27733
27734 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
27735 Enable mouse clicks on mode-line, header-line and margin.
27736 (event-type): Give mouse event symbols an `event-kind' property
27737 with value `mouse-click'.
27738
27739 2005-01-12 Juri Linkov <juri@jurta.org>
27740
27741 * facemenu.el (list-colors-display): Add new arg buffer-name.
27742 Use it. Fix docstring. Replace code for identifying duplicate
27743 colors by the name with call to `list-colors-duplicates' which
27744 identifies duplicate colors by the value unless the color
27745 is one of special Windows colors. Set truncate-lines to t.
27746 Print sorted duplicate color names on each line. Indent to 22
27747 \(the longest color name in rgb.txt) instead of 20. Optimize.
27748 (list-colors-duplicates): New function.
27749 (facemenu-color-name-equal): Delete function.
27750
27751 * facemenu.el (list-colors-print): New function created from code
27752 in list-colors-display. Print #RRGGBB at the window right edge.
27753 (list-colors-display): When temp-buffer-show-function is not
27754 defined, call list-colors-print from temp-buffer-show-hook
27755 to get the right value of window-width in list-colors-print
27756 after the buffer is displayed.
27757
27758 * simple.el (pop-mark): Move deactivate-mark out of conditional
27759 part to deactivate the active mark regardless of the state of the
27760 mark ring.
27761
27762 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
27763 variables line in desktop files.
27764
27765 2005-01-12 Juri Linkov <juri@jurta.org>
27766
27767 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
27768 Bring together isearch highlight related options.
27769 (lazy-highlight): Replace group `replace' by `matching'.
27770 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
27771 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
27772 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
27773 and declare them obsolete.
27774 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
27775 (isearch-faces): Remove defgroup.
27776 (isearch-overlay, isearch-highlight, isearch-dehighlight):
27777 Move isearch highlighting code closer to lazy highlighting code.
27778
27779 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
27780 (query-replace-highlight, query-replace-lazy-highlight)
27781 (query-replace): Move definitions to the beginning of the file.
27782
27783 2005-01-11 Juri Linkov <juri@jurta.org>
27784
27785 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
27786 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
27787 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
27788
27789 * info.el (Info-history-forward): New variable.
27790 (Info-select-node): Reset Info-history-forward to nil.
27791 (Info-last): Turn into defalias.
27792 (Info-history-back): Rename from Info-last.
27793 Add current node to Info-history-forward.
27794 (Info-history-forward): New fun.
27795 (Info-mode-map): Replace Info-last by Info-history-back.
27796 Bind Info-history-forward to "r".
27797 (Info-mode-menu): Replace Info-last by Info-history-back.
27798 Fix menu item text. Add menu item for Info-history-forward.
27799 (info-tool-bar-map): Replace Info-last by Info-history-back.
27800 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
27801 for Info-history-forward.
27802 (Info-mode): Replace Info-last by Info-history-back in docstring.
27803 Add local variable Info-history-forward.
27804 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
27805
27806 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
27807
27808 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
27809 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
27810 Ignore select-window events rather than fiddle with
27811 mouse-autoselect-window.
27812
27813 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
27814
27815 * type-break.el (type-break-mode): Fix previous change.
27816
27817 2005-01-10 Jay Belanger <belanger@truman.edu>
27818
27819 * calc/calc-ext.el (calc-reset): Reset when inside embedded
27820 calculator; only reset when point is inside a calculator.
27821 Don't adjust the window height if the window takes up the whole height
27822 of the frame.
27823
27824 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
27825
27826 * ebuff-menu.el (Electric-buffer-menu-mode):
27827 Preserve value of buffer-local var header-line-format.
27828
27829 2005-01-09 Jay Belanger <belanger@truman.edu>
27830
27831 * calc/calc.el (calc-mode-var-list-restore-saved-values):
27832 Make sure settings file exists before accessing it.
27833
27834 * calc/calc-embed.el (calc-embedded-subst):
27835 Replace math-multi-subst-rec, which is only supposed to be called
27836 by math-multi-subst, by math-multi-subst.
27837
27838 2005-01-09 Andre Spiegel <spiegel@gnu.org>
27839
27840 * vc.el (vc-allow-async-revert): New user option.
27841 (vc-disable-async-diff): New internal variable.
27842 (vc-revert-buffer): Use them to disable asynchronous diff.
27843
27844 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
27845 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
27846 asynchronously if vc-disable-async-diff is t.
27847
27848 2005-01-09 Jay Belanger <belanger@truman.edu>
27849
27850 * calc/calc.el (defcalcmodevar): New macro.
27851 (calc-mode-var-list-restore-default-values)
27852 (calc-mode-var-list-restore-saved-values): New functions.
27853 (calc-mode-var-list): Use defcalcmodevar to define it.
27854 (calc-always-load-extensions, calc-line-numbering)
27855 (calc-line-breaking, calc-display-just, calc-display-origin)
27856 (calc-number-radix, calc-leading-zeros, calc-group-digits)
27857 (calc-group-char, calc-point-char, calc-frac-format)
27858 (calc-prefer-frac, calc-hms-format, calc-date-format)
27859 (calc-float-format, calc-full-float-format, calc-complex-format)
27860 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
27861 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
27862 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
27863 (calc-matrix-brackets, calc-language, calc-language-option)
27864 (calc-left-label, calc-right-label, calc-word-size)
27865 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
27866 (calc-display-raw, calc-internal-prec, calc-angle-mode)
27867 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
27868 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
27869 (calc-window-height, calc-display-trail, calc-show-selections)
27870 (calc-use-selections, calc-assoc-selections)
27871 (calc-display-working-message, calc-auto-why, calc-timing)
27872 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
27873 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
27874 (calc-gnuplot-default-device, calc-gnuplot-default-output)
27875 (calc-gnuplot-print-device, calc-gnuplot-print-output)
27876 (calc-gnuplot-geometry, calc-graph-default-resolution)
27877 (calc-graph-default-resolution-3d, calc-invocation-macro)
27878 (calc-show-banner): Use defcalcmodevar to declare them and set
27879 their default values.
27880
27881 * calc/calc-ext.el (calc-reset): Restore saved values of variables
27882 instead of default values (but restore default values if there is
27883 an argument of 0).
27884
27885 2005-01-09 David Kastrup <dak@gnu.org>
27886
27887 * desktop.el (desktop-restore-eager): Fix typo in type.
27888
27889 2005-01-08 Richard M. Stallman <rms@gnu.org>
27890
27891 * cus-edit.el (customize): Delete :link.
27892
27893 2005-01-08 Jay Belanger <belanger@truman.edu>
27894
27895 * calc/calc.el (calc-mode): Remove the extension from the
27896 `calc-settings-file' file name when loading it.
27897
27898 2005-01-08 Kim F. Storm <storm@cua.dk>
27899
27900 * info.el (Info-mode-map, Info-next-link-keymap)
27901 (Info-prev-link-keymap, Info-up-link-keymap):
27902 Map follow-link to mouse-face.
27903 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
27904
27905 2005-01-08 Jay Belanger <belanger@truman.edu>
27906
27907 * calc/calc.el (calc-settings-file): Change default value.
27908 Suggested by cgw in a comment in calc-mode.el.
27909
27910 * calc/calc-mode.el (calc-settings-file-name):
27911 Compare calc-settings-file to user-init-file instead of ~/.emacs.
27912 Replace ~/.emacs in a prompt by calc-settings-file.
27913
27914 2005-01-07 Lars Hansen <larsh@math.ku.dk>
27915
27916 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
27917 (desktop-lazy-idle-delay): New customizable variables.
27918 (desktop-buffer-args-list): New variable.
27919 (desktop-append-buffer-args): New function.
27920 (desktop-save): Call desktop-append-buffer-args for some buffers.
27921 (desktop-lazy-create-buffer): New function.
27922 (desktop-idle-create-buffers): New function.
27923 (desktop-read): Add message about buffers to restore lazily.
27924 (desktop-lazy-abort): New command.
27925 (desktop-clear): Call desktop-lazy-abort.
27926 (desktop-lazy-complete): New command.
27927
27928 2005-01-06 Richard M. Stallman <rms@gnu.org>
27929
27930 * emacs-lisp/find-func.el (find-face-definition):
27931 Rename from find-face.
27932
27933 2005-01-06 Kim F. Storm <storm@cua.dk>
27934
27935 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
27936
27937 * man.el (Man-xref-man-page, Man-xref-header-file)
27938 (Man-xref-normal-file): Add follow-link property.
27939
27940 2005-01-06 Jay Belanger <belanger@truman.edu>
27941
27942 * calc/calc-units.el: Make sure the proper macro definitions are
27943 available when compiling.
27944
27945 2005-01-06 Juri Linkov <juri@jurta.org>
27946
27947 * isearch.el (isearch-lazy-highlight-update):
27948 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
27949
27950 2005-01-06 Miles Bader <miles@gnu.org>
27951
27952 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
27953 (isearch-lazy-highlight-face): Use new name.
27954
27955 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
27956
27957 * uniquify.el (uniquify-rationalize-file-buffer-names):
27958 Re-add an interactive spec.
27959 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
27960 to the same name.
27961
27962 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
27963 (isearch-update, isearch-done): Adjust calls accordingly.
27964
27965 2005-01-05 Richard M. Stallman <rms@gnu.org>
27966
27967 * custom.el (custom-set-variables, custom-theme-set-variables):
27968 Clarify documentation.
27969
27970 * emacs-lisp/find-func.el (find-variable)
27971 (find-variable-other-window, find-variable-other-frame):
27972 Fix the TYPE args to find-function-read and find-function-do-it.
27973 (find-function): Doc fix.
27974 (find-function-at-point): Replace function-at-point alias.
27975
27976 2005-01-04 Richard M. Stallman <rms@gnu.org>
27977
27978 * cus-face.el (custom-declare-face):
27979 Record defface in current-load-list.
27980
27981 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
27982
27983 * emacs-lisp/find-func.el: Doc fixes.
27984 (find-face-regexp): New variable.
27985 (find-function-regexp-alist): New variable.
27986 (find-function-C-source): Third arg is now TYPE.
27987 (find-function-search-for-symbol): Handle general TYPE.
27988 (find-function-read, find-function-do-it): Handle general TYPE.
27989 (find-definition-noselect, find-face): New functions.
27990 (function-at-point): Alias deleted.
27991
27992 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
27993
27994 * battery.el (display-battery-mode): Rename from display-battery.
27995 Handle the case where it gets turned off.
27996
27997 2005-01-04 Richard M. Stallman <rms@gnu.org>
27998
27999 * cus-edit.el (customize): Make :link point to user doc.
28000
28001 * man.el (Man-fontify-manpage): Turn off undo generation.
28002
28003 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
28004
28005 2005-01-04 Andreas Schwab <schwab@suse.de>
28006
28007 * files.el (insert-directory): Only look for error lines in
28008 inserted text. Don't move too far after processing --dired markers.
28009
28010 2005-01-04 Richard M. Stallman <rms@gnu.org>
28011
28012 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
28013 Don't expand if the character is @, period, dash, etc.
28014 (define-mail-abbrev): Quote names that contain problem characters.
28015
28016 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
28017
28018 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
28019
28020 2005-01-03 Richard M. Stallman <rms@gnu.org>
28021
28022 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
28023 (query-replace-highlight, query-replace-lazy-highlight)
28024 (query-replace): Definitions moved up. Doc fix.
28025
28026 2005-01-03 Richard M. Stallman <rms@gnu.org>
28027
28028 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
28029 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
28030 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
28031 (lazy-highlight-face): Rename from isearch-lazy-...
28032 Change all references to them.
28033
28034 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
28035
28036 * cus-edit.el (custom-file): Doc fix for defcustom.
28037 (custom-file): The function no longer sets the variable
28038 `custom-file' to its return value.
28039
28040 * startup.el (command-line): No longer load `custom-file'.
28041
28042 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
28043
28044 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
28045
28046 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
28047 Don't confuse module-prefixed identifiers for labels.
28048 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
28049
28050 2005-01-02 Richard M. Stallman <rms@gnu.org>
28051
28052 * files.el (basic-save-buffer-1): Fix previous change.
28053
28054 * loadhist.el (file-loadhist-lookup): New function.
28055 (file-provides, file-requires): Use it.
28056
28057 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
28058 instead of calculating the right size.
28059
28060 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
28061
28062 * vc-svn.el (vc-svn-diff): Stay local if possible.
28063
28064 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
28065
28066 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
28067
28068 * files.el (hack-local-variables): Fix last change.
28069
28070 2005-01-02 Jay Belanger <belanger@truman.edu>
28071
28072 * calc/calc-yank.el (calc-edit-top): New variable.
28073 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
28074 object. Change header properties.
28075 (calc-edit-finish, calc-edit-finish-stack-object)
28076 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
28077 edited object.
28078 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
28079 for the beginning of the edited object.
28080 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
28081 for the beginning of the edited object.
28082 * calc/calc-prog.el (calc-edit-macro-finish-edit)
28083 (calc-finish-formula-edit, calc-macro-repeats)
28084 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
28085 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
28086 beginning of the edited object.
28087 (calc-user-define-edit): Change the header for editing macros.
28088 Remove unnecessary variable.
28089
28090 2005-01-01 Jay Belanger <belanger@truman.edu>
28091
28092 * calc/calc-yank.el (calc-edit-mode): Change default header.
28093 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
28094 * calc/calc-store.el (calc-edit-variable): Change title to match new
28095 header.
28096 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
28097 mode to match new header.
28098 (calc-user-define-edit): Change titles to include names of commands.
28099 (calc-finish-formula-edit): Adjust to handle new header.
28100 (calc-finish-macro-edit): Remove.
28101 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
28102 (calc-edit-macro-command, calc-edit-macro-command-type)
28103 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
28104 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
28105 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
28106 (calc-edit-macro-finish-edit): New functions.
28107 (calc-user-define-edit): Use new functions to edit named calc macros.
28108
28109 2005-01-01 Stefan <monnier@iro.umontreal.ca>
28110
28111 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
28112
28113 * ses.el (copy-region-as-kill): Deactivate mark.
28114
28115 2005-01-01 Richard M. Stallman <rms@gnu.org>
28116
28117 * replace.el (occur-1): If the output buffer is also an input,
28118 don't kill it, rename it.
28119
28120 * faces.el (set-face-background, set-face-foreground): Doc fix.
28121
28122 * cus-face.el (custom-face-attributes): Fix :help-echo strings
28123 for :foreground and :background.
28124
28125 * dired.el (dired-view-command-alist): Variable deleted.
28126 (dired-view-file, dired-mouse-find-file-other-window):
28127 Delete the code to use it.
28128
28129 2005-01-01 Kim F. Storm <storm@cua.dk>
28130
28131 * image.el (insert-sliced-image): Use t for line-height property.
28132
28133 See ChangeLog.11 for earlier changes.
28134
28135 ;; Local Variables:
28136 ;; coding: iso-2022-7bit
28137 ;; End:
28138
28139 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
28140 Copying and distribution of this file, with or without modification,
28141 are permitted provided the copyright notice and this notice are preserved.
28142
28143 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1