(custom-make-dependencies): Typo.
[emacs.git] / lisp / ChangeLog
blob1439ff2285a545a2a8288d182eed4527ef15ce2b
1 2005-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * cus-dep.el (custom-make-dependencies): Typo.
5 2005-11-13  Michael Albinus  <michael.albinus@gmx.de>
7         * net/tramp-util.el (top): Fix compilation warning.
9 2005-11-13  Kim F. Storm  <storm@cua.dk>
11         * help.el (help-for-help-internal): Fix `a' entry.  Add `d' entry.
13 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
15         * progmodes/gud.el (gud-menu-map):  Move parentheses (again).
16         (gud-speedbar-buttons): Match on "const char *" too.
18         * progmodes/gdb-ui.el (gdb-var-create-handler)
19         (gdb-var-list-children-handler): Match on "const char *" too.
20         (gdb-var-evaluate-expression-handler): Match on empty string.
21         (gdb-var-update-handler): Only call
22         gdb-var-evaluate-expression-handler when required.
24 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
26         * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
27         selected window.  This still doesn't work for speedbar.
28         (gud-speedbar-buttons): Handle string expressions properly.
30         * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
31         (gdb-var-create-handler): Handle string expressions properly.
32         (gdb-var-list-children-regexp, gdb-var-list-children-handler):
33         Handle string expressions properly.  Move "type" field into regexp.
35 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
37         * bookmark.el (bookmark-maybe-message): New function to reduce
38         code duplication: invokes `message' iff baud-rate is high enough.
39         (bookmark-write-file): Use above instead of an inline conditional.
40         (bookmark-load): Same.
42 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
44         * bookmark.el (bookmark-write-file): Don't visit the destination
45         file, just write the data to it using write-region.  This is
46         similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
47         change to avoid visiting the file in the first place.
49 2005-11-12  Chong Yidong  <cyd@stupidchicken.com>
51         * hi-lock.el (hi-lock-mode): Set the default value of
52         font-lock-defaults.
54 2005-11-11  Luc Teirlinck  <teirllm@auburn.edu>
56         * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
57         arg to `file-attributes'.
58         (find-lisp-format): The UID and GID can now be strings.
60 2005-11-12  Kim F. Storm  <storm@cua.dk>
62         * help.el (help-map): Bind C-h d to apropos-documentation.
64         * simple.el (what-cursor-position): Print (EOB) instead of (100%)
65         when point is at end-of-buffer.
67         * apropos.el (apropos-match-face): Doc fix.
68         (apropos-sort-by-scores): Add new choice `verbose'.
69         (apropos-documentation-sort-by-scores): New defcustom.
70         (apropos-pattern): Now contains the pattern entered by the user.
71         (apropos-pattern-quoted): New defvar.
72         (apropos-regexp): New defvar, containing the regexp corresponding
73         to apropos-pattern.
74         (apropos-all-words-regexp): Rename from apropos-all-regexp.
75         (apropos-read-pattern): New defun.  Use it to read pattern arg in
76         interactive calls; returns list of words for a word list, and
77         string for a regexp.
78         (apropos-parse-pattern): Rename from apropos-rewrite-regexp.  Now
79         parses a list of words or regexp as returned by apropos-read-pattern.
80         (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
81         (apropos-score-doc): Return a very high score if the string
82         entered by the user matches literally.
83         (apropos-variable): Doc fix.  Use apropos-read-pattern.
84         (apropos-command): Doc fix.  Use apropos-read-pattern and
85         apropos-parse-pattern.  Call apropos-print with nosubst=t.
86         (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
87         apropos-parse-pattern.
88         (apropos-documentation): Doc fix. Use apropos-read-pattern and
89         apropos-parse-pattern.  Locally bind apropos-sort-by-scores to
90         apropos-documentation-sort-by-scores.  Call apropos-print with
91         nosubst=t.
92         (apropos-documentation-internal): Pass doc string through
93         substitute-key-definition before adding text properties.
94         Highlight substring matching literal user input if possible.
95         (apropos-documentation-check-doc-file): Remove locals beg and end.
96         Fix calculation of score (as added twice).  Pass doc string through
97         substitute-key-definition before adding text properties.
98         (apropos-documentation-check-elc-file): Pass doc string through
99         substitute-key-definition before adding text properties.
100         Highlight substring matching literal user input if possible.
101         (apropos-print): Add new arg NOSUBST; if set, command and variable
102         doc strings have already been passed through substitute-key-definition.
103         Add code to handle apropos-accumulator items without score element
104         for backwards compatibility (e.g. with woman package).
105         Only show scores if apropos-sort-by-scores is `verbose'.
107 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
109         * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
110         Add jka-compr-load-suffixes to load-suffixes.
112         * jka-compr.el: Require 'jka-cmpr-hook.
113         (jka-compr-info-compress-message, jka-compr-info-compress-program)
114         (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
115         (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
116         (jka-compr-info-can-append, jka-compr-info-strip-extension)
117         (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
118         (jka-compr-info-regexp): Remove.  Provided by jka-cmpr-hook.
119         (jka-compr-uninstall): Remove entries from
120         jka-compr-added-to-file-coding-system-alist after they are used.
121         (jka-compr-error): Remove unused var `curbuf'.
122         (jka-compr-file-local-copy): Remove unused var `notfound'.
124 2005-11-10  Romain Francoise  <romain@orebokech.com>
126         * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
128 2005-11-11  Nick Roberts  <nickrob@snap.net.nz>
130         * progmodes/gud.el (gud-menu-map): Move parentheses.
131         (gdb): New command gud-pv.
133 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
135         * tar-mode.el: Remove spurious or unnecessary leading stars
136         in docstrings.
137         (tar-header-block-tokenize): Also obey default-file-name-coding-system.
138         (tar-parse-octal-integer-safe): Use mapc.
139         (tar-header-block-summarize): Remove unused var `ck'.
140         (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
141         cleared before.  Obey default-enable-multibyte-characters.
142         Use mapconcat.  Simplify setting of tar-header-offset.
143         (tar-mode-map): Move initialization inside delcaration.
144         (tar-flag-deleted): Use `abs'.
145         (tar-expunge-internal): Remove unused var `line'.
146         (tar-expunge-internal): Don't hardcode point-min==1.
147         (tar-expunge): Widen while doing set-buffer-multibyte.
148         (tar-rename-entry): Use file-name-coding-system.
149         (tar-alter-one-field): Don't hardcode point-min==1.
150         (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
151         (tar-pad-to-blocksize): Don't hardcode point-min==1.  Clarify the code.
153 2005-11-10  Masatake YAMATO  <jet@gyve.org>
155         * add-log.el (add-log-current-defun): Handle class::method
156         notation of c++. Fix incorrect comment.
158 2005-11-10  Alan Mackenzie  <acm@muc.de>
160         * help-fns.el (describe-variable): Make C-h v work when a variable
161         has variable documentation yet is unbound.
163 2005-11-10  Masatake YAMATO  <jet@gyve.org>
165         * man.el (Man-highlight-references): Set an empty
166         string to `Man-arguments' if it is nil.
167         Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
169 2005-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
171         * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
172         commenting conventions.
174         * cus-dep.el (custom-make-dependencies): Simplify.
175         Better follow the commenting conventions.
177 2005-11-09  Richard M. Stallman  <rms@gnu.org>
179         * apropos.el (apropos-pattern): Rename from apropos-regexp.
180         (apropos-orig-pattern): Rename from apropos-orig-regexp.
181         All uses changed.
182         (apropos-rewrite-regexp): Doc fix.
183         (apropos-variable, apropos-command, apropos, apropos-value):
184         Change prompt; carry through the argument renaming.
186 2005-11-09  Luc Teirlinck  <teirllm@auburn.edu>
188         * find-lisp.el: Require dired.
189         (find-lisp-find-dired-internal): Do not call
190         `abbreviate-file-name' on DIR.
192 2005-11-10  Nick Roberts  <nickrob@snap.net.nz>
194         * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
196 2005-11-09  Nick Roberts  <nickrob@snap.net.nz>
198         * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
199         when using the speedbar.
200         (gdb): New command gud-pp.
201         (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
203 2005-11-09  Juri Linkov  <juri@jurta.org>
205         * replace.el (occur-excluded-properties): New defcustom.
206         (occur-1, occur-engine, occur-accumulate-lines): Use it.
208 2005-11-08  Jay Belanger  <belanger@truman.edu>
210         * calc/calc-units.el (math-convert-units): Replace any composite
211         unit by its definition.
213 2005-11-08  Lars Hansen  <larsh@soem.dk>
215         * emacs-lisp/autoload.el (update-directory-autoloads):
216         Add obsolete function alias.
218 2005-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
220         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
221         comment-indent-function.
222         (lisp-comment-indent): Replace by an alias for comment-indent-default.
224         * reveal.el (reveal-post-command): Rework the handling of
225         reveal-open-spots, so as to be more reliable.  There were several
226         tricky corner cases where an open spot might be lost, or where
227         a closed spot might end up on the list of open spots.
228         Only reveal text that's ellipsised.
230 2005-11-07  Carsten Dominik  <dominik@science.uva.nl>
232         * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
234 2005-11-06  Richard M. Stallman  <rms@gnu.org>
236         * progmodes/compile.el (compilation-internal-error-properties):
237         save-excursion around the computation of MARKER.
239 2005-11-06  Piet van Oostrum  <piet@cs.uu.nl>
241         * textmodes/flyspell.el (flyspell-external-point-words):
242         flyspell-get-word returns a list, not just a string.
244 2005-11-06  John Paul Wallington  <jpw@pobox.com>
246         * ibuffer.el (ibuffer): Search all visible frames when getting
247         Ibuffer buffer's window.
249 2005-11-07  Masatake YAMATO  <jet@gyve.org>
251         * man.el (Man-reference-regexp): Accept spaces between
252         `Man-name-regexp' and `Man-section-regexp'.
253         (Man-apropos-regexp): New variable.
254         (Man-abstract-xref-man-page): Use value for `Man-target-string'
255         if available.
256         (Man-highlight-references, Man-highlight-references0):
257         Handle the case when `Man-arguments' includes "-k".
258         (Man-highlight-references0): Rename the argument `TARGET-POS' to
259         `TARGET'. `TARGET' can be a number, function or nil.
261 2005-11-06  Nick Roberts  <nickrob@snap.net.nz>
263         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
264         (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
265         (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
266         (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
267         (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
268         (gdb-send-item): Use buffer-local-value and simplify.
270 2005-11-05  Luc Teirlinck  <teirllm@auburn.edu>
272         * startup.el (command-line): Use `custom-reevaluate-setting' for
273         `global-font-lock-mode'.
275         * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
276         by default, except in batch mode or when the -D option is given.
278         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
279         specified keyword args on to `define-minor-mode'.  Update docstring.
281 2005-11-05  Romain Francoise  <romain@orebokech.com>
283         * replace.el (occur-engine): Add marker at end of line, too.
285 2005-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
287         * font-lock.el: Don't deal with font-lock-face-attributes here,
288         move the code ...
290         * startup.el (command-line): ... here. Use face-spec-set instead
291         of custom-declare-face.
293         * faces.el (face-spec-set): Reset the face if spec is not nil.
295 2005-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
297         * newcomment.el (comment-region-internal): Box more tightly in the
298         common case where there's no TAB in the boxed text.
300 2005-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
302         * info.el (info-tool-bar-map): Use images prev-node, next-node and
303         up-node.
305 2005-11-04  Ulf Jasper  <ulf.jasper@web.de>
307         * newsticker.el: Commentary updated. Code formatting changed.
308         (newsticker-version): Change to "1.9".
309         (newsticker, newsticker-feed): Doc fix.
310         (newsticker-url-list): Doc fix.  Add option "Weekly".
311         (newsticker-retrieval-interval): Add option "Weekly".
312         (newsticker-headline-processing): Doc fix.
313         (newsticker-auto-mark-filter): Remove.
314         (newsticker-auto-mark-filter-list): New.
315         (newsticker-layout, newsticker-sort-method): Doc fix.
316         (newsticker-hide-old-items-in-newsticker-buffer)
317         (newsticker-heading-format, newsticker-item-format)
318         (newsticker-desc-format): Doc fix.
319         (newsticker-show-all-rss-elements): Remove.
320         (newsticker-show-all-news-elements): New.
321         (newsticker-faces, newsticker-ticker): Doc fix.
322         (remove-from-invisibility-spec): Code formatting.
323         (newsticker--process-ids): New.
324         (newsticker-mode): Doc fix.
325         (newsticker-mode): Change mode-line-format.
326         (newsticker-start): Remove debug output.
327         (newsticker-start-ticker): Doc fix.  Add Autoload cookie.
328         (newsticker-w3m-show-inline-images): Code formatting.
329         (newsticker-next-item): Call `force-mode-line-update'.
330         (newsticker-previous-item): Call `force-mode-line-update'.
331         (newsticker-next-feed): Call `force-mode-line-update'.
332         (newsticker-previous-feed): Call `force-mode-line-update'.
333         (newsticker-mark-all-items-at-point-as-read): Code formatting.
334         (newsticker-show-old-items): Do not show descs.
335         (newsticker-hide-entry): Hide too much.
336         (newsticker-hide-entry, newsticker-show-entry)
337         (newsticker-toggle-auto-narrow-to-feed): Code formatting.
338         (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
339         (newsticker-toggle-auto-narrow-to-item): Code formatting.
340         (newsticker-set-auto-narrow-to-item): Update buffer immediately.
341         (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
342         (newsticker-get-news): Call `force-mode-line-update'.
343         Collect process ids.
344         (newsticker--sentinel): Change coding system handling.
345         Move image retrieval to new functions newsticker--get-logo-url-*.
346         Move feed parsing to new functions newsticker--parse-*.
347         Update list of process ids.
348         (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
349         (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
350         (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
351         (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
352         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
353         (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
354         (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
355         (newsticker--decode-coding-string): Remove.
356         (newsticker--decode-numeric-entities): Check input.  Format code.
357         (newsticker--remove-whitespace): Check input.
358         (newsticker--do-forget-preformatted): Doc fix.
359         (newsticker--decode-rfc822-date): Allow for missing time.
360         (newsticker--update-process-ids): New.
361         (newsticker--image-sentinel): Change comment.
362         (newsticker--image-read): Change error message.
363         (newsticker--imenu-goto): Doc fix.  Show headline title.
364         (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
365         (newsticker--buffer-do-insert-text): Clean whitespace in
366         html-rendered headline title.  Code formatting.
367         Call `newsticker--buffer-print-extra-elements'.
368         (newsticker--buffer-print-extra-element): Remove.
369         (newsticker--buffer-print-extra-elements): New.
370         (newsticker--buffer-do-print-extra-element): New.
371         (newsticker--buffer-insert-enclosure): Doc fix.  Use MBytes for
372         large sizes.
373         (newsticker--run-auto-mark-filter)
374         (newsticker--do-run-auto-mark-filter):
375         Use `newsticker-auto-mark-filter-list'.
377 2005-11-04  Ryan Yeske  <rcyeske@gmail.com>
379         * net/rcirc.el: Use split-string OMIT-NULLS argument.
380         (rcirc-print): Force redisplay before running hooks.  Do long
381         buffer truncation after making new text read-only.  Deal with nil
382         text when decoding strings.  If TARGET is nil, use either the
383         currently selected buffer, if it is an rcirc buffer and of the
384         same process or the process buffer.
385         (rcirc-mode): Remove header-line.  Recompute short buffer names.
386         Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
387         (rcirc-short-buffer-name): Add variable.
388         (rcirc-kill-buffer-hook): Recompute short buffer names.
389         Remove nick from private channel.
390         (rcirc-send-input): Send command text to current-buffer.
391         Don't clear overlay arrow here.
392         (rcirc-short-buffer-name): Return a short buffer name.
393         (rcirc-update-short-buffer-names, rcirc-abbreviate)
394         (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
395         buffer-name abbreviations.
396         (rcirc-kill-buffer-hook-1): Split to make debugging easier.
397         Do not touch nick-table when killing a parted channel.
398         (rcirc-window-configuration-change): Rename from rcirc-update-activity.
399         Clear arrow from current buffer if it is now hidden.
400         (rcirc-current-buffer): Add variable.
401         (rcirc-my-nick, rcirc-other-nick, rcirc-server)
402         (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
403         Remove -face from names.
404         (rcirc-update-activity-string): Print "DND" when globally ignoring
405         activity.
406         (rcirc-ignore-buffer-activity-flag): Rename from
407         rcirc-ignore-channel-activity.
408         (rcirc-ignore-all-activity-flag): Doc fix.
409         (rcirc-channels): Remove variable.
410         (rcirc-kill-buffer-hook):
411         (rcirc-get-buffer-create): Add nick to private channel.
412         (rcirc-multiline-edit-submit): Remove tabs.
413         (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
414         folded.
415         (rcirc-remove-nick-channel): Bug fix.
416         (rcirc-toggle-ignore-buffer-activity): Rename from
417         rcirc-toggle-ignore-channel-activity.
418         (rcirc-record-activity): Add buffers to the front of the list.
419         (rcirc-update-activity): Remove killed buffers from list.
420         (rcirc-process-server-response-1): Remove last argument if it is
421         null before calling handler.
422         (rcirc): Add "rcirc" defcustom prefix.
423         (rcirc-prompt): Simplify default prompt.
424         Use custom-initialize-default.
425         (rcirc-private-chats): Remove variable.
426         (rcirc-prompt): Change initialization.
427         (rcirc-version): Remove function.
428         (rcirc-id-string): Add constant.
429         (rcirc-last-buffer): Remove variable.
430         (rcirc-buffer-alist): Add variable.
431         (rcirc-connect): Update variable setup.
432         (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
433         (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
434         default.
435         (rcirc-handler-generic): Trigger activity.
436         (rcirc-send-message): Create the buffor of the target.
437         (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
438         (rcirc-get-buffer): Just return nil if there is no matching buffer.
439         (rcirc-multiline-edit-cancel): Remove function.
440         (rcirc-set-last-buffer): Remove function.
441         (rcirc-get-any-buffer): Add function.
442         (rcirc-join-channels): Don't print /join text.
443         (rcirc-toggle-ignore-channel-activity): Add and update echo area
444         messages.
445         (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
446         (rcirc-handler-NOTICE): Recognize CTCP responses.
447         (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
448         constructing TOPIC string for buffers we are not JOINed.
449         (rcirc-handler-CTCP-response): Add handler.
450         (rcirc-multiline-edit-submit): Restore the window-configuration
451         before adjusting point.
452         (rcirc): Add customization group.
453         (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
454         (rcirc-user-full-name, rcirc-startup-channels-alist)
455         (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
456         (rcirc-ignore-all-activity-flag, rcirc-time-format)
457         (rcirc-input-ring-size, rcirc-read-only-flag)
458         (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
459         (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
460         Change defvar to defcustom.
461         (rcirc-update-prompt): Add optional ALL arg, which will update
462         prompts in all rcirc buffers.  Regexp quote replacement text.
463         (rcirc-fill-column): Accept 'frame-width as a value.
464         (rcirc-set-changed): Add function.
465         (rcirc-next-active-buffer): Write more meaningful messages.
466         (rcirc-faces): Add customization group.
467         (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
468         (rcirc-nick-in-message-face, rcirc-prompt-face)
469         (rcirc-mode-line-nick-face): Move into rcirc-faces group.
470         (with-rcirc-process-buffer): Move before first usage.
471         (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
472         (rcirc-debug-flag): Rename from `rcirc-log-p'.
473         (rcirc-debug): Rename from `rcirc-log'.
474         (rcirc-format-response-string): Do not print '-' chars for a
475         NOTICE with no sender.  Simplify output of server responses.
477 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
479         (rcirc-browse-url-map, rcirc-browse-url-at-point)
480         (rcirc-browse-url-at-mouse, rcirc-mangle-text): Make urls
481         mouse and RET clickable.
483 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
485         * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
487 2005-11-04  Ken Manheimer  <ken.manheimer@gmail.com>
489         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
490         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
491         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
492         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
493         argument to all these routines, so the passphrase can be managed
494         externally and passed in to the system.
495         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
496         pgg-add-passphrase-to-cache function.
498         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
499         (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
500         (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
501         (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional 'passphrase'
502         argument to all these routines, so the passphrase can be managed
503         externally and passed in to the system.
504         (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
505         function.
507 2005-11-04  Edward O'Connor  <hober0@gmail.com>  (tiny change)
509         * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
510         from goto-address-url-regexp.
512 2005-11-04  Carsten Dominik  <dominik@science.uva.nl>
514         * textmodes/org.el (org-read-date, org-goto-calendar)
515         (org-recenter-calendar, org-agenda-goto-calendar):
516         Temporarily clear 'calendar-move-hook'.
518 2005-11-04  Michael Kifer  <kifer@cs.stonybrook.edu>
520         * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
521         merging.
523         * ediff-util.el (ediff-previous-difference): Don't skip regions that
524         have merge clashes.
526 2005-11-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
528         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
529         Undo previous change.
531         * startup.el (command-line): Use `custom-reevaluate-setting' for
532         mouse-wheel-down-event and mouse-wheel-up-event.  Don't call
533         tty-register-default-colors on Mac.
535 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
537         * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
538         (gdb-buffer-type): Make it automatically buffer local...
539         (gdb-get-create-buffer): ...and set it accordingly.
540         (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
541         actually work.
543 2005-11-03  Dan Nicolaescu  <dann@ics.uci.edu>
545         * font-lock.el (font-lock-warning-face): Use the more vivid red1,
546         not red.
548 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
550         * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
551         case GUD buffer is not visible.
552         (gdb-goto-breakpoint): Try to force display in source buffer.
553         (gdb-frame-gdb-buffer): Copy other similar functions.
554         (gdb-restore-windows): Don't display source if not asked for.
555         (gdb-assembler-buffer-name): Don't capitalise.
557 2005-11-03  Richard M. Stallman  <rms@gnu.org>
559         * wid-edit.el (key-sequence): New widget type.
561         * simple.el (set-mark-command-repeat-pop): New variable.
562         (set-mark-command): Only interpret plan C-@ after a pop as a pop
563         if set-mark-command-repeat-pop is true.
565         * info.el (Info-fontify-node): Don't display extra "see" if there
566         already is one here.
568         * mouse.el: Fix special handling of DEL after dragging a region:
569         (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
570         (mouse-region-delete-keys): Add [backspace].
572         * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
574         * textmodes/ispell.el (ispell-command-loop): Change `i' description
575         not to assume it pertains to an affix.
577         * textmodes/flyspell.el (flyspell-post-command-hook):
578         Bind deactivate-mark to prevent deactivation.
580 2005-11-03  Lars Hansen  <larsh@soem.dk>
582         * dired-x.el: Add menu bindings for dired-do-find-marked-files,
583         dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
584         dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
586 2005-11-03  Romain Francoise  <romain@orebokech.com>
588         * net/eudcb-mab.el: Now part of GNU Emacs.  Update FSF's address.
589         Update copyright years.
591 2005-11-03  Sam Steingold  <sds@gnu.org>
593         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
594         Use system-type instead of window-system because window-system is not
595         correctly defined during loadup.
597 2005-11-02  Mark A. Hershberger  <mah@everybody.org>
599         * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
600         (xml-parse-tag): Join strings separated by a comment properly.
602 2005-11-02  Andreas Schwab  <schwab@suse.de>
604         * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
606 2005-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
608         * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
609         (byte-optimize-pure-func): Quote the eval'd value.
611         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
612         Rename from perl-font-lock-syntactic-face-function.
613         Change the calling convention so it can be used as a font-lock MATCHER.
614         Do the parse-partial-sexp loop outselves.
615         (perl-font-lock-syntactic-keywords): Use it.
616         (perl-mode): Don't set font-lock-syntactic-face-function any more.
618 2005-11-02  Nick Roberts  <nickrob@snap.net.nz>
620         * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
621         disassembly buffer too.
622         (gdb-exited): Remove overlay arrows when execution has finished.
623         (gdb-info-frames-custom, gdb-info-threads-custom)
624         (gdb-info-registers-custom): Don't add inappropriate text
625         properties if inferior is not active.
627 2005-11-02  Glenn Morris  <rgm@gnu.org>
629         * progmodes/fortran.el (fortran-blink-match):
630         Use `blink-matching-delay'.
632 2005-11-02  John Mongan <jmongan@mccammon.ucsd.edu>  (tiny change)
634         * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
636 2005-11-02  Lars Hansen  <larsh@soem.dk>
638         * net/tramp.el (tramp-action-out-of-band): Handle scp message
639         "Permission denied".
641 2005-11-01  Richard M. Stallman  <rms@gnu.org>
643         * textmodes/flyspell.el (flyspell-external-point-words):
644         Pass nil to flyspell-get-word.
646 2005-11-02  Kim F. Storm  <storm@cua.dk>
648         * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
649         item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
651 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
653         * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
654         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
655         (calendar-mouse-print-dates): Add optional `event' argument.
656         Update interactive-spec.
657         (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
658         Use `calendar-event-to-date' instead of `event'.
660 2005-11-02  Masatake YAMATO  <jet@gyve.org>
662         * progmodes/ld-script.el (ld-script-builtins):
663         Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
664         "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
665         (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
667 2005-11-01  Romain Francoise  <romain@orebokech.com>
669         * vc-sccs.el: Update copyright year.
670         * ezimage.el: Likewise.
672 2005-11-01  KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>  (tiny change)
674         * info.el (Info-fontify-node): Use `string-width' for fontifying
675         underlined titles.
677 2005-11-01  Juri Linkov  <juri@jurta.org>
679         * info.el (Info-fontify-node): Downcase node header keywords Node,
680         Prev, Next, Up before comparison.
681         (Info-history): Insert absolute directory name, and put invisible
682         property on it.
684 2005-11-01  Juri Linkov  <juri@jurta.org>
686         * info.el (Info-file-supports-index-cookies): New variable.
687         (Info-find-node-2): Check makeinfo version for index cookie support.
688         (Info-index-nodes): Search for nodes with index cookies only when
689         Info-file-supports-index-cookies is t.  Otherwise, search nodes
690         with "Index" in the node name.
691         (Info-index-node): Search index cookie in the current node only when
692         Info-file-supports-index-cookies is t.  Otherwise, check the word
693         "Index" in the node name.
694         (Info-find-emacs-command-nodes): Remove code that searches nodes
695         with "Index" node name in the top menu.
697 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
699         * progmodes/scheme.el (scheme-mode-variables): Use the default
700         comment-indent-function.
702         * faces.el (face-attribute): Handle the case where a face inherits from
703         a non-existent face.
705         * simple.el (eval-expression-print-format): Use lisp-readable syntax
706         for octal and hexa output, and merge the char into the paren.
707         (kill-new): Use push.
708         (copy-to-buffer): Use with-current-buffer.
709         (completion-setup-function): Move code in loop to remove redundancy.
710         (minibuffer-local-must-match-map): Don't add bindings that duplicate
711         those inherited from minibuffer-local-completion-map.
713         * savehist.el (savehist-mode) <defcustom>:
714         Use custom-set-minor-mode if available.
715         (savehist-mode) <defun>: Run the minor mode hook, set the custom state
716         and emit a message if applicable.
718 2005-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
720         * savehist.el: Sync up to version 19.
721         (savehist-mode): New minor mode.
722         (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
723         (savehist-length): Remove (use history-length instead).
724         (savehist-file-modes): Rename from savehist-modes.
725         (savehist-save-hook, savehist-loaded): New vars.
726         (savehist-load): Use savehist-mode.  Try to smooth up transition from
727         old format to new format.
728         (savehist-install): Allow savehist-autosave-interval to be nil.
729         (savehist-save): Run the new hook.  Be more careful to only trim the
730         history variables.
731         (savehist-trim-history): New fun.  Replaces savehist-process-for-saving.
732         (savehist-printable): Print into a buffer rather than char-by-char.
734 2005-11-01  John Wiegley  <johnw@newartisans.com>
736         * iswitchb.el (iswitchb-define-mode-map): Re-enable the
737         toggle-ignore keybinding (C-a).  The author said it had been
738         disabled much earlier due to a possible incompatibility, but after
739         many months of usage I have encountered no problems (and it is a
740         rather useful option, especially for switching to " *temp*").
742         * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
743         support for OS/X's AddressBook, by calling out to the open source
744         program "contacts" (installable through Fink).
746         * net/eudc.el (eudc-expand-inline): If the
747         `eudc-multiple-match-handling-method' is set to `all', delete the
748         query string before inserting the query result.
750         * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
751         flag, to prevent Eshell from using the system ls when
752         `eshell-ls-insert-directory' is in used.
753         (eshell-ls-insert-directory): Disable font-lock in directory
754         buffer so that Eshell's own fontification is seen.  This broke
755         recently due to changes in font-lock, so this goes back to version
756         21 behavior.
758 2005-11-01  Nick Roberts  <nickrob@snap.net.nz>
760         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
761         (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
762         (gdb-many-windows): Doc fix.
764 2005-10-31  Romain Francoise  <romain@orebokech.com>
766         * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
768 2005-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
770         * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
771         that global-font-lock-mode can be enabled by default.
773         * font-lock.el (font-lock-keywords, font-lock-mode-internal)
774         (font-lock-add-keywords, font-lock-remove-keywords)
775         (font-lock-fontify-buffer): Remove autoload cookies.
777         * jit-lock.el (jit-lock-register): Likewise.
779         * emacs-lisp/syntax.el (syntax-ppss): Likewise.
781 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
783         * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
784         intact if there is no gud-comint-buffer.
786 2005-10-31  Luc Teirlinck  <teirllm@auburn.edu>
788         * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
789         old prompt comint-prompt-read-only is t and GDB commands are
790         issued from tool bar etc.
792 2005-10-31  Masatake YAMATO  <jet@gyve.org>
794         * vc.el (vc-directory-exclusion-list): Add "{arch}".
796 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
798         * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
799         (thumbs-thumbsdir): Make .emacs.d if it does not exist.
801 2005-10-30  Michael Albinus  <michael.albinus@gmx.de>
803         * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
804         starting at beginning of line.  Fontification is messed up when
805         `open-paren-in-column-0-is-defun-start' set to t.
806         Reported by John Paul Wallington <jpw@pobox.com>.
808 2005-10-30  Luc Teirlinck  <teirllm@auburn.edu>
810         * comint.el (comint-send-input): Call `comint-update-fence' when
811         `comint-process-echoes' and `comint-prompt-read-only' are both
812         non-nil, to avoid leftover read-only newline.
814 2005-10-30  Richard M. Stallman  <rms@gnu.org>
816         * textmodes/flyspell.el (flyspell-external-point-words):
817         Detect when WORD can't be checked properly because
818         flyspell-get-word finds just part of it, and move on.
820         * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
821         boundarychar for Polish.
822         (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
823         (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
825 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
827         * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
828         (gdb-registers-font-lock-keywords): Delete.
829         (gdb-registers-mode): Don't fontify.
830         (gdb-info-registers-custom): Use text properties instead as, in
831         future, changed register values will use font-lock-warning-face.
832         (gdb-local-font-lock-keywords): Rename to...
833         (gdb-locals-font-lock-keywords): ...for consistency.
835 2005-10-30  Andre Spiegel  <spiegel@gnu.org>
837         * vc.el (vc-switch-backend): Better error message if the buffer is
838         not visiting a file under version control.
840         * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
842 2005-10-29  Chong Yidong  <cyd@stupidchicken.com>
844         * startup.el (command-line): Use ~/.emacs.d/init.el instead of
845         ~/.emacs.d/.emacs.
847 2005-10-29  Richard M. Stallman  <rms@gnu.org>
849         * replace.el (occur-mode-mouse-goto): Always go to other window.
850         (occur-mode-goto-occurrence): Always switch in same window.
852         * simple.el (undo): Display message at end, not at start.
854         * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
855         New arg REUSE-CELL.
856         (cancel-timer-internal): New function.
857         (timer-event-handler): Use cancel-timer-internal,
858         and pass the cell it returns to timer-activate...
860         * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
861         (jit-lock-deferred-fontify, jit-lock-context-fontify)
862         (jit-lock-after-change): Test memory-full.
864 2005-10-29  Roland Winkler  <roland.winkler@physik.uni-erlangen.de>
866         * textmodes/conf-mode.el (conf-assignment-sign)
867         (conf-assignment-regexp): Fix docstrings.
868         (conf-mode-initialize): New function.
869         (conf-mode): Remove optional args.  Use delay-mode-hooks to
870         recognize recursive calls.
871         (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
872         (conf-space-mode, conf-colon-mode, conf-ppd-mode)
873         (conf-xdefaults-mode): Use define-derived-mode and
874         conf-mode-initialize.
876 2005-10-29  Romain Francoise  <romain@orebokech.com>
878         * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
880 2005-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
882         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
883         part of the decoded armor to find the key-identifier.
884         (pgg-gpg-lookup-key-owner): New function to return the
885         human-readable identifier of a key owner.
886         (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
887         key itself.
888         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
889         the key value) if we have a key and can match it against a secret
890         key.  Also, added a note pointing out fact that the prompt only
891         indicates the first matching key.
893         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
894         pgg-decrypt-region.
895         (pgg-pending-timers): A new hash for tracking the passphrase cache
896         timers, so that new ones supercede old ones.
897         (pgg-add-passphrase-to-cache): Rename from
898         `pgg-add-passphrase-cache' to reduce confusion (all callers
899         changed).  Modified to cancel old timers when new ones are added.
900         (pgg-remove-passphrase-from-cache): Rename from
901         `pgg-remove-passphrase-cache' to reduce confusion (all callers
902         changed).  Modified to cancel old timers when their keys are
903         removed from the cache.
904         (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
905         XEmacs, an indirection to delete-itimer.
906         (pgg-read-passphrase-from-cache, pgg-read-passphrase):
907         Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
908         users can only check cache without risk of prompting.  Correct bug in
909         notruncate behavior.
910         (pgg-read-passphrase-from-cache, pgg-read-passphrase)
911         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
912         Add informative docstrings.
913         (pgg-decrypt): Convey provided passphrase in subordinate call to
914         pgg-decrypt-region.
916 2005-10-20  Ken Manheimer <ken.manheimer+emacs@gmail.com>
918         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
919         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
920         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
921         'passphrase' argument, so the passphrase can be managed externally
922         and then passed in to the system.
924         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
925         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
926         so the passphrase cache can be used reliably with identifiers
927         besides a pgp packet's key id.
929         * pgg-gpg.el (pgg-pgp-encrypt-region)
930         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
931         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
932         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
933         argument to all these routines, so the passphrase can be managed
934         externally and passed in to the system.
936         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
937         'notruncate' argument, so the passphrase cache can be used
938         reliably with identifiers besides a pgp packet's key id.
940 2005-10-29  Sascha Wilde  <swilde@sha-bang.de>
942         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
943         symmetric encryption.
944         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
945         encrypted session key.
946         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
947         message ask for the passphrase in a proper way.
949         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
950         New user commands for symmetric encryption.
952 2005-10-28  Bill Wohler  <wohler@newt.com>
954         * help-mode.el (help-url): New button type. Calls browse-url.
955         (help-xref-url-regexp): New regexp to recognize URLs in docstring.
956         Similar to Info nodes: URL `url'.
957         (help-make-xrefs): Create help-url buttons for
958         help-xref-url-regexp matches.
960 2005-10-29  Nick Roberts  <nickrob@snap.net.nz>
962         * tool-bar.el (tool-bar-add-item-from-menu)
963         (tool-bar-local-item-from-menu): Fix doc strings.
965 2005-10-28  Romain Francoise  <romain@orebokech.com>
967         * ldefs-boot.el: Update.
969         * subr.el (locate-library): Move from help-fns.el.
970         * help-fns.el (locate-library): Move to subr.el.
972 2005-10-28  Richard M. Stallman  <rms@gnu.org>
974         * net/tramp.el (tramp-completion-mode): defvar moved up.
976         * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
978         * tool-bar.el (tool-bar-mode): Delete autoload cookie.
980         * files.el (find-file-noselect): Use %d to format large file size.
982         * bindings.el (mode-line-format): Add %e.
984         * loadup.el ("facemenu"): Load unconditionally.
985         ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
986         ("x-dnd"): Load, when appropriate.
988         * startup.el (command-line): Call before-init-hook earlier.
989         Warn about some bad characters in -u user name.
991         * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
992         (flyspell-external-point-words): Error if misspelled word is not found.
993         Set flyspell-large-region-beg at end of word.
995 2005-10-28  Andreas Schwab  <schwab@suse.de>
997         * view.el (View-revert-buffer-scroll-page-forward):
998         Use view-page-size-default.
1000 2005-10-28  Juri Linkov  <juri@jurta.org>
1002         * international/quail.el (quail-get-current-str): Translate last
1003         raw character for deterministic input methods.
1005 2005-10-27  Jay Belanger  <belanger@truman.edu>
1007         * calc/calc-ext.el: Add functions to autoloads.
1008         (math-identity-matrix-p, math-ident-row-p): New functions.
1010         * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
1011         multiplication by an identity matrix; don't turn multiplication by
1012         an inverse matrix into division.
1013         (math-div-symbol-fancy):  Replace division by matrices with
1014         multiplication by inverse.
1016         * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
1018         * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
1019         (calc-writeoutpower): New functions.
1021 2005-10-27  Romain Francoise  <romain@orebokech.com>
1023         * replace.el (occur-engine): Include colon in mouse-face highlight.
1025         * dired-x.el: Change Maintainer field.
1027 2005-10-26  Chong Yidong  <cyd@stupidchicken.com>
1029         * longlines.el (longlines-mode): Bind after-change-functions to
1030         nil during initial decoding and final encoding.
1032 2005-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
1034         * term.el (term-emulate-terminal, term-handle-colors-array)
1035         (term-handle-ansi-escape): Specify the terminfo capabilities
1036         implemented.
1038 2005-10-26  Richard M. Stallman  <rms@gnu.org>
1040         * info.el (Info-fontify-node): Fix detection of sentence-break
1041         before *Note.
1043 2005-10-26  Romain Francoise  <romain@orebokech.com>
1045         * smerge-mode.el: Add `tools' to file keywords.
1047 2005-10-26  Nick Roberts  <nickrob@snap.net.nz>
1049         * progmodes/gud.el (gud-menu-map): Only display gud-until icon
1050         when the fringe is not available.
1052         * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
1053         (def-gdb-auto-update-trigger): Simplify construction.
1054         (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
1055         def-gdb-auto-updated-buffer as gdb-info-locals-handler is
1056         defined explicitly.
1057         (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
1058         def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
1059         defined explicitly.
1060         (gdb-info-locals-custom): Remove as it's a no-op.
1062 2005-10-25  Chong Yidong  <cyd@stupidchicken.com>
1064         * longlines.el (longlines-mode): Remove narrowing before
1065         performing the initial decoding or final encoding.
1067 2005-10-25  Romain Francoise  <romain@orebokech.com>
1069         * emacs-lisp/find-func.el (find-library-name): Also strip
1070         extension if library name ends in .el, to take advantage of
1071         `find-library-suffixes'.
1073 2005-10-25  Richard M. Stallman  <rms@gnu.org>
1075         * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
1077 2005-10-25  Juri Linkov  <juri@jurta.org>
1079         * textmodes/texinfo.el (texinfo-mode): Change charset of one
1080         quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
1082 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1084         * play/blackbox.el (blackbox-mode-map): Move init into declaration.
1085         (blackbox-redefine-key): Add argument `map'.
1087         * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
1088         regions when moving the jit-lock-context-unfontify-pos boundary.
1090 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
1092         * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
1094 2005-10-25  Masatake YAMATO  <jet@gyve.org>
1096         * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
1098 2005-10-25  Michael Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>  (tiny change)
1100         * play/blackbox.el (blackbox-redefine-key): New function.
1101         (blackbox-mode-map): Use it to remap existing bindings for cursor
1102         motion instead of binding literal keys.
1104 2005-10-25  Glenn Morris  <rgm@gnu.org>
1106         * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
1107         diary does not end in a newline.  Do not assume a blank line at
1108         the start of the diary file.
1110 2005-10-25  Kenichi Handa  <handa@m17n.org>
1112         * international/quail.el (quail-translate-key): If the input
1113         method is deterministic and failed to handle the last key, restart
1114         the key handling loop from an appropriate key.
1116 2005-10-25  Michael Albinus  <michael.albinus@gmx.de>
1118         * vc.el (vc-dired-mode): Extend comment for binding of
1119         `directory-listing-before-filename-regexp'.
1121 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1123         * textmodes/texinfo.el (texinfo-mode):
1124         * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
1125         not to unnecessarily expose emacs-mule's internal char codes.
1127 2005-10-25  Nick Roberts  <nickrob@snap.net.nz>
1129         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
1130         Display hand pointer and help-echo on disabled icon too.
1131         (gdb-mouse-until): New function.
1132         (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
1134 2005-10-24  Chong Yidong  <cyd@stupidchicken.com>
1136         * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
1137         with 2005-10-23 change to doctor.el.
1139         * finder.el (finder-mode-map): Add follow-link binding.
1141 2005-10-25  Kim F. Storm  <storm@cua.dk>
1143         * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
1144         to gdb-mouse-toggle-breakpoint-fringe.
1145         (gdb-mouse-toggle-breakpoint-margin): Rename from
1146         gdb-mouse-toggle-breakpoint. Fix doc.
1147         (gdb-mouse-toggle-breakpoint-fringe): New defun.
1148         (gdb-put-string): Add optional SPROPS arg.  Add props to string.
1149         (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
1150         string properties also for fringe breakpoint bitmaps.
1152 2005-10-24  Carsten Dominik  <dominik@science.uva.nl>
1154         * textmodes/org.el (org-start-icalendar-file): Fix format form.
1156 2005-10-25  Masatake YAMATO  <jet@gyve.org>
1158         * simple.el (completion-common-substring):
1159         Use `completion-common-substring' prior to `completion-base-size'.
1161 2005-10-24  Hrvoje Niksic  <hniksic@xemacs.org>
1163         * savehist.el: Require CL while compiling.
1164         (savehist-history-variables): Remove.
1165         (savehist-save-minibuffer-history, savehist-additional-variables)
1166         (savehist-minibuffer-history-variables): New vars.
1167         (savehist-save): Use them.
1168         (savehist-uninstall, savehist-minibuffer-hook): New funs.
1169         (savehist-install): New fun, extracted from savehist-load.
1170         (savehist-load): Use them.
1172 2005-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1174         * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
1175         a dummy doc-string-elt property.
1176         (defalias, defvaralias, define-category): Add a docstring property.
1178         * image.el (defimage):
1179         * widget.el (define-widget):
1180         * custom.el (defface, defcustom): Add `doc-string' declaration.
1182         * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
1183         (defadvice): Add `doc-string' declaration.
1185         * emacs-lisp/byte-run.el (macro-declaration-function):
1186         Handle `doc-string' declarations.
1187         (define-obsolete-function-alias, define-obsolete-variable-alias):
1188         Add `doc-string' declaration.
1190 2005-10-24  Kenichi Handa  <handa@m17n.org>
1192         * international/utf-7.el (utf-7): Add autoload cookie.
1194         * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
1196 2005-10-24  Eli Zaretskii  <eliz@gnu.org>
1198         * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
1199         list of directories passed to batch-update-autoloads.  Add "." to
1200         the list of the echoed directories.
1202         * pgg-def.el:
1203         * pgg-gpg.el:
1204         * pgg-parse.el:
1205         * pgg-pgp.el:
1206         * pgg-pgp5.el:
1207         * pgg.el: Moved here from the gnus subdirectory.
1209 2005-10-24  Nick Roberts  <nickrob@snap.net.nz>
1211         * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
1212         in case comint-prompt-read-only is set to t.
1214         * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
1215         in case comint-prompt-read-only is set to t.
1217 2005-10-24  Ulf Jasper  <ulf.jasper@web.de>
1219         * calendar/icalendar.el (icalendar-version): Increase to 0.13.
1220         Now a string.
1221         (icalendar-import-format): Handle CLASS, STATUS, URL.
1222         Rename `subject' to `summary'.
1223         (icalendar-import-format-summary): Rename from
1224         `icalendar-import-format-subject'.
1225         (icalendar-import-format-url, icalendar-import-format-status)
1226         (icalendar-import-format-class): New variables.
1227         (icalendar--rris): Take variable argument list.
1228         (icalendar--datestring-to-isodate): Remove unnecessary
1229         calendar-style check when converting dates with explicit month names.
1230         (icalendar-export-region): Change return type of conversion
1231         subroutines.  Bury current buffer unless error occurred.
1232         (icalendar--convert-to-ical)
1233         (icalendar--parse-summary-and-rest): New functions.
1234         (icalendar--convert-ordinary-to-ical)
1235         (icalendar--convert-weekly-to-ical)
1236         (icalendar--convert-yearly-to-ical)
1237         (icalendar--convert-block-to-ical)
1238         (icalendar--convert-cyclic-to-ical)
1239         (icalendar--convert-anniversary-to-ical): Change return type.
1240         Strip trailing blanks from subject.
1241         (icalendar--convert-sexp-to-ical): Change return type.
1242         Strip trailing blanks from subject.  Handle simple sexp
1243         entries as generated by icalendar.el.
1244         (icalendar--convert-float-to-ical)
1245         (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
1246         (icalendar-import-file): Doc fix.
1247         (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
1248         Correct call to icalendar--rris.
1249         (icalendar--convert-ical-to-diary): Doc fix.  Rename `subject' to
1250         `summary'.
1251         (icalendar--add-diary-entry): Rename `subject' to `summary'.
1253 2005-10-24  Romain Francoise  <romain@orebokech.com>
1255         * server.el (server-sentinel): Set query-on-exit flag to nil on
1256         new client processes (it isn't inherited from the server process).
1258         * replace.el (occur-engine): Rearrange text properties.
1260 2005-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1262         * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
1263         case-fold-search is nil.
1264         (debug-help-follow): Use help-xref-interned directly.
1266 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
1268         * thumbs.el (thumbs-image-type): Add .pbm.
1270 2005-10-23  Richard M. Stallman  <rms@gnu.org>
1272         * faces.el (inhibit-face-set-after-frame-default): New variable.
1273         (set-face-attribute): Bind it.
1274         (face-set-after-frame-default): Test it.
1276         * help-fns.el (describe-simplify-lib-file-name): New function.
1277         (describe-function-1, describe-variable): Use it.
1279         * faces.el (describe-face): Use describe-simplify-lib-file-name.
1281         * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
1282         Eliminate nil as possible value.
1283         (tooltip-hide-delay): Reduce internal-border-width.
1285         * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
1286         (menu-bar-file-menu) <new-file>: Likewise.
1288         * simple.el (line-move-finish): Ignore fields computing LINE-END.
1290         * international/mule.el (load-with-code-conversion):
1291         Pass full file name to `eval-buffer' unless preloading.
1293         * textmodes/flyspell.el (flyspell-large-region):
1294         Call ispell-check-version.
1296         * textmodes/ispell.el (ispell-local-dictionary-overridden):
1297         Fix the make-variable-buffer-local call that was supposed
1298         to be for this variable.
1299         (ispell-aspell-supports-utf8): Doc fix.
1300         (ispell-find-aspell-dictionaries): Preserve elements of
1301         ispell-dictionary-alist for dictionaries that aspell doesn't report.
1302         (ispell-aspell-find-dictionary): Return nil on error.
1304         * play/doctor.el (doctor-doc): Don't say "psychiatrist".
1305         (doctor-symptoms): Likewise.
1307         * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
1309 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
1311         * cus-edit.el (custom-button, custom-button-pressed): New vars.
1312         (custom-raised-buttons): Add :set spec.
1313         (custom-button-unraised, custom-button-pressed-unraised):
1314         New faces, so that custom-raised-buttons actually does something.
1315         (custom-mode): Use custom-button and custom-button-pressed.
1317         * wid-edit.el (widget-specify-button): Don't ignore
1318         widget-mouse-face on graphic terminals.
1319         (widget-move-and-invoke): Cleanup.
1321 2005-10-23  Thien-Thi Nguyen  <ttn@gnu.org>
1323         * whitespace.el (whitespace-cleanup): Doc fix.
1325 2005-10-23  Romain Francoise  <romain@orebokech.com>
1327         * emulation/viper.el (viper-set-hooks): Quote forms passed to
1328         `eval-after-load' to avoid evaluating their result.
1330 2005-10-23  Michael Albinus  <michael.albinus@gmx.de>
1332         * files.el (directory-listing-before-filename-regexp):
1333         New defvar.  Replaces `dired-move-to-filename-regexp' from dired.el.
1335         * dired.el (dired-move-to-filename-regexp): Remove.
1336         All occurences replaced by `directory-listing-before-filename-regexp'.
1338         * dired-x.el, locate.el, vc.el:
1339         Replace `dired-move-to-filename-regexp' by
1340         `directory-listing-before-filename-regexp'.  In vc.el it is
1341         overwritten locally; maybe this can be handled in files.el too.
1343         * net/ange-ftp.el (ange-ftp-date-regexp): Remove.  All occurences
1344         replaced by `directory-listing-before-filename-regexp'.
1346 2005-10-23  Andreas Schwab  <schwab@suse.de>
1348         * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
1349         and eval-next-after-load.
1351 2005-10-23  MIYOSHI Masanori  <miyoshi@meadowy.org>  (tiny change)
1353         * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
1354         exist, create it.
1356 2005-10-23  Ken Manheimer  <ken.manheimer@gmail.com>
1358         * allout.el: Remove autoloads for mailcrypt and crypt++.
1359         Require pgg, pgg-gpg during compilation.
1360         (allout-version): Increment version number to 2.1, and use a literal
1361         rather than RCS Id.
1362         (allout-default-encryption-scheme): Remove.
1363         (allout-passphrase-verifier-handling)
1364         (allout-passphrase-verifier-string)
1365         (allout-file-passphrase-verifier-string)
1366         (allout-passphrase-hint-string): Rename -key- to -passphrase-.
1367         (allout-passphrase-hint-handling): Rename and simplify.
1368         (allout-init): Use `find-file-hook' if available, otherwise
1369         `find-file-hooks'.
1370         (allout-mode): Use `write-file-functions' if available, otherwise
1371         `local-write-file-hooks' and, instead of making auto-save-hook
1372         buffer local, make the write-file-hook activity contingent to
1373         allout-mode.
1374         (allout-mode): Use key-binding substitution in the docstring.
1375         (allout-kill-line): Spell-out kill ring data structure mutation
1376         instead of using byte-compiler-complaint-provoking `pop'.
1377         (allout-insert-listified): Use `insert' rather than `insert-string'
1378         (allout-toggle-current-subtree-encryption): Update docstring, adjust
1379         to new gpp-based encryption, use new `allout-encrypted-topic-p'.
1380         (allout-encrypt-string): Totally revamped vis new underlying
1381         encryption facilities.
1382         (allout-mc-activate-passwd): Remove.
1383         (allout-obtain-passphrase): New, more or less replaces
1384         allout-mc-activate-passwd.
1385         (allout-encrypted-key-info): More or less replaces
1386         allout-encrypted-text-type.
1387         (outlineify-sticky, outlinify-sticky): Add autoload cookie.
1388         (my-mark-marker): Use `(featurep 'xemacs)'.
1390 2005-10-23  Lars Hansen <larsh@soem.dk>
1392         * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
1393         (byte-compile-file-form-defmumble, byte-compile-defun)
1394         (byte-compile-defmacro): Use it.
1395         (byte-compile-form): Don't call byte-compile-set-symbol-position
1396         when a byte-compile handler is called.
1398 2005-10-22  Romain Francoise  <romain@orebokech.com>
1400         * savehist.el (savehist-history-variables): Add `grep-find-history'.
1402         * subr.el (eval-after-load): Convert library name to an absolute
1403         file name using locate-library, since load-history no longer has
1404         library names in it.
1406 2005-10-22  Richard M. Stallman  <rms@gnu.org>
1408         * files.el (make-temp-file): Move from subr.el.
1409         * subr.el (make-temp-file): Move to files.el.
1411         * window.el (get-buffer-window-list): Move from subr.el.
1412         * subr.el (get-buffer-window-list): Move to window.el.
1414         * image.el (image-load-path): Use eval-at-startup to initialize.
1416         * subr.el (eval-at-startup): New macro.
1418         * subr.el: Much rearrangement of functions and division
1419         into pages.  No code changes.
1421 2005-10-22  Kenichi Handa  <handa@m17n.org>
1423         * tar-mode.el (tar-extract): Be sure to call
1424         find-operation-coding-system if set-auto-coding doesn't find a
1425         coding system.
1427 2005-10-22  Kim F. Storm  <storm@cua.dk>
1429         * image.el (image-type-header-regexps): Rename from image-type-regexps.
1430         Change users.
1431         (image-type-file-name-regexps): New defconst.
1432         (image-type-from-data): Simplify loop.
1433         (image-type-from-buffer): New defun.
1434         (image-type-from-file-header): Use it instead of image-type-from-data.
1435         Use image-search-load-path instead of only looking in data-directory.
1436         (image-type-from-file-name): New defun.
1437         (image-search-load-path): Change `pathname' to `filename'.
1438         Make PATH arg optional, default to image-load-path.
1440 2005-10-21  Richard M. Stallman  <rms@gnu.org>
1442         * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
1444         * textmodes/paragraphs.el (sentence-end-base): New variable.
1445         (sentence-end): Use sentence-end-base.
1447 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1449         * font-lock.el (font-lock-default-fontify-region): Check the multiline
1450         property independently from the font-lock-multiline variable.
1452 2005-10-21  Richard M. Stallman  <rms@gnu.org>
1454         * emacs-lisp/find-func.el (find-library-name): Doc fix.
1456         * startup.el (command-line): Convert library names
1457         in `load-history' to absolute file names.
1459         * subr.el (symbol-file): Doc fix.
1461         * loadhist.el (file-loadhist-lookup): Call locate-library
1462         instead of find-library-name.  Don't try converting
1463         abs file names to library names, since load-history no longer
1464         has library names in it.
1465         (file-dependents, file-provides, file-requires): Doc fixes.
1467 2005-10-21  Juri Linkov  <juri@jurta.org>
1469         * progmodes/etags.el (tags-table-mode): New function.
1470         (tags-verify-table): Replace initialize-new-tags-table with
1471         tags-table-mode.
1473         * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
1474         default value.
1475         (desktop-modes-not-to-save): Add tags-table-mode to the
1476         default value.
1478         * info.el (Info-index-next): Add total number of index
1479         alternatives to the message.
1481         * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
1482         backward only space (instead of space and period) before looking
1483         at sentence end.
1485         * simple.el (set-variable): Use user-variable-p instead of symbolp.
1486         Add the old variable value as 4th default-value arg of read-string.
1488 2005-10-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1490         * cus-face.el (custom-declare-face): Make face from X resources
1491         also on Mac.
1493         * disp-table.el (standard-display-g1, standard-display-graphic):
1494         Refuse to use string glyphs also on Mac.
1495         (standard-display-european): Don't set terminal coding system also
1496         on Mac.
1498         * frame.el (display-screens): Use x-display-screens also on Mac.
1500 2005-10-21  Romain Francoise  <romain@orebokech.com>
1502         * net/rcirc.el: Now part of GNU Emacs.  Update FSF's address.
1504 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1506         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
1507         and $? into sexps.
1509         * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
1510         warning face on open-paren-in-column-0.
1512         * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
1513         boundary case.  Fix typo.
1514         Suggested by Martin Rudalics <rudalics@gmx.at>.
1516 2005-10-21  Carsten Dominik  <dominik@science.uva.nl>
1518         * textmodes/org.el: (org-combined-agenda-icalendar-file)
1519         (org-icalendar-include-todo, org-icalendar-combined-name): New options.
1520         (org-export-icalendar-this-file)
1521         (org-export-icalendar-all-agenda-files)
1522         (org-export-icalendar-combine-agenda-files): New commands.
1523         (org-export-icalendar, org-print-icalendar-entries)
1524         (org-start-icalendar-file, org-finish-icalendar-file)
1525         (org-ical-ts-to-string): New functions.
1526         (org-read-date, org-goto-calendar)
1527         (org-agenda-goto-calendar): Inhibit displaying diary entries by
1528         call to `calendar'.
1529         (orgtbl-setup): Remove the :keys arguments from the menu description.
1530         (org-after-save-iCalendar-file-hook): New variable.
1532 2005-10-21  Kenichi Handa  <handa@m17n.org>
1534         * language/vietnamese.el (tcvn-5712): Make it an alias of
1535         vietnamese-tcvn coding-system.
1537 2005-10-20  Michael Albinus  <michael.albinus@gmx.de>
1539         * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
1540         group id is given.
1542 2005-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1544         * progmodes/sh-script.el (sh-escaped-line-re): New var.
1545         (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
1546         (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
1547         whose line is either continued or ends with a comment.
1549 2005-10-20  Romain Francoise  <romain@orebokech.com>
1551         * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
1553         * replace.el (occur-engine): Add follow-link property.
1555         * font-core.el (font-lock-mode): Doc fix.
1557 2005-10-20  Richard M. Stallman  <rms@gnu.org>
1559         * net/rcirc.el: New file.
1561 2005-10-20  Bryan Henderson  <bryanh@giraffe-data.com>  (tiny change)
1563         * term.el (term-term-name): Initialize to "eterm-color".
1565 2005-10-20  Ken Manheimer  <ken.manheimer@gmail.com>
1567         * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
1568         for encryption functionality.
1569         Move allout customization subgroup from `editing' to `outlines' group.
1570         Fix commentary 'keywords' to legitimate ones.
1571         Update author info (using my current email address, obscurified).
1572         (allout-encrypt-string, allout-encryption-produce-work-buffer)
1573         (allout-encrypted-topic-p, allout-encrypted-text-type)
1574         (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
1575         (allout-situate-encryption-key-verifier)
1576         (allout-get-encryption-key-verifier, allout-verify-key)
1577         (allout-next-topic-pending-encryption)
1578         (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
1579         (outline-topic-encryption-bullet, outline-default-encryption-scheme)
1580         (outline-key-verifier-handling, outline-key-hint-handling)
1581         (outline-encrypt-unencrypted-on-saves): New defcustoms.
1582         (allout-file-key-verifier-string, allout-encryption-scheme)
1583         (allout-key-verifier-string, allout-key-hint-string)
1584         (allout-after-save-decrypt): New variables.
1585         (allout-write-file-hook-handler, allout-auto-save-hook-handler)
1586         (allout-after-saves-handler): New hook functions.
1587         (allout-post-command-business): Do allout-after-save-decrypt.
1588         (allout-enable-file-variable-adjustment): Custom var to enable
1589         mechanism for adding and adjusting settings of Emacs file variables.
1590         (allout-adjust-file-variable, allout-file-vars-section-data):
1591         New functions, implement the mechanism.
1592         (outlineify-sticky): Use the file vars mechanism.
1593         (allout-inhibit-protection, allout-during-write-cue)
1594         (allout-override-protect, allout-before-change-protect): Remove.
1595         (allout-flag-region, allout-open-topic): Adjust read-only text.
1596         (allout-open-line-not-read-only): Add to facilitate read-only
1597         text based protection.
1598         (allout-kill-line): Revise to adjust read-only text, clue the
1599         user about the inhibition.
1600         (allout-unprotected): Use unwind-protect.
1601         (allout-shift-in, allout-shift-out): Disallow manually shifting a
1602         topic deeper than the offspring depth of the previous topic -
1603         avoiding confusing "containment discontinuities".
1604         (allout-reindent-bodies): Fix retention of body relative hanging
1605         indent during promotion of collapsed bodies.
1606         (allout-open-topic): Make it easy to open new topic with same
1607         bullet as current topic - topic creation functions provided with
1608         any universal argument provokes now prompt for bullet, defaulting
1609         to the bullet of the previous topic.
1610         (allout-plain-bullets-string, allout-distinctive-bullets-string):
1611         Plain bullet alternates '.' period and ',' comma only.  All other
1612         bullets are relegated to special status (but customizable).
1613         (allout-end-of-entry): Rename from 'allout-end-of-current-entry
1614         since it actually operates w.r.t. most immediately containing
1615         entry, visible or not.
1616         (allout-hide-current-entry, allout-show-current-entry): Use the
1617         revised version.
1618         (allout-old-expose-topic): Solidify deprecation.
1619         (allout-end-of-subtree): Add so we can span concealed as well
1620         as visible topics.
1621         (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
1622         (allout-end-of-current-heading): Tweak to just respect the first line.
1623         (allout-get-body-text): Add.
1624         (allout-ascend-to-depth, allout-ascend): Position at end of prefix
1625         when invoked interactively.
1626         (allout-up-current-level): Use `interactive-p'.
1627         (allout-mode, allout-init): Miscellaneous docstring and
1628         operational refinements, as well as hookups of new encryption stuff.
1629         (allout-beginning-of-current-entry): Now works as advertised.
1630         (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
1631         (allout-isearch-rectification): Refine condition for isearching.
1632         (allout-isearch-abort, allout-enwrap-isearch)
1633         (allout-flag-region, my-region-active-p): Relocate some macros.
1634         (allout-title): Fallback title is '(buffer-name)', not
1635         non-existing '(current-buffer-name)'.
1636         (subst-char-in-string): Define if absent (for some XEmacs versions).
1638 2005-10-20  Jari Aalto  <jari.aalto@cante.net>
1640         * mail/sendmail.el (mail-setup-hook, mail-aliases)
1641         (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
1642         (mail-citation-prefix-regexp, mail-signature-file)
1643         (mail-default-headers, mail-bury-selects-summary)
1644         (mail-send-nonascii): Add autoload cookies.
1646 2005-10-20  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
1648         * frame.el (blink-cursor-mode): Add `mac' to the list of
1649         window-system's that support blinking cursor.
1651 2005-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
1653         * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
1655 2005-10-20  Eli Zaretskii  <eliz@gnu.org>
1657         * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
1658         Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
1659         to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
1661 2005-10-20  Kim F. Storm  <storm@cua.dk>
1663         * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
1664         (ido-set-current-directory): Don't add / after final @.
1665         (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
1666         Explicitly handle ange-ftp completion oddities.
1667         (ido-make-file-list): Don't rotate list at tramp root to avoid
1668         triggering tramp file handler for expand-file-name via get-file-buffer.
1670 2005-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1672         * simple.el (eval-expression-print-format): Put the char-string
1673         inside the parenthesis, like the other alternative notations.
1674         (kill-new): Use push.
1675         (copy-to-buffer): Use with-current-buffer.
1676         (completion-setup-function): Simplify.
1677         (minibuffer-local-must-match-map): Don't add redundant bindings which
1678         are already present in its parent (minibuffer-local-completion-map).
1680         * savehist.el (savehist-coding-system): Revert to checking XEmacs.
1682 2005-10-19  Jay Belanger  <belanger@truman.edu>
1684         * calc/calc-units.el (math-standard-units): Add units, adjust
1685         symbols and update values.
1686         (math-unit-prefixes):  Add more prefixes.
1688 2005-10-19  Romain Francoise  <romain@orebokech.com>
1690         * bookmark.el (bookmark-menu-heading): New face.
1691         (bookmark-bmenu-list): Use it.
1692         Don't fiddle with `baud-rate' at top-level.
1694 2005-10-18  Chong Yidong  <cyd@stupidchicken.com>
1696         * image.el (create-image, find-image): Mention max-image-size in
1697         docstring.
1699 2005-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1701         * savehist.el (savehist-load): Revert to checking XEmacs.
1703         * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
1704         Various docstring and line-width fixups.
1705         (conf-mode): Use cond.
1706         Set font-lock-defaults.  Don't set comment-use-syntax.
1708 2005-10-18  David Ponce  <david@dponce.com>
1710         * tree-widget.el (tree-widget-button-click): New function.
1711         (tree-widget-button-keymap): Use it.
1713 2005-10-18  Romain Francoise  <romain@orebokech.com>
1715         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
1716         (bookmark-bmenu-hide-filenames): Add follow-link property.
1717         Improve help-echo text.
1719         * ffap.el (find-file-at-point): Doc fix.
1721 2005-10-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1723         * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
1725 2005-10-18  Masatake YAMATO  <jet@gyve.org>
1727         Install to the CVS repository what I forgot to install in my
1728         2005-10-16 changes.
1730         * progmodes/python.el (python-complete-symbol): Pass the common
1731         prefix substring of completion to `display-completion-list'.
1733         * textmodes/org.el (org-complete): Ditto.
1735 2005-10-18  Masatake YAMATO  <jet@gyve.org>
1737         Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
1739         * woman.el (WoMan-xref-man-page): New button type derived
1740         from `Man-abstract-xref-man-page'.
1741         (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
1743         * man.el (Man-abstract-xref-man-page): New button type.
1744         (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
1745         (Man-highlight-references): Add new optional argument `xref-man-type'.
1747 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
1749         * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
1751 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
1753         * cus-edit.el (Custom-move-and-invoke): Delete.
1754         (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
1756         * wid-edit.el (widget-move-and-invoke): New function, from
1757         Custom-move-and-invoke.
1759 2005-10-17  Bill Wohler  <wohler@newt.com>
1761         Move all remaining images from lisp/toolbar to etc/images, move
1762         lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar.  Place
1763         the low resolution images in their own directory (low-color).
1765         * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*,
1766         * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*:
1767         * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*:
1768         * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*:
1769         * toolbar/preferences.*, toolbar/print.*, toolbar/save.*:
1770         * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*:
1771         * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
1773         * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
1774         * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
1775         * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
1776         * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
1777         * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
1778         * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
1779         * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
1780         * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
1781         * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
1782         * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
1783         * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
1784         * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
1785         * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
1786         * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
1787         * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
1789         To conform with convention, replace the underscore (_) in the
1790         following image names with dash (-) or (/) as appropriate.
1792         * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
1793         * toolbar/fld_open.*: Move to etc/images/fld-open.*.
1794         * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
1795         * toolbar/jump_to.*: Move to etc/images/jump-to.*.
1796         * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
1797         * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
1798         * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
1799         * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
1800         * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
1801         * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
1802         * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
1803         * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
1804         * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
1805         * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
1806         * toolbar/mail_send.*: Move to etc/images/mail/send.*.
1808         * info.el (info-tool-bar-map): Replace underscores in image names
1809         with dashes.
1811         * makefile.w32-in (WINS): Remove toolbar.
1813         * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
1815         * tool-bar.el: Move to lisp from toolbar.  Now that
1816         toolbar is empty, it should be deleted when folks run "cvs up -P".
1818 2005-10-18  Jay Belanger  <belanger@truman.edu>
1820         * calc/calc-store.el (calc-store-into): Get the proper variable name
1821         to display in message.
1823 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
1825         * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
1826         expressions display in speedbar for all buffers when debugging.
1827         (gdb-speedbar-expand-node): Ensure node contraction is always updated.
1829         * speedbar.el (speedbar-set-mode-line-format): Indent properly.
1830         (speedbar-insert-button, speedbar-make-button):
1831         Use add-text-properties.
1832         (speedbar-update-localized-contents)
1833         (speedbar-update-directory-contents)
1834         (speedbar-update-special-contents): Use dolist.
1835         (speedbar-buffer-easymenu-definition): Add a menu separator.
1837 2005-10-17  Jason Rumney  <jasonr@gnu.org>
1839         * makefile.w32-in: Use $(lisp) consistently.
1840         (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
1841         for shell specific generation of mh-autoloads.
1843 2005-10-17  Richard M. Stallman  <rms@gnu.org>
1845         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
1847 2005-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1849         * jit-lock.el (jit-lock-fontify-now):
1850         Move jit-lock-context-unfontify-pos to avoid wasted work.
1852 2005-10-17  Michael Albinus  <michael.albinus@gmx.de>
1854         * net/tramp.el (tramp-completion-mode): New defvar.  Used in
1855         `tramp-completion-mode' for checking if we are in completion mode.
1856         (tramp-completion-handle-file-name-all-completions): Reorder code
1857         in order to complete for file names only in case there are no
1858         method/user/host completions.  This is necessary for cooperation
1859         with ido.  Reported by Kim F. Storm <storm@cua.dk>.
1861 2005-10-16  Chong Yidong  <cyd@stupidchicken.com>
1863         * longlines.el (longlines-search-forward)
1864         (longlines-search-backward): Match any number of spaces.
1866 2005-10-16  Thien-Thi Nguyen  <ttn@gnu.org>
1868         * diff-mode.el (diff-mode): Doc fix.
1870 2005-10-16  David Reitter <david.reitter@gmail.com>
1872         * mail/sendmail.el (send-mail-function): Use mailclient-send-it
1873         as default on darwin and windows systems.
1875 2005-10-16  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
1877         * arc-mode.el (archive-zip-extract): Doc fix.
1879 2005-10-16  Romain Francoise  <romain@orebokech.com>
1881         * mouse.el (mouse-1-click-follows-link): Doc fix.
1883 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1885         * savehist.el: Don't require CL at runtime.
1886         (savehist-xemacs): Remove.
1887         (savehist-coding-system): Use utf-8 if present, regardless of religion.
1888         (savehist-no-conversion): Use (featurep 'xemacs).
1889         (savehist-load): Check existence of start-itimer rather than XEmacs.
1890         Use an idle timer.
1891         (savehist-process-for-saving): Replace use of CL funs `subseq' and
1892         `delete-if-not'.
1894 2005-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
1896         * savehist.el: Newer version.
1897         (savehist-autosave-interval, savehist-coding-system, savehist-timer)
1898         (savehist-last-checksum, savehist-no-conversion): New vars.
1899         (savehist-autosave, savehist-process-for-saving, savehist-printable):
1900         New functions.
1901         (savehist-load, savehist-save): Use them.
1902         (savehist-delimit): Remove.
1904 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1906         * progmodes/compile.el (compilation-goto-locus): Display the
1907         compilation buffer first and the source buffer second, in case they're
1908         in overlapping frames.  Don't raise the compilation frame if it was the
1909         selected window upon entry.  Pass the `other-window' arg to
1910         pop-to-buffer.
1912         * info.el (Info-fontify-node): Use dolist.
1913         Change add-text-properties to put-text-property.
1915 2005-10-16  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1917         * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
1918         bound of search.
1920 2005-10-16  Masatake YAMATO  <jet@gyve.org>
1922         * dabbrev.el (dabbrev-completion): Pass the common
1923         prefix substring of completion to `display-completion-list'.
1925         * filecache.el (file-cache-minibuffer-complete)
1926         (file-cache-complete): Ditto.
1928         * tempo.el (tempo-display-completions): Ditto.
1930         * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
1932         * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
1934         * eshell/em-hist.el (eshell-list-history): Ditto.
1936         * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
1938         * mail/mailalias.el (mail-complete): Ditto.
1940         * progmodes/etags.el (complete-tag): Ditto.
1942         * progmodes/make-mode.el (makefile-complete): Ditto.
1944         * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
1946         * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
1948         * progmodes/pascal.el (pascal-complete-word)
1949         (pascal-show-completions): Ditto.
1951         * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
1953         * simple.el (completion-common-substring): New variable.
1954         (completion-setup-function): Use `completion-common-substring'
1955         to put faces.
1957 2005-10-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1959         * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
1960         (x-get-selection, mac-select-convert-to-string): Convert from/to
1961         UTF-16 clipboard data as in native byte order, no BOM.
1963 2005-10-16  Nick Roberts  <nickrob@snap.net.nz>
1965         * progmodes/gud.el (gud-tool-bar-map): Rename the images
1966         appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
1967         (gud-sentinel): Use speedbar-frame to check for speedbar.
1969 2005-10-15  Richard M. Stallman  <rms@gnu.org>
1971         * savehist.el: New file.
1973 2005-10-14  Karl Chen  <quarl@cs.berkeley.edu>
1975         * textmodes/tex-mode.el (tex-font-lock-keywords-2):
1976         Fix bug in \bf fontification.
1978 2005-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1980         * pcvs.el (cvs-edit-log-files): New var.
1981         (cvs-mode-edit-log): New arg `file'.
1982         (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
1983         Instead force the use of the original file and nothing else.
1984         (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
1985         the cvs-minor-wrap-function is set.
1986         (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
1988 2005-10-14  Bill Wohler  <wohler@newt.com>
1990         * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
1991         * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
1992         * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
1993         * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
1994         * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
1995         * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
1996         * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
1997         * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
1998         * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
1999         * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
2000         * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
2001         * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
2002         * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
2003         * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
2004         * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
2006         * progmodes/gud.el (gud-tool-bar-map): Rename the images
2007         appropriately (for example, gud-break to gud/break).
2009 2005-10-14  Chong Yidong  <cyd@stupidchicken.com>
2011         * longlines.el (longlinges-search-function)
2012         (longlines-search-forward, longlines-search-backward): New functions.
2013         (longlines-mode): Set isearch-search-fun-function to
2014         longlinges-search-function.
2016         * mouse.el (mouse-drag-region-1): Handle the case where a
2017         double-click event is bound to an arbitrary function.
2019 2005-10-14  David Ponce  <david@dponce.com>
2021         * recentf.el (recentf-track-opened-file)
2022         (recentf-track-closed-file, recentf-update-menu)
2023         (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
2024         (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
2025         mouse-1-click-follows-link.
2027 2005-10-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2029         * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
2030         Gnome file-manager.png.  Suggested by
2031         Joachim Nilsson <joachim.nilsson@vmlinux.org>.
2033         * toolbar/README: Add diropen.xpm.
2035 2005-10-13  Bill Wohler  <wohler@newt.com>
2037         * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
2038         restrictions.  Suggested by David Robinow <drobinow@gmail.com>.
2040 2005-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2042         * progmodes/mixal-mode.el (mixal-operation-codes-alist):
2043         Don't waste the byte-compiler's time on constant data.
2045 2005-10-13  Kenichi Handa  <handa@m17n.org>
2047         * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
2048         byte with `escape-glyph' face.
2050         * international/fontset.el (ccl-encode-unicode-font):
2051         Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
2052         Handle the case that ucs-mule-to-mule-unicode translates a character to
2053         ASCII (usually for IPA characters).
2055 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2057         * info.el (Info-fontify-node): Don't be fooled by a lone "...".
2058         Don't hide the underline of titles if font-lock-mode is disabled.
2060 2005-10-12  Bill Wohler  <wohler@newt.com>
2062         * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
2063         (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
2064         files in MH-E-SRC have been updated.
2065         (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
2067 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2069         * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
2070         (mixal-mode-syntax-table): Add \n as end-comment.
2071         (mixal-operation-codes-alist): Immediately initialize to full value.
2072         (mixal-add-operation-code): Remove.
2073         (mixal-describe-operation-code): Make the arg non-optional.
2074         Use the interactive spec instead.
2075         Use mixal-operation-codes-alist rather than mixal-operation-codes.
2076         (mixal-font-lock-keywords): Don't highlight comments here any more.
2077         (mixal-font-lock-syntactic-keywords): New var.
2078         (mixal-mode): Use it.  Fix comment-start-skip.
2080 2005-10-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2082         * startup.el (command-line-x-option-alist): -nb => -nbi
2084 2005-10-12  Kim F. Storm  <storm@cua.dk>
2086         * startup.el (fancy-splash-default-action): Discard mouse click in
2087         the spash screen window, as it has no sensible meaning in the
2088         next window to be selected.  Fixes error reported by Jan D.
2090 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
2092         * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
2094 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2096         * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
2097         Try to fix up minor layout issues like indentation, line break, etc...
2098         (mixal-mode-syntax-table): Don't try to specify comment syntax,
2099         because it doesn't work.
2100         (mixal-operation-codes): Add some more codes.
2101         (mixal-font-lock-keywords): Process comments here.
2102         (mixal-mode): mixasm no longer needs -g option.
2104 2005-10-11  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
2106         * progmodes/sh-script.el (sh-tmp-file):
2107         Use mktemp -t.  Finish support for es and rc shells.
2109 2005-10-11  Jay Belanger  <belanger@truman.edu>
2111         * calc/calcalg2.el (calc-integral): With an argument, compute the
2112         definite integral.
2114 2005-10-11  Chong Yidong  <cyd@stupidchicken.com>
2116         * mouse.el (mouse-drag-region-1): Don't try to catch a
2117         double-click when doing follow-link (it's overridden anyway).
2119 2005-10-11  Juanma Barranquero  <lekktu@gmail.com>
2121         * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
2122         (autoload-print-form-outbuf): Add docstring.
2124 2005-10-11  Juri Linkov  <juri@jurta.org>
2126         * info.el (Info-mode-menu): Delete menu item "Edit".
2127         (Info-mode): Delete description of Info-edit from docstring,
2128         and rearrange descriptions of Info commands in the order
2129         they are documented in the Info manual.
2131 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2133         * calendar/appt.el (appt-check): Use diary-selective-display var.
2135 2005-10-10  Richard M. Stallman  <rms@gnu.org>
2137         * net/newsticker.el (newsticker-start, newsticker-show-news):
2138         Add autoload cookies.
2140 2005-10-10  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>
2142         * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
2144 2005-10-10  Karl Chen  <quarl@cs.berkeley.edu>
2146         * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
2148 2005-10-10  Jay Belanger  <belanger@truman.edu>
2150         * calc/calc-arith.el (math-check-known-scalarp)
2151         (math-check-known-matrixp): Check the values of arguments that are
2152         variables.
2153         (math-check-known-square-matrixp): New function.
2154         (math-known-square-matrixp): Use math-check-known-square-matrixp.
2155         (math-super-types): Add sqmatrix type.
2157         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
2158         mode name `square' to 'sqmatrix'.
2160         * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
2161         mode name `square' to 'sqmatrix'.
2163 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2165         * progmodes/etags.el (select-tags-table-mode): Don't use
2166         selective-display.
2167         (tags-select-tags-table): Pass `button' to the action function.
2168         (select-tags-table): Place the side-info on button properties rather
2169         than in hidden text.  Abbreviate file names.
2170         (select-tags-table-mode-map): Inherit rather than copy buttom-map.
2171         (select-tags-table-select): Add `button' argument.
2172         Get side-info from the button property rather than from hidden text.
2174 2005-10-11  Nick Roberts  <nickrob@snap.net.nz>
2176         * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
2177         (gud-speedbar-buttons): Preserve point if possible.
2178         (gud-sentinel): Restore previous speedbar display type.
2180         * progmodes/gdb-ui.el (gdba): Improve diagram.
2181         (def-gdb-auto-update-handler, gdb-info-locals-handler)
2182         (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
2183         Call get-buffer-window once.
2185 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2187         * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
2188         (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
2189         (pascal-indent-command): Remove unused var `ind'.
2190         (pascal-indent-case): Remove unused var `oldpos'.
2191         (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
2192         since it's now used as a proper minor mode map.
2193         (pascal-outline): Rename to pascal-outline-mode.
2194         (pascal-outline-mode): Use define-minor-mode.
2195         (pascal-outline-mode, pascal-outline-change): Use overlays rather than
2196         selective-display.
2198 2005-10-10  Andreas Schwab  <schwab@suse.de>
2200         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
2201         number.  Reported by Karl Chen <quarl@cs.berkeley.edu>.
2203         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
2204         outside source directory.
2206 2005-10-10  Carsten Dominik  <dominik@science.uva.nl>
2208         * textmodes/org.el: (org-mode-map): Explicit definition of `C-c
2209         C-x' as a prefix.
2210         (orgtbl-mode-map): Full keymap instead of sparse, because all
2211         `self-insert-command' keys are redefined in this map.
2212         (org-export-as-html): Specify charset for HTML file, by taking it
2213         from the coding system.
2215 2005-10-10  Kenichi Handa  <handa@m17n.org>
2217         * textmodes/flyspell.el (flyspell-check-word-p):
2218         If unread-command-events is non-empty, don't call sit-for.
2220 2005-10-09  Richard M. Stallman  <rms@gnu.org>
2222         * font-lock.el (font-lock-syntactic-keywords)
2223         (font-lock-keywords): Doc fixes.
2225         * textmodes/flyspell.el (flyspell-external-point-words):
2226         Simplify logic, and don't try to check for consecutive appearances
2227         of one incorrect word.
2229 2005-10-10  Nick Roberts  <nickrob@snap.net.nz>
2231         * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
2232         separator.
2234         * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
2235         (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
2236         (gud-expansion-speedbar-buttons): New function.
2237         (gud-speedbar-buttons): Check for gud-comint-buffer.
2239 2005-10-09  Bill Wohler  <wohler@newt.com>
2241         * Makefile.in (updates): Add mh-loaddefs dependency.
2243 2005-10-09  Chong Yidong  <cyd@stupidchicken.com>
2245         * speedbar.el (speedbar-file-key-map): Fix typo.
2247 2005-10-09  Daniel Brockman  <daniel@brockman.se>
2249         * cus-start.el (line-spacing): Add custom spec.
2251 2005-10-09  Romain Francoise  <romain@orebokech.com>
2253         * textmodes/ispell.el (ispell-check-version): Fix last change.
2255 2005-10-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2257         * term/x-win.el: Remove -i, --icon-type from comment.
2259         * startup.el (command-line-x-option-alist): Remove options -i,
2260         -itype, --icon-type, added -nb, --no-bitmap-icon
2262 2005-10-09  Nick Roberts  <nickrob@snap.net.nz>
2264         * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
2265         instead of :active.
2267 2005-10-08  Eric Hanchrow  <offby1@blarg.net>
2269         * textmodes/ispell.el (ispell-check-version):
2270         Ignore hyphen, and all that follows, in aspell's version text.
2272 2005-10-08  Jay Belanger  <belanger@truman.edu>
2274         * calc/calc-arith.el (math-known-square-matrixp): New function.
2275         (math-pow-fancy): Check for matrices before distributing exponent
2276         across products.
2278         * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
2279         fullscreen keypad.  Suggested by Luc Teirlinck.
2280         (calc-keypad-show-input): Add space for formatting.
2282         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
2283         Add square matrix option.
2285         * calc/calc-poly.el (math-expand-term): Check for matrices instead
2286         of checking calc-matrix-mode when deciding how to expand.
2288         * calc/calc.el (calc-set-mode-line): Add square matrix option.
2290 2005-10-08  Lars Hansen  <larsh@soem.dk>
2292         * net/tramp.el (tramp-perl-directory-files-and-attributes):
2293         Add error handling.
2294         (tramp-handle-directory-files-and-attributes): Handle perl error msg.
2296 2005-10-08  Michael Albinus  <michael.albinus@gmx.de>
2298         Sync with Tramp 2.0.51.
2300         * net/tramp.el (tramp-handle-set-visited-file-modtime)
2301         (tramp-handle-insert-file-contents, tramp-handle-write-region):
2302         Insert special handling for `last-coding-system-used', again
2303         it still seems to be necessary (unlike stated before).
2304         Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
2305         (tramp-password-prompt-regexp): There might be other words before
2306         trailing ":".  Reported by Kurt Steinkraus <kurt@steinkraus.us>.
2307         (tramp-chunksize): Improve docstring.
2308         (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
2309         Emacs 20.  Use `tramp-octal-to-decimal' therefore.  Reported by
2310         Christian Joergensen <bugs@razor.dk>.
2312 2005-10-07  Glenn Morris  <rgm@gnu.org>
2314         * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
2315         (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
2316         precision'.
2318 2005-10-07  Romain Francoise  <romain@orebokech.com>
2320         * ibuf-ext.el (ibuffer-do-shell-command-pipe)
2321         (ibuffer-do-shell-command-pipe-replace)
2322         (ibuffer-do-shell-command-file, ibuffer-do-eval)
2323         (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
2324         (ibuffer-do-revert, ibuffer-do-replace-regexp)
2325         (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
2326         (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
2327         (ibuffer-filter-by-name, ibuffer-filter-by-filename)
2328         (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
2329         (ibuffer-filter-by-content, ibuffer-filter-by-predicate
2330         (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
2331         (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
2332         Autoload file sans suffix.
2334         * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
2336 2005-10-07  David Ponce  <david@dponce.com>
2338         * recentf.el (recentf-menu-open-all-flag): New option.
2339         (recentf-digit-shortcut-command-name): New function.
2340         (recentf--shortcuts-keymap): New variable.
2341         (recentf-menu-shortcuts): New variable.
2342         (recentf-make-menu-items): Initialize it.  Replace the "More..."
2343         menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
2344         (recentf-menu-value-shortcut): New function.
2345         (recentf-make-menu-item): Use it.  No more in-lined.
2346         (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
2347         (recentf-open-most-recent-file): Rename from
2348         `recentf-open-file-with-key'.  Don't depend on key binding.
2349         (recentf-mode-map): New variable.
2350         (recentf-mode): Use it.
2352 2005-10-06  Bill Wohler  <wohler@newt.com>
2354         * mh-e/mh-loaddefs.el: Remove.  Now generated automatically.
2356         * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
2357         (MH-E-SRC): New.  Used by mh-autoloads.
2358         (mh-autoloads): New.  Builds mh-e/mh-loaddefs.el.  Rebuilds if any
2359         files in MH-E-SRC have been updated.
2360         (compile, recompile, bootstrap): Depend on mh-autoloads.
2362 2005-10-07  Nick Roberts  <nickrob@snap.net.nz>
2364         * progmodes/gud.el (gud-menu-map): Only display un-intuitive
2365         gud-break and gud-remove icons when the fringe is not available.
2367         * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
2368         Typo.
2370 2005-10-06  Michael Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>  (tiny change)
2372         * play/zone.el (zone): Wrap body with save-window-excursion.
2374 2005-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2376         * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
2377         Use the new `list-only' arg to diary-list-entries.
2379         * calendar/diary-lib.el: Use overlays rather than selective-display.
2380         (diary-selective-display): New var.
2381         (diary-header-line-format): Use it.
2382         (diary-list-entries): Add argument `list-only'.
2383         Put the buffer in diary-mode.  Don't add \^M at beg and end.
2384         Replace \^M by invisible overlays.
2385         (diary-unhide-everything): Replace \^M by invisible overlays.
2386         (print-diary-entries): Look for overlays rather than \^M.
2387         Add a space to the temp buffer name.
2388         (diary-show-all-entries, mark-diary-entries, make-diary-entry):
2389         Put the buffer in diary-mode.
2390         (list-sexp-diary-entries): Replace \^M by invisible overlays.
2391         (diary-anniversary): Make the year arg optional.
2392         (diary-time-regexp): New const.
2393         (diary-font-lock-keywords): Use it to accept a few more time formats.
2395         * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
2397 2005-10-06  Thien-Thi Nguyen  <ttn@gnu.org>
2399         * textmodes/artist.el (artist-ellipse-mirror-quadrant):
2400         Fix bug introduced 2005-07-03: Use (car (last ...))
2401         to faithfully reproduce replaced artist-last.
2402         (artist-set-arrow-points-for-poly): Likewise.
2403         Suggested by Johan Bockg\e,Ae\e(Brd.
2405 2005-10-06  Juanma Barranquero  <lekktu@gmail.com>
2407         * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
2408         * wid-edit.el (widget):
2409         * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
2410         * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
2412 2005-10-06  Kenichi Handa  <handa@m17n.org>
2414         * international/mule-cmds.el (set-language-environment):
2415         Fix setting up of case-table for unibyte mode.
2417         * simple.el (what-cursor-position): If the character is displayed
2418         by some `display' text property, show that.  Don't use
2419         single-key-description for eight-bit characters in multibyte mode.
2421 2005-10-06  Nick Roberts  <nickrob@snap.net.nz>
2423         * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
2424         (gdb-ann3): Set it.
2425         (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
2426         (gdb-info-frames-custom): Use inverse-video for first five
2427         characters of selected frame only.
2428         (gdb-get-frame-number): Select frame even when point is on frame
2429         number.
2431 2005-10-06  Masatake YAMATO  <jet@gyve.org>
2433         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
2434         Put `font-lock-function-name-face'.
2435         (gdb-info-frames-custom): Put `font-lock-function-name-face'
2436         and `font-lock-variable-name-face'
2437         (gdb-registers-font-lock-keywords): New font lock keywords definition.
2438         (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
2439         (gdb-memory-font-lock-keywords): New font lock keywords definition.
2440         (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
2441         (gdb-local-font-lock-keywords): New font lock keywords definition.
2442         (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
2443         (gdb-threads-font-lock-keywords): New font lock keywords definition.
2444         (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
2446 2005-10-05  Michael Kifer  <kifer@cs.stonybrook.edu>
2448         * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
2449         (ediff-merge-region-is-non-clash-to-skip): Previously called
2450         ediff-merge-region-is-non-clash.
2452         * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
2453         Use insert-buffer-substring.
2455         * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
2456         selecting files to patch.  Also bug fixes.
2458         * ediff-util.el (ediff-setup): Bug fix.
2459         (ediff-next-difference): Never skip clashes that differ in white
2460         space only.
2462         * ediff-wind.el (ediff-setup-control-frame)
2463         (ediff-destroy-control-frame): Check the menubar feature.
2465         * viper-cmd.el (viper-normalize-minor-mode-map-alist)
2466         (viper-refresh-mode-line): Use make-local-variable to localize
2467         some vars instead of make-variable-buffer-local.  Suggested by
2468         Stefan Monnier.
2470         * viper-init.el (viper-make-variable-buffer-local): Delete alias.
2471         (viper-restore-cursor-type, viper-set-insert-cursor-type):
2472         Use make-local-variable instead of make-variable-buffer-local.
2473         Suggested by Stefan Monnier.
2475         * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
2476         (viper-comint-mode-hook): Use make-local-variable on
2477         require-final-newline.
2478         (viper-non-hook-settings): Don't use make-variable-buffer-local.
2480 2005-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2482         * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
2483         also the second char of a comment-start sequence.
2484         (scheme-sexp-comment-syntax-table): New var.
2485         (lambda, define): Set their scheme-doc-string-elt property.
2486         (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
2487         Use lisp-font-lock-syntactic-face-function now that it properly
2488         handles |...| symbols.
2489         (scheme-mode-variables): Set lisp-doc-string-elt-property,
2490         parse-sexp-lookup-properties and font-lock-extra-managed-props.
2492         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
2493         bit from # to |.
2494         (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
2496         * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
2497         (lisp-doc-string-elt-property): New var.
2498         (lisp-font-lock-syntactic-face-function): Use it.
2499         Rewrite to recognize docstrings even for forms not at toplevel.
2501         * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
2502         annotation on the | part of #| rather than on the # part.
2503         (scheme-font-lock-syntactic-face-function): New function, to
2504         distinguish strings from |...| symbols.
2505         (scheme-mode-variables): Use it.  Also fix up the font-lock-time
2506         syntax-table so that #|...|# is properly highlighted.
2508         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
2509         Don't mark as docstring the 3rd elem of an unknown toplevel form.
2511 2005-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2513         * bindings.el (global-map): Resync [home] and [end] bindings with C-a
2514         and C-e.
2516         * emacs-lisp/eldoc.el: Move comments into docstrings.
2517         (eldoc-message-commands): Initialize in its declaration.
2518         Add move-beginning-of-line and move-end-of-line.
2519         (eldoc-add-command, eldoc-add-command-completions)
2520         (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
2522         * outline.el (outline-mark-subtree): Activate the mark.
2524         * calendar/appt.el (appt-time-regexp): New var.
2525         (appt-add, appt-make-list): Use it.
2526         (appt-convert-time): Clean up.
2528         * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
2529         Don't set any syntax-table property here.
2530         (tex-font-lock-verb): New function.  Do it here.
2531         (tex-font-lock-syntactic-keywords): Use it.
2533 2005-10-04  Richard M. Stallman  <rms@gnu.org>
2535         * wid-edit.el (widget-file-complete): Get the widget start point
2536         the right way.  Default directory to `/' if file has none.
2538         * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
2540         * textmodes/flyspell.el (flyspell-mode-on):
2541         Call ispell-maybe-find-aspell-dictionaries.
2543         * textmodes/ispell.el (ispell-word, ispell-region):
2544         Call ispell-maybe-find-aspell-dictionaries.
2545         (ispell-accept-buffer-local-defs):
2546         Don't call ispell-maybe-find-aspell-dictionaries
2548 2005-10-04  Richard M. Stallman  <rms@gnu.org>
2550         * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
2552 2005-10-04  Emilio C. Lopes  <eclig@gmx.net>
2554         * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
2555         instead of `fboundp' in order to allow for anonymous functions.
2557 2005-10-04  Chong Yidong  <cyd@stupidchicken.com>
2559         * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
2560         case the user clicks on the link while another window is selected.
2561         (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
2563         * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
2564         functionality.
2565         (dframe-help-echo): Save point in case mouse tracking is off.
2567 2005-10-04  Thien-Thi Nguyen  <ttn@gnu.org>
2569         * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
2571 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2573         * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
2574         not change the global value of those vars.
2576         * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
2577         make-local-variable which we do not need any more.
2579 2005-10-03  Chong Yidong  <cyd@stupidchicken.com>
2581         * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
2582         (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
2583         (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
2584         (speedbar-path-line): Define obsolete aliases.
2585         (speedbar-line-directory): Doc fix.
2587         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
2588         (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
2589         instead of speedbar-line-path.
2591 2005-10-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2593         * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
2594         to nil if dropping on a window.  Handle dropping on a minibuffer window
2595         like dropping on a non-window part of Emacs.
2597 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2599         * net/ange-ftp.el: Use with-current-buffer.
2600         (ange-ftp-insert-directory): Do not follow symlinks any more.
2602         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
2603         Remove interactive spec.
2605 2005-10-03  Kim F. Storm  <storm@cua.dk>
2607         * ido.el (ido-mode): Use custom-initialize-set.
2609 2005-10-02  Richard M. Stallman  <rms@gnu.org>
2611         * progmodes/ebnf2ps.el (ebnf-eps-production-list):
2612         Use insert-buffer-substring.
2614         * net/tramp.el: Pacify byte compiler warnings in pacification code.
2615         (tramp-handle-file-local-copy): Use insert-buffer-substring.
2617 2005-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2619         * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
2620         in last change.
2621         (ange-ftp-insert-directory): Fix up the search for the case where
2622         `file' is absolute.
2624 2005-10-02  Romain Francoise  <romain@orebokech.com>
2626         * progmodes/compile.el (compile-goto-error): Delete extra paren.
2628 2005-10-02  Andreas Schwab  <schwab@suse.de>
2630         * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
2631         directory component in the session info.
2633 2005-10-01  Richard M. Stallman  <rms@gnu.org>
2635         * comint.el (comint-redirect-subvert-readonly): Doc fix.
2637         * simple.el (next-error-internal): New function.
2639         * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
2640         (compilation-start): Pass new arg to compilation-buffer-name.
2641         (compile-goto-error): Use next-error-internal.
2643 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
2645         * speedbar.el: Remove RCS tag.
2646         (speedbar-check-read-only): Handle non-existent files.
2648         * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
2650         * info.el (Info-speedbar-hierarchy-buttons)
2651         (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
2653 2005-10-01  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2655         * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
2656         Do not match newline.
2657         (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
2658         (bibtex-summary): Remove unnecessary save-excursion.
2659         (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
2661 2005-10-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2663         * term/mac-win.el: Add charset info for "iso10646-1".
2664         Modify default fontset to use ATSUI-compatible fonts for some charsets
2665         if available.
2667 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
2669         * speedbar.el: Re-apply arch tag.
2670         (speedbar-version): Rename to version 1.0.  Suggested by Eric
2671         M. Ludlam.
2672         Reapply two changes from Emacs CVS' version of speedbar lost
2673         during the merge:
2674         (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
2675         (speedbar-frame-parameters): Improve customize type.
2677 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2679         * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
2680         (ange-ftp-file-directory-p): Fix the symlink case.
2681         (ange-ftp-insert-directory): When listing a single file, get a list of
2682         the parent buffer and extract the relevant line.  Inspired from a patch
2683         by Katsumi Yamaoka <yamaoka@jpl.org>.
2684         (ange-ftp-file-name-sans-versions): Simplify.
2686 2005-09-30  Bill Wohler  <wohler@newt.com>
2688         Move MH-E image files from toolbar and mail directories into
2689         etc/images.
2691         * mail/reply2.*: Move to etc/images/mail/reply*.
2693         * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
2694         * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
2695         etc/images.
2697         * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
2698         * toolbar/reply*: Move to etc/images/mail.
2700         * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
2702 2005-09-30  Eric M. Ludlam <zappo@gnu.org>
2704         * speedbar.el: New version 1.0pre3.
2706         Frame management code (including timer, and mouse click specifics)
2707         moved to dframe.el:
2708         (speedbar-attached-frame): Removed.  Use dframe-attached-frame.
2709         (speedbar-timer): Removed.  Use dframe-timer.
2710         (speedbar-close-frame): Removed.  Use dframe-close-frame.
2711         (speedbar-activity-change-focus-flag): Removed.  Use
2712         dframe-activity-change-focus-flag.
2713         (speedbar-update-speed, speedbar-navigating-speed): Obsolete.  Use
2714         dframe-update-speed.
2716         (speedbar-current-frame): New macro.  Use this instead of the
2717         variable speedbar-frame.
2719         (speedbar-use-images, speedbar-expand-image-button-alist)
2720         (speedbar-insert-image-button-maybe): Moved to sb-image.el.
2722         (speedbar-find-image-on-load-path): Removed.  Replaced by
2723         defezimage in ezimage.el.
2724         (speedbar-expand-image-button-alist): Removed.  Replaced by
2725         ezimage-expand-image-button-alist in ezimage.el.
2727         (speedbar-ignored-directory-regexp)
2728         (speedbar-add-ignored-directory-regexp)
2729         (speedbar-ignored-directory-expressions)
2730         (speedbar-line-directory, speedbar-buffers-line-directory)
2731         (speedbar-directory-line, speedbar-buffers-line-directory):
2732         Renamed, replacing `path' with `directory'.
2734         (speedbar-create-directory, speedbar-expand-line-descendants)
2735         (speedbar-toggle-line-expansion)
2736         (speedbar-contract-line-descendants): New commands.
2738         (speedbar-query-confirmation-method, speedbar-select-frame-method)
2739         (speedbar-use-tool-tips-flag): New options.
2741         (speedbar-check-read-only, speedbar-require-version)
2742         (speedbar-insert-separator, speedbar-buffers-tail-notes)
2743         (speedbar-handle-delete-frame, speedbar-try-completion)
2744         (speedbar-update-localized-contents): New functions.
2746         (speedbar-incompatible-version, speedbar-ro-to-do-point)
2747         (speedbar-object-read-only-indicator): New variables.
2749         (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
2750         New hooks.
2752         (speedbar-separator-face): New face.
2754         (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
2755         (speedbar-ignored-modes): Add fundamental-mode.
2756         (speedbar-directory-unshown-regexp): Add . directories.
2758         (speedbar-key-map): Remove old SPC and DEL page up/down keys.
2759         (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
2760         `]' for full expand/close.
2761         (speedbar-buffers-key-map): Add SPC to toggle node expansion.
2763         (speedbar-check-vc): Support hidden files.
2764         (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
2765         (speedbar-this-file-in-vc): Use vc-state if available.  If VC
2766         state is nil, it is not checked out.
2768         (speedbar-line-text, speedbar-line-token): Support expand buttons
2769         with no text.
2770         (speedbar-refresh): Universal argument acts as power-click.
2771         (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
2772         that buffer to get variable values.
2774         And many other bugfixes.
2776         * dframe.el, ezimage.el, sb-image.el: New files.
2778         * sb-*.xpm: Remove files.  New image files installed into
2779         etc/images/ezimage.
2781 2005-09-30  Kenichi Handa  <handa@m17n.org>
2783         * ps-mule.el (ps-mule-show-warning): If a character is in
2784         ps-print-translation-table, don't treat it as non-printable.
2786 2005-09-30  David Ponce  <david@dponce.com>
2788         * tree-widget.el (tree-widget-themes-load-path): New variable.
2789         (tree-widget-themes-directory): Doc fix.
2790         (tree-widget-image-formats) [Emacs]: Doc fix.
2791         (tree-widget--locate-sub-directory): New function.
2792         (tree-widget-themes-directory): Use it.
2794         * recentf.el (recentf-filename-handlers): Rename from
2795         `recentf-filename-handler'.  Allow a list of functions.
2796         (recentf-menu-items-for-commands): Fix :help strings.
2797         (recentf-apply-filename-handlers): New function.
2798         (recentf-expand-file-name): Use it.
2799         (recentf-cleanup): Remove duplicates too.
2801 2005-09-29  Juri Linkov  <juri@jurta.org>
2803         * faces.el: Rearrange face definitions to be in the same order as
2804         their face descriptions in "(emacs)Standard Faces".
2806         * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
2808         * tooltip.el (tooltip): Add group `basic-faces'.
2810         * buff-menu.el (Buffer-menu-buffer): Remove group
2811         `font-lock-highlighting-faces'.
2813         * progmodes/compile.el (compilation-error, compilation-warning)
2814         (compilation-info, compilation-line-number, compilation-column-number):
2815         Change group from `font-lock-highlighting-faces' to `compilation'.
2817         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
2818         (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
2819         (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
2820         (vhdl-font-lock-reserved-words-face)
2821         (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
2822         `font-lock-highlighting-faces'.
2824         * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
2826 2005-09-28  Kim F. Storm  <storm@cua.dk>
2828         * emulation/cua-base.el: Set CUA move property on additional commands:
2829         up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
2830         forward-sexp, backward-sexp, forward-list, backward-list.
2832 2005-09-28  Romain Francoise  <romain@orebokech.com>
2834         * comint.el (comint-show-output): Really set point at the
2835         beginning of the output when not using `comint-use-prompt-regexp'.
2837 2005-09-27  Jay Belanger  <belanger@truman.edu>
2839         * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
2840         in TeX mode.
2842 2005-09-26  Juanma Barranquero  <lekktu@gmail.com>
2844         * textmodes/org.el (org-table-sum): Fix format string.
2846         * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
2847         Quote face names.
2849 2005-09-26  Romain Francoise  <romain@orebokech.com>
2851         * isearch.el (isearch-forward-regexp): Close doc string.
2853 2005-09-25  Richard M. Stallman  <rms@gnu.org>
2855         * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
2857         * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
2859         * progmodes/compile.el (compilation-error-properties):
2860         When getting the file from the previous error message,
2861         correctly decode the new data format.
2863         * progmodes/cc-cmds.el (c-electric-paren):
2864         Call old-blink-paren only for close-paren.
2866 2005-09-24  Andreas Schwab  <schwab@suse.de>
2868         * term/rxvt.el (rxvt-register-default-colors): Delete redundant
2869         condition.
2871 2005-09-25  Romain Francoise  <romain@orebokech.com>
2873         * dired-aux.el (dired-copy-file-recursive):
2874         * dired.el (dired-delete-file):
2875         * ediff-mult.el (ediff-dir-diff-copy-file):
2876         * ediff-util.el (ediff-test-save-region):
2877         * forms.el (forms-mode):
2878         * ido.el (ido-file-internal, ido-delete-file-at-head):
2879         * log-edit.el (log-edit-done):
2880         * ses.el (ses-yank-resize):
2881         * play/gomoku.el (gomoku-human-plays, gomoku)
2882         (gomoku-human-resigns, gomoku-prompt-for-other-game)
2883         (gomoku-offer-a-draw):
2884         * play/landmark.el (lm-human-resigns, lm):
2885         * net/eudcb-ldap.el (eudc-ldap-check-base):
2886         * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
2887         * progmodes/ebrowse.el (ebrowse-find-pattern):
2888         * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
2889         * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
2890         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
2892         * vc.el (vc-delete-file):
2893         * play/gomoku.el (gomoku-terminate-game, gomoku)
2894         (gomoku-prompt-for-move, gomoku-human-takes-back):
2895         * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
2896         (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
2898 2005-09-24  Dan Nicolaescu  <dann@ics.uci.edu>
2900         * term/rxvt.el (rxvt-register-default-colors): Add support for 255
2901         color rxvt terminals by using the code xterm.el used to use before
2902         2005-04-09 in order to match the colors used by rxvt.
2904 2005-09-24  Emanuele Giaquinta <emanuele.giaquinta@gmail.com>  (tiny change)
2906         * term/rxvt.el (rxvt-register-default-colors): Add support for 88
2907         colors rxvt-unicode terminals by using the same code as xterm.el.
2909 2005-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2911         * textmodes/tex-mode.el (tex-font-lock-append-prop)
2912         (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
2913         new symbol used for the tex-verbatim face.
2915 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
2917         * woman.el (woman-file-name):
2918         * wid-edit.el (widget-file-prompt-value)
2919         (widget-coding-system-prompt-value):
2920         * w32-fns.el (set-w32-system-coding-system):
2921         * vc.el (vc-version-diff, vc-annotate):
2922         * textmodes/reftex-auc.el (reftex-arg-cite)
2923         (reftex-arg-index-tag):
2924         * textmodes/refer.el (refer-get-bib-files):
2925         * textmodes/artist.el (artist-figlet-choose-font):
2926         * terminal.el (terminal-emulator):
2927         * replace.el (occur-read-primary-args):
2928         * rect.el (string-rectangle, string-insert-rectangle):
2929         * ps-print.el (ps-print-preprint):
2930         * progmodes/pascal.el (pascal-goto-defun):
2931         * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
2932         * progmodes/compile.el (compilation-find-file):
2933         * printing.el (pr-interactive-n-up):
2934         * play/animate.el (animate-birthday-present):
2935         * net/rcompile.el (remote-compile):
2936         * man.el (man, Man-goto-section, Man-follow-manual-reference):
2937         * mail/rmailsum.el (rmail-summary-search-backward)
2938         (rmail-summary-search):
2939         * mail/rmailout.el (rmail-output-read-rmail-file-name)
2940         (rmail-output-read-file-name):
2941         * mail/rmail.el (rmail-search, rmail-search-backwards):
2942         * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
2943         * locate.el (locate):
2944         * international/quail.el (quail-show-keyboard-layout):
2945         * international/mule.el (set-buffer-file-coding-system)
2946         (revert-buffer-with-coding-system, set-file-name-coding-system)
2947         (set-terminal-coding-system, set-keyboard-coding-system)
2948         (set-next-selection-coding-system):
2949         * international/mule-diag.el (describe-coding-system)
2950         (describe-font, describe-fontset):
2951         * international/mule-cmds.el (universal-coding-system-argument)
2952         (search-unencodable-char, describe-input-method)
2953         (set-language-environment, describe-language-environment):
2954         * international/codepage.el (codepage-setup):
2955         * international/code-pages.el (codepage-setup):
2956         * info.el (Info-search, Info-follow-reference)
2957         (Info-search-backward):
2958         * emacs-lisp/advice.el (ad-read-advised-function)
2959         (ad-read-advice-class, ad-clear-cache, ad-activate)
2960         (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
2961         (ad-enable-advice, ad-disable-advice, ad-remove-advice)
2962         (ad-read-regexp):
2963         * ediff-util.el (ediff-toggle-regexp-match):
2964         * ediff-ptch.el (ediff-prompt-for-patch-file):
2965         * dired-aux.el (dired-diff):
2966         * diff.el (diff):
2967         * cus-edit.el (custom-variable-prompt):
2968         * calendar/timeclock.el (timeclock-ask-for-project):
2969         * calc/calcalg3.el (calc-get-fit-variables):
2970         * calc/calc-store.el (calc-edit-variable)
2971         (calc-permanent-variable):
2972         * vc-mcvs.el (vc-mcvs-register):
2973         * shadowfile.el (shadow-define-literal-group):
2974         * woman.el (woman-file-name):
2975         * vc.el (vc-version-diff, vc-merge):
2976         * textmodes/reftex-index.el (reftex-index-complete-tag):
2977         * format.el (format-decode-buffer, format-decode-region):
2978         * emulation/viper-cmd.el (viper-read-string-with-history):
2979         * emacs-lisp/debug.el (cancel-debug-on-entry):
2980         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2981         * ediff.el (ediff-merge-revisions)
2982         (ediff-merge-revisions-with-ancestor, ediff-revision):
2983         * completion.el (interactive-completion-string-reader):
2984         * calc/calc-prog.el (calc-user-define-formula):
2985         Follow convention for reading with the minibuffer.
2987 2005-09-24  Steven Huwig  <steven_h@acm.org>  (tiny change)
2989         * progmodes/python.el (python-describe-symbol): Add globals() and
2990         locals() to the arguments of emacs.ehelp.
2992 2005-09-24  Magnus Henoch  <mange@freemail.hu>
2994         * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
2995         New function, code extracted from ispell-valid-dictionary-list.
2996         (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
2997         Call it.
2999 2005-09-24  Eli Zaretskii  <eliz@gnu.org>
3001         * subr.el (version-regexp-alist): Extend valid syntax for version
3002         strings: allow any of the characters -,_,+ to separate the
3003         alpha/beta/rc part from the version part.  Doc fix.
3004         (version-to-list): Doc fix.  Bind case-fold-search to t, as advertised.
3006 2005-09-23  David Reitter  <david.reitter@gmail.com>
3008         * mail/mailclient.el: New file.
3010 2005-09-23  Richard M. Stallman  <rms@gnu.org>
3012         * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
3013         (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
3014         Doc fixes.
3016         * progmodes/cc-mode.el (c-font-lock-init):
3017         Specify font-lock-lines-before.
3019 2005-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3021         * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
3022         whole conflict.
3024 2005-09-23  Carsten Dominik  <dominik@science.uva.nl>
3026         * textmodes/org.el (org-mode-map, orgtbl-mode-map):
3027         Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix.  Make use
3028         of `remap' feature when available.  Additional key bindings for
3029         better tty support.
3030         (org-mode-restart, org-force-self-insert): New commands.
3031         (org-time-stamp-inactive): New command.
3032         (org-remap): New function.
3033         (org-table-auto-blank-field, org-level-color-stars-only): New options.
3034         (org-enable-fixed-width-editor): Move to `org-structure'
3035         customization group.
3036         (org-self-insert-command, orgtbl-self-insert-command): Modify to
3037         blank field after field motion commands.
3039 2005-09-23  Kenichi Handa  <handa@m17n.org>
3041         * international/mule-cmds.el (set-language-environment):
3042         Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
3043         have to call utf-translate-cjk-load-tables.
3045 2005-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3047         * mouse.el (mouse-move-drag-overlay): Fix last change.
3049 2005-09-22  David Ponce  <david@dponce.com>
3051         * tree-widget.el (tree-widget-value-create): Fix previous change.
3053 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
3055         * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
3057 2005-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3059         * mouse.el (mouse-move-drag-overlay): New function.
3060         (mouse-drag-region-1): Use it.
3061         Try to simplify a bit the state handling.  Handle clicks on links
3062         inside intangible areas.
3063         (mouse-save-then-kill): Minor simplification.
3064         (mouse-secondary-overlay): Make it always non-nil instead of
3065         recreating it each time.
3066         (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
3067         (mouse-kill-secondary, mouse-secondary-save-then-kill):
3068         Simplify accordingly.
3070 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
3072         * term/rxvt.el (rxvt-standard-colors): Fix some colors.
3074 2005-09-20  Michael Kifer  <kifer@cs.stonybrook.edu>
3076         * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
3077         (ediff-file-name-sans-prefix): Treat nil as an empty string.
3078         (ediff-fixup-patch-map): Better heuristic for intuiting the file names
3079         to patch.
3081         * ediff-util.el: Use insert-buffer-substring.
3083         * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
3085         * emulation/viper-cmd.el (viper-change-state): Don't move over the
3086         field boundaries in the minibuffer.
3087         (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
3088         (viper-minibuffer-post-command-hook): New hook.
3089         (viper-line): Don't move cursor at bolp.
3091         * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
3093         * emulation/viper-init.el: Add alias to make-variable-buffer-local to
3094         avoid compiler warnings.
3096         * emulation/viper-macs.el (ex-map): Better messages.
3098         * emulation/viper-utils.el (viper-beginning-of-field): New function.
3100         * emulation/viper.el: Replace make-variable-buffer-local with
3101         viper-make-variable-buffer-local everywhere, to avoid warnings.
3103 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3105         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
3106         Delete unused var `old-selected-window'.
3107         (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
3108         (mouse-drag-secondary): Delete unused var `start-frame'.
3110 2005-09-19  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
3112         * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
3114 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3116         * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
3117         Re-indent within 80 columns.  Use inhibit-read-only.
3119 2005-09-19  Romain Francoise  <romain@orebokech.com>
3121         * calendar/diary-lib.el (mark-diary-entries): Revert last change.
3123 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3125         * font-lock.el (font-lock-default-fontify-region): Don't add a line
3126         unconditionally, since the after-change-function already did it.
3128 2005-09-19  Miles Bader  <miles@gnu.org>
3130         * net/newsticker.el: Get rid of CVS keyword.
3132 2005-09-19  Johan Bockg\e,Ae\e(Brd  <bojohan+sf@dd.chalmers.se>
3134         * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
3135         The prompt is formatted later.
3137 2005-09-19  David Ponce  <david@dponce.com>
3139         * tree-widget.el (tree-widget-value-create): Save the converted
3140         tree :node widget.
3142 2005-09-19  Juanma Barranquero  <lekktu@gmail.com>
3144         * progmodes/sh-script.el (sh-blink): Fix spurious reference to
3145         variable `message'.
3147 2005-09-18  Michael Albinus  <michael.albinus@gmx.de>
3149         * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
3150         to cover prompts like "login as:".  Reported by Slawomir Nowaczyk
3151         <slawomir.nowaczyk.847@student.lu.se>.
3153 2005-09-18  Chong Yidong  <cyd@stupidchicken.com>
3155         * image.el (image-load-path): Use symbol `data-directory' instead
3156         of its value, for backward compatibility with packages that bind
3157         it during `find-image'.  Suggested by Katsumi Yamaoka.
3158         (image-search-load-path): Handle symbols whose values are strings.
3160 2005-09-18  Romain Francoise  <romain@orebokech.com>
3162         * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
3163         with-current-buffer form in save-excursion.
3165 2005-09-18  D Goel  <deego@gnufans.org>
3167         * apropos.el (apropos-command): Fix `message' call: first arg
3168         should be a format spec.  In this and all other cases that appear
3169         below and elsewhere in the source code, I made a change only when
3170         two conditions were satisfied: [1] I can think of a possibility
3171         that the arguments would cause an error, for example, the code in
3172         question relies on external variables such as filenames.  [2] I
3173         was sure that the arg to `message' could not have been nil in the code.
3175         * textmodes/tildify.el (tildify-region): Ditto.
3177         * textmodes/reftex-index.el (reftex-index-change-entry)
3178         (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
3179         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
3180         * textmodes/org.el (org-complete, org-deadline, org-schedule)
3181         (org-priority, org-table-sum):
3182         * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
3183         * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
3184         (flyspell-word, flyspell-display-next-corrections):
3185         * textmodes/bibtex.el (bibtex-print-help-message):
3186         * textmodes/artist.el (artist-key-set-point-poly):
3187         * term/mac-win.el (mac-services-insert-text):
3188         * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
3189         (vhdl-hooked-abbrev, vhdl-template-insert-fun)
3190         (vhdl-port-paste-testbench, vhdl-compose-new-component)
3191         (vhdl-compose-configuration):
3192         * progmodes/sh-script.el (sh-blink, sh-show-indent)
3193         (sh-set-indent, sh-learn-line-indent):
3194         * progmodes/ps-mode.el (ps-mode-target-column):
3195         * progmodes/idlwave.el (idlwave-make-tags)
3196         (idlwave-scan-library-catalogs):
3197         * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
3198         * progmodes/gud.el (gud-jdb-analyze-source):
3199         * progmodes/flymake.el (flymake-log):
3200         * progmodes/ebnf2ps.el (ebnf-generate-region):
3201         * progmodes/cmacexp.el (c-macro-expansion):
3202         * progmodes/ada-xref.el (ada-treat-cmd-string):
3203         * progmodes/ada-mode.el (ada-create-case-exception-substring)
3204         (ada-justified-indent-current, ada-batch-reformat):
3205         * play/zone.el (zone):
3206         * play/landmark.el (lm-move):
3207         * play/decipher.el (decipher-show-alphabet):
3208         * net/newsticker.el (newsticker--display-jump)
3209         (newsticker--display-scroll):
3210         * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
3211         (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
3212         * mail/feedmail.el (feedmail-dump-message-to-queue):
3213         * eshell/esh-proc.el (eshell-remove-process-entry):
3214         * emulation/ws-mode.el (ws-last-error):
3215         * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
3216         (viper-record-kbd-macro):
3217         * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
3218         * emacs-lisp/lisp-mnt.el (lm-report-bug):
3219         * emacs-lisp/find-func.el (find-function-noselect):
3220         * calendar/timeclock.el (timeclock-status-string)
3221         (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
3222         (timeclock-when-to-leave-string):
3223         * calendar/icalendar.el (icalendar--convert-ical-to-diary):
3224         * calc/calc-units.el (calc-enter-units-table):
3225         * calc/calc-mode.el (calc-mode-record-mode):
3226         * woman.el (woman-mini-help):
3227         * wdired.el (wdired-change-to-wdired-mode):
3228         * vc.el (vc-retrieve-snapshot):
3229         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
3230         * startup.el (display-startup-echo-area-message):
3231         * simple.el (set-goal-column):
3232         * ses.el (ses-command-hook, ses-recalculate-cell):
3233         * server.el (server-process-filter):
3234         * printing.el (pr-interface-txt-print, pr-interface-printify)
3235         (pr-interface-ps):
3236         * pcvs.el (cvs-help):
3237         * log-edit.el (log-edit, log-edit-mode-help):
3238         * iswitchb.el (iswitchb-possible-new-buffer):
3239         * isearch.el (isearch-edit-string):
3240         * image-mode.el (image-mode, image-minor-mode):
3241         * ibuf-macs.el (define-ibuffer-filter):
3242         * hi-lock.el (hi-lock-find-patterns):
3243         * files.el (toggle-read-only):
3244         * ediff-util.el (ediff-copy-diff)
3245         (ediff-write-merge-buffer-and-maybe-kill):
3246         * echistory.el (Electric-history-undefined):
3247         * dnd.el (dnd-insert-text):
3248         * dired-aux.el (dired-query):
3249         * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
3250         * bookmark.el (bookmark-bmenu-locate):
3251         * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
3252         Fix `message' calls to ensure first arg is a format string.
3253         The change was made only when these two conditions were satisfied:
3254         [1] when there is a possibility that the arguments would cause an error
3255         for example, if the code in question relies on external variables
3256         such as filenames, and
3257         [2] if the arg to `message' could not have been nil in the code.
3259         * pcomplete.el (pcomplete--help): Fix `message' format spec.
3260         Not having a %s would be weird, though not technically wrong.
3262 2005-09-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3264         * term/mac-win.el (mac-add-charset-info): Doc fix.
3266 2005-09-17  Romain Francoise  <romain@orebokech.com>
3268         * shell.el (shell-resync-dirs): Handle echoing processes more
3269         reliably.  Don't insert resync command if `comint-process-echoes'
3270         is non-nil.
3272 2005-09-17  Magnus Henoch  <mange@freemail.hu>
3274         * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
3275         (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
3276         aspell versions >= 0.60.
3277         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
3278         only if ispell-aspell-supports-utf8 is non-nil.
3280 2005-09-17  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
3282         * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
3283         buffer-local value to lisp-indent-function.
3285 2005-09-17  Milan Zamazal  <pdm@zamazal.org>
3287         * progmodes/glasses.el (glasses-make-readable): If
3288         glasses-separator differs from underscore, put appropriate
3289         overlays over underscore characters.
3290         (glasses-convert-to-unreadable): If glasses-separator differs from
3291         underscore, try to convert glasses-separator characters to
3292         underscores.
3294 2005-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3296         * calendar/diary-lib.el (mark-diary-entries): Don't move point.
3297         Use with-syntax-table and dolist.
3299 2005-09-16  Carsten Dominik  <dominik@science.uva.nl>
3301         * textmodes/reftex-auc.el:
3302         * textmodes/reftex-cite.el:
3303         * textmodes/reftex-dcr.el:
3304         * textmodes/reftex-global.el:
3305         * textmodes/reftex-parse.el:
3306         * textmodes/reftex-ref.el:
3307         * textmodes/reftex-sel.el:
3308         * textmodes/reftex-toc.el:
3309         * textmodes/reftex-vars.el:
3310         * textmodes/reftex.el: Small changes to remove compiler warnings.
3312         * textmodes/reftex-index.el: Likewise.
3313         (reftex-query-index-phrase): More efficient use of markers.
3315 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
3317         * image.el (image-load-path): New variable.
3318         (image-search-load-path): New function.
3319         (find-image): Search for images in `image-load-path'.
3321 2005-09-15  Richard M. Stallman  <rms@gnu.org>
3323         * follow.el: Change Maintainer field.
3325 2005-09-15  David Ponce  <david@dponce.com>
3327         * recentf.el (recentf-save-file-modes): New option.
3328         (recentf-save-list): Use it.
3330 2005-09-15  Nick Roberts  <nickrob@snap.net.nz>
3332         * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
3333         (mode-line-mule-info, mode-line-modified): Move bindings from
3334         mouse-3 to mouse-1.
3336 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
3338         * simple.el (sendmail-user-agent-compose): Revert last change.
3340 2005-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3342         * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
3343         Use with-current-buffer.
3344         (ange-ftp-gwp-start): Remove unused var `gw-user'.
3345         (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
3346         (ange-ftp-insert-directory): Remove unused var `short'.
3347         (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
3349         * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
3350         (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
3352         * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
3353         (check-calendar-holidays, diary-list-entries): Autoload.
3354         Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
3355         (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
3357         * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
3358         which mistakenly removed a call to display-buffer.
3360 2005-09-14  Juanma Barranquero  <lekktu@gmail.com>
3362         * obsolete/iso-insert.el: Move to obsolete/ from international/.
3364 2005-09-14  Thien-Thi Nguyen  <ttn@gnu.org>
3366         * progmodes/hideshow.el
3367         (hs-hide-comments-when-hiding-all): Remove autoload cookie.
3368         (hs-allow-nesting): New user var.
3369         (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
3370         (hs-hide-block-at-point): When nesting allowed,
3371         if there is already an overlay in place, delete it.
3372         (hs-safety-is-job-n): Delete func; remove call sites.
3373         (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
3374         (hs-overlay-at): New func.
3375         (hs-already-hidden-p, hs-show-block): Use it.
3376         (hs-hide-all): Don't pre-clean if nesting allowed.
3377         (hs-show-all): Temporarily disallow
3378         nesting around call to `hs-discard-overlays'.
3380 2005-09-14  Chong Yidong  <cyd@stupidchicken.com>
3382         * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
3383         Delete unused local var.
3385 2005-09-13  Juanma Barranquero  <lekktu@gmail.com>
3387         * help-fns.el (describe-categories): "?\ " -> "?\s".
3388         (help-do-arg-highlight): Recognize also ARG-n, as in
3389         `move-to-left-margin' (ARG+n is already recognized).  Simplify.
3391         * international/codepage.el (dos-unsupported-char-glyph):
3392         * net/newsticker.el (tool-bar-map, w3-mode-map)
3393         (w3m-minor-mode-map):
3394         * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
3395         (ent-alist):
3396         * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
3398 2005-09-13  Chong Yidong  <cyd@stupidchicken.com>
3400         * custom.el (custom-push-theme): Handle the case where a symbol is
3401         bound but face properties have not yet been assigned.
3403         * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
3404         Fix behavior if noerase is `t' and there is no mail buffer.
3406         * simple.el (sendmail-user-agent-compose): Use a new mail buffer
3407         if `continue' is nil, rather than signal an error.
3409 2005-09-12  Richard M. Stallman  <rms@gnu.org>
3411         * font-lock.el (font-lock-keywords): Add autoload.
3413         * help-fns.el (describe-variable): Rearrange to put source link
3414         in a predictable place.
3416         * net/newsticker.el: New file.
3418 2005-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3420         * calendar/calendar.el (calendar-for-loop): Add edebug info.
3421         (calendar-basic-setup): Use the new nil arg.
3422         (number-of-diary-entries): Move to diary-lib.el.
3424         * calendar/diary-lib.el: Use with-current-buffer, match-string.
3425         (diary-list-entries): Use with-syntax-table and dolist.
3426         Rename from list-diary-entries.
3427         Use number-of-diary-entries if `number' is nil.
3428         (diary, diary-view-entries): Use this new name and new nil arg value.
3429         (number-of-diary-entries): Move from calendar.el.
3430         (diary-unhide-everything): New function.
3431         (include-other-diary-files, fancy-diary-display)
3432         (diary-show-all-entries, make-diary-entry): Use it.
3433         (diary-mail-entries): Use buffer-string.
3434         (mark-diary-entries): Fix long standing paren typo.
3435         (diary-sexp-entry): Use count-lines.
3436         (make-diary-entry): Avoid `previous-line'.
3437         (diary-mode-map): New var.
3438         (diary-mode): Redraw cal after saving.  Setup header-line.
3439         (fancy-diary-display-mode): Use local-set-key.
3441         * startup.el (command-line): Try calling various terminal-init-foo-bar
3442         functions by stripping hyphenated suffixes from $TERM.
3444         * files.el (normal-mode): Check boundness of font-lock-keywords.
3446 2005-09-12  Richard M. Stallman  <rms@gnu.org>
3448         * progmodes/compile.el: Don't decide a file's directory
3449         until the user actually tries to go there.
3450         (compilation-next-error-function):
3451         Pass compilation-find-file the directory from the file-struct.
3452         (compilation-internal-error-properties): Separate local FILE-STRUCT
3453         from FILE.  Doc the args better.  Rename arg FMT to FMTS.
3454         (compilation-find-file): Arg DIR renamed to DIRECTORY.
3455         Expand it, and if nil, use default-directory.
3456         (compilation-get-file-structure): Don't mix specified directory
3457         with default directory.  Put specified directory into
3458         file-struct.  Don't make the file name absolute.
3460         * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
3461         (compile-command): Add autoload.
3462         (compilation-disable-input): Add autoload.
3464 2005-09-11  Stephen Gildea  <gildea@stop.mail-abuse.org>
3466         * time-stamp.el: Mention variable `time-stamp-pattern' in doc
3467         strings of the variables it can override.
3468         (time-stamp): New (as yet undocumented) time-stamp-format escapes
3469         %Q and %q, for fully-qualified domain name and unqualified host name.
3471 2005-09-11  Kim F. Storm  <storm@cua.dk>
3473         * emacs-lisp/authors.el (authors-aliases): Update list.
3474         (authors-fixed-entries): Update mldrag.el entry.
3476 2005-09-10  Alan Mackenzie  <acm@muc.de>
3478         * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
3479         from the region narrowed to.
3481 2005-09-10  Magnus Henoch  <mange@freemail.hu>
3483         * textmodes/ispell.el (ispell-check-version): Signal an error if
3484         aspell version is less than 0.60.
3486 2005-09-10  Pascal Dupuis  <Pascal.Dupuis@esat.kuleuven.be>  (tiny change)
3488         * progmodes/octave-inf.el (inferior-octave-startup):
3489         Resync current dir at the end.
3491 2005-09-10  Emilio C. Lopes  <eclig@gmx.net>
3493         * woman.el (woman-topic-at-point-default):
3494         Rename to woman-use-topic-at-point-default.
3495         (woman-topic-at-point): Rename to woman-use-topic-at-point.
3496         (woman-file-name): Reflect renames above.  Automatically use the
3497         word at point as topic if woman-use-topic-at-point is non-nil.
3498         Otherwise offer it as default but don't insert it in the
3499         minibuffer.  Also use `test-completion' instead of `assoc' as
3500         suggested by Stefan Monnier.
3502 2005-09-10  Andre Spiegel  <spiegel@gnu.org>
3504         * vc.el (vc-directory, vc-update-change-log): Throw an error on
3505         the attempt to do it over Tramp.  This is not yet supported.
3507 2005-09-10  Eli Zaretskii  <eliz@gnu.org>
3509         * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
3510         (menu-bar-non-minibuffer-window-p): New functions.
3511         ("Split Window", "Save As..."): Use them.
3512         ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
3513         ("Print Buffer", "Truncate Long Lines in this Buffer"):
3514         Use menu-bar-menu-frame-live-and-visible-p.
3515         ("Save Buffer", "Insert File", "Open Directory...")
3516         ("Open File...", "Visit New File..."):
3517         Use menu-bar-non-minibuffer-window-p.
3518         (kill-this-buffer-enabled-p, dired <menu-enable>):
3519         Use menu-bar-non-minibuffer-window-p.
3521 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
3523         * cus-start.el (all): Don't complain about fringe-related
3524         built-ins if fringes are not supported.  Ditto about
3525         selection-related built-ins.  Fix the test for GTK-related built-ins.
3527         * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
3528         ("Postscript Print Buffer", "Print Region", "Save As...")
3529         ("Save", "Insert File...", "Open Directory...")
3530         ("Open File...", "Visit New File..."")
3531         ("Truncate Long Lines in this Buffer"): Don't look at
3532         menu-updating-frame if this display does not support multiple frames.
3534 2005-09-09  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
3536         * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
3538 2005-09-09  Emilio Lopes  <eclig@gmx.net>
3540         * woman.el: Format- and whitespace-related changes.
3542 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
3544         * woman.el: Fix my email address.
3546 2005-09-08  Richard M. Stallman  <rms@gnu.org>
3548         * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
3549         (sh-mode): Locally set skeleton-pair-default-alist.
3551         * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
3553         * progmodes/flymake.el: Require `compile' unconditionally.
3555         * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
3557         * woman.el (woman-file-name): Provide a default, not initial input.
3559         * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
3561         * font-lock.el (font-lock-support-mode): Doc fix.
3563         * descr-text.el (describe-property-list): Handle non-symbol prop names.
3565 2005-09-08  Richard M. Stallman  <rms@gnu.org>
3567         * simple.el (blink-matching-open): Get rid of text props from
3568         the string shown in echo area.  Don't permanently set point.
3569         Some rearrangements.
3571 2005-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
3573         * recentf.el (recentf-filename-handler): Add custom choice
3574         `abbreviate-file-name'.
3576         * msb.el (msb--very-many-menus): Fix typo.
3578         * disp-table.el (standard-display-european): Don't set
3579         enable-multibyte-characters to nil.
3581 2005-09-08  David Ponce  <david@dponce.com>
3583         * recentf.el (recentf-show-file-shortcuts-flag): New option.
3584         (recentf-expand-file-name): Doc fix.
3585         (recentf-dialog-mode-map): Define digit shortcuts.
3586         (recentf--files-with-key): New variable.
3587         (recentf-show-digit-shortcut-filter): New function.
3588         (recentf-open-files-items): New function.
3589         (recentf-open-files): Use it.
3590         (recentf-open-file-with-key): New command.
3592 2005-09-08  Chong Yidong  <cyd@stupidchicken.com>
3594         * buff-menu.el (Buffer-menu-sort-by-column): New function.
3595         Suggested by Kim F. Storm.
3596         (Buffer-menu-sort-button-map): Global keymap for sort buttons.
3597         (Buffer-menu-make-sort-button): Use global keymap.
3599 2005-09-07  Michael Albinus  <michael.albinus@gmx.de>
3601         * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
3602         (Man-getpage-in-background-advice): Remove defadvice; it isn't
3603         necessary any longer with the remapped command.
3604         (Man-bgproc-sentinel-advice): Remove defadvice which counts
3605         formatting time only.
3607         * net/tramp.el (tramp-action-password)
3608         (tramp-multi-action-password): Compile the password prompt from
3609         `method', `user' and `host'.  Sometimes it isn't obvious which
3610         password to enter, for example with remote files offered by
3611         recentf.el, or with multiple steps.  Suggested by Robert Marshall
3612         <robert@chezmarshall.freeserve.co.uk>.
3614 2005-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3616         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3617         Fix regexp for when "s///" is at the beginning of line.
3619 2005-09-07  Jay Belanger  <belanger@truman.edu>
3621         * calc/calc-poly.el (math-expand-term): Multiply out any powers
3622         when in matrix mode.
3624 2005-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3626         * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
3627         non-anonymous functions.
3629 2005-09-06  Chong Yidong  <cyd@stupidchicken.com>
3631         * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
3632         when using a header line.  Otherwise, use mouse-1-click-follows-link.
3634         * mouse.el (mouse-drag-header-line): Do nothing if the header-line
3635         can't be moved; don't signal an error.
3637 2005-09-05  Chong Yidong  <cyd@stupidchicken.com>
3639         * cus-theme.el (custom-theme-write-faces): Save the current face
3640         spec, not the defface spec.
3642         * custom.el (custom-known-themes): Clarify meaning of "standard".
3643         (custom-push-theme): Save old values in the standard theme.
3644         (disable-theme): Correct typo.
3645         (custom-face-theme-value) Deleted unused function.
3646         (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
3648 2005-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3650         * progmodes/compile.el (compilation-goto-locus): Take into account
3651         iconified frames when determining whether the buffer is
3652         already visible.
3653         Don't reset window height if the window already existed.
3655 2005-09-04  Chong Yidong  <cyd@stupidchicken.com>
3657         * custom.el (load-theme): Rename from require-theme.
3658         Add interactive spec.
3659         (enable-theme): Rename from custom-enable-theme.
3660         Add interactive spec.
3661         (disable-theme): Rename from custom-disable-theme.
3662         Add interactive spec.
3663         (custom-make-theme-feature): Doc fix.
3664         (custom-theme-directory): Doc fix.
3665         (provide-theme): Call enable-theme.
3667 2005-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3669         * obsolete/lazy-lock.el (lazy-lock-mode):
3670         * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
3671         font-lock-mode if it's off.  Print a warning instead.
3673         * progmodes/compile.el (compilation-start): Ignore errors if the
3674         process died before we get to send-eof.
3676         * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
3677         Undo last change.  Enclosing the result in quotes broke things on Unix
3678         since tex-send-command passes it through shell-quote-argument.
3679         (tex-send-command): Pass `file' through convert-standard-filename
3680         when possible.
3681         (tex-uptodate-p): Handle the case where TeX hasn't put additional
3682         info in a transcript.
3684 2005-09-02  Dan Nicolaescu  <dann@ics.uci.edu>
3686         * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
3687         fix compilation warning. Reorder the key definitions to group
3688         together keys emitted by the current version of xterm.
3690         * progmodes/vhdl-mode.el (vhdl-highlight-faces)
3691         (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
3692         Reorder predicates to correct min-color usage.
3694 2005-09-01  Chong Yidong  <cyd@stupidchicken.com>
3696         * longlines.el (longlines-mode): Inhibit read-only when encoding.
3697         Kill local variables when longlines-mode is turned off.
3699 2005-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3701         * international/mule-cmds.el (set-locale-environment): Soothe compiler.
3703         * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
3705         * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
3707         * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
3708         (font-lock-lines-before): Change default to being inactive.
3709         (font-lock-default-fontify-region): Obey font-lock-lines-before.
3710         (font-lock-after-change-function): Don't handle f-l-lines-before here.
3712 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
3714         * net/tramp.el (tramp-handle-make-auto-save-file-name):
3715         Deactivate temporarily advice if active (not needed for Emacs 22,
3716         but for backwards compatibility).
3717         (tramp-exists-file-name-handler): Rewrite.  First implementation
3718         was too simple.
3719         (tramp-advice-make-auto-save-file-name):
3720         Call `tramp-handle-make-auto-save-file-name' (again, just for
3721         backwards compatibility).
3723 2005-08-31  Reto Zimmermann  <reto@gnu.org>
3725         * progmodes/vhdl-mode.el
3726         (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
3727         (vhdl-end-p): Fix indentation bug "else" after "-- when".
3728         (vhdl-set-default-project): New function (easier setting of default).
3729         (vhdl-port-copy): Handle extended identifiers for generics.
3730         (vhdl-compiler-alist): Better description for error message regexp.
3731         (vhdl-make): Query for target, use previous as default.
3732         (vhdl-port-copy): Fix port copy for port names starting with "signal".
3733         (vhdl-font-lock-keywords-2): Fix fontification for record
3734         el. assign.
3735         (vhdl-speedbar-make-subpack-line): Add package body link.
3736         (vhdl-generate-makefile-1): Not include itself as dependency.
3737         (vhdl-font-lock-init): Highlight c-preprocessor directives.
3738         (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
3739         (vhdl-get-syntactic-context): Handle c-preprocessor directives.
3740         (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
3741         (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
3742         (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
3743         (vhdl-import-project): Add string argument for `error'.
3744         (vhdl-compose-configuration)
3745         (vhdl-compose-configuration-architecture): Add configuration
3746         declaration generation.
3747         (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
3748         (vhdl-trailer-re): Add "record" keyword (better indentation).
3749         (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
3750         "[^ \t-\"]+".
3751         (vhdl-font-lock-keywords-2): Not highlight formal parameter after '|'.
3752         (vhdl-testbench-entity-file-name)
3753         (vhdl-testbench-architecture-file-name): Allow separate
3754         customization of testbench file names.
3755         (vhdl-beginning-of-block): Handle optional subprogram parameter list.
3756         (vhdl-get-visible-signals): Allow newline within alias declaration.
3757         (vhdl-update-sensitivity-list): Signal read only on certain attributes.
3758         (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
3759         (member-ignore-case): Alias for missing function in XEmacs.
3760         (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
3761         (vhdl-update-sensitivity-list): Ignore case on read signals.
3762         (vhdl-replace-string): Adjust case only for file names.
3763         (vhdl-update-sensitivity-list): Fix search for read signals.
3764         (vhdl-update-sensitivity-list): Exclude formal parameters.
3765         (vhdl-get-visible-signals): Include aliases of signals.
3766         (vhdl-get-visible-signals): Fix signal name searching.
3767         (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
3768         (vhdl-fixup-whitespace-region): Fix for character
3769         literals (e.g. ':').
3771 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
3773         * ansi-color.el (comint-last-output-start):
3774         * bs.el (font-lock-verbose):
3775         * diff-mode.el (add-log-buffer-file-name-function):
3776         * dired-x.el (vm-folder-directory):
3777         * faces.el (help-xref-stack-item):
3778         * files.el (font-lock-keywords):
3779         * find-lisp.el (dired-buffers, dired-subdir-alist):
3780         * ido.el (cua-inhibit-cua-keys):
3781         * log-view.el (cvs-minor-wrap-function):
3782         * outline.el (font-lock-warning-face):
3783         * simple.el (compilation-current-error):
3784         * speedbar.el (ange-ftp-path-format, efs-path-regexp)
3785         (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
3786         * tooltip.el (comint-prompt-regexp):
3787         * w32-fns.el (explicit-shell-file-name):
3788         * term/mac-win.el (mac-charset-info-alist)
3789         (mac-services-selection, mac-system-script-code):
3790         * term/tty-colors.el (msdos-color-values):
3791         * term/w32-win.el (xlfd-regexp-registry-subnum):
3792         * term/x-win.el (x-keysym-table, x-selection-timeout)
3793         (x-session-id, x-session-previous-id):
3794         * textmodes/ispell.el (mail-yank-prefix):
3795         * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
3796         * textmodes/org.el (calc-embedded-close-formula)
3797         (calc-embedded-open-formula)
3798         (font-lock-unfontify-region-function):
3799         * textmodes/reftex-global.el (isearch-next-buffer-function)
3800         (TeX-master):
3801         * textmodes/reftex.el (font-lock-keywords):
3802         * textmodes/tex-mode.el (font-lock-comment-face)
3803         (font-lock-doc-face):
3804         * textmodes/texinfo.el (outline-heading-alist):
3805         Add defvars.
3807         * textmodes/artist.el (x-pointer-crosshair): Add defvar.
3808         (artist-spray-chars, artist-mode-init, artist-replace-string)
3809         (artist-select-erase-char, artist-vap-find-endpoints-horiz)
3810         (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
3811         (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
3813         * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
3814         (conf-align-assignments): "?\ " -> "?\s".
3816         * textmodes/reftex-index.el (TeX-master): Add defvar.
3817         (reftex-index-phrases-marker): Move up defvar.
3819         * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
3820         (reftex-toc-include-labels-indicator)
3821         (reftex-toc-include-index-indicator)
3822         (reftex-toc-max-level-indicator): Move up declarations.
3824         * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
3825         of args to `tramp-run-real-handler', even if it's empty in this case.
3827 2005-08-31  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3829         * dired.el (dired-move-to-filename-regexp): Add date format for
3830         Mac OS X 10.3 in East Asian locales.
3832 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
3834         * files.el (make-auto-save-file-name): Add file name handler call
3835         if applicable.
3837         * net/tramp.el (tramp-file-name-handler-alist)
3838         (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
3839         (tramp-handle-make-auto-save-file-name): Rename from
3840         `tramp-make-auto-save-file-name'.
3841         (tramp-exists-file-name-handler): New defun.
3842         (tramp-advice-make-auto-save-file-name): Make defadvice only when
3843         `make-auto-save-file-name' is not a magic file name operation.
3845 2005-08-30  Richard M. Stallman  <rms@gnu.org>
3847         * files.el (risky-local-variable-p):
3848         Match `-predicates' and `-commands.
3850         * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
3851         (custom-save-all): Visit the file if necessary;
3852         kill the buffer if we created it.
3853         (custom-save-delete): Don't visit file or kill buffer here.
3855 2005-08-30  Carsten Dominik  <dominik@science.uva.nl>
3857         * textmodes/org.el (org-special-keyword): New face.
3858         (org-table-copy-down, org-table-eval-formula)
3859         (org-table-recalculate, org-init-section-numbers):
3860         Use `string-to-number' instead of `string-to-int'.
3861         (org-get-location): Use `insert-buffer-substring' instead of
3862         `insert-buffer'.
3863         (org-modify-diary-entry-string): New function.
3864         (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
3865         (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
3866         (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
3867         active region.
3868         (org-export-as-html): Handle QUOTE keyword.
3869         (org-quote-string): New option.
3870         (org-bookmark-jump-unhide): New function, used for
3871         `bookmark-after-jump-hook'.
3872         (org-diary-default-entry): Apply only when not called through
3873         `org-agenda'.
3875 2005-08-30  Juanma Barranquero  <lekktu@gmail.com>
3877         * net/eudc.el (mode-popup-menu):
3878         * play/handwrite.el (ps-printer-name, ps-lpr-command):
3879         * progmodes/ada-mode.el (compile-auto-highlight)
3880         (skeleton-further-elements):
3881         * progmodes/autoconf.el (font-lock-syntactic-keywords):
3882         * progmodes/cmacexp.el (msdos-shells):
3883         * progmodes/compile.el (font-lock-extra-managed-props)
3884         (font-lock-keywords, font-lock-maximum-size)
3885         (font-lock-support-mode):
3886         * progmodes/grep.el (font-lock-lines-before):
3887         * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
3888         * progmodes/mixal-mode.el (compile-command):
3889         * progmodes/perl-mode.el (font-lock-comment-face)
3890         (font-lock-doc-face, font-lock-string-face):
3891         * progmodes/prolog.el (comint-prompt-regexp):
3892         * progmodes/sh-script.el (font-lock-comment-face)
3893         (font-lock-set-defaults, font-lock-string-face):
3894         * progmodes/sql.el (font-lock-keyword-face)
3895         (font-lock-set-defaults, font-lock-string-face):
3896         * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
3897         (itimer-version, lazy-lock-defer-contextually)
3898         (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
3899         Add defvars.
3901         * progmodes/cperl-mode.el (cperl-electric-lbrace)
3902         (cperl-electric-keyword, cperl-electric-pod)
3903         (cperl-electric-backspace, cperl-forward-re)
3904         (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
3905         (vc-rcs-header, vc-sccs-header): Add defvars.
3907         * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
3908         (font-lock-syntactic-keywords, gud-find-expr-function):
3909         Add defvars.
3911         * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
3912         (gdb-frame-parameters): Declare before use.
3914         * progmodes/gud.el (gdb-active-process, gdb-define-alist)
3915         (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
3916         (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
3917         (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
3919         * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
3920         (idlwave-help-with-source): Use `insert-buffer-substring', not
3921         `insert-buffer'.
3923 2005-08-29  Juri Linkov  <juri@jurta.org>
3925         * outline.el (hide-entry, hide-leaves, outline-toggle-children):
3926         Put outline-back-to-heading function call inside save-excursion.
3928 2005-08-29  Juanma Barranquero  <lekktu@gmail.com>
3930         * man.el (Man-init-defvars, Man-translate-references)
3931         (Man-support-local-filenames, Man-highlight-references):
3932         * progmodes/sql.el (sql-interactive-mode):
3933         * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
3935         * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
3936         (compilation-mode-font-lock-keywords): Add defvars.
3937         (checkdoc-interactive-loop): "?\ " -> "?\s".
3939         * emacs-lisp/lisp-mode.el (font-lock-comment-face)
3940         (font-lock-doc-face, font-lock-string-face)
3941         (font-lock-keywords-case-fold-search): Add defvars.
3942         (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
3944         * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
3945         Don't pass X and Y (they are ignored anyway).
3946         (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
3947         (mouse-delete-window): Make arguments optional.
3949         * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
3950         (caesar-translate-table, minor-modes, news-buffer-save)
3951         (news-group-name, news-minor-modes): Add defvars.
3953         * emacs-lisp/lselect.el (mouse-highlight-priority)
3954         (x-lost-selection-functions, zmacs-regions):
3955         * emacs-lisp/pp.el (font-lock-verbose):
3956         * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
3957         * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
3958         (ses-mode-map):
3959         * emacs-lisp/tcover-unsafep.el (safe-functions):
3960         * international/mule-cmds.el (mac-system-coding-system)
3961         (mac-system-locale):
3962         * language/ethio-util.el (rmail-current-message)
3963         (rmail-message-vector):
3964         * language/thai-util.el (thai-auto-composition-mode):
3965         * mail/metamail.el (rmail-current-message, rmail-message-vector):
3966         * mail/mspools.el (rmail-inbox-list, vm-crash-box)
3967         (vm-folder-directory, vm-init-file, vm-init-file-loaded)
3968         (vm-primary-inbox, vm-spool-files):
3969         * mail/rmail.el (deleted-head, font-lock-fontified)
3970         (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
3971         (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
3972         (total-messages):
3973         * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
3974         (rmail-summary-mode-map):
3975         * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
3976         (rmail-last-label, rmail-last-multi-labels)
3977         (rmail-summary-vector, rmail-total-messages):
3978         * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
3979         * mail/rmailsum.el (msgnum):
3980         * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
3981         (rmail-current-message):
3982         * obsolete/fast-lock.el (font-lock-face-list):
3983         * obsolete/rnewspost.el (mail-reply-buffer):
3984         * obsolete/scribe.el (compile-command):
3985         * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
3987 2005-08-28  John Paul Wallington  <jpw@gnu.org>
3989         * ibuf-ext.el (ibuffer-auto-update-changed):
3990         Use `frame-or-buffer-changed-p' to check whether we need to update.
3991         (ibuffer-auto-mode): Don't advise `get-buffer-create' and
3992         `kill-buffer'.  Initialise `ibuffer-auto-buffers-changed'
3993         as a `frame-or-buffer-changed-p' state vector instead.
3995 2005-08-27  Romain Francoise  <romain@orebokech.com>
3997         * textmodes/makeinfo.el (makeinfo-compile):
3998         Use `compilation-start'.  Set `next-error-function' according to
3999         `disable-errors'.
4000         (makeinfo-next-error): New function.
4001         (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
4002         (makeinfo-buffer): Likewise.
4004         * progmodes/compile.el (compilation-start): Add autoload cookie.
4006         * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
4007         * textmodes/sgml-mode.el: Likewise.
4008         * progmodes/python.el: Likewise.
4010 2005-08-27  Eli Zaretskii  <eliz@gnu.org>
4012         * simple.el (blink-matching-paren-distance): Document the meaning
4013         of nil value, and allow to customize to nil.
4015         * eshell/esh-ext.el (eshell-windows-shell-file): Look for
4016         command.com, not command.exe.
4018 2005-08-26  John Wiegley  <johnw@newartisans.com>
4020         * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
4021         code around a bit so that an extraneous nil argument is not added
4022         to a command when no args are given.
4024         * eshell/esh-arg.el (eshell-parse-double-quote): If a
4025         double-quoted argument resolves to nil, return it as an empty
4026         string rather than as nil.  This made it impossible to pass "" to
4027         a shell script as a null string argument.
4029 2005-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4031         * outline.el (outline-invent-heading): New fun.
4032         (outline-promote, outline-demote): Use it.
4033         (outline-move-subtree-down): Remove unused vars `re' and `txt'.
4034         (outline-end-of-subtree): Remove unused var `opoint'.
4036 2005-08-26  David Reitter  <david.reitter@gmail.com>
4038         * menu-bar.el (truncate-lines, write-file, print-buffer)
4039         (ps-print-buffer-faces, ps-print-buffer, split-window):
4040         Disable menu items when the frame they refer to is invisible, or when
4041         they refer to a buffer and the minibuffer is selected.
4043 2005-08-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
4045         * progmodes/flymake.el (flymake-highlight-err-lines):
4046         Use save-excursion around flymake-highlight-line to preserve point.
4048 2005-08-26  Eli Zaretskii  <eliz@gnu.org>
4050         * progmodes/octave-mod.el: Change Author and Maintainer address.
4051         (octave-maintainer-address): Change Kurt's email address.
4052         * progmodes/octave-inf.el: Change Author and Maintainer address.
4053         * progmodes/octave-hlp.el: Change Author and Maintainer address.
4055 2005-08-26  Kim F. Storm  <storm@cua.dk>
4057         * subr.el (version-list-<, version-list-<=, version-list-=):
4058         Renamed from integer-list-*.
4059         (version-list-not-zero): Likewise.  Fix while loop.
4060         (version=): Use version-list-= instead of string-equal.
4062 2005-08-26  Richard M. Stallman  <rms@gnu.org>
4064         * outline.el (outline-promote): Try shortening the heading.
4065         As last resort, read the heading to use.
4066         (outline-demote): As last resort, read the heading to use.
4068 2005-08-26  Romain Francoise  <romain@orebokech.com>
4070         * progmodes/compile.el (compilation-start): Doc fix.
4072         * progmodes/antlr-mode.el (antlr-default): Fix defface form.
4073         (antlr-font-lock-additional-keywords): Fix reference to
4074         `antlr-font-lock-literal-regexp' erroneously changed during the
4075         mass face rename.
4076         (antlr-run-tool): Use `compilation-start'.
4078         * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
4079         instead of the obsolete `compile-internal'.
4081 2005-08-26  Juanma Barranquero  <lekktu@gmail.com>
4083         * calendar/cal-bahai.el (date, displayed-month, displayed-year)
4084         (number, original-date):
4085         * calendar/cal-china.el (date):
4086         * calendar/cal-coptic.el (date):
4087         * calendar/cal-french.el (date):
4088         * calendar/cal-hebrew.el (date, entry, number, original-date):
4089         * calendar/cal-islam.el (date, number, original-date):
4090         * calendar/cal-iso.el (date):
4091         * calendar/cal-julian.el (date):
4092         * calendar/cal-mayan.el (date):
4093         * calendar/cal-menu.el (date, event):
4094         * calendar/cal-persia.el (date):
4095         * calendar/lunar.el (date):
4096         * calendar/solar.el (date): Add defvars.
4098         * emerge.el:
4099         * ibuffer.el:
4100         * info-xref.el:
4101         * obsolete/bg-mouse.el:
4102         * obsolete/sun-curs.el:
4103         * obsolete/swedish.el: Move the `defvar's to the top level.
4105         * smerge-mode.el (smerge-refined-change): Add :group.
4107 2005-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4109         * smerge-mode.el (smerge-remove-props): Make the args non-optional.
4110         (smerge-keep-n): Remove props.
4111         (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
4112         (smerge-keep-current, smerge-kill-current): Don't remove props anymore
4113         now that it's done in smerge-keep-n.
4114         (smerge-refined-change): New face.
4115         (smerge-refine-chopup-region, smerge-refine-highlight-change)
4116         (smerge-refine): New funs.
4117         (smerge-basic-map): Bind smerge-refine.
4119 2005-08-25  Juri Linkov  <juri@jurta.org>
4121         * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
4122         compilation-process-setup-function and compilation-disable-input
4123         in grep-mode instead of let-bindings in grep.
4125         * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
4126         Delete "Automatic File De/compression" (auto-compression-mode).
4128 2005-08-25  Juanma Barranquero  <lekktu@gmail.com>
4130         * obsolete/bg-mouse.el: Move to obsolete/ from term/.
4131         Silence warning about non-existent variable.
4133 2005-08-25  Richard M. Stallman  <rms@gnu.org>
4135         * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
4136         Rename "Describe Key" to "Describe Key or Mouse Operation".
4138         * mail/mailalias.el (build-mail-aliases): Delete comments
4139         from the contents before processing them.
4141         * isearch.el (isearch-edit-string): Erase the Search prompt
4142         if user enters an empty string and there is no default.
4144         * comint.el (comint-file-name-prefix): Add autoload.
4146 2005-08-25  Joe Corneli  <jcorneli@math.utexas.edu>
4148         * subr.el (play-sound): Rearrange to avoid warning.
4150 2005-08-25  Carsten Dominik  <dominik@science.uva.nl>
4152         * calendar/diary-lib.el (diary-modify-entry-list-string-function):
4153         New hook.
4154         (add-to-diary-list): Call `diary-modify-entry-list-string-function'
4156 2005-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4158         * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
4160         * custom.el (custom-theme-set-variables): Sort minor modes last.
4162 2005-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4164         * subr.el (version-separator, version-regexp-alist): New vars used by
4165         version comparison funs.
4166         (integer-list-<, integer-list-=, integer-list-<=)
4167         (integer-list-not-zero): New funs for integer list comparison.
4168         (version-to-list, version=, version<, version<=): New funs for version
4169         comparison.
4171 2005-08-24  Juanma Barranquero  <lekktu@gmail.com>
4173         * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
4174         (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
4175         time to silence the byte-compiler.
4177         * ibuffer.el (ibuffer-compile-make-eliding-form)
4178         (ibuffer-check-formats): Use `with-no-warnings' to hide references
4179         to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
4180         so it's silly to get warnings for it).
4181         (ibuffer-auto-mode, ibuffer-cached-filter-formats)
4182         (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
4183         (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
4184         (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
4185         (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
4186         (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
4187         Defvar at compile time.
4188         (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
4189         (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
4190         Declare them before use.
4192         * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
4193         (info-xref-good, info-xref-bad): Defvar at compile time.
4195         * obsolete/mlsupport.el (filter-region, execute-monitor-command):
4196         Use `let*' instead of `let'.
4198         * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
4199         (*mouse-y*, menu, char): Defvar at compile time.
4200         (sc::menu): Declare it before use.
4201         (sc::pack-one-line): Use `let', not `let*'.
4203         * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
4204         (mail-send-hook): Defvar at compile time.
4206         * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
4207         Defvar at compile time.
4209         * term/sun-mouse.el (current-global-mousemap)
4210         (current-local-mousemap): Declare them before use.
4212 2005-08-24  Carsten Dominik  <dominik@science.uva.nl>
4214         * bookmark.el (bookmark-after-jump-hook): New hook.
4215         (bookmark-jump): Run `bookmark-after-jump-hook'.
4217 2005-08-23  Juri Linkov  <juri@jurta.org>
4219         * faces.el (minibuffer-prompt): Doc fix.
4221 2005-08-23  Juanma Barranquero  <lekktu@gmail.com>
4223         * progmodes/xscheme.el: Trivial changes to silence warnings.
4224         (xscheme-previous-mode, xscheme-previous-process-state):
4225         Add defvars.
4226         (xscheme-last-input-end, xscheme-process-command-line)
4227         (xscheme-process-name, xscheme-buffer-name)
4228         (xscheme-expressions-ring-max, xscheme-expressions-ring)
4229         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
4230         (xscheme-control-g-synchronization-p)
4231         (xscheme-control-g-disabled-p, xscheme-string-receiver)
4232         (default-xscheme-runlight, xscheme-runlight)
4233         (xscheme-runlight-string, xscheme-process-filter-state)
4234         (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
4235         Move to beginning of file.
4236         (scheme-interaction-mode-commands-alist)
4237         (scheme-interaction-mode-map, scheme-debugger-mode-map):
4238         Declare them before use.  Note: the initialization code for the variables
4239         has not been moved because it uses functions that reference the variables.
4240         (xscheme-control-g-message-string, xscheme-process-filter-alist)
4241         (xscheme-prompt-for-expression-map): Declare them before use.
4242         (scheme-debugger-mode-commands): "?\ " -> "?\s".
4244 2005-08-23  Ed Swarthout  <ed.swarthout@gmail.com>  (tiny change)
4246         * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
4248 2005-08-22  Juri Linkov  <juri@jurta.org>
4250         * faces.el (set-face-underline): Delete this duplicate function
4251         and make an obsolete alias to set-face-underline-p.
4252         (set-face-underline-p): Use docstring of set-face-underline.
4253         (describe-face): Create hyperlink to parent face.
4255         * info.el (Info-insert-dir): Use save-excursion around
4256         insert-buffer-substring.
4257         (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
4258         (Info-escape-percent): Delete function.
4259         (Info-fontify-node): Replace Info-escape-percent by
4260         replace-regexp-in-string with REP arg set to lambda that
4261         duplicates `%' and preserves text properties.
4263         * progmodes/compile.el (compilation-disable-input): Doc fix.
4264         (define-compilation-mode): Doc fix and refill.
4265         (kill-compilation): Use `mode-name' in the error message.
4266         (compilation-find-file): Use `compilation-error' in the
4267         read-file-name's prompt.
4269 2005-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4271         * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
4272         (smerge-auto-leave): Make undo re-enable the mode.
4273         (debug-ignored-errors): Add the user-error of impossible resolution.
4274         (smerge-resolve): Move things around a bit, in preparation for later.
4275         (smerge-diff): Don't fail if the buffer has no associated file.
4276         (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
4277         (smerge-conflict-overlay): New function.
4278         (smerge-match-conflict): Don't add text properties here.
4279         (smerge-find-conflict): Instead, add an overlay here.
4280         Also check for the case where we're inside a conflict already, so as to
4281         obviate the need for font-lock-multiline, which is unbearably slow with
4282         large conflicts and ciomplex font-lock patterns.
4283         (smerge-remove-props): Remove overlay rather than text-properties.
4284         (smerge-mode): Don't set font-lock-multiline.
4285         Remove overlays when turned off.
4287 2005-08-21  Kim F. Storm  <storm@cua.dk>
4289         * ido.el (ido-ignore-item-p): Use save-match-data.
4290         Bind case-fold-search to ido-case-fold locally.
4292 2005-08-20  Richard M. Stallman  <rms@gnu.org>
4294         * files.el (normal-mode): If font lock is on, turn it off and on.
4296         * subr.el (replace-regexp-in-string): Doc fix.
4298         * startup.el (command-line-1): Don't suppress startup screen
4299         due to existing processes.
4301         * progmodes/grep.el (grep): Bind compilation-disable-input to t.
4303         * progmodes/compile.el (compilation-disable-input): Default to nil.
4305 2005-08-20  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
4307         * progmodes/compile.el (compilation-disable-input): New defcustom.
4308         (compilation-start): If compilation-disable-input is non-nil, send
4309         EOF to the compilation process.
4311 2005-08-20  Eli Zaretskii  <eliz@gnu.org>
4313         * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
4314         Run the argument of tex-shell-cd-command through
4315         convert-standard-filename, to get the correct style of slashes on
4316         Windows, and enclose the result in quotes, in case the file name
4317         includes whitespace or other special characters.
4319 2005-08-19  Andreas Schwab  <schwab@suse.de>
4321         * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
4322         process.
4324 2005-08-18  Luc Teirlinck  <teirllm@auburn.edu>
4326         * cus-start.el (minibuffer-prompt-properties): Correct typo.
4328 2005-08-18  Kim F. Storm  <storm@cua.dk>
4330         * scroll-lock.el: Fix errors due to incorrect line wrapping.
4332 2005-08-18  Richard M. Stallman  <rms@gnu.org>
4334         * scroll-lock.el: New file.
4336 2005-08-18  Thien-Thi Nguyen  <ttn@gnu.org>
4338         * dired.el (dired-move-to-end-of-filename):
4339         Handle fifo as rendered by "ls -lF": Don't include trailing "|".
4341 2005-08-18  Kim F. Storm  <storm@cua.dk>
4343         * ido.el (ido-everywhere): Fix defcustom :set function to disable
4344         rather than toggle mode when custom value is nil.
4345         (ido-everywhere): Fix defun doc string.
4347 2005-08-17  Richard M. Stallman  <rms@gnu.org>
4349         * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
4350         as tag instead of "Inviolable".
4352 2005-08-17  Kim F. Storm  <storm@cua.dk>
4354         * windmove.el (windmove-coordinates-of-position): Remove.
4355         (windmove-coordinates-of-window-position): Remove.
4356         (windmove-reference-loc): Use posn-at-point instead.
4358         * subr.el (insert-for-yank-1): Doc fix.
4360         * ido.el (ido-enter-matching-directory): Rename from
4361         ido-enter-single-matching-directory.  Change 'slash choice to
4362         'only.  Add 'first choice.
4363         (ido-exhibit): Adapt to above changes.
4365 2005-08-16  Luc Teirlinck  <teirllm@auburn.edu>
4367         * Makefile.in: Expand comment about building loaddefs.el.
4369 2005-08-16  Nick Roberts  <nickrob@snap.net.nz>
4371         * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
4372         Comment use of defadvice.
4374         * progmodes/gud.el (gud-jump): Rework for gdb-ui.
4376 2005-08-15  Dan Nicolaescu  <dann@ics.uci.edu>
4378         * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
4379         * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
4380         * progmodes/gdb-ui.el, progmodes/idlw-help.el,
4381         * progmodes/idlw-shell.el, progmodes/ld-script.el,
4382         * progmodes/which-func.el, ruler-mode.el, strokes.el,
4383         * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
4384         for backward compatibility for faces that did not appear in the
4385         previous Emacs release.
4387         * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
4389 2005-08-15  Kim F. Storm  <storm@cua.dk>
4391         * emulation/cua-base.el (cua-delete-region): Return t if
4392         deleted region was non-empty.
4393         (cua-replace-region): Inhibit overwrite-mode for
4394         self-insert-command if replaced region was non-empty.
4395         (cua--explicit-region-start, cua--status-string): Make them
4396         buffer-local at top-level...
4397         (cua-mode): ...rather than when mode is enabled.
4399 2005-08-15  Thien-Thi Nguyen  <ttn@gnu.org>
4401         * progmodes/vhdl-mode.el (vhdl-emacs-21):
4402         Set t for Emacs 21, 22, and so on.
4404 2005-08-15  David Ponce  <david@dponce.com>
4406         * tree-widget.el: Update Commentary header.
4407         (tree-widget-theme): Doc fix.
4408         (tree-widget-space-width): New option.
4409         (tree-widget-image-properties): Look up in the default theme too.
4410         (tree-widget--cursors): Only for images with arrow pointer shape.
4411         (tree-widget-lookup-image): Pointer shape is hand by default.
4412         (tree-widget-icon): Rename generic icon widget from
4413         `tree-widget-control'.
4414         (tree-widget-*-icon): Rename from `tree-widget-*-control' and
4415         derive from `tree-widget-icon'.
4416         (tree-widget-handle): Improve default look and feel of the text
4417         representation.
4418         (tree-widget): Rename :*-control properties to :*-icon properties.
4419         Add :action and :help-echo properties.
4420         (tree-widget-after-toggle-functions): Move.
4421         (tree-widget-close-node, tree-widget-open-node): Remove.
4422         (tree-widget-before-create-icon-functions): New hook.
4423         (tree-widget-value-create): Update to allow customization of icons
4424         and nodes at run-time via that new hook.
4425         (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
4426         (tree-widget-icon-action, tree-widget-icon-help-echo)
4427         (tree-widget-action, tree-widget-help-echo): New functions.
4429 2005-08-15  Kim F. Storm  <storm@cua.dk>
4431         * ido.el (ido-buffer-internal): Use with-no-warnings.
4432         (ido-make-merged-file-list): Use while-no-input.
4434 2005-08-15  Richard M. Stallman  <rms@gnu.org>
4436         * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
4437         (flyspell-large-region): Fix doc and custom type.
4439 2005-08-14  Richard M. Stallman  <rms@gnu.org>
4441         * files.el (interpreter-mode-alist): Doc fix.
4443         * mail/rmail.el (rmail-nonignored-headers): New variable.
4444         (rmail-clear-headers): Use it.
4445         (rmail-reply): Better handling of mail-followup-to header.
4447         * progmodes/sh-script.el (sh-font-lock-keywords-var):
4448         Rename variable from sh-font-lock-keywords.  In the `shell' entry,
4449         don't try to refer to executable-font-lock-keywords.
4450         (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
4451         (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
4452         (sh-font-lock-keywords): Append executable-font-lock-keywords here.
4453         (sh-mode): Set comment-start-skip, local-abbrev-table,
4454         imenu-case-fold-search.
4455         (sh-set-shell): Don't set them here.
4456         (sh-feature): Simplify.  Get rid of the eval-a-variable feature.
4457         Don't cache the results in the original alist; don't ever modify
4458         that alist.
4460         * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
4462         * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
4463         empty.
4465 2005-08-15  Andreas Schwab  <schwab@suse.de>
4467         * desktop.el: Put autoload cookie at risky-local-variable declarations.
4469         * dired.el, info.el, mail/rmail.el: Revert last change.
4471 2005-08-14  Thien-Thi Nguyen  <ttn@gnu.org>
4473         * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
4474         modification in `eval-after-load' form.
4475         * info.el: Likewise.
4476         * mail/rmail.el: Likewise.
4478 2005-08-14  Juri Linkov  <juri@jurta.org>
4480         * progmodes/compile.el (compilation-mode-font-lock-keywords):
4481         Remove highlighting of "Compilation started".  Highlight only
4482         the word "finished" in "Compilation finished".  Add highlighting
4483         of "interrupt", "killed", "terminated" and the exit code.
4484         (compilation-start): Add newline after header.  Use exactly the
4485         same time stamp format as the finishing message.
4486         (compilation-mode-map): Add ellipsis to "Search Files (grep)".
4488         * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
4489         (grep-mode-font-lock-keywords): Don't highlight "Grep started".
4490         Add highlighting of "interrupt", "killed", "terminated".
4492         * delsel.el (delete-selection-pre-hook): If overwrite-mode is
4493         enabled and the current command is self-insert-command, call it
4494         explicitly with overwrite-mode bound to nil, to not allow it
4495         to delete the character after the selected region.
4497 2005-08-12  Matt Hodges  <MPHodges@member.fsf.org>
4499         * emacs-lisp/eldoc.el: Add move-beginning-of-line,
4500         move-end-of-line, end-of-line, and beginning-of-line to the list
4501         of commands after which the echo area is updated.
4503 2005-08-12  Eli Zaretskii  <eliz@gnu.org>
4505         * cus-edit.el (custom-save-all, custom-save-delete):
4506         Bind recentf-exclude to exclude custom-file.
4508 2005-08-12  Ehud Karni  <ehud@unix.mvs.co.il>
4510         * mail/rmailsum.el (rmail-summary-end-of-message): New command
4511         to go to the bottom of the mail message.  Added to
4512         `rmail-summary-mode-map' with key "/".
4513         (rmail-summary-show-message): New (internal) function for use by
4514         both `rmail-summary-beginning/end-of-message'.
4515         (rmail-summary-beginning-of-message): Change to use
4516         rmail-summary-show-message.
4518         * mail/rmail.el (rmail-end-of-message): New command to go to the
4519         end of the current message.  Added to `rmail-mode-map' with key "/".
4520         (rmail-beginning-of-message): Fix to work as documented.
4521         (rmail-mode): Change documentation.
4523         * progmodes/compile.el (compilation-start): Add the line
4524         "Compilation started" with compilation start time.
4525         (compilation-mode-font-lock-keywords): Add `started' to keywords.
4527 2005-08-11  Luc Teirlinck  <teirllm@auburn.edu>
4529         * menu-bar.el (menu-bar-options-menu): Standardize capitalization
4530         of menu items.
4532 2005-08-11  Richard M. Stallman  <rms@gnu.org>
4534         * simple.el (pop-global-mark): Reverse test of widen-automatically.
4536         * battery.el (battery-status-function): Don't use ignore-errors.
4538 2005-08-11  Lute Kamstra  <lute@gnu.org>
4540         * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
4541         define-obsolete-variable-alias.
4543 2005-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4545         * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
4546         (ange-ftp-send-cmd): Revert last change, and expand
4547         the comment explaining the problem.
4549 2005-08-10  Luc Teirlinck  <teirllm@auburn.edu>
4551         * ldefs-boot.el: Update.
4553         * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
4554         item to "Time, Load and Mail".  Change help echo text.
4556         * time.el (display-time-use-mail-icon, display-time-format)
4557         (display-time-string-forms): Shorten first line of docstrings.
4559 2005-08-10  Lars Hansen  <larsh@soem.dk>
4561         * desktop.el (desktop-buffer-mode-handlers):
4562         Make non-customizable. Add autoload cookie.  Change initial value to
4563         nil; add elements in respective modules instead.  Fix doc string.
4564         (desktop-load-file): New function.
4565         (desktop-minor-mode-handlers): New autoloaded variable.
4566         (desktop-create-buffer): Call minor mode handlers.
4567         Use desktop-load-file to load major and minor mode modules prior to
4568         checking for a handler.
4569         (desktop-save): Don't add nil to desktop-minor-modes for minor
4570         modes with nil function in desktop-minor-mode-table.  Don't delete
4571         desktop file before rewriting it.
4572         (desktop-locals-to-save): Add autoload cookie.  Don't make
4573         automatically buffer-local.  Add variables column-number-mode,
4574         size-indication-mode, indent-tabs-mode,
4575         indicate-buffer-boundaries, indicate-empty-lines and
4576         show-trailing-whitespace.
4577         (desktop-clear): Allow desktop-clear-preserve-buffers to contain
4578         regexps. Don't use desktop-clear-preserve-buffers-regexp.
4579         (desktop-clear-preserve-buffers-regexp): Delete.
4580         (desktop-clear-preserve-buffers): Update initial value and docstring.
4581         (desktop-save-buffer): Fix doc string.
4583         * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
4584         (hilit-chg-desktop-restore): New function.
4585         (highlight-changes-mode): Add highlight-changes-mode to
4586         desktop-locals-to-save.
4588         * dired.el: Add handler to desktop-buffer-mode-handlers.
4589         (dired-restore-desktop-buffer): Remove autoload cookie.
4590         (dired-mode): Add autoload cookie.
4592         * info.el: Add handler to desktop-buffer-mode-handlers.
4593         (Info-restore-desktop-buffer): Remove autoload cookie.
4594         (Info-mode): Add autoload cookie.
4596         * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
4597         (mh-restore-desktop-buffer): Remove autoload cookie.
4598         (mh-folder-mode): Add autoload cookie.
4600         * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
4601         (rmail-restore-desktop-buffer): Remove autoload cookie.
4603 2005-08-11  Masatake YAMATO  <jet@gyve.org>
4605         * hexl.el (hexl-address-region):
4606         (hexl-ascii-region, hexl-font-lock-keywords):
4607         (hexl-highlight-line-range): Use the term "region"
4608         instead of "area" for consistency with the other symbols
4609         defined in hexl.el.
4611 2005-08-09  Luc Teirlinck  <teirllm@auburn.edu>
4613         * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
4614         correct group: it is set with `menu-bar-make-mm-toggle' (pointed
4615         out by Juri Linkov).  Add `display-battery-mode'.
4617 2005-08-09  Juri Linkov  <juri@jurta.org>
4619         * progmodes/compile.el (compilation-mode-font-lock-keywords):
4620         Remove `-text' from face variable names.
4621         (compilation-error-file-name, compilation-warning-file-name)
4622         (compilation-info-file-name): Delete faces.
4623         (compilation-line-number, compilation-column-number):
4624         Remove face underlining.
4625         (compilation-message-face): Set to `underline' value by default.
4626         (compilation-error-face, compilation-warning-face)
4627         (compilation-info-face): Remove `-file-name' from face names.
4628         (compilation-error-text-face, compilation-warning-text-face)
4629         (compilation-info-text-face): Delete face variables.
4630         (compilation-text-face): Delete function.
4632         * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
4633         (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
4634         (grep-error-face): Set to `compilation-error' instead of
4635         `compilation-error-face' (which is redefined to `grep-hit-face' in
4636         grep buffers).
4637         (grep-mode-font-lock-keywords): Remove `-text' from face variable
4638         names.  Use `grep-error-face' instead of `compilation-error-text-face'.
4640         * dired-aux.el (dired-do-query-replace-regexp):
4641         Use `query-replace-read-args'.
4643         * replace.el (query-replace-read-from, query-replace-read-to)
4644         (query-replace-read-args): Rename arg `string' to `prompt'.
4646         * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
4648 2005-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
4650         * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
4651         uploading files.
4652         (ange-ftp-canonize-filename): Handle file names beginning with ~
4653         correctly.
4655 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
4657         * textmodes/fill.el (canonically-space-region)
4658         (fill-context-prefix, fill-french-nobreak-p)
4659         (fill-delete-newlines, fill-comment-paragraph)
4660         (justify-current-line): "?\ " -> "?\s".
4662 2005-08-09  Ben North  <ben@redfrontdoor.org>  (tiny change)
4664         * textmodes/fill.el (fill-nonuniform-paragraphs):
4665         Improve argument/docstring consistency.
4667 2005-08-09  Richard M. Stallman  <rms@gnu.org>
4669         * textmodes/ispell.el (ispell-word): More fboundp checks.
4671         * files.el (find-file-noselect): Don't call set-buffer-major-mode.
4672         (find-file-noselect-1): Call it here, only if RAWFILE.
4673         (normal-mode): Always set some major mode.
4674         (save-some-buffers-action-alist): Change some explanation strings.
4675         (file-name-non-special): In the `quote' method, use unwind-protect.
4677 2005-08-09  Magnus Henoch  <mange@freemail.hu>
4679         * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
4680         (ispell-have-aspell-dictionaries): New variable.
4681         (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
4682         (ispell-get-aspell-config-value): New function.
4683         (ispell-aspell-find-dictionary): New function.
4684         (ispell-aspell-add-aliases): New function.
4685         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
4686         appropriate.  Don't look for ispell dictionaries if we use aspell.
4687         (ispell-menu-map): Don't build a submenu of dictionaries.
4689 2005-08-09  Richard M. Stallman  <rms@gnu.org>
4691         * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
4692         (sql-read-passwd): Use read-passwd.
4694         * progmodes/idlw-toolbar.el (idlwave-toolbar)
4695         (idlwave-toolbar-is-possible): Add defvars.
4697         * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
4698         Avoid warnings.
4700         * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
4701         (idlwave-system-class-info, idlwave-executive-commands-alist):
4702         Use defvar.
4704         * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
4706         * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
4707         Avoid warnings.
4709         * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
4710         and content-type: headers.
4712         * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
4714         * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
4715         and rename some of them to be more self-explanatory.
4717         * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
4719         * startup.el (command-line-1): Implement -scriptload.
4721         * replace.el (occur-engine): Initial *Occur* output not undoable.
4723         * menu-bar.el (menu-bar-file-menu): Rename some menu items
4724         and improve help strings.
4726         * isearch.el (isearch-repeat): When changing direction,
4727         mark search successful.
4729         * ediff-init.el: Use (featurep 'xemacs).
4731         * comint.el (send-invisible): Identify buffer, if not selected.
4733         * align.el: Delete autoload for c-guess-basic-syntax.
4735 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
4737         * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
4738         Improve argument/docstring consistency.  Doc fixes.
4739         (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
4740         (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
4741         (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
4742         (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
4743         (r2bv-organization, r2bv-pages, r2bv-primary-author)
4744         (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
4745         (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
4746         Defvar at compile time.
4748 2005-08-09  Juri Linkov  <juri@jurta.org>
4750         * info.el: Replace `info' with upper-case `Info' where appropriate.
4751         (info-title-1, info-title-2, info-title-3, info-title-4)
4752         (info-menu-header): Move up face definitions.
4753         (info-menu-star): Rename from `info-menu-5'.
4754         (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
4755         (Info-fontify-visited-nodes): Fix docstring.
4756         (Info-hide-note-references): Fix docstring.
4757         (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
4758         menu items in the same way as on cross-references.
4759         (info-apropos): Fix sorting order and formatting to be like in the
4760         stand-alone Info browser.  Display error messages for 1 sec.
4761         (Info-mode-map): Move down `c' key binding.  Bind `^' to `Info-up'.
4762         (Info-mode-menu): Remove item for `Info-search-case-sensitively'
4763         from the menu bar.
4764         (Info-insert-dir): Restore point after calling
4765         `insert-buffer-substring'.
4767 2005-08-08  Richard M. Stallman  <rms@gnu.org>
4769         * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
4770         (recompute-lucid-menubar): Add defvars.
4772         * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
4774         * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
4776         * net/net-utils.el (run-dig): Rename from `dig'.
4778         * play/gametree.el (gametree-mode): Use make-local-variable,
4779         not make-variable-buffer-local.
4781         * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
4783         * ansi-color.el (ansi-color-make-extent)
4784         (ansi-color-set-extent-face): Use fboundp, not functionp.
4786         * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
4787         not make-variable-buffer-local.
4789         * bookmark.el (Info-current-file): Add defvar.
4790         (bookmark-jump-noselect): Use with-no-warnings.
4792         * completion.el (c-mode-map, fortran-mode-map): Add defvars.
4794         * ebuff-menu.el (Helper-return-blurb): Add defvar.
4796         * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
4798         * find-file.el (ada-procedure-start-regexp)
4799         (ada-package-start-regexp): Add defvars.
4801         * info.el (Info-insert-dir): Use insert-buffer-substring.
4803         * xml.el (xml-att-def-re): Add defvar.
4805         * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
4806         calling convention.
4808         * subr.el (while-no-input): Return t if there is input.
4810 2005-08-08  Luc Teirlinck  <teirllm@auburn.edu>
4812         * cus-start.el (all): Add `overflow-newline-into-fringe'.
4814 2005-08-08  Juanma Barranquero  <lekktu@gmail.com>
4816         * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
4817         (scheme-prev-l/c-dir/file): Fix typos in docstrings.
4819 2005-08-08  Emilio C. Lopes  <eclig@gmx.net>
4821         * cmuscheme.el (scheme-start-file): Replace reference to
4822         `user-emacs-directory' by "~/.emacs.d/".
4824 2005-08-08  Thien-Thi Nguyen  <ttn@gnu.org>
4826         * info.el (Info-dir-remove-duplicates): Avoid case folding
4827         in loop; instead, keep downcased strings for comparison.
4828         Suggested by Helmut Eller.
4830 2005-08-07  Michael Albinus  <michael.albinus@gmx.de>
4832         Sync with Tramp 2.0.50.
4834         * net/tramp.el: Remove defvar of `last-coding-system-used' in the
4835         XEmacs case; not necessary anymore.
4836         (tramp-user-regexp): Allow "@" as part of user name.
4837         (tramp-handle-set-visited-file-modtime)
4838         (tramp-handle-insert-file-contents)
4839         (tramp-handle-write-region): No special handling for
4840         `last-coding-system-used, because this is done in
4841         `tramp-accept-process-output' now.
4842         (tramp-accept-process-output): New defun.
4843         (tramp-process-one-action, tramp-process-one-multi-action)
4844         (tramp-wait-for-regexp, tramp-wait-for-output)
4845         (tramp-discard-garbage-erase-buffer): Call it.  Reported by David
4846         Howells <dhowells@redhat.com>.
4847         (clear-visited-file-modtime): Defadvice removed.  The check for
4848         unset buffer's modtime does not need to be based on
4849         `tramp-buffer-file-attributes'.  Suggested by RMS.
4850         (tramp-message): Insert "\n" if not being at beginning of line.
4851         (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
4852         sequence with same logic.
4853         (tramp-completion-handle-expand-file-name): Discard call of
4854         `tramp-drop-volume-letter'.  It is not necessary, and there have
4855         been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
4856         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
4857         (tramp-do-copy-or-rename-file-out-of-band): Transfer message
4858         should always be visible.
4859         (tramp-handle-insert-directory, tramp-setup-complete)
4860         (tramp-set-process-query-on-exit-flag)
4861         (tramp-append-tramp-buffers): Pacify byte-compiler.
4862         (tramp-bug): Delete non-existing variables from list.
4863         Apply `tramp-load-report-modules' as pre-hook.
4864         Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
4865         `shell-prompt-pattern' because of non-7bit characters.
4866         Reported by Sebastian Luque <sluque@mun.ca>.
4867         (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
4868         (tramp-match-string-list): Remove function.
4869         (tramp-wait-for-regexp): Remove call of that function.
4870         Suggested by Kim F. Storm <storm@cua.dk>.
4871         (tramp-set-auto-save-file-modes): Use octal integer code #o600
4872         instead of octal character code ?\600.  The latter resulted in a
4873         syntax error with XEmacs.
4875         * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
4876         XEmacs case; not necessary anymore.
4877         (tramp-smb-handle-write-region): No special handling for
4878         `last-coding-system-used, because this is done in
4879         `tramp-accept-process-output' now.
4880         (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
4882 2005-08-06  Luc Teirlinck  <teirllm@auburn.edu>
4884         * wid-edit.el (widget-choice-value-create):
4885         Unconditionally respect user choice.  Set :explicit-choice back to nil
4886         when no longer needed.
4887         (widget-choice-action): Unconditionally respect user choice.
4888         Eliminate :explicit-choice-value.
4890         * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
4892         * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
4893         with `indicate-empty-lines' and `indicate-buffer-boundaries'.
4894         (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
4895         running new function `toggle-indicate-empty-lines'.
4896         Rename "Customize" item to "Customize fringe".
4897         Rename "Indicators" item to "Buffer boundaries" and change help echo.
4898         (menu-bar-showhide-fringe-ind-menu): Change several help echos.
4899         Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
4900         Delete "Empty lines only" item.
4901         (menu-bar-showhide-fringe-ind-customize): New function.
4902         (menu-bar-showhide-fringe-ind-mixed)
4903         (menu-bar-showhide-fringe-ind-box)
4904         (menu-bar-showhide-fringe-ind-right)
4905         (menu-bar-showhide-fringe-ind-left)
4906         (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
4907         instead of `fringe-indicators'.
4909 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
4911         * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
4912         Change the date of last update.
4914 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
4916         * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
4917         (viper-exec-yank, viper-put-back): Don't display modification msg
4918         if in the minibuffer.
4920         * viper-init.el (viper-replace-overlay-cursor-color)
4921         (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
4922         Make variables frame local.
4924         * viper-util.el (viper-append-filter-alist): Use append instead of
4925         nconc.
4927         * viper.el (viper-vi-state-mode-list)
4928         (viper-emacs-state-mode-list): Move help-mode and
4929         completion-list-mode from the first list to the second.
4930         (viper-mode): Docstring.
4931         (viper-go-away, viper-non-hook-settings): Don't localize
4932         minor-mode-alist in newer Emacsen.  Add advice to
4933         set-cursor-color.  Don't bind "\C-c\\".
4935 2005-08-06  Emilio C. Lopes  <eclig@gmx.net>
4937         * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
4938         (scheme-macro-expand-command): New user options.
4939         (scheme-trace-procedure, scheme-expand-current-form): New commands.
4940         (scheme-form-at-point, scheme-start-file)
4941         (scheme-interactively-start-process): New functions.
4942         (scheme-get-process): New function, extracted from `scheme-proc'.
4943         (run-scheme): Call `scheme-start-file' to get start file, and pass
4944         it to `make-comint'.
4945         (switch-to-scheme, scheme-proc):
4946         Call `scheme-interactively-start-process' if no Scheme buffer/process
4947         is available.
4949 2005-08-06  Juri Linkov  <juri@jurta.org>
4951         * progmodes/compile.el (compilation-mode-font-lock-keywords):
4952         Use `compilation-text-face', `compilation-info-text-face' and
4953         `compilation-error-text-face' instead of `font-lock-keyword-face'.
4954         (compilation-error): New face.
4955         (compilation-error-file-name): Inherit from
4956         `compilation-error' instead of `font-lock-warning-face'.
4957         (compilation-warning-file-name): Inherit from
4958         `compilation-warning' instead of `font-lock-warning-face'.
4959         (compilation-info, compilation-error-file-name)
4960         (compilation-warning-file-name, compilation-info-file-name)
4961         (compilation-line-number, compilation-column-number): Doc fix.
4962         (compilation-error-text-face, compilation-warning-text-face)
4963         (compilation-info-text-face): New face variables.
4964         (compilation-line-face, compilation-column-face)
4965         (compilation-enter-directory-face)
4966         (compilation-leave-directory-face): Doc fix.
4967         (compilation-text-face): New function.
4969         * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
4970         instead of 1 to display binary file names as info file links.
4971         (grep-error-face): Use `compilation-error-face' instead of
4972         `font-lock-keyword-face'.
4973         (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
4974         and `compilation-warning-text-face' instead of
4975         `font-lock-keyword-face'.  Use `compilation-error-text-face'
4976         instead of `grep-error-face'.
4978 2005-08-05  Kenichi Handa  <handa@m17n.org>
4980         * international/code-pages.el: Add autoload cookies for all coding
4981         systems.
4983 2005-08-04  Luc Teirlinck  <teirllm@auburn.edu>
4985         * cus-start.el (all): Put undo.c where it alphabetically belongs.
4987 2005-08-04  Juri Linkov  <juri@jurta.org>
4989         * progmodes/compile.el (compilation-mode-map):
4990         * progmodes/grep.el (grep-mode-map):
4991         Bind TAB to `compilation-next-error' and [backtab] to
4992         `compilation-previous-error'.
4994         * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
4995         matching line numbers, column numbers and their ranges with regexp
4996         matching only line numbers.
4997         (grep-context-face): New face variable.
4998         (grep-mode-font-lock-keywords): Use it.
5000         * faces.el (read-face-name): Delete duplicate faces.
5002 2005-08-02  Juanma Barranquero  <lekktu@gmail.com>
5004         * thumbs.el (thumbs-find-image): Don't make variables
5005         automatically buffer local.
5006         (thumbs-current-tmp-filename, thumbs-current-image-filename)
5007         (thumbs-image-num): Make automatically buffer local.
5008         (thumbs-show-thumbs-list): Use `make-local-variable', not
5009         `make-variable-buffer-local'.
5010         (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
5012         * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
5013         (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
5014         (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
5015         (bother, bye, canyou, chatlst, continue, deathlst, describe)
5016         (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
5017         (feelings-about, foullst, found, hello, history, howareyoulst)
5018         (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
5019         (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
5020         (neglst, obj, object, owner, please, problems, qlist)
5021         (random-adjective, relation, remlst, repetitive-shortness)
5022         (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
5023         (shortlst, something, sportslst, stallmanlst, states, subj)
5024         (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
5025         (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
5026         Defvar at compile time.
5028         * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
5029         not `make-variable-buffer-local'.
5031 2005-08-02  Kim F. Storm  <storm@cua.dk>
5033         * emulation/cua-rect.el (cua--highlight-rectangle): Only show
5034         rectangle overlay in selected window.
5036 2005-08-01  Luc Teirlinck  <teirllm@auburn.edu>
5038         * cus-start.el (all): Put `indicate-empty-lines' in fringe group
5039         instead of display group.  Make `indicate-buffer-boundaries'
5040         customizable through Custom.
5042 2005-08-01  Juanma Barranquero  <lekktu@gmail.com>
5044         * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
5045         (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
5046         (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
5047         (gdb-put-string): Fix typos in docstrings.
5049 2005-08-01  Nick Roberts  <nickrob@snap.net.nz>
5051         Update copyright notices of files in progmodes directory for
5052         release of Emacs 22.1.
5054         * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
5056         * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
5057         Don't barf if the GUD buffer has been killed.
5059 2005-08-01  Kim F. Storm  <storm@cua.dk>
5061         * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
5063 2005-07-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5065         * simple.el (next-error-follow-minor-mode):
5066         make-variable-buffer-local -> make-local-variable.
5068         * emacs-lisp/cl-extra.el: Require CL also when compiling.
5070         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
5071         (byte-compile-form-make-variable-buffer-local): New functions to warn
5072         about misuses of make-variable-buffer-local where make-local-variable
5073         was meant.
5075 2005-07-29  Juanma Barranquero  <lekktu@gmail.com>
5077         * bs.el (bs-attributes-list): Doc fix.
5078         (bs): Update url-link.
5080         * desktop.el (desktop-save-buffer): Fix typos in docstring.
5081         (desktop-load-default): Simplify.
5083         * ibuffer.el (ibuffer-columnize-and-insert-list)
5084         (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
5085         (ibuffer-unmark-all, ibuffer-toggle-marks)
5086         (ibuffer-unmark-forward, ibuffer-unmark-backward)
5087         (ibuffer-compile-make-format-form, ibuffer-format-column)
5088         (ibuffer-current-buffers-with-marks)
5089         (ibuffer-update-title-and-summary): "?\ " -> "?\s".
5090         (ibuffer): Doc fix.
5091         (ibuffer-mode): Fix typo in docstring.
5092         (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
5093         with `define-obsolete-variable-alias'.
5094         (ibuffer-elide-long-columns): Mark as obsolete.  Doc fix.
5096 2005-07-29  Kenichi Handa  <handa@m17n.org>
5098         * international/mule-cmds.el (select-message-coding-system):
5099         Be sure to use LF for end-of-line.  If no coding system is decided,
5100         return iso-8859-1-unix.
5102 2005-07-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5104         * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
5105         (ange-ftp-pending-error-line): New vars.
5106         (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
5107         to handle the non-fatal no-route-to-host messages.
5108         (internal-ange-ftp-mode): Make the no-match regexp more efficient.
5110 2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
5112         * isearch.el (isearch-mode-map, isearch-other-meta-char)
5113         (isearch-quote-char, isearch-printing-char)
5114         (isearch-text-char-description): "?\ " -> "?\s".
5115         (isearch-lazy-highlight-cleanup)
5116         (isearch-lazy-highlight-initial-delay)
5117         (isearch-lazy-highlight-interval)
5118         (isearch-lazy-highlight-max-at-a-time)
5119         (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
5120         Declare with define-obsolete-*-alias macros.
5121         (isearch-forward): Fix typo in docstring.
5122         (search-invisible, search-ring-yank-pointer)
5123         (regexp-search-ring-yank-pointer): Doc fixes.
5125         * recentf.el (recentf-menu-append-commands-p): Declare with
5126         `define-obsolete-variable-alias'.
5127         (recentf-max-saved-items, recentf-menu-filter)
5128         (recentf-arrange-by-rule-subfilter): Doc fixes.
5129         (recentf-menu-append-commands-flag)
5130         (recentf-initialize-file-name-history, recentf-expand-file-name)
5131         (recentf-clear-data): Fix typos in docstrings.
5133 2005-07-28  Nick Roberts  <nickrob@snap.net.nz>
5135         * progmodes/gdb-ui.el: Smarten comments.
5136         (gdb-info-breakpoints-custom): Use nowarn when finding file.
5138 2005-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
5140         * term/apollo.el (terminal-init-apollo): New function containing
5141         all former top level forms in the file.
5142         * term/bobcat.el (terminal-init-bobcat):
5143         * term/cygwin.el (terminal-init-cygwin):
5144         * term/iris-ansi.el (terminal-init-iris-ansi):
5145         * term/linux.el (terminal-init-linux):
5146         * term/news.el (terminal-init-news):
5147         * term/rxvt.el (terminal-init-rxvt):
5148         * term/sun.el (terminal-init-sun):
5149         * term/tvi970.el (terminal-init-tvi970):
5150         * term/vt100.el (terminal-init-vt100):
5151         * term/vt102.el (terminal-init-vt102):
5152         * term/vt125.el (terminal-init-vt125):
5153         * term/vt200.el (terminal-init-vt200):
5154         * term/vt201.el (terminal-init-vt201):
5155         * term/vt220.el (terminal-init-vt220):
5156         * term/vt240.el (terminal-init-vt240):
5157         * term/vt300.el (terminal-init-vt300):
5158         * term/vt320.el (terminal-init-vt320):
5159         * term/vt400.el (terminal-init-vt400):
5160         * term/vt420.el (terminal-init-vt420):
5161         * term/wyse50.el (terminal-init-wyse50):
5162         * term/xterm.el (terminal-init-xterm): Likewise.
5164         * term/README: Describe the terminal-init-* functionality.
5166         * startup.el (command-line): After loading the terminal initialization
5167         file call the corresponding terminal initialization function.
5169 2005-07-27  Kenichi Handa  <handa@m17n.org>
5171         * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
5172         negative.
5174         * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
5175         (ps-mule-composition-prologue): Fix for the case that
5176         RelativeCompose is false.
5178 2005-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5180         * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
5182         * descr-text.el (describe-char): Handle the case where the list of
5183         chars is displayed in a separate frame.
5184         Be a bit more discriminating when looking for the char.
5186 2005-07-26  Juanma Barranquero  <lekktu@gmail.com>
5188         * bookmark.el (bookmark-automatically-show-annotations)
5189         (bookmark-read-annotation-text-func): Doc fixes.
5190         (bookmark-save): Improve argument/docstring consistency.
5191         (bookmark-get-bookmark, bookmark-get-bookmark-record)
5192         (bookmark-alist-from-buffer)
5193         (bookmark-upgrade-file-format-from-0)
5194         (bookmark-grok-file-format-version)
5195         (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
5196         (bookmark-read-annotation-mode)
5197         (bookmark-insert-current-bookmark, bookmark-jump)
5198         (bookmark-exit-hook): Fix typos in docstrings.
5199         (bookmark-exit-hooks): Define as obsolete alias.
5200         (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
5201         not `bookmark-exit-hooks'.  Fix docstring.
5202         (bookmark-bmenu-select): "?\ " -> "?\s".
5204 2005-07-25  Ari Roponen <arjuropo@cc.jyu.fi>  (tiny change)
5206         * startup.el (command-line): Fix typo.
5208 2005-07-24  Richard M. Stallman  <rms@gnu.org>
5210         * tooltip.el (tooltip-mode): Test emacs-basic-display,
5211         not emacs-quick-startup.
5213 2005-07-24  Juanma Barranquero  <lekktu@gmail.com>
5215         * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
5216         (reb-next-match, reb-show-subexp): Use `with-selected-window'
5217         instead of `reb-with-current-window'.
5218         (reb-prev-match): Likewise.  Also, don't move left if the search
5219         was unsuccessful.
5220         (reb-initialize-buffer): New function.
5221         (re-builder, reb-change-syntax): Use it.
5223         * man.el (Man-goto-page): Make second argument NOERROR optional.
5225 2005-07-23  Richard M. Stallman  <rms@gnu.org>
5227         * man.el (Man-bgproc-sentinel): Check here for failure to find
5228         any man page in the output, and report the error here.
5229         (Man-arguments): Make it permanent local.
5230         (Man-goto-page): New arg NOERROR.  Never kill the current buffer.
5231         (Man-mode): Pass t for NOERROR.
5233         * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
5234         (grep-mode-font-lock-keywords):
5235         Don't use compilation-...-face for messages that are not file names.
5237         * progmodes/compile.el (compilation-mode-font-lock-keywords):
5238         Don't use compilation-...-face for messages that are not file names.
5240 2005-07-22  Juri Linkov  <juri@jurta.org>
5242         * startup.el (normal-splash-screen): Update menu name.
5244         * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
5246 2005-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
5248         * term/xterm.el: Load term/rxvt if the terminal is actually an
5249         rxvt terminal.
5250         (xterm-rxvt-set-background-mode): Remove, not used anymore.
5252         * term/rxvt.el (function-key-map): Use substitute-key-definition
5253         to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
5255         * term/cygwin.el: New file.
5257 2005-07-22  Kim F. Storm  <storm@cua.dk>
5259         * image-file.el (insert-image-file, image-file-yank-handler):
5260         Fix last change to maintain a (unique) yank-handler on yanked images.
5262 2005-07-22  Eduardo Mu\e,Aq\e(Boz  <emufer@terra.es>  (tiny change)
5264         * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
5265         of the file size (as in "177B" for 177 bytes).  This happens with
5266         "ls -lh" on FreeBSD.
5268 2005-07-22  Juanma Barranquero  <lekktu@gmail.com>
5270         * hilit-chg.el (highlight-changes-global-initial-state)
5271         (highlight-compare-buffers, hilit-chg-turn-on-maybe)
5272         (hilit-chg-fixup, highlight-changes-mode):
5273         Fix typos in docstrings.
5274         (highlight-changes-global-modes, highlight-changes-rotate-faces):
5275         Doc fixes.
5277 2005-07-21  Luc Teirlinck  <teirllm@auburn.edu>
5279         * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
5280         mode function using `eval-after-load'.
5282 2005-07-21  Kim F. Storm  <storm@cua.dk>
5284         * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
5285         included when reporting an emacs crash, and tell about the DEBUG file.
5287         * image-file.el (insert-image-file): Add yank-handler.
5288         (image-file-yank-handler): Yank handler to make unique copies of
5289         images when they are yanked into a buffer next to each other.
5291 2005-07-21  Juanma Barranquero  <lekktu@gmail.com>
5293         * comint.el (comint-use-prompt-regexp, comint-send-input)
5294         (comint-source-default, comint-extract-string)
5295         (comint-get-source, comint-word, comint-completion)
5296         (comint-source, comint-prompt-read-only, comint-update-fence):
5297         Fix typos in docstrings.
5298         (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
5299         Declare with define-obsolete-*-alias macros.
5300         (comint-previous-matching-input-from-input)
5301         (comint-next-matching-input-from-input)
5302         (comint-previous-matching-input, comint-next-matching-input)
5303         (comint-forward-matching-input):
5304         Improve argument/docstring consistency.
5306         * desktop.el (desktop-clear-preserve-buffers-regexp):
5307         Also preserve the *server* buffer.
5309         * simple.el (clone-indirect-buffer): Doc fix.
5310         (fixup-whitespace, just-one-space)
5311         (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
5312         (next-error, next-error-highlight)
5313         (next-error-highlight-no-select, next-error-last-buffer)
5314         (next-error-buffer-p, next-error-find-buffer, next-error)
5315         (previous-error, next-error-no-select, previous-error-no-select)
5316         (open-line, split-line, minibuffer-prompt-width, kill-new)
5317         (binary-overwrite-mode): Fix typos in docstrings.
5318         (set-fill-column): Fix typo in message.
5320         * skeleton.el (skeleton-proxy-new): Doc fix.
5322         * strokes.el (strokes-load-hook): Doc fix.
5323         (strokes-grid-resolution, strokes-get-grid-position)
5324         (strokes-renormalize-to-grid, strokes-read-stroke)
5325         (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
5326         (strokes-global-map): Fix typos in docstrings.
5327         (strokes-help): Doc fix.  Fix help message and pass it through
5328         `substitute-command-keys'.
5330         * tempo.el (tempo-insert-prompt, tempo-interactive)
5331         (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
5332         (tempo-insert-string-functions, tempo-local-tags)
5333         (tempo-define-template, tempo-insert-template)
5334         (tempo-insert-prompt-compat, tempo-is-user-element)
5335         (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
5336         Fix typos in docstrings.
5338         * vcursor.el (vcursor-other-window, vcursor-bind-keys)
5339         (vcursor-key-bindings, vcursor-use-vcursor-map)
5340         (vcursor-find-window, vcursor-scroll-down)
5341         (vcursor-disable, vcursor-beginning-of-buffer)
5342         (vcursor-end-of-buffer): Fix typos in docstrings.
5343         (vcursor-relative-move, vcursor-get-char-count):
5344         Improve argument/docstring consistency.
5346         * version.el: "?\ " -> "?\s".
5348         * wid-edit.el (widget-default-create, widget-after-change)
5349         (widget-default-format-handler, widget-checklist-add-item)
5350         (widget-radio-add-item, widget-choose, widget-specify-secret)
5351         (widget-field-value-create, widget-field-value-get)
5352         (widget-editable-list-format-handler)
5353         (widget-editable-list-entry-create, widget-group-value-create)
5354         (widget-documentation-link-add)
5355         (widget-documentation-string-value-create): "?\ " -> "?\s".
5356         (widget-convert-text): Doc fix.
5357         (widget-narrow-to-field, widget-field-find)
5358         (widget-url-link-action, widget-emacs-library-link-action)
5359         (widget-color-notify): Fix typos in docstrings.
5361         * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
5362         (x-select-text, set-w32-system-coding-system)
5363         (w32-add-charset-info): Fix typos in docstrings.
5365         * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
5366         (cua-enable-cua-keys, cua-use-hyper-key)
5367         (cua-virtual-rectangle-edges): Fix typos in docstrings.
5368         (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
5370         * net/tramp.el (tramp-handle-load): Fix typo in error message.
5372         * emacs-lisp/re-builder.el (regexp-builder): Declare with
5373         `defalias' instead of faking it.
5375         * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
5376         (eshell-ls-missing, eshell-ls-dired-initial-args)
5377         (eshell-ls-use-in-dired): Fix typos in docstrings.
5379 2005-07-20  Kim F. Storm  <storm@cua.dk>
5381         * emulation/cua-base.el (cua-mode): Improve doc string.
5383 2005-07-20  Juanma Barranquero  <lekktu@gmail.com>
5385         * abbrev.el (expand-region-abbrevs): Doc fix.
5386         (inverse-add-mode-abbrev, inverse-add-global-abbrev):
5387         Improve argument/docstring consistency.
5389         * arc-mode.el (archive-get-descr, archive-alternate-display):
5390         Doc fixes.
5391         (archive-l-e): Improve argument/docstring consistency.
5392         (archive-tmpdir, archive-unixdate, archive-unixtime)
5393         (archive-chmod-entry): Fix typos in docstrings.
5394         (archive-unflag, archive-unflag-backwards)
5395         (archive-unmark-all-files): "?\ " -> "?\s".
5397         * buff-menu.el (Buffer-menu-unmark): Doc fix.
5398         (Buffer-menu-not-modified, Buffer-menu-execute)
5399         (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
5400         (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
5402         * composite.el (compose-string, encode-composition-rule)
5403         (compose-last-chars): Fix typos in docstrings.
5405         * desktop.el (desktop-enable, desktop-basefilename):
5406         Declare with `define-obsolete-variable-alias'.
5407         (desktop-internal-v2s): Don't quote keywords.
5408         (desktop-clear): "?\ " -> "?\s".
5410         * dired.el (dired-align-file, dired-flag-backup-files)
5411         (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
5412         (dired-listing-switches, dired-ls-F-marks-symlinks)
5413         (dired-dwim-target, dired-load-hook, dired-mode-hook)
5414         (dired-directory, dired-faces, dired, dired-revert)
5415         (dired-mode, dired-summary, dired-view-file)
5416         (dired-copy-filename-as-kill, dired-delete-file)
5417         (dired-no-confirm, dired-unmark-all-marks)
5418         (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
5419         (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
5420         (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
5421         Fix typos in message strings.
5423         * dired-x.el (virtual-dired): Declare with `defalias'.
5424         (dired-mark-unmarked-files, dired-local-variables-file)
5425         (dired-omit-here-always): Doc fix.
5426         (dired-omit-mode, dired-find-subdir)
5427         (dired-enable-local-variables, dired-clean-up-buffers-too)
5428         (dired-extra-startup, dired-mark-extension, dired-jump)
5429         (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
5430         (dired-smart-shell-command, dired-guess-shell-alist-user)
5431         (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
5432         (dired-x-bind-find-file, dired-x-submit-report):
5433         Fix typos in docstrings.
5434         (dired-mark-unmarked-files): "?\ " -> "?\s".
5436         * dirtrack.el (dirtrack-list): Fix typos in docstring.
5438         * faces.el (describe-face): "?\ " -> "?\s".
5439         (read-all-face-attributes, read-face-font, modify-face)
5440         (face-attr-construct, italic): Fix typos in docstrings.
5441         (frame-update-face-colors): Declare with
5442         `define-obsolete-function-alias'.
5444         * files.el (find-file-noselect, recode-file-name): Doc fixes.
5445         (insert-directory, kill-some-buffers): "?\ " -> "?\s".
5446         (magic-mode-alist, buffer-file-numbers-unique)
5447         (write-file-functions, get-free-disk-space):
5448         Fix typos in docstrings.
5449         (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
5450         (write-contents-hooks, write-file-hooks):
5451         Declare with `define-obsolete-variable-alias'.
5453         * forms-d2.el (arch-rj): Fix typo in docstrings.
5454         (arch-tocol): Likewise.  "?\ " -> "?\s".
5456         * frame.el (set-frame-font, cursor-in-non-selected-windows):
5457         Fix typo in docstring.
5458         (set-screen-width, set-screen-height): Delete redundant info in
5459         doctrings.
5460         (new-frame, screen-height, screen-width): Declare with
5461         `define-obsolete-function-alias'.
5462         (delete-frame-hook, blink-cursor): Declare with
5463         `define-obsolete-variable-alias'.
5465         * paths.el (prune-directory-list): Fix typos in docstring.
5467         * pcvs-util.el (cvs-flags-query, cvs-strings->string)
5468         (cvs-prefix-get): Fix typos in docstrings.
5470         * ps-print.el (ps-extend-face-list, ps-extend-face)
5471         (ps-print-background-image): Fix typos in docstrings.
5472         (ps-default-fg, ps-default-bg): Doc fixes.
5474         * s-region.el (s-region-bind): Doc fix.
5475         (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
5477         * textmodes/org.el (org-table-formula-substitute-names)
5478         (org-table-get-vertical-vector): Doc fixes.
5479         (org-table-recalculate): Remove unused argument to `message'.
5481 2005-07-19  Carsten Dominik  <dominik@science.uva.nl>
5483         * textmodes/org.el (org-table-column-names)
5484         (org-table-column-name-regexp)
5485         (org-table-named-field-locations): New variables.
5486         (org-archive-subtree): Protect `this-command' when calling
5487         `org-copy-subtree' and `org-cut-subtree', to avoid appending to
5488         the kill buffer.
5489         (org-complete): Remove fixed-formula completion.
5490         (org-edit-formulas-map): New variable.
5491         (org-table-edit-formulas): New command.
5492         (org-finish-edit-formulas, org-abort-edit-formulas)
5493         (org-show-variable, org-table-get-vertical-vector): New functions.
5494         (org-table-maybe-eval-formula): Handle `:=' fields.
5495         (org-table-get-stored-formulas, org-table-store-formulas)
5496         (org-table-get-formula, org-table-modify-formulas)
5497         (org-table-replace-in-formulas): Handle named field formulas.
5498         (org-table-get-specials): Store locations of named fields.
5500 2005-07-19  Juri Linkov  <juri@jurta.org>
5502         * progmodes/grep.el (grep-regexp-alist)
5503         (grep-mode-font-lock-keywords, grep-process-setup):
5504         Use default GNU grep match color "01;31m" instead of "01;41m".
5505         (grep-regexp-alist, grep-mode-font-lock-keywords):
5506         Use `\\[[0-9]*m' instead of `\\[00m'.
5507         (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
5508         sgr_start where its handling is more important.  Use the real
5509         length of sgr_start instead of constant 8.
5510         (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
5511         specially.  Delete all remaining escape sequences.
5512         (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
5513         (grep-regexp-alist): Make hyperlink only for binary file name
5514         instead of the whole line.
5515         (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
5516         (grep-mode): Add autoload.
5518         * emacs-lisp/find-func.el (find-function-regexp):
5519         Add `define-compilation-mode'.
5521 2005-07-19  Juri Linkov  <juri@jurta.org>
5523         * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
5524         (compare-windows-sync-string-size, compare-windows-recenter)
5525         (compare-windows-highlight, compare-windows): Add version 22.1.
5526         (compare-windows) <defface>: Inherit from lazy-highlight instead
5527         of duplicating its default value.
5529         * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
5530         (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
5532         * descr-text.el (describe-char): Create link buttons for `charset'
5533         and `code point'.  Add the current input method name with a link
5534         button to `to input' field.  Print face names of display table
5535         characters in `The display table entry is displayed by' section
5536         instead of printing face-id in the `display' field.
5537         Guess hardcoded faces and create a link button for them.
5538         Skip empty fields when calculating max-width.
5539         Treat `widget-create' specially while inserting strings from the
5540         collected field list.
5541         (describe-char-after): Made obsolete in version 22.1, not 21.5.
5543         * diff-mode.el (diff-file-header): Change foreground color from
5544         yellow to green on light backgrounds.
5545         (diff-context): Inherit from `shadow' only for color/grayscale
5546         with more than 88 colors.
5547         (diff-indicator-removed, diff-indicator-added)
5548         (diff-indicator-changed): New faces.
5549         (diff-font-lock-keywords): Use new faces.  Regroup rules.
5550         Add "^---$" for `normal' diff format.  Fontify `#' lines with
5551         font-lock-comment-delimiter-face and font-lock-comment-face.
5552         Add `#' to ^[^...] in the rule for `diff-context-face'.
5554         * faces.el (mode-line-highlight): Replace RoyalBlue4 with
5555         a button-like box.  Inherit from `highlight' on low colors.
5556         (shadow): Use shades of gray only for color/grayscale with
5557         more than 88 colors.  Use green for light backgrounds with
5558         8 colors, and yellow for dark backgrounds with 8 colors.
5560         * font-lock.el (font-lock-regexp-grouping-backslash):
5561         Don't inherit from escape-glyph (use bold for all cases).
5563         * info.el (info-xref-visited): Use light foreground color `violet'
5564         for dark backgrounds instead of dark color `magenta3'.
5565         (info-title-1): Use `yellow' color for dark backgrounds.
5567         * isearch.el (isearch): Use not-too-dark magenta3 instead of
5568         too-light magenta2.
5570         * replace.el (match): Use slightly more light RoyalBlue3 instead
5571         of dark RoyalBlue4.
5573         * wid-edit.el (widget-inactive): Inherit from `shadow'.
5575 2005-07-19  Juanma Barranquero  <lekktu@gmail.com>
5577         * novice.el (disabled-command-hook): Declare it with
5578         `define-obsolete-variable-alias'.
5580         * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
5581         (desktop-buffer-misc-functions, desktop-buffer-handlers)
5582         (desktop-load-default): Add release to obsolescence info.
5583         (desktop-globals-to-clear, desktop-buffer-mode-handlers)
5584         (desktop-append-buffer-args, desktop-read):
5585         Fix typos in docstrings.
5586         (desktop-kill): Fix typo in message.
5587         (desktop-save): Doc fix.
5589 2005-07-19  Michael Kifer  <kifer@cs.stonybrook.edu>
5591         * viper-cmd.el (viper-escape-to-state): Bug fix.
5592         (viper-envelop-ESC-key): Change the definition of fast
5593         keysequence so it'll work with keyboard macros.
5595         * ediff.el (ediff-patch-buffer): Change the docstring.
5597 2005-07-19  Kenichi Handa  <handa@m17n.org>
5599         * international/mule-cmds.el (select-safe-coding-system): Try to
5600         use an auto-coding (if any) before anything else.  If the found
5601         auto-coding is invalid, show a warning message.
5603         * international/mule.el (find-auto-coding): New function created
5604         by modifying the body of set-auto-coding.
5605         (set-auto-coding): Use find-auto-coding to find a coding.
5607 2005-07-18  Richard M. Stallman  <rms@gnu.org>
5609         * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
5610         not isearch-mode-end-hook-error.
5611         (allout-before-change-protect): Fix error message.
5613 2005-07-18  Juri Linkov  <juri@jurta.org>
5615         * allout.el (allout-mode):
5616         * calculator.el (calculator-copy):
5617         * custom.el (custom-known-themes):
5618         * dired.el (dired-desktop-buffer-misc-data)
5619         (dired-restore-desktop-buffer):
5620         * dired-x.el (dired-omit-marker-char):
5621         * files.el (basic-save-buffer):
5622         * font-core.el (font-lock-mode):
5623         * calendar/calendar.el (calendar-goto-hebrew-date)
5624         (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
5625         (calendar-goto-persian-date):
5626         * language/ethio-util.el (ethio-sera-to-fidel-region):
5627         * textmodes/picture.el (picture-mode):
5628         Delete duplicate duplicate words.
5630 2005-07-18  Juri Linkov  <juri@jurta.org>
5632         * isearch.el (isearch-mode-map): Remove key bindings for regexp
5633         chars * ? } |.
5634         (isearch-fallback): Don't call `isearch-process-search-char'.
5635         (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
5636         (isearch-process-search-char): Call `isearch-fallback' for regexp
5637         chars * ? } |.
5638         (isearch-return-char): Make obsolete with `make-obsolete' instead
5639         of simply documenting it as obsolete in the docstring.
5640         (isearch-fallback): Refill docstring.
5642         * international/isearch-x.el
5643         (isearch-process-search-multibyte-characters): Remove unneeded
5644         `concat'.  Add intermediate values to `junk-hist' instead of
5645         `minibuffer-history'.  Test the length of `str'.
5647 2005-07-18  Juanma Barranquero  <lekktu@gmail.com>
5649         * allout.el (allout-resolve-xref): Fix typos in error strings.
5650         (allout-before-change-protect): Remove unneeded `concat'.
5652         * array.el (array-mode, array-reconfigure-rows)
5653         (untabify-backward): Fix typos in docstrings.
5654         (array-reconfigure-rows): Use `insert-buffer-substring', not
5655         `insert-buffer'.
5657         * calendar/icalendar.el (icalendar--get-unfolded-buffer):
5658         * progmodes/ada-mode.el (ada-make-body):
5659         Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
5661         * dired.el (dired-log):
5662         * tar-mode.el (tar-subfile-save-buffer):
5663         * play/zone.el (zone-pgm-stress-destress):
5664         Use `insert-buffer-substring', not `insert-buffer'.
5666 2005-07-17  Simon Josefsson  <jas@extundo.com>
5668         * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
5670 2005-07-16  Jose E. Marchesi  <jemarch@gnu.org>
5672         * lisp/mail/smtpmail.el (smtpmail-auth-supported):
5673         Add plain auth method.
5674         (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
5676 2005-07-17  Kim F. Storm  <storm@cua.dk>
5678         * ido.el (dired-other-window): Add ido property.
5680 2005-07-16  Juanma Barranquero  <lekktu@gmail.com>
5682         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
5683         Fix typo in docstring.
5684         (byte-compile-interactive-only-functions): Add `insert-buffer' and
5685         `insert-file-literally'.
5687         * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
5688         info and delete redundant message.  Doc fix.
5689         (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
5690         (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
5692 2005-07-16  Richard M. Stallman  <rms@gnu.org>
5694         * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
5695         (byte-compile-and): Use byte-compile-and-recursion.
5696         (byte-compile-or-recursion): New function.
5697         (byte-compile-or): Use that.
5698         (byte-compile-if): Guard the else-clause too.
5699         (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
5701         * isearch.el (isearch-mode-end-hook-quit): New variable.
5702         (isearch-done): Bind it.
5703         (isearch-mode-end-hook): Doc fix.
5705         * allout.el (allout-isearch-did-quit): Variable deleted.
5706         (allout-real-isearch-abort): Function name no longer used.
5707         (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
5708         (allout-isearch-rectification): isearch-mode always exists.
5709         Don't set allout-isearch-did-quit.
5710         (allout-isearch-expose): Check isearch-mode-end-hook-error, not
5711         allout-isearch-did-quit.
5712         (allout-enwrap-isearch): Just add the hook.
5713         (allout-isearch-abort): Function deleted.
5714         (allout-pre-command-business): Avoid warning.
5716         * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
5717         Correctly avoid warnings.
5718         (pascal-outline): Likewise.
5720         * progmodes/f90.el (f90-abbrev-start): Avoid warning.
5722         * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
5724         * play/tetris.el (tetris-mode): Avoid warning.
5726         * play/snake.el (snake-mode): Avoid warning.
5728         * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
5729         (gamegrid-set-display-table): Avoid warning.
5730         (gamegrid-set-timer): Likewise.
5731         (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
5732         (gamegrid-add-score-with-update-game-score-1): Take FILE
5733         as argument.
5734         (gamegrid-add-score-with-update-game-score): Pass that argument.
5735         Rename have-shared-game-dir to gamegrid-shared-game-dir.
5737         * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
5739         * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
5740         (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
5742         * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
5743         and insert-file.
5745         * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
5746         (sc-ask): Avoid warnings.
5748         * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
5749         (eshell-hist-initialize): Use that var the natural way.
5751         * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
5753         * emacs-lisp/re-builder.el (reb-cook-regexp):
5754         Avoid warning calling lre-compile-string.
5755         (reb-color-display-p): Avoid warning.
5757         * calculator.el (calculator-last-input): Guard uses
5758         of event-key and key-press-event-p.
5759         (event-key, key-press-event-p): Delete definitions.
5761         * emacs-lisp/find-gc.el (find-gc-unsafe-list)
5762         (find-gc-source-directory, find-gc-subrs-callers)
5763         (find-gc-noreturn-list, find-gc-source-files)
5764         (find-gc-subrs-called): Vars renamed and defvar'd.
5766         * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
5767         (checkdoc-overlay-put, checkdoc-delete-overlay)
5768         (checkdoc-overlay-start, checkdoc-overlay-end)
5769         (checkdoc-mode-line-update, checkdoc-char=):
5770         Define such that compiler knows they are defined.
5771         (checkdoc-call-eval-buffer): Delete.  Use eval-buffer directly.
5772         (checkdoc-read-event): Delete.  Use read-event directly.
5774         * whitespace.el (whitespace-make-overlay)
5775         (whitespace-overlay-put, whitespace-delete-overlay)
5776         (whitespace-overlay-start, whitespace-overlay-end):
5777         Define such that compiler knows they are defined.
5778         (whitespace): Move conditional inside.
5780         * tempo.el (tempo-insert-template): Suppress warning.
5782         * ediff-diff.el (longlines-mode): Add defvar.
5784 2005-07-16  Gary Howell  <g1howell-list@yahoo.com>  (tiny change)
5786         * server.el: Bind "C-x #" in a way that works even if C-x is
5787         redefined to a command key, not a prefix key.
5789 2005-07-16  Johan Bockgard  <bojohan@users.sourceforge.net>  (tiny change)
5791         * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
5792         cl-make-type-test till execution time.
5794 2005-07-16  Markus Rost  <rost@math.uni-bielefeld.de>
5796         * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
5797         arg ARG and use it.
5799 2005-07-16  Johan Bockgard  <bojohan@users.sourceforge.net>  (tiny change)
5801         * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
5803 2005-07-15  Luc Teirlinck  <teirllm@auburn.edu>
5805         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
5806         a defcustom with two :set or :type keywords.
5808 2005-07-15  Richard M. Stallman  <rms@gnu.org>
5810         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
5811         Don't give ^M comment-end syntax.
5813 2005-07-16  Nick Roberts  <nickrob@snap.net.nz>
5815         * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
5816         Don't consider gdbmi (gdb-mi.el has its own update functions).
5817         (gdb-var-delete): Make it work for gdbmi as well.
5818         (gdb-speedbar-expand-node): Move var-update here for gdbmi.
5820         * progmodes/gud.el (etags, sdb): Only require etags when needed.
5821         (gud-speedbar-menu-items): Correct logic for enabling items.
5823 2005-07-15  Kim F. Storm  <storm@cua.dk>
5825         * ido.el: Fix commentary.
5826         (ido-define-mode-map): Move ido-next-work-file to C-M-o.
5827         Use with-no-warnings around ffap-guesser.
5828         (ido-file-internal, ido-read-file-name, ido-read-directory-name):
5829         Let bind minibuffer-completing-file-name to t.
5831 2005-07-15  Juanma Barranquero  <lekktu@gmail.com>
5833         * startup.el (site-run-file, keyboard-type): Doc fixes.
5834         (command-line): Check for "--basic-display" argument; also for
5835         "--quick", not "--bare-bones" (which was renamed).
5836         (fancy-splash-text): Add missing item "Getting New Versions".
5837         (normal-splash-screen): Fix typos and improve consistency with
5838         `fancy-splash-text'.  Update copyright year.
5840         * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
5841         valid binding for `help-char'.
5843         * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
5845 2005-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
5847         * term.el (term-mode): Disable cua-mode for term buffers.
5849 2005-07-14  Juanma Barranquero  <lekktu@gmail.com>
5851         * add-log.el (add-log-mailing-address, change-log-merge):
5852         Doc fixes.
5853         (change-log-get-method-definition): Fix typo in docstring.
5855 2005-07-14  Kim F. Storm  <storm@cua.dk>
5857         * emulation/cua-base.el:
5858         (cua--pre-command-handler-1, cua--pre-command-handler)
5859         (cua--post-command-handler-1, cua--post-command-handler):
5860         Split in two.  Check (buffer local) value of cua-mode.
5861         (cua-selection-mode): New command.
5863 2005-07-13  Luc Teirlinck  <teirllm@auburn.edu>
5865         * custom.el (custom-initialize-safe-set)
5866         (custom-initialize-safe-default): Doc fixes.
5868         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
5869         and simplify :init-value again.
5871         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
5872         and simplify :init-value again.  Delete autoload.
5874         * startup.el (command-line): Use `custom-reevaluate-setting' again
5875         for tooltip-mode.
5877         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
5878         a defcustom with two :initialize keywords.
5880 2005-07-13  Juanma Barranquero  <lekktu@gmail.com>
5882         * allout.el (my-mark-marker, allout-isearch-prior-pos)
5883         (allout-unprotected, allout-undo-aggregation, allout-snug-back)
5884         (allout-post-command-business, allout-flag-region)
5885         (isearch-reenable-font-lock, allout-yank)
5886         (allout-insert-latex-header, allout-insert-latex-trailer)
5887         (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
5888         (allout-latex-verb-quote): Fix typos in docstrings.
5889         (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
5890         (allout-unprotected, allout-prefix-data):
5891         Improve argument/docstring consistency.
5892         (allout-chart-subtree): Fix argument spec.
5893         (allout-open-topic): Rename `use_sib_bullet' argument to
5894         `use-sib-bullet'.  Doc fix.
5896         * whitespace.el (whitespace-check-buffer-leading)
5897         (whitespace-check-buffer-trailing)
5898         (whitespace-check-buffer-indent)
5899         (whitespace-check-buffer-spacetab)
5900         (whitespace-check-buffer-ateol, whitespace-highlighted-space)
5901         (whitespace-check-leading-whitespace)
5902         (whitespace-check-trailing-whitespace)
5903         (whitespace-check-spacetab-whitespace)
5904         (whitespace-check-indent-whitespace)
5905         (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
5906         (whitespace-modes): Fix typos in docstrings.
5907         (defgroup, defcustom): Doc fixes.
5909         * winner.el (winner-mode, winner-boring-buffers)
5910         (winner-pending-undo-ring): Doc fixes.
5911         (winner-ring): Remove unneeded `progn'.
5912         (winner-equal): `defsubst' it.
5913         (winner-redo): Fix message.
5915 2005-07-13  Kim F. Storm  <storm@cua.dk>
5917         * simple.el (line-move-1): Always use vertical-motion to
5918         do the last (or only) line move to ensure some movement.
5919         Undo 2005-06-23 change--don't check for overlays.
5921 2005-07-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5923         * term/mac-win.el (ccl-encode-mac-roman-font)
5924         (ccl-encode-mac-centraleurroman-font)
5925         (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
5926         (ccl-encode-mac-dingbats-font): Remove check for ASCII.
5927         Change charset-id boundary of dimension to ?\xef.
5928         (mac-char-fontspec-list): New constant.
5929         (fontset-add-mac-fonts): Use it.  Accept non-string `base-family'
5930         argument.  Nil uses itself as family in font-spec.  Previous
5931         behavior for nil is now provided by non-nil non-string argument.
5932         All callers changed.  Add font-specs for Mac fonts to
5933         "fontset-default" unless iso8859-1 fonts are installed.
5935 2005-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5937         * progmodes/sh-script.el (sh-get-indent-info): Only indent
5938         a continuation line if the \ is preceded by SPC or TAB.
5939         (sh-get-indent-info): Simplify.
5940         (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
5941         Use with-current-buffer.
5943         * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
5944         when the matched text is empty.
5946 2005-07-12  Luc Teirlinck  <teirllm@auburn.edu>
5948         * startup.el (command-line): Revert to previous handling of
5949         tooltip-mode.  Explain in comment why the complexity is needed.
5951         * tooltip.el (tooltip-mode): Revert to previous implementation of
5952         its defcustom.
5954         * frame.el (blink-cursor-mode): Revert to previous implementation
5955         of its defcustom.  Update comment.
5957 2005-07-12  Lars Hansen  <larsh@soem.dk>
5959         * desktop.el: Update e-mail address.
5961 2005-07-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5963         * term/mac-win.el (mac-services-mail-selection)
5964         (mac-services-mail-to): New functions.
5965         (mac-application-menu-map): Bind them.
5967 2005-07-12  wulei <milton@wulei.net>  (tiny change)
5969         * progmodes/gdb-ui.el: Add note about buffering with Windows.
5971 2005-07-11  Luc Teirlinck  <teirllm@auburn.edu>
5973         * custom.el (custom-reevaluate-setting): Doc fix.
5975 2005-07-11  Jay Belanger  <belanger@truman.edu>
5977         * calc/calc.el (calc-embedded-announce-formula-alist)
5978         (calc-embedded-open-close-plain-alist)
5979         (calc-embedded-open-close-mode-alist): Add checks for additional
5980         major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
5982 2005-07-11  Juanma Barranquero  <lekktu@gmail.com>
5984         * custom.el (custom-enable-theme): Don't add theme to
5985         `custom-enabled-themes' with `push' because there is no
5986         setf-method for `delq'.
5988 2005-07-11  Richard M. Stallman  <rms@gnu.org>
5990         * custom.el (custom-declare-variable): Doc fix.
5992         * dired-aux.el (dired-compare-directories): Remove "." and ".."
5993         from the alists.
5995         * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
5996         Do nothing if edebug-active.
5998         * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
5999         (edebug-display): Do it here instead.
6001 2005-07-10  Richard M. Stallman  <rms@gnu.org>
6003         * cus-face.el (custom-theme-set-faces): Make it work.
6004         (custom-reset-faces): Doc fix.
6005         (custom-theme-reset-internal-face, custom-theme-face-value):
6006         Functions deleted.
6008         * custom.el (custom-push-theme): Maintain list of the settings
6009         of a given theme in its theme-settings property.
6010         Maintain position of old settings in the theme-value
6011         or theme-face property.
6012         (custom-enabled-themes): New variable.
6013         (custom-theme-enabled-p): New function.
6014         (provide-theme): Update custom-enabled-themes.
6015         Disable and reenable the `user' theme.
6016         (require-theme): Doc fix.
6017         (custom-do-theme-reset, custom-remove-theme): Functions deleted.
6018         (custom-theme-value, custom-theme-variable-value): Likewise.
6019         (custom-theme-reset-internal): Likewise.
6020         (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
6021         (custom-enable-theme, custom-disable-theme): New functions.
6022         (custom-variable-theme-value, custom-face-theme-value): Likewise.
6023         (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
6024         (custom-theme-reset-variables): Simplify.
6025         (deftheme, custom-declare-theme, custom-make-theme-feature):
6026         Definitions moved.
6028 2005-07-10  Chong Yidong  <cyd@stupidchicken.com>
6030         * longlines.el (longlines-show-region)
6031         (longlines-unshow-hard-newlines): Recognize hard newlines by
6032         non-nil hard property, instead of t.
6034 2005-07-10  Michael Kifer  <kifer@cs.stonybrook.edu>
6036         * viper-cmd.el (viper--key-maps): New variable.
6037         (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
6038         emulation-mode-map-alists.
6039         (viper-envelop-ESC-key): Use viper-subseq.
6040         (viper-search-forward/backward/next): Disable debug-on-error.
6042         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
6043         (viper-ESC-key): New defcustoms.
6045         * viper-macs.el (ex-map-read-args): Use viper-subseq.
6047         * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
6048         (viper-subseq): Copy of subseq from cl.el.
6050         * viper.el (viper-go-away, viper-set-hooks): Use
6051         emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
6053         * viper-mous.el (viper-current-frame-saved): Use defvar.
6055         * viper-init.el: Get rid of -face in face names.
6057         * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
6058         Make it work with longlines mode
6060         * ediff-mult.el (ediff-meta-mode-hook): New variable.
6062         * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
6064         * ediff-init.el: Get rid of -face in face names.
6066 2005-07-10  Richard M. Stallman  <rms@gnu.org>
6068         * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
6069         and with-timeout-unsuspend.
6071         * emacs-lisp/debug.el (debug): Call with-timeout-suspend
6072         and with-timeout-unsuspend.
6074         * emacs-lisp/timer.el (with-timeout-timers): New variable.
6075         (with-timeout): Bind that variable to record timers.
6076         (with-timeout-suspend, with-timeout-unsuspend): New functions.
6078         * emacs-lisp/debug.el (debug-help-follow): New function.
6079         (debugger-mode-map): Use that instead of help-follow.
6080         (debugger-setup-buffer): Use eval-buffer-list
6081         to handle eval-buffer frames.
6083 2005-07-10  N. Raghavendra  <raghu@mri.ernet.in>  (tiny change)
6085         * timezone.el (timezone-parse-date): Change first regexp
6086         so it will not mistakenly match dates with no time zone.
6088 2005-07-10  Jeff Dwork  <jeff.dwork@amd.com>  (tiny change)
6090         * facemenu.el (facemenu-read-color): Do case-insensitive matching.
6092 2005-07-10  Luc Teirlinck  <teirllm@auburn.edu>
6094         * custom.el (custom-initialize-safe-set)
6095         (custom-initialize-safe-default): New functions.
6097         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
6098         and simplify :init-value.
6100         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
6101         and simplify :init-value.  Delete obsolete comment.
6103         * startup.el (command-line): Use `custom-reevaluate-setting' to
6104         handle `tooltip-mode'.  Delete obsolete comment.
6106         * files.el (set-visited-file-name): Avoid calling
6107         `file-name-nondirectory' with a nil argument.
6109 2005-07-09  Richard M. Stallman  <rms@gnu.org>
6111         * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
6112         was called with nil for the buffer, handle the read position right.
6113         Handle read position for eval-region, too.
6115 2005-07-09  Juri Linkov  <juri@jurta.org>
6117         * fringe.el (fringe-mode): Add period in docstring.
6118         (fringe-query-style): Build prompt depending on `all-frames' arg.
6120         * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
6121         to not create links to unrelated functions in the Help buffer.
6123         * progmodes/compile.el (compilation-mode-hook, compilation-mode):
6124         Doc fix.
6126         * simple.el (next-error-hook): New variable.
6127         (next-error): Use it.  Doc fix.
6129         * textmodes/ispell.el (ispell-command-loop): Add current
6130         dictionary name and program name to mode-line-format.
6131         (ispell-region, ispell-process-line): Add current dictionary name
6132         and program name to messages.
6134 2005-07-08  Jay Belanger  <belanger@truman.edu>
6136         * calc/calc.el (calc-embedded-announce-formula-alist)
6137         (calc-embedded-open-close-formula-alist)
6138         (calc-embedded-open-close-word-alist)
6139         (calc-embedded-open-close-plain-alist)
6140         (calc-embedded-open-close-new-formula-alist)
6141         (calc-embedded-open-close-mode-alist)
6142         (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
6143         (calc-embedded-mode-hook): New variables.
6145         * calc/calc-embed.el (calc-embedded-firsttime)
6146         (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
6147         New variables.
6148         (calc-do-embedded): Use calc-embedded-firsttime,
6149         calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
6150         determine whether or not to run hooks.
6151         (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
6152         calc-embedded-firsttime-formula appropriately.
6153         Set calc-embedded delimiter variables according to mode.
6155 2005-07-08  Richard M. Stallman  <rms@gnu.org>
6157         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
6158         Check for "emacs", etc., as entire symbol, not just as word.
6159         (checkdoc-file-comments-engine): Use regexp-quote on FN.
6161         * files.el (set-visited-file-name): Report the error
6162         for "empty filename" earlier.
6163         (kill-some-buffers): Ignore buffers already dead.
6165         * fringe.el (fringe-mode): Doc fix.
6167         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
6168         Check for (featurep 'xemacs) and turn off warnings in what it guards.
6169         Use unwind-protect to ensure byte-compile-unresolved-functions
6170         is updated.
6172         * whitespace.el (whitespace-buffer-leading-cleanup):
6173         Simplify w/ skip-chars-forward.
6174         (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
6176         * mail/rmail.el (rmail-only-expunge): Fix paren error.
6177         Unconditionally try to leave point at the same old place.
6179 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>  (tiny change)
6181         * comint.el (comint-postoutput-scroll-to-bottom)
6182         (comint-show-maximum-output): Take scroll-margin into consideration.
6184 2005-07-08  Kim F. Storm  <storm@cua.dk>
6186         * ido.el (ido-use-filename-at-point): New choice `guess'.
6187         (ido-file-internal): Try ffap-guesser if selected.
6189         * ido.el (ido-before-fallback-functions): New hook.
6190         (ido-buffer-internal, ido-file-internal, ido-read-buffer)
6191         (ido-read-file-name): Run it.
6193 2005-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6195         * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
6196         strings rather than a list of symbols to the completion function.
6198 2005-07-07  Jay Belanger  <belanger@truman.edu>
6200         * calc/calc-units.el (math-apply-units): Change the places in
6201         which units are simplified.
6203 2005-07-07  Luc Teirlinck  <teirllm@auburn.edu>
6205         * cus-edit.el (customize-option, customize-option-other-window):
6206         Make them handle aliases.
6208         * custom.el (custom-variable-p): Make it recursively follow
6209         aliases.  Mention that in the docstring.
6211 2005-07-07  Richard M. Stallman  <rms@gnu.org>
6213         * cus-start.el (exec-path): Use `directory' instead of `file'.
6214         Fix tag for nil.
6216 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
6218         * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
6219         when called non-interactively.  Doc fix.
6221 2005-07-07  Lute Kamstra  <lute@gnu.org>
6223         * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
6224         new address as well.
6226 2005-07-07  Kenichi Handa  <handa@m17n.org>
6228         * international/mule.el (make-coding-system):
6229         Describe `ascii-incompatible' property in the docstring.
6230         (set-file-name-coding-system): Signal an error if coding-system is
6231         ascii-incompatible.
6232         (set-keyboard-coding-system): Likewise.
6234         * international/mule-cmds.el (set-default-coding-systems):
6235         Don't set default-file-name-coding-system and
6236         default-keyboard-coding-system if coding-system is ASCII-incompatible.
6238         * international/utf-16.el: Declare that all UTF-16-based coding
6239         systems are ASCII-incompatible.
6241 2005-07-07  Nick Roberts  <nickrob@snap.net.nz>
6243         * progmodes/gud.el: Require font-lock for displaying errors.
6244         Used by gdb-ui.el.
6246 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
6248         * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
6249         values for the pattern lists which are `read'able but not
6250         `append'able (like symbols).
6252 2005-07-06  Richard M. Stallman  <rms@gnu.org>
6254         * progmodes/flymake.el (flymake-float-time): Instead of
6255         with-no-warnings, test for xemacs.
6256         (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
6257         to avoid warning.
6259 2005-07-06  Juanma Barranquero  <lekktu@gmail.com>
6261         * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
6263 2005-07-05  Lute Kamstra  <lute@gnu.org>
6265         * battery.el: Add support for Darwin (with much debugging help
6266         from Samuel Lauber <sam124@operamail.com>).
6267         (battery-status-function, battery-echo-area-format)
6268         (battery-mode-line-format): Add support for pmset on Darwin.
6269         (battery-load-low, battery-load-critical): New user options.
6270         (battery-pmset): New function.
6272 2005-07-05  Lute Kamstra  <lute@gnu.org>
6274         Update FSF's address in GPL notices.
6276         * textmodes/page-ext.el: Update FSF's address.
6278 2005-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6280         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
6281         filling from using prefix when filling a single-line docstring.
6283         * progmodes/flymake.el: Remove useless eval-when-compile.
6285         * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
6287 2005-07-04  Richard M. Stallman  <rms@gnu.org>
6289         * textmodes/org.el (org-file-apps-defaults-gnu):
6290         Rename from org-file-apps-defaults-linux.
6291         (org-default-apps): Don't test system-type for `linux'.
6292         (org-file-apps): Doc fix.
6294 2005-07-04  David Ponce  <david@dponce.com>
6296         * tree-widget.el: Improve header Commentary section.
6297         (tree-widget) [defgroup]
6298         (tree-widget-image-enable, tree-widget-themes-directory)
6299         (tree-widget-theme, tree-widget-image-properties-emacs)
6300         (tree-widget-image-properties-xemacs, tree-widget-create-image)
6301         (tree-widget-image-formats, tree-widget-control)
6302         (tree-widget-empty-control, tree-widget-leaf-control
6303         (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
6304         (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
6305         (tree-widget-keep, tree-widget-after-toggle-functions)
6306         (tree-widget-open-node, tree-widget-close-node): Doc fix.
6307         (tree-widget-open-control, tree-widget-close-control): Fix doc and
6308         :help-echo message.
6309         (tree-widget-set-theme): Doc fix.  Use `string-equal'.
6310         (tree-widget-image-properties): Doc fix.  Clearer implementation.
6311         (tree-widget--cursors): New constant.
6312         (tree-widget-lookup-image): New function split from
6313         `tree-widget-find-image'.  Clearer implementation.
6314         (tree-widget-find-image): Use it.
6315         (tree-widget-button-keymap): Use `set-keymap-parent'.
6316         (tree-widget) [define-widget]: Use `widget-children-value-delete'.
6317         Define the sub-widgets here.
6318         (tree-widget-node): Check that :node is not a tree-widget.
6319         (tree-widget-get-super, tree-widget-open-control)
6320         (tree-widget-close-control, tree-widget-empty-control)
6321         (tree-widget-leaf-control, tree-widget-guide)
6322         (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
6323         (tree-widget-no-handle, tree-widget-value-delete)
6324         (tree-widget-map): Remove.
6325         (tree-widget-children-value-save): Doc fix.  Simplified.
6326         (tree-widget-value-create): Update according to previous changes.
6328 2005-07-04  Carsten Dominik  <dominik@science.uva.nl>
6330         * textmodes/org.el: Leading space replaced by TABS.
6331         (org-recalc-marks, org-table-rotate-recalc-marks)
6332         (org-table-get-specials): Treat "^" and "_" marks.
6333         (org-table-justify-field-maybe): Optional argument NEW.
6334         (org-table-eval-formula): Parsing of the format simplified.
6335         New modes C,I.  Honor the %= parameter in the current table.
6336         Avoid unnecessary re-align by using the NEW argument to
6337         `org-table-justify-field-maybe'.
6338         (org-calc-default-modes): Default for date-format mimicks org-mode.
6339         (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
6341 2005-07-03  Luc Teirlinck  <teirllm@auburn.edu>
6343         * cus-face.el (custom-theme-set-faces): Make it handle face
6344         aliases whose alias declarations are pre- or autoloaded.
6346 2005-07-04  Juri Linkov  <juri@jurta.org>
6348         * faces.el (read-face-name): Put the code for getting a face name
6349         from the buffer before adding the faces from the `face' property.
6350         Use `completing-read-multiple' instead of `completing-read'.
6351         Require `crm'.  Add default value and post-process the returned
6352         list of faces.
6354         * emacs-lisp/crm.el (crm-find-current-element)
6355         (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
6357         * emacs-lisp/lisp-mode.el (eval-defun-1):
6358         * emacs-lisp/edebug.el (edebug-eval-defun):
6359         Remove unnecessary quotes.
6361 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
6363         * progmodes/prolog.el (prolog-eof-string): Doc fixes.
6364         (prolog-indent-level): Fix typo in docstring.
6366         * info.el (Info-history, Info-history-forward)
6367         (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
6369         * add-log.el (add-change-log-entry):
6370         * comint.el (comint-dynamic-list-input-ring)
6371         (comint-dynamic-list-completions):
6372         * dabbrev.el (dabbrev-expand):
6373         * delim-col.el (delimit-columns-rectangle-line):
6374         * diff-mode.el (diff-context->unified, diff-reverse-direction)
6375         (diff-unified->context):
6376         * ediff-init.el (ediff-abbrev-jobname):
6377         * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
6378         (ediff-replace-session-activity-marker-in-meta-buffer):
6379         * info.el (Info-summary):
6380         * lpr.el (printify-region):
6381         * printing.el (pr-create-interface):
6382         * ps-print.el (ps-print-quote):
6383         * ses.el (ses-column-widths, ses-print-cell)
6384         (ses-adjust-print-width, ses-center):
6385         * shell.el (shell-file-name-quote-list):
6386         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
6387         (strokes-fill-current-buffer-with-whitespace)
6388         (strokes-xpm-for-stroke, strokes-list-strokes)
6389         (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
6390         * term.el (term-dynamic-list-input-ring)
6391         (term-dynamic-list-completions):
6392         * calc/calc.el (math-format-stack-value):
6393         * emacs-lisp/edebug.el (edebug-display-freq-count):
6394         * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
6395         (delphi-new-comment-line):
6396         * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
6397         * progmodes/executable.el (executable-set-magic):
6398         * progmodes/python.el (inferior-python-mode):
6399         * progmodes/scheme.el (scheme-mode-syntax-table):
6400         * progmodes/sh-script.el (sh-maybe-here-document):
6401         * progmodes/sql.el (sql-copy-column):
6402         * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
6403         * textmodes/bibtex.el (bibtex-mode):
6404         * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
6405         (sgml-auto-attributes):
6406         * textmodes/table.el (table-insert, table-shorten-cell)
6407         (table--generate-source-scan-lines, table-delete-row)
6408         (*table--cell-delete-char, table--spacify-frame)
6409         (table--horizontally-shift-above-and-below)
6410         (table--cell-insert-char, table--cell-blank-str)
6411         (table--fill-region-strictly):
6412         * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
6413         * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
6415         * add-log.el (change-log):
6416         * apropos.el (apropos):
6417         * comint.el (comint-completion, comint-source):
6418         * dabbrev.el (dabbrev):
6419         * delim-col.el (columns):
6420         * diff-mode.el (diff-mode):
6421         * ediff.el (ediff):
6422         * ediff-diff.el (ediff-diff):
6423         * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
6424         * ediff-mult.el (ediff-mult):
6425         * ediff-ptch.el (ediff-ptch):
6426         * ediff-wind.el (ediff-window):
6427         * facemenu.el (facemenu):
6428         * indent.el (indent):
6429         * info.el (info):
6430         * jka-cmpr-hook.el (compression, jka-compr):
6431         * lpr.el (lpr):
6432         * outline.el (outlines):
6433         * pcmpl-cvs.el (pcmpl-cvs):
6434         * pcmpl-rpm.el (pcmpl-rpm):
6435         * printing.el (printing):
6436         * ps-print.el (postscript, ps-print, ps-print-horizontal)
6437         (ps-print-vertical, ps-print-headers, ps-print-font)
6438         (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
6439         (ps-print-background, ps-print-printer, ps-print-page)
6440         (ps-print-miscellany):
6441         * ses.el (ses):
6442         * shell.el (shell, shell-directories, shell-faces):
6443         * startup.el (initialization):
6444         * strokes.el (strokes):
6445         * term.el (term):
6446         * uniquify.el (uniquify):
6447         * w32-vars.el (w32):
6448         * calc/calc.el (calc):
6449         * emacs-lisp/bytecomp.el (bytecomp):
6450         * emacs-lisp/cl-indent.el (lisp-indent):
6451         * emacs-lisp/edebug.el (edebug):
6452         * emacs-lisp/elp.el (elp):
6453         * emacs-lisp/testcover.el (testcover):
6454         * emacs-lisp/trace.el (trace):
6455         * emulation/viper-ex.el (viper-ex):
6456         * emulation/viper-mous.el (viper-mouse):
6457         * mail/mailalias.el (mailalias):
6458         * mail/supercite.el (supercite, supercite-frames)
6459         (supercite-attr, supercite-cite, supercite-hooks):
6460         * net/rcompile.el (remote-compile):
6461         * net/rlogin.el (rlogin):
6462         * obsolete/ooutline.el (outlines):
6463         * progmodes/delphi.el (delphi):
6464         * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
6465         (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
6466         (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
6467         (ebnf-optimization):
6468         * progmodes/etags.el (etags):
6469         * progmodes/executable.el (executable):
6470         * progmodes/idlwave.el (idlwave):
6471         * progmodes/pascal.el (pascal):
6472         * progmodes/prolog.el (prolog):
6473         * progmodes/python.el (python):
6474         * progmodes/scheme.el (scheme):
6475         * progmodes/sh-script.el (sh, sh-script):
6476         * progmodes/sql.el (SQL):
6477         * progmodes/tcl.el (tcl):
6478         * textmodes/bibtex.el (bibtex, bibtex-autokey):
6479         * textmodes/enriched.el (enriched):
6480         * textmodes/makeinfo.el (makeinfo):
6481         * textmodes/sgml-mode.el (sgml):
6482         * textmodes/table.el (table-hooks):
6483         * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
6484         * textmodes/texinfo.el (texinfo):
6485         * textmodes/two-column.el (two-column):
6486         Finish `defgroup' description with period.
6488         * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
6489         * eshell/esh-var.el (eshell-var):
6490         * progmodes/vhdl-mode.el (vhdl-testbench):
6491         * textmodes/org.el (org): Fix typos in docstrings.
6493         * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
6494         consistency.
6496         * progmodes/flymake.el (flymake-find-file): Remove.
6497         (flymake-float-time): Use `with-no-warnings'.
6498         (flymake-check-start-time, flymake-check-was-interrupted)
6499         (flymake-err-info, flymake-is-running, flymake-last-change-time)
6500         (flymake-new-err-info): `defvar' at compile time.
6502 2005-07-03  Juanma Barranquero  <lekktu@gmail.com>
6504         * replace.el (occur-hook): Doc fix.
6505         (occur-1): Don't call `occur-hook' if there are no matches.
6507 2005-07-03  Richard M. Stallman  <rms@gnu.org>
6509         * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
6510         global-map, save the same map.
6511         (global-map): Don't alter it at top level.
6512         (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
6513         Then alter it here instead.
6514         (tpu-edt-off): Set global-map to the saved one.
6516         * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
6517         All references simplified.
6518         (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p.  Uses changed.
6519         (zmacs-regions): Add defvar.
6520         (repeat-complex-command-map): Everything about that deleted.
6522         * textmodes/artist.el (artist-key-is-drawing)
6523         (artist-key-endpoint1, artist-key-poly-point-list)
6524         (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
6525         (artist-key-compl-table, artist-rb-save-data)
6526         (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
6527         Don't put them in eval-when-compile.
6528         (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
6530         * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
6531         Use with-no-warnings.
6533         * net/browse-url.el (dos-windows-version): Add defvar.
6535         * mail/supercite.el (filladapt-prefix-table): Add defvar.
6537         * mail/rmailsum.el (rmail-summary-redo): Add defvar.
6538         (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
6539         (rmail-new-summary-line-count): Rename from new-summary-line-count.
6540         Add defvar.
6541         (rmail-summary-beginning-of-message): Use with-no-warnings.
6542         (rmail-summary-first-message, rmail-summary-last-message): Likewise.
6544         * emulation/vip.el (vip-replace-string, ex-map, ex-read):
6545         Use with-no-warnings.
6547         * emulation/vi.el (vi-mark-region): Use c-mark-function.
6548         (c-mark-function): Add point-moving-unit property.
6549         (vi-goto-line): Use with-no-warnings.
6551         * emulation/edt.el (edt-last-copied-word): Add defvar.
6552         (zmacs-region-stays): Likewise.
6553         (edt-mark-section-wisely): Use c-mark-function for C.
6554         Use makr-defun for Fortran.
6555         (time-string): defvar deleted.
6556         (edt-display-the-time): Don't set time-string.
6558         * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
6560         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
6561         Don't warn when name is not constant
6562         or for defining the group `emacs'.
6564         * tooltip.el (gud-tooltip-mode): Add defvar.
6566         * startup.el (default-frame-background-mode): Add defvar.
6568         * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
6570         * info.el (tool-bar-map): Add defvar.
6572         * dired.el (dnd-protocol-alist): Add defvar.
6574         * dired-aux.el (dired-query): Display question with answer, when
6575         the user answers.
6577         * custom.el (custom-add-option): Doc fix.
6579         * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
6581 2005-07-03  Eli Zaretskii  <eliz@gnu.org>
6583         * font-lock.el (font-lock-regexp-grouping-construct): Fix the
6584         bogus name from the last change.
6586 2005-07-02  Luc Teirlinck  <teirllm@auburn.edu>
6588         * custom.el (custom-declare-variable): Fix typos in comment.
6589         (custom-known-themes): Doc fix.
6590         (custom-theme-directory): New defcustom.
6591         (require-theme): Make it check `custom-theme-directory'.
6593         * cus-theme.el (custom-new-theme-mode): New function.
6594         (custom-theme-name, custom-theme-variables, custom-theme-faces)
6595         (custom-theme-description): Add compiler defvars.
6596         (customize-create-theme): Add doc to the "*New Custom Theme*"
6597         buffer.  Use `custom-new-theme-mode'.
6598         (custom-theme-write): Put the created buffer in emacs-lisp-mode
6599         and save it to the `custom-theme-directory'.  Make this the
6600         default directory of the buffer.
6602 2005-07-02  David Hunter  <hunterd_42@comcast.net>  (tiny change)
6604         * progmodes/flymake.el (flymake-mode, flymake-mode-off):
6605         Fix unbalanced parentheses.
6607 2005-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6609         * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
6610         into flymake-mode and delegate to flymake-mode.
6612         * find-file.el (ff-which-function-are-we-in): Clean up.
6614 2005-07-02  Juanma Barranquero  <lekktu@gmail.com>
6616         * replace.el (occur-rename-buffer): Fix docstring.
6618         * emulation/edt.el (*EDT-keys*, edt-default-global-map)
6619         (edt-last-copied-word, edt-learn-macro-count)
6620         (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
6621         (edt-rect-start-point, edt-user-global-map, rect-start-point)
6622         (time-string, zmacs-region-stays):
6623         * emulation/edt-mapper.el (edt-save-function-key-map)
6624         (EDT-key-name): `defvar' to silence the byte-compiler.
6626 2005-07-02  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
6628         * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
6629         font-lock-regexp-backslash.  Doc fix.
6630         (font-lock-regexp-backslash-grouping-construct): Rename from
6631         font-lock-regexp-backslash-construct.  Doc fix.
6632         (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
6633         grouping constructs.
6635 2005-07-02  Eli Zaretskii  <eliz@gnu.org>
6637         * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
6638         updating all the prerequisites.
6640 2005-07-01  Juanma Barranquero  <lekktu@gmail.com>
6642         * textmodes/org.el (org-agenda-start-on-weekday)
6643         (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
6644         (org-agenda-use-time-grid, org-archive-location)
6645         (org-allow-space-in-links, org-usenet-links-prefer-google)
6646         (org-enable-table-editor, org-export-default-language)
6647         (org-export-html-show-new-buffer, org-fill-paragraph)
6648         (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
6649         (org-goto-quit, org-occur, org-eval-in-calendar)
6650         (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
6651         (org-agenda-diary-entry, org-remember-help)
6652         (org-table-convert-region, org-at-table-p)
6653         (org-table-move-row-down, org-table-move-row-up)
6654         (org-table-copy-region, org-table-toggle-vline-visibility)
6655         (org-table-get-stored-formulas, org-table-get-specials)
6656         (org-recalc-commands, org-table-eval-formula)
6657         (org-table-formula-substitute-names, orgtbl-make-binding)
6658         (org-format-org-table-html, org-format-table-table-html)
6659         (org-format-table-table-html-using-table-generate-source)
6660         (org-customize): Fix typos in docstrings.
6661         (org-level-2, org-at-timestamp-p, org-agenda-day-view)
6662         (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
6663         (org-back-to-heading): Doc fixes.
6664         (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
6665         (org-agenda-change-all-lines, org-get-header):
6666         Improve argument/docstring consistency.
6667         (orgtbl-error): Fix error message.
6669         * progmodes/flymake.el (flymake-find-possible-master-files)
6670         (flymake-master-file-compare, flymake-get-line-err-count)
6671         (flymake-highlight-line, flymake-gui-warnings-enabled):
6672         Fix typos in docstrings.
6673         (flymake-parse-line, flymake-get-project-include-dirs-function)
6674         (flymake-get-prev-err-line-no, flymake-goto-prev-error):
6675         Doc fixes.
6676         (flymake-get-project-include-dirs-function)
6677         (flymake-make-err-menu-data):
6678         Improve argument/docstring consistency.
6680 2005-07-01  Lute Kamstra  <lute@gnu.org>
6682         * battery.el (battery-linux-proc-apm): Fix typo in docstring.
6683         Catch errors with ignore-errors.  Use temporary buffer.
6684         (battery-linux-proc-acpi): Fix typo in docstring.  Document `%r'.
6686         * facemenu.el (facemenu-unlisted-faces): Delete foreground and
6687         background color faces.
6688         (facemenu-set-foreground, facemenu-set-background):
6689         Use facemenu-set-face-from-menu.
6690         (facemenu-set-face-from-menu): Treat face names that start with
6691         "fg:" or "bg:" as special.
6692         (facemenu-add-new-color): Don't create faces.  Simplify.
6694 2005-06-30  Richard M. Stallman  <rms@gnu.org>
6696         * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
6697         (crm-find-current-element): Likewise.
6699 2005-06-30  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
6701         * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
6703 2005-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6705         * arc-mode.el (archive-extract): Make it work as a mouse binding.
6706         (archive-mouse-extract): Make it an obsolete alias.
6707         (archive-mode-map): Don't use archive-mouse-extract any more.
6708         (archive-mode, archive-extract): write-contents-hooks ->
6709         write-contents-functions.
6710         (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
6711         first arg.
6712         (archive-rename-entry): Update the call.
6713         (archive-zip-summarize): Remove unused var `method'.
6714         (archive-lzh-summarize): Remove unused var `creator'.
6716         * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
6717         dedicated frame upon exit.
6719         * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
6720         (archive-zip-extract, archive-zip-expunge)
6721         (archive-zip-update, archive-zip-update-case): Use executable-find.
6722         (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
6723         Use restore-buffer-modified-p.
6724         (archive-extract, archive-add-new-member, archive-write-file-member):
6725         Use with-current-buffer.
6726         (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
6728 2005-06-30  Andreas Schwab  <schwab@suse.de>
6730         * progmodes/gud.el (gud-filter): Remove unneeded progn.
6732 2005-06-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
6734         * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
6736 2005-06-30  Juri Linkov  <juri@jurta.org>
6738         * faces.el (vertical-border): Inherit from mode-line-inactive
6739         only on tty.
6741 2005-06-30  Juanma Barranquero  <lekktu@gmail.com>
6743         * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
6744         example, -NLINES in the `occur' docstring).
6746         * replace.el (occur-1): When no matches are found, do not set the
6747         `buffer-read-only' and modified flags for the occur buffer,
6748         because it is deleted.
6750         * emulation/cua-base.el (cua-check-pending-input)
6751         (cua-repeat-replace-region, cua-mode, cua-debug)
6752         (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
6753         Fix typos in docstrings.
6755         * emulation/cua-gmrk.el (cua-toggle-global-mark)
6756         (cua-cut-region-to-global-mark)
6757         (cua--cut-rectangle-to-global-mark):
6758         Remove period from end of messages.
6760         * emulation/cua-rect.el (cua-do-rectangle-padding):
6761         Remove period from end of messages.
6762         (cua--rectangle-seq-format): Fix typo in docstring.
6763         (cua-sequence-rectangle, cua-fill-char-rectangle):
6764         Improve argument/docstring consistency.
6766 2005-06-29  Juri Linkov  <juri@jurta.org>
6768         * faces.el (default-frame-background-mode): New internal variable.
6769         (frame-set-background-mode): Use it.
6771         * startup.el (normal-top-level): Set default-frame-background-mode
6772         instead of frame-background-mode.  Before setting it, test for its
6773         nil value.  Remove tests for frame-background-mode and frame
6774         parameter `reverse'.  Add test for "unspecified-fg".
6776         * term/xterm.el (xterm-rxvt-set-background-mode):
6777         * term/rxvt.el (rxvt-set-background-mode):
6778         Set default-frame-background-mode instead of frame-background-mode.
6780 2005-06-29  Juanma Barranquero  <lekktu@gmail.com>
6782         * simple.el (set-variable): Warn about obsolete user variables.
6784         * imenu.el (imenu--completion-buffer):
6785         * mouse.el (mouse-buffer-menu-alist):
6786         * msb.el (msb-invisible-buffer-p):
6787         * calendar/diary-lib.el (diary-header-line-format):
6788         * emacs-lisp/pp.el (pp-buffer):
6789         * progmodes/cperl-mode.el (cperl-do-auto-fill):
6790         * textmodes/picture.el (picture-replace-match):
6791         Change space constants followed by a sexp to "?\s ".
6793         * play/decipher.el (decipher-loop-with-breaks):
6794         * textmodes/texinfo.el (texinfo-insert-@item): Change space
6795         constants "protected" from end of line by a comment to "?\s".
6797 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6799         * font-lock.el (save-buffer-state): Use `declare'.
6801         * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
6802         reset the syntax-table to cperl-mode-syntax-table.
6803         (cperl-mode): Make _ into word-syntax during font-locking so "print" in
6804         "foo_print_bar" is not matched as a reserved keyword.
6806 2005-06-29  Carsten Dominik  <dominik@science.uva.nl>
6808         * textmodes/org.el (orgtbl-setup): New function, for delayed
6809         setup for the orgtbl commands.
6810         (org-calc-default-modes): New option.
6811         (orgtbl-make-binding): Use `defun' to get better help display.
6812         (org-diary): Call `org-compile-prefix-format'.
6813         (org-table-formula-substitute-names): New function.
6814         (org-agenda-day-view, org-agenda-week-view): New commands.
6815         (org-agenda-toggle-week-view): Command removed.
6816         (org-tbl-menu): Split off from org-org-menu.
6817         (org-mode): Move removal of outline-mode menus to here.
6818         (org-table-formula-debug): New option.
6819         (org-table-insert-row): Keep first field if just "#" or "*".
6820         (org-mode): Paragraph regexps fixed.
6821         (org-table-recalculate-regexp): New constant.
6822         (org-table-justify-field-maybe): Avoid replace if not necessary.
6823         (org-copy-special, org-cut-special): Use `call-interactively'.
6824         (org-table-copy-region): Take region from `interactive' call.
6825         (org-trim): Return string even if no match.
6826         (org-formula): New face.
6827         (org-set-font-lock-defaults): No longer highlight "FIXME".
6828         But highlight formula-related fields in table.
6829         (org-table-p): Use regexp, not fontification.
6830         (org-table-align): Handle white space at end of line.
6831         (org-table-formula-evaluate-inline): New option.
6832         (org-mode): Auto-wrapping in comment lines turned off.
6833         (org-table-copy-down): Evaluate only in copied field, not in
6834         destination.
6835         (org-table-current-formula): Variable removed.
6836         (org-table-store-formulas, org-table-get-stored-formulas)
6837         (org-table-modify-formulas, org-table-replace-in-formulas)
6838         (org-table-maybe-eval-formula): New functions.
6839         (org-table-get-formula): Modify to use stored formulas.
6840         (org-table-insert-column, org-table-delete-column)
6841         (org-table-move-column): Call `org-table-modify-formulas'.
6842         (org-complete): Add completion for keyword formulas.
6843         (orgtbl-mode): Pull orgtbl-mode-map to start of
6844         minor-mode-map-alist.
6846 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6848         * progmodes/python.el (python-check): Require `compile' before
6849         modifying its variables.
6851         * newcomment.el (comment-indent-default): Don't get fooled by an early
6852         end of buffer.
6854 2005-06-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6856         * ps-print.el (ps-print-version): Fix version number.
6858 2005-06-28  Luc Teirlinck  <teirllm@auburn.edu>
6860         * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
6862 2005-06-28  Richard M. Stallman  <rms@gnu.org>
6864         * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
6865         (flyspell-local-mouse-map): Declaration deleted.
6866         (flyspell-mouse-map): Bind only mouse-2.
6867         (flyspell-mode-map): Don't test flyspell-use-local-map.
6868         (flyspell-overlay-keymap-property-name): Var deleted.
6869         (flyspell-mode-on): Don't make local bindings for
6870         flyspell-mouse-map and flyspell-mode-map.
6871         (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
6873         * textmodes/ispell.el (ispell-word): Do not ignore short words.
6875         * progmodes/compile.el (compilation-next-error-function):
6876         Don't switch buffers; operate on the current buffer.
6878         * progmodes/compile.el (compilation-error-file-name)
6879         (compilation-warning-file-name, compilation-info-file-name)
6880         (compilation-line-number, compilation-column-number): New faces.
6881         (compilation-error-face, compilation-warning-face)
6882         (compilation-info-face, compilation-line-face)
6883         (compilation-column-face): Use them.
6885         * facemenu.el (facemenu-add-face): Warn when font-lock is active.
6887         * comint.el (comint-password-prompt-regexp): Accept ", try again".
6889         * bindings.el (global-map): Bind insertchar and its variants.
6891 2005-06-27  Richard M. Stallman  <rms@gnu.org>
6893         * textmodes/artist.el (artist-text-overwrite)
6894         (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
6896 2005-06-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6898         * ps-print.el: It was not working the page selection for printing.
6899         Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
6900         (ps-print-version): New version 6.6.7.
6901         (ps-end-sheet): New fun.
6902         (ps-header-sheet, ps-end-job): Call it.
6904 2005-06-27  Luc Teirlinck  <teirllm@auburn.edu>
6906         * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
6908 2005-06-27  Lute Kamstra  <lute@gnu.org>
6910         * facemenu.el (facemenu-unlisted-faces): Add foreground and
6911         background color faces.
6912         (facemenu-get-face): Delete function.
6913         (facemenu-set-face-from-menu): Don't call facemenu-get-face.
6914         (facemenu-add-new-color): Make second argument mandatory.
6915         Create the appropriate face and return it.  Simplify.
6916         (facemenu-set-foreground, facemenu-set-background): Don't check if
6917         color is defined.  Use return value of facemenu-add-new-color.
6919 2005-06-26  Nick Roberts  <nickrob@snap.net.nz>
6921         * progmodes/gud.el (gud-filter): Add missing argument to
6922         with-selected-window.
6924 2005-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6926         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
6927         a :require to the defcustom.
6929         * emacs-lisp/autoload.el (make-autoload): Add the :setter for
6930         defcustoms corresponding to minor modes.
6932 2005-06-26  David Ponce  <david@dponce.com>
6934         * recentf.el: Require tree-widget instead of wid-edit.
6935         (recentf-filename-handler): Fix widget :type.
6936         (recentf-cancel-dialog, recentf-open-more-files)
6937         (recentf-open-files-action): Doc fix.
6938         (recentf-dialog-goto-first): New function.
6939         (recentf-dialog-mode-map): Set parent keymap first.
6940         (recentf-dialog-mode): Define with define-derived-mode.
6941         Don't display continuation lines in dialogs.
6942         (recentf-edit-list): Rename from recentf-edit-selected-items.
6943         (recentf-edit-list-select): Rename from recentf-edit-list-action.
6944         Simplify.
6945         (recentf-edit-list-validate): New function.
6946         (recentf-edit-list): Update accordingly.
6947         (recentf-open-files-item-shift): Remove.
6948         (recentf-open-files-item): Convert menu elements into tree and
6949         link widgets.  Don't create the widgets.
6950         (recentf-open-files): Update accordingly.
6951         (recentf-save-list): Untabify.
6953 2005-06-25  Luc Teirlinck  <teirllm@auburn.edu>
6955         * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
6956         (keep-lines): Add INTERACTIVE arg.  Never delete lines only
6957         partially contained in the active region.  Do not take active
6958         region into account when called from Lisp, unless INTERACTIVE arg
6959         is non-nil.  Use `forward-line' instead of `beginning-of-line' to
6960         avoid trouble with fields.  Make marker point nowhere when no
6961         longer used.  Always return nil.  Doc fix.
6962         (flush-lines): Add INTERACTIVE arg.  Do not take active region
6963         into account when called from Lisp, unless INTERACTIVE arg is
6964         non-nil.  Use `forward-line' instead of `beginning-of-line' to
6965         avoid trouble with fields.  Make marker point nowhere when no
6966         longer used.  Always return nil.  Doc fix.
6967         (how-many): Add INTERACTIVE arg.  Make RSTART and REND args
6968         interchangeable.  Do not take active region into account when
6969         called from Lisp, unless INTERACTIVE arg is non-nil.  Do not print
6970         message in echo area when called from Lisp, unless INTERACTIVE arg
6971         is non-nil.  Avoid saying "1 occurrences".  Do not use markers.
6972         Return the number of matches.  Doc fix.
6973         (occur): Doc fix.
6974         (perform-replace): Make comment follow double space convention for
6975         the sake of `outline-minor-mode'.
6977         * faces.el (facep): Doc fix.
6979 2005-06-25  Richard M. Stallman  <rms@gnu.org>
6981         * facemenu.el (facemenu-enable-faces-p): New function.
6982         (facemenu-background-menu, facemenu-foreground-menu)
6983         (facemenu-face-menu): Add menu-enable property.
6985         * jka-compr.el (jka-compr-insert-file-contents):
6986         Special handling if cannot find the uncompression program.
6988         * cus-face.el (custom-face-attributes): Add autoload.
6990         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6991         Bind comment-indent-function locally.
6993         * window.el (save-selected-window): Use save-current-buffer.
6995         * subr.el (with-selected-window): Use save-current-buffer.
6997         * progmodes/gud.el (gud-filter): Simplify using with-selected-window
6998         and with-current-buffer.
7000 2005-06-24  Richard M. Stallman  <rms@gnu.org>
7002         * simple.el (line-move-1): Fix previous change.
7004 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
7006         * replace.el (occur-1): Set `buffer-read-only' and the
7007         buffer-modified flag before running `occur-hook' to protect
7008         against unintentional buffer switches that can lead to data loss.
7010 2005-06-24  Nick Roberts  <nickrob@snap.net.nz>
7012         * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
7013         (gud-gdb-marker-filter): Use font-lock-warning-face for any
7014         initial error.
7016         * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
7017         after fresh input.
7018         (gdb-var-create-handler): Put name of expression in quotes.
7020 2005-06-23  Luc Teirlinck  <teirllm@auburn.edu>
7022         * emacs-lisp/ring.el (ring-elements): Make it return a list of the
7023         elements of RING in order, and without bogus nil elements.
7025 2005-06-23  Richard M. Stallman  <rms@gnu.org>
7027         * simple.el (set-variable): Args renamed; doc fix.
7028         (line-move-1): When there are overlays around, use vertical-motion.
7030         * faces.el (escape-glyph): Use brown against light background.
7031         (nobreak-space): Rename from no-break-space.
7032         Fix previous change.
7034         * dired-aux.el (dired-do-copy): Fix arg prompt.
7036         * mail/sendmail.el (mail-setup-with-from): Fix custom type.
7038 2005-06-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
7040         * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
7041         rather than "Distributor".
7043 2005-06-23  Lute Kamstra  <lute@gnu.org>
7045         * emacs-lisp/debug.el (debugger-special-form-p): New defun.
7046         (debug-on-entry): Use it.  New interactive declaration that uses
7047         function-called-at-point.
7049 2005-06-23  Kim F. Storm  <storm@cua.dk>
7051         * subr.el (save-match-data): Add comment about using evaporate arg
7052         to set-match-data.
7054 2005-06-22  Glenn Morris  <gmorris@ast.cam.ac.uk>
7056         * cus-edit.el (customize-face)
7057         (customize-face-other-window): Handle face aliases.
7059         * faces.el (face-documentation, set-face-attribute)
7060         (face-spec-set): Handle face aliases.
7062 2005-06-22  Juanma Barranquero  <lekktu@gmail.com>
7064         * help-mode.el (help-make-xrefs): If a symbol representing a face
7065         name is not followed by the word "face", it could still be a
7066         function or variable name, so don't bypass other checks.
7068 2005-06-22  Juri Linkov  <juri@jurta.org>
7070         * ps-print.el (ps-face-foreground-name, ps-face-background-name):
7071         Replace aliased functions with calls where second arg `inherit' is t.
7073 2005-06-22  Nick Roberts  <nickrob@snap.net.nz>
7075         * progmodes/gdb-ui.el (gdb-error): New variable.
7076         (gdb-error): New function.
7077         (gdb-annotation-rules): Act on error-begin and error annotations.
7078         (gdb-concat-output): Use font-lock-warning-face for errors.
7080 2005-06-22  Miles Bader  <miles@gnu.org>
7082         * bindings.el (propertized-buffer-identification): Use renamed
7083         `Buffer-menu-buffer' face.
7085         * faces.el (vertical-border): Rename from `vertical-divider'.
7086         (escape-glyph): Change dark-background color back to `cyan'.
7088 2005-06-21  Juri Linkov  <juri@jurta.org>
7090         * faces.el (face-user-default-spec): Try getting `customized-face'
7091         prior to `saved-face'.
7092         (frame-background-mode): Refill docstring.
7094         * emacs-lisp/lisp-mode.el (eval-defun-1):
7095         * emacs-lisp/edebug.el (edebug-eval-defun):
7096         Set `saved-face' temporarily to nil before calling form.
7097         Set `customized-face' to the new spec after that.
7099 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
7101         * subr.el (1value, lambda, key-substitution-in-progress):
7102         Doc fixes.
7104         * autoinsert.el (auto-insert-alist):
7105         * ses.el (ses-call-printer):
7106         * subr.el (noreturn):
7107         * emacs-lisp/lisp.el (check-parens):
7108         * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
7109         * net/browse-url.el (browse-url-mosaic):
7110         * progmodes/cc-defs.el (c-safe-scan-lists):
7111         * progmodes/ebnf-abn.el (ebnf-abn-lex):
7112         * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
7113         * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
7114         * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
7115         * progmodes/ebnf-iso.el (ebnf-iso-lex):
7116         * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
7118 2005-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7120         * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
7122 2005-06-21  Glenn Morris  <gmorris@ast.cam.ac.uk>
7124         * calendar/appt.el (appt-make-list): Activate the package, if
7125         not already active (for backwards compatibility).
7127 2005-06-20  Kim F. Storm  <storm@cua.dk>
7129         * subr.el (add-to-ordered-list): Test membership with eq.  Simplify.
7131 2005-06-20  Miles Bader  <miles@gnu.org>
7133         * faces.el (vertical-divider): New face.
7135 2005-06-20  Juanma Barranquero  <lekktu@gmail.com>
7137         * simple.el (kill-whole-line): Doc fix.
7138         (next-error-buffer-p, next-error-find-buffer)
7139         (clone-indirect-buffer): Fix typos in docstrings.
7140         (comment-line-break-function): Doc fix: don't say variable
7141         is automatically buffer-local (it isn't).
7143 2005-06-19  Michael Albinus  <michael.albinus@gmx.de>
7145         * net/tramp-ftp.el (top):
7146         * net/tramp-smb.el (top):
7147         * net/tramp-util.el (top):
7148         * net/tramp-uu.el (top):
7149         * net/tramp-vc.el (top):
7150         * net/tramp.el (top): Revert copyright years back to original
7151         ones.  Tramp has a life outside GNU Emacs.
7153 2005-06-19  Nick Roberts  <nickrob@snap.net.nz>
7155         * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
7157 2005-06-18  Juri Linkov  <juri@jurta.org>
7159         * progmodes/grep.el (grep-regexp-alist): Use backreference at the
7160         end of first regexp to limit the match to the position between
7161         line number and source line with same separator character as used
7162         between file name and line number.  In the second regexp limit
7163         mouse-face area to file name and line number by adding new group
7164         for them and referring it in HYPERLINK arg.
7165         (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
7166         (grep-mode): Set font-lock-lines-before to 0 to not refontify the
7167         previous line where grep markers may be already removed.
7169 2005-06-18  Peter Kleiweg  <p.c.j.kleiweg@rug.nl>
7171         * progmodes/ps-mode.el: Update version and maintainer's email address.
7173 2005-06-18  Steve Youngs  <steve@xemacs.org>
7175         * net/browse-url.el (browse-url-browser-function)
7176         (browse-url-default-browser): Add firefox.
7177         (browse-url-firefox-program, browse-url-firefox-arguments)
7178         (browse-url-firefox-startup-arguments)
7179         (browse-url-firefox-new-window-is-tab): New defcustoms.
7180         (browse-url-firefox, browse-url-firefox-sentinel): New functions.
7182 2005-06-17  Richard M. Stallman  <rms@gnu.org>
7184         * startup.el (command-line): Warn if specified user name has
7185         no home directory.
7187         * term.el (term-get-old-input, term-input-filter, term-input-sender)
7188         (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
7190         * longlines.el (longlines-mode, longlines-show-hard-newlines):
7191         Doc fixes.
7193         * faces.el (underline): Try bold if terminal doesn't support underline.
7195         * mail/sendmail.el (mail-setup-with-from): New variable.
7196         (mail-insert-from-field): New function.
7197         (sendmail-send-it): Call it.
7198         (mail-setup): Optionally call it here.
7200         * term/linux.el: Call tty-no-underline.
7202 2005-06-17  Luc Teirlinck  <teirllm@auburn.edu>
7204         * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
7206 2005-06-17  Miles Bader  <miles@gnu.org>
7208         * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
7209         (ediff-current-diff-C, ediff-current-diff-Ancestor)
7210         (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
7211         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
7212         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
7213         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
7214         Remove "-face" suffix from face names.
7215         (ediff-current-diff-face-A, ediff-current-diff-face-B)
7216         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
7217         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
7218         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
7219         (ediff-even-diff-face-A, ediff-even-diff-face-B)
7220         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
7221         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
7222         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
7223         New backward-compatibility aliases for renamed faces.
7224         (ediff-current-diff-face-A, ediff-current-diff-face-B)
7225         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
7226         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
7227         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
7228         (ediff-even-diff-face-A, ediff-even-diff-face-B)
7229         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
7230         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
7231         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
7232         Use renamed ediff faces.
7234         * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
7235         Remove "-face" suffix from face names.
7236         (eshell-test-ok-face, eshell-test-failed-face):
7237         New backward-compatibility aliases for renamed faces.
7238         (eshell-run-test): Use renamed eshell-test faces.
7240         * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
7241         face name.
7242         (eshell-prompt-face): New backward-compatibility alias for renamed
7243         face.
7244         (eshell-emit-prompt): Use renamed eshell-prompt face.
7246         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
7247         (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
7248         (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
7249         (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
7250         Remove "-face" suffix from face names.
7251         (eshell-ls-directory-face, eshell-ls-symlink-face)
7252         (eshell-ls-executable-face, eshell-ls-readonly-face)
7253         (eshell-ls-unreadable-face, eshell-ls-special-face)
7254         (eshell-ls-missing-face, eshell-ls-archive-face)
7255         (eshell-ls-backup-face, eshell-ls-product-face)
7256         (eshell-ls-clutter-face):
7257         New backward-compatibility aliases for renamed faces.
7258         (eshell-ls-decorated-name): Use renamed eshell-ls faces.
7260         * progmodes/cc-fonts.el (c-nonbreakable-space-face):
7261         Remove "-face" suffix from face name.
7262         (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
7263         instead of literal face.
7265 2005-06-17  Juanma Barranquero  <lekktu@gmail.com>
7267         * emacs-lisp/warnings.el (display-warning, lwarn)
7268         (warning-minimum-log-level): Doc fixes.
7269         (warning-minimum-level, warning-minimum-log-level):
7270         Add :debug to :type choices.
7272         * progmodes/ada-mode.el (ada-format-paramlist)
7273         (ada-get-indent-case, ada-check-matching-start)
7274         (ada-check-defun-name, ada-goto-matching-decl-start)
7275         (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
7276         (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
7277         (ada-make-subprogram-body): Follow error conventions.
7278         (ada-case-exception-file, ada-indent-comment-as-code)
7279         (ada-indent-handle-comment-special, ada-indent-renames)
7280         (ada-indent-return, ada-search-directories-internal)
7281         (ada-tab-policy, ada-case-exception-substring)
7282         (ada-other-file-alist, ada-matching-start-re)
7283         (ada-matching-decl-start-re, ada-contextual-menu-last-point)
7284         (ada-imenu-generic-expression, ada-compile-goto-error)
7285         (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
7286         (ada-popup-menu, ada-add-extensions, ada-mode)
7287         (ada-region-selected, ada-create-case-exception)
7288         (ada-create-case-exception-substring, ada-after-keyword-p)
7289         (ada-activate-keys-for-case, ada-adjust-case-region)
7290         (ada-adjust-case-buffer, ada-format-paramlist)
7291         (ada-scan-paramlist, ada-insert-paramlist)
7292         (ada-indent-newline-indent)
7293         (ada-indent-newline-indent-conditional)
7294         (ada-justified-indent-current, ada-goto-previous-word)
7295         (ada-indent-current, ada-get-indent-open-paren)
7296         (ada-get-indent-paramlist, ada-get-indent-end)
7297         (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
7298         (ada-get-indent-block-start, ada-get-indent-subprog)
7299         (ada-get-indent-noindent, ada-get-indent-label)
7300         (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
7301         (ada-search-prev-end-stmt, ada-goto-next-non-ws)
7302         (ada-goto-stmt-end, ada-goto-next-word)
7303         (ada-check-matching-start, ada-check-defun-name)
7304         (ada-goto-matching-decl-start, ada-goto-matching-start)
7305         (ada-goto-matching-end, ada-search-ignore-string-comment)
7306         (ada-in-decl-p, ada-looking-at-semi-or)
7307         (ada-looking-at-semi-private, ada-in-paramlist-p)
7308         (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
7309         (ada-untab-hard, ada-move-to-start, ada-move-to-end)
7310         (ada-next-procedure, ada-previous-procedure, ada-next-package)
7311         (ada-previous-package, ada-create-menu)
7312         (ada-fill-comment-paragraph-justify)
7313         (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
7314         (ada-other-file-name, ada-last-which-function-line)
7315         (ada-last-which-function-subprog, ada-which-function)
7316         (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
7317         (ada-gen-treat-proc, ada-check-emacs-version)
7318         (ada-continuation-indent, ada-align-region-separate):
7319         Fix typos in docstrings.
7320         (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
7322 2005-06-16  Lute Kamstra  <lute@gnu.org>
7324         * simple.el (fundamental-mode): Run after-change-major-mode-hook
7325         conditionally.
7327 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
7329         * comint.el (comint-replace-by-expanded-filename)
7330         (comint-prompt-regexp, comint-delimiter-argument-list)
7331         (comint-preinput-scroll-to-bottom):
7332         * info.el (Info-hide-cookies-node):
7333         * ls-lisp.el (ls-lisp-classify):
7334         * find-file.el (ff-search-directories, ff-special-constructs)
7335         (ff-find-other-file):
7336         * font-lock.el (font-lock-keywords):
7337         * shell.el (shell-prompt-pattern)
7338         (shell-dynamic-complete-functions, shell-mode)
7339         (shell-delimiter-argument-list):
7340         * term.el (term-replace-by-expanded-filename)
7341         (term-prompt-regexp, term-delimiter-argument-list):
7342         * woman.el (woman-ignore, woman0-if):
7343         * emacs-lisp/derived.el (derived-mode-init-mode-variables):
7344         * emacs-lisp/elint.el (elint-init-env):
7345         * emacs-lisp/regexp-opt.el (regexp-opt-depth):
7346         * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
7347         * language/ethio-util.el (ethio-tilde-escape)
7348         (ethio-use-three-dot-question):
7349         * net/zone-mode.el (zone-mode-load-time-setup):
7350         * progmodes/cc-align.el (c-lineup-argcont):
7351         * progmodes/cc-awk.el (c-awk-beginning-of-defun):
7352         * progmodes/cperl-mode.el (cperl-set-style-back):
7353         * progmodes/inf-lisp.el (inferior-lisp-prompt):
7354         * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
7355         Fix spellings in docstrings.
7357         * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
7358         * progmodes/modula2.el (m2-for): Fix spellings.
7360         * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
7362         * simple.el (undo-more): Don't use `format' on `error' arguments.
7363         Improve argument/docstring consistency.
7364         (pending-undo-list): Doc fix.
7366         * smerge-mode.el (smerge-ensure-match):
7367         * emulation/vip.el (vip-ex):
7368         * net/zone-mode.el (zone-mode-update-serial):
7369         * progmodes/idlwave.el (idlwave-complete):
7370         * progmodes/vhdl-mode.el (vhdl-visit-file)
7371         (vhdl-compose-wire-components):
7372         Don't use `format' on `error' arguments.
7374         * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
7375         (tooltip-use-echo-area, tooltip-process-prompt-regexp)
7376         (tooltip-help-tips): Fix typos in docstrings.
7378 2005-06-16  David Ponce  <david@dponce.com>
7380         * tree-widget.el (tree-widget-value-create): Simplify last change.
7382 2005-06-15  Matt Hodges  <MPHodges@member.fsf.org>
7384         * ido.el (ido-incomplete-regexp): New variable.
7385         (ido-set-matches-1): Handle invalid-regexp error and set
7386         ido-incomplete-regexp.
7387         (ido-incomplete-regexp): New face.
7388         (ido-completions): Use it.
7389         (ido-complete, ido-exit-minibuffer, ido-completions):
7390         Handle incomplete regexps.
7391         (ido-completions): Add check for complete match when entering a regexp.
7393 2005-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7395         * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
7397 2005-06-15  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7399         * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
7400         by field delimiters.
7402 2005-06-15  David Ponce  <david@dponce.com>
7404         * tree-widget.el: eval-and-compile inlined functions so they will
7405         be available at run-time too.
7406         (tree-widget-super-format-handler)
7407         (tree-widget-format-handler): Remove.
7408         (tree-widget-value-create): Handle the :indent property.
7410 2005-06-15  Miles Bader  <miles@gnu.org>
7412         * progmodes/which-func.el (which-func): Only inherit
7413         `font-lock-function-name-face' when that makes sense against the
7414         default mode-line face, otherwise set the face color explicitly.
7416         * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
7417         faces instead of (non-existent) variables.
7419 2005-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7421         * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
7422         (iswitchb-get-matched-buffers): Likewise.  Simplify.
7424 2005-06-14  Miles Bader  <miles@gnu.org>
7426         * progmodes/ld-script.el (ld-script-location-counter):
7427         Remove "-face" suffix from face name.
7428         (ld-script-location-counter-face):
7429         New backward-compatibility alias for renamed face.
7430         (ld-script-location-counter-face): Use renamed face.
7432         * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
7433         (cperl-hash): Remove "-face" suffix from face names.
7434         (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
7435         New backward-compatibility aliases for renamed faces.
7436         (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
7437         (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
7439         * progmodes/which-func.el (which-func): Remove "-face" suffix from face
7440         name.
7441         (which-func-face): New backward-compatibility alias for renamed face.
7442         (which-func-format): Use renamed which-func face.
7444         * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
7445         (vhdl-function, vhdl-directive, vhdl-reserved-word)
7446         (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
7447         names.
7448         (vhdl-speedbar-entity, vhdl-speedbar-architecture)
7449         (vhdl-speedbar-configuration, vhdl-speedbar-package)
7450         (vhdl-speedbar-library, vhdl-speedbar-instantiation)
7451         (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
7452         (vhdl-speedbar-architecture-selected)
7453         (vhdl-speedbar-configuration-selected)
7454         (vhdl-speedbar-package-selected)
7455         (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
7456         names.
7457         (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
7458         Use renamed faces.
7459         (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
7460         (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
7461         (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
7462         Use renamed faces.
7463         (syntax-alist): Don't use "font-lock-" or "-face" in generated face
7464         names.
7465         (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
7466         (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
7467         (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
7468         (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
7469         (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
7470         (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
7472         * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
7473         face name.
7474         (sh-heredoc-face): New backward-compatibility alias for renamed face.
7475         (sh-heredoc-face): Use renamed sh-heredoc face.
7477         * progmodes/idlw-help.el (idlwave-help-link):
7478         Remove "-face" suffix from face name.
7479         (idlwave-help-link-face):
7480         New backward-compatibility alias for renamed face.
7481         (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
7483         * progmodes/idlw-shell.el (idlwave-shell-bp-face)
7484         (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
7485         (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
7486         New backward-compatibility aliases for renamed faces.
7487         (idlwave-shell-disabled-breakpoint-face)
7488         (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
7490         * progmodes/flymake.el (flymake-errline, flymake-warnline):
7491         Remove "-face" suffix from face names.
7492         (flymake-errline-face, flymake-warnline-face):
7493         New backward-compatibility aliases for renamed faces.
7494         (flymake-highlight-line): Use renamed flymake faces.
7496         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
7497         (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
7498         (ebrowse-member-class, ebrowse-progress):
7499         Remove "-face" suffix from face names.
7500         (ebrowse-tree-mark-face, ebrowse-root-class-face)
7501         (ebrowse-file-name-face, ebrowse-default-face)
7502         (ebrowse-member-attribute-face, ebrowse-member-class-face)
7503         (ebrowse-progress-face):
7504         New backward-compatibility aliases for renamed faces.
7505         (ebrowse-show-progress, ebrowse-show-file-name-at-point)
7506         (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
7507         (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
7508         (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
7510         * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
7511         antlr-syntax)
7512         (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
7513         (antlr-literal): Remove "-face" suffix and "font-lock-" from face
7514         names.
7515         (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
7516         (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
7517         (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
7518         (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
7519         backward-compatibility aliases for renamed faces.
7520         (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
7521         (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
7522         (antlr-tokenref-face, antlr-literal-face): Variables renamed to
7523         remove "font-lock-".  Use renamed antlr-mode faces.
7524         (antlr-font-lock-additional-keywords): Use renamed faces.  Replace
7525         literal face-names with face variable references.
7527         * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
7528         face name.
7529         (Buffer-menu-buffer-face): New backward-compatibility alias for
7530         renamed face.
7531         (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
7533 2005-06-15  Daniel Pfeiffer  <occitan@esperanto.org>
7535         * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
7536         Eliminate "-face" suffix.
7537         (makefile-targets): Inherit from font-lock-function-name-face and
7538         eliminate "-face" suffix.
7539         (makefile-shell): Remove attributes and eliminate "-face" suffix.
7540         (makefile-*-font-lock-keywords): Append makefile-targets in rule
7541         actions, instead of prepending, to make it less visible.
7542         (makefile-previous-dependency, makefile-match-dependency):
7543         Don't match a target on a continuation line.
7545         * files.el (auto-mode-alist): Put Makefile in gmake mode.
7547 2005-06-15  Nick Roberts  <nickrob@snap.net.nz>
7549         * progmodes/gdb-ui.el (menu): Re-order menu items.
7550         (gdb-tooltip-print): Respect tooltip-use-echo-area.
7552         * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
7553         Define in tooltip.el.
7554         (gud-tooltip-process-output): Respect tooltip-use-echo-area.
7555         (gud-tooltip-tips): Respect tooltip-use-echo-area and
7556         gud-tooltip-echo-area.
7558         * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
7559         backward compatibility and make obsolete.
7560         (tooltip-help-tips): Use tooltip-use-echo-area.
7561         (tooltip-show-help-function): Rename to...
7562         (tooltip-show-help): ...this, because it is a function.
7563         (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
7565 2005-06-14  Luc Teirlinck  <teirllm@auburn.edu>
7567         * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
7568         (edebug-print-length, edebug-print-level, edebug-print-circle)
7569         (edebug-modify-breakpoint, edebug-eval-last-sexp)
7570         (edebug-eval-print-last-sexp): Doc fixes.
7572 2005-06-14  Kim F. Storm  <storm@cua.dk>
7574         * ido.el (ido-mode): Make a new keymap every time we enable ido,
7575         as the coverage buffer/file/both may change.
7577 2005-06-14  Lute Kamstra  <lute@gnu.org>
7579         * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
7580         and run-mode-hooks.  Simplify.
7582         * mail/rmailedit.el (rmail-edit-mode):
7583         * progmodes/octave-inf.el (inferior-octave-mode):
7584         * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
7586         * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
7587         and run-mode-hooks.
7588         (recentf-edit-list, recentf-open-files): Don't call
7589         kill-all-local-variables directly.
7591         * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
7593 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
7595         * emacs-lisp/byte-run.el (make-obsolete)
7596         (define-obsolete-function-alias): Rename arguments FUNCTION and
7597         NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
7598         (make-obsolete-variable, define-obsolete-variable-alias):
7599         Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
7600         respectively.
7602         * isearchb.el (isearchb-activate):
7603         * pcvs.el (cvs-mode):
7604         * ses.el (ses-load):
7605         * vc-arch.el (vc-arch-checkin, vc-arch-diff):
7606         * net/tramp.el (tramp-find-file-exists-command)
7607         (tramp-find-shell):
7608         * progmodes/ada-mode.el (ada-create-case-exception)
7609         (ada-create-case-exception-substring, ada-make-subprogram-body):
7610         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
7611         * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
7612         * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
7613         * textmodes/org.el (org-promote, org-evaluate-time-range)
7614         (org-agenda-next-date-line, org-agenda-previous-date-line)
7615         (org-agenda-error, org-open-at-point, org-table-move-row)
7616         (org-format-table-table-html-using-table-generate-source)
7617         (org-shiftcursor-error, org-ctrl-c-ctrl-c):
7618         * textmodes/reftex.el (reftex-access-scan-info):
7619         * textmodes/reftex-toc.el (reftex-toc-dframe-p)
7620         (reftex-toc-promote-prepare): Follow error conventions.
7622         * diff-mode.el (diff-mode): Fix typo in docstring.
7624         * forms.el (forms--intuit-from-file): Fix reference to
7625         `forms-number-of-fields' in error message.
7626         (forms-print): Fix quoting in error message.
7628         * forms.el (forms-mode):
7629         * emulation/vi.el (vi-goto-insert-state):
7630         * progmodes/flymake.el (flymake-new-err-info)
7631         (flymake-start-syntax-check-for-current-buffer)
7632         (flymake-simple-cleanup):
7633         * eshell/esh-var.el (eshell/export):
7634         * progmodes/gud.el (xdb):
7635         * textmodes/flyspell.el (flyspell-incorrect-hook)
7636         (flyspell-maybe-correct-transposition)
7637         (flyspell-maybe-correct-doubling): Fix quoting in docstring.
7639 2005-06-13  Luc Teirlinck  <teirllm@auburn.edu>
7641         * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
7642         minibuffer prompt.
7644 2005-06-13  Kim F. Storm  <storm@cua.dk>
7646         * subr.el (add-to-ordered-list): New defun.
7648         * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
7649         add cua--keymap-alist to emulation-mode-map-alists.
7651 2005-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7653         * subr.el (complete-in-turn): New macro.
7654         (dynamic-completion-table, lazy-completion-table): Add debug info.
7656         * faces.el (read-face-name): Use complete-in-turn complete non-aliases
7657         in preference to face aliases.
7659         * textmodes/fill.el (fill-match-adaptive-prefix): New function.
7660         (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
7661         Remove unused vars `start' and `firstline'.
7662         (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
7663         (justify-current-line, fill-individual-paragraphs): Remove unused vars.
7665 2005-06-13  Eli Zaretskii  <eliz@gnu.org>
7667         * cus-start.el (all): Don't complain about missing GTK-related
7668         variables, unless either `gtk' is boundp or this isn't a
7669         `windows-nt' build.
7671 2005-06-13  Lute Kamstra  <lute@gnu.org>
7673         * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
7674         run-mode-hooks.
7676         * ediff-mult.el (ediff-meta-mode):
7677         * ediff-util.el (ediff-mode): Use run-mode-hooks.
7679         * ledit.el (ledit-mode): Use delay-mode-hooks.
7681         * woman.el (woman-mode-line-format): Delete constant.
7682         (woman-mode-map): Initialize it properly.
7683         (woman-mode): Set mode-class property to special.
7684         Use delay-mode-hooks and run-mode-hooks.  Use the right keymap.
7685         Set major-mode and mode-name.  Don't set mode-line-format directly.
7686         (Man-getpage-in-background): Don't reference woman-mode-line-format.
7688         * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
7689         string argument obsolete.
7691 2005-06-13  Carsten Dominik  <dominik@science.uva.nl>
7693         * textmodes/org.el (org-CUA-compatible): New option.
7694         (org-disputed-keys): New variable.
7695         (org-key): New function.
7696         (orgtbl-make-binding): Add docstring to the created function.
7697         (org-mode): Set paragraph start/separate regexps.
7698         (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
7699         (org-archive-location, org-archive-mark-done)
7700         (org-archive-stamp-time): New options.
7701         (org-archive-subtree): New command.
7702         (org-fill-paragraph): New function.
7703         (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
7704         (org-fake-empty-table-line): Function removed.
7705         (org-format-org-table-html): Do not create empty table lines at
7706         separator lines.  Improved table header treatment.
7707         (org-link-format): New option.
7708         (org-make-link): New function.
7709         (org-insert-link, org-store-link): Use org-make-link.
7710         (org-open-file): Quote file name for shell command, to allow
7711         spaces in file names.
7712         (org-link-regexp): Fix bug with mailto link.
7713         (org-link-maybe-angles-regexp, org-protected-link-regexp):
7714         New constants.
7715         (org-export-as-html): Deal with the optional angles around a link.
7716         Better treatment of file: links.
7717         (org-open-at-point): Replace @{ and @} with < and >.
7718         (org-run-mode-hooks): Function removed.
7719         (org-agenda-mode): No longer use `org-run-mode-hooks'.
7721 2005-06-13  Nick Roberts  <nickrob@snap.net.nz>
7723         * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
7724         MI command -data-list-register-values.
7725         (gdb-post-prompt): Indent properly.
7727 2005-06-13  Juanma Barranquero  <lekktu@gmail.com>
7729         * hilit-chg.el (highlight-changes-colors): Rename from
7730         `highlight-changes-colours'.
7731         (highlight-changes-colours): Keep as obsolete alias.
7732         (highlight-changes-face-list): Doc fix.
7733         (hilit-chg-make-list): Use `highlight-changes-colors'.
7735 2005-06-12  Mark A. Hershberger  <mah@everybody.org>
7737         * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
7738         defun-prompt-regexp.
7740 2005-06-12  Eli Zaretskii  <eliz@gnu.org>
7742         * loadup.el: Don't say we are dumping under 2 names on windows-nt
7743         and cygwin.
7745         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
7746         Don't use an old loaddefs.el, as in Makefile.in.
7748 2005-06-12  Lute Kamstra  <lute@gnu.org>
7750         * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
7752         * man.el (Man-mode-map): Initialize it properly.
7753         (Man-mode): Set mode-class property to special.
7755         * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
7757 2005-06-11  Luc Teirlinck  <teirllm@auburn.edu>
7759         * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
7760         A newline is needed in the docstring there.
7762         * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
7763         Doc fixes.
7765 2005-06-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7767         * printing.el: Doc fix.  The menubar is no more changed when printing
7768         is loaded, it only changes when pr-menu-bind or pr-update-menus is
7769         called.  Now, the menubar changing will work in Emacs 20, 21 and 22.
7770         (pr-version): New version number (6.8.4).
7771         (pr-menu-bind): New command.
7772         (pr-update-menus): Docstring and code fix.
7773         (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
7774         Docstring fix.
7775         (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
7776         (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
7778 2005-06-11  Thien-Thi Nguyen  <ttn@gnu.org>
7780         * emacs-lisp/ewoc.el: Doc fixes for public funcs:
7781         "Returns" to "return", document useful return values, etc.
7783 2005-06-11  Alan Mackenzie  <acm@muc.de>
7785         * fill.el (fill-context-prefix): Try `adaptive-fill-function'
7786         BEFORE `adaptive-fill-regexp' when determining a fill prefix.
7787         (adaptive-file-function): Minor amendment to doc-string.
7789 2005-06-11  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
7791         * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
7792         (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
7793         Fix :type--it is `integer', not `string'.
7795         * faces.el (modeline-highlight): Rename from (the erroneous)
7796         `modeline-higilight'.
7798 2005-06-11  Lute Kamstra  <lute@gnu.org>
7800         * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
7801         lisp-interaction-mode-map but make it the parent.
7802         (edebug-eval-mode): Use define-derived-mode.
7804 2005-06-11  Andreas Schwab  <schwab@suse.de>
7806         * bindings.el: Add binding of `ESC functionkey' for every
7807         `M-functionkey'.
7808         * hexl.el (hexl-mode-map): Likewise.
7810 2005-06-10  Michael Hotchin  <michael@hotchin.net>  (tiny change)
7812         * progmodes/compile.el (compilation-error-regexp-alist-alist)
7813         [msft]: update regexp for newer msft compilers.
7815 2005-06-10  Mark A. Hershberger  <mah@everybody.org>
7817         * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
7818         ATTLIST portions of included DTDs.
7819         (xml-parse-dtd): Eliminate use of inefficient match-data.
7821 2005-06-10  Miles Bader  <miles@gnu.org>
7823         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
7824         (mpuz-text): Remove "-face" suffix from face names.
7825         (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
7826         (mpuz-text-face): New backward-compatibility aliases for renamed faces.
7827         (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
7829         * play/gomoku.el (gomoku-O, gomoku-X):
7830         Remove "-face" suffix from face names.
7831         (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
7832         New backward-compatibility aliases for renamed faces.
7833         (gomoku-font-lock-keywords): Use renamed gomoku faces.
7835 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
7837         * thumbs.el: Fixes for changes of 2005-06-09.
7838         (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
7839         as a directory.
7840         (thumbs-thumbname): Remove directory separator from format string;
7841         `thumbs-thumbsdir' now returns a valid directory name.
7842         (thumbs-temp-dir): New defsubst.
7843         (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
7844         Use it.
7846         * cus-edit.el (minibuffer):
7847         * files.el (make-backup-file-name-function):
7848         * filesets.el (filesets-external-viewers):
7849         * hilit-chg.el (highlight-changes-colours)
7850         (highlight-changes-face-list, highlight-changes-rotate-faces):
7851         * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
7852         * kmacro.el (kmacro-call-macro):
7853         * log-edit.el (log-edit-changelog-full-paragraphs):
7854         * mouse.el (mouse-1-click-follows-link):
7855         * skeleton.el (skeleton-autowrap):
7856         * subr.el (insert-for-yank-1):
7857         * tempo.el (tempo-insert-region):
7858         * terminal.el (terminal-emulator):
7859         * time.el (display-time-mail-face):
7860         * vc.el (vc-annotate):
7861         * vcursor.el (vcursor-copy-line):
7862         * woman.el (woman-bold-headings, woman-ignore)
7863         (woman-default-faces, woman-monochrome-faces):
7864         * calendar/todo-mode.el (todo-insert-threshold):
7865         * emulation/pc-select.el (pc-select-selection-keys-only)
7866         (pc-selection-mode):
7867         * emulation/vip.el (vip-find-char-forward):
7868         * emulation/viper-cmd.el (viper-find-char-forward):
7869         * international/mule-cmds.el
7870         (select-safe-coding-system-accept-default-p)
7871         (input-method-exit-on-invalid-key):
7872         * international/mule-diag.el (describe-coding-system):
7873         * international/ucs-tables.el (unify-8859-on-encoding-mode):
7874         * net/browse-url.el (browse-url-xterm-program):
7875         * obsolete/lazy-lock.el (lazy-lock-mode):
7876         * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
7877         (cperl-mode):
7878         * progmodes/cpp.el (cpp-face-light-name-list)
7879         (cpp-face-dark-name-list):
7880         * progmodes/delphi.el (delphi-newline-always-indents):
7881         Fix spellings in docstrings.
7883         * ido.el (ido-mode, ido-file-extensions-order)
7884         (ido-default-file-method, ido-default-buffer-method)
7885         (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
7886         (ido-decorations, ido-read-file-name-as-directory-commands)
7887         (ido-read-file-name-non-ido, ido-work-directory-list)
7888         (ido-ignore-item-temp-list, ido-current-directory)
7889         (ido-magic-forward-char, ido-enter-find-file)
7890         (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
7891         (ido-find-file, ido-read-buffer): Fix typos in docstrings.
7893 2005-06-10  Lute Kamstra  <lute@gnu.org>
7895         * play/dunnet.el (dun-mode): Use define-derived-mode.
7896         (dungeon-mode-map): Rename to dun-mode-map.  Keep old name as an
7897         obsolete alias.
7899         * play/doctor.el (doctor-mode-map): Remove defvar.
7900         (doctor-mode): Use define-derived-mode.
7902         * mail/mspools.el (mspools-mode):
7903         * net/eudc-hotlist.el (eudc-hotlist-mode):
7904         * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
7906 2005-06-10  Miles Bader  <miles@gnu.org>
7908         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
7909         Remove "-face" suffix from face names.
7910         (flyspell-incorrect-face, flyspell-duplicate-face):
7911         New backward-compatibility aliases for renamed faces.
7912         (flyspell-mode-on, make-flyspell-overlay)
7913         (flyspell-highlight-incorrect-region)
7914         (flyspell-highlight-duplicate-region)
7915         (flyspell-display-next-corrections)
7916         (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
7918         * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
7919         from face name.
7920         (texinfo-heading-face): New backward-compatibility alias for
7921         renamed face.
7922         (texinfo-heading-face): Use renamed texinfo-heading face.
7924         * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
7925         suffix from face names.
7926         (tex-math-face, tex-verbatim-face):
7927         New backward-compatibility aliases for renamed faces.
7928         (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
7929         (tex-insert-quote): Use `tex-verbatim-face' variable instead of
7930         literal face name.
7932         * textmodes/table.el (table-cell): Remove "-face" suffix from face
7933         name.
7934         (table-cell-face): New backward-compatibility alias for renamed face.
7935         (table--put-cell-face-property, table--update-cell-face):
7936         Use renamed table-cell face.
7938         * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
7939         from face name.
7940         (sgml-namespace-face): New backward-compatibility alias for
7941         renamed face.
7942         (sgml-namespace-face): Use renamed sgml-namespace face.
7944         * textmodes/org.el (org-level-1, org-level-2, org-level-3)
7945         (org-level-4, org-level-5, org-level-6, org-level-7)
7946         (org-level-8, org-warning, org-headline-done)
7947         (org-deadline-announce, org-scheduled-today)
7948         (org-scheduled-previously, org-link, org-done, org-table)
7949         (org-time-grid): Remove "-face" suffix from face names.
7950         (org-level-1-face, org-level-2-face, org-level-3-face)
7951         (org-level-4-face, org-level-5-face, org-level-6-face)
7952         (org-level-7-face, org-level-8-face, org-warning-face)
7953         (org-headline-done-face, org-deadline-announce-face)
7954         (org-scheduled-today-face, org-scheduled-previously-face)
7955         (org-link-face, org-done-face, org-table-face)
7956         (org-time-grid-face):
7957         New backward-compatibility aliases for renamed faces.
7958         (org-level-faces, org-set-font-lock-defaults, org-timeline)
7959         (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
7960         (org-agenda-get-timestamps, org-agenda-get-scheduled)
7961         (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
7963         * emulation/viper-init.el (viper-search, viper-replace-overlay)
7964         (viper-minibuffer-emacs, viper-minibuffer-insert)
7965         (viper-minibuffer-vi): Remove "-face" suffix from face names.
7966         (viper-search-face, viper-replace-overlay-face)
7967         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
7968         (viper-minibuffer-vi-face):
7969         New backward-compatibility aliases for renamed faces.
7970         (viper-search-face, viper-replace-overlay-face)
7971         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
7972         (viper-minibuffer-vi-face): Use renamed viper faces.
7974         * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
7975         Remove "-face" suffix from face names.
7976         (testcover-nohits-face, testcover-1value-face):
7977         New backward-compatibility aliases for renamed faces.
7978         (testcover-mark): Use renamed testcover faces.
7980         * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
7981         face name.
7982         (diary-button-face): New backward-compatibility alias for renamed face.
7983         (diary-entry): Use renamed diary-button face.
7985         * calendar/calendar.el (diary, calendar-today, holiday)
7986         (mark-visible-calendar-date): Remove "-face" suffix from face names.
7987         (diary-face, calendar-today-face, holiday-face):
7988         New backward-compatibility aliases for renamed faces.
7989         (eval-after-load "facemenu", diary-entry-marker)
7990         (calendar-today-marker, calendar-holiday-marker, diary-face):
7991         Use renamed calendar faces.
7993         * compare-w.el (compare-windows): Remove "-face" suffix from face name.
7994         (compare-windows-face): New backward-compatibility alias for
7995         renamed face.
7996         (compare-windows-highlight): Use renamed compare-windows face.
7998         * strokes.el (strokes-char): Remove "-face" suffix from face name.
7999         (strokes-char-face): New backward-compatibility alias for renamed face.
8000         (strokes-encode-buffer): Use renamed strokes-char face.
8002         * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
8003         (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
8004         Remove "-face" suffix from face names.
8005         (cvs-header-face, cvs-filename-face, cvs-unknown-face)
8006         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
8007         (cvs-msg-face): New backward-compatibility aliases for renamed faces.
8008         (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
8009         Use renamed pcvs faces.
8010         * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
8011         * pcvs-defs.el (cvs-mode-map): Likewise.
8012         * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
8014         * info.el (info-title-1, info-title-2, info-title-3)
8015         (info-title-4): Remove "-face" suffix from and downcase face names.
8016         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
8017         (Info-title-4-face):
8018         New backward-compatibility aliases for renamed faces.
8019         (Info-fontify-node): Use renamed info faces.
8021         * hilit-chg.el (highlight-changes, highlight-changes-delete):
8022         Remove "-face" suffix from face names.
8023         (highlight-changes-face, highlight-changes-delete-face):
8024         New backward-compatibility aliases for renamed faces.
8025         (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
8026         (hilit-chg-make-list): Use renamed highlight-changes faces.
8028         * generic-x.el (show-tabs-tab, show-tabs-space):
8029         Remove "-face" suffix from face names.
8030         (show-tabs-tab-face, show-tabs-space-face):
8031         New backward-compatibility aliases for renamed faces.
8032         (show-tabs-generic-mode-font-lock-defaults-1)
8033         (show-tabs-generic-mode-font-lock-defaults-2):
8034         Use renamed show-tabs faces.
8036         * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
8037         (smerge-markers): Remove "-face" suffix from face names.
8038         (smerge-mine-face, smerge-other-face, smerge-base-face)
8039         (smerge-markers-face):
8040         New backward-compatibility aliases for renamed faces.
8041         (smerge-mine-face, smerge-other-face, smerge-base-face)
8042         (smerge-markers-face): Use renamed smerge faces.
8044         * log-view.el (log-view-file, log-view-message): Remove "-face"
8045         suffix from face names.
8046         (log-view-file-face, log-view-message-face):
8047         New backward-compatibility aliases for renamed faces.
8048         (log-view-file-face, log-view-message-face): Use renamed log-view
8049         faces.
8051         * paren.el (show-paren-match, show-paren-mismatch):
8052         Remove "-face" suffix from face names.
8053         (show-paren-match-face, show-paren-mismatch-face):
8054         New backward-compatibility aliases for renamed faces.
8055         (show-paren-function): Use renamed show-paren faces.
8057         * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
8058         (ruler-mode-margins, ruler-mode-fringes)
8059         (ruler-mode-column-number, ruler-mode-fill-column)
8060         (ruler-mode-comment-column, ruler-mode-goal-column)
8061         (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
8062         suffix from face names.
8063         (ruler-mode-default-face, ruler-mode-pad-face)
8064         (ruler-mode-margins-face, ruler-mode-fringes-face)
8065         (ruler-mode-column-number-face, ruler-mode-fill-column-face)
8066         (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
8067         (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
8068         New backward-compatibility aliases for renamed faces.
8069         (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
8070         (ruler-mode-column-number, ruler-mode-fill-column)
8071         (ruler-mode-comment-column, ruler-mode-goal-column)
8072         (ruler-mode-tab-stop, ruler-mode-current-column)
8073         (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
8074         faces.
8076         * whitespace.el (whitespace-highlight): Remove "-face" suffix from
8077         face name.
8078         (whitespace-highlight-the-space): Use renamed face.
8079         (whitespace-highlight-face): New backward-compatibility alias for
8080         renamed face.
8082         * woman.el (woman-italic, woman-bold, woman-unknown)
8083         (woman-addition, woman-symbol-face):
8084         Remove "-face" suffix from face names.
8085         (woman-italic-face, woman-bold-face, woman-unknown-face)
8086         (woman-addition-face):
8087         New backward-compatibility aliases for renamed faces.
8088         (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
8089         (woman-decode-region, woman-replace-match)
8090         (woman-display-extended-fonts, woman-special-characters)
8091         (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
8092         Use renamed woman faces.
8094         * longlines.el (longlines-visible-face): Face removed.
8096         * diff-mode.el (diff-header, diff-file-header, diff-index)
8097         (diff-hunk-header, diff-removed, diff-added, diff-changed)
8098         (diff-function, diff-context, diff-nonexistent): Remove "-face"
8099         suffix from face names.
8100         (diff-header-face, diff-file-header-face, diff-index-face)
8101         (diff-hunk-header-face, diff-removed-face, diff-added-face)
8102         (diff-changed-face, diff-function-face, diff-context-face)
8103         (diff-nonexistent-face): New backward-compatibility aliases for
8104         renamed faces.
8105         (diff-header-face, diff-file-header-face)
8106         (diff-index, diff-index-face, diff-hunk-header)
8107         (diff-hunk-header-face, diff-removed, diff-removed-face)
8108         (diff-added, diff-added-face, diff-changed-face, diff-function)
8109         (diff-function-face, diff-context-face, diff-nonexistent)
8110         (diff-nonexistent-face): Use renamed diff-mode faces.
8112         * progmodes/compile.el (compilation-warning-face)
8113         (compilation-info-face): Remove "-face" suffix from face names.
8114         (compilation-warning-face, compilation-info-face):
8115         New backward-compatibility aliases for renamed faces.
8116         (compilation-warning-face, compilation-info-face):
8117         Use renamed compilation faces.
8119         * add-log.el (change-log-date, change-log-name)
8120         (change-log-email, change-log-file, change-log-list)
8121         (change-log-conditionals, change-log-function)
8122         (change-log-acknowledgement): Remove "-face" suffix from face names.
8123         (change-log-date-face, change-log-name-face)
8124         (change-log-email-face, change-log-file-face)
8125         (change-log-list-face, change-log-conditionals-face)
8126         (change-log-function-face, change-log-acknowledgement-face):
8127         New backward-compatibility aliases for renamed faces.
8128         (change-log-font-lock-keywords): Use renamed change-log faces.
8130         * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
8131         (custom-set, custom-changed, custom-saved, custom-button)
8132         (custom-button-pressed, custom-documentation, custom-state)
8133         (custom-comment, custom-comment-tag, custom-variable-tag)
8134         (custom-variable-button, custom-face-tag, custom-group-tag-1)
8135         (custom-group-tag): Remove "-face" suffix from face names.
8136         (custom-magic-alist, custom-magic-value-create)
8137         (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
8138         (custom-invalid-face, custom-rogue-face, custom-modified-face)
8139         (custom-set-face, custom-changed-face, custom-saved-face)
8140         (custom-button-face, custom-button-pressed-face)
8141         (custom-documentation-face, custom-state-face)
8142         (custom-comment-face, custom-comment-tag-face)
8143         (custom-variable-tag-face, custom-variable-button-face)
8144         (custom-face-tag-face, custom-group-tag-face-1)
8145         (custom-group-tag-face):
8146         New backward-compatibility aliases for renamed faces.
8148         * wid-edit.el (widget-documentation, widget-button)
8149         (widget-field, widget-single-line-field, widget-inactive)
8150         (widget-button-pressed): "-face" suffix removed from face names.
8151         (widget-documentation-face, widget-button-face)
8152         (widget-field-face, widget-single-line-field-face)
8153         (widget-inactive-face, widget-button-pressed-face):
8154         New backward-compatibility aliases for renamed faces.
8155         (widget-documentation-face, widget-button-face)
8156         (widget-button-pressed-face, widget-specify-field)
8157         (widget-specify-inactive): Use renamed widget faces.
8159 2005-06-10  Kenichi Handa  <handa@m17n.org>
8161         * term/x-win.el (x-clipboard-yank): Remove condition-case
8162         wrapping.
8164 2005-06-11  Kenichi Handa  <handa@m17n.org>
8166         * add-log.el (change-log-font-lock-keywords): Make the regexp for
8167         date lines stricter.
8169 2005-06-10  Zhang Wei  <id.brep@gmail.com>  (tiny change)
8171         * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
8172         of x-get-selection.
8174 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
8176         * comint.el (comint-mode, comint-snapshot-last-prompt):
8177         * frame.el (frame-current-scroll-bars):
8178         * term.el (term-mode, term-check-proc, term-input-sender)
8179         (term-simple-send, term-extract-string, term-word)
8180         (term-match-partial-filename):
8181         * window.el (window-current-scroll-bars):
8182         * emulation/cua-base.el (cua-normal-cursor-color)
8183         (cua-read-only-cursor-color, cua-overwrite-cursor-color)
8184         (cua-global-mark-cursor-color):
8185         * mail/undigest.el (rmail-forward-separator-regex):
8186         Fix typos in docstrings.
8188         * comint.el (comint-check-proc, make-comint-in-buffer)
8189         (comint-source-default): Doc fixes.
8191         * term.el (term-send-string): Improve argument/docstring consistency.
8193 2005-06-09  Luc Teirlinck  <teirllm@auburn.edu>
8195         * comint.el (comint-send-input): Bind `inhibit-read-only' around
8196         call to `delete-region'.
8197         (comint-mode-hook): Do not enable Font Lock by default.
8199 2005-06-09  Lute Kamstra  <lute@gnu.org>
8201         * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
8202         could be void.
8204 2005-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8206         * emacs-lisp/debug.el (debugger-will-be-back): New var.
8207         (debug): Use it.
8208         (debugger-step-through, debugger-continue, debugger-jump)
8209         (debugger-return-value): Set it when needed.
8210         (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
8211         Use inhibit-read-only.
8213 2005-06-09  Juanma Barranquero  <lekktu@gmail.com>
8215         * window.el (shrink-window-if-larger-than-buffer)
8216         (window-size-fixed): Fix typo in docstring.
8218         * thumbs.el: Don't set `auto-image-file-mode'.  Do not create the
8219         thumbnails directory on loading.
8220         (thumbs-conversion-program): Use `eq' to check the system type,
8221         not `equal'.
8222         (thumbs-temp-dir): Initialize to `temporary-file-directory',
8223         not "/tmp".  Fix docstring.
8224         (thumbs-thumbsdir): New function to return the thumbnails
8225         directory, creating it if needed.
8226         (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
8227         (thumbs-temp-file): Delete variable and make it into a function.
8228         (thumbs-resize-image, thumbs-modify-image): Use it.
8229         (thumbs-kill-buffer): Simplify.
8230         (thumbs-gensym): Defalias or duplicate CL `gensym'.
8231         (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
8232         docstrings.
8234 2005-06-09  Kim F. Storm  <storm@cua.dk>
8236         * subr.el (save-match-data): Add RESEAT arg `evaporate' to
8237         set-match-data to free markers in match-data.
8239         * replace.el (replace-match-data): Pass RESEAT arg `t' to
8240         match-data to unchain markers in match-data.
8242 2005-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8244         * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
8245         the debugger immediately anyway.  Undo the 2005-06-06 change, rendered
8246         unnecessary now.
8248 2005-06-08  Richard M. Stallman  <rms@gnu.org>
8250         * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
8251         give the variable a doc string that doesn't say don't set it directly.
8253         * textmodes/ispell.el (ispell-check-version):
8254         Use match-string-no-properties.
8255         (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
8256         (ispell-buffer-local-words): Likewise.
8258         * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
8259         except on terminals with enough colors to really display it.
8260         (makefile-dependency-regex): Delete spurious `bb'.
8262         * faces.el (escape-glyph): Use blue once again in last case.
8263         (no-break-space): Redefine so that it isn't invisible on a tty.
8265 2005-06-08  Kim F. Storm  <storm@cua.dk>
8267         * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
8268         also when reading directory name.
8270 2005-06-08  Lute Kamstra  <lute@gnu.org>
8272         * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
8273         (flyspell-mode-line-string): Remove autoload cookie.
8274         (flyspell-mode): Remove defvar.
8276 2005-06-07  Lute Kamstra  <lute@gnu.org>
8278         * textmodes/org.el (org-run-mode-hooks): New function.
8279         (org-agenda-mode): Use it.
8281 2005-06-07  David McCabe  <davemccabe@gmail.com>  (tiny change)
8283         * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
8285 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8287         * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
8289 2005-06-06  Luc Teirlinck  <teirllm@auburn.edu>
8291         * font-lock.el (font-lock-add-keywords): Doc fix.
8293 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8295         * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
8296         (tex-compile-default): In the absence of any history, use the order in
8297         tex-compile-alist to choose the preferred command.
8298         (tex-compile-commands): Reorder a bit.
8300         * textmodes/flyspell.el (flyspell-auto-correct-binding)
8301         (flyspell-incorrect-face, flyspell-duplicate-face):
8302         Use (X)Emacs-agnostic code.
8303         (flyspell-mode-map): Don't overwrite at each load.  Remove code
8304         redundant with the subsequent add-minor-mode.  Merge Emacs and
8305         XEmacs code.
8306         (flyspell-word): Minor simplification.
8307         (flyspell-math-tex-command-p): Quieten the byte-compiler.
8308         (flyspell-external-point-words): Remove unused vars `size' and `start'.
8309         (flyspell-do-correct): Rename from flyspell-xemacs-correct.
8310         Merge the corresponding Emacs code.
8311         (flyspell-correct-word, flyspell-xemacs-popup):
8312         Use flyspell-do-correct.
8314         * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
8315         a dedicated window.
8317         * international/latexenc.el (latexenc-find-file-coding-system):
8318         Undo part of last patch, to turn off a compiler warning.
8320 2005-06-06  Juri Linkov  <juri@jurta.org>
8322         * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
8323         Rename `tmm-inactive-face' to `tmm-inactive'.
8325 2005-06-06  Matt Hodges  <MPHodges@member.fsf.org>
8327         * iswitchb.el: Rename faces.
8329 2005-06-06  Kim F. Storm  <storm@cua.dk>
8331         * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
8332         (cua-global-mark): Remove -face suffix from face names.
8334         * emulation/cua-gmrk.el (cua--init-global-mark):
8335         Remove cua-global-mark face setup.
8337 2005-06-06  Richard M. Stallman  <rms@gnu.org>
8339         * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
8340         just like other allowed characters.
8341         (makefile-match-dependency): Exclude leading and training whitespace
8342         from the range of regexp subexp 1.
8343         (makefile-macroassign-regex): Don't try to match the body,
8344         just the name of the macro being defined.
8346         * info.el (Info-read-node-name-2): New function.
8347         (Info-read-node-name-1): Use that.
8348         Add a completion-base-size-function property.
8350         * simple.el (completion-setup-function): Look for
8351         completion-base-size-function property of minibuffer-completion-table.
8353         * files.el (locate-file-completion): Doc fix.
8355         * printing.el: Don't call pr-update-menus; user must do that.
8357         * emacs-lisp/debug.el (debugger-window): New variable.
8358         (debug): Use debugger-window if it is set and still alive.
8359         Record debugger-window for next entry.
8361         * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
8363 2005-06-06  Matthias F\e,Av\e(Brste  <slashdevslashnull@gmx.net>
8365         * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
8366         (hack-one-local-variable, hack-local-variables)
8367         (hack-local-variables-prop-line): Pass that arg.
8369 2005-06-06  Kim F. Storm  <storm@cua.dk>
8371         * ido.el (ido-first-match, ido-only-match, ido-subdir)
8372         (ido-indicator): Remove -face suffix from face names.
8374 2005-06-06  Juri Linkov  <juri@jurta.org>
8376         * font-lock.el (font-lock-regexp-backslash)
8377         (font-lock-regexp-backslash-construct): New faces.
8378         (lisp-font-lock-keywords-2): Use new faces.  Match `?:' only
8379         after `('.  Add `while-no-input' to control structures.
8381         * faces.el (no-break-space, shadow): New faces.
8382         (escape-glyph): Use less loud colors pink2 and red4.
8384         * diff-mode.el (diff-context-face)
8385         * dired.el (dired-ignored)
8386         * rfn-eshadow.el (file-name-shadow)
8387         * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
8389         * info.el (Info-title-1-face): Use green instead of yellow because
8390         bold yellow is not readable on light backgrounds.
8392         * progmodes/compile.el (compilation-start): Move `erase-buffer' up
8393         before selecting the desired mode to not spend time fontifying
8394         old contents.
8396 2005-06-06  Juanma Barranquero  <lekktu@gmail.com>
8398         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
8399         (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
8401         * ps-print.el (ps-default-fg, ps-default-bg):
8402         Fix typos in docstrings.
8404         * isearchb.el (isearchb): Don't pass a spurious second argument to
8405         `iswitchb-completions'.
8407 2005-06-05  Nick Roberts  <nickrob@snap.net.nz>
8409         * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
8410         to preserve point.
8411         (gdb-find-file-hook): Add doc string.
8413         * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
8414         C dereferenced pointer expression.
8415         (gud-tool-bar-map): Put it on the tool bar.  Re-order icons.
8417         * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
8419         * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
8420         * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
8421         * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
8422         * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
8423         * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
8424         Make background transparent.
8426 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
8428         * font-lock.el (font-lock-add-keywords): Doc fix.  Comment change.
8429         (font-lock-remove-keywords): Doc fix.
8430         (font-lock-mode-major-mode): Compiler defvar.
8431         (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
8433         * font-core.el (font-lock-mode-major-mode): Compiler defvar.
8434         (font-lock-mode): Update `font-lock-mode-major-mode'.
8435         (font-lock-set-defaults): Compiler defvar.
8436         (font-lock-default-function): Take `font-lock-mode-major-mode'
8437         into account.
8439         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
8440         keep track of which major mode it enabled the minor mode for.
8441         Use find-file-hook again.  Update docstring.
8443         * simple.el (eval-expression-print-level)
8444         (eval-expression-print-length, eval-expression-debug-on-error):
8445         Doc fixes.
8447 2005-06-04  Matt Hodges  <MPHodges@member.fsf.org>
8449         * iswitchb.el (iswitchb-single-match-face)
8450         (iswitchb-current-match-face, iswitchb-virtual-matches-face)
8451         (iswitchb-invalid-regexp-face): New faces.
8452         (iswitchb-completions): Use them.
8453         (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
8454         now marked as an obsolete alias.
8455         (iswitchb-read-buffer): Remove check for bound font variables.
8456         (iswitchb-invalid-regexp): New free variable.
8457         (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
8458         set iswitchb-invalid-regexp.
8459         (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
8460         invalid regexps.
8461         (iswitchb-completions): Add check for complete match when entering
8462         a regexp.
8463         (iswitchb-completions): Remove require-match argument.
8464         (iswitchb-exhibit): Fix caller.
8465         (iswitchb-common-match-inserted): New variable.
8466         (iswitchb-complete, iswitchb-completion-help): Use it.
8468 2005-06-04  David Reitter  <david.reitter@gmail.com>  (tiny change)
8470         * url-http.el (url-http-chunked-encoding-after-change-function):
8471         Use `url-http-debug' instead of `message'.
8473 2005-06-04  Thierry Emery  <thierry.emery@free.fr>  (tiny change)
8475         * url-http.el (url-http-parse-headers): Pass redirected URL as a
8476         callback argument.
8478 2005-06-04  Kim F. Storm  <storm@cua.dk>
8480         * simple.el (line-move): Only call sit-for when moving backwards.
8482         * ido.el (ido-make-merged-file-list-1): New defun split from
8483         ido-make-merged-file-list.
8484         (ido-make-merged-file-list): Bind throw-on-input around call to
8485         ido-make-merged-file-list-1.  Return input-pending-p if
8486         interrupted by more input available.
8487         (ido-read-internal): Handle input-pending-p return value from
8488         ido-make-merged-file-list.
8490 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8492         * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
8493         compatibility code.
8495         * international/latexenc.el (latexenc-find-file-coding-system):
8496         Don't inherit the EOL part of the coding-system from the
8497         tex-main buffer.  Fit within 80 columns.
8499 2005-06-03  Matt Hodges  <MPHodges@member.fsf.org>
8501         * tmm.el (tmm-inactive-face): New face.
8502         (tmm-remove-inactive-mouse-face): New function.
8503         (tmm-prompt, tmm-add-one-shortcut)
8504         (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
8505         but not selectable.
8507 2005-06-03  Juanma Barranquero  <lekktu@gmail.com>
8509         * faces.el (face-equal): Improve argument/docstring consistency.
8511 2005-06-03  Daniel Pfeiffer  <occitan@esperanto.org>
8513         * progmodes/make-mode.el (makefile-targets-face)
8514         (makefile-shell-face, makefile-makepp-perl-face): Add :version.
8515         (makefile-bsdmake-dependency-regex)
8516         (makefile-makepp-rule-action-regex)
8517         (makefile-bsdmake-rule-action-regex): New constants.
8518         (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
8520         * progmodes/compile.el (compilation-error-regexp-alist-alist):
8521         Allow (...) within `...' for makepp messages.
8523 2005-06-03  Michael Kifer  <kifer@cs.stonybrook.edu>
8525         * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
8527         * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
8528         "." files are deleted from all file lists before comparison.
8530         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
8531         (viper-ESC-key): Made them customizable.
8533         * viper.el (viper-non-hook-settings): Fix the names of defadvices.
8535 2005-06-01  Luc Teirlinck  <teirllm@auburn.edu>
8537         * autorevert.el (auto-revert-buffers): Use save-match-data.
8539 2005-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8541         * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
8542         menu items with a nil command binding.
8544 2005-06-01  Juanma Barranquero  <lekktu@gmail.com>
8546         * emacs-lisp/cl-macs.el (defsetf):
8547         Improve argument/docstring consistency.
8549         * faces.el (list-faces-display): Improve the formatting by
8550         computing the maximum length required for any face-name (reworked
8551         patch of 1999-01-11, accidentally deleted on 1999-07-21).
8552         (internal-find-face): Remove redundant info in docstring.
8554 2005-06-01  Nick Roberts  <nickrob@snap.net.nz>
8556         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
8557         (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
8558         (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
8559         (gdb-assembler-custom): Improve regexps.
8560         (def-gdb-auto-update-handler): Use window point to preserve point.
8562 2005-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
8564         * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
8566 2005-05-31  Jay Belanger  <belanger@truman.edu>
8568         * calc/calc-embed.el (calc-embedded-word): Change argument passed
8569         to calc-embedded.
8570         (calc-embedded-make-info): Have plain prefix argument select
8571         entire line.
8573 2005-05-31  Juanma Barranquero  <lekktu@gmail.com>
8575         * faces.el (list-faces-display): Signal error if passed a regexp
8576         that matches no face name.
8578         * simple.el (filter-buffer-substring): Fix typo in docstring.
8580 2005-05-31  Richard M. Stallman  <rms@gnu.org>
8582         * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
8583         (vhdl-emacs-21): Doc fix.
8584         (vhdl-mode): Unconditionally set comment-padding.
8585         (vhdl-fixup-whitespace-region): Insert spaces only where
8586         there are none.
8587         (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
8589 2005-05-30  John Wiegley  <johnw@newartisans.com>
8591         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
8592         * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
8593         * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
8594         `directory-sep-char' to ?/, and all uses of `string-to-int' to
8595         `string-to-number'.
8597 2005-05-30  Jay Belanger  <belanger@truman.edu>
8599         * calc/calc.el (calc-bug-address): Fix docstring.
8600         (calc-window-hook, calc-trail-window-hook): New variables.
8601         (calc-trail-display): Restore use of calc-trail-window-hook.
8602         (calc): Restore use of calc-window-hook.
8604 2005-05-31  Masatake YAMATO  <jet@gyve.org>
8606         * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
8608         * help-fns.el (help-C-file-name): Add autoload mark for
8609         `find-function-noselect'.
8611 2005-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8613         * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
8614         (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
8616 2005-05-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
8618         * calendar/diary-lib.el (mark-included-diary-files): Only kill
8619         included diary buffer if it was not already being visited.
8620         Reported by Stephen Berman <Stephen.Berman@gmx.net>.
8622         * calendar/icalendar.el (top-level): Do not require 'appt.
8624         * mail/supercite.el (sc-select-attribution): Only use a list
8625         element from sc-attrib-selection-list if it returns a string.
8626         Reported by Davide G. M. Salvetti <salve@debian.org>.
8628 2005-05-30  Juanma Barranquero  <lekktu@gmail.com>
8630         * thumbs.el (thumbs-thumbname): The resulting thumbname now
8631         includes a hash value to improve its uniqueness, and has a ".jpg"
8632         extension.  Also, it is now a valid filename on all systems.
8633         (thumbs-make-thumb): Use `let', not `let*'.
8634         (thumbs-show-thumbs-list): Check for JPEG availability.
8636 2005-05-30  Richard M. Stallman  <rms@gnu.org>
8638         * filesets.el (filesets-menu-ensure-use-cached):
8639         Prevent warning when emacs-version>= is undefined.
8641         * printing.el (pr-interactive-n-up): Use string-to-number.
8643         * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
8645         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
8646         Warn only when name to be defined is quoted.
8648 2005-05-30  Nick Roberts  <nickrob@snap.net.nz>
8650         * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
8651         Make regexp more robust.
8652         (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
8653         Force regeneration of disassembly.
8655 2005-05-29  Jay Belanger  <belanger@truman.edu>
8657         * calc/calc.el (calc-user-invocation): Check if
8658         calc-invocation-macro is non-nil.
8660 2005-05-29  Juri Linkov  <juri@jurta.org>
8662         * add-log.el (change-log-font-lock-keywords):
8663         Add `+' to e-mail regexp to accept mail address with keywords.
8665         * man.el (Man-name-regexp): Add `:' to accept qualified names.
8667 2005-05-29  Luc Teirlinck  <teirllm@auburn.edu>
8669         * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
8671         * ielm.el (inferior-emacs-lisp-mode): Ditto.
8673 2005-05-29  Richard M. Stallman  <rms@gnu.org>
8675         * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
8676         Undo the change that moves to end of the current word.
8678 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
8680         * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
8681         Throw error when count <= 0 to ensure input is a number.
8682         (gdb-read-memory-custom): Pick up address from buffer.
8683         (gdb-memory-mode): Allow user to increment and decrement
8684         memory address from header line.
8686 2005-05-29  Richard M. Stallman  <rms@gnu.org>
8688         * flyspell.el (flyspell-version): Function deleted.
8689         (flyspell-auto-correct-previous-hook): Doc fix.
8691         * jit-lock.el (jit-lock-function, jit-lock-after-change):
8692         Do nothing if memory is full.
8694         * font-lock.el (font-lock-fontify-syntactically-region):
8695         Pass t for GREEDY to looking-back.
8697         * saveplace.el (save-place-alist-to-file): Write the file
8698         using write-region.
8700         * subr.el (looking-back): New argument GREEDY.
8702         * progmodes/compile.el (compilation-start): Set the mode
8703         before inserting the initial text.
8705         * progmodes/which-func.el (which-func-update-1): Turn the mode
8706         off in case of error by setting which-func-mode.
8708 2005-05-29  Peter Heslin  <p.j.heslin@durham.ac.uk>  (tiny change)
8710         * flyspell.el (flyspell-auto-correct-previous-word):
8711         Narrow down to what's on the screen, and recenter overlays
8712         at the end of the next word.
8714 2005-05-29  Manuel Serrano  <Manuel.Serrano@sophia.inria.fr>
8716         * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
8717         (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
8718         (flyspell-abbrev-p): Default to nil.
8719         (flyspell-use-global-abbrev-table-p): Doc fix.
8720         (flyspell-large-region): Allow nil as value.
8721         (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
8723         (mail-mode-flyspell-verify): More robust handling
8724         of `mail-header-separator'.  More efficient signature detection.
8725         Allow for regexp metacharacters in message-header-separator.
8726         Adding `To' not to be checked in mail-mode-flyspell-verify.
8728         (flyspell-prog-mode): Run flyspell-prog-mode-hook.
8729         (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
8730         Bind flyspell-auto-correct-binding.
8731         Bind C-. and C-, .
8732         (flyspell-mode-map): Likewise.
8733         (flyspell-mode): Doc fix.
8734         (flyspell-accept-buffer-local-defs): Preserve current buffer.
8735         (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
8736         (flyspell-word-cache-result): New var, always local.
8737         (flyspell-check-pre-word-p): Doc fix.
8738         (flyspell-check-changed-word-p): Handle spc like newline.
8739         (flyspell-post-command-hook): Set flyspell-word-cache-result.
8740         (flyspell-word-search-backward, flyspell-word-search-forward):
8741         New functions.
8742         (flyspell-word): Return t if nothing to check.
8743         When parsing TeX code, check for after } or \.
8744         Use flyspell-word-search-backward to find previous word.
8745         Return nil if duplicated word.
8746         For word already checked, return same value as last time.
8747         Set flyspell-word-cache-result after checking.
8748         Don't clobber the return value.
8749         (flyspell-get-word): Major rewrite.
8750         (flyspell-external-point-words): New locals pword, pcount.
8751         Fix size used in progress message.
8752         Find the proper corresponding word in flyspell-large-region-buffer.
8753         (flyspell-region): Check for flyspell-large-region = nil.
8754         (flyspell-highlight-incorrect-region): Clean up overlays in region.
8755         (flyspell-auto-correct-word): Check that WORD is a cons.
8756         (flyspell-correct-word): Likewise.
8758 2005-05-29  Daniel Pfeiffer  <occitan@esperanto.org>
8760         * progmodes/make-mode.el (makefile-rule-action-regex)
8761         (makefile-macroassign-regex, makefile-makepp-mode)
8762         (makefile-bsdmake-mode): Continuation lines may be empty.
8763         Reported by Joshua Varner.
8764         (makefile-makepp-font-lock-keywords): Add $(stem).
8766 2005-05-28  Karl Berry  <karl@gnu.org>
8768         * textmodes/tex-mode.el: Now that tex-send-command calls
8769         shell-quote-argument (2005-03-31 change), remove all calls to
8770         shell-quote-argument; they all end up invoking tex-send-command.
8771         The double quoting loses on filenames with non-safe characters,
8772         such as "@".  Reported by Frederik Fouvry.
8774 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
8776         * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
8777         about preserving point.
8779 2005-05-27  Jay Belanger  <belanger@truman.edu>
8781         * calc/calc-misc.el (calc-info-goto-node): Use info instead of
8782         Info-goto-node.
8784         * calc/calc-embed.el (calc-embed-arg): New variable.
8785         (calc-do-embedded-activate, calc-embedded-activate-formula)
8786         (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
8787         variable by new variable.
8788         (calc-embedded-make-info): Replace undeclared variable by new
8789         variable.  When selecting region with positive prefix
8790         argument, use end of previous line instead of beginning of line.
8792         * calc/calc-aent.el (calc-arg-values): Declare it.
8794         * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
8795         Declare them.
8797         * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
8799         * calc/calc.el (calc-alg-map): Declare it.
8801         * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
8803 2005-05-28  Nick Roberts  <nickrob@snap.net.nz>
8805         * progmodes/gdb-ui.el (gdb-all-registers): New variable.
8806         (gdb-registers-buffer, toggle-gdb-all-registers):
8807         Toggle display of floating point registers.
8808         (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
8810         * progmodes/gud.el (gud-goto-info): Use info.  Don't use require.
8811         (toggle-gud-tooltip-dereference):
8812         Rename from gud-toggle-tooltip-dereference.
8814 2005-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8816         * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
8818 2005-05-27  Jay Belanger  <belanger@truman.edu>
8820         * calc/calc-prog.el (calc-kbd-report): Remove.
8821         (calc-kbd-query): Rewrite.
8823 2005-05-27  Juanma Barranquero  <lekktu@gmail.com>
8825         * image.el (image-library-alist): Move to image.c.
8826         (image-type-available-p): Doc fix.
8828 2005-05-27  Lute Kamstra  <lute@gnu.org>
8830         * calc/calc.el (calc):
8831         * outline.el (outline-1, outline-2, outline-3, outline-4)
8832         (outline-5, outline-6, outline-7, outline-8):
8833         * textmodes/dns-mode.el (dns-mode):
8834         * textmodes/sgml-mode.el (sgml-namespace-face):
8835         * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
8836         (tex-verbatim-face, tex-use-reftex):
8837         * textmodes/texinfo.el (texinfo-heading-face):
8838         Specify customization group.
8840         * longlines.el: Don't require easy-mmode.
8841         (longlines-visible-face): Specify customization group.
8843 2005-05-27  Kenichi Handa  <handa@m17n.org>
8845         * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
8846         encoding table of windows-1251.
8848         * international/ucs-tables.el (ucs-set-table-for-input):
8849         If translation-table-for-input of a coding system is a symbol, get
8850         its translation-table property.
8852         * international/code-pages.el: Don't register a coding system into
8853         non-iso-charset-alist more than once.
8854         (cp-make-coding-system): Likewise.
8856 2005-05-26  John Wiegley  <johnw@newartisans.com>
8858         * eshell/esh-cmd.el (eshell-eval-command): If the return value of
8859         `eshell-resume-eval' is wrapped in a list, it indicates that the
8860         command was run asynchronously.  In that case, unwrap the value
8861         before checking the delimiter value.
8863         * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
8864         character before a space at the end of a line is \, assume the space
8865         is part of the last argument rather than a final argument separator.
8867         * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
8868         is in use, and the target is `t' or `nil' (which are the most common
8869         values), don't assume that the symbol target is a buffer.
8871 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
8873         * calendar/calendar.el (calendar-mode-line-format):
8874         Use mode-line-highlight as mouse-face.
8876         * time.el (display-time-string-forms, display-time-update):
8877         Use mode-line-highlight as mouse-face.
8879 2005-05-26  Jay Belanger  <belanger@truman.edu>
8881         * calc/calc.el (calc-language-alist): Remove extra defvar.
8883 2005-05-26  Lute Kamstra  <lute@gnu.org>
8885         * arc-mode.el (archive-mode):
8886         * bookmark.el (bookmark-read-annotation-mode)
8887         (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
8888         * bs.el (bs-mode):
8889         * calc/calc-yank.el (calc-edit-mode):
8890         * calc/calc.el (calc-mode, calc-trail-mode):
8891         * calculator.el (calculator-mode):
8892         * chistory.el (command-history-mode):
8893         * comint.el:
8894         * cus-edit.el (custom-mode):
8895         * descr-text.el (describe-text-mode):
8896         * ebuff-menu.el (Electric-buffer-menu-mode):
8897         * ediff-util.el (ediff-mode):
8898         * emacs-lisp/re-builder.el (reb-mode):
8899         * emulation/vi.el (vi-mode-setup):
8900         * emulation/ws-mode.el (wordstar-mode):
8901         * eshell/esh-mode.el (eshell-mode):
8902         * forms.el (forms-mode):
8903         * help-mode.el (help-mode):
8904         * hexl.el (hexl-mode):
8905         * ibuffer.el (ibuffer-mode):
8906         * ielm.el (inferior-emacs-lisp-mode):
8907         * info.el (Info-mode, Info-edit-mode):
8908         * international/swedish.el:
8909         * ledit.el (ledit-from-lisp-mode):
8910         * locate.el (locate-mode):
8911         * mail/rmail.el (rmail-mode):
8912         * mail/rmailedit.el (rmail-edit-mode):
8913         * mail/rmailsum.el (rmail-summary-mode):
8914         * mail/supercite.el (sc-electric-mode):
8915         * net/eudc.el (eudc-mode):
8916         * net/quickurl.el (quickurl-list-mode):
8917         * net/snmp-mode.el (snmp-mode, snmpv2-mode):
8918         * obsolete/ooutline.el (outline-mode):
8919         * obsolete/options.el (Edit-options-mode):
8920         * obsolete/rnews.el (news-mode):
8921         * obsolete/rnewspost.el (news-reply-mode):
8922         * play/5x5.el (5x5-mode):
8923         * play/decipher.el (decipher-mode, decipher-stats-mode):
8924         * play/gomoku.el (gomoku-mode):
8925         * play/snake.el (snake-mode):
8926         * play/solitaire.el (solitaire-mode):
8927         * play/tetris.el (tetris-mode):
8928         * progmodes/ada-mode.el (ada-mode):
8929         * progmodes/antlr-mode.el (antlr-mode):
8930         * progmodes/autoconf.el (autoconf-mode):
8931         * progmodes/dcl-mode.el (dcl-mode):
8932         * progmodes/delphi.el (delphi-mode):
8933         * progmodes/ebrowse.el (ebrowse-tree-mode)
8934         (ebrowse-electric-list-mode, ebrowse-member-mode)
8935         (ebrowse-electric-position-mode):
8936         * progmodes/f90.el (f90-mode):
8937         * progmodes/fortran.el (fortran-mode):
8938         * progmodes/icon.el (icon-mode):
8939         * progmodes/idlw-help.el (idlwave-help-mode):
8940         * progmodes/idlw-shell.el (idlwave-shell-mode):
8941         * progmodes/idlwave.el (idlwave-mode):
8942         * progmodes/inf-lisp.el (inferior-lisp-mode):
8943         * progmodes/m4-mode.el (m4-mode):
8944         * progmodes/meta-mode.el (metafont-mode, metapost-mode):
8945         * progmodes/modula2.el (modula-2-mode):
8946         * progmodes/octave-inf.el (inferior-octave-mode):
8947         * progmodes/octave-mod.el (octave-mode):
8948         * progmodes/pascal.el (pascal-mode):
8949         * progmodes/sh-script.el (sh-mode):
8950         * progmodes/sql.el (sql-mode, sql-interactive-mode):
8951         * progmodes/vhdl-mode.el (vhdl-mode):
8952         * progmodes/xscheme.el (scheme-interaction-mode):
8953         * replace.el (occur-mode):
8954         * ses.el (ses-mode):
8955         * simple.el (completion-list-mode):
8956         * skeleton.el:
8957         * speedbar.el (speedbar-mode):
8958         * term.el (term-mode):
8959         * terminal.el (terminal-edit-mode):
8960         * textmodes/reftex-index.el (reftex-index-mode)
8961         (reftex-index-phrases-mode):
8962         * textmodes/reftex-sel.el (reftex-select-label-mode)
8963         (reftex-select-bib-mode):
8964         * textmodes/reftex-toc.el (reftex-toc-mode):
8965         * wdired.el (wdired-change-to-wdired-mode):
8966         * wid-browse.el (widget-browse-mode):
8967         Use run-mode-hooks.
8969         * array.el (array-mode):
8970         * calendar/todo-mode.el (todo-mode):
8971         * man.el (Man-mode):
8972         * play/landmark.el (lm-mode):
8973         * play/mpuz.el (mpuz-mode):
8974         Use kill-all-local-variables and run-mode-hooks.
8976         * subr.el (delay-mode-hooks): Specify indentation.
8978 2005-05-26  Mark A. Hershberger  <mah@everybody.org>
8980         * xml.el (xml-substitute-special): Don't die for undefined xml
8981         entities.
8983 2005-05-26  Jay Belanger  <belanger@truman.edu>
8985         * calc/calc-prog.el (calc-user-define-edit): Don't find substring
8986         of nil.
8988 2005-05-27  Nick Roberts  <nickrob@snap.net.nz>
8990         * progmodes/gdb-ui.el (gdb-frame-address):
8991         Rename from gdb-current-address.
8992         (gdb-previous-frame-address): Rename from gdb-previous-address.
8993         (gdb-selected-frame): Rename from gdb-current-frame.
8994         (gdb-get-selected-frame): Rename from gdb-get-current-frame.
8995         (gdb-frame-number): Rename from gdb-current-stack-level.
8996         (gdb-ann3): Match new mode-name for disassembly buffer.
8997         Extend initialization of variables.
8998         (gdb-post-prompt): Update disassembly from gdb-frame-handler.
8999         (gdb-memory-mode): Use mouse-face in header line.
9000         (gdb-assembler-buffer-name): Call it disassembly and give frame
9001         in mode line.
9002         (gdb-source-spec-regexp, gdb-assembler-custom)
9003         (gdb-invalidate-assembler, gdb-frame-handler):
9004         Make robust to leading zeroes in address format.
9006 2005-05-26  Carsten Dominik  <dominik@science.uva.nl>
9008         * textmodes/org.el (org-mode): Use `define-derived-mode' to
9009         define `org-mode'.
9010         (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
9012 2005-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9014         * log-edit.el (log-edit-changelog-entries): Distinguish between
9015         filenames like xfns.c and fns.c.
9017 2005-05-25  Luc Teirlinck  <teirllm@auburn.edu>
9019         * buff-menu.el (Buffer-menu-revert-function): Improve handling of
9020         point after reverting.
9021         (Buffer-menu-make-sort-button): Handle the case where
9022         `Buffer-menu-use-header-line' is nil.
9024 2005-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
9026         * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
9027         New funcs.  In minibuffer-local-completion-map bind `]', `/'
9028         and `:' to them.
9030 2005-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9032         * startup.el (normal-top-level): Allow modification of load-path while
9033         we're iterating over it.
9035 2005-05-25  Juanma Barranquero  <lekktu@gmail.com>
9037         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
9038         (thumbs-cleanup-thumbsdir, thumbs-call-convert)
9039         (thumbs-resize-interactive, thumbs-insert-image)
9040         (thumbs-insert-thumb, thumbs-dired-show-marked)
9041         (thumbs-find-image-at-point, thumbs-delete-images)
9042         (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
9043         (thumbs-increment-image-size, thumbs-decrement-image-size):
9044         Fix typos in docstrings.
9046 2005-05-24  Andre Spiegel  <spiegel@gnu.org>
9048         * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
9049         (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
9050         (cperl-mode): Use them.
9052 2005-05-24  Juanma Barranquero  <lekktu@gmail.com>
9054         * window.el (quit-window, shrink-window-if-larger-than-buffer):
9055         Doc fixes.
9057 2005-05-24  Nick Roberts  <nickrob@snap.net.nz>
9059         * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
9060         Bind C-d to gdb-inferior-io-eof.
9062         * dired.el (dired-dnd-popup-notice): Use message-box.
9064 2005-05-23  Masatake YAMATO  <jet@gyve.org>
9066         * bindings.el (mode-line-major-mode-keymap):
9067         Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
9069         * faces.el (mode-line-highlight): New face.
9071         * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
9072         as mouse-face.
9074         * bindings.el (top-level, help-echo, mode-line-modified)
9075         (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
9076         as mouse-face.
9078 2005-05-23  Juanma Barranquero  <lekktu@gmail.com>
9080         * progmodes/cc-engine.el (c-guess-basic-syntax):
9081         Remove spurious call to `zerop'.
9083         * emacs-lisp/cl.el (acons, pairlis): Add docstring.
9085 2005-05-23  Martin Stjernholm  <bug-cc-mode@gnu.org>
9087         CC Mode update to 5.30.10:
9089         * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
9090         could go past the limit in decoration level 2, thereby causing
9091         errors during interactive fontification.
9093         * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
9094         the file is evaluated interactively.
9096         * cc-engine.el (c-guess-basic-syntax): Handle operator
9097         declarations somewhat better in C++.
9099         * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
9100         make use of `run-mode-hooks' which has been added in Emacs 21.1.
9101         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
9102         (awk-mode): Use it.
9103         (make-local-hook): Suppress warning about obsoleteness.
9105         * cc-engine.el, cc-align.el, cc-cmds.el
9106         (c-append-backslashes-forward, c-delete-backslashes-forward)
9107         (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
9108         Compensate for return value from `forward-line' when it has moved
9109         but not to a different line due to eob.
9111         * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
9112         `objc-method-intro' and `objc-method-args-cont'.
9114 2005-05-23  Alan Mackenzie  <bug-cc-mode@gnu.org>
9116         CC Mode update to 5.30.10:
9118         * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
9119         in the copyright statement.  Incidentally, change "along with GNU
9120         Emacs" to "along with this program" where it occurs.
9122         * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
9123         so that it is interactive, hence can be found by M-x awk-mode
9124         whilst cc-mode is yet to be loaded.  Reported by Glenn Morris
9125         <gmorris+emacs@ast.cam.ac.uk>.
9127         * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
9128         Mode's regexps.
9130 2005-05-23  Kevin Ryde  <user42@zip.com.au>
9132         * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
9133         c-parse-state, to avoid a lisp error (on bad code).
9135 2005-05-23  Lute Kamstra  <lute@gnu.org>
9137         * subr.el (font-lock-defaults): Remove defvar as it's already
9138         defined in font-core.el.
9140         * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
9142 2005-05-23  Nick Roberts  <nickrob@snap.net.nz>
9144         * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
9145         more general and work when GDB variable "print pretty" is on,
9146         as with Emacs, for example.
9148 2005-05-22  Luc Teirlinck  <teirllm@auburn.edu>
9150         * font-core.el: Update comment.
9152         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
9153         Use `after-change-major-mode-hook' instead of `find-file-hook'.
9155         * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
9157 2005-05-22  Eli Zaretskii  <eliz@gnu.org>
9159         * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
9160         and `yank-handler' in the doc strings.
9162 2005-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9164         * emacs-lisp/cl.el (eql): Remove.  It's a builtin already.
9166 2005-05-22  Richard M. Stallman  <rms@gnu.org>
9168         * help.el (describe-key): Move print-help-return-message call
9169         out of conditional.
9171         * progmodes/etags.el (list-tags): Use with-no-warnings.
9173         * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
9174         (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
9175         (starttls-extra-args, starttls-extra-arguments): Add defvars.
9177         * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
9179         * language/viet-util.el (viet-viscii-nonascii-translation-table):
9180         Add defvar.
9182         * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
9183         Use defvar, not defconst.
9185         * hexl.el (hexl-follow-line): Use with-no-warnings.
9187         * emulation/tpu-extras.el: Use write-file-functions instead of
9188         write-file-hooks.
9190         * dired.el (dired-font-lock-keywords): Fontify files with junk
9191         extensions even if marked by -F.
9193 2005-05-22  Juanma Barranquero  <lekktu@gmail.com>
9195         * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
9196         (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
9197         * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
9198         (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
9199         (concatenate, list-length, get*, getf, cl-remprop):
9200         * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
9201         (etypecase, progv, lexical-let, lexical-let*)
9202         (multiple-value-bind, multiple-value-setq, shiftf):
9203         Improve argument/docstring consistency.
9205         * subr.el (focus-frame, unfocus-frame):
9206         Revert deletion on 2005-05-01.
9208 2005-05-22  Andre Spiegel  <spiegel@gnu.org>
9210         * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
9211         doesn't exist.
9213         * vc.el (vc-trunk-p): Add autoload cookie.  The function is used in
9214         vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
9216 2005-05-22  Nick Roberts  <nickrob@snap.net.nz>
9218         * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
9219         already deleted variables: auto-fill-hook, blink-paren-hook,
9220         lisp-indent-hook, inhibit-local-variables, unread-command-event,
9221         suspend-hooks, comment-indent-hook, meta-flag,
9222         before-change-function, after-change-function,
9223         font-lock-doc-string-face.
9225 2005-05-21  Luc Teirlinck  <teirllm@auburn.edu>
9227         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9229 2005-05-21  Eli Zaretskii  <eliz@gnu.org>
9231         * mail/rmail.el (rmail-reply): Filter the list in reply-to through
9232         rmail-dont-reply-to.
9234 2005-05-21  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
9236         * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
9237         literal blank when splitting new-header-values.
9239 2005-05-21  Matt Hodges  <MPHodges@member.fsf.org>
9241         * calendar/cal-menu.el (cal-menu-update): Add separator as a
9242         string so that tmm doesn't create a completion entry for it.
9244         * textmodes/table.el (table-disable-menu): Ditto.
9246 2005-05-21  Richard M. Stallman  <rms@gnu.org>
9248         * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
9250         * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
9252         * net/rcompile.el (remote-compile): Use compilation-start.
9254         * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
9256 2005-05-21  Daniel Pfeiffer  <occitan@esperanto.org>
9258         * files.el (auto-mode-alist): Check GNUmakefile before makefile.
9259         Default to makefile-bsdmake-mode on BSD systems.
9261         * imenu.el (imenu-generic-expression, imenu--generic-function'):
9262         REGEXP may also be a search function now.  The part of doc-string
9263         for describing the structure was 95% identical to that of
9264         `imenu--generic-function'.  Unify it there.
9266         * progmodes/make-mode.el (makefile-imenu-generic-expression):
9267         Use function to find dependencies, because regexp alone is so complex,
9268         it easily goes into an endless loop.
9269         (makefile-makepp-mode): Also add submenu for Perl functions
9270         defined in the makefile.
9271         (makefile-bsdmake-mode): Special imenu-generic-expression no
9272         longer needed, due to function call.
9273         (makefile-match-dependency): Take BOUND into account when checking
9274         if we're through.
9276 2005-05-20  Jay Belanger  <belanger@truman.edu>
9278         * calc/calc-units.el (calc-invalidate-units-table):
9279         Use inhibit-read-only.
9280         (math-build-units-table-buffer): Use view-mode.
9282 2005-05-20  David Kastrup  <dak@gnu.org>
9284         * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
9285         easy-menu-add is not a nop on Emacs; and clarify when to call it.
9287 2005-05-20  Lute Kamstra  <lute@gnu.org>
9289         * diff-mode.el (diff-header-face, diff-file-header-face)
9290         (diff-index-face, diff-hunk-header-face, diff-removed-face)
9291         (diff-added-face, diff-changed-face, diff-function-face)
9292         (diff-context-face, diff-nonexistent-face): Put them in the
9293         diff-mode customization group.
9295 2005-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9297         * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
9299         * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
9301         * font-lock.el (lisp-font-lock-keywords-2): Don't error.
9302         Minor regexp-optimization.
9304 2005-05-20  Carsten Dominik  <dominik@science.uva.nl>
9306         * textmodes/org.el (org-agenda-toggle-time-grid): New command.
9307         (org-agenda-use-time-grid, org-agenda-time-grid): New options.
9308         (org-agenda-add-time-grid-maybe): New function.
9309         (org-agenda): Call `org-agenda-add-time-grid-maybe'.
9310         (org-table-create): `dotimes' instead of `mapcar'.
9311         (org-xor): Simplify implementation.
9312         (org-agenda): `inhibit-redisplay' turned on.
9313         (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
9314         a consistent line after a state change.
9315         (org-agenda-remove-times-when-in-prefix): New option.
9316         (org-prefix-has-time): New variable.
9317         (org-parse-time-string): Optional argument NODEFAULT.
9318         (org-format-agenda-item): Parse items for time-of-day
9319         specifications and move these into the prefix if possible.
9320         (org-agenda-priority): Get current heading, not previous heading
9321         during agenda remote editing.
9323 2005-05-20  Juanma Barranquero  <lekktu@gmail.com>
9325         * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
9326         (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
9327         (remove-duplicates, delete-duplicates, substitute)
9328         (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
9329         (nsubstitute-if-not, find, find-if, find-if-not, position)
9330         (position-if, position-if-not, count, count-if, count-if-not)
9331         (mismatch, search, sort*, stable-sort, merge, member*)
9332         (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
9333         (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
9334         (intersection, nintersection, set-difference, nset-difference)
9335         (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
9336         (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
9337         (nsublis, tree-equal): Improve argument/docstring consistency.
9339         * subr.el (send-string, send-region):
9340         Remove obsolescence declaration.
9341         (window-dot, set-window-dot, read-input, show-buffer)
9342         (eval-current-buffer, string-to-int):
9343         Add release number to obsolescence declarations.
9345 2005-05-19  Kim F. Storm  <storm@cua.dk>
9347         * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
9348         (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
9350 2005-05-20  Matt Hodges  <MPHodges@member.fsf.org>
9352         * faces.el (list-faces-display): Make back button respect optional
9353         regexp arg.
9355 2005-05-19  Juanma Barranquero  <lekktu@gmail.com>
9357         * calculator.el (calculator-radix-grouping-mode)
9358         (calculator-radix-grouping-digits, calculator-displayer)
9359         (calculator-radix-grouping-separator, calculator-copy-displayer):
9360         * dabbrev.el (dabbrev-search-these-buffers-only):
9361         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
9362         (diff-advance-after-apply-hunk, diff-mode-hook)
9363         (diff-minor-mode-prefix):
9364         * imenu.el (imenu-use-popup-menu):
9365         * jit-lock.el (jit-lock-context-time):
9366         * newcomment.el (comment-fill-column, comment-column)
9367         (comment-style, comment-padding, comment-multi-line)
9368         (comment-empty-lines, comment-auto-fill-only-comments):
9369         * reveal.el (reveal-around-mark):
9370         * uniquify.el (uniquify-buffer-name-style)
9371         (uniquify-after-kill-buffer-p)
9372         (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
9373         (uniquify-min-dir-content, uniquify-separator)
9374         (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
9375         * w32-vars.el (w32-fixed-font-alist):
9376         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
9377         * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
9378         * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
9379         * progmodes/perl-mode.el (perl-indent-level)
9380         (perl-continued-statement-offset, perl-continued-brace-offset)
9381         (perl-brace-offset, perl-brace-imaginary-offset)
9382         (perl-label-offset, perl-indent-continued-arguments)
9383         (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
9384         * progmodes/tcl.el (tcl-indent-level)
9385         (tcl-continued-indent-level, tcl-auto-newline)
9386         (tcl-tab-always-indent, tcl-electric-hash-style)
9387         (tcl-help-directory-list, tcl-use-smart-word-finder)
9388         (tcl-application, tcl-command-switches, tcl-prompt-regexp)
9389         (inferior-tcl-source-command):
9390         * textmodes/fill.el (enable-kinsoku):
9391         * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
9392         * textmodes/table.el (table-yank-handler):
9393         Specify missing group (and type, if simple) in defcustom.
9395 2005-05-19  Luc Teirlinck  <teirllm@auburn.edu>
9397         * progmodes/compile.el (compilation-finish-function): Fix defvar.
9399 2005-05-19  Richard M. Stallman  <rms@gnu.org>
9401         * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
9403         * subr.el (event-basic-type): Don't get an error.
9404         (left-fringe-p): Function deleted.
9406         * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
9407         (list-buffers-noselect): Set `font-lock-face' property, not `face'.
9409         * dired-aux.el (dired-copy-file-recursive): Handle symlinks
9410         in recursive copy.
9412         * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
9414         * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
9416         * emacs-lisp/bytecomp.el
9417         (byte-compile-file-form-custom-declare-variable): Call
9418         byte-compile-nogroup-warn if appropriate.
9420         * progmodes/compile.el (compilation-finish-function): Mark obsolete.
9421         (compilation-set-window): Don't call left-fringe-p; do it directly.
9423 2005-05-19  Jay Belanger  <belanger@truman.edu>
9425         * calc/calc-graph.el (calc-graph-format-data): Make sure
9426         var-PlotRejects is bound before trying to check its value.
9428 2005-05-19  Carsten Dominik  <dominik@science.uva.nl>
9430         * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
9431         definition of this variable from reftex-global.el to reftex.el,
9432         because it is needed in the menu.
9434 2005-05-19  Lute Kamstra  <lute@gnu.org>
9436         * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
9437         years are fixed.  Don't insert a space after a dash.
9439 2005-05-19  Kim F. Storm  <storm@cua.dk>
9441         * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
9443 2005-05-19  Daniel Pfeiffer  <occitan@esperanto.org>
9445         * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
9446         strings, because (eq ... ?\\) is fairly frequent.
9448         * progmodes/make-mode.el (makefile-add-this-line-targets):
9449         Simplify and integrate into `makefile-pickup-targets'.
9450         (makefile-add-this-line-macro): Simplify and integrate into
9451         `makefile-pickup-macros.
9452         (makefile-pickup-filenames-as-targets): Simplify.
9453         (makefile-previous-dependency, makefile-match-dependency):
9454         Don't stumble over `::'.
9456 2005-05-19  Nick Roberts  <nickrob@snap.net.nz>
9458         * subr.el (post-command-idle-hook, post-command-idle-delay):
9459         Remove obsoletion of post-command-idle-hook and
9460         post-command-idle-delay.
9462         * faces.el (list-faces-display): Provide button when describe-face
9463         is called to take user back to the list of faces.
9465         * help-fns.el (describe-variable): Remove hyperlinks in a
9466         variable's value as these are quite frequently inappropriate.
9468         * follow.el (follow-submit-feedback, follow-mode):
9469         Remove references to post-command-idle-hook.
9471 2005-05-18  Daniel Pfeiffer  <occitan@esperanto.org>
9473         * progmodes/make-mode.el (makefile-previous-dependency)
9474         (makefile-match-dependency): Check for := (and in bsd mode also
9475         !=) to give a better result, even when font-lock is not on.
9477 2005-05-18  Jay Belanger  <belanger@truman.edu>
9479         * calc/calc-help.el (calc-s-prefix-help):
9480         Add `calc-copy-special-constant' to help string.
9482 2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>
9484         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
9486 2005-05-18  Jay Belanger  <belanger@truman.edu>
9488         * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
9489         in linear factors are in proper order.
9491 2005-05-18  Carsten Dominik  <dominik@science.uva.nl>
9493         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
9494         Support for jurabib.
9496         * textmodes/reftex.el (featurep): Define aliases for overlay
9497         commands, for XEmacs compatibility, and use these aliases in
9498         overlay initializations.
9499         (reftex-highlight): Use `reftex-move-overlay'.
9500         (reftex-unhighlight): Use `reftex-delete-overlay'.
9501         (reftex-uniq): Function removed.  Use `reftex-uniquify' instead.
9502         (reftex-access-search-path): Use `reftex-uniquify' instead of
9503         `reftex-uniq'
9505         * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
9506         `before-string' property modification enables for Emacs as well.
9507         (reftex-select-item): Use `reftex-delete-overlay'.
9508         (reftex-select-mark): Use `reftex-make-overlay' and
9509         `reftex-overlay-put'.
9510         (reftex-select-unmark): Use `reftex-delete-overlay' and
9511         `reftex-overlay-put'.
9513 2005-05-18  Lute Kamstra  <lute@gnu.org>
9515         * emacs-lisp/lisp.el (check-parens): Fix docstring.
9517 2005-05-18  Juanma Barranquero  <lekktu@gmail.com>
9519         * add-log.el (add-change-log-entry):
9520         * array.el (array-make-template, array-reconfigure-rows)
9521         (array-init-max-row, array-init-max-column)
9522         (array-init-columns-per-line, array-init-field-width):
9523         * replace.el (replace-match-maybe-edit, perform-replace):
9524         * textmodes/spell.el (spell-region):
9525         Replace `read-input' by `read-string'.
9527         * forms.el (forms-mode):
9528         * finder.el (finder-compile-keywords):
9529         * shadowfile.el (shadow-read-files):
9530         Replace `eval-current-buffer' by `eval-buffer'.
9532         * terminal.el (te-pass-through):
9533         * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
9534         (ange-ftp-raw-send-cmd):
9535         * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
9536         (send-process-next-char, telnet-initial-filter, telnet):
9537         Replace `send-string' by `process-send-string'.
9539         * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
9540         (prolog-consult-region): Replace `send-string' by
9541         `process-send-string'; replace `send-region' by `process-send-region'.
9543         * progmodes/delphi.el (delphi-log-msg):
9544         Replace `set-window-dot' by `set-window-point'.
9546         * subr.el (window-dot, set-window-dot, read-input, send-string)
9547         (send-region, show-buffer, eval-current-buffer):
9548         Make really obsolete, as the comment says.
9550 2005-05-17  Kim F. Storm  <storm@cua.dk>
9552         * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
9553         (cua--init-keymaps): Bind C-return instead of S-return to set
9554         rectangle mark.
9556         * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
9557         instead of S-return to toggle/clear rectangle mark.
9559 2005-05-17  Daniel Pfeiffer  <occitan@esperanto.org>
9561         * progmodes/make-mode.el (makefile-dependency-skip): New variable.
9562         (makefile-macroassign-regex, makefile-make-font-lock-keywords):
9563         Also fontify plain strings assigned to variables, mostly so that a
9564         colon has a face and is thus not taken as a dependency separator.
9565         (makefile-previous-dependency): Inline the new matcher, because it
9566         is too complex to work in both directions.
9567         (makefile-match-dependency): Eliminate `backward' arg (see above).
9568         Completely reimplemented so as to not sometimes go into an endless
9569         loop.  It should also be more efficient, because first it only
9570         searches for `:', instead of applying the very complex regexp.
9571         (makefile-mode): Cancel `font-lock-support-mode', because blocks
9572         to be fontified in one piece can be too long for JIT.
9573         Makefiles are never *that* big.
9575 2005-05-17  Reiner Steib  <Reiner.Steib@gmx.de>
9577         * dired.el (dired-mode): Simplify.
9579 2005-05-17  Lute Kamstra  <lute@gnu.org>
9581         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
9582         defcustom for the mode hook variable.
9584         * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
9585         Emacs Lisp Reference Manual.
9587 2005-05-17  Juanma Barranquero  <lekktu@gmail.com>
9589         * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
9590         (evenp, list*):
9591         * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
9592         * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
9594         * net/tramp-smb.el (tramp-smb-open-connection):
9595         Pass `tramp-chunksize' as fifth (required) argument.
9597 2005-05-16  Daniel Pfeiffer  <occitan@esperanto.org>
9599         * font-lock.el (lisp-font-lock-keywords-1):
9600         Set `font-lock-negation-char-face' for [^...] char group.
9601         (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
9603         * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
9604         a var, and refine it to mask one more level of nested vars.
9605         (makefile-rule-action-regex): Turn it into a var, and refine it so
9606         it recognizes backslashed continuation lines as belonging to the
9607         same command.
9608         (makefile-macroassign-regex): Refine it so it recognizes
9609         backslashed continuation lines as belonging to the same command.
9610         (makefile-var-use-regex): Don't look at the next char, because it
9611         might be the same one to be skipped by the initial [^$], leading
9612         to an overlooked variable use.
9613         (makefile-make-font-lock-keywords): Remove two parameters, which
9614         are now variables that some of the modes set locally.
9615         Handle dependency and rule action matching through functions, because
9616         regexps alone match too often.  Dependency matching now comes
9617         last, so it can check, whether a colon already matched something else.
9618         (makefile-mode): Inform that font-lock improves makefile parsing
9619         capabilities.
9620         (makefile-match-dependency, makefile-match-action): New functions.
9622 2005-05-16  Juanma Barranquero  <lekktu@gmail.com>
9624         * emacs-lisp/cl-extra.el (equalp): Doc fix.
9626         * align.el (align-regexp):
9627         * ansi-color.el (ansi-color-get-face):
9628         * array.el (array-reconfigure-rows, array-init-max-row)
9629         (array-init-max-column, array-init-columns-per-line)
9630         (array-init-field-width):
9631         * dired-aux.el (dired-trample-file-versions):
9632         * dired-x.el (dired-mark-sexp):
9633         * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
9634         * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
9635         * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
9636         * faces.el (face-read-integer):
9637         * files.el (backup-extract-version, insert-directory):
9638         * hexl.el (hexl-insert-decimal-char):
9639         * server.el (server-process-filter):
9640         * shell.el (shell-extract-num):
9641         * startup.el (command-line-1):
9642         * term.el (term-command-hook):
9643         * time-stamp.el (time-stamp, time-stamp-string-preprocess)
9644         (time-stamp-do-number):
9645         * time.el (display-time-update):
9646         * timezone.el (timezone-parse-date, timezone-zone-to-minute)
9647         (timezone-fix-time):
9648         * vms-patch.el (vms-suspend-resume-hook):
9649         * calendar/appt.el (appt-convert-time):
9650         * calendar/cal-bahai.el (mark-bahai-diary-entries):
9651         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
9652         * calendar/cal-islam.el (mark-islamic-diary-entries):
9653         * calendar/calendar.el (calendar-cursor-to-date)
9654         (calendar-star-date):
9655         * calendar/diary-lib.el (diary-attrtype-convert)
9656         (mark-diary-entries, diary-entry-time):
9657         * calendar/solar.el (solar-get-number):
9658         * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
9659         * emacs-lisp/re-builder.el (reb-display-subexp):
9660         * emulation/edt.el (edt-set-scroll-margins):
9661         * emulation/tpu-extras.el (tpu-set-scroll-margins):
9662         * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
9663         (vip-get-ex-count):
9664         * emulation/viper-ex.el (viper-get-ex-token)
9665         (viper-get-ex-buffer, viper-get-ex-count, ex-next):
9666         * international/fontset.el (fontset-plain-name):
9667         * mail/feedmail.el (feedmail-look-at-queue-directory):
9668         * mail/mailalias.el (mail-get-names):
9669         * mail/rmail.el (rmail-convert-to-babyl-format):
9670         * mail/rmailsum.el (rmail-make-basic-summary-line)
9671         (rmail-summary-next-same-subject, rmail-summary-rmail-update)
9672         (rmail-summary-goto-msg):
9673         * mail/smtpmail.el (smtpmail-read-response):
9674         * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
9675         (ange-ftp-vms-add-file-entry):
9676         * play/gametree.el (gametree-looking-at-ply)
9677         (gametree-current-branch-score):
9678         * progmodes/ada-xref.el (ada-prj-find-prj-file)
9679         (ada-xref-find-in-modified-ali, ada-find-in-src-path):
9680         * progmodes/cperl-mode.el (condition-case):
9681         * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
9682         (ebrowse-set-member-buffer-column-width)
9683         (ebrowse-select-1st-to-9nth):
9684         * progmodes/etags.el (etags-snarf-tag):
9685         * progmodes/flymake.el (flymake-parse-line):
9686         * progmodes/idlw-shell.el (idlwave-shell-parse-line)
9687         (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
9688         (idlwave-shell-menu-def):
9689         * progmodes/ps-mode.el (ps-run-goto-error):
9690         * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
9691         (vhdl-speedbar-contract-level):
9692         * term/mac-win.el (x-handle-numeric-switch):
9693         * term/sun-mouse.el (sun-get-frame-data):
9694         * term/w32-win.el (x-handle-numeric-switch):
9695         * term/x-win.el (x-handle-numeric-switch):
9696         * textmodes/ispell.el (ispell-parse-output):
9697         * textmodes/nroff-mode.el (nroff-outline-level):
9698         * textmodes/reftex-cite.el (reftex-bib-sort-year)
9699         (reftex-bib-sort-year-reverse, reftex-format-citation):
9700         * textmodes/reftex-parse.el (reftex-init-section-numbers)
9701         (reftex-section-number):
9702         * textmodes/texinfmt.el (texinfo-paragraphindent):
9703         Replace `string-to-int' by `string-to-number'.
9705         * international/latexenc.el: Add page marker to force the "Local
9706         Variables:" string out of the last page.
9708 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
9710         * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
9711         tooltip-change-major-mode.
9712         (gud-tooltip-print-command): Remove case where gud-minor-mode
9713         is gdb ("--fullname").
9714         (gud-tooltip-tips): Turn GUD tooltips off for this case and
9715         explain to user.
9717 2005-05-16  Jay Belanger  <belanger@truman.edu>
9719         * calc/calc-store.el (calc-copy-special-constant): New function.
9721         * calc/calc-ext.el (calc-init-extensions): Add binding for
9722         `calc-copy-special-constant'.
9724         * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
9725         for the `calc-copy-special-constant' command.
9727 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
9729         * subr.el (left-fringe-p): New function.
9731         * progmodes/compile.el (compilation-setup): Set local value of
9732         overlay-arrow-string to "" always.
9733         (compilation-set-window): Left fringe then don't scroll.
9734         No left fringe then no arrow and scroll message to top.
9735         (compilation-context-lines): Adjust doc string accordingly.
9737 2005-05-16  Kim F. Storm  <storm@cua.dk>
9739         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
9740         (ido-magic-delete-char): New commands for C-f, C-b, C-d.
9741         (ido-wide-find-dir-or-delete-dir): New command for M-d.
9742         (ido-define-mode-map): Bind them.  Add C-x prefix to fallback commands.
9743         (ido-read-file-name): Handle commands with ido property value
9744         equal to find-file as reading a file name, to allow C-d to enter dired.
9745         (ibuffer-find-file): Add ido property with value find-file.
9747 2005-05-15  Kim F. Storm  <storm@cua.dk>
9749         * subr.el (open-network-stream-nowait): Remove.
9750         (open-network-stream-server): Remove.
9752 2005-05-15  Richard M. Stallman  <rms@gnu.org>
9754         * faces.el (describe-face): Output a definition link button.
9756         * help-mode.el (help-face-def): New button type.
9758         * emacs-lisp/copyright.el (copyright-fix-years):
9759         Match properly if the first year is 2-digit.
9760         Don't mess up the whitespace after the years by filling.
9762         * dired-aux.el (dired-mark-confirm):
9763         Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
9765         * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
9766         (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
9767         (dired-mark-pop-up): Handle FILES = (t FILE) specially.
9769         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9770         Set font-lock-comment-start-skip.
9772         * font-lock.el (font-lock-comment-start-skip): New variable.
9773         (font-lock-comment-end-skip): New variable.
9774         (font-lock-fontify-syntactically-region): Use them if non-nil.
9776 2005-05-15  Jay Belanger  <belanger@truman.edu>
9778         * calc/calc-store.el (calc-store-value): Return a string rather
9779         than display it as a message.
9780         Use calc-var-name for variable name.
9781         (calc-store-into): Add the result of calc-store-value to message.
9782         (calc-copy-variable): Add a message.
9783         (calc-store-exchange): Improve error messages.
9784         (calc-store-binary, calc-store-map): Don't reset the values of
9785         special constants.
9787 2005-05-14  Luc Teirlinck  <teirllm@auburn.edu>
9789         * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
9790         manual to docstring.
9792         * files.el (hack-local-variables-confirm): Add STRING argument.
9793         Make the function handle non file visiting buffers correctly.
9794         (hack-local-variables-prop-line, hack-local-variables)
9795         (hack-one-local-variable): Use STRING arg of
9796         `hack-local-variables-confirm'.
9798 2005-05-14  Michael Albinus  <michael.albinus@gmx.de>
9800         Sync with Tramp 2.0.49.
9802         * net/tramp.el (tramp-handle-dired-call-process)
9803         (tramp-handle-insert-directory):`insert-buffer' cannot be used
9804         because the contents of the Tramp buffer is changed before
9805         insertion (`expand-file' and alike).
9806         (tramp-handle-insert-directory): If `localname' has an empty
9807         nondirectory name, it must not be quoted.
9808         (tramp-pre-connection): Add parameter CHUNKSIZE.  Make local
9809         variable `tramp-chunksize'.  Change callees.
9810         (tramp-open-connection-setup-interactive-shell): Check remote host
9811         for buggy `send-process-string' implementation.
9812         Set `tramp-chunksize' if found.  Reported by Michael Kifer
9813         <kifer@cs.sunysb.edu> (and a lot of other people all the years).
9814         (tramp-handle-shell-command): `insert-buffer' cannot be used
9815         because the contents of the Tramp buffer is changed before
9816         insertion (`expand-file' and alike).  Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
9817         <frederic.bothamy@free.fr>.
9818         (tramp-set-auto-save): Actions should be done for Tramp file name
9819         handler only.  Ange-FTP has its own auto-save mechanism.
9820         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
9821         (tramp-set-auto-save-file-modes): Set file modes of
9822         `buffer-auto-save-file-name' to ?\600 as fallback solution.
9823         Reported by Ferenc Wagner <wferi@tba.elte.hu>.
9824         (tramp-bug): Remove obsolete variable.
9825         (tramp-append-tramp-buffers): Rewrite partly.  More suitable check
9826         for presence of `mml-mode'.  Make it running for older Emacsen as well.
9828 2005-05-14  John Paul Wallington  <jpw@pobox.com>
9830         * ibuf-ext.el (define-ibuffer-filter filename):
9831         If `dired-directory' is a list, use its car.
9833 2005-05-14  Daniel Brockman  <daniel@brockman.se>  (tiny change)
9835         * ibuffer.el (define-ibuffer-column filename):
9836         If `dired-directory' is a list, use its car.
9838 2005-05-14  Richard M. Stallman  <rms@gnu.org>
9840         * subr.el (symbol-file): Doc fix.
9842         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
9843         (byte-compile-form): Call byte-compile-nogroup-warn.
9844         (byte-compile-warning-types): Doc fix.
9846         * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
9848         * progmodes/cc-engine.el (c-literal-faces):
9849         Add font-lock-comment-delimiter-face.
9851         * net/net-utils.el (dig): Use with-no-warnings.
9853         * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
9854         (sc-recite-frame-alist, sc-default-cite-frame)
9855         (sc-default-uncite-frame, sc-default-recite-frame)
9856         (sc-attrib-selection-list, sc-rewrite-header-list):
9857         Mark as risky-local-variable.
9859         * international/ogonek.el (ogonek-jak, ogonek-how):
9860         Don't use beginning-of-buffer.
9862         * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
9864         * calendar/solar.el (solar-data-list): Move definition up.
9866         * dnd.el (dnd-protocol-alist): Add autoload.
9868         * progmodes/sh-script.el: Many doc usage fixes.
9869         (sh-indent-after-do): Change default to match common styles.
9871 2005-05-13  Luc Teirlinck  <teirllm@auburn.edu>
9873         * files.el (interpreter-mode-alist)
9874         (auto-mode-interpreter-regexp): Doc fixes.
9876 2005-05-13  Matt Hodges  <MPHodges@member.fsf.org>
9878         * tmm.el (tmm-get-keymap): Include only active menus and menu items.
9880         * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
9882 2005-05-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9884         * dired.el (dired-mode): make-variable-buffer-local =>
9885         make-local-variable.
9887 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9889         * term/mac-win.el (mac-select-convert-to-string): Try coding
9890         systems in mac-script-code-coding-systems if specified one cannot
9891         encode string for `com.apple.traditional-mac-plain-text'.
9893 2005-05-13  Daniel Pfeiffer  <occitan@esperanto.org>
9895         * progmodes/make-mode.el (makefile-targets-face)
9896         (makefile-shell-face, makefile-makepp-perl-face): New faces.
9897         (makefile-dependency-regex): Fix it to not make the colon in
9898         $(var:a=b) special.
9899         (makefile-rule-action-regex): New regexp for highlighting embedded
9900         Shell strings.
9901         (makefile-macroassign-regex): Handle != for highlighting as
9902         embedded Shell strings.
9903         (makefile-var-use-regex): New const.
9904         (makefile-statements, makefile-automake-statements)
9905         (makefile-gmake-statements, makefile-makepp-statements)
9906         (makefile-bsdmake-statements): New consts.
9907         (makefile-make-font-lock-keywords): New function.
9908         (makefile-automake-font-lock-keywords)
9909         (makefile-gmake-font-lock-keywords)
9910         (makefile-makepp-font-lock-keywords)
9911         (makefile-bsdmake-font-lock-keywords): New consts.
9912         (makefile-mode-map): Add switchers between the various submodes.
9913         (makefile-mode): Document the availability of the variants.
9914         (makefile-automake-mode, makefile-gmake-mode)
9915         (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
9917         * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
9918         new variants of makefile-mode.
9920 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9922         * font-lock.el (font-lock-comment-delimiter-face): Fix up
9923         the inheritance.
9925 2005-05-12  Luc Teirlinck  <teirllm@auburn.edu>
9927         * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
9928         (inferior-lisp-load-hook): Convert defcustoms back to defvars.
9930         * files.el (normal-mode): Extend the scope of the
9931         `enable-local-variables' binding to include the `set-auto-mode' call.
9932         (magic-mode-alist): Doc fix.
9934 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9936         * font-lock.el (font-lock-comment-delimiter-face): Inherit from
9937         font-lock-comment-face rather than copying its setting.
9939 2005-05-12  Andreas Schwab  <schwab@suse.de>
9941         * eshell/esh-mode.el (eshell-send-input): Doc fix.
9943 2005-05-12  Lute Kamstra  <lute@gnu.org>
9945         * emacs-lisp/generic.el (define-generic-mode): Don't generate a
9946         defcustom for the mode hook variable.  Delete the last argument.
9947         * generic-x.el: Fix callers of define-generic-mode.
9948         (generic-x-modes): Delete group.
9949         (show-tabs-tab-face, show-tabs-space-face): Put them in the
9950         generic-x customization group.
9952 2005-05-12  Kim F. Storm  <storm@cua.dk>
9954         * font-lock.el (font-lock-negation-char-face): Default to "off".
9956         * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
9957         font-lock-negation-char-face to ! in !=.
9959 2005-05-12  Masatake YAMATO  <jet@gyve.org>
9961         * add-log.el (find-change-log): Fix typos in the docstring
9962         of function.
9964 2005-05-11  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
9966         * international/latexenc.el (latexenc-find-file-coding-system):
9967         Avoid `re-search-forward' when looking for input encoding because
9968         of speed and safety.  Better regular expressions for recognizing
9969         input encoding.  Limit a search for TeX-master/tex-main-file to
9970         the local variable section.
9972 2005-05-11  Dan Nicolaescu  <dann@ics.uci.edu>
9974         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
9975         syntax of $ to "'" (quote).
9977 2005-05-11  Reiner Steib  <Reiner.Steib@gmx.de>
9979         * dnd.el (dnd-protocol-alist): Improve custom type.
9981         * dired.el (dired-dnd-protocol-alist): New variable.
9982         (dired-mode): Use `dired-dnd-protocol-alist'.  Move call of
9983         `dired-mode-hook' to the end.
9985 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9987         * font-lock.el (font-lock-fontify-syntactically-region): Don't use
9988         comment-end if comment-start-skip is not set.
9989         Obey the font-lock-comment-delimiter-face variables.
9991 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9993         * files.el (executable-find): Move from executable.el.  Use
9994         locate-file.
9995         * progmodes/executable.el (executable-find): Move to files.el.
9997         * font-lock.el (font-lock-fontify-keywords-region): Use a marker
9998         when trying to ensure forward progress.
10000 2005-05-11  Chong Yidong  <cyd@stupidchicken.com>
10002         * mouse-sel.el (mouse-sel-follow-link-p): New function.
10003         (mouse-select, mouse-select-internal, mouse-extend-internal):
10004         Use it to implement mouse-1-click-follows-link functionality.
10006 2005-05-11  Richard M. Stallman  <rms@gnu.org>
10008         * font-lock.el (font-lock-fontify-syntactically-region):
10009         Use font-lock-comment-delimiter-face for comment delimiters.
10011 2005-05-10  Jay Belanger  <belanger@truman.edu>
10013         * calc/calc-help.el (calc-m-prefix-help): Add mention of
10014         preserving embedded modes.
10016 2005-05-10  Richard M. Stallman  <rms@gnu.org>
10018         * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
10020         * progmodes/ada-mode.el (ada-adjust-case-skeleton):
10021         Move from ada-stmt.el.
10022         (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
10024         * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
10025         Move to ada-mode.el.
10026         (ada-stmt-mode-hook): Delete; do the work in ada-mode.
10028         * cus-edit.el (custom-file): Call file-chase-links.
10030         * files.el (read-directory-name): Fix previous change.
10031         (hack-local-variables-confirm): New function.
10032         (hack-local-variables-prop-line, hack-local-variables)
10033         (hack-one-local-variable): Use it.
10035 2005-05-10  Lute Kamstra  <lute@gnu.org>
10037         * font-lock.el (font-lock-keywords-alist)
10038         (font-lock-removed-keywords-alist): Clarify docstrings.
10040 2005-05-10  Nick Roberts  <nickrob@snap.net.nz>
10042         * progmodes/gdb-ui.el (gdb-macro-info): New variable.
10043         (gdb-source-info): Check for preprocessor info.
10044         (gdb-tooltip-print-1): New function.  Don't print tooltip if it is
10045         a macro for a function.
10046         (gdb-info-breakpoints-custom): Try to find file again if not already
10047         found (user might have used GDB dir command).
10048         (gdb-get-location): Update gdb-location-alist correctly for change
10049         to gdb-info-breakpoints-custom.
10051         * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
10052         (gud-tooltip-print-command): Add gdbmi case.
10053         (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
10054         preprocessor info.
10056 2005-05-09  Reiner Steib  <Reiner.Steib@gmx.de>
10058         * startup.el (fancy-splash-insert): Fix typo in doc string.
10060 2005-05-09  Juanma Barranquero  <lekktu@gmail.com>
10062         * obsolete/float.el (string-to-float):
10063         * obsolete/hilit19.el (hilit-add-pattern):
10064         * obsolete/rnews.el (news-parse-range, news-select-message)
10065         (news-get-pruned-list-of-files): Replace `string-to-int' by
10066         `string-to-number'.
10068         * obsolete/uncompress.el: Set `find-file-not-found-functions', not
10069         `find-file-not-found-hooks'; use `add-hook'.
10070         (uncompress-while-visiting): Set `write-file-functions', not
10071         `write-file-hooks'; use `add-hook'.
10073 2005-05-09  Kim F. Storm  <storm@cua.dk>
10075         * emulation/cua-base.el (cua-copy-region, cua-cut-region)
10076         (cua-paste): Handle clipboard action.
10077         (cua--init-keymaps): Remap clipboard-kill-region and
10078         clipboard-kill-ring-save.
10080 2005-05-08  Eli Zaretskii  <eliz@gnu.org>
10082         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
10083         Improve commentary.
10085         * simple.el (next-error-overlay-arrow-position): Revert the change
10086         made on 2005-04-30.
10088 2005-05-07  Jay Belanger  <belanger@truman.edu>
10090         * calc/calcsel2.el (calc-commute-left, calc-commute-right)
10091         (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
10092         `calc-sel-reselect'.
10094         * calc/calc-mode.el (calc-save-modes): Reset the modes list if
10095         Calc is in embedded mode.
10097 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
10099         * progmodes/compile.el (compilation-setup):
10100         Set overlay-arrow-string to an empty string on text terminals.
10102         * textmodes/ispell.el (ispell-program-name): Try looking for
10103         "aspell" along exec-path, and if found, use it as the default
10104         speller program.
10106 2005-05-07  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
10108         * international/mule.el (sgml-xml-auto-coding-function):
10109         Recognize encoding='FOO' in single quotes as well as in double quotes.
10111 2005-05-07  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
10113         * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
10114         as well as `interactive', so that defmacro* would recognize
10115         `declare' forms.
10117 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
10119         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
10120         Explain more about the LIGHTER arg's usage in the doc string.
10121         Add commentary to clarify what the code does.  Fix the regexp that
10122         strips whitespace from LIGHTER.  Quote LIGHTER before using it,
10123         since it could have characters special to regular expressions.
10125 2005-05-07  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
10127         * replace.el (occur-1): Bind inhibit-read-only so that
10128         erase-buffer doesn't barf on read-only text properties (likewise
10129         for add-text-properties in occur-engine).  Mark buffer as unmodified.
10130         (occur-engine): Don't set buffer-read-only here.
10132 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10134         * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
10135         list-buffers-directory.  This caused the *cvs-commit* buffer to be
10136         sometimes mistakenly reused as a *cvs* buffer.
10138 2005-05-07  Nick Roberts  <nickrob@snap.net.nz>
10140         * tooltip.el: Move code for GUD tooltips into gud.el.
10141         (require): CL no longer needed to compile case.
10142         (tooltip-mode): Do not toggle functions for GUD tooltips.
10143         (tooltip-gud-tips-p): Remove.  Replace with minor mode
10144         gud-tooltip-mode in gud.el.
10145         (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
10146         (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
10147         tooltip-gud prefix with gud-tooltip and obsolete.
10148         (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
10149         (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
10150         (tooltip-mouse-motion): Mouse movement functions/variable.
10151         Rename in gud.el by adding gud prefix.
10152         (tooltip-gud-original-filter, tooltip-gud-dereference)
10153         (tooltip-gud-event, tooltip-toggle-gud-tips)
10154         (tooltip-gud-process-output, tooltip-gud-print-command)
10155         (tooltip-gud-tips): GUD tooltip functions/variables.  Rename in
10156         gud.el by replacing tooltip-gud prefix with gud-tooltip.
10157         (gdb-tooltip-print): Move to gdb-ui.el.
10159         * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
10160         (require): CL needed to compile case.
10161         (gud-tooltip-mode): Use to toggle GUD tooltips instead of
10162         tooltip-gud-tips-p.  Make it a minor-mode.
10163         (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
10164         (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
10165         (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
10166         (gud-tooltip-change-major-mode)
10167         (gud-tooltip-activate-mouse-motions-if-enabled)
10168         (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
10169         (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
10170         (gud-tooltip-original-filter, gud-tooltip-dereference)
10171         (gud-tooltip-event, tooltip-toggle-gud-tips)
10172         (gud-tooltip-process-output, gud-tooltip-print-command)
10173         (gud-tooltip-tips): Move from tooltip.el.
10175         * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
10176         (gdb-cpp-define-alist-flags): Doc fix.
10177         (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
10178         gud-tooltip-mode is t.
10180 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10182         * net/goto-addr.el (goto-address-fontify): Make sure the overlays
10183         evaporate if their text is deleted.
10184         (goto-address-at-point): Make it work as a mouse binding as well.
10185         (goto-address-at-mouse): Obsolete it.  Update users.
10187 2005-05-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
10189         * calendar/appt.el (top-level): No longer activate on load.
10191 2005-05-06  Juanma Barranquero  <lekktu@gmail.com>
10193         * calendar/cal-bahai.el (mark-bahai-diary-entries):
10194         * net/webjump.el (webjump):
10195         * progmodes/idlw-help.el (idlwave-do-context-help1)
10196         (idlwave-highlight-linked-completions):
10197         * textmodes/po.el (po-find-file-coding-system-guts):
10198         Replace `assoc-ignore-case' by `assoc-string'.
10200 2005-05-06  Eli Zaretskii  <eliz@gnu.org>
10202         * files.el (locate-file): Doc fix.
10204         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
10205         Remove the redundant test for ms-dos.
10207         * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
10208         look for the preprocessor with exec-suffixes.  If not found in
10209         standard places, look in exec-path.  Remove most of the tests that
10210         used system-type.
10212         * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
10214         * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
10216         * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
10217         file-name clash with jka-compr.el on 8+3 filesystems.
10219 2005-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10221         * term/mac-win.el: Don't define or bind scroll bar functions if
10222         x-toolkit-scroll-bars is t.
10223         (x-select-text, x-get-selection-value): Clear
10224         x-last-selected-text-clipboard if x-select-enable-clipboard is
10225         nil.
10226         (PRIMARY): Put mac-scrap-name property.
10227         (mac-select-convert-to-file-url): New function.
10228         (public.file-url): New selection target type.  Add to
10229         selection-converter-alist.
10230         (x-get-selection, x-selection-value): Handle it.
10231         (x-cut-buffer-or-selection-value): New alias.
10233 2005-05-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10235         * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
10236         entry to avoid calling bibtex-find-entry with arg global
10237         being t.  Remove arg key.
10238         (bibtex-summary-function, bibtex-complete-crossref-cleanup)
10239         (bibtex-copy-summary-as-kill): Change accordingly.
10241 2005-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10243         * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
10244         (org-agenda-date-later): Use with-current-buffer.
10246 2005-05-05  Luc Teirlinck  <teirllm@auburn.edu>
10248         * emacs-lisp/byte-run.el (define-obsolete-function-alias)
10249         (define-obsolete-variable-alias): Doc Fixes.
10251 2005-05-06  Kim F. Storm  <storm@cua.dk>
10253         * simple.el (line-move-1): Fix 2005-04-26 change.  Must still use
10254         vertical-motion when selective-display is active.
10256         * ido.el (ido-setup-hook): New hook.
10257         (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
10258         (ido-input-stack): New var.
10259         (ido-define-mode-map): Bind M-b to ido-push-dir.  Move old
10260         ido-next-work-file binding to M-O.
10261         Bind M-f to ido-wide-find-file-or-pop-dir.
10262         (ido-define-mode-map): Don't run ido-define-mode-map-hook.
10263         (ido-read-internal): Run ido-setup-hook.
10264         Catch quit in read-file-name and read-string to cancel edit.
10265         Handle new push, pop, and pop-all exit codes (for M-b/M-f).
10266         Automatically pop-all when completing a directory name (RET).
10267         (ido-file-internal): Add with-no-warnings around ffap and dired code.
10268         (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
10269         (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
10270         (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
10271         New functions for M-b/M-f to move among the directory components.
10272         (ido-make-merged-file-list): Catch quit to cancel merge.
10273         (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
10274         (ido-completion-help): No warnings for ido-completion-buffer-full.
10276 2005-05-05  Daniel Pfeiffer  <occitan@esperanto.org>
10278         * font-lock.el (font-lock-negation-char-face): New face and variable.
10279         * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
10280         * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
10281         * progmodes/cperl-mode.el (cperl-init-faces): Use it.
10282         * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
10284 2005-05-05  Juanma Barranquero  <lekktu@gmail.com>
10286         * emacs-lisp/byte-run.el (define-obsolete-function-alias):
10287         Fix typo in docstring.
10289         * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
10290         (ebrowse-print-statistics-line)
10291         (ebrowse-electric-position-mode-hook): Fix typo in docstring.
10293         * term/w32-win.el (image-library-alist): Add additional name for
10294         Xpm library.
10296 2005-05-05  Nick Roberts  <nickrob@snap.net.nz>
10298         * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
10299         use gcc instead of cpp.
10301         * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
10302         (gdb-create-define-alist): Use it.
10303         (gdb-cpp-define-alist-program): Update for MS-DOS.
10305 2005-05-04  Nick Roberts  <nickrob@snap.net.nz>
10307         * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
10309 2005-05-04  Richard M. Stallman  <rms@gnu.org>
10311         * help.el (describe-key): No error when UNTRANSLATED is nil.
10313         * simple.el (line-move-1): Fix previous change to signal errors
10314         appropriately.
10316 2005-05-03  Ulf Jasper  <ulf.jasper@web.de>
10318         * calendar/icalendar.el (icalendar-version): Now at 0.12.
10319         (icalendar-duration-correction): Remove.
10320         (icalendar--get-event-properties): Split result at commas.
10321         (icalendar--decode-isoduration): New optional argument
10322         DURATION-CORRECTION.
10323         (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
10324         (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
10325         (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
10326         (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
10327         (icalendar--convert-anniversary-to-ical): New functions, extracted
10328         from icalendar-export-region, with bug fixes.
10329         (icalendar-export-region): Use the above functions.
10330         (icalendar-import-buffer): Check before saving diary file.
10331         (icalendar--convert-recurring-to-diary)
10332         (icalendar--convert-non-recurring-all-day-to-diary)
10333         (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
10334         extracted from icalendar--convert-ical-to-diary, with bug fixes.
10335         (icalendar--convert-ical-to-diary): Use the above functions.
10337 2005-05-03  Nick Roberts  <nickrob@snap.net.nz>
10339         * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
10340         Remove these recent additions.
10341         (c-mode): Restore to before 2005-04-28.
10343         * progmodes/cc-vars.el (cc-define-list-program): Remove this
10344         recent addition.
10346         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
10347         (gdb-define-alist): New variables.
10348         (gdb-create-define-alist): New function.
10349         (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
10350         (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
10351         with string-to-number.
10352         (gdb-reset): Kill gdb-define-alist.  Move assignments outside loop.
10354         * progmodes/gud.el: Replace string-to-int with string-to-number.
10355         (gud-find-file): Handle gdb-define-alist.
10357         * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
10359 2005-05-02  Jay Belanger  <belanger@truman.edu>
10361         * calc/calc-aent.el (math-read-token):
10362         * calc/calc-bin.el (calc-word-size):
10363         * calc/calc-ext.el (calc-read-number-fancy):
10364         * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
10365         (math-parse-date, math-parse-standard-date, calcFunc-tzone):
10366         * calc/calc-frac.el (calc-over-notation):
10367         * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
10368         (calc-graph-num-points, calc-graph-init):
10369         * calc/calc-prog.el (calc-read-parse-table-part)
10370         (calc-edit-macro-repeats):
10371         * calc/calc-yank.el (calc-do-grab-rectangle):
10372         * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
10373         Replace `string-to-int' by `string-to-number'.
10375 2005-05-02  Kim F. Storm  <storm@cua.dk>
10377         * kmacro.el: Use executing-kbd-macro-index variable.
10379 2005-05-02  Thien-Thi Nguyen  <ttn@gnu.org>
10381         * net/rlogin.el (rlogin-parse-words): Delete func.
10382         (rlogin): Use split-string, not rlogin-parse-words.
10383         Also, if there are option-like elements in the parsed args,
10384         take the host to be the first arg immediately following them.
10385         Suggested by Michael Mauger.
10387 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
10389         * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
10391 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
10393         * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
10394         (cc-mode-cpp-program): Rename to cc-define-list-program and
10395         move to cc-vars.el.
10397         * progmodes/cc-vars.el (cc-define-list-program):
10398         Change to "gcc -E -dM -".  Make customizable.
10400 2005-05-02  Kim F. Storm  <storm@cua.dk>
10402         * emulation/cua-base.el: Fix check for CUA-mode if no init file.
10404 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
10406         * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
10408         * international/mule-util.el (truncate-string): Remove alias and
10409         obsolete declaration.
10411         * international/mule-cmds.el (update-iso-coding-systems):
10412         Remove alias and obsolete declaration.
10414         * international/mule.el (coding-system-parent): Remove alias and
10415         obsolete declaration.
10417         * subr.el (define-function, sref): Remove aliases and obsolete
10418         declarations.
10419         (chars-in-region): Remove obsolete declaration.
10421 2005-05-01  Richard M. Stallman  <rms@gnu.org>
10423         * info.el (Info-mode): Set widen-automatically to nil, locally.
10425         * simple.el (widen-automatically): New variable.
10426         (pop-global-mark): Obey widen-automatically.
10428 2005-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
10430         * term/xterm.el (function-key-map): Call substitute-key-definition
10431         before the keymap size is increased by a lot of define-key calls.
10433 2005-05-01  Richard M. Stallman  <rms@gnu.org>
10435         * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
10436         Rename ARG to ELEMENT.  Doc fix.
10438 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
10440         * allout.el (allout-exposure): Remove macro and obsolete declaration.
10441         Remove references to allout-exposure/change to allout-new-exposure.
10443         * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
10444         bytecode symbols.
10446         * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
10447         (compiled-function-p, focus-frame, unfocus-frame):
10448         Remove aliases and obsolete declarations.
10449         Back out inadvertent changes from previous commit.
10451 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
10453         * files.el (require-final-newline): Make Custom tags consistent
10454         with mode-require-final-newline.
10455         (mode-require-final-newline): Doc fix.
10457 2005-05-01  Stefan Monnier <monnier@iro.umontreal.ca>
10459         * international/latexenc.el (latexenc-find-file-coding-system):
10460         Fix regular expressions.
10462 2005-05-01  David Kastrup <dak@gnu.org>
10464         * international/latexenc.el (latexenc-find-file-coding-system):
10465         Fix regular expressions.
10467 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
10469         * subr.el (string-to-int): Make obsolete.
10471 2005-04-30  Richard M. Stallman  <rms@gnu.org>
10473         * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
10475         * loadup.el: load jka-comp-hook.
10477         * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
10478         (jka-compr-handler): Add autoload.  `put' calls moved
10479         to jka-comp-hook.el.
10480         (compression, jka-compr): defgroups moved to jka-comp-hook.el.
10481         (jka-compr-inhibit): Autoload.
10483         * jka-comp-hook.el: New file.
10484         Enable the mode by default.
10486         * files.el (backup-buffer-copy): Use copy-file instead
10487         of write-region, and put back the 'excl.
10489 2005-04-30  Chong Yidong  <cyd@stupidchicken.com>
10491         * progmodes/flymake.el (flymake-split-string)
10492         (flymake-split-string, flymake-log, flymake-pid-to-names)
10493         (flymake-reg-names, flymake-get-source-buffer-name)
10494         (flymake-unreg-names, flymake-add-line-err-info)
10495         (flymake-add-err-info): Clarify docstrings.
10496         (flymake-popup-menu, flymake-make-emacs-menu)
10497         (flymake-make-xemacs-menu): Add docstrings.
10498         (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
10499         Set variables directly throughout.
10501 2005-04-30  Nick Roberts  <nickrob@snap.net.nz>
10503         * progmodes/cc-mode.el (cc-create-define-alist): Check that file
10504         exists.  Initialize cc-define-alist.
10505         (c-mode): Add cc-create-define-alist locally to after-save-hook.
10506         If there is no file (Macroexpansion) don't create an alist.
10508 2005-04-29  Sam Steingold  <sds@gnu.org>
10510         * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
10511         (cc-create-define-alist): Use it instead of the hard-coded string.
10513 2005-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10515         * international/mule-conf.el (file-coding-system-alist): Fix regexp
10516         for latexenc.
10518 2005-04-29  Lute Kamstra  <lute@gnu.org>
10520         * emacs-lisp/generic.el: Improve commentary section.
10521         (define-generic-mode): Improve docstring.
10523 2005-04-29  Carsten Dominik  <dominik@science.uva.nl>
10525         * textmodes/org.el (many places): Change to quiet the byte compiler.
10526         (org-prefix-format-compiled): New variable.
10527         (org-compile-prefix-format): New function.
10528         (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
10529         (org-agenda-prefix-format,org-timeline-prefix-format): New options.
10530         (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
10531         (org-get-entries-from-diary): Use `org-get-time-of-day' for
10532         consistency with entries from `org-mode' files.
10533         (org-get-time-of-day): Fix bug with partial matches early in a line.
10534         (org-non-link-chars): New constant.
10535         (org-link-regexp): Respect `org-non-link-chars'.
10536         (org-agenda-day-view): Remove command.
10537         (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
10538         (org-follow-bbdb-link, org-store-link): Search also company field.
10539         (org-highlight-overlay): New variable.
10540         (org-highlight, org-unhighlight): New functions.
10541         (org-agenda-mode): Add pre-command-hook to remove highlight.
10542         (org-evaluate-time-range): Behavior depends upon whether time stamp
10543         contains a time or not.
10544         (org-show-subtree, org-show-entry): New functions.
10545         (org-agenda-cleanup-fancy-diary): Remove empty lines.
10547 2005-04-28  Luc Teirlinck  <teirllm@auburn.edu>
10549         * comint.el (comint-output-filter-functions): Add autoload cookie.
10551 2005-04-28  Kim F. Storm  <storm@cua.dk>
10553         * ido.el (ido-everywhere): Fix last change.
10555 2005-04-28  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
10557         * international/latexenc.el: New file.
10558         * international/mule-conf.el (file-coding-system-alist): For .tex,
10559         .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
10561 2005-04-28  Lute Kamstra  <lute@gnu.org>
10563         * font-lock.el (font-lock-add-keywords)
10564         (font-lock-remove-keywords): Clarify docstring.
10565         (font-lock-keywords-alist, font-lock-removed-keywords-alist):
10566         Don't start docstrings with a `*'.
10567         (font-lock-update-removed-keyword-alist): Give it a docstring.
10569         * generic-x.el: Update commentary section.
10570         Only require font-lock when compiling.
10571         Define all modes conditionally.
10572         Place all generic modes in the generic-x-modes customization group.
10573         (generic-x-modes): New customization group.
10574         (generic-default-modes, generic-mswindows-modes)
10575         (generic-unix-modes, generic-other-modes): New constants.
10576         (generic-define-mswindows-modes, generic-define-unix-modes):
10577         Update docstrings.  Make them obsolete.
10578         (generic-extras-enable-list): New default value.  Update docstring.
10579         Improve :type.  Change :set function.
10580         (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
10581         Fix docstring.
10583         * emacs-lisp/generic.el (generic-mode-internal):
10584         Simplify font-lock-defaults.
10585         (define-generic-mode): Fix docstring.
10587 2005-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10589         * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
10590         font-lock-face property to highlight matches.
10592 2005-04-28  Nick Roberts  <nickrob@snap.net.nz>
10594         * progmodes/cc-mode.el (cc-create-define-alist): New function.
10595         (cc-define-alist): New variable.
10596         (c-mode): Make it local and initialize it.
10598         * progmodes/gdb-ui.el (gdb-active-process): New variable.
10599         (gdb-exited): New function.
10600         (gdb-annotation-rules): Use it.
10601         (gdb-starting): Set gdb-active-process to t.
10602         (gdb-stopping): Amend doc string.
10603         (gdb-reset): Set gdb-active-process to nil.
10605         * tooltip.el (tooltip-gud-tips): Show the associated #define
10606         directives when a C program under GDB is not executing.
10608 2005-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10610         * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
10611         font-lock-fontify-syntactic-keywords.
10613         * font-lock.el (font-lock-default-fontify-region): Don't force
10614         parse-sexp-lookup-properties to nil.
10616 2005-04-27  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
10618         * man.el (man-mode-syntax-table): Set up `:' to have
10619         word-constituent syntax.
10621 2005-04-27  Lute Kamstra  <lute@gnu.org>
10623         * novice.el (disable-command): Don't add spurious newlines to the
10624         init file.  Reported by Dan Jacobson <jidanni@jidanni.org>.
10626 2005-04-26  Jay Belanger  <belanger@truman.edu>
10628         * calc/calc-yank.el (calc-edit-finish): Make sure there is more
10629         than one window before deleting window.
10631 2005-04-26  Luc Teirlinck  <teirllm@auburn.edu>
10633         * shell.el (shell-prompt-pattern): Doc fix.
10634         (shell-mode): Set paragraph-separate buffer locally to "\\'".
10636         * comint.el (comint-prompt-regexp, comint-get-old-input)
10637         (comint-use-prompt-regexp)
10638         (comint-use-prompt-regexp-instead-of-fields)
10639         (comint-replace-by-expanded-history, comint-send-input)
10640         (comint-output-filter, comint-get-old-input-default)
10641         (comint-line-beginning-position, comint-bol, comint-show-output)
10642         (comint-backward-matching-input, comint-forward-matching-input)
10643         (comint-next-prompt, comint-previous-prompt):
10644         Rename `comint-use-prompt-regexp-instead-of-fields' to
10645         `comint-use-prompt-regexp'.  Keep old name as alias and declare
10646         obsolete.
10647         (comint-use-prompt-regexp): Shorten first line of doc string.
10649         * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
10650         Set paragraph-separate buffer locally to "\\'".
10652         * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
10653         Adapt to above name change.
10655         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
10656         (smbclient-prompt-regexp): Ditto.
10658         * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
10660 2005-04-27  Nick Roberts  <nickrob@snap.net.nz>
10662         * progmodes/gdb-ui.el (gdb-location-alist): Rename from
10663         gdb-location-list.
10664         Break lines that are over 80 characters wide.
10666 2005-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10668         * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
10669         New fun and var, to preserve compatibility.
10671         * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
10673 2005-04-26  Dominique de Waleffe  <ddw@missioncriticalit.com>  (tiny change)
10675         * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
10676         name to file-newer-than-file-p.
10678 2005-04-26  Richard M. Stallman  <rms@gnu.org>
10680         * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
10682         * progmodes/python.el (python-mode):
10683         Use new name eldoc-documentation-function.
10685         * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
10687         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
10688         (eldoc-documentation-function):
10689         Rename from eldoc-print-current-symbol-info-function.  Calls changed.
10691 2005-04-26  Nick Roberts  <nickrob@snap.net.nz>
10693         * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
10695 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
10697         * term/xterm.el (function-key-map): Fix strings for
10698         {C,S,A,C-S}-f[1-4].  Use substitute-key-definition to bind
10699         {C,S,A,C-S}-{f1-f12}.
10701 2005-04-26  Kenichi Handa  <handa@m17n.org>
10703         * international/mule-cmds.el (select-safe-coding-system):
10704         Fix previous change.
10706 2005-04-26  Lute Kamstra  <lute@gnu.org>
10708         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
10710         * font-lock.el (font-lock-fontify-region-function): Fix docstring.
10711         (font-lock-comment-delimiter-face): Ditto.
10713         * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
10715 2005-04-25  Jay Belanger  <belanger@truman.edu>
10717         * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
10718         to t while inserting information; use help-mode.
10720 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
10722         * term.el (ansi-term-color-vector): Use the xterm colors.
10723         (term-raw-map): Don't add mappings for \eO and \e[.  Map deletechar.
10725 2005-04-25  Lute Kamstra  <lute@gnu.org>
10727         * font-core.el (font-lock-defaults): Fix docstring.
10729         * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
10731 2005-04-25  Kenichi Handa  <handa@m17n.org>
10733         * international/mule-cmds.el (select-safe-coding-system):
10734         Don't check consistency with coding: spec, etc if raw-text or
10735         no-conversion was found to be safe.
10737 2005-04-24  Richard M. Stallman  <rms@gnu.org>
10739         * mail/sendmail.el (mail-font-lock-keywords): Match any number of
10740         citation markers at start of each line.
10742         * mail/rmail.el (rmail-font-lock-keywords): Match any number of
10743         citation markers at start of each line.
10745         * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
10747         * files.el (mode-require-final-newline): Fix previous change.
10748         (require-final-newline): Fix type label.
10750 2005-04-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
10752         * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
10753         statement in buffer (broken by 2004-11-24 change).
10755 2005-04-24  Kim F. Storm  <storm@cua.dk>
10757         * ido.el (ido-everywhere): Save and restore old read-buffer-function
10758         and read-file-name-function values.  Don't overwrite existing
10759         non-nil values if ido-mode is enabled without ido-everywhere.
10761 2005-04-24  Luc Teirlinck  <teirllm@auburn.edu>
10763         * files.el (mode-require-final-newline): Minor doc fix.
10765 2005-04-24  Eli Zaretskii  <eliz@gnu.org>
10767         * subr.el (syntax-after): Doc fix.
10768         (syntax-class): If argument is nil, return nil.  Mask off upper 16
10769         bits, not 8 bits.
10771         * files.el (mode-require-final-newline): Doc fix.
10772         (backup-buffer-copy): Fix last change.
10774 2005-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10776         * term/mac-win.el: Require select.  Set selection-coding-system to
10777         mac-system-coding-system.  Call menu-bar-enable-clipboard.
10778         (x-last-selected-text-clipboard, x-last-selected-text-primary)
10779         (x-select-enable-clipboard): New variables.
10780         (x-select-text, x-get-selection, x-selection-value)
10781         (x-get-selection-value, mac-select-convert-to-string)
10782         (mac-services-open-file, mac-services-open-selection)
10783         (mac-services-insert-text): New functions.
10784         (CLIPBOARD, FIND): Put mac-scrap-name property.
10785         (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
10786         (public.tiff): Put mac-ostype property.
10787         (selection-converter-alist): Add entries for them.
10788         (mac-application-menu-map): New keymap.
10789         (interprogram-cut-function, interprogram-paste-function): Set to
10790         x-select-text and x-get-selection-value, respectively.
10791         (split-window-keep-point): Set to t.
10793 2005-04-23  Richard M. Stallman  <rms@gnu.org>
10795         * files.el (read-directory-name): Always pass non-nil
10796         DEFAULT-FILENAME arg to read-file-name.
10797         (backup-buffer-copy, basic-save-buffer-2): Take care against
10798         writing thru an unexpected existing symlink.
10799         (revert-buffer): In indirect buffer, revert the base buffer.
10800         (magic-mode-alist): Doc fix.
10801         (buffer-stale-function): Doc fix.
10802         (minibuffer-with-setup-hook): Avoid warning.
10803         (mode-require-final-newline): Doc and custom fix.
10805         * follow.el (follow-end-of-buffer): Use with-no-warnings.
10807         * font-lock.el (font-lock-comment-face): On terminals with few colors,
10808         use the default appearance.
10809         (font-lock-comment-delimiter-face): New face, new variable.
10811         * imenu.el (imenu--generic-function): The official position of a
10812         definition is the start of the line that BEG is in.
10814         * midnight.el (midnight-timer): Move defvar up.
10816         * mouse.el (mouse-drag-region-1): Delete some debugging code.
10818         * saveplace.el (save-place-to-alist): Use with-no-warnings.
10820         * startup.el (command-line): Use with-no-warnings.
10822         * window.el (window-size-fixed): New defvar.
10824         * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
10826         * mail/rmail.el (rmail-font-lock-keywords):
10827         Use font-lock-comment-delimiter-face.
10829         * mail/sendmail.el (mail-font-lock-keywords):
10830         Use font-lock-comment-delimiter-face.
10832         * progmodes/compile.el (next-error-highlight-timer): New defvar.
10834 2005-04-23  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
10836         * progmodes/compile.el (compilation-mode-font-lock-keywords):
10837         Specify t for LAXMATCH when matching directories.
10838         Save match data around compilation-compat-error-properties form.
10840 2005-04-23  David Kastrup  <dak@gnu.org>
10842         * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
10843         Mention that the autoloaded aliases should be kept for AUCTeX.
10845 2005-04-23  Andreas Schwab  <schwab@suse.de>
10847         * isearch.el (isearch-forward): Doc fix.
10849 2005-04-23  Eli Zaretskii  <eliz@gnu.org>
10851         * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
10852         (jit-lock-stealth-nice): Change default value to 0.5.
10854 2005-04-23  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
10856         * abbrev.el (write-abbrev-file): Write table entries in
10857         alphabetical order by table name.
10859 2005-04-22  Kim F. Storm  <storm@cua.dk>
10861         * ido.el (ido-read-internal): Fix `list' completion.
10863 2005-04-22  Kenichi Handa  <handa@m17n.org>
10865         * recentf.el (recentf-save-file-coding-system): New variable.
10866         (recentf-save-list): Encode the file by
10867         recentf-save-file-coding-system and add coding: tag.
10869 2005-04-22  Nick Roberts  <nickrob@snap.net.nz>
10871         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
10873 2005-04-21  Lute Kamstra  <lute@gnu.org>
10875         * loadhist.el (unload-feature): Don't remove a function from hooks
10876         if it is about to be restored to an autoload .  Remove functions
10877         that will become unbound from auto-mode-alist.  Simplify the code.
10879         * subr.el (assq-delete-all): New implementation that is linear,
10880         not quadratic.  Suggested by David Kastrup <dak@gnu.org>.
10881         (rassq-delete-all): New function.
10883         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
10884         Add size-indication-mode.
10886 2005-04-21  Kenichi Handa  <handa@m17n.org>
10888         * international/mule-cmds.el: Add autoload for widget-value in
10889         eval-when-compile.
10891 2005-04-21  Nick Roberts  <nickrob@snap.net.nz>
10893         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
10894         Add tooltip-mode.
10896         * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
10898 2005-04-20  Luc Teirlinck  <teirllm@auburn.edu>
10900         * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
10901         (inferior-lisp-filter-regexp, inferior-lisp-program)
10902         (inferior-lisp-load-command, inferior-lisp-prompt)
10903         (inferior-lisp-mode-hook, lisp-source-modes)
10904         (inferior-lisp-load-hook): defvar->defcustom.
10905         (inferior-lisp-program, inferior-lisp-prompt)
10906         (inferior-lisp-load-hook): Doc fixes.
10907         (inferior-lisp-install-letter-bindings): Small change in
10908         introductory comment.
10910 2005-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
10912         * vc.el (vc-annotate-color-map): Change some colors so that text
10913         using them as foreground is readable on both white and black
10914         backgrounds.
10916 2005-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10918         * international/mule-conf.el (translation-table-for-input):
10919         Remove redundant declaration.
10921 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
10923         * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
10925         * tooltip.el (tooltip-gud-tips-p): Expand documentation.
10926         (tooltip-toggle-gud-tips): New function.
10928 2005-04-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10930         * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
10931         right angle brackets.
10933 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
10935         * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
10937 2005-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10939         * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
10940         Remove.  Update callers to use expand-file-name instead.
10942         * subr.el (syntax-class): New function.
10944         * simple.el (blink-matching-open): Use it.
10946         * paren.el (show-paren-function): Use it to recognize parens that are
10947         also used in 2-char comment markers.
10949 2005-04-19  Lute Kamstra  <lute@gnu.org>
10951         * loadhist.el (unload-feature): Update for new format of
10952         load-history.  Simplify the code.
10954 2005-04-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10956         * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
10957         (mac-add-charset-info): New function.  Initialize variable
10958         mac-charset-info-alist using it.
10959         (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
10960         for translation.
10961         (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
10962         (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
10963         (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
10964         New CCL programs.
10966 2005-04-19  Kim F. Storm  <storm@cua.dk>
10968         * simple.el (next-buffer, prev-buffer, next-error)
10969         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
10970         (clone-indirect-buffer-other-window): Move bindings to bindings.el.
10972         * bindings.el (next-buffer, prev-buffer, next-error)
10973         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
10974         (clone-indirect-buffer-other-window): Move bindings from simple.el.
10975         (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
10976         (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
10978 2005-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10980         * isearch.el (isearch-edit-string): Make the search-ring available for
10981         minibuffer history commands.
10982         (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
10983         the default history commands now work just as well.
10984         (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
10986 2005-04-18  Kim F. Storm  <storm@cua.dk>
10988         * emulation/cua-base.el (cua--pre-command-handler): Add more
10989         elaborate check for shift modifier on non-window systems.
10991 2005-04-18  Lars Hansen  <larsh@math.ku.dk>
10993         * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
10995 2005-04-18  Kim F. Storm  <storm@cua.dk>
10997         * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
10998         and make it optional.  Don't test tooltip-gud-echo-area here.
10999         (tooltip-gud-process-output, gdb-tooltip-print):
11000         Pass tooltip-gud-echo-area to tooltip-show.
11001         (tooltip-help-tips): Remove second optional arg to tooltip-show.
11003 2005-04-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11005         * tooltip.el (tooltip-mode): `emacs-quick-startup' and
11006         `display-graphic-p' may not be bound yet.
11008 2005-04-17  Luc Teirlinck  <teirllm@auburn.edu>
11010         * startup.el (command-line): No longer enable Xterm Mouse mode by
11011         default in terminals compatible with xterm.
11013         * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
11015 2005-04-18  Nick Roberts  <nickrob@snap.net.nz>
11017         * tooltip.el (tooltip-gud-echo-area): Rename from
11018         tooltip-use-echo-area.
11019         (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
11020         (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
11021         area independently of where help tooltips are displayed.
11023 2005-04-17  David Kastrup  <dak@gnu.org>
11025         * cus-theme.el (custom-theme-write-variables): Quote variables
11026         where necessary.
11028 2005-04-17  Richard M. Stallman  <rms@gnu.org>
11030         * simple.el (yank-excluded-properties): Add follow-link to value.
11032         * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
11034         * startup.el (fancy-splash-max-time): Just 30 seconds.
11035         (fancy-splash-delay): Just 7.
11036         (fancy-splash-screens): No time limit other than fancy-splash-max-time.
11038         * loadhist.el (unload-feature): Update for new format of load-history.
11039         Simplify the code.
11041         * mail/rmail.el (rmail-ignored-headers): Ignore more headers
11042         (rmail-font-lock-keywords): Don't fontify the text of a citation.
11044         * mail/sendmail.el (mail-font-lock-keywords):
11045         Don't fontify subject text.
11046         Don't fontify the text of a citation.
11048 2005-04-17  Mark H. Weaver  <mhw@netris.org>  (tiny change)
11050         * comint.el (comint-output-filter): Run comint-output-filter-functions
11051         with point where the user had it.
11053 2005-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11055         * international/ucs-tables.el (ucs-set-table-for-input):
11056         Disable when using unify-on-decoding.
11058 2005-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
11060         * emulation/cua-base.el (cua-global-mark-face): Add special case
11061         for displays supporting a high number of colors.
11063 2005-04-16  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
11065         * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
11067 2005-04-16  Chong Yidong  <cyd@stupidchicken.com>
11069         * filesets.el (filesets-add-buffer): If user supplies a name of a
11070         non-existing fileset, create a new fileset.
11072 2005-04-16  Carsten Dominik  <dominik@science.uva.nl>
11074         * textmodes/org.el (org-up-heading-all): Fix bug with
11075         `outline-up-heading-all'.
11077 2005-04-16  Andreas Schwab  <schwab@suse.de>
11079         * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
11080         /etc/permissions.d/* and /etc/aliases.d/*.
11082 2005-04-16  Kenichi Handa  <handa@m17n.org>
11084         * international/code-pages.el (cp-make-coding-system):
11085         Set `translation-table-for-input' property value to the symbol
11086         ucs-mule-to-mule-unicode, not to that value.
11087         (pt154): Escape guillemet by `\'.
11089 2005-04-15  Luc Teirlinck  <teirllm@auburn.edu>
11091         * loadup.el: Load tooltip if x-show-tip is fboundp.
11093         * startup.el (command-line): Add comment.
11095         * tooltip.el (tooltip-mode): Specify correct standard value for
11096         Custom in init-value.
11098 2005-04-15  Nick Roberts  <nickrob@snap.net.nz>
11100         * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
11101         possible.
11103 2005-04-15  Carsten Dominik  <dominik@science.uva.nl>
11105         * textmodes/org.el (org-agenda-date-prompt): Rename from
11106         `org-agenda-date-today'.
11107         (org-evaluate-time-range): Insert at point instead of directly
11108         after time range.
11109         (org-first-headline-recenter, org-subtree-end-visible-p)
11110         (org-optimize-window-after-visibility-change): New functions
11111         (org-agenda-post-command-hook): Don't allow point at end of line,
11112         to make sure it always hits the text properties.
11113         (org-agenda-next-date-line, org-agenda-previous-date-line):
11114         New commands.
11115         (org-set-regexps-and-options): Category may contain white space.
11116         (org-agenda-get-deadlines, org-agenda-get-scheduled):
11117         Improve marker positions.
11118         (org-agenda-new-marker): Argument POS made optional.
11119         (org-agenda-get-timestamps): Deadlines which are done are listed
11120         in org-done-face now.
11121         (org-agenda-get-todos, org-agenda-get-timestamps)
11122         (org-agenda-get-deadlines, org-agenda-get-scheduled):
11123         Set `undone-face' and `done-face' properties.
11124         (org-last-todo-state-is-todo): New variable.
11125         (org-todo): Set `org-last-todo-state-is-todo'.
11126         (org-agenda-todo): Change face according to
11127         `org-last-todo-state-is-todo'.  And change other lines referring to
11128         the same entry.
11129         (org-calendar-goto-agenda): New command.
11130         (org-calendar-to-agenda-key): New option.
11131         (org-startup-folded): New allowed value `content'.
11132         (org-set-regexps-and-options): Accept new value `content' for
11133         `org-startup-folded'.
11134         (org-get-current-options): Handle new value `content' for
11135         `org-startup-folded'.
11136         (org-insert-todo-heading): New command.
11137         (org-mode): Insert first line "*-* mode: org-mode -*-" when called
11138         interactively in empty file and option
11139         `org-insert-mode-line-in-empty-file' has been set.
11140         (org-agenda-todo,org-agenda-priority): Modify to use
11141         `org-agenda-change-all-lines'.
11142         (org-warning-face): Change color on dark background
11144 2005-04-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11146         * international/mule-cmds.el (set-locale-environment): On Mac OS,
11147         use preferences AppleLocale and AppleLanguages, and variable
11148         mac-system-locale for default locale.  On Mac OS Classic, use
11149         mac-system-coding-system for default coding systems.
11151         * term/mac-win.el: Don't set file-name-coding-system.
11152         Decode variables system-name, emacs-build-system, user-login-name, and
11153         user-full-name by mac-system-coding-system on Mac OS Classic.
11154         (mac-system-coding-system): New variable.
11156 2005-04-13  Luc Teirlinck  <teirllm@auburn.edu>
11158         * startup.el (command-line): Handle `xterm-mouse-mode' before
11159         reading init file.
11161         * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
11163 2005-04-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
11165         * progmodes/sh-script.el (sh-here-document-word): Make it a
11166         defcustom.  Doc fix.
11167         (sh-add): Bash uses $(( )) for arithmetic.
11168         (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
11169         (sh-maybe-here-document): Remove quotes and leading whitespace
11170         from heredoc word when closing.  Indent heredoc with tabs if word
11171         starts with "-".
11173 2005-04-13  Richard M. Stallman  <rms@gnu.org>
11175         * simple.el (undo): Fix previous change.
11177         * custom.el (defface): Doc fix.
11179 2005-04-13  Lute Kamstra  <lute@gnu.org>
11181         * Makefile.in (DONTCOMPILE): Remove list.
11182         (compile, compile-always): Don't use DONTCOMPILE.
11183         (update-authors): Load the library in which batch-update-authors
11184         is defined.
11185         * makefile.w32-in (DONTCOMPILE): Remove list.
11186         (compile, compile-always): Fix comments.
11187         (update-authors): Load the library in which batch-update-authors
11188         is defined.
11190         * generic-x.el (generic-mode-ini-file-find-file-hook):
11191         Rename to ini-generic-mode-find-file-hook.
11192         Keep generic-mode-ini-file-find-file-hook as an alias.
11193         (ini-generic-mode-find-file-hook): Rename from
11194         generic-mode-ini-file-find-file-hook.  Fix docstring.
11195         (ini-generic-mode): Docstring change.
11196         (bat-generic-mode-run-as-comint): Silence the byte compiler.
11198         * help.el (describe-key-briefly): UNTRANSLATED can be nil when
11199         called from lisp.
11201         * generic.el: Move to the emacs-lisp subdir.
11203 2005-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
11205         * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
11206         and C-S- function and cursor motion keys.
11208 2005-04-12  Luc Teirlinck  <teirllm@auburn.edu>
11210         * startup.el (command-line): Enable Xterm Mouse mode by default.
11211         * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
11212         for Custom.  No longer show "Mouse" in mode line when enabled.
11213         Doc fix.
11215 2005-04-12  Kim F. Storm  <storm@cua.dk>
11217         * emulation/cua-base.el (cua-rectangle-face)
11218         (cua-rectangle-noselect-face): Define face attributes here.
11220         * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
11222 2005-04-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
11224         * startup.el (command-line): Turn off blinking cursor if
11225         cursorBlink in resources is off or false.
11227 2005-04-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11229         * term/mac-win.el (dnd): Require dnd.
11230         (mac-drag-n-drop): Call dnd-handle-one-url.
11231         (kTextEncodingMacRoman, kTextEncodingISOLatin1)
11232         (kTextEncodingISOLatin2): Remove constants.
11233         (mac-script-code-coding-systems): New constant.
11234         (mac-handle-language-change): New function.
11235         (special-event-map): Bind it to `language-change' event.
11236         (mac-centraleurroman, mac-cyrillic): New coding systems.
11237         (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
11238         (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
11239         and mac-cyrillic-encoder to encode-mac-centraleurroman and
11240         encode-mac-cyrillic, respectively.
11242 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
11244         * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
11245         Don't set overlay-arrow-string to "=>" as this is done
11246         globally in C now.
11248 2005-04-12  Lute Kamstra  <lute@gnu.org>
11250         * generic-x.el (rc-generic-mode, rul-generic-mode):
11251         Fix auto-mode-alist entries.
11252         (etc-fstab-generic-mode): Tweak fontification.
11254         * generic.el (generic-make-keywords-list): Fix docstring.
11255         (generic-mode-internal): Simplify generic-font-lock-keywords.
11257 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
11259         * whitespace.el (whitespace-buffer-leading)
11260         (whitespace-buffer-trailing): Revert the incorrect test inversion.
11261         However, fix the highlight area for the leading and
11262         trailing whitespaces to show space.
11264 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
11266         * whitespace.el (whitespace-version): Bump to 3.5
11268         (whitespace-buffer-leading, whitespace-buffer-trailing):
11269         Invert sense of the test to highlight the whitespace.
11271 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
11273         * progmodes/gud.el (gud-display-line): GUD uses its own
11274         overlay arrow now so don't set overlay-arrow-string.
11275         (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
11277 2005-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
11279         * term.el (term-ansi-current-bold, term-ansi-current-underline)
11280         (term-ansi-current-reverse, term-ansi-current-invisible)
11281         (term-ansi-face-already-done): Change to boolean.
11282         (term-reset-terminal, term-handle-colors-array): Handle the above
11283         vars accordingly.
11284         (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
11285         (term-emulate-terminal): Use the new name.
11287         * faces.el (secondary-selection): Use yellow1, not yellow.
11288         (trailing-whitespace): Use red1, not red.
11290 2005-04-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
11292         * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
11293         (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
11294         (dired-dnd-handle-file): Call dnd-get-local-file-uri
11296         * cus-edit.el (dnd): New group.
11298         * term/w32-win.el (dnd): Require dnd
11299         (w32-drag-n-drop): Call dnd-handle-one-url.
11301         * x-dnd.el: Require dnd.
11302         (x-dnd-handle-uri-list, x-dnd-handle-file-name):
11303         Call dnd-handle-one-url.
11304         (x-dnd-types-alist, x-dnd-insert-utf8-text)
11305         (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
11306         to dnd-insert-text.
11307         (x-dnd-protocol-alist, x-dnd-open-file-other-window)
11308         (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
11309         (x-dnd-get-local-file-name, x-dnd-open-local-file)
11310         (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
11312         * dnd.el (dnd-protocol-alist): New file with generic DND functions.
11314 2005-04-11  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
11316         * wdired.el: Doc fixes.
11317         (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
11318         (wdired-use-dired-vertical-movement): Rename from
11319         wdired-always-move-to-filename-beginning.
11320         (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
11321         (wdired-change-to-wdired-mode): Change mode name.
11322         (wdired-newline): Delete.
11324 2005-04-11  Richard M. Stallman  <rms@gnu.org>
11326         * whitespace.el (whitespace-highlight-the-space):
11327         Don't call whitespace-unhighlight-the-space here.
11329         * simple.el (undo): Record t in undo-equiv-table
11330         for the redo record made by an undo-in-region.
11332 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
11334         * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
11335         (gdb-frame-inferior-io-buffer): New Functions to control
11336         display of separate IO buffer.
11337         (menu): Add them to menu-bar.
11338         (gdb-display-buffer): Check for buffer another frame.
11339         Protect GUD buffer.
11340         (gdb-setup-windows): Create IO buffer if not already there.
11341         (gdb-memory-mode): Remove purecopy noops.
11343 2005-04-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
11345         * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
11346         and pass to self-insert-command.
11348 2005-04-11  Lute Kamstra  <lute@gnu.org>
11350         * generic.el: Commentary section cleanup.
11351         (generic): Delete.
11352         (generic-use-find-file-hook, generic-lines-to-scan)
11353         (generic-find-file-regexp, generic-ignore-files-regexp)
11354         (default-generic-mode, generic-mode-find-file-hook)
11355         (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
11356         * generic-x.el (generic-x): Docstring fix.  Put it in the data group.
11357         (generic-use-find-file-hook, generic-lines-to-scan)
11358         (generic-find-file-regexp, generic-ignore-files-regexp)
11359         (default-generic-mode, generic-mode-find-file-hook)
11360         (generic-mode-ini-file-find-file-hook): Move from generic.el.
11362 2005-04-10  Karl Fogel  <kfogel@red-bean.com>
11364         * bookmark.el (bookmark-write-file): Catch errors writing file.
11365         This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
11367 2005-04-10  Richard M. Stallman  <rms@gnu.org>
11369         * startup.el (fancy-splash-tail): Update copyright year.
11370         (command-line): Split part of -Q into -D.
11371         (emacs-basic-display): New defvar.
11372         (fancy-splash-text): Correct name of menu item.
11374         * saveplace.el (save-place-alist-to-file): Catch errors writing file.
11376         * info.el (Info-fontify-node): Handle fontification of multiple * Menu
11377         lines in one node.
11379         * comint.el (comint-send-input): New arg ARTIFICIAL.
11380         Callers in this file changed.
11382         * abbrev.el (define-abbrevs): Read system abbrevs properly.
11384         * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
11386 2005-04-10  Chong Yidong  <cyd@stupidchicken.com>
11388         * url/url-ldap.el (url-ldap): Add docstring.  Fix call to
11389         `ldap-search-internal'.
11391 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11393         * files.el (set-auto-mode-1): Use line-end-position.
11395         * international/latin-1.el:
11396         * international/latin-2.el:
11397         * international/latin-3.el:
11398         * international/latin-4.el:
11399         * international/latin-5.el:
11400         * international/latin-8.el:
11401         * international/latin-9.el: Give punctuation syntax to NBSP.
11403         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
11404         (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
11405         Use char-classes to accept non-ascii letters, accepted in some recent
11406         bibtex implementations.
11408 2005-04-10  Luc Teirlinck  <teirllm@auburn.edu>
11410         * custom.el (custom-set-minor-mode): Any non-nil value for the
11411         variable should enable the mode when set through Custom.
11413 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11415         * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
11416         TAB binding so tab-always-indent is obeyed.
11417         (vhdl-minibuffer-local-map): Move initialization into declaration.
11418         (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
11419         (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
11420         (vhdl-hooked-abbrev): Avoid test for XEmacs.
11421         (vhdl-current-line): Use line-beginning-position.
11422         (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
11423         with-output-to-temp-buffer, so the current position can be recorded.
11425 2005-04-10  Masatake YAMATO  <jet@gyve.org>
11427         * progmodes/compile.el (compilation-error-regexp-alist-alist):
11428         Add regexp for gcov.
11430 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11432         * calendar/time-date.el (time-to-seconds, seconds-to-time)
11433         (days-to-time, time-subtract, time-add): Don't use the #xhhhh
11434         syntax which Emacs 20 doesn't support.
11436 2005-04-09  Richard M. Stallman  <rms@gnu.org>
11438         * help.el (describe-key-briefly, describe-key):
11439         Replace strings as event types with "(any string)".
11441 2005-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
11443         * arc-mode.el (archive-mode-map): Move initialization into
11444         the declaration.  Override *all* bindings of `undo'.
11445         (archive-lemacs): Remove, use (featurep 'xemacs) instead.
11447 2005-04-09  Jay Belanger  <belanger@truman.edu>
11449         * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
11451 2005-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
11453         * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
11454         (xterm-register-default-colors): Update color values computation
11455         to match xterm-200.
11457 2005-04-09  Kenichi Handa  <handa@m17n.org>
11459         * international/code-pages.el (iso-latin-7): Fix the map.
11461 2005-04-08  Luc Teirlinck  <teirllm@auburn.edu>
11463         * emacs-lisp/lisp.el (defun-prompt-regexp)
11464         (parens-require-spaces, buffer-end, end-of-defun)
11465         (insert-parentheses): Doc fixes.
11467 2005-04-08  Kim F. Storm  <storm@cua.dk>
11469         * comint.el (comint-highlight-prompt): Fix face spec.
11470         * hi-lock.el (hi-green): Likewise.
11472 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
11474         * cus-edit.el (custom-modified-face):
11475         * comint.el (comint-highlight-input): Fix previous changes.
11476         * term.el (term-handle-ansi-escape): Add a comment.
11478 2005-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11480         * whitespace.el (whitespace-highlight-the-space): Put the same overlay
11481         in the buffer and in whitespace-highlighted-space.
11482         (whitespace-unhighlight-the-space): Simplify.
11483         (whitespace-buffer): Simplify.
11485 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
11487         * textmodes/table.el (table-cell-face): Add special case for
11488         displays supporting a high number of colors.
11489         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
11490         (vhdl-font-lock-reserved-words-face)
11491         (vhdl-speedbar-architecture-face)
11492         (vhdl-speedbar-instantiation-face)
11493         (vhdl-speedbar-architecture-selected-face)
11494         (vhdl-speedbar-instantiation-selected-face): Likewise.
11495         * progmodes/sh-script.el (sh-heredoc-face): Likewise.
11496         * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
11497         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
11498         (ebrowse-root-class-face, ebrowse-member-attribute-face)
11499         (ebrowse-progress-face): Likewise.
11500         * progmodes/compile.el (compilation-info-face): Likewise.
11501         * progmodes/cc-fonts.el (c-invalid-face): Likewise.
11502         * emacs-lisp/re-builder.el (reb-match-3): Likewise.
11503         * calendar/calendar.el (diary-face): Likewise.
11504         * woman.el (woman-italic-face, woman-bold-face)
11505         (woman-unknown-face): Likewise.
11506         * wid-edit.el (widget-button-pressed-face): Likewise.
11507         * whitespace.el (whitespace-highlight-face): Likewise.
11508         * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
11509         * pcvs-info.el (cvs-marked-face): Likewise.
11510         * info.el (info-xref): Likewise.
11511         * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
11512         * hilit-chg.el (highlight-changes-face)
11513         (highlight-changes-delete-face): Likewise.
11514         * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
11515         (hi-red-b): Likewise.
11516         * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
11517         * font-lock.el (font-lock-keyword-face)
11518         (font-lock-function-name-face, font-lock-warning-face): Likewise.
11519         * cus-edit.el (custom-invalid-face, custom-modified-face)
11520         (custom-set-face, custom-changed-face, custom-variable-tag-face)
11521         (custom-group-tag-face-1, custom-group-tag-face): Likewise.
11522         * comint.el (comint-highlight-prompt): Likewise.
11524 2005-04-08  Lute Kamstra  <lute@gnu.org>
11526         * font-lock.el (font-lock-keywords): Docstring fixes.
11528 2005-04-08  Kenichi Handa  <handa@m17n.org>
11530         * ps-mule.el (ps-mule-show-warning): If the number of unprintable
11531         chars are more than a limit, print " and more..." at the tail.
11533 2005-04-08  Kim F. Storm  <storm@cua.dk>
11535         * emacs-lisp/authors.el (authors-aliases): Update list.
11536         (authors-ignored-files): New list.
11537         (authors-fixed-entries): Fix typo.
11538         (authors-renamed-files-alist): Update list.
11539         (authors-add): Check authors-ignored-files.
11541 2005-04-08  Carsten Dominik  <dominik@science.uva.nl>
11543         * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
11544         optional, to ensure backward compatibility.
11546 2005-04-08  Stephen Eglen  <stephen@gnu.org>
11548         * textmodes/flyspell.el (flyspell-large-region): Doc fix.
11550 2005-04-08  Kim F. Storm  <storm@cua.dk>
11552         * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
11554         * mouse.el (mouse-on-link-p): Doc fix.
11556 2005-04-07  Luc Teirlinck  <teirllm@auburn.edu>
11558         * ielm.el (ielm-prompt-read-only): Doc fix.
11560         * comint.el (comint-prompt-read-only): Doc fix.
11562 2005-04-07  Benjamin Rutt  <brutt@bloomington.in.us>
11564         * ffap.el (ffap-pass-wildcards-to-dired): New user option to
11565         ensure dired always handles wildcards passed to ffap.
11566         (find-file-at-point): Use it.
11567         (ffap-dired-wildcards): Doc fix.
11569 2005-04-07  Juri Linkov  <juri@jurta.org>
11571         * simple.el (next-error-overlay-arrow-position): New defvar.
11572         Put "=>" on its property `overlay-arrow-string'.  Add it to
11573         `overlay-arrow-variable-list'.
11575         * progmodes/compile.el (compilation-setup):
11576         Set `next-error-overlay-arrow-position' to nil.  Also set it to
11577         nil in the local hook `kill-buffer-hook'.  Make local variable
11578         `overlay-arrow-string' and set it to "=>".
11579         (compilation-goto-locus): Set BOL position to
11580         `next-error-overlay-arrow-position' instead of
11581         `overlay-arrow-position'.
11583         * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
11584         locally instead of adding it to the global hook.
11585         (Info-kill-buffer): Move up.
11587 2005-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
11589         * term/xterm.el (xterm-standard-colors): Update color values from
11590         xterm-200.
11592 2005-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11594         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
11596         * fast-lock.el:
11597         * lazy-lock.el: Move them to the obsolete subdir.
11599 2005-04-06  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
11601         * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
11602         (wdired-add-replace-advice): Remove.
11603         (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
11605 2005-04-06  Kim F. Storm  <storm@cua.dk>
11607         * startup.el (command-line): Add --bare-bones alias for -Q.
11609 2005-04-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11611         * term/mac-win.el: Use create-fontset-from-mac-roman-font to
11612         create the startup fontset if a font specification ends with
11613         `mac-roman'.
11615 2005-04-06  Lute Kamstra  <lute@gnu.org>
11617         * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
11618         change.
11620         * emacs-lisp/copyright.el (copyright-update-year): Replace the
11621         right subexpression.  Suggested by Jay Bingham <jay.bingham@hp.com>.
11623 2005-04-05  Lute Kamstra  <lute@gnu.org>
11625         * generic.el (generic-mode-internal): Fix 2005-03-31 change.
11626         (define-generic-mode): Ditto.  Fix debug declaration.
11628         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
11629         Put them in the generic-x group.
11631         * calendar/timeclock.el (timeclock): Doc fix.
11633         * generic.el (define-generic-mode): Don't use custom-current-group.
11634         Document default :group value.
11635         * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
11636         (define-global-minor-mode): Don't use custom-current-group.
11638 2005-04-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
11640         * startup.el (command-line-1): Display startup-echo-area-message
11641         when fancy splash screen is in use.
11643         * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
11644         (sh-escaped-newline): New face.
11645         (sh-font-lock-keywords) <shell>: Improve regexp for escaped
11646         newline, and use sh-escaped-newline face.
11648         * progmodes/tcl.el (tcl-escaped-newline): New face.
11649         (tcl-builtin-list): New variable.
11650         (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
11651         newlines.  Fix keywords subexpression number.
11653 2005-04-05  Carsten Dominik  <dominik@science.uva.nl>
11655         * textmodes/org.el (org-diary-default-entry): Fix call to
11656         `add-to-diary-entry'.
11658 2005-04-05  Kim F. Storm  <storm@cua.dk>
11660         * ediff-init.el: Use (featurep 'xemacs).
11662 2005-04-05  David Ponce  <david@dponce.com>
11664         * cus-edit.el (face): Derive from symbol widget.  Display sample
11665         of the current face on the fly.
11666         (widget-face-sample-face-get, widget-face-notify): New functions.
11667         (widget-face-value-create): Remove.
11669         * wid-edit.el (widget-field-end): Temporarily remove field
11670         narrowing before to call `get-char-property'.
11672 2005-04-04  Jay Belanger  <belanger@truman.edu>
11674         * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
11675         (math-read-subscripts): New variable.
11676         (math-read-preprocess-string): Process subscripts.
11678 2005-04-04  Luc Teirlinck  <teirllm@auburn.edu>
11680         * comint.el (comint-prompt-read-only): Doc fix.
11682         * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
11683         `-1'.  Doc fix.
11685 2005-04-04  Carsten Dominik  <dominik@science.uva.nl>
11687         * textmodes/org.el (org-insert-mode-line-in-empty-file):
11688         Change default value to nil.
11690 2005-04-04  Lute Kamstra  <lute@gnu.org>
11692         * autorevert.el (auto-revert-mode): Specify :group.
11693         * battery.el (display-battery-mode): Specify :group.
11694         * diff-mode.el (diff-minor-mode): Specify :group.
11695         * font-core.el (font-lock-mode): Specify :group.
11696         * hl-line.el (hl-line-mode): Specify :group.
11697         * iimage.el (iimage): New customization group.
11698         (iimage-mode): Specify :group.
11699         * longlines.el (longlines-mode): Specify :group.
11700         * master.el: Don't require easy-mmode.
11701         (master): New customization group.
11702         (master-mode): Specify :group.
11703         * msb.el (msb-mode): Specify :group.
11704         * reveal.el (reveal-mode): Specify :group.
11705         * simple.el (next-error-follow-minor-mode): Specify :group.
11706         * smerge-mode.el (smerge-mode): Specify :group.
11707         * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
11708         * emulation/cua-base.el (cua-mode): Specify :group.
11709         * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
11710         * language/thai-util.el (thai-auto-composition-mode)
11711         (thai-word-mode): Specify :group.
11712         * mail/supercite.el (sc-minor-mode): Specify :group.
11713         * progmodes/cwarn.el (cwarn-mode): Specify :group.
11714         * progmodes/flymake.el (flymake-mode): Specify :group.
11715         * progmodes/glasses.el (glasses-mode): Specify :group.
11716         * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
11717         * textmodes/enriched.el (enriched-mode): Specify :group.
11718         * textmodes/refill.el (refill-mode): Specify :group.
11720         * add-log.el (change-log-font-lock-keywords): Names in
11721         parenthesized lists can contain spaces.
11723 2005-04-04  Thien-Thi Nguyen  <ttn@gnu.org>
11725         * startup.el (fancy-splash-text): Shorten default text of
11726         "Emacs Tutorial" line.  Also, if the current language env
11727         indicates an available tutorial file other than TUTORIAL,
11728         extract its title and append it to the line in parentheses.
11729         (fancy-splash-insert): If arg is a thunk, funcall it.
11731 2005-04-04  Jay Belanger  <belanger@truman.edu>
11733         * calc.el (calc-language-alist): Add tags to customization type.
11735 2005-04-03  Luc Teirlinck  <teirllm@auburn.edu>
11737         * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
11738         Doc fix.
11740 2005-04-03  Marcelo Toledo  <marcelo@gnu.org>
11742         * add-log.el (change-log-font-lock-keywords): The manual
11743         describing a Change Log entry, says: (...) "Aside from these
11744         header lines, every line in the change log starts with a space or
11745         a tab.".  The font-lock was not highlighting lines started with
11746         spaces, added support for it.
11748 2005-04-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
11750         * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
11751         (bibtex-generate-url-list): Update docstring accordingly.  Put the
11752         complex example in the docstring.
11753         (bibtex-font-lock-url): Use pop.
11755 2005-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11757         * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
11759         * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
11761 2005-04-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
11763         * filesets.el (filesets-set-default): Doc fix.
11765 2005-04-03  Lute Kamstra  <lute@gnu.org>
11767         * generic.el (define-generic-mode): Add argument to specify
11768         keywords for defcustom.
11769         (default-generic-mode): Specify :group.
11771         * generic-x.el: Specify :group for all generic modes.
11773         * desktop.el (desktop-no-desktop-file-hook)
11774         (desktop-after-read-hook): Doc fix.
11776 2005-04-02  Luc Teirlinck  <teirllm@auburn.edu>
11778         * simple.el (visible-mode): Use explicit :group keyword.
11779         This changes the group of `visible-mode-hook' from paren-blinking
11780         to editing-basics.
11782 2005-04-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)
11784         * mail/rmail.el (rmail-parse-url): Bugfix.  Parse traditional
11785         mailbox specifications as well as URLs.
11786         (rmail-insert-inbox-text): Remove unused conditional branches.
11788 2005-04-01  Jay Belanger  <belanger@truman.edu>
11790         * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
11791         (calc-gnuplot-print-command): Move definitions to calc.el.
11793         * calc/calc-embed.el (calc-embedded-announce-formula)
11794         (calc-embedded-open-formula, calc-embedded-close-formula)
11795         (calc-embedded-open-word, calc-embedded-close-word)
11796         (calc-embedded-open-plain, calc-embedded-close-plain)
11797         (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
11798         (calc-embedded-open-mode, calc-embedded-close-mode):
11799         Move definitions to calc.el.
11801         * calc/calc.el (calc-settings-file, calc-language-alist):
11802         Make customizable.
11803         (calc-embedded-announce-formula, calc-embedded-open-formula)
11804         (calc-embedded-close-formula, calc-embedded-open-word)
11805         (calc-embedded-close-word, calc-embedded-open-plain)
11806         (calc-embedded-close-plain, calc-embedded-open-new-formula)
11807         (calc-embedded-close-new-formula, calc-embedded-open-mode)
11808         (calc-embedded-close-mode, calc-gnuplot-name)
11809         (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
11810         from other files and make customizable.
11812 2005-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11814         * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
11815         Use buffer-live-p.
11816         (cvs-mode-run): Don't call cvs-update-header here.
11817         (cvs-run-process): Call cvs-update-header.
11818         Use process properties for cvs-postprocess and cvs-buffer so that
11819         the sentinel can behave better if the temp buffer is killed.
11820         Use a pipe rather than a tty, to better handle unexpected prompts.
11821         (cvs-sentinel): Rewrite.  Call cvs-update-header.
11823 2005-04-01  Andre Spiegel  <spiegel@gnu.org>
11825         * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
11826         we go via Tramp or Ange-FTP.  Suggested by Kai Grossjohann.
11828 2005-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11830         * generic.el (define-generic-mode): Add indentation rule.
11832 2005-03-31  Luc Teirlinck  <teirllm@auburn.edu>
11834         * files.el (mode-require-final-newline): Make Custom correctly
11835         report a nil value and allow to set it to nil via Custom.
11836         Doc fix.
11838 2005-04-01  Kenichi Handa  <handa@m17n.org>
11840         * international/characters.el: Enable the correct case setting for
11841         dotless-i and dotted-I.
11843 2005-04-01  Kim F. Storm  <storm@cua.dk>
11845         * ido.el (ido-file-internal): Fall back to non-ido command if
11846         initial directory is on slow ftp (or tramp) host.
11848 2005-03-31  Richard M. Stallman  <rms@gnu.org>
11850         * emacs-lisp/autoload.el (make-autoload):
11851         Handle define-global-minor-mode.
11853         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
11854         Rename from easy-mmode-define-global-mode.
11855         (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
11857         * progmodes/scheme.el (scheme-mode-syntax-table):
11858         Update syntax of | and # for two-character comment syntax.
11860 2005-03-31  Lute Kamstra  <lute@gnu.org>
11862         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
11863         (define-minor-mode): Call custom-current-group at load-time.
11865         * generic.el (define-generic-mode): Add debug declaration.
11866         Add defcustom for the mode hook.
11867         (generic-mode-internal): Use run-mode-hooks.
11869 2005-03-31  Kim F. Storm  <storm@cua.dk>
11871         * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
11872         (mouse-fixup-help-message): New defun called by show_help_echo
11873         to fixup mouse-2 prefix in help messages when applicable.
11875         * tooltip.el (tooltip-show-help-function): Don't fixup message here.
11877 2005-03-31  Kenichi Handa  <handa@m17n.org>
11879         * language/thai-word.el (thai-find-word-ends): Pay attention to
11880         the case that we reach the end of buffer.
11882         * textmodes/fill.el (fill-text-properties-at): New function.
11883         (fill-newline): Use fill-text-properties-at instead of
11884         text-properties-at.
11886 2005-03-31  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
11888         * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
11889         not comint-quote-filename.
11891 2005-03-31  Thien-Thi Nguyen  <ttn@gnu.org>
11893         * help-fns.el (help-with-tutorial): Revert last change.
11895 2005-03-31  Kim F. Storm  <storm@cua.dk>
11897         * emulation/cua-base.el (cua-scroll-down): Add CUA property.
11899 2005-03-30  Paul Eggert  <eggert@cs.ucla.edu>
11901         * calendar/cal-china.el: Update reference to "Calendrical
11902         Calculations" book; there's a new edition.
11903         * calendar/cal-coptic.el: Likewise.
11904         * calendar/cal-french.el: Likewise.
11905         * calendar/cal-hebrew.el: Likewise.
11906         * calendar/cal-islam.el: Likewise.
11907         * calendar/cal-iso.el: Likewise.
11908         * calendar/cal-julian.el: Likewise.
11909         * calendar/cal-mayan.el: Likewise.
11910         * calendar/cal-persia.el: Likewise.
11911         * calendar/calendar.el: Likewise.
11912         * calendar/holidays.el: Likewise.
11913         * calendar/lunar.el: Likewise.
11914         * calendar/solar.el: Likewise.
11916         * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
11917         white space from doc string.
11919 2005-03-30  Jay Belanger  <belanger@truman.edu>
11921         * calc/calc-help.el (calc-full-help): Remove email address.
11923 2005-03-30  Thien-Thi Nguyen  <ttn@gnu.org>
11925         * help-fns.el (help-with-tutorial): Delete title line.
11927 2005-03-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
11929         * calendar/cal-x.el (calendar-one-frame-setup)
11930         (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
11931         rather than 'symbol for set-window-dedicated-p.
11933         * calendar/appt.el (appt-buffer-name): Make it a constant.
11934         (appt-add): Doc fix.
11936         * filesets.el (filesets-menu-path, filesets-menu-before)
11937         (filesets-menu-in-menu): Doc fix.  Now valid in GNU Emacs.
11938         (filesets-menu-cache-file): Use directory ~/.emacs.d.
11939         (filesets-add-submenu): Delete and use add-submenu instead.
11941 2005-03-30  Carsten Dominik  <dominik@science.uva.nl>
11943         * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
11944         (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
11945         (org-diary-default-entry): New function.
11946         (org-get-entries-from-diary): Better parsing of diary entries.
11947         (org-agenda-check-no-diary): New function.
11948         ("diary-lib"): Advice to function `add-to-diary-list', to allow
11949         linking to diary entries.
11950         (org-agenda-execute-calendar-command): New function.
11951         (org-agenda): Improve visible section in window.
11952         Use `org-fit-agenda-window'.
11953         (org-fit-agenda-window): New option.
11954         (org-move-subtree-down): Better handling of empty lines
11955         at end of subtree.
11956         (org-cycle): Numeric prefix is interpreted now as show-subtree N
11957         levels up.
11958         (org-fontify-done-headline): New option.
11959         (org-headline-done-face): New face.
11960         (org-set-font-lock-defaults): Use `org-headline-done-face'.
11961         (org-table-copy-down): Rename from `org-table-copy-from-above'.
11962         When current field is non-empty, it is copied to next row.
11963         (org-table-copy-from-above): Fix bug which made it
11964         impossible to copy fields containing only a single non-white character.
11966 2005-03-30  Kim F. Storm  <storm@cua.dk>
11968         * kmacro.el (kmacro-end-macro): Isearch may store this command
11969         into the macro -- so ignore it when executing keyboard macro.
11971 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
11973         * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
11975 2005-03-29  Kenichi Handa  <handa@m17n.org>
11977         * language/thai.el ("Thai"): Set setup-function and exit-function
11978         for Thai language environment.
11980         * language/thai-util.el: Require thai-word.
11981         (thai-word-mode-map): New variable.
11982         (thai-word-mode): New minor mode.
11983         (setup-thai-language-environment-internal): New function.
11984         (exit-thai-language-environment-internal): New function.
11986         * language/thai-word.el (thai-word-table): Declare it by defvar,
11987         use dolist to initialize it.
11988         (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
11989         (thai-fill-find-break-point): New functions.
11991 2005-03-29  Richard M. Stallman  <rms@gnu.org>
11993         * simple.el (idle-update-delay): Move definition up.
11994         (set-mark): Doc fix.
11996 2005-03-29  Chong Yidong  <cyd@stupidchicken.com>
11998         * longlines.el: New file.
12000         * simple.el (buffer-substring-filters): New variable.
12001         (filter-buffer-substring): New function.
12002         (kill-region, copy-region-as-kill): Use it.
12004         * register.el (copy-to-register, append-to-register)
12005         (prepend-to-register): Use filter-buffer-substring.
12007 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
12009         * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
12010         (gud-filter-pending-text): Move in front of gdb.
12011         (gud-overlay-arrow-position): New variable.
12012         (gud-sentinel, gud-display-line): Use it in place of
12013         overlay-arrow-position.
12015 2005-03-29  Glenn Morris  <gmorris@ast.cam.ac.uk>
12017         * progmodes/fortran.el (fortran-if-indent): Doc fix.
12018         (fortran-font-lock-keywords-2): Add "where", "elsewhere".
12019         (fortran-font-lock-keywords-4): New variable.
12020         (fortran-blocks-re, fortran-end-block-re)
12021         (fortran-start-block-re): New constants, for hideshow.
12022         (hs-special-modes-alist): Add a Fortran entry.
12023         (fortran-mode-map): Bind fortran-end-of-block,
12024         fortran-beginning-of-block to \M-\C-n, \M-\C-p.
12025         (fortran-mode): Doc fix.  Add fortran-font-lock-keywords-4.
12026         (fortran-looking-at-if-then, fortran-end-of-block)
12027         (fortran-beginning-of-block): New functions, for hideshow.
12029         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
12030         Doc fix.  Tweak regexp.
12031         (f90-beginning-of-block): Push mark first.
12033 2005-03-29  Jay Belanger  <belanger@truman.edu>
12035         * calc/calc.el: Update copyright date.
12036         (calc-version): Increase to 2.1.
12037         (calc-version-date): Remove.
12039         * calc/calc-help.el: Update copyright date.
12040         (calc-full-help): Remove reference to calc-version-date.
12041         Update copyright date.
12043 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12045         * vc.el (vc-do-command): Use a pipe for async processes, so password
12046         prompts don't show up at places where the user can't reply.
12048 2005-03-29  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
12050         * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
12051         on the file name we pass to the inferior shell.
12053 2005-03-29  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
12055         * progmodes/which-func.el (which-function): Be robust in the face of an
12056         imenu--make-index-alist failure.
12058 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12060         * reveal.el (reveal-mode-map): Don't override C-a and C-e.
12062         * progmodes/python.el (python-preoutput-filter): Fix last change.
12064 2005-03-29  Lute Kamstra  <lute@gnu.org>
12066         * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
12067         functions and compiled macros.
12068         (debug-convert-byte-code): Handle macros too.
12069         (debug-on-entry-1): Don't signal an error when trying to clear a
12070         function that is not set to debug on entry.
12072 2005-03-29  Jay Belanger  <belanger@truman.edu>
12074         * calc/calc-lang.el: Add functions to math-function-table
12075         properties of tex and math.
12077 2005-03-29  Kenichi Handa  <handa@m17n.org>
12079         * ps-mule.el (ps-mule-plot-string): Translate characters by
12080         ps-print-translation-table.
12081         (ps-mule-begin-job): Call find-charset-region/string with
12082         ps-print-translation-table.
12083         (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
12085         * ps-print.el (ps-print-translation-table): New variable.
12086         (ps-plot-region): Translate characters by ps-print-translation-table.
12088 2005-03-29  Juri Linkov  <juri@jurta.org>
12090         * simple.el (next-error-highlight-timer): New variable.
12092         * progmodes/compile.el (compilation-goto-locus):
12093         Use `next-error-highlight-timer' instead of `sit-for'.
12095 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12097         * mail/supercite.el (sc-mail-field): Use assoc-string.
12098         (sc-get-address): Simplify regexps.
12100         * files.el (minibuffer-with-setup-hook): New macro.
12101         (find-file-read-args): Use it to avoid let-binding
12102         minibuffer-with-setup-hook (which breaks turning on/off
12103         file-name-shadow-mode while in the prompt).
12105         * complete.el (PC-read-include-file-name-internal):
12106         Use test-completion.
12108 2005-03-28  Luc Teirlinck  <teirllm@auburn.edu>
12110         * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
12112 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12114         * window.el (window-buffer-height): Use count-screen-lines.
12116         * progmodes/python.el (python-preoutput-leftover): New var.
12117         (python-preoutput-filter): Use it.
12118         (python-send-receive): Loop until all the result has been received.
12120 2005-03-28  Juri Linkov  <juri@jurta.org>
12122         * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
12124         * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
12125         "Recover Crashed Session".
12126         (menu-bar-search-menu): Add ellipsis to "Search tagged files".
12127         (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
12128         (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
12129         (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
12130         (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
12131         (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
12132         (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
12133         (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
12135         * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
12136         Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
12137         Ediff Sessions", "Toggle use of separate control buffer frame",
12138         "Use separate frame for Ediff control buffer".
12140         * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
12141         Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
12142         "Rename Bookmark", "Delete Bookmark".
12144         * info.el (Info-mode-menu): Remove ellipsis from "Index".
12145         Add ellipsis to "Lookup a String", "Lookup a string in all indices".
12146         Add `:active Info-index-alternatives' to "Next Matching Item".
12148         * wdired.el (wdired-change-to-wdired-mode):
12149         Mention `wdired-abort-changes' key in the initial message.
12151         * international/mule.el (auto-coding-alist): Associate non-ascii
12152         image filename extensions with `no-conversion'.
12154 2005-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12156         * international/iso-acc.el:
12157         * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
12159 2005-03-26  Luc Teirlinck  <teirllm@auburn.edu>
12161         * textmodes/sgml-mode.el (html-mode): Doc update.
12163         * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
12165 2005-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
12167         * term.el (term-move-columns): Fix face after extending a line.
12168         (term-insert-spaces): Likewise.
12169         (term-reset-terminal): Fix off by one error.
12171 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
12173         * international/mule.el (auto-coding-alist): Add .xpi files.
12175         * files.el (auto-mode-alist): Add .xpi files.
12177 2005-03-26  Jure Cuhalev  <gandalf@owca.info>  (tiny change)
12179         * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
12181 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
12183         * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
12185 2005-03-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
12187         * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
12188         binding.  Suggested by Stephan Stahl <stahl@eos.franken.de>.
12190         * calendar/cal-move.el (calendar-beginning-of-year): Move the
12191         cursor to Jan 1 when needed.
12192         (calendar-end-of-year): Fix -/+ typo.
12193         Reported by Chong Yidong <cyd@stupidchicken.com>.
12195 2005-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12197         * progmodes/flymake.el (flymake-mode): Add autoload cookie.
12199         * emacs-lisp/debug.el (debugger-record-expression): Add a missing
12200         format to `message'.  Inspired by Deepak Goel <deego@gnufans.org>.
12202 2005-03-25  Richard M. Stallman  <rms@gnu.org>
12204         * filesets.el (filesets-init): Add autoload.
12206         * mail/mailalias.el (mail-directory): Doc fix.
12208 2005-03-25  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
12210         * mail/mailalias.el (mail-directory-process): Do nothing if
12211         mail-directory-process is an atom.
12212         (mail-get-names): Ignore mail-directory-names if it is an atom.
12213         (mail-directory-process defvar): Doc fix.
12214         (mail-names): Doc fix.
12216 2005-03-25  Johan Bockg\e,Ae\e(Brd  <bojohan+mail@dd.chalmers.se>  (tiny change)
12218         * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
12220 2005-03-26  Kenichi Handa  <handa@m17n.org>
12222         * international/mule-util.el (detect-coding-with-priority):
12223         Call update-coding-systems-internal before detect-coding-region.
12225 2005-03-26  Nick Roberts  <nickrob@snap.net.nz>
12227         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
12228         (gdb-frames-mode-map): Add follow-link property.
12230 2005-03-25  Jay Belanger  <belanger@truman.edu>
12232         * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
12233         for variables.
12235 2005-03-25  Juri Linkov  <juri@jurta.org>
12237         * image-mode.el: Optimize image filename extension regexps in
12238         autoload cookies.  Associate .x[bp]m with `image-mode-maybe'
12239         in `auto-mode-alist'.
12240         (image-mode): Add `image-toggle-display-text' to local hook
12241         `change-major-mode-hook'.  Display the image as an image by
12242         default.  Set `cursor-type' and `truncate-lines' if the image
12243         is already displayed.  Take into account the current mode (image
12244         or text) in message.
12245         (image-minor-mode): New minor mode.
12246         (image-mode-maybe, image-toggle-display-text): New functions.
12247         (image-toggle-display): Use called-interactively-p.
12248         Let-bind `inhibit-read-only' to t.
12250         * image-mode.el (image-minor-mode): Set `cursor-type' and
12251         `truncate-lines' if the image is already displayed.  Add turning
12252         image-minor-mode off to `change-major-mode-hook'.  Add message.
12253         Call `image-toggle-display-text' after turning image-minor-mode off.
12255 2005-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12257         * international/mule-cmds.el (set-locale-environment): For Mac OS X's
12258         Terminal.app, use utf-8.
12259         (set-display-table-and-terminal-coding-system): Add coding-system arg.
12260         (set-locale-environment): Use it.
12262         * term/xterm.el: Undo last change, better done in mule-cmds.el.
12264         * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
12266         * progmodes/python.el (python-close-block-statement-p)
12267         (python-outdent-p, python-current-defun): Use symbol-end.
12269 2005-03-25  Karl Chen  <quarl@cs.berkeley.edu>  (tiny change)
12271         * files.el (save-some-buffers): Doc fix.
12273 2005-03-25  Werner Lemberg  <wl@gnu.org>
12275         * complete.el, thumbs.el: Replace `legal' with `valid'.
12276         * calendar/calendar.el: Replace `legal' with `valid'.
12277         * emacs-lisp/advice.el: Replace `legal' with `valid'.
12278         * mail/supercite.el: Replace `legal' with `valid'.
12279         * progmodes/cperl-mode.el, progmodes/idlw-shell.el
12280         * progmodes/idlwave.el, progmodes/vhdl-mode.el:
12281         Replace `legal' with `valid'.
12282         * textmodes/reftex-vars.el, textmodes/reftex.el:
12283         Replace `legal' with `valid'.
12285 2005-03-25  Werner Lemberg  <wl@gnu.org>
12287         * calc/calc-forms.el, calc/calc-sel.el:
12288         * midnight.el, vc-cvs.el:
12289         * emacs-lisp/cl-macs.el:
12290         * emulation/vip.el:
12291         * eshell/esh-io.el, eshell/esh-var.el:
12292         * mail/supercite.el:
12293         * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
12294         * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
12295         * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
12296         * progmodes/sh-script.el, progmodes/xscheme.el:
12297         * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
12298         * textmodes/reftex-index.el, textmodes/reftex-parse.el
12299         * textmodes/reftex-ref.el, textmodes/reftex-vars.el
12300         * textmodes/reftex.el, textmodes/org.el:
12301         Replace `illegal' with `invalid'.
12303 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12305         * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
12306         (flymake-find-buildfile, flymake-find-possible-master-files)
12307         (flymake-check-include, flymake-parse-line): Replace loops over the
12308         length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
12310         * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
12311         Substitute file-name-as-directory in the rest of the file.
12312         (flymake-get-common-file-prefix): Rewrite, using compare-strings.
12313         (flymake-replace-region): Remove unused arg `buffer'.
12314         (flymake-check-patch-master-file-buffer): Update calls to it.
12315         (flymake-add-err-info): Remove unused var `count'.
12316         (flymake-mode): Use define-minor-mode.
12318         * progmodes/flymake.el: Use with-current-buffer.
12319         (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
12320         flymake-replace-regexp-in-string, flymake-line-beginning-position)
12321         (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
12322         Avoid testing for `xemacs'.
12323         (flymake-nop): Move.
12324         (flymake-region-has-flymake-overlays): Return the computed value.
12325         (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
12326         Remove unused var `endline'.
12327         (flymake-get-line-count): Remove unused function.
12328         (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
12330         * emulation/vi.el:
12331         * generic.el:
12332         * hilit-chg.el (global-highlight-changes):
12333         * hi-lock.el (hi-lock-mode):
12334         * follow.el: find-file-hooks -> find-file-hook.
12336         * comint.el (comint-insert-input): Obey mouse-yank-at-point.
12338 2005-03-24  Juri Linkov  <juri@jurta.org>
12340         * dired.el (dired-mode-map): Add menu item "Compare directories"
12341         for dired-compare-directories.
12343         * dired-aux.el (dired-compare-directories): Add autoload cookie.
12344         Doc fix.  Replace `read-file-name' with `read-directory-name'.
12346 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12348         * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
12350 2005-03-24  Jay Belanger  <belanger@truman.edu>
12352         * calc/calc-embed.el (calc-embedded-mode-change): Save all
12353         relevant mode settings in calc-embedded-original-modes when modes
12354         are permanently changed.
12356 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12358         * autoinsert.el: find-file-hooks -> find-file-hook.
12360 2005-03-24  Lute Kamstra  <lute@gnu.org>
12362         * generic.el (generic-font-lock-defaults): Make it obsolete.
12363         (generic-font-lock-keywords): New variable to replace
12364         generic-font-lock-defaults.
12365         (generic-mode-set-font-lock): Delete it.
12366         (generic-mode-internal): Don't call generic-mode-set-font-lock.
12367         (generic-bracket-support): Add docstring.
12369         * generic-x.el: Rename generic-font-lock-defaults to
12370         generic-font-lock-keywords throughout.
12371         (mailagent-rules-setup-function): Delete it.
12372         (mailagent-rules-generic-mode): Use anonymous function instead.
12373         (show-tabs-generic-mode-font-lock-defaults-1)
12374         (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
12375         Quote faces.
12376         (show-tabs-tab-face, show-tabs-space-face): Specify background,
12377         not foreground.
12379         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
12380         Recognize define-generic-mode.
12382 2005-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12384         * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
12385         if there's no completion table.
12387 2005-03-23  Miles Bader  <miles@gnu.org>
12389         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
12390         Remove tty-specific variants, as they're no longer needed.
12392 2005-03-23  Lute Kamstra  <lute@gnu.org>
12394         * generic-x.el: Code cleanup: make args constant whenever possible.
12395         (installshield-statement-keyword-list)
12396         (installshield-system-functions-list)
12397         (installshield-system-variables-list, installshield-types-list)
12398         (installshield-funarg-constants-list): Make them constants.
12400         * generic.el (generic-make-keywords-list): Add autoload cookie.
12402         * calendar/time-date.el: Add comment on time value formats.
12403         Don't require parse-time.
12404         (with-decoded-time-value): New macro.
12405         (encode-time-value): New function.
12406         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
12407         (days-to-time): Return a valid time value when arg is huge.
12408         (time-since): Use time-subtract.
12409         (time-to-number-of-days): Use time-to-seconds.
12411 2005-03-23  David Ponce  <david@dponce.com>
12413         * recentf.el: (recentf-keep): New option.
12414         (recentf-menu-action): Default to `find-file'.
12415         (recentf-keep-non-readable-files-flag)
12416         (recentf-keep-non-readable-files-p)
12417         (recentf-file-readable-p, recentf-find-file)
12418         (recentf-cleanup-remote): Remove.
12419         (recentf-include-p): More robust.
12420         (recentf-keep-p): New function.
12421         (recentf-remove-if-non-kept): Rename from
12422         `recentf-remove-if-non-readable'.  Use `recentf-keep-p'.
12423         All callers updated.
12424         (recentf-menu-items-for-commands): Fix help string.
12425         (recentf-track-closed-file): Update.  Doc fix.
12426         (recentf-cleanup): Update.  Count removed files.  Doc fix.
12428 2005-03-23  Kim F. Storm  <storm@cua.dk>
12430         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
12431         Don't inherit from fringe face (now happens automatically).
12433 2005-03-22  Kim F. Storm  <storm@cua.dk>
12435         * tooltip.el (tooltip-show-help-function): Ignore negative mouse
12436         position values.
12438 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12440         * menu-bar.el (showhide-date-time): Remove.
12441         (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
12442         (menu-bar-make-mm-toggle): Simplify.
12444 2005-03-22  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
12446         * progmodes/perl-mode.el (perl-font-lock-keywords-2):
12447         Accept qualified variable and function names.
12449 2005-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
12451         * bindings.el (completion-ignored-extensions):
12452         Remove ".lis" for `vax-vms'.
12454 2005-03-22  Andreas Schwab  <schwab@suse.de>
12456         * generic-x.el: Revert last change.
12457         * ldefs-boot.el: Update.
12459 2005-03-22  Jay Belanger  <belanger@truman.edu>
12461         * calc/calc-embed.el (calc-embedded-original-modes): New variable.
12462         (calc-embedded-save-original-modes)
12463         (calc-embedded-restore-original-modes): New functions.
12464         (calc-do-embedded): Save original modes when entering embedded mode
12465         and restore when leaving embedded mode.
12466         (calc-embedded-modes-change): Change the value of
12467         calc-embedded-original-modes to reflect permanent changes.
12469 2005-03-22  Lute Kamstra  <lute@gnu.org>
12471         * generic-x.el: Require generic again.
12473 2005-03-22  Miles Bader  <miles@gnu.org>
12475         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
12476         Tweak details to look good on both ttys and bitmap displays, light
12477         or dark background, etc.
12479 2005-03-21  Kim F. Storm  <storm@cua.dk>
12481         * tooltip.el (tooltip-show-help-function): Check car and cdr of
12482         mouse position.
12484 2005-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12486         * icomplete.el: Don't forcibly turn on the mode upon load.
12487         (icomplete-mode): Use define-minor-mode.
12488         (icomplete-eoinput): Default to nil.
12489         (icomplete-minibuffer-setup): Remove autoload.
12490         (icomplete-tidy): Simplify.
12491         (icomplete-exhibit): Use buffer-undo-list to determine if we're still
12492         in the initial state or if the user has modified the field.
12493         Fix handling of icomplete-max-delay-chars.
12494         Remove code that handles the oddball case where
12495         minibuffer-completion-table is an integer.
12496         Wrap icomplete-completions in while-no-input in case building
12497         completions takes more time than expected.
12498         (icomplete-completions): Simplify.
12500 2005-03-21  Richard M. Stallman  <rms@gnu.org>
12502         * jka-compr.el (jka-compr-really-do-compress):
12503         Make variable buffer-local.
12505         * image-mode.el: Handle .xpm files too.
12506         (image-toggle-display): Preserve modification flag.
12508         * help.el (where-is): Don't mention aliases with no key bindings.
12510 2005-03-21  Lute Kamstra  <lute@gnu.org>
12512         * generic.el: Fix commentary section.  Don't require cl for
12513         compilation.
12514         (generic-mode-list): Add autoload cookie.
12515         (generic-use-find-file-hook, generic-lines-to-scan)
12516         (generic-find-file-regexp, generic-ignore-files-regexp)
12517         (generic-mode, generic-mode-find-file-hook)
12518         (generic-mode-ini-file-find-file-hook): Fix docstrings.
12519         (define-generic-mode): Make it a defmacro.  Fix docstring.
12520         (generic-mode-internal): Code cleanup.  Add autoload cookie.
12521         (generic-mode-set-comments): Code cleanup.
12522         * generic-x.el: Don't prevent compilation.  Don't require generic.
12523         Follow coding conventions.  Minor code cleanup.
12524         (etc-fstab-generic-mode): Add some keywords.
12525         * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
12526         define-generic-mode like a function declaration.
12528 2005-03-21  Jay Belanger  <belanger@truman.edu>
12530         * calc/calc-embed.el (calc-do-embedded): Put data on stack before
12531         changing modes.
12533 2005-03-21  Sam Steingold  <sds@gnu.org>
12535         * add-log.el (add-log-current-defun): Support more C DEFUN forms.
12537 2005-03-21  Thien-Thi Nguyen  <ttn@gnu.org>
12539         * progmodes/dcl-mode.el (dcl-font-lock-keywords):
12540         Add underscore to "f$ lexicals" regexp.
12542 2005-03-20  Juri Linkov  <juri@jurta.org>
12544         * subr.el (progress-reporter-do-update): When `min-value' is equal
12545         to `max-value', set `percentage' to 0 and prevent division by zero.
12547 2005-03-20  Michael Albinus  <michael.albinus@gmx.de>
12549         Sync with Tramp 2.0.48.
12551         * net/tramp.el (all): Change all addresses to .gnu.org.
12552         (tramp-append-tramp-buffers): New defun.
12553         (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
12554         Catch `dont-send' signal.
12555         (tramp-set-auto-save-file-modes): Set always permissions, because
12556         there might be an old auto-saved file belonging to another
12557         original file.  This could be a security threat.  Reported by
12558         Kjetil Kjernsmo <kjetil@kjernsmo.net>.
12559         Check for Emacs 21.3.50 removed.
12561         * net/tramp-smb.el (all): Remove debug construct for
12562         `with-parsed-tramp-file-name'.
12563         (tramp-smb-prompt): Prompt can contain spaces inside directory names.
12564         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
12565         No error message if DIRECTORY or FILENAME doesn't exist.
12566         (tramp-smb-open-connection): Check existence of
12567         `tramp-smb-program'.
12569 2005-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12571         * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
12572         Properly handle the case where the `m' or `s' command's argument is not
12573         yet terminated.
12574         (perl-indent-new-calculate): New function.
12575         (perl-indent-line): Use it.
12577 2005-03-20  Miles Bader  <miles@gnu.org>
12579         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
12580         in text-mode too.  Change to new face names.
12581         (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
12582         Add `:weight bold' attribute.
12583         (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
12585 2005-03-19  Juri Linkov  <juri@jurta.org>
12587         * files.el (auto-mode-alist): Add comment.  Optimize jar/ear/war.
12589         * international/mule.el (auto-coding-alist): Sync with
12590         `auto-mode-alist' by adding upper case archive file extensions
12591         and adding ear/war to jar extension.
12593 2005-03-19  David Casperson  <casper@unbc.ca>  (tiny change)
12595         * textmodes/tex-mode.el (tex-view): If tex-shell process is not
12596         running, restart it.
12598 2005-03-19  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny changes)
12600         * finder.el (finder-current-item): Throw an error on an empty line.
12602         * man.el (Man-follow-manual-reference): If current-word returns
12603         nil, use "".
12605 2005-03-19  Matt Hodges  <MPHodges@member.fsf.org>
12607         * simple.el (goto-line): Doc fix.
12609 2005-03-19  Aaron Hawley  <Aaron.Hawley@uvm.edu>  (tiny change)
12611         * files.el (save-buffer): Doc fix.
12613 2005-03-19  Michael R. Mauger  <mmaug@yahoo.com>
12615         * recentf.el (recentf-cleanup-remote): New variable.
12616         (recentf-cleanup): Use it to conditionally check availability of
12617         remote files.
12619 2005-03-19  Joe Edmonds  <joe-bugs-debian-org@elem.com>  (tiny change)
12621         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
12622         function names.
12624 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
12626         * language/thai-word.el: New file.
12628 2005-03-19  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
12630         * files.el (backup-buffer): If the file's directory is not
12631         writable, use copy instead of move to backup the file.
12633 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
12635         * obsolete/keyswap.el: Moved to obsolete/ from term/.
12637 2005-03-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12639         * ps-print.el (ps-generate-string-list, ps-generate-header-line):
12640         Use functionp instead of symbolp and fboundp.  Reported by Drkm
12641         <darkman_spam@yahoo.fr>.
12642         (ps-print-version): New version 6.6.6.
12644 2005-03-18  Tak Ota  <Takaaki.Ota@am.sony.com>
12646         * textmodes/table.el (table--line-column-position): New idiom.
12647         (table--row-column-insertion-point-p): New function to test
12648         validity of row and column insertion operation at a location.
12649         (table-global-menu, table-cell-menu): Use above functions for
12650         deterministic test operation.
12651         (table--editable-cell-p): Behave in deterministic fashion.
12653 2005-03-18  Juri Linkov  <juri@jurta.org>
12655         * isearch.el (isearch-lazy-highlight-new-loop):
12656         Make arguments beg and end optional.
12657         (isearch-update): Remove optional arguments nil from
12658         isearch-lazy-highlight-new-loop.
12659         (isearch-lazy-highlight-search): Let-bind case-fold-search to
12660         isearch-lazy-highlight-case-fold-search instead of
12661         isearch-case-fold-search, and let-bind isearch-regexp to
12662         isearch-lazy-highlight-regexp.
12663         Use isearch-lazy-highlight-last-string instead of isearch-string.
12665         * replace.el (perform-replace): Remove bindings of global
12666         variables isearch-string, isearch-regexp, isearch-case-fold-search.
12667         Add three new arguments to `replace-highlight'.
12668         (replace-highlight): Add arguments string, regexp, case-fold.
12669         Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
12670         to allow isearch-lazy-highlight-new-loop to use these values
12671         to set corresponding isearch-lazy-highlight-* internal
12672         variables whose values lazy highlighting will use regardless of
12673         changes to global variables isearch-string, isearch-regexp,
12674         isearch-case-fold-search during lazy highlighting loop.
12675         (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
12676         to `lazy-highlight-cleanup'.
12678         * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
12679         (ispell-highlight-face): Set default face to `isearch' when
12680         lazy highlighting is enabled.
12681         (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
12682         priority to 1.  Add lazy highlighting.
12683         (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
12684         from `isearch-dehighlight'.
12686 2005-03-18  David Ponce  <david@dponce.com>
12688         * files.el (hack-local-variables): Do a case-insensitive search
12689         for End.
12691 2005-03-18  Juri Linkov  <juri@jurta.org>
12693         * isearch.el (lazy-highlight-cleanup) <command>: Rename from
12694         `isearch-lazy-highlight-cleanup', add alias to old name and
12695         declare obsolete.  Add release numbers to other obsolete vars.
12696         (isearch-done, isearch-lazy-highlight-new-loop):
12697         Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
12698         (lazy-highlight-cleanup) <variable>: Doc fix.
12699         (isearch-lazy-highlight-update): Rename obsolete
12700         `isearch-lazy-highlight-face' to `lazy-highlight-face'.
12702 2005-03-18  Kenichi Handa  <handa@m17n.org>
12704         * language/thai-util.el: Fix categorization of Thai characters in
12705         thai-category-table.
12706         (thai-composition-pattern): Adjust it for the above change.
12707         (thai-self-insert-command, thai-compose-syllable): New functions.
12708         (thai-compose-region): Use thai-compose-syllable.
12709         (thai-compose-string): Likewise.
12710         (thai-composition-function): Likewise.
12711         (thai-auto-composition): New function.
12712         (thai-auto-composition-mode): New minor mode.
12714         * language/thai.el: Fix patterns to be registered in
12715         composition-function-table.
12717         * international/quail.el (quail-input-method): Locally bind
12718         inhibit-modification-hooks to t.
12720 2005-03-17  Richard M. Stallman  <rms@gnu.org>
12722         * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
12723         (perl-mode): Use run-mode-hooks.
12725         * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
12726         (rmail-pop-password-required, rmail-remote-password): Doc fixes.
12727         (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
12729         * mail/sendmail.el (sendmail-send-it): Reenable the code
12730         to compute resend-to-address and use it.
12732         * tar-mode.el (tar-mode): Turn off undo unconditionally.
12734         * image-mode.el: New file.
12736         * image.el (insert-sliced-image): Add autoload cookie.
12738         * font-lock.el (font-lock-lines-before): New user option.
12739         (font-lock-after-change-function): Obey it.
12741         * bindings.el (esc-map): Make M-g a prefix.
12742         Bind M-g g and M-g M-g to goto-line.
12744         * faces.el (face-id): Doc fix.
12746 2005-03-17  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
12748         * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
12749         (rmail-show-message): Use rmail-unknown-mail-followup-to.
12750         (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
12752         * mail/sendmail.el (mail-yank-ignored-headers)
12753         (mail-font-lock-keywords, mail-mode-fill-paragraph):
12754         Add Mail-Followup-To and Mail-Reply-To headers.
12755         (mail-citation-hook): Add autoload cookie.
12756         (mail-mode): Doc fix.
12757         (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
12758         (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
12759         (mail-mode-fill-paragraph): Handle those headers.
12760         (mail-mailing-lists): New variable.
12761         (mail-mail-reply-to, mail-mail-followup-to): New functions.
12763 2005-03-17  Juri Linkov  <juri@jurta.org>
12765         * isearch.el (isearch-fallback): Check for `(car previous)'
12766         before calling `isearch-other-end-state'.
12768 2005-03-17  Kim F. Storm  <storm@cua.dk>
12770         * simple.el (move-beginning-of-line): Move to beginning of buffer
12771         line, as well as beginning of screen line.
12773 2005-03-16  Glenn Morris  <gmorris@ast.cam.ac.uk>
12775         * calendar/diary-lib.el (mark-diary-entries): Use new optional
12776         argument REDRAW rather than calendar-redrawing variable.
12777         * calendar/calendar.el (calendar-redrawing): Delete.
12778         (redraw-calendar): Do not bind calendar-redrawing.
12780 2005-03-16  Matt Hodges  <MPHodges@member.fsf.org>
12782         * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
12783         diary-file buffer.
12785 2005-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12787         * help.el (describe-mode): Allow a :minor-mode-function property to
12788         specify a different minor mode toggle function than the variable.
12789         * simple.el (auto-fill-function):
12790         * subr.el (add-minor-mode): Use it.
12792 2005-03-16  Kenichi Handa  <handa@m17n.org>
12794         * language/ethio-util.el (sera-being-called-by-w3): New variable.
12795         (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
12796         (ethio-fidel-to-sera-buffer): Likewise.
12798 2005-03-16  Juri Linkov  <juri@jurta.org>
12800         * emacs-lisp/find-func.el (find-function-regexp):
12801         Add defun-emitting macro `menu-bar-make-toggle'.
12803         * isearch.el: Put `isearch-scroll' property to
12804         `split-window-horizontally'.
12806         * info.el: Update error messages for `debug-ignored-errors'.
12807         (Info-isearch-search): Doc fix.
12808         (Info-find-node): Move up code to go into info buffer before
12809         recording the node to the history.
12810         (Info-fontify-node): Fontify titles only if the next line
12811         has two or more `*', `=', `-', `.'.
12812         Display "go to this node" for empty (match-string 3).
12814 2005-03-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12816         * term/mac-win.el: Add mouse pointer shape constants.
12818 2005-03-15  Kim F. Storm  <storm@cua.dk>
12820         * simple.el (move-beginning-of-line): Use vertical-motion.
12822 2005-03-15  Juri Linkov  <juri@jurta.org>
12824         * isearch.el (isearch-error): New variable.
12825         (isearch-invalid-regexp, isearch-within-brackets): Remove.
12826         (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
12827         (isearch-within-brackets-state): Remove.
12828         (isearch-case-fold-search-state, isearch-pop-fun-state):
12829         Decrease frame index.
12830         (isearch-mode, isearch-top-state, isearch-push-state)
12831         (isearch-edit-string, isearch-abort, isearch-search-and-update)
12832         (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
12833         (isearch-search, isearch-lazy-highlight-new-loop):
12834         Replace `isearch-invalid-regexp' with `isearch-error'.
12835         Remove `isearch-within-brackets'.
12836         (isearch-search): Add `search-failed' handler to `condition-case'.
12837         (isearch-lazy-highlight-search): Add `condition-case' to catch
12838         errors and allow `isearch-lazy-highlight-update' to try
12839         highlighting from the beginning of the window.
12840         (isearch-repeat): Move up code to set isearch-wrapped to t
12841         before calling isearch-wrap-function.
12843         * info.el (Info-isearch-initial-node): New internal variable.
12844         (Info-search): Signal an error in isearch mode when search leaves
12845         the initial node.  Signal an error when `bound' is non-nil and
12846         nothing was found in the current subfile.
12847         (Info-isearch-search): Remove `condition-case'.
12848         (Info-isearch-wrap): Don't wrap when search failed during leaving
12849         the initial node.  If `Info-isearch-search' is nil, wrap around
12850         the current node.
12851         (Info-isearch-start): New fun.
12852         (Info-mode): Add buffer-local hook `Info-isearch-start' to
12853         `isearch-mode-hook'.
12855 2005-03-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12857         * simple.el (normal-erase-is-backspace): Set default to t if
12858         running on Mac.
12860         * term/mac-win.el (function-key-map): Sync with x-win.el.
12862 2005-03-15  Kenichi Handa  <handa@m17n.org>
12864         * international/mule-cmds.el (locale-language-names): Modify the
12865         format of elements and add more entries.
12866         (locale-preferred-coding-systems): Add more entries.
12867         (set-locale-environment): Adjust for the change of
12868         locale-language-names.
12870 2005-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12872         * pcvs.el (smerge-ediff): Remove bogus autoload.
12874 2005-03-14  Lute Kamstra  <lute@gnu.org>
12876         * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
12877         Ignore a `*' at the beginning of a line.
12879         * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
12880         * emacs-lisp/byte-run.el (macro-declaration-function): Move from
12881         subr.el.
12882         (dont-compile, eval-when-compile, eval-and-compile): Use declare
12883         to specify indentation.
12885         * generic.el (define-generic-mode): Let generic-mode-list be a
12886         list of strings; test membership with equal.
12888 2005-03-14  Kim F. Storm  <storm@cua.dk>
12890         * simple.el (next-line, previous-line): Add optional try-vscroll
12891         arg to recognize interactive use.  Pass it on to line-move.
12892         (line-move): Don't perform auto-window-vscroll when defining or
12893         executing keyboard macro to ensure consistent behavior.
12895 2005-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12897         * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
12899 2005-03-13  Lute Kamstra  <lute@gnu.org>
12901         * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
12902         debugger-setup-buffer so that backtrace marks the frames set to
12903         debug-on-exit and we don't have to do it manually.  Set an extra
12904         debug-on-exit for macro's.
12905         (debugger-setup-buffer): Don't mark the top frame manually.
12907 2005-03-12  Lute Kamstra  <lute@gnu.org>
12909         * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
12910         lisp-indent-function throughout.
12911         (with-no-warnings): Set lisp-indent-function property.
12913 2005-03-12  Thien-Thi Nguyen  <ttn@gnu.org>
12915         * progmodes/dcl-mode.el (dcl-mode-syntax-table):
12916         Add entry for backslash.
12918 2005-03-12  Juri Linkov  <juri@jurta.org>
12920         * info.el (Info-search): Four fixes for backward search.
12922 2005-03-11  Jay Belanger  <belanger@truman.edu>
12924         * calc/calc.el (calc-language-alist): New variable.
12925         * calc/calc-embed.el (calc-embedded-language-alist): Remove.
12926         (calc-embedded-find-modes): Use calc-language-alist instead of
12927         calc-embedded-language-alist.
12929 2005-03-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
12931         * calendar/calendar.el (calendar-redrawing): New internal
12932         variable.
12933         (redraw-calendar): Remove bogus save-excursion from previous
12934         change.  Bind calendar-redrawing to t for mark-diary-entries.
12935         * calendar/diary-lib.el (mark-diary-entries): No need to redraw
12936         calendar if that is why we were called.
12938 2005-03-11  Kenichi Handa  <handa@m17n.org>
12940         * international/mule.el (make-coding-system): Set property
12941         coding-system-define-form to nil.
12942         (define-coding-system-alias): Likewise.
12944 2005-03-11  Kenichi Handa  <handa@m17n.org>
12946         These changes are suggested by Dave Love <fx@gnu.org>.
12948         * textmodes/fill.el: Change encoding to iso-2022-7bit and add
12949         coding: tag.
12950         (adaptive-fill-regexp): Add more bullets.
12951         (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
12952         regexps.
12954 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12956         * help.el (describe-mode): Properly handle non-trivial lighters.
12957         Don't ignore minor modes that are not listed in minor-mode-list.
12959         * tooltip.el (tooltip-mode): Don't complain that you can't turn the
12960         feature ON when the user requests to turn it OFF.
12962 2005-03-10  Lute Kamstra  <lute@gnu.org>
12964         * emacs-lisp/debug.el (debug-entry-code): Delete it.
12965         (implement-debug-on-entry): New function to replace debug-entry-code.
12966         (debug-on-entry-1): Use implement-debug-on-entry.  Delete the
12967         second argument as the 2005-03-07 change makes it obsolete.
12968         (debug-on-entry, cancel-debug-on-entry): Update call to
12969         debug-on-entry-1.
12970         (debug, debugger-setup-buffer): Comment update.
12971         (debugger-frame-number): Update to work with implement-debug-on-entry.
12973 2005-03-10  Jay Belanger  <belanger@truman.edu>
12975         * calc/calc-embed.el (math-ms-args): Declare it.
12976         (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
12977         math-ms-args.
12978         (calc-embedded-subst): Use math-multi-subst-rec to substitute
12979         variables.
12981 2005-03-10  Nick Roberts  <nickrob@snap.net.nz>
12983         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
12984         Use message-box.
12986         * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
12987         (tooltip-activate-mouse-motions-if-enabled): Use dolist.
12988         (tooltip-gud-tips): Simplify.
12989         (tooltip-gud-tips-p): Remove superfluous :set.
12990         (tooltip-gud-modes): Add fortran-mode.
12991         (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
12993         * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
12995 2005-03-09  Kim F. Storm  <storm@cua.dk>
12997         * play/animate.el (animate-place-char): Use forward-line instead
12998         of next-line to improve performance.
13000 2005-03-09  Simon Josefsson  <jas@extundo.com>
13002         * net/browse-url.el (browse-url-default-browser): Doc fix.
13004 2005-03-09  Miles Bader  <miles@gnu.org>
13006         * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
13007         (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
13009 2005-03-09  Kenichi Handa  <handa@m17n.org>
13011         * international/latin-1.el: Set case and syntax for 255 only if
13012         set-case-syntax-set-multibyte is nil.
13014         * textmodes/ispell.el (ispell-insert-word): New function.
13015         (ispell-word): Use ispell-insert-word to insert a new word.
13016         (ispell-process-line): Likewise.
13017         (ispell-complete-word): Likewise.
13019 2005-03-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
13021         * calendar/calendar.el (redraw-calendar): Preserve point.
13022         Reported by Matt Hodges <MPHodges@member.fsf.org>.
13023         (calendar-week-start-day): Move after definition of
13024         redraw-calendar.  Delete buffer test, since redraw-calendar has
13025         that now.
13027         * calendar/diary-lib.el (mark-diary-entries): Only call
13028         redraw-calendar in the first of any recursive calls.
13029         Reported by Alan Shutko <ats@acm.org>.
13031 2005-03-08  Juri Linkov  <juri@jurta.org>
13033         * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
13034         (html-horizontal-rule, html-line, html-image, html-checkboxes)
13035         (html-radio-buttons): Add a space before the trailing `/>' where
13036         sgml-xml-mode is non-nil.
13037         (sgml-delete-tag): Check if the tag ends with `/>' to not delete
13038         the subsequent tag of the empty XML tag.
13039         (html-href-anchor): Don't set initial input to "http:".
13040         (html-image): Ask for the image URL and set point inside alt="".
13041         (html-name-anchor): Duplicate the name in the `id' attribute when
13042         sgml-xml-mode is non-nil.
13043         (html-paragraph): Remove \n before <p>.
13044         (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
13045         instead of `checked' when sgml-xml-mode is non-nil.
13047         * facemenu.el (list-colors-print): Print #RRGGBB in default face.
13048         Remove 1 space before #RRGGBB to not truncate it on terminal
13049         windows w/o fringes.  Remove 1 space between bg and fg examples
13050         to get more space.
13051         (list-colors-duplicates): Replace `and' with `if' for `boundp' to
13052         avoid byte-compile warnings.
13054         * image-file.el (image-file-handler): Put `safe-magic' property to
13055         `image-file-handler'.
13057         * info.el (Info-isearch-search): Emulate word search in
13058         isearching through multiple Info nodes with Info-search.
13059         (Info-isearch-wrap): Allow isearch-word.
13061 2005-03-08  Lute Kamstra  <lute@gnu.org>
13063         * emacs-lisp/debug.el (debugger-step-through): Make sure that
13064         stepping into the debugger's code is not possible.
13065         (debugger-jumping-flag): Docstring update.
13067 2005-03-08  Jay Belanger  <belanger@truman.edu>
13069         * calc/calc-embed.el (calc-do-embedded): Reset mode line when
13070         embedded mode begins.
13071         (calc-embedded-language-alist): New variable.
13072         (calc-embedded-find-modes): Use calc-embedded-language-alist to
13073         set default language mode.
13075 2005-03-08  Kenichi Handa  <handa@m17n.org>
13077         * international/ccl.el (define-ccl-program): Fix docstring about
13078         extra 256 bytes assured for the output buffer.
13080         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
13081         Fix BUFFER_MAGNIFICATION to 2.
13082         (ccl-encode-mule-utf-16be-with-signature): Likewise.
13084 2005-03-07  Karl Chen  <quarl@cs.berkeley.edu>
13086         * align.el (align-rules-list): Added an alignment rule for CSS
13087         declarations (applies to css-mode and html-mode buffers).
13089 2005-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13091         * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
13093 2005-03-07  Kim F. Storm  <storm@cua.dk>
13095         * simple.el (move-beginning-of-line): New command.
13097         * bindings.el (global-map): Bind C-a to move-beginning-of-line.
13099         * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
13101         * emulation/cua-base.el: Put CUA move property on move-end-of-line
13102         and move-beginning-of-line.
13104         * apropos.el (apropos-print): Omit command from M-x ... RET.
13106 2005-03-07  Nick Roberts  <nickrob@snap.net.nz>
13108         * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
13109         (gdb-send, gdb-send-item): Log items sent from gdb-send too.
13111 2005-03-06  Richard M. Stallman  <rms@gnu.org>
13113         * bindings.el (esc-map): Bind M-g to goto-line.
13115         * facemenu.el (global-map): Bind M-o, not M-g.
13117 2005-03-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13119         * menu-bar.el (menu-bar-file-menu): Add the same :enable to
13120         "Open Directory" as for "Open File".
13122 2005-03-06  Chong Yidong  <cyd@stupidchicken.com>
13124         * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
13125         (push-mark-command): Run activate-mark-hook.
13127 2005-03-06  Richard M. Stallman  <rms@gnu.org>
13129         * help-mode.el (help-mode-finish): Don't alter the element
13130         in view-return-to-alist if there already is one.
13132         * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
13133         make sure the current buffer is the expected one.
13135         * novice.el (disabled-command-function): Output in *Disabled Command*.
13136         Explicitly ignore non-keyboard events, and explicitly handle C-g.
13138         * textmodes/flyspell.el (flyspell-large-region):
13139         Pass args differently for aspell.
13141         * files.el (mode-require-final-newline): Doc fix.
13143 2005-03-03  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
13145         * progmodes/which-func.el (which-function):
13146         Specify NOERROR when calling imenu--make-index-alist.
13148 2005-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13150         * simple.el (normal-erase-is-backspace): Define default value.
13152         * custom.el (custom-theme-set-variables): Remove unused var
13153         `immediate'.
13154         (custom-reevaluate-setting): Simple function to handle variables
13155         that are defined before their default value can really be
13156         computed.
13158         * startup.el (command-line): Use it for temporary-file-directory,
13159         small-emporary-file-directory, auto-save-file-name-transforms,
13160         blink-cursor-mode, and normal-erase-is-backspace.
13162         * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
13163         progress, even with buggy anchored keywords.
13165 2005-03-05  Luc Teirlinck  <teirllm@auburn.edu>
13167         * simple.el (goto-line): Remove unbalanced final parenthesis.
13169 2005-03-05  Richard M. Stallman  <rms@gnu.org>
13171         * simple.el (goto-line): Use a number at point as the default.
13172         With C-u as arg, switch buffers.
13174 2005-03-05  Juri Linkov  <juri@jurta.org>
13176         * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
13177         with `no-blinking-cursor'.
13179         * startup.el (no-blinking-cursor): New defvar.
13180         (command-line): Add `--no-blinking-cursor' to longopts.
13181         Set `no-blinking-cursor' to t for command line arguments
13182         -Q, -nbc, --no-blinking-cursor.  Replace `emacs-quick-startup'
13183         with `no-blinking-cursor' in the condition for calling
13184         `blink-cursor-mode'.
13186 2005-03-04  Luc Teirlinck  <teirllm@auburn.edu>
13188         * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
13189         (menu-bar-options-save): Add blink-cursor-mode.
13190         (menu-bar-options-menu): Add blink-cursor-mode.
13192 2005-03-04  Ulf Jasper  <ulf.jasper@web.de>
13194         * calendar/icalendar.el (icalendar-version): Increase to 0.11.
13195         (icalendar-export-file, icalendar-export-region)
13196         (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
13197         (icalendar--convert-ical-to-diary): Fix problem with DURATION.
13199 2005-03-04  Lute Kamstra  <lute@gnu.org>
13201         * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
13202         (debug-function-list): Ditto.
13204 2005-03-04  Robert J. Chassell  <bob@rattlesnake.com>
13206         * textmodes/texinfmt.el (texinfo-append-refill):
13207         Redefine the types of line to which @refill
13208         is not appended by replacing a search for `@refill\\|@bye' with
13209         `@refill\\|^[ \t]*@'.  The intent is to solve both the `@end
13210         itemize@refill' bug and the unfilled long lines bug.
13211         (texinfmt-version): Update number and date.
13213 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
13215         * international/code-pages.el (windows-1250, windows-125[2-8])
13216         (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
13218 2005-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13220         * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
13221         bound yet.
13223 2005-03-02  Romain Francoise  <romain@orebokech.com>
13225         * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
13226         buffer after removing limits.
13227         (ibuffer-pop-filter): Ditto.
13228         Update copyright.
13230 2005-03-02  Miles Bader  <miles@gnu.org>
13232         * button.el (make-text-button): If the user doesn't specify a
13233         type, use the default.  Rewrite to use `add-text-properties' and
13234         plist functions.
13236 2005-03-01  Lute Kamstra  <lute@gnu.org>
13238         * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
13239         (debugger-jumping-flag): New var.
13240         (debug-entry-code): Use it.
13241         (debugger-jump): Use debugger-jumping-flag and add
13242         debugger-reenable to post-command-hook.
13243         (debugger-reenable): Use debugger-jumping-flag and remove itself
13244         from post-command-hook.
13245         (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
13246         debugger-reenable.
13248 2005-03-01  Robert J. Chassell  <bob@rattlesnake.com>
13250         * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
13251         inclusion of "itemize\\|", which may be unnecessary, is certainly
13252         inelegant, and stops refilling in itemize lists when formatting
13253         Japanese Texinfo files to Info.
13254         Update copyright to 2005.
13256 2005-03-01  Nick Roberts  <nickrob@snap.net.nz>
13258         * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
13259         of an error if GDB can't find the source file.
13261 2005-03-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
13263         * calendar/calendar.el (redraw-calendar): Work from any buffer,
13264         not just the calendar.
13266         * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
13267         first.
13268         (diary-redraw-calendar): New function.
13269         (make-diary-entry): Add diary-redraw-calendar to local
13270         write-contents-functions.  Turn off selective display before
13271         inserting in diary.
13273 2005-03-01  Kim F. Storm  <storm@cua.dk>
13275         * emacs-lisp/copyright.el (copyright-fix-years): New command.
13277 2005-03-01  Lute Kamstra  <lute@gnu.org>
13279         * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
13280         that debug-entry-code can be safely removed from a function while
13281         this code is being evaluated.  Revert the 2005-02-27 change as the
13282         new implementation no longer requires it.  Make sure that a
13283         function body containing just a string is not mistaken for a docstring.
13284         (debug): Skip one more frame in case of debug on entry.
13285         (debugger-setup-buffer): Delete one more frame line in case of
13286         debug on entry.
13287         (debugger-frame-number): Update to use the new text introduced by
13288         the 1999-11-03 change.  Skip one more frame in case of debug on entry.
13290 2005-02-28  Kim F. Storm  <storm@cua.dk>
13292         * double.el (double-translate-key): Call force-window-update after
13293         read-event to avoid crash in redisplay.
13295 2005-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13297         * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
13298         (debug): Use it.  Move the inhibit-trace earlier.
13299         (debug-entry-code): New const.
13300         (debug-on-entry-1): Use it.
13302 2005-02-28  Chong Yidong  <cyd@stupidchicken.com>
13304         * international/utf-16.el (ccl-encode-mule-utf-16le):
13305         Fix BUFFER_MAGNIFICATION to 2.
13306         (ccl-encode-mule-utf-16be): Likewise.
13308 2005-02-28  Kenichi Handa  <handa@m17n.org>
13310         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
13311         Fix BUFFER_MAGNIFICATION to 4.
13312         (ccl-encode-mule-utf-16be-with-signature): Likewise.
13314 2005-02-28  Nick Roberts  <nickrob@snap.net.nz>
13316         * speedbar.el (speedbar-update-flag): Doc fix.
13317         (speedbar-show-info-under-mouse): Give set-mouse-position the right
13318         argument.
13320 2005-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13322         * reveal.el (reveal-post-command): Don't try to reveal overlays which
13323         have a non-nil `invisible' property but are actually visible.
13325         * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
13326         for perldoc sections.
13327         (perl-outline-regexp, perl-outline-level): New var and function.
13328         (perl-mode): Use them.
13330 2005-02-27  Glenn Morris  <gmorris@ast.cam.ac.uk>
13332         * calendar/diary-lib.el (diary-remind): Discard any mark portion
13333         from diary-entry.  Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
13335 2005-02-27  Luc Teirlinck  <teirllm@auburn.edu>
13337         * cus-edit.el: Comment change.
13338         (custom-buffer-create-internal): Slightly reword text at top of
13339         Custom buffers.  Mention there that saving an option edits the
13340         init file.  Add link to Emacs manual node on `custom-file'.
13341         (custom-magic-alist): Rewrite individual State messages to use
13342         capitalized keywords.  Doc fix.
13344 2005-02-27  Matt Hodges  <MPHodges@member.fsf.org>
13346         * calendar/calendar.el (calendar-buffer): Move above
13347         calendar-week-start-day.
13348         (calendar-week-start-day): Doc fix.  Add :set function.
13349         (calendar-minimum-window-height): New variable.
13350         (generate-calendar-window): Only resize window if selected-window
13351         is displaying the calendar buffer.  Use new variable
13352         calendar-minimum-window-height.
13353         (generate-calendar): Reword error message.
13354         (calendar-mode-map): Bind DEL to scroll-other-window-down.
13356 2005-02-27  Andreas Schwab  <schwab@suse.de>
13358         * vc.el (vc-do-command): Don't run command asynchronously when
13359         operating in a remote directory.
13361         * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
13362         change from sync with Tramp 2.0.47.
13364 2005-02-27  Richard M. Stallman  <rms@gnu.org>
13366         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
13368         * textmodes/flyspell.el (flyspell-mode-on):
13369         Call ispell-change-dictionary only if necessary.
13371         * emacs-lisp/re-builder.el (regexp-builder): New function.
13373         * register.el (describe-register-1): Explicitly handle
13374         yank-excluded-properties = t.
13376         * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
13377         (custom-magic-alist): Change the status descriptions again.
13378         (face widget-type): Total rewrite based on `restricted-sexp'
13379         to eliminate the confusing double hiding levels.
13381         * emacs-lisp/debug.el (debug-on-entry-1):
13382         If function body is empty, add nil as body form.
13384 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13386         * emacs-lisp/trace.el (inhibit-trace): New var.
13387         (trace-make-advice): Use it.
13389         * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
13391 2005-02-26  Kim F. Storm  <storm@cua.dk>
13393         * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
13394         (mouse-on-link-p, mouse-drag-region-1): Use it.
13396 2005-02-25  Lute Kamstra  <lute@gnu.org>
13398         * replace.el (query-replace-read-from): Fix 2005-02-19 change.
13400 2005-02-24  Luc Teirlinck  <teirllm@auburn.edu>
13402         * frame.el (blink-cursor-mode): Add :group keyword.
13404 2005-02-24  Ulf Jasper  <ulf.jasper@web.de>
13406         * calendar/icalendar.el (icalendar--decode-isodatetime):
13407         New optional argument DAY-SHIFT.
13408         (icalendar-export-region): Fix coding-system-for-write.
13409         (icalendar--convert-ical-to-diary): Shift end-day of all-day
13410         events by one.
13412 2005-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13414         * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
13416 2005-02-24  Kim F. Storm  <storm@cua.dk>
13418         * international/iso-acc.el (iso-accents-compose): Fix crash
13419         during redisplay.  Call force-window-update after read-event
13420         and delete-region to signal that window is not accurate.
13422 2005-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13424         * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
13425         Remove unused and inexistent var `inhibit-trace'.
13426         (debugger-mode): Use run-mode-hooks.
13427         (debugger-list-functions): Add buttons; setup xref stack.
13429 2005-02-23  Richard M. Stallman  <rms@gnu.org>
13431         * calendar/appt.el (appt-time-msg-list): 3rd elt of each
13432         appointment says it was explicitly made.
13433         (appt-add): Set the 3rd element.
13434         (appt-make-list): Preserve explicit appointments.
13436         * subr.el (find-tag-default): Catch errors in forward-sexp.
13438 2005-02-23  Juri Linkov  <juri@jurta.org>
13440         * info.el (Info-isearch-search): New defcustom.
13441         (Info-isearch-search): Call the default isearch function
13442         when Info-isearch-search is nil.
13443         (Info-isearch-wrap): Use variable Info-isearch-search.
13445 2005-02-22  Luc Teirlinck  <teirllm@auburn.edu>
13447         * cus-edit.el: Comment change.
13449 2005-02-22  Kim F. Storm  <storm@cua.dk>
13451         * progmodes/hideif.el (hide-ifdef-use-define-alist):
13452         Use completing-read.  Suggested by Juan-Leon Lahoz Garcia.
13454 2005-02-22  Simon Josefsson  <jas@extundo.com>
13456         * net/browse-url.el (browse-url-netscape-new-window-is-tab):
13457         New variable.
13458         (browse-url-netscape): Use it.  Suggested by "Johann 'Myrkraverk'
13459         Oskarsson" <myrkraverk@users.sourceforget.net>.
13461 2005-02-22  Kim F. Storm  <storm@cua.dk>
13463         * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
13464         check that window of that event is the selected window.
13465         (mouse-drag-region-1): Compare mouse event window to selected
13466         window before setting point.
13468         * tooltip.el (tooltip-show-help-function): Pass event to
13469         mouse-on-link-p so it can check selected window.
13471 2005-02-22  Kenichi Handa  <handa@m17n.org>
13473         * ps-mule.el (ps-mule-header-string-charsets): Delete it.
13474         (ps-mule-show-warning): New function.
13475         (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
13476         characters are found.
13478         * ps-print.el (ps-header-footer-string): Return a list of header
13479         and footer strings.
13481 2005-02-21  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
13483         * pcvs.el (cvs-retrieve-revision): Fix thinko.
13485 2005-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13487         * frame.el (blink-cursor-mode): Use define-minor-mode.
13489         * term/mac-win.el (function-key-map): Use char-names more consistently.
13490         (file-name-coding-system): Only set it for MacOS-9.  The other case is
13491         already handled in mule-cmds.el (where it also works when mac-win.el
13492         is not used).
13494 2005-02-21  Kenichi Handa  <handa@m17n.org>
13496         * international/mule.el (ctext-pre-write-conversion): Always use
13497         " *code-converting-work*" buffer for work.
13499         * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
13501 2005-02-20  Thien-Thi Nguyen  <ttn@gnu.org>
13503         * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
13505 2005-02-20  Jonathan Yavner  <jyavner@member.fsf.org>
13507         * ses.el (undo-more): Restore defadvice, but only the part that
13508         allows changes outside the restricted area of the buffer.
13510 2005-02-20  Kim F. Storm  <storm@cua.dk>
13512         * simple.el (line-move): Add fourth optional arg try-vscroll which
13513         must be set to perform auto-window-vscroll.
13514         When moving backwards and doing auto-window-vscroll, automatically
13515         vscroll to the last part of lines which are taller than the window.
13516         (next-line, previous-line): Set try-vscroll arg on line-move.
13518 2005-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
13520         * replace.el (query-replace, query-replace-regexp)
13521         (replace-string, replace-regexp): When operating on region, make
13522         the minibuffer prompt say so.
13524         * isearch.el (isearch-forward): Document isearch-query-replace and
13525         isearch-query-replace-regexp keybindings.
13527 2005-02-19  Jay Belanger  <belanger@truman.edu>
13529         * calc/calc-aent.el (math-read-token): Add local variable.
13531         * calc/calc-prog.el (calc-user-define-edit): Add local variable.
13532         (calc-edit-top): Move declaration to earlier in file.
13533         (calc-edit-macro-repeats): Add local variables.
13535         * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
13536         Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
13537         calcFunc-tanh.
13538         Adjust integration rule for calcFunc-tan.
13540 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
13542         * viper-cmd.el (viper-prefix-commands): Make into a defconst.
13543         (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
13544         (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
13545         (viper-skip-separators): Bug fix.
13546         (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
13547         particular major mode.
13548         (viper-del-backward-char-in-replace): Don't put deleted char on the
13549         kill ring.
13551         * viper-ex.el (viper-color-display-p): New function.
13552         (viper-has-face-support-p): Use viper-color-display-p.
13554         * viper-keym.el (viper-gnus-modifier-map): New keymap.
13556         * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
13558         * viper-util.el (viper-glob-unix-files): Fix shell status check.
13559         (viper-file-remote-p): Make equivalent to file-remote-p.
13561         * viper.el (viper-major-mode-modifier-list):
13562         Use viper-gnus-modifier-map.
13564 2005-02-19  David Kastrup  <dak@gnu.org>
13566         * subr.el (subregexp-context-p): Fix garbled doc string by adding
13567         quoting.
13569 2005-02-19  Jay Belanger  <belanger@truman.edu>
13571         * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
13572         Remove extra definitions.
13573         (calc-coth): New function.
13574         (calcFunc-cot): Fix `let'.
13576 2005-02-19  Eli Zaretskii  <eliz@gnu.org>
13578         * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
13579         the reasons we use "type pc" in these faces.
13581         * button.el (button): Ditto.
13583 2005-02-19  Michael Mauger  <mmaug@yahoo.com>
13585         * replace.el (query-replace-read-from): Set the value of
13586         query-replace-from-history-variable to handle the case of an empty
13587         string entered to accept the suggested default.
13589         * net/tramp.el (tramp-file-name-for-operation):
13590         Use dired-call-process instead of dired-call-process-command.
13592 2005-02-19  Jay Belanger  <belanger@truman.edu>
13594         * calc/calc-arith.el (math-trig-inverses, math-div-trig)
13595         (math-div-non-trig): New variables.
13596         (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
13597         (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
13598         (math-combine-prod, math-div-symb-fancy): Add simplifications for
13599         trig expressions.
13601 2005-02-19  Nick Roberts  <nickrob@snap.net.nz>
13603         * progmodes/gdb-ui.el (gdb-var-update-handler)
13604         (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
13605         for watch expressions,
13606         (gdb-var-create-handler): Don't set speedbar-update-flag.
13607         (gdb-post-prompt): Simplify test for speedbar.
13609 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
13611         * ediff.el (ediff-set-diff-overlays-in-one-buffer)
13612         (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
13613         we use the syntax table of the correct buffer.
13614         (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
13615         Felix Gatzemeier.
13617         * ediff-init.el (ediff-hide-face): Check for definedness of functions.
13618         (ediff-file-remote-p): Make synonymous with file-remote-p.
13619         In all deffaces ediff-*-face-*, use min-colors.
13621         * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
13622         ediff-recurse-to-subdirectories.
13623         (ediff-mark-if-equal): Check that the arguments are strings, use
13624         ediff-same-contents (after to Felix Gatzemeier).
13626         * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
13627         nil.
13629 2005-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13631         * log-view.el (log-view-message-re): Fix up Subversion regexp.
13633 2005-02-18  David Kastrup  <dak@gnu.org>
13635         * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
13636         use `mark-active' when defined.
13638 2005-02-18  Kenichi Handa  <handa@m17n.org>
13640         * ps-print.el (ps-font-info-database): New entry
13641         ZapfChancery-MediumItalic with correct font name.  Fix font name
13642         of the entry Zapf-Chancery-MediumItalic.
13644 2005-02-16  Luc Teirlinck  <teirllm@auburn.edu>
13646         * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
13648 2005-02-16  Kim F. Storm  <storm@cua.dk>
13650         * ido.el (ido-fallback-command): Pass user input to fallback command.
13652 2005-02-16  Nick Roberts  <nickrob@snap.net.nz>
13654         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
13655         (gdb-find-file-hook): Add server prefix.
13657 2005-02-16  Richard M. Stallman  <rms@gnu.org>
13659         * replace.el (perform-replace): Pass new args to replace-highlight.
13660         (replace-highlight): Take region args,
13661         and pass them to isearch-lazy-highlight-new-loop.
13663         * novice.el (disabled-command-hook): Autoload the defalias
13664         and the make-obsolete-variable call.
13666         * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
13668         * isearch.el (isearch-lazy-highlight-start-limit)
13669         (isearch-lazy-highlight-end-limit): New variables limit
13670         the region for highlighting.
13671         (isearch-lazy-highlight-new-loop): New args BEG and END.
13672         (isearch-lazy-highlight-search): Use the new vars.
13673         (isearch-lazy-highlight-update): Likewise.
13675         * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
13677         * cus-start.el (all): Use default-boundp.
13679 2005-02-15  David Casperson  <casper@unbc.ca>  (tiny change)
13681         * menu-bar.el (menu-bar-select-frame): Handle current frame.
13683 2005-02-15  Luc Teirlinck  <teirllm@auburn.edu>
13685         * autorevert.el (auto-revert-stop-on-user-input)
13686         (auto-revert-verbose): Doc fixes.
13688 2005-02-15  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
13690         * international/mule-cmds.el (set-locale-environment): Remove call
13691         to set-selection-coding-system on Windows.
13693 2005-02-15  Jay Belanger  <belanger@truman.edu>
13695         * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
13696         calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
13697         calcFunc-coth.
13698         (math-simplify-sqrt): Add simplifications.
13700         * calc/calc-arith.el (math-real-if-arg-functions): Add functions
13701         to list.
13703         * calc/calc-ext.el: Add functions to autoloads.
13705         * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
13706         (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
13707         (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
13708         (math-csc-raw, math-cot-raw): New functions.
13710         * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
13712         * calc/calc-undo.el (calc-handle-undo): Remove prefix from
13713         the variable name in a message.
13715         * calc/calc-units.el: Add simplification rules for calcFunc-sec,
13716         calcFunc-csc, calcFunc-cot.
13718         * calc/calcalg2.el: Add derivative and integration rules for
13719         calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
13720         calcFunc-csch, calcFunc-coth.
13721         (math-do-integral-methods): Add to checks for when to use
13722         substitutions.
13724         * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
13726 2005-02-15  Lute Kamstra  <lute@gnu.org>
13728         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13729         Add ;;;###autoload to `outline-regexp'.  Suggested by Stefan Monnier
13730         <monnier@iro.umontreal.ca>
13731         (lisp-outline-level): Improve efficiency.  Suggested by David
13732         Kastrup <dak@gnu.org>.
13734 2005-02-15  Nick Roberts  <nickrob@snap.net.nz>
13736         * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
13737         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
13738         (gdb-set-gud-minor-mode-existing-buffers): New functions.
13739         (gdb-find-file-hook): New hook.  Add it to find-file-hook.
13740         (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
13742 2005-02-14  Luc Teirlinck  <teirllm@auburn.edu>
13744         * cus-start.el (all): Comment change.
13746 2005-02-14  Lute Kamstra  <lute@gnu.org>
13748         * cus-start.el (all): Check if symbol is void.
13750 2005-02-14  Carsten Dominik  <dominik@science.uva.nl>
13752         * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
13753         optional argument to \cite.
13755 2005-02-14  Richard M. Stallman  <rms@gnu.org>
13757         * cus-edit.el (custom-buffer-create-internal): Update help message.
13758         (custom-magic-alist): Update help messages.
13760         * cus-start.el (all): Allow a var to specify a standard value.
13762 2005-02-12  Luc Teirlinck  <teirllm@auburn.edu>
13764         * custom.el (custom-theme-set-variables): Handle variable aliases.
13766         * frame.el (blink-cursor-timer): Doc fix.
13767         (blink-cursor): Make it an alias for `blink-cursor-mode' and
13768         declare obsolete.
13769         (blink-cursor-mode): Define with defcustom and use correct
13770         standard expression in that defcustom.
13771         * startup.el (command-line): Adapt to above changes in frame.el.
13773 2005-02-11  Lute Kamstra  <lute@gnu.org>
13775         * apropos.el (apropos-score-doc): Prevent division by zero.
13777 2005-02-11  Ulf Jasper  <ulf.jasper@web.de>
13779         * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
13780         (icalendar--get-event-property-attributes)
13781         (icalendar--get-event-properties)
13782         (icalendar--datetime-to-diary-date): New functions.
13783         (icalendar--split-value): Doc fix.
13784         (icalendar--datetime-to-noneuropean-date)
13785         (icalendar--datetime-to-european-date): New optional argument
13786         SEPARATOR.  Return result as a string instead of a list.
13787         (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
13788         (icalendar--convert-string-for-export): Rename arg S to STRING.
13789         (icalendar-export-region): Doc fix.  Change name of error buffer.
13790         Save output buffer.
13791         (icalendar-import-file): Add blank at end of prompt.
13792         (icalendar-import-buffer): Doc fix.  Do not switch to error
13793         buffer.  Indicate status in return value.
13794         (icalendar--convert-ical-to-diary): Doc fix.  Change name of error
13795         buffer.  Save output buffer.  Handle exception from recurrence
13796         rules (EXDATE, EXRULE).  Handle start- and end-date of recurring
13797         events.  Fix problems with weekly all-day events.
13799 2005-02-10  Richard M. Stallman  <rms@gnu.org>
13801         * simple.el (eval-expression-print-format):
13802         Avoid warning about edebug-active.
13804         * help.el (help-for-help-internal): Rename from help-for-help.
13805         (help-for-help): Define with defalias.
13807         * font-core.el (font-lock-default-function): Use with-no-warnings.
13809         * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
13811         * custom.el (defface): Doc fix.
13813 2005-02-10  Nick Roberts  <nickrob@snap.net.nz>
13815         * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
13816         width 0" to prevent word wrapping problems.
13818 2005-02-09  Kim F. Storm  <storm@cua.dk>
13820         * ido.el (ido-file-extensions-order): New defcustom.
13821         (ido-file-extension-lessp, ido-file-extension-aux)
13822         (ido-file-extension-order): New advanced file ordering.
13823         (ido-file-lessp): New simple file ordering.
13824         (ido-sort-list): Remove.
13825         (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
13826         (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
13828 2005-02-08  Dan Nicolaescu  <dann@ics.uci.edu>
13830         * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
13831         that some versions of grep produce.
13832         (grep-mode-font-lock-keywords): Likewise.
13834 2005-02-09  Nick Roberts  <nickrob@snap.net.nz>
13836         * progmodes/gdb-ui.el (gdb-location-list): New variable.
13837         (gdb-cdir): Delete.
13838         (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
13839         (gdb-source-info): Treat case when source file is in another
13840         directory properly.
13841         (gdb-get-location): New function.
13843 2005-02-07  Jay Belanger  <belanger@truman.edu>
13845         * calc/calc-prog.el (calc-write-parse-table-part)
13846         (calc-fix-token-name): Fix a check for language type.
13848         * calc/calccomp.el (math-compose-expr): Fix a check for language type.
13850 2005-02-07  Andre Spiegel  <spiegel@gnu.org>
13852         * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
13853         as directory not writable.
13855 2005-02-07  Kim F. Storm  <storm@cua.dk>
13857         * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
13858         (cua--standard-movement-commands): Remove list.
13859         Instead, set CUA property value to move for movement commands.
13860         (cua-movement-commands): Remove.  Users must set CUA prop instead.
13861         (cua--pre-command-handler): Check CUA property.
13862         (cua--init-keymaps): Don't remap undo commands.
13863         (cua-mode): Don't call cua--rectangle-on-off.
13865         * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
13866         (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
13867         (cua--rect-undo-set-point): New var.
13868         (cua--rectangle-undo-boundary): Setup undo apply entry.
13869         (cua--rect-undo-handler): New function for rectangle undo.
13870         (cua--rect-start-position, cua--rect-end-position): Add.
13871         (cua--rectangle-post-command): Call cua--rectangle-set-corners
13872         for restored rectangle.  Set point if cua--rect-undo-set-point.
13874 2005-02-06  Jay Belanger  <belanger@truman.edu>
13876         * calc/calc-lang.el (calc-tex-language): Display more information
13877         in messages.
13879         * calc/calccomp.el (math-compose-expr): Allow multiline matrices
13880         in TeX mode.
13882 2005-02-06  Richard M. Stallman  <rms@gnu.org>
13884         * emacs-lisp/lisp.el (buffer-end): Doc fix.
13886 2005-02-05  Arne_J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
13888         * net/ldap.el (ldap-search-internal): Support attributes with
13889         optional descriptions separated by a semi-colon, as in
13890         "userCertificate;binary".
13892 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13894         * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
13895         isn't a cons (i.e. the version is 0).
13897 2005-02-05  Eli Zaretskii  <eliz@gnu.org>
13899         * help.el (help-for-help): Doc fix.
13901 2005-02-05  Nick Roberts  <nickrob@snap.net.nz>
13903         * progmodes/gdb-ui.el: Update copyright.  Put GDB-Frames before
13904         GDB-Windows on the menu-bar as this works better.
13906 2005-02-04  Jay Belanger  <belanger@truman.edu>
13908         * calc/calc-embed.el (calc-embedded-update): Don't put in
13909         unnecessary newlines.  Adjust the end of formula marker.
13911         * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
13912         (math-latex-parse-two-args): New function.
13914 2005-02-03  Lute Kamstra  <lute@gnu.org>
13916         * help-fns.el (help-with-tutorial): Make sure that users cannot
13917         remove the entire text of the tutorial by means of `undo'.
13919 2005-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13921         * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
13922         in recent changes, where the ispell process was repeatedly
13923         killed & restarted.
13925         * international/mule-cmds.el (set-locale-environment): Set file-name
13926         coding system to utf-8 on Darwin systems.
13927         (set-default-coding-systems): Don't set default-file-name-coding-system
13928         on Darwin systems.
13930 2005-02-03  Richard M. Stallman  <rms@gnu.org>
13932         * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
13934 2005-02-03  Matt Hodges  <MPHodges@member.fsf.org>
13936         * faces.el (list-faces-display): Add optional argument.
13938 2005-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13940         * font-core.el (font-lock-default-function): Handle the rare case where
13941         only font-lock-keywords is set.
13943 2005-02-02  Kenichi Handa  <handa@m17n.org>
13945         * international/characters.el: Cancel previous change for
13946         I-WITH-DOT-ABOVE and DOTLESS-i.
13948         * international/latin-5.el: Cancel previous change.
13950 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
13952         * progmodes/gud.el: Correction to syntax in gud-menu-map.
13954 2005-02-02  Kenichi Handa  <handa@m17n.org>
13956         * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
13957         DOTLESS-i.
13959         * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
13960         Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
13962         * case-table.el (get-upcase-table): New function.
13963         (copy-case-table): Copy upcaes table too if non-nil.
13964         (set-case-syntax-delims): Maintain upcase table too.
13965         (set-case-syntax-pair): Likewise.
13966         (set-upcase-syntax, set-downcase-syntax): New functions.
13967         (set-case-syntax): Maintain upcase table too.
13969 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
13971         * progmodes/gdb-ui.el (gdb-goto-info): Delete.
13973         * progmodes/gud.el (gud-goto-info): New function.
13974         (gud-tool-bar-map): Use correct icon.
13976 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
13978         * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
13979         When delegating, order args in the funcall correctly.
13981 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
13983         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
13985 2005-02-01  Carsten Dominik  <dominik@science.uva.nl>
13987         * textmodes/reftex.el (reftex-access-scan-info): Error out in a
13988         buffer not visiting a file.
13990 2005-01-31  Jay Belanger  <belanger@truman.edu>
13992         * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
13993         bound on the line with the formula.
13995 2005-01-31  Kim F. Storm  <storm@cua.dk>
13997         * ses.el (ses-create-cell-variable-range)
13998         (ses-destroy-cell-variable-range, ses-reset-header-string)
13999         (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
14000         (ses-insert-row): Fix format of apply undo entries.
14002 2005-01-31  Jay Belanger  <belanger@truman.edu>
14004         * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
14005         parts.
14007         * calc/calc-embed.el (calc-embedded-open-formula)
14008         (calc-embedded-close-formula): Ignore matrix environments.
14010         * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
14011         TeX mode.
14013         * calc/calc-lang.el (math-function-table, math-oper-table)
14014         (math-variable-table): Adjust the LaTeX portions.
14016         * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
14017         (math-latex-ignore-words): New constant.
14019 2005-01-31  Richard M. Stallman  <rms@gnu.org>
14021         * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
14022         (ispell-local-dictionary): Doc fix.
14023         (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
14024         Don't reinitialize at run time.  Don't defcustom.
14025         All uses changed to append ispell-local-dictionary-alist,
14026         or check it first.
14027         (ispell-current-dictionary): New variable for dictionary in use.
14028         (ispell-dictionary): Now used only for global default.
14029         (ispell-start-process): Set ispell-current-dictionary,
14030         not ispell-dictionary.
14031         (ispell-change-dictionary): Use this only for setting
14032         user preferences.
14033         (ispell-internal-change-dictionary): New function
14034         to change the current dictionary in use.
14035         (ispell-region, ispell-process-line, ispell-buffer-local-dict):
14036         Use ispell-current-dictionary.
14037         Handle ispell-local-dictionary-overridden.
14038         (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
14040 2005-01-31  Jay Belanger  <belanger@truman.edu>
14042         * calc/calc-aent.el (math-read-token): Add support for LaTeX.
14044         * calc/calc-ext.el: Add calc-latex-language to autoloads.
14045         (calc-mode-map): Add calc-latex-language.
14047         * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
14048         (math-latex-print-frac): New functions.
14049         (math-oper-table, math-function-table, math-variable-table)
14050         (math-complex-format, math-input-filter): Add latex properties.
14051         (calc-set-language): Set math-expr-special-function-mapping.
14053         * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
14054         (calc-write-parse-table-part): Add LaTeX support.
14056         * calc/calc.el (calc-language): Adjust docstring.
14057         (calc-set-mode-line): Add LaTeX support.
14058         (math-expr-special-function-mapping): New variable.
14059         (math-tex-ignore-words): Add to list.
14061         * calc/calccomp.el (math-compose-expr, math-compose-rows):
14062         Add LaTeX support.
14063         (math-compose-expr): Add support for special functions.
14065         * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
14067 2005-01-31  Nick Roberts  <nickrob@snap.net.nz>
14069         * progmodes/gdb-ui.el (gdb-memory-address)
14070         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
14071         (gdb-memory-mode-map, gdb-memory-format-keymap)
14072         (gdb-memory-format-menu, gdb-memory-unit-keymap)
14073         (gdb-memory-unit-menu): New variables for a buffer
14074         that lets the user examine program memory.
14075         (gdb-memory-set-address, gdb-memory-set-repeat-count)
14076         (gdb-memory-format-binary, gdb-memory-format-octal)
14077         (gdb-memory-format-unsigned, gdb-memory-format-signed)
14078         (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
14079         (gdb-memory-format-menu-1, gdb-memory-unit-giant)
14080         (gdb-memory-unit-word, gdb-memory-unit-halfword)
14081         (gdb-memory-unit-byte, gdb-memory-unit-menu)
14082         (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
14083         (gdb-memory-mode, gdb-memory-buffer-name)
14084         (gdb-display-memory-buffer, gdb-frame-memory-buffer):
14085         New functions for above buffer.
14087 2005-01-30  Richard M. Stallman  <rms@gnu.org>
14089         * cus-edit.el (custom-bury-buffer): Function deleted.
14090         (custom-buffer-done-function): Option deleted.
14091         (custom-buffer-done-kill): New (replacement option.
14092         (Custom-buffer-done): Call quit-window.
14093         (custom-buffer-create-internal): Update for above changes.
14095 2005-01-29  Luc Teirlinck  <teirllm@auburn.edu>
14097         * simple.el (undo-ask-before-discard): New var.
14098         (undo-outer-limit-truncate): Implement it.
14099         (undo-extra-outer-limit): Doc update.
14101 2005-01-29  Richard M. Stallman  <rms@gnu.org>
14103         * ses.el (undo-more): Delete defadvice.
14104         (ses-begin-change): Doc fix.
14106         * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
14107         instead of rebinding C-x u and C-_.
14109         * files.el (normal-backup-enable-predicate): Return nil for files
14110         in /tmp, regardless of temporary-file-directory.
14112         * man.el (Man-getpage-in-background): Disable undo in Man buffer.
14114         * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
14115         (open-rectangle, delete-whitespace-rectangle-line)
14116         (clear-rectangle-line): If FILL, pass t instead of FILL
14117         for move-to-column's 2nd arg.
14119         * simple.el (undo): Fix the test for continuing a series of undos.
14120         (undo-more): Set pending-undo-list to t when we reach end.
14121         (pending-undo-list): Move up defvar.
14123         * wid-edit.el (widget-button-click):
14124         Shorten the range of the track-mouse binding.
14126         * comint.el (comint-insert-input): Undo previous changes;
14127         use last-input-event in interactive spec.
14129 2005-01-29  Eli Zaretskii  <eliz@gnu.org>
14131         * progmodes/compile.el (compilation-start): Bind buffer-read-only
14132         to nil before invoking call-process.  Reset buffer's modified flag
14133         after fontifying it in the no-async branch.
14135         * wid-edit.el (widget-specify-button): If mouse pointer shape
14136         cannot be changed, use mouse face instead.
14138 2005-01-29  Nick Roberts  <nickrob@snap.net.nz>
14140         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
14141         (gdb-goto-breakpoint): Make breakpoint handling work on template
14142         functions in C++.  Reported by Martin Reed <mjreed@essex.ac.uk>
14143         (gdb-assembler-custom): Update to recognize breakpoint information
14144         added on 2005-01-19.
14146 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14148         * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
14149         (dsssl-mode): Use define-derived-mode.
14150         (scheme-mode-initialize): Remove.
14151         (scheme-mode): Use run-mode-hooks.
14153         * cus-edit.el (customize-group-other-window)
14154         (custom-buffer-create-other-window): Don't override special-display-*.
14155         (custom-mode-map): Make it dense.
14157         * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
14158         sets the default value.
14160 2005-01-28  Eli Zaretskii  <eliz@gnu.org>
14162         * descr-text.el: Add more keywords.
14164 2005-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14166         * speedbar.el: Avoid unnecessary use of locate-library.
14168         * international/mule-cmds.el (standard-display-european-internal):
14169         Don't fiddle with latin-1 non-break space any more since it's now
14170         special cased in the C code.
14171         Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
14173 2005-01-26  Luc Teirlinck  <teirllm@auburn.edu>
14175         * cus-start.el (all): Add `undo-outer-limit'.
14177 2005-01-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14179         * textmodes/bibtex.el (bibtex-format-entry):
14180         Use `bibtex-empty-field-re' only on the text of fields, not on entire
14181         field lines.
14182         (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
14183         not on part of a buffer.
14185 2005-01-25  Lute Kamstra  <lute@gnu.org>
14187         * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
14188         nonempty field text strings like "{letters\\macro{}more letters}".
14189         Clarify docstring.
14190         (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
14191         (bibtex-entry-offset, bibtex-parse-association)
14192         (bibtex-parse-field-name): Fix typos in docstrings.
14193         (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
14195 2005-01-24  Carsten Dominik  <dominik@science.uva.nl>
14197         * textmodes/reftex-global.el (reftex-isearch-push-state-function)
14198         (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
14199         (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
14200         (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
14202         * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
14203         isearch minor mode.
14205 2005-01-24  Luc Teirlinck  <teirllm@auburn.edu>
14207         * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
14209 2005-01-24  Lute Kamstra  <lute@gnu.org>
14211         * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
14212         CASECHARS and NOT-CASECHARS regular expressions of the
14213         "nederlands" and "nederlands8" dictionaries to prevent a "Range
14214         striding over charsets" error.
14216 2005-01-24  Jay Belanger  <belanger@truman.edu>
14218         * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
14219         display variable name.
14221 2005-01-24  Kenichi Handa  <handa@m17n.org>
14223         * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
14224         Fix setting of the element of encoded-kbd-iso2022-invocations.
14226 2005-01-24  Nick Roberts  <nickrob@snap.net.nz>
14228         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
14229         (gdb-threads-select): Change to also accept mouse events.
14230         (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
14231         (gdb-threads-mouse-select): Delete.
14233 2005-01-23  Luc Teirlinck  <teirllm@auburn.edu>
14235         * files.el (insert-directory): Take care of empty directory,
14236         listed without -a switch.
14238 2005-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14240         * textmodes/refill.el (refill-post-command-function):
14241         Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
14242         to the list of functions that we should be careful not to undo.
14243         (refill-late-fill-paragraph-function): Remove.
14244         (refill-saved-state): New var.
14245         (refill-mode): Use it to save fill-paragraph-function.
14246         Save also the value of auto-fill-function.
14248         * term/w32-win.el: Simplify code.
14250 2005-01-23  Kim F. Storm  <storm@cua.dk>
14252         * simple.el (line-move): Adapt to new return value from
14253         pos-visible-in-window-p.
14255         * simple.el (line-move): Fix last change.  Check partial
14256         visibility at point rather than at window-start.
14258 2005-01-22  Jason Rumney  <jasonr@gnu.org>
14260         * term/w32-win.el (xw-defined-colors): Remove debug-message.
14262 2005-01-22  David Kastrup  <dak@gnu.org>
14264         * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
14266 2005-01-22  Eli Zaretskii  <eliz@gnu.org>
14268         * type-break.el (type-break-mode): Add a test for
14269         type-break-file-name being non-nil.
14271 2005-01-22  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
14273         * net/eudc.el (top level): Call (message "") via progn, so that
14274         eudc-options-file is loaded.
14276 2005-01-22  Kim F. Storm  <storm@cua.dk>
14278         * simple.el (line-move-1): Rename from line-move.
14279         (line-move): New function that adjusts vscroll for partially
14280         visible rows, and calls line-move-1 otherwise.
14282 2005-01-21  Ren\e,Ai\e(B Kyllingstad  <listmailxemacs@kyllingstad.com>
14284         * pcomplete.el: Define pcomplete-read-event instead of read-event,
14285         since it's not a complete read-event implementation
14287 2005-01-20  Jay Belanger  <belanger@truman.edu>
14289         * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
14290         for called function.
14292 2005-01-20  Steven Tamm  <steventamm@mac.com>
14294         * term/mac-win.el (process-connection-type): Remove.
14295         Controlled now by s/darwin.h:PTY_ITERATION.
14297 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14299         * window.el (handle-select-window): Don't switch window when we're
14300         in the minibuffer.
14302 2005-01-10  Paul Pogonyshev  <pogonyshev@gmx.net>
14304         * subr.el (dotimes-with-progress-reporter): New macro.
14306         * ses.el (ses-dotimes-msg): Remove macro.
14307         Use `dotimes-with-progress-reporter' instead.
14309 2005-01-19  Steven Tamm  <steventamm@mac.com>
14311         * term/mac-win.el (process-connection-type): Use new
14312         operating-system-release variable to use ptys on Darwin 7 (OS X
14313         10.3) when using carbon build.
14315 2005-01-19  Jay Belanger  <belanger@truman.edu>
14317         * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
14318         flags if the last command was a tab or M-tab.
14320         * calc/calc-prog.el (calc-user-define-edit): Put original formula
14321         in formula editing buffer.
14323 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
14325         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
14326         breakpoint image symbol in margin.
14328 2005-01-19  Jay Belanger  <belanger@truman.edu>
14330         * calc/calc-prog.el (calc-execute-kbd-macro):
14331         Ignore calc-keep-arg-flag.
14333 2005-01-19  Kenichi Handa  <handa@m17n.org>
14335         * textmodes/ispell.el (ispell-looking-at): New function.
14336         (ispell-process-line): Use ispell-looking-at to compare the ispell
14337         output and the buffer contents.
14339 2005-01-18  Jay Belanger  <belanger@truman.edu>
14341         * calc/calc.el (calc-display-raw): Fix docstring.
14343 2005-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14345         * simple.el (blink-matching-open): Strip extra info from syntax.
14347         * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
14348         funny chars in the end-of-here-doc marker.
14350 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
14352         * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
14353         that enable/disabled state of breakpoints is shown correctly in
14354         fringe and on ttys.
14355         (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
14356         Add breakpoint information as text properties.
14357         (gdb-mouse-toggle-breakpoint):
14358         Rename to gdb-mouse-set-clear-breakpoint.
14359         (gdb-mouse-toggle-breakpoint): New function.  Enable/disable
14360         breakpoints in the margin.
14361         (gdb-remove-strings): Simplify.
14363 2005-01-17  Jay Belanger  <belanger@truman.edu>
14365         * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
14366         erasing buffer.
14368 2005-01-17  Richard M. Stallman  <rms@gnu.org>
14370         * progmodes/grep.el (grep-find): Copy from `grep' the condition
14371         for calling grep-compute-defaults.
14373         * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
14374         if buffer is empty.
14376         * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
14378 2005-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14380         * hilit-chg.el (highlight-changes-mode): Don't autoload.
14382         * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
14383         non-preloaded variables.
14385 2005-01-17  Steven Tamm  <steventamm@mac.com>
14387         * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
14388         tex-shell cause to force interactivity when using pipes.
14390 2005-01-17  Kim F. Storm  <storm@cua.dk>
14392         * simple.el (just-one-space): Make arg optional.
14394 2005-01-17  Nick Roberts  <nickrob@snap.net.nz>
14396         * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
14397         posn-at-x-y to t to access left-margin.
14399 2005-01-16  Michael Albinus  <michael.albinus@gmx.de>
14401         Sync with Tramp 2.0.47.
14403         * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
14404         catching keep-date problems in cp/scp operations.
14405         (tramp-handle-copy-file): Don't call `set-file-modes'
14406         unconditionally.  Specialized functions should know better what is
14407         necessary.  This improves performance a little bit, and the
14408         functions could catch errors with `cp -p' and `scp -p'.
14409         (tramp-do-copy-or-rename-file-via-buffer)
14410         (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
14411         when appropriate.
14412         (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
14413         Call `set-file-modes' when appropriate.
14414         (tramp-action-out-of-band): Mask `scp -p' error.  Reported by Isak
14415         Johnsson <isak@hypergene.com>
14416         (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
14417         of both Tramp buffer and debug buffer.  Reported by Joakim Verona
14418         <joakim@verona.se>
14419         (tramp-file-name-for-operation): Mark `shell-command' as magic for
14420         Emacs only.
14422         * net/tramp-util.el (tramp-minor-mode): New minor mode.  Add it to
14423         `find-file-hooks' and `dired-mode-hook'.
14424         (tramp-minor-mode-map): Respective map.  Add remapping for
14425         `compile' and `recompile'.
14426         (tramp-remap-command, tramp-recompile): New defuns.
14427         (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
14428         in buffer "*Compilation*".  Call the commands asynchronously.
14430         * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
14431         (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
14432         `shell-command', because it isn't magic in XEmacs.  Reported by
14433         Adrian Aichner <adrian@xemacs.org>.
14435         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
14436         `substitute-in-file-name.
14437         (tramp-smb-handle-substitute-in-file-name): New defun.
14438         (tramp-smb-advice-PC-do-completion): Delete advice.
14440 2005-01-16  Kai Grossjohann  <kgrossjo@eu.uu.net>
14442         * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
14443         Fix error in deleting region.
14445 2005-01-15  Richard M. Stallman  <rms@gnu.org>
14447         * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
14448         In non-temp buffer, switch syntax table temporarily.
14450         * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
14452         * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
14454         * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
14456         * imenu.el (imenu--split-menu): Copy menulist before sorting.
14457         (imenu--generic-function): Use START, not BEG, as pos of definition.
14459         * simple.el (just-one-space): Argument specifies number of spaces.
14461         * simple.el (eval-expression-print-format): Avoid warning
14462         about edebug-active.
14464 2005-01-15  James R. Van Zandt  <jrvz@comcast.net>  (Tiny change)
14466         * progmodes/sh-script.el: Code copied from make-mode.el
14467         with small changes,
14468         (sh-mode-map): Bind C-c C-\.
14469         (sh-backslash-column, sh-backslash-align): New variables.
14470         (sh-backslash-region, sh-append-backslash): New functions.
14472 2005-01-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14474         * mail/rmail.el: Updated to work with movemail from GNU Mailutils
14475         (rmail-pop-password, rmail-pop-password-required): Move to
14476         rmail-obsolete group.
14477         (rmail-set-pop-password): Rename to rmail-set-remote-password.
14478         All callers updated.
14479         (rmail-get-pop-password): Rename to rmail-get-remote-password.
14480         Take an argument specifying whether it is POP or IMAP mailbox we
14481         are using.  All callers updated.
14482         (rmail-pop-password-error): Rename to
14483         rmail-remote-password-error.  Added mailutils-specific error message.
14484         (rmail-movemail-search-path)
14485         (rmail-movemail-variant-in-use): New variables.
14486         (rmail-remote-password, rmail-remote-password-required):
14487         New customization variables.
14488         (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
14489         (rmail-parse-url): New function.
14490         (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
14491         with GNU mailutils movemail.
14493 2005-01-15  Kevin Ryde  <user42@zip.com.au>
14495         * info-look.el (c-mode/symbol): Add ^` to prefix, and change
14496         suffix to space, $ or '$, to correctly position point when going
14497         to @table style constants like DBL_MAX.
14499 2005-01-15  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
14501         * type-break.el (type-break-mode, type-break-file-time)
14502         (type-break-file-keystroke-count, type-break-choose-file):
14503         Don't store data in or load data from the file if type-break-file-name
14504         is nil.
14505         (type-break-file-name): Doc update as per the above.
14507 2005-01-15  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
14509         * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
14510         lookup-key might return nil; handle that.
14512 2005-01-15  Alan Mackenzie  <acm@muc.de>
14514         * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
14515         rather than the element found, thus enabling the tree to be setcar'd.
14517 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
14519         * textmodes/org.el (org-show-following-heading): New option.
14520         (org-show-hierarchy-above): Use `org-show-following-heading'.
14521         (org-cycle): Documentation fix.
14523         * textmodes/org.el (orgtbl-optimized): New option
14524         (orgtbl-mode): New command, a minor mode.
14525         (orgtbl-mode-map): New variable.
14526         (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
14527         (orgtbl-error, orgtbl-self-insert-command)
14528         (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
14530         * textmodes/org.el (org-mode): `org-table-may-need-update' is now
14531         a local variable in each org-mode buffer.
14533         * textmodes/org.el (org-set-regexps-and-options): Rename from
14534         `org-set-regexps'.  Added checking for STARTUP keyword.
14535         (org-get-current-options): Add STARTUP options.
14536         (org-table-insert-row): Make mode intelligent about when
14537         realignment is needed.
14538         (org-self-insert-command, org-delete-backward-char, org-delete-char):
14539         New commands.
14540         (org-enable-table-editor): New default value `optimized'.
14541         (org-table-blank-field): Support blanking regions if active.
14543 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
14545         * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
14546         if the year is not given.
14548         * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
14549         Add new escapes %m and %M, fixed bug with %F by adding
14550         save-match-data.
14551         (reftex-reference): Remove ?. from list of spaces.
14552         (reftex-label-info): Add automatic label prefix recognition.
14554         * textmodes/reftex-index.el (reftex-index-next-phrase):
14555         Add slave parameter to call of `reftex-index-this-phrase'.
14556         (reftex-index-this-phrase): New optional argument.
14557         (reftex-index-region-phrases): Add slave parameter to call of
14558         `reftex-index-this-phrase'.
14559         (reftex-display-index): New argument redo.
14560         (reftex-index-rescan): Add 'redo to arguments of
14561         `reftex-display-index'.
14562         (reftex-index-Rescan, reftex-index-revert)
14563         (reftex-index-switch-index-tag): Add 'redo to arguments of
14564         `reftex-display-index'.
14565         (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
14566         indexing.  Fix bug with matching is there is a quote before or
14567         after the word.
14569         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
14570         Fix bug when collecting citation keys in lines with comments.
14571         (reftex-citation): Prefix argument no longer rescans the document,
14572         but forces prompting for optional arguments of cite macros.
14573         (reftex-do-citation): Prompting for optional arguments implemented.
14575         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
14576         Add optional arguments to most cite commands.
14577         (reftex-cite-cleanup-optional-args): New option
14578         (reftex-cite-prompt-optional-args): New option.
14579         (reftex-trust-label-prefix): New option.
14581         * textmodes/reftex-toc.el (reftex-toc-find-section):
14582         Add push-mark before changing the position in the buffer.
14584         * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
14585         (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
14587 2005-01-14  Nick Roberts  <nickrob@snap.net.nz>
14589         * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
14590         more carefully.
14592 2005-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14594         * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
14595         (sgml-mode): Use it.
14596         (sgml-get-context): Better keep track of implicitly closed tags.
14598 2005-01-13  Kenichi Handa  <handa@m17n.org>
14600         * textmodes/ispell.el: These changes are to fix misalignment error
14601         caused by equivalent characters of different Emacs charsets.
14602         (ispell-unified-chars-table): New variable.
14603         (ispell-get-decoded-string): New function.
14604         (ispell-get-casechars, ispell-get-not-casechars)
14605         (ispell-get-otherchars): Call ispell-get-decoded-string.
14607 2005-01-12  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
14609         * custom.el (custom-declare-variable): Just put symbol instead
14610         of (defvar . symbol) in `current-load-list'.
14612 2005-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
14614         * emacs-lisp/elint.el: Fixed typo in Commentary section.
14616 2005-01-12  Jay Belanger  <belanger@truman.edu>
14618         * calc/calc-help.el (calc-describe-key): Use temporary info buffer
14619         to create a Calc summary.
14621 2005-01-12  Kim F. Storm  <storm@cua.dk>
14623         * mouse.el (mouse-on-link-p): Change functionality and doc
14624         string to comply with latest description in lisp ref.
14626 2005-01-12  Nick Roberts  <nickrob@snap.net.nz>
14628         * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
14629         Enable mouse clicks on mode-line, header-line and margin.
14630         (event-type): Give mouse event symbols an 'event-kind property
14631         with value 'mouse-click.
14633 2005-01-12  Juri Linkov  <juri@jurta.org>
14635         * facemenu.el (list-colors-display): Add new arg buffer-name.
14636         Use it.  Fix docstring.  Replace code for identifying duplicate
14637         colors by the name with call to `list-colors-duplicates' which
14638         identifies duplicate colors by the value unless the color
14639         is one of special Windows colors.  Set truncate-lines to t.
14640         Print sorted duplicate color names on each line.  Indent to 22
14641         \(the longest color name in rgb.txt) instead of 20.  Optimize.
14642         (list-colors-duplicates): New function.
14643         (facemenu-color-name-equal): Delete function.
14645         * facemenu.el (list-colors-print): New function created from code
14646         in list-colors-display.  Print #RRGGBB at the window right edge.
14647         (list-colors-display): When temp-buffer-show-function is not
14648         defined, call list-colors-print from temp-buffer-show-hook
14649         to get the right value of window-width in list-colors-print
14650         after the buffer is displayed.
14652         * simple.el (pop-mark): Move deactivate-mark out of conditional
14653         part to deactivate the active mark regardless of the state of the
14654         mark ring.
14656         * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
14657         variables line in desktop files.
14659 2005-01-12  Juri Linkov  <juri@jurta.org>
14661         * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
14662         Bring together isearch highlight related options.
14663         (lazy-highlight): Replace group `replace' by `matching'.
14664         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
14665         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
14666         (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
14667         and declare them obsolete.
14668         (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
14669         (isearch-faces): Remove defgroup.
14670         (isearch-overlay, isearch-highlight, isearch-dehighlight):
14671         Move isearch highlighting code closer to lazy highlighting code.
14673         * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
14674         (query-replace-highlight, query-replace-lazy-highlight)
14675         (query-replace): Move definitions to the beginning of the file.
14677 2005-01-11  Juri Linkov  <juri@jurta.org>
14679         * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
14680         * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
14681         * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
14683         * info.el (Info-history-forward): New variable.
14684         (Info-select-node): Reset Info-history-forward to nil.
14685         (Info-last): Turn into defalias.
14686         (Info-history-back): Rename from Info-last.
14687         Add current node to Info-history-forward.
14688         (Info-history-forward): New fun.
14689         (Info-mode-map): Replace Info-last by Info-history-back.
14690         Bind Info-history-forward to "r".
14691         (Info-mode-menu): Replace Info-last by Info-history-back.
14692         Fix menu item text.  Add menu item for Info-history-forward.
14693         (info-tool-bar-map): Replace Info-last by Info-history-back.
14694         Replace its icon "undo" by "back_arrow".  Add icon "fwd_arrow"
14695         for Info-history-forward.
14696         (Info-mode): Replace Info-last by Info-history-back in docstring.
14697         Add local variable Info-history-forward.
14698         (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
14700 2005-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14702         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
14703         (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
14704         Ignore select-window events rather than fiddle with
14705         mouse-autoselect-window.
14707 2005-01-11  Matthew Mundell  <matt@mundell.ukfsn.org>
14709         * type-break.el (type-break-mode): Fix previous change.
14711 2005-01-10  Jay Belanger  <belanger@truman.edu>
14713         * calc/calc-ext.el (calc-reset): Reset when inside embedded
14714         calculator; only reset when point is inside a calculator.
14715         Don't adjust the window height if the window takes up the whole height
14716         of the frame.
14718 2005-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
14720         * ebuff-menu.el (Electric-buffer-menu-mode):
14721         Preserve value of buffer-local var header-line-format.
14723 2005-01-09  Jay Belanger  <belanger@truman.edu>
14725         * calc/calc.el (calc-mode-var-list-restore-saved-values):
14726         Make sure settings file exists before accessing it.
14728         * calc/calc-embed.el (calc-embedded-subst):
14729         Replace math-multi-subst-rec, which is only supposed to be called
14730         by math-multi-subst, by math-multi-subst.
14732 2005-01-09  Andre Spiegel  <spiegel@gnu.org>
14734         * vc.el (vc-allow-async-revert): New user option.
14735         (vc-disable-async-diff): New internal variable.
14736         (vc-revert-buffer): Use them to disable asynchronous diff.
14738         * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
14739         (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
14740         asynchronously if vc-disable-async-diff is t.
14742 2005-01-09  Jay Belanger  <belanger@truman.edu>
14744         * calc/calc.el (defcalcmodevar): New macro.
14745         (calc-mode-var-list-restore-default-values)
14746         (calc-mode-var-list-restore-saved-values): New functions.
14747         (calc-mode-var-list): Use defcalcmodevar to define it.
14748         (calc-always-load-extensions, calc-line-numbering)
14749         (calc-line-breaking, calc-display-just, calc-display-origin)
14750         (calc-number-radix, calc-leading-zeros, calc-group-digits)
14751         (calc-group-char, calc-point-char, calc-frac-format)
14752         (calc-prefer-frac, calc-hms-format, calc-date-format)
14753         (calc-float-format, calc-full-float-format, calc-complex-format)
14754         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
14755         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
14756         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
14757         (calc-matrix-brackets, calc-language, calc-language-option)
14758         (calc-left-label, calc-right-label, calc-word-size)
14759         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
14760         (calc-display-raw, calc-internal-prec, calc-angle-mode)
14761         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
14762         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
14763         (calc-window-height, calc-display-trail, calc-show-selections)
14764         (calc-use-selections, calc-assoc-selections)
14765         (calc-display-working-message, calc-auto-why, calc-timing)
14766         (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
14767         (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
14768         (calc-gnuplot-default-device, calc-gnuplot-default-output)
14769         (calc-gnuplot-print-device, calc-gnuplot-print-output)
14770         (calc-gnuplot-geometry, calc-graph-default-resolution)
14771         (calc-graph-default-resolution-3d, calc-invocation-macro)
14772         (calc-show-banner): Use defcalcmodevar to declare them and set
14773         their default values.
14775         * calc/calc-ext.el (calc-reset): Restore saved values of variables
14776         instead of default values (but restore default values if there is
14777         an argument of 0).
14779 2005-01-09  David Kastrup  <dak@gnu.org>
14781         * desktop.el (desktop-restore-eager): Fix typo in type.
14783 2005-01-08  Richard M. Stallman  <rms@gnu.org>
14785         * cus-edit.el (customize): Delete :link.
14787 2005-01-08  Jay Belanger  <belanger@truman.edu>
14789         * calc/calc.el (calc-mode): Remove the extension from the
14790         `calc-settings-file' file name when loading it.
14792 2005-01-08  Kim F. Storm  <storm@cua.dk>
14794         * info.el (Info-mode-map, Info-next-link-keymap)
14795         (Info-prev-link-keymap, Info-up-link-keymap):
14796         Map follow-link to mouse-face.
14797         (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
14799 2005-01-08  Jay Belanger  <belanger@truman.edu>
14801         * calc/calc.el (calc-settings-file): Change default value.
14802         Suggested by cgw in a comment in calc-mode.el.
14804         * calc/calc-mode.el (calc-settings-file-name):
14805         Compare calc-settings-file to user-init-file instead of ~/.emacs.
14806         Replace ~/.emacs in a prompt by calc-settings-file.
14808 2005-01-07  Lars Hansen  <larsh@math.ku.dk>
14810         * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
14811         (desktop-lazy-idle-delay): New customizable variables.
14812         (desktop-buffer-args-list): New variable.
14813         (desktop-append-buffer-args): New function.
14814         (desktop-save): Call desktop-append-buffer-args for some buffers.
14815         (desktop-lazy-create-buffer): New function.
14816         (desktop-idle-create-buffers): New function.
14817         (desktop-read): Add message about buffers to restore lazily.
14818         (desktop-lazy-abort): New command.
14819         (desktop-clear): Call desktop-lazy-abort.
14820         (desktop-lazy-complete): New command.
14822 2005-01-06  Richard M. Stallman  <rms@gnu.org>
14824         * emacs-lisp/find-func.el (find-face-definition):
14825         Rename from find-face.
14827 2005-01-06  Kim F. Storm  <storm@cua.dk>
14829         * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
14831         * man.el (Man-xref-man-page, Man-xref-header-file)
14832         (Man-xref-normal-file): Add follow-link property.
14834 2005-01-06  Jay Belanger  <belanger@truman.edu>
14836         * calc/calc-units.el: Make sure the proper macro definitions are
14837         available when compiling.
14839 2005-01-06  Juri Linkov  <juri@jurta.org>
14841         * isearch.el (isearch-lazy-highlight-update):
14842         Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
14844 2005-01-06  Miles Bader  <miles@gnu.org>
14846         * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
14847         (isearch-lazy-highlight-face): Use new name.
14849 2005-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14851         * uniquify.el (uniquify-rationalize-file-buffer-names):
14852         Re-add an interactive spec.
14853         (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
14854         to the same name.
14856         * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
14857         (isearch-update, isearch-done): Adjust calls accordingly.
14859 2005-01-05  Richard M. Stallman  <rms@gnu.org>
14861         * custom.el (custom-set-variables, custom-theme-set-variables):
14862         Clarify documentation.
14864         * emacs-lisp/find-func.el (find-variable)
14865         (find-variable-other-window, find-variable-other-frame):
14866         Fix the TYPE args to find-function-read and find-function-do-it.
14867         (find-function): Doc fix.
14868         (find-function-at-point): Replace function-at-point alias.
14870 2005-01-04  Richard M. Stallman  <rms@gnu.org>
14872         * cus-face.el (custom-declare-face):
14873         Record defface in current-load-list.
14875         * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
14877         * emacs-lisp/find-func.el: Doc fixes.
14878         (find-face-regexp): New variable.
14879         (find-function-regexp-alist): New variable.
14880         (find-function-C-source): Third arg is now TYPE.
14881         (find-function-search-for-symbol): Handle general TYPE.
14882         (find-function-read, find-function-do-it): Handle general TYPE.
14883         (find-definition-noselect, find-face): New functions.
14884         (function-at-point): Alias deleted.
14886 2005-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14888         * battery.el (display-battery-mode): Rename from display-battery.
14889         Handle the case where it gets turned off.
14891 2005-01-04  Richard M. Stallman  <rms@gnu.org>
14893         * cus-edit.el (customize): Make :link point to user doc.
14895         * man.el (Man-fontify-manpage): Turn off undo generation.
14897         * add-log.el (change-log-font-lock-keywords): Don't match just "From".
14899 2005-01-04  Andreas Schwab  <schwab@suse.de>
14901         * files.el (insert-directory): Only look for error lines in
14902         inserted text.  Don't move too far after processing --dired markers.
14904 2005-01-04  Richard M. Stallman  <rms@gnu.org>
14906         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
14907         Don't expand if the character is @, period, dash, etc.
14908         (define-mail-abbrev): Quote names that contain problem characters.
14910 2005-01-04  Thien-Thi Nguyen  <ttn@gnu.org>
14912         * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
14914 2005-01-03  Richard M. Stallman  <rms@gnu.org>
14916         * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
14917         (query-replace-highlight, query-replace-lazy-highlight)
14918         (query-replace): Definitions moved up.  Doc fix.
14920 2005-01-03  Richard M. Stallman  <rms@gnu.org>
14922         * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
14923         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
14924         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
14925         (lazy-highlight-face): Rename from isearch-lazy-...
14926         Change all references to them.
14928 2005-01-03  Luc Teirlinck  <teirllm@auburn.edu>
14930         * cus-edit.el (custom-file): Doc fix for defcustom.
14931         (custom-file): The function no longer sets the variable
14932         `custom-file' to its return value.
14934         * startup.el (command-line): No longer load `custom-file'.
14936 2005-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14938         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
14940         * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
14941         Don't confuse module-prefixed identifiers for labels.
14942         Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
14944 2005-01-02  Richard M. Stallman  <rms@gnu.org>
14946         * files.el (basic-save-buffer-1): Fix previous change.
14948         * loadhist.el (file-loadhist-lookup): New function.
14949         (file-provides, file-requires): Use it.
14951         * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
14952         instead of calculating the right size.
14954 2005-01-02  Karl Chen  <quarl@cs.berkeley.edu>  (tiny change)
14956         * vc-svn.el (vc-svn-diff): Stay local if possible.
14958 2005-01-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14960         * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
14962         * files.el (hack-local-variables): Fix last change.
14964 2005-01-02  Jay Belanger  <belanger@truman.edu>
14966         * calc/calc-yank.el (calc-edit-top): New variable.
14967         (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
14968         object.  Change header properties.
14969         (calc-edit-finish, calc-edit-finish-stack-object)
14970         (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
14971         edited object.
14972         * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
14973         for the beginning of the edited object.
14974         * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
14975         for the beginning of the edited object.
14976         * calc/calc-prog.el (calc-edit-macro-finish-edit)
14977         (calc-finish-formula-edit, calc-macro-repeats)
14978         (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
14979         (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
14980         beginning of the edited object.
14981         (calc-user-define-edit): Change the header for editing macros.
14982         Remove unnecessary variable.
14984 2005-01-01  Jay Belanger  <belanger@truman.edu>
14986         * calc/calc-yank.el (calc-edit-mode): Change default header.
14987         (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
14988         * calc/calc-store.el (calc-edit-variable): Change title to match new
14989         header.
14990         * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
14991         mode to match new header.
14992         (calc-user-define-edit): Change titles to include names of commands.
14993         (calc-finish-formula-edit): Adjust to handle new header.
14994         (calc-finish-macro-edit): Remove.
14995         (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
14996         (calc-edit-macro-command, calc-edit-macro-command-type)
14997         (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
14998         (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
14999         (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
15000         (calc-edit-macro-finish-edit): New functions.
15001         (calc-user-define-edit): Use new functions to edit named calc macros.
15003 2005-01-01  Stefan  <monnier@iro.umontreal.ca>
15005         * files.el (hack-local-variables): Cleanup prefix/suffix matching.
15007         * ses.el (copy-region-as-kill): Deactivate mark.
15009 2005-01-01  Richard M. Stallman  <rms@gnu.org>
15011         * replace.el (occur-1): If the output buffer is also an input,
15012         don't kill it, rename it.
15014         * faces.el (set-face-background, set-face-foreground): Doc fix.
15016         * cus-face.el (custom-face-attributes): Fix :help-echo strings
15017         for :foreground and :background.
15019         * dired.el (dired-view-command-alist): Variable deleted.
15020         (dired-view-file, dired-mouse-find-file-other-window):
15021         Delete the code to use it.
15023 2005-01-01  Kim F. Storm  <storm@cua.dk>
15025         * image.el (insert-sliced-image): Use t for line-height property.
15027 See ChangeLog.11 for earlier changes.
15029 ;; Local Variables:
15030 ;; coding: iso-2022-7bit
15031 ;; End:
15033     Copyright (C) 2005 Free Software Foundation, Inc.
15034   Copying and distribution of this file, with or without modification,
15035   are permitted provided the copyright notice and this notice are preserved.
15037 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1