*** empty log message ***
[emacs.git] / lisp / ChangeLog
blob0d516ccb00e351b9f277c68405cf23c689040066
1 2005-11-27  Richard M. Stallman  <rms@gnu.org>
3         * mouse.el (mouse-drag-move-window-bottom):
4         Use adjust-window-trailing-edge.
6 2005-11-27  Luc Teirlinck  <teirllm@auburn.edu>
8         * simple.el (blink-matching-open): Ignore
9         `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
10         (blink-matching-paren-on-screen): Update docstring.
12         * paren.el (show-paren-mode): No longer change
13         `blink-matching-paren-on-screen'.
15 2005-11-27  John Paul Wallington  <jpw@pobox.com>
17         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
18         (gdb-threads-select, gdb-edit-register-value):
19         Use `posn-set-point' instead of `mouse-set-point' because the
20         latter is not fbound when configured without X.
22 2005-11-27  Kim F. Storm  <storm@cua.dk>
24         * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
25         existing face when partially highlighting a TAB in a rectangle.
27 2005-11-26  Kim F. Storm  <storm@cua.dk>
29         * ido.el (ido-mode-map): Doc fix.
30         (ido-mode-common-map, ido-mode-file-map)
31         (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
32         (ido-define-mode-map): Rewrite.  Select one of the new maps as
33         parent for ido-mode-map instead of building from scratch.
34         (ido-init-mode-maps): New defun to initialize new maps.
35         (ido-mode): Call it.
36         (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
37         (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
39 2005-11-26  John Paul Wallington  <jpw@pobox.com>
41         * arc-mode.el (archive-extract): Use `posn-set-point' instead of
42         `mouse-set-point' because the latter is not fbound when configured
43         without X.
45 2005-11-26  Thien-Thi Nguyen  <ttn@gnu.org>
47         * files.el (file-relative-name): Doc fix.
49 2005-11-26  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>
51         * progmodes/octave-inf.el (inferior-octave-startup): Force a
52         non-empty string for secondary prompt PS2.
54 2005-11-25  Chong Yidong  <cyd@stupidchicken.com>
56         * progmodes/compile.el (compilation-setup): Fix last change.
58 2005-11-26  Nick Roberts  <nickrob@snap.net.nz>
60         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
61         (gdb-mouse-toggle-breakpoint-margin)
62         (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
63         Add gdb-server-prefix to keep out of command history.
64         (gdb-edit-register-value): New function.
65         (gdb-registers-mode-map): Bind mouse-2 and RET to it.
66         (gdb-info-registers-custom): Use above map.
68 2005-11-25  Chong Yidong  <cyd@stupidchicken.com>
70         * custom.el (enable-theme): Signal error if argument is not a
71         theme.  Don't recalculate a face if it's not loaded yet.
73         * cus-face.el (custom-theme-set-faces): Don't change saved-face if
74         the `user' theme is in effect.
76         * info.el (Info-on-current-buffer): Record actual filename in
77         Info-current-file, instead of t, or a fake filename if a non-file
78         buffer.  Make autoload.
79         (Info-find-node, Info-revert-find-node): No need to check for
80         Info-current-file nil.
81         (Info-set-mode-line, Info-up, Info-copy-current-node-name):
82         Info-current-file is now never `t'.
83         (Info-fontify-node): Many simplifications due to Info-current-file
84         always being valid.  Use Info-find-file to find node filename.
86 2005-11-25  David Kastrup  <dak@gnu.org>
88         * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
89         new character, then delete" in order to preserve markers.
91 2005-11-25  David Ponce  <david@dponce.com>
93         * recentf.el (recentf-arrange-by-rule): Handle a special
94         `auto-mode-alist'-like "strip suffix" rule.
95         (recentf-build-mode-rules): Handle second level auto-mode entries.
97 2005-11-25  Michael Kifer  <kifer@cs.stonybrook.edu>
99         * viper-keym.el (viper-ESC-key): Use different values in terminal and
100         window modes.
102         * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
103         jde-javadoc-checker-report-mode.
105         * ediff-wind (ediff-make-wide-display): Slight simplification.
107         * ediff.el (ediff-date): Change the date of last update.
109 2005-11-24  Chong Yidong  <cyd@stupidchicken.com>
111         * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
112         Use define-minor-mode, and make it a local mode.  Turn on font-lock.
113         (hi-lock-mode): New global minor mode.
114         (turn-on-hi-lock-if-enabled): New function.
115         (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
116         Change arguments to regexp and face instead of a font-lock pattern.
117         Directly set face property, instead of refontifying.
118         (hi-lock-font-lock-hook): Check if font-lock is being turned on.
119         (hi-lock-find-patterns): Use line-number-at-pos.
121         (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode.  Use new
122         arguments for hi-lock-set-pattern.
123         (hi-lock-unface-buffer, hi-lock-set-file-patterns): Call
124         font-lock-fontify-buffer.
125         (hi-lock-find-file-hook, hi-lock-current-line)
126         (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
128         (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
129         turned off.
131         * progmodes/compile.el (compilation-setup): Don't fiddle with
132         font-lock-defaults.
134 2005-11-25  Nick Roberts  <nickrob@snap.net.nz>
136         * progmodes/gdb-ui.el (gdb-var-create-handler)
137         (gdb-var-list-children-handler): Find values for all variable
138         objects.  gud-speedbar-buttons decides whether to display them.
140 2005-11-24  Romain Francoise  <romain@orebokech.com>
142         * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
143         buffer name with a space.
145 2005-11-24  Carsten Dominik  <dominik@science.uva.nl>
147         * textmodes/org.el: (org-export-plain-list-max-depth): Renamed from
148         `org-export-local-list-max-depth'.  Change default value to 3.
149         (org-auto-renumber-ordered-lists)
150         (org-plain-list-ordered-item-terminator): New options.
151         (org-at-item-p, org-beginning-of-item, org-end-of-item)
152         (org-get-indentation, org-get-string-indentation)
153         (org-maybe-renumber-ordered-list, org-renumber-ordered-list): New
154         functions.
155         (org-move-item-down, org-move-item-up): New commands.
156         (org-export-as-html): New classes for CSS support.  Bug fix in
157         regular expression detecting fixed-width regions.  Respect
158         `org-local-list-ordered-item-terminator'.
159         (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
160         also a list item.
161         (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
162         New item moving functions.
164 2005-11-24  Juri Linkov  <juri@jurta.org>
166         * isearch.el (isearch-repeat): With empty search ring set
167         `isearch-error' to the error string instead of signaling error
168         with the function `error'.
170 2005-11-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
172         * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
174 2005-11-24  Nick Roberts  <nickrob@snap.net.nz>
176         * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
177         and variable.
178         (gdb-var-create-handler, gdb-var-list-children-handler):
179         Don't match on "char **...".
180         (gdb-var-update-handler): Find values for all variable objects.
181         (gdb-info-frames-custom): Identify frames by leading "#".
183         * progmodes/gud.el (gud-speedbar-menu-items): Add
184         gdb-speedbar-auto-raise as radio button.
185         (gud-speedbar-buttons): Raise speedbar if requested.
186         Don't match on "char **...".
187         (gud-speedbar-buttons): Add (pointer) value for non-leaves.
188         Make it editable.
190 2005-11-23  Chong Yidong  <cyd@stupidchicken.com>
192         * info.el (Info-fontify-node): Handle the case where
193         Info-current-file is t.
195 2005-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
197         * simple.el (blink-matching-open): Fix off-by-one in last change.
199 2005-11-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
201         * term/mac-win.el: Don't change default directory.
203 2005-11-22  Luc Teirlinck  <teirllm@auburn.edu>
205         * cus-edit.el (Custom-reset-standard): Make it handle Custom group
206         buffers correctly.  (It used to throw an error in such buffers.)
207         Make it ask for confirmation in group buffers and other Custom
208         buffers containing more than one customization item.
210 2005-11-22  John Paul Wallington  <jpw@gnu.org>
212         * net/goto-addr.el (goto-address-fontify): Put `follow-link'
213         property on mail and url overlays.
214         (goto-address-at-point): Use `posn-set-point' instead of
215         `mouse-set-point' because the latter is not fbound when configured
216         without X.
218 2005-11-22  Lars Hansen  <larsh@soem.dk>
220         * ls-lisp.el (ls-lisp-parse-symlink): Delete.
221         (ls-lisp-classify, ls-lisp-format): Delete call to
222         ls-lisp-parse-symlink.
223         (ls-lisp-handle-switches): Handle symlinks to directories as
224         directories when ls-lisp-dirs-first in non-nil.
226 2005-11-21  Luc Teirlinck  <teirllm@auburn.edu>
228         * startup.el (command-line): Make sure that loaddefs.el is handled
229         correctly in load-history.
231 2005-11-22  Nick Roberts  <nickrob@snap.net.nz>
233         * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
234         (gdb-struct-string, gdb-array-string): New constants.
235         (gdb-info-locals-handler): Use them.
236         (gdb-reset): Reset gdb-var-list to nil.
238 2005-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
240         * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
241         in patterns.
243 2005-11-21  Juri Linkov  <juri@jurta.org>
245         * custom.el (defcustom): Update link types in docstring.
247 2005-11-20  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
249         * custom.el (defgroup): Add doc-string-elt info.
251         * widget.el (define-widget): Don't use declare for the doc-string-elt.
253 2005-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
255         * newcomment.el (comment-enter-backward): Fix last fix.
257         * simple.el (blink-matching-open):
258         * paren.el (show-paren-function): Allow new paren-class info.
260 2005-11-20  Chong Yidong  <cyd@stupidchicken.com>
262         * faces.el: Revert 2005-11-17 change.  :ignore-defface is now
263         handled automagically.
265 2005-11-20  Juri Linkov  <juri@jurta.org>
267         * simple.el (what-cursor-position):
268         * descr-text.el (describe-char): Use Lisp-readable syntax
269         for octal and hex.  Reorder decimal, octal and hex values.
270         Remove excess whitespace in the output.  Use `=' in `column='
271         like in `point=' and `Hscroll='.
273         * international/mule-cmds.el (encoded-string-description):
274         Use Lisp-readable syntax for hex.
276 2005-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
278         * newcomment.el (comment-enter-backward): Handle the case where the
279         comment is closed by EOB.
281 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
283         * longlines.el (longlines-before-revert-hook)
284         (longlines-after-revert-hook): New functions.
285         (longlines-mode): Turn off longlines temporarily when reverting.
286         Add a message-setup-hook.
287         (longlines-decode-buffer): New function.
288         (longlines-wrap-line): Preserve marker positions.
290 2005-11-19  Andreas Schwab  <schwab@suse.de>
292         * emacs-lisp/shadow.el: Handle compressed files.
294 2005-11-19  Romain Francoise  <romain@orebokech.com>
296         * net/browse-url.el (browse-url-default-browser): Signal an error
297         if no usable browser can be found, rather than try to load w3.
299 2005-11-16  Ryan Yeske  <rcyeske@gmail.com>
301         * net/rcirc.el (rcirc-mangle-text): Add bold face property without
302         replacing existing properties.
303         (rcirc-my-nick, rcirc-other-nick, rcirc-server)
304         (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
305         tty specs.
306         (rcirc-server-prefix, rcirc-server): New faces.
307         (rcirc-url-regexp): Generate with rx macro.
308         (rcirc-last-server-message-time): New variable.
309         (rcirc-filter): Record time of last message.
310         (rcirc-keepalive): Kill processes that did not send a message
311         since the last ping.
312         (rcirc-mode): Give rcirc-topic a local binding here.
314 2005-11-19  Michael Cadilhac  <michael.cadilhac@lrde.org>  (tiny change)
316         * subr.el (read-passwd): Fontify the prompt as we do with other
317         prompts.
319 2005-11-19  Ryan Yeske  <rcyeske@gmail.com>
321         * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
322         binding buffer-read-only to nil.
324 2005-11-19  Eli Zaretskii  <eliz@gnu.org>
326         * complete.el (partial-completion-mode):
327         Mention completion-auto-help in the doc string.
329         * man.el (Man-highlight-references): Doc fix.  Reformat code in a
330         more Lisp-ish way.
332 2005-11-19  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se> (tiny change)
334         * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
335         digits, not 8, to avoid misalignment for files larger than 100MB.
337 2005-11-19  Eli Zaretskii  <eliz@gnu.org>
339         * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
340         Mention "keyboard shortcuts" in the help text.
342 2005-11-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
344         * startup.el (fancy-splash-default-action): Discard only
345         mouse-down and succeeding mouse-up events in the splash screen
346         window so that drag-n-drop event can be processed.
348 2005-11-18  Chong Yidong  <cyd@stupidchicken.com>
350         * longlines.el (longlines-mode): Add hacks for mail-mode and
351         message-mode.
353 2005-11-18  Carsten Dominik  <dominik@science.uva.nl>
355         * textmodes/org.el: (org-table-sort-lines): New command.
356         (org-tbl-menu): Add entry for `org-table-sort-lines'.
357         (org-add-file): Command removed, use `org-agenda-file-to-front'
358         instead.
359         (org-export-icalendar): Use `org-icalendar-combined-name'.
360         (org-cycle-agenda-files, org-agenda-file-to-end)
361         (org-agenda-file-to-front): New commands.
362         (org-table-tab-jumps-over-hlines,org-export-html-style): New
363         options.
364         (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
365         (org-at-table.el-p, org-set-autofill-regexps,org-html-protect):
366         New functions.
367         (org-fill-paragraph): Call `org-table-align' in tables.
368         (org-mode): Call `org-set-autofill-regexps'.
369         (org-export-as-html): Support for local handformatted lists.
370         Modified to produce valid HTML 4.0. Use `org-export-html-style'.
371         (org-export-local-list-max-depth): New option.
372         (org-html-expand): Use `org-html-protect'.
374 2005-11-18  Nick Roberts  <nickrob@snap.net.nz>
376         * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
377         to "p".
378         (gdb): Move definition of gud-pp to...
380         * progmodes/gdb-ui.el (gdb-ann3): ...here.  Make it work in the
381         speedbar.
382         (gdb-find-watch-expression): New function.
384 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
386         * faces.el (face-attribute, set-face-attribute): Mention existence
387         of `:ignore-defface' setting in docstring.
389 2005-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
391         * simple.el (completion-setup-function): Fix last change.
393 2005-11-17  John Paul Wallington  <jpw@pobox.com>
395         * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
396         Use `posn-set-point' instead of `mouse-set-point' because the
397         latter is not fbound when configured without X.
399         * comint.el (comint-insert-input): Likewise.
401 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
403         * simple.el (hard-newline): New variable.
404         (sendmail-user-agent-compose, next-line): Use it.
406         * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
407         (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
408         (mail-mail-reply-to, mail-mail-followup-to)
409         (mail-position-on-field, mail-signature, mail-yank-original)
410         (mail-attach-file): Likewise.
412         * mail/mailheader.el (mail-header-format)
413         (mail-header-format-function): Likewise.
415         * add-log.el (add-change-log-entry, change-log-merge): Likewise.
417 2005-11-17  Juri Linkov  <juri@jurta.org>
419         * font-lock.el (font-lock-faces): Rename this defgroup from
420         `font-lock-highlighting-faces'.
421         (font-lock-comment-face, font-lock-comment-delimiter-face)
422         (font-lock-string-face, font-lock-doc-face)
423         (font-lock-keyword-face, font-lock-builtin-face)
424         (font-lock-function-name-face, font-lock-variable-name-face)
425         (font-lock-type-face, font-lock-constant-face)
426         (font-lock-warning-face, font-lock-negation-char-face)
427         (font-lock-preprocessor-face)
428         (font-lock-regexp-grouping-backslash)
429         (font-lock-regexp-grouping-construct): Rename :group from
430         `font-lock-highlighting-faces' to `font-lock-faces'.
432         * cus-edit.el (lisp, c, tex):
433         * progmodes/ada-mode.el (ada):
434         * progmodes/asm-mode.el (asm):
435         * progmodes/cperl-mode.el (cperl-faces):
436         * progmodes/cpp.el (cpp):
437         * progmodes/dcl-mode.el (dcl):
438         * progmodes/f90.el (f90):
439         * progmodes/fortran.el (fortran):
440         * progmodes/icon.el (icon):
441         * progmodes/idlwave.el (idlwave-misc):
442         * progmodes/m4-mode.el (m4):
443         * progmodes/make-mode.el (makefile):
444         * progmodes/meta-mode.el (meta-font):
445         * progmodes/modula2.el (modula2):
446         * progmodes/octave-mod.el (octave):
447         * progmodes/pascal.el (pascal):
448         * progmodes/perl-mode.el (perl):
449         * progmodes/prolog.el (prolog):
450         * progmodes/ps-mode.el (PostScript-edit):
451         * progmodes/scheme.el (scheme):
452         * progmodes/sh-script.el (sh-script):
453         * progmodes/simula.el (simula):
454         * progmodes/tcl.el (tcl):
455         * textmodes/nroff-mode.el (nroff):
456         * textmodes/reftex-vars.el (reftex-fontification-configurations):
457         * textmodes/sgml-mode.el (sgml):
458         * textmodes/texinfo.el (texinfo):
459         Add :link (custom-group-link font-lock-faces) to defgroup.
461         * hi-lock.el (hi-lock): Rename this defgroup from
462         `hi-lock-interactive-text-highlighting'.  Change parent group from
463         `faces' to `font-lock'.  Add link to the manual.
464         (hi-lock-mode, hi-lock-file-patterns-range)
465         (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
466         `hi-lock-interactive-text-highlighting' to `hi-lock'.
467         (hi-lock-faces): Add :group `faces'.
469         * cus-edit.el (custom-variable-prompt): Clarify the code.
471         * faces.el (face-read-string): Set the default value arg of
472         completing-read.
474 2005-11-16  Luc Teirlinck  <teirllm@auburn.edu>
476         * rfn-eshadow.el (file-name-shadow-properties)
477         (file-name-shadow-tty-properties, file-name-shadow-mode):
478         Remove autoloads, because the file is now preloaded.
480 2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
482         * printing.el (easy-menu-intern): Don't define.
483         (pr-get-symbol): Use easy-menu-intern only if defined.
485         * simple.el (blink-matching-open): Simplify a bit.
486         (completion-setup-function): Fix the case of partial-completion-mode
487         when the minibuffer's contents start with "-".
488         Obey completion-base-size-function even when
489         minibuffer-completing-file-name is non-nil.
491 2005-11-16  Richard M. Stallman  <rms@gnu.org>
493         * net/eudcb-ph.el (eudc-ph-open-session):
494         Use set-process-query-on-exit-flag.
496         * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
498         * international/ucs-tables.el (ucs-set-table-for-input):
499         Use make-local-variable, not make-variable-buffer-local.
501         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
502         Improve warning message text.
504         * savehist.el (savehist-save-hook): Add :group.
506         * menu-bar.el (menu-bar-help-menu):
507         Rename Find Extra Packages to External Packages.
509         * cus-edit.el (Custom-reset-standard): Verify that
510         :custom-standard-value prop exists before calling it.
512         * apropos.el (apropos-calc-scores): Use apropos-pattern.
514 2005-11-16  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
516         * wid-edit.el (color): Enclose %t in %{...%}.
518         * cus-edit.el (face): Enclose %t in %{...%}.
520 2005-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
522         * savehist.el (savehist-mode-hook): Re-add the var.
523         (savehist-mode): Use it.
525 2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
527         * textmodes/flyspell.el: Fix commenting convention.
528         Remove unnecessary leading * in custom docstrings.
529         (flyspell-emacs): Remove unused var.
530         (flyspell-delete-region-overlays): Use remove-overlays.
531         (flyspell-accept-buffer-local-defs): Use save-current-buffer.
532         (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
533         (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
534         (flyspell-debug-signal-word-checked): Use with-current-buffer.
535         (make-flyspell-overlay): Don't locally reuse a global name.
536         (flyspell-highlight-incorrect-region)
537         (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
538         (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
539         (flyspell-notify-misspell): Remove unused args `start' and `end'.
540         (flyspell-word): Adjust call accordingly.  Use ispell-send-string.
541         Wrap calls to accept-process-output inside with-local-quit since it's
542         often called from a post-command-hook.
543         (flyspell-correct-word, flyspell-auto-correct-word):
544         Use ispell-send-string.
545         (flyspell-xemacs-popup): Remove unused arg `event'.  Update call.
547         * calendar/diary-lib.el (diary-list-entries): Also hide the
548         terminating newline.
550 2005-11-16  Carsten Dominik  <dominik@science.uva.nl>
552         * textmodes/reftex.el (reftex-use-fonts): Remove the check for
553         window-system, to allow fonts on tty.
555 2005-11-17  Nick Roberts  <nickrob@snap.net.nz>
557         * progmodes/gud.el (gud-speedbar-item-info): New function.
558         (gud-install-speedbar-variables): Use it to display data type
559         of watch expression as a tooltip in speedbar.
561 2005-11-15  Luc Teirlinck  <teirllm@auburn.edu>
563         * font-core.el (global-font-lock-mode): Add :version keyword,
564         because default was changed.
566         * jka-cmpr-hook.el (auto-compression-mode): Ditto.
568         * startup.el (command-line): Use `custom-reevaluate-setting' for
569         `file-name-shadow-mode'.
571         * loadup.el: Preload rfn-eshadow.
573         * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
574         Add :version keyword.
575         (file-name-shadow-properties, file-name-shadow-tty-properties)
576         (file-name-shadow): Add :version keyword.
578         * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
579         instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
580         in the custom-group property of the symbol frames and the fringe
581         group got no link to its parent group frames.
582         Doc fix.
584 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
586         * progmodes/gud.el (gud-stop-subjob): New function.
587         (gud-menu-map, gud-tool-bar-map): Use it.
589 2005-11-16  Kim F. Storm  <storm@cua.dk>
591         * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
592         than kill it.
593         (gud-tool-bar-map): Likewise.  Move cont/until/finish buttons
594         to a more useful/logical place.
596 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
598         * progmodes/gud.el (gud-menu-map): Make visibility of stop and
599         go buttons complementary.
601 2005-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
603         * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
604         (rfn-eshadow-sifn-equal): New function.
605         (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
607 2005-11-15  Michael Kifer  <kifer@cs.stonybrook.edu>
609         * viper-utils (viper-non-word-characters-reformed-vi): Quote `-' in
610         string.
612         * viper.el (viper-emacs-state-mode-list): Ensure that
613         rcirc-mode buffers come up in Emacs state.
615         * ediff-util (ediff-make-temp-file): Use proper file-name-handler
616         operation.
618 2005-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
620         * term.el (term-termcap-format): Fix typos.
621         (term-down): Fix the negative argument case.
623 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
625         * progmodes/gdb-ui.el: Remove face-alias left over from change on
626         2005-08-15.
627         (gdb-ann3): New command gud-go.
628         (menu): Accomodate gdb-mi.el.
629         (gdb-assembler-custom): Make buffer of selected window current
630         so that set-window-point works.
632         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
633         buttons and include new ones.
635 2005-11-16  Kim F. Storm  <storm@cua.dk>
637         * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
638         (gud-menu-map): Use it.
640 2005-11-14  Luc Teirlinck  <teirllm@auburn.edu>
642         * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
643         that works correctly for Custom and that does not override a user
644         who disables it.
646         * help-mode.el (help-make-xrefs, help-xref-on-pp)
647         (help-xref-interned, help-follow): Make hyperlinks for variables
648         that are unbound, but have a non-nil variable-documentation property.
650         * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
651         mode hook.  (It conflicted with defcustoms for some mode hooks.)
652         Use the `variable-documentation' property to give the mode hook a
653         docstring and expand that docstring.
655 2005-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
657         * savehist.el (savehist-mode): Don't bother with
658         `custom-set-minor-mode'.
659         (savehist-coding-system): Check XEmacs version.
660         (history-length): Declare also at run time.
661         (savehist-mode): Don't emit a message.  Don't run the minor mode hook.
662         Don't set the customize state.
663         (savehist-minibuffer-hook): Special case for when
664         minibuffer-history-variable is equal to t.
666 2005-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
668         * files.el (write-file): Refresh VC status.
670         * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
671         (mark-diary-entries, make-diary-entry): Check default-major-mode rather
672         than fundamental-mode to see if the mode was set.
674 2005-11-14  Romain Francoise  <romain@orebokech.com>
676         * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
677         dummy function in `eval-when-compile' to avoid compiler warning.
678         Require `man' at compile time.
680 2005-11-14  Jay Belanger  <belanger@truman.edu>
682         * calc-alg.el (calcFunc-write-out-power): Rename it to
683         calcFunc-powerexpand.
684         (math-write-out-power): Rename it to math-powerexpand; have it
685         handle negative exponents.
686         (calc-writeoutpower): Rename it to calc-powerexpand.
688         * calc-ext.el: Change calcFunc-writeoutpower and
689         calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
690         autoloads.
691         Add calcFunc-ldiv to autoloads.
693         * calc-arith.el (calcFunc-ldiv): New function.
695         * calc.el (calc-left-divide): New function.
697 2005-11-14  Juri Linkov  <juri@jurta.org>
699         * cus-edit.el (custom-variable-prompt): Set the default value arg
700         of completing-read.
702         * cus-dep.el (custom-make-dependencies): Reverse the list of
703         found dependencies.
705 2005-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
707         * menu-bar.el (menu-bar-options-menu): Delete "Syntax
708         Highlighting" entry, it is on by default now.
709         (menu-bar-options-save): Do not save global-font-lock-mode.
711 2005-11-13  Richard M. Stallman  <rms@gnu.org>
713         * textmodes/flyspell.el (flyspell-large-region):
714         Call flyspell-accept-buffer-local-defs.
716 2005-11-13  Agustin Martin  <agustin.martin@hispalinux.es>
718         * textmodes/flyspell.el (flyspell-notify-misspell):
719         Fix misspelling of "Misspelling".
720         (flyspell-process-localwords): New function.
721         (flyspell-large-region): Call flyspell-process-localwords and
722         flyspell-delete-region-overlays.
723         (flyspell-delete-region-overlays): New function.
724         (flyspell-delete-all-overlays): Call that.
726 2005-11-13  Richard M. Stallman  <rms@gnu.org>
728         * help.el (help-for-help-internal): Improve doc of C-h a.
729         (describe-key): Improve prompt; doc fix.
731 2005-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
733         * vc-svn.el (vc-svn-registered): Catch all errors.
735         * cus-dep.el (custom-make-dependencies): Typo.
737 2005-11-13  Michael Albinus  <michael.albinus@gmx.de>
739         * net/tramp-util.el (top): Fix compilation warning.
741 2005-11-13  Kim F. Storm  <storm@cua.dk>
743         * help.el (help-for-help-internal): Fix `a' entry.  Add `d' entry.
745 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
747         * progmodes/gud.el (gud-menu-map): Move parentheses (again).
748         (gud-speedbar-buttons): Match on "const char *" too.
750         * progmodes/gdb-ui.el (gdb-var-create-handler)
751         (gdb-var-list-children-handler): Match on "const char *" too.
752         (gdb-var-evaluate-expression-handler): Match on empty string.
753         (gdb-var-update-handler): Only call
754         gdb-var-evaluate-expression-handler when required.
756 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
758         * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
759         selected window.  This still doesn't work for speedbar.
760         (gud-speedbar-buttons): Handle string expressions properly.
762         * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
763         (gdb-var-create-handler): Handle string expressions properly.
764         (gdb-var-list-children-regexp, gdb-var-list-children-handler):
765         Handle string expressions properly.  Move "type" field into regexp.
767 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
769         * bookmark.el (bookmark-maybe-message): New function to reduce
770         code duplication: invokes `message' iff baud-rate is high enough.
771         (bookmark-write-file): Use above instead of an inline conditional.
772         (bookmark-load): Same.
774 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
776         * bookmark.el (bookmark-write-file): Don't visit the destination
777         file, just write the data to it using write-region.  This is
778         similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
779         change to avoid visiting the file in the first place.
781 2005-11-12  Chong Yidong  <cyd@stupidchicken.com>
783         * hi-lock.el (hi-lock-mode): Set the default value of
784         font-lock-defaults.
786 2005-11-11  Luc Teirlinck  <teirllm@auburn.edu>
788         * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
789         arg to `file-attributes'.
790         (find-lisp-format): The UID and GID can now be strings.
792 2005-11-12  Kim F. Storm  <storm@cua.dk>
794         * help.el (help-map): Bind C-h d to apropos-documentation.
796         * simple.el (what-cursor-position): Print (EOB) instead of (100%)
797         when point is at end-of-buffer.
799         * apropos.el (apropos-match-face): Doc fix.
800         (apropos-sort-by-scores): Add new choice `verbose'.
801         (apropos-documentation-sort-by-scores): New defcustom.
802         (apropos-pattern): Now contains the pattern entered by the user.
803         (apropos-pattern-quoted): New defvar.
804         (apropos-regexp): New defvar, containing the regexp corresponding
805         to apropos-pattern.
806         (apropos-all-words-regexp): Rename from apropos-all-regexp.
807         (apropos-read-pattern): New defun.  Use it to read pattern arg in
808         interactive calls; returns list of words for a word list, and
809         string for a regexp.
810         (apropos-parse-pattern): Rename from apropos-rewrite-regexp.  Now
811         parses a list of words or regexp as returned by apropos-read-pattern.
812         (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
813         (apropos-score-doc): Return a very high score if the string
814         entered by the user matches literally.
815         (apropos-variable): Doc fix.  Use apropos-read-pattern.
816         (apropos-command): Doc fix.  Use apropos-read-pattern and
817         apropos-parse-pattern.  Call apropos-print with nosubst=t.
818         (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
819         apropos-parse-pattern.
820         (apropos-documentation): Doc fix. Use apropos-read-pattern and
821         apropos-parse-pattern.  Locally bind apropos-sort-by-scores to
822         apropos-documentation-sort-by-scores.  Call apropos-print with
823         nosubst=t.
824         (apropos-documentation-internal): Pass doc string through
825         substitute-key-definition before adding text properties.
826         Highlight substring matching literal user input if possible.
827         (apropos-documentation-check-doc-file): Remove locals beg and end.
828         Fix calculation of score (as added twice).  Pass doc string through
829         substitute-key-definition before adding text properties.
830         (apropos-documentation-check-elc-file): Pass doc string through
831         substitute-key-definition before adding text properties.
832         Highlight substring matching literal user input if possible.
833         (apropos-print): Add new arg NOSUBST; if set, command and variable
834         doc strings have already been passed through substitute-key-definition.
835         Add code to handle apropos-accumulator items without score element
836         for backwards compatibility (e.g. with woman package).
837         Only show scores if apropos-sort-by-scores is `verbose'.
839 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
841         * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
842         Add jka-compr-load-suffixes to load-suffixes.
844         * jka-compr.el: Require 'jka-cmpr-hook.
845         (jka-compr-info-compress-message, jka-compr-info-compress-program)
846         (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
847         (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
848         (jka-compr-info-can-append, jka-compr-info-strip-extension)
849         (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
850         (jka-compr-info-regexp): Remove.  Provided by jka-cmpr-hook.
851         (jka-compr-uninstall): Remove entries from
852         jka-compr-added-to-file-coding-system-alist after they are used.
853         (jka-compr-error): Remove unused var `curbuf'.
854         (jka-compr-file-local-copy): Remove unused var `notfound'.
856 2005-11-10  Romain Francoise  <romain@orebokech.com>
858         * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
860 2005-11-11  Nick Roberts  <nickrob@snap.net.nz>
862         * progmodes/gud.el (gud-menu-map): Move parentheses.
863         (gdb): New command gud-pv.
865 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
867         * tar-mode.el: Remove spurious or unnecessary leading stars
868         in docstrings.
869         (tar-header-block-tokenize): Also obey default-file-name-coding-system.
870         (tar-parse-octal-integer-safe): Use mapc.
871         (tar-header-block-summarize): Remove unused var `ck'.
872         (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
873         cleared before.  Obey default-enable-multibyte-characters.
874         Use mapconcat.  Simplify setting of tar-header-offset.
875         (tar-mode-map): Move initialization inside delcaration.
876         (tar-flag-deleted): Use `abs'.
877         (tar-expunge-internal): Remove unused var `line'.
878         (tar-expunge-internal): Don't hardcode point-min==1.
879         (tar-expunge): Widen while doing set-buffer-multibyte.
880         (tar-rename-entry): Use file-name-coding-system.
881         (tar-alter-one-field): Don't hardcode point-min==1.
882         (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
883         (tar-pad-to-blocksize): Don't hardcode point-min==1.  Clarify the code.
885 2005-11-10  Masatake YAMATO  <jet@gyve.org>
887         * add-log.el (add-log-current-defun): Handle class::method
888         notation of c++. Fix incorrect comment.
890 2005-11-10  Alan Mackenzie  <acm@muc.de>
892         * help-fns.el (describe-variable): Make C-h v work when a variable
893         has variable documentation yet is unbound.
895 2005-11-10  Masatake YAMATO  <jet@gyve.org>
897         * man.el (Man-highlight-references): Set an empty
898         string to `Man-arguments' if it is nil.
899         Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
901 2005-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
903         * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
904         commenting conventions.
906         * cus-dep.el (custom-make-dependencies): Simplify.
907         Better follow the commenting conventions.
909 2005-11-09  Richard M. Stallman  <rms@gnu.org>
911         * apropos.el (apropos-pattern): Rename from apropos-regexp.
912         (apropos-orig-pattern): Rename from apropos-orig-regexp.
913         All uses changed.
914         (apropos-rewrite-regexp): Doc fix.
915         (apropos-variable, apropos-command, apropos, apropos-value):
916         Change prompt; carry through the argument renaming.
918 2005-11-09  Luc Teirlinck  <teirllm@auburn.edu>
920         * find-lisp.el: Require dired.
921         (find-lisp-find-dired-internal): Do not call
922         `abbreviate-file-name' on DIR.
924 2005-11-10  Nick Roberts  <nickrob@snap.net.nz>
926         * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
928 2005-11-09  Nick Roberts  <nickrob@snap.net.nz>
930         * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
931         when using the speedbar.
932         (gdb): New command gud-pp.
933         (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
935 2005-11-09  Juri Linkov  <juri@jurta.org>
937         * replace.el (occur-excluded-properties): New defcustom.
938         (occur-1, occur-engine, occur-accumulate-lines): Use it.
940 2005-11-08  Jay Belanger  <belanger@truman.edu>
942         * calc/calc-units.el (math-convert-units): Replace any composite
943         unit by its definition.
945 2005-11-08  Lars Hansen  <larsh@soem.dk>
947         * emacs-lisp/autoload.el (update-directory-autoloads):
948         Add obsolete function alias.
950 2005-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
952         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
953         comment-indent-function.
954         (lisp-comment-indent): Replace by an alias for comment-indent-default.
956         * reveal.el (reveal-post-command): Rework the handling of
957         reveal-open-spots, so as to be more reliable.  There were several
958         tricky corner cases where an open spot might be lost, or where
959         a closed spot might end up on the list of open spots.
960         Only reveal text that's ellipsised.
962 2005-11-07  Carsten Dominik  <dominik@science.uva.nl>
964         * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
966 2005-11-07  John Paul Wallington  <jpw@gnu.org>
968         * ibuffer.el (ibuffer): Search iconified frames too when
969         getting Ibuffer buffer's window.
971 2005-11-06  Richard M. Stallman  <rms@gnu.org>
973         * progmodes/compile.el (compilation-internal-error-properties):
974         save-excursion around the computation of MARKER.
976 2005-11-06  Piet van Oostrum  <piet@cs.uu.nl>
978         * textmodes/flyspell.el (flyspell-external-point-words):
979         flyspell-get-word returns a list, not just a string.
981 2005-11-06  John Paul Wallington  <jpw@pobox.com>
983         * ibuffer.el (ibuffer): Search all visible frames when getting
984         Ibuffer buffer's window.
986 2005-11-07  Masatake YAMATO  <jet@gyve.org>
988         * man.el (Man-reference-regexp): Accept spaces between
989         `Man-name-regexp' and `Man-section-regexp'.
990         (Man-apropos-regexp): New variable.
991         (Man-abstract-xref-man-page): Use value for `Man-target-string'
992         if available.
993         (Man-highlight-references, Man-highlight-references0):
994         Handle the case when `Man-arguments' includes "-k".
995         (Man-highlight-references0): Rename the argument `TARGET-POS' to
996         `TARGET'. `TARGET' can be a number, function or nil.
998 2005-11-06  Nick Roberts  <nickrob@snap.net.nz>
1000         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
1001         (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
1002         (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
1003         (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
1004         (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
1005         (gdb-send-item): Use buffer-local-value and simplify.
1007 2005-11-05  Luc Teirlinck  <teirllm@auburn.edu>
1009         * startup.el (command-line): Use `custom-reevaluate-setting' for
1010         `global-font-lock-mode'.
1012         * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
1013         by default, except in batch mode or when the -D option is given.
1015         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
1016         specified keyword args on to `define-minor-mode'.  Update docstring.
1018 2005-11-05  Romain Francoise  <romain@orebokech.com>
1020         * replace.el (occur-engine): Add marker at end of line, too.
1022 2005-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
1024         * font-lock.el: Don't deal with font-lock-face-attributes here,
1025         move the code ...
1027         * startup.el (command-line): ... here. Use face-spec-set instead
1028         of custom-declare-face.
1030         * faces.el (face-spec-set): Reset the face if spec is not nil.
1032 2005-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1034         * newcomment.el (comment-region-internal): Box more tightly in the
1035         common case where there's no TAB in the boxed text.
1037 2005-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1039         * info.el (info-tool-bar-map): Use images prev-node, next-node and
1040         up-node.
1042 2005-11-04  Ulf Jasper  <ulf.jasper@web.de>
1044         * newsticker.el: Commentary updated. Code formatting changed.
1045         (newsticker-version): Change to "1.9".
1046         (newsticker, newsticker-feed): Doc fix.
1047         (newsticker-url-list): Doc fix.  Add option "Weekly".
1048         (newsticker-retrieval-interval): Add option "Weekly".
1049         (newsticker-headline-processing): Doc fix.
1050         (newsticker-auto-mark-filter): Remove.
1051         (newsticker-auto-mark-filter-list): New.
1052         (newsticker-layout, newsticker-sort-method): Doc fix.
1053         (newsticker-hide-old-items-in-newsticker-buffer)
1054         (newsticker-heading-format, newsticker-item-format)
1055         (newsticker-desc-format): Doc fix.
1056         (newsticker-show-all-rss-elements): Remove.
1057         (newsticker-show-all-news-elements): New.
1058         (newsticker-faces, newsticker-ticker): Doc fix.
1059         (remove-from-invisibility-spec): Code formatting.
1060         (newsticker--process-ids): New.
1061         (newsticker-mode): Doc fix.
1062         (newsticker-mode): Change mode-line-format.
1063         (newsticker-start): Remove debug output.
1064         (newsticker-start-ticker): Doc fix.  Add Autoload cookie.
1065         (newsticker-w3m-show-inline-images): Code formatting.
1066         (newsticker-next-item): Call `force-mode-line-update'.
1067         (newsticker-previous-item): Call `force-mode-line-update'.
1068         (newsticker-next-feed): Call `force-mode-line-update'.
1069         (newsticker-previous-feed): Call `force-mode-line-update'.
1070         (newsticker-mark-all-items-at-point-as-read): Code formatting.
1071         (newsticker-show-old-items): Do not show descs.
1072         (newsticker-hide-entry): Hide too much.
1073         (newsticker-hide-entry, newsticker-show-entry)
1074         (newsticker-toggle-auto-narrow-to-feed): Code formatting.
1075         (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
1076         (newsticker-toggle-auto-narrow-to-item): Code formatting.
1077         (newsticker-set-auto-narrow-to-item): Update buffer immediately.
1078         (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
1079         (newsticker-get-news): Call `force-mode-line-update'.
1080         Collect process ids.
1081         (newsticker--sentinel): Change coding system handling.
1082         Move image retrieval to new functions newsticker--get-logo-url-*.
1083         Move feed parsing to new functions newsticker--parse-*.
1084         Update list of process ids.
1085         (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
1086         (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
1087         (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
1088         (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
1089         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
1090         (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
1091         (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
1092         (newsticker--decode-coding-string): Remove.
1093         (newsticker--decode-numeric-entities): Check input.  Format code.
1094         (newsticker--remove-whitespace): Check input.
1095         (newsticker--do-forget-preformatted): Doc fix.
1096         (newsticker--decode-rfc822-date): Allow for missing time.
1097         (newsticker--update-process-ids): New.
1098         (newsticker--image-sentinel): Change comment.
1099         (newsticker--image-read): Change error message.
1100         (newsticker--imenu-goto): Doc fix.  Show headline title.
1101         (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
1102         (newsticker--buffer-do-insert-text): Clean whitespace in
1103         html-rendered headline title.  Code formatting.
1104         Call `newsticker--buffer-print-extra-elements'.
1105         (newsticker--buffer-print-extra-element): Remove.
1106         (newsticker--buffer-print-extra-elements): New.
1107         (newsticker--buffer-do-print-extra-element): New.
1108         (newsticker--buffer-insert-enclosure): Doc fix.  Use MBytes for
1109         large sizes.
1110         (newsticker--run-auto-mark-filter)
1111         (newsticker--do-run-auto-mark-filter):
1112         Use `newsticker-auto-mark-filter-list'.
1114 2005-11-04  Ryan Yeske  <rcyeske@gmail.com>
1116         * net/rcirc.el: Use split-string OMIT-NULLS argument.
1117         (rcirc-print): Force redisplay before running hooks.  Do long
1118         buffer truncation after making new text read-only.  Deal with nil
1119         text when decoding strings.  If TARGET is nil, use either the
1120         currently selected buffer, if it is an rcirc buffer and of the
1121         same process or the process buffer.
1122         (rcirc-mode): Remove header-line.  Recompute short buffer names.
1123         Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
1124         (rcirc-short-buffer-name): Add variable.
1125         (rcirc-kill-buffer-hook): Recompute short buffer names.
1126         Remove nick from private channel.
1127         (rcirc-send-input): Send command text to current-buffer.
1128         Don't clear overlay arrow here.
1129         (rcirc-short-buffer-name): Return a short buffer name.
1130         (rcirc-update-short-buffer-names, rcirc-abbreviate)
1131         (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
1132         buffer-name abbreviations.
1133         (rcirc-kill-buffer-hook-1): Split to make debugging easier.
1134         Do not touch nick-table when killing a parted channel.
1135         (rcirc-window-configuration-change): Rename from rcirc-update-activity.
1136         Clear arrow from current buffer if it is now hidden.
1137         (rcirc-current-buffer): Add variable.
1138         (rcirc-my-nick, rcirc-other-nick, rcirc-server)
1139         (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
1140         Remove -face from names.
1141         (rcirc-update-activity-string): Print "DND" when globally ignoring
1142         activity.
1143         (rcirc-ignore-buffer-activity-flag): Rename from
1144         rcirc-ignore-channel-activity.
1145         (rcirc-ignore-all-activity-flag): Doc fix.
1146         (rcirc-channels): Remove variable.
1147         (rcirc-kill-buffer-hook):
1148         (rcirc-get-buffer-create): Add nick to private channel.
1149         (rcirc-multiline-edit-submit): Remove tabs.
1150         (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
1151         folded.
1152         (rcirc-remove-nick-channel): Bug fix.
1153         (rcirc-toggle-ignore-buffer-activity): Rename from
1154         rcirc-toggle-ignore-channel-activity.
1155         (rcirc-record-activity): Add buffers to the front of the list.
1156         (rcirc-update-activity): Remove killed buffers from list.
1157         (rcirc-process-server-response-1): Remove last argument if it is
1158         null before calling handler.
1159         (rcirc): Add "rcirc" defcustom prefix.
1160         (rcirc-prompt): Simplify default prompt.
1161         Use custom-initialize-default.
1162         (rcirc-private-chats): Remove variable.
1163         (rcirc-prompt): Change initialization.
1164         (rcirc-version): Remove function.
1165         (rcirc-id-string): Add constant.
1166         (rcirc-last-buffer): Remove variable.
1167         (rcirc-buffer-alist): Add variable.
1168         (rcirc-connect): Update variable setup.
1169         (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
1170         (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
1171         default.
1172         (rcirc-handler-generic): Trigger activity.
1173         (rcirc-send-message): Create the buffor of the target.
1174         (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
1175         (rcirc-get-buffer): Just return nil if there is no matching buffer.
1176         (rcirc-multiline-edit-cancel): Remove function.
1177         (rcirc-set-last-buffer): Remove function.
1178         (rcirc-get-any-buffer): Add function.
1179         (rcirc-join-channels): Don't print /join text.
1180         (rcirc-toggle-ignore-channel-activity): Add and update echo area
1181         messages.
1182         (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
1183         (rcirc-handler-NOTICE): Recognize CTCP responses.
1184         (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
1185         constructing TOPIC string for buffers we are not JOINed.
1186         (rcirc-handler-CTCP-response): Add handler.
1187         (rcirc-multiline-edit-submit): Restore the window-configuration
1188         before adjusting point.
1189         (rcirc): Add customization group.
1190         (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
1191         (rcirc-user-full-name, rcirc-startup-channels-alist)
1192         (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
1193         (rcirc-ignore-all-activity-flag, rcirc-time-format)
1194         (rcirc-input-ring-size, rcirc-read-only-flag)
1195         (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
1196         (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
1197         Change defvar to defcustom.
1198         (rcirc-update-prompt): Add optional ALL arg, which will update
1199         prompts in all rcirc buffers.  Regexp quote replacement text.
1200         (rcirc-fill-column): Accept 'frame-width as a value.
1201         (rcirc-set-changed): Add function.
1202         (rcirc-next-active-buffer): Write more meaningful messages.
1203         (rcirc-faces): Add customization group.
1204         (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
1205         (rcirc-nick-in-message-face, rcirc-prompt-face)
1206         (rcirc-mode-line-nick-face): Move into rcirc-faces group.
1207         (with-rcirc-process-buffer): Move before first usage.
1208         (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
1209         (rcirc-debug-flag): Rename from `rcirc-log-p'.
1210         (rcirc-debug): Rename from `rcirc-log'.
1211         (rcirc-format-response-string): Do not print '-' chars for a
1212         NOTICE with no sender.  Simplify output of server responses.
1214 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
1216         (rcirc-browse-url-map, rcirc-browse-url-at-point)
1217         (rcirc-browse-url-at-mouse, rcirc-mangle-text): Make urls
1218         mouse and RET clickable.
1220 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
1222         * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
1224 2005-11-04  Ken Manheimer  <ken.manheimer@gmail.com>
1226         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
1227         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
1228         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
1229         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
1230         argument to all these routines, so the passphrase can be managed
1231         externally and passed in to the system.
1232         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
1233         pgg-add-passphrase-to-cache function.
1235         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
1236         (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
1237         (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
1238         (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional 'passphrase'
1239         argument to all these routines, so the passphrase can be managed
1240         externally and passed in to the system.
1241         (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
1242         function.
1244 2005-11-04  Edward O'Connor  <hober0@gmail.com>  (tiny change)
1246         * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
1247         from goto-address-url-regexp.
1249 2005-11-04  Carsten Dominik  <dominik@science.uva.nl>
1251         * textmodes/org.el (org-read-date, org-goto-calendar)
1252         (org-recenter-calendar, org-agenda-goto-calendar):
1253         Temporarily clear 'calendar-move-hook'.
1255 2005-11-04  Michael Kifer  <kifer@cs.stonybrook.edu>
1257         * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
1258         merging.
1260         * ediff-util.el (ediff-previous-difference): Don't skip regions that
1261         have merge clashes.
1263 2005-11-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1265         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
1266         Undo previous change.
1268         * startup.el (command-line): Use `custom-reevaluate-setting' for
1269         mouse-wheel-down-event and mouse-wheel-up-event.  Don't call
1270         tty-register-default-colors on Mac.
1272 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
1274         * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
1275         (gdb-buffer-type): Make it automatically buffer local...
1276         (gdb-get-create-buffer): ...and set it accordingly.
1277         (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
1278         actually work.
1280 2005-11-03  Dan Nicolaescu  <dann@ics.uci.edu>
1282         * font-lock.el (font-lock-warning-face): Use the more vivid red1,
1283         not red.
1285 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
1287         * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
1288         case GUD buffer is not visible.
1289         (gdb-goto-breakpoint): Try to force display in source buffer.
1290         (gdb-frame-gdb-buffer): Copy other similar functions.
1291         (gdb-restore-windows): Don't display source if not asked for.
1292         (gdb-assembler-buffer-name): Don't capitalise.
1294 2005-11-03  Richard M. Stallman  <rms@gnu.org>
1296         * wid-edit.el (key-sequence): New widget type.
1298         * simple.el (set-mark-command-repeat-pop): New variable.
1299         (set-mark-command): Only interpret plan C-@ after a pop as a pop
1300         if set-mark-command-repeat-pop is true.
1302         * info.el (Info-fontify-node): Don't display extra "see" if there
1303         already is one here.
1305         * mouse.el: Fix special handling of DEL after dragging a region:
1306         (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
1307         (mouse-region-delete-keys): Add [backspace].
1309         * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
1311         * textmodes/ispell.el (ispell-command-loop): Change `i' description
1312         not to assume it pertains to an affix.
1314         * textmodes/flyspell.el (flyspell-post-command-hook):
1315         Bind deactivate-mark to prevent deactivation.
1317 2005-11-03  Lars Hansen  <larsh@soem.dk>
1319         * dired-x.el: Add menu bindings for dired-do-find-marked-files,
1320         dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
1321         dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
1323 2005-11-03  Romain Francoise  <romain@orebokech.com>
1325         * net/eudcb-mab.el: Now part of GNU Emacs.  Update FSF's address.
1326         Update copyright years.
1328 2005-11-03  Sam Steingold  <sds@gnu.org>
1330         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
1331         Use system-type instead of window-system because window-system is not
1332         correctly defined during loadup.
1334 2005-11-02  Mark A. Hershberger  <mah@everybody.org>
1336         * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
1337         (xml-parse-tag): Join strings separated by a comment properly.
1339 2005-11-02  Andreas Schwab  <schwab@suse.de>
1341         * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
1343 2005-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1345         * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
1346         (byte-optimize-pure-func): Quote the eval'd value.
1348         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
1349         Rename from perl-font-lock-syntactic-face-function.
1350         Change the calling convention so it can be used as a font-lock MATCHER.
1351         Do the parse-partial-sexp loop outselves.
1352         (perl-font-lock-syntactic-keywords): Use it.
1353         (perl-mode): Don't set font-lock-syntactic-face-function any more.
1355 2005-11-02  Nick Roberts  <nickrob@snap.net.nz>
1357         * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
1358         disassembly buffer too.
1359         (gdb-exited): Remove overlay arrows when execution has finished.
1360         (gdb-info-frames-custom, gdb-info-threads-custom)
1361         (gdb-info-registers-custom): Don't add inappropriate text
1362         properties if inferior is not active.
1364 2005-11-02  Glenn Morris  <rgm@gnu.org>
1366         * progmodes/fortran.el (fortran-blink-match):
1367         Use `blink-matching-delay'.
1369 2005-11-02  John Mongan <jmongan@mccammon.ucsd.edu>  (tiny change)
1371         * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
1373 2005-11-02  Lars Hansen  <larsh@soem.dk>
1375         * net/tramp.el (tramp-action-out-of-band): Handle scp message
1376         "Permission denied".
1378 2005-11-01  Richard M. Stallman  <rms@gnu.org>
1380         * textmodes/flyspell.el (flyspell-external-point-words):
1381         Pass nil to flyspell-get-word.
1383 2005-11-02  Kim F. Storm  <storm@cua.dk>
1385         * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
1386         item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
1388 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1390         * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
1391         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
1392         (calendar-mouse-print-dates): Add optional `event' argument.
1393         Update interactive-spec.
1394         (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
1395         Use `calendar-event-to-date' instead of `event'.
1397 2005-11-02  Masatake YAMATO  <jet@gyve.org>
1399         * progmodes/ld-script.el (ld-script-builtins):
1400         Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
1401         "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
1402         (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
1404 2005-11-01  Romain Francoise  <romain@orebokech.com>
1406         * vc-sccs.el: Update copyright year.
1407         * ezimage.el: Likewise.
1409 2005-11-01  KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>  (tiny change)
1411         * info.el (Info-fontify-node): Use `string-width' for fontifying
1412         underlined titles.
1414 2005-11-01  Juri Linkov  <juri@jurta.org>
1416         * info.el (Info-fontify-node): Downcase node header keywords Node,
1417         Prev, Next, Up before comparison.
1418         (Info-history): Insert absolute directory name, and put invisible
1419         property on it.
1421 2005-11-01  Juri Linkov  <juri@jurta.org>
1423         * info.el (Info-file-supports-index-cookies): New variable.
1424         (Info-find-node-2): Check makeinfo version for index cookie support.
1425         (Info-index-nodes): Search for nodes with index cookies only when
1426         Info-file-supports-index-cookies is t.  Otherwise, search nodes
1427         with "Index" in the node name.
1428         (Info-index-node): Search index cookie in the current node only when
1429         Info-file-supports-index-cookies is t.  Otherwise, check the word
1430         "Index" in the node name.
1431         (Info-find-emacs-command-nodes): Remove code that searches nodes
1432         with "Index" node name in the top menu.
1434 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1436         * progmodes/scheme.el (scheme-mode-variables): Use the default
1437         comment-indent-function.
1439         * faces.el (face-attribute): Handle the case where a face inherits from
1440         a non-existent face.
1442         * simple.el (eval-expression-print-format): Use lisp-readable syntax
1443         for octal and hexa output, and merge the char into the paren.
1444         (kill-new): Use push.
1445         (copy-to-buffer): Use with-current-buffer.
1446         (completion-setup-function): Move code in loop to remove redundancy.
1447         (minibuffer-local-must-match-map): Don't add bindings that duplicate
1448         those inherited from minibuffer-local-completion-map.
1450         * savehist.el (savehist-mode) <defcustom>:
1451         Use custom-set-minor-mode if available.
1452         (savehist-mode) <defun>: Run the minor mode hook, set the custom state
1453         and emit a message if applicable.
1455 2005-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
1457         * savehist.el: Sync up to version 19.
1458         (savehist-mode): New minor mode.
1459         (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
1460         (savehist-length): Remove (use history-length instead).
1461         (savehist-file-modes): Rename from savehist-modes.
1462         (savehist-save-hook, savehist-loaded): New vars.
1463         (savehist-load): Use savehist-mode.  Try to smooth up transition from
1464         old format to new format.
1465         (savehist-install): Allow savehist-autosave-interval to be nil.
1466         (savehist-save): Run the new hook.  Be more careful to only trim the
1467         history variables.
1468         (savehist-trim-history): New fun.  Replaces savehist-process-for-saving.
1469         (savehist-printable): Print into a buffer rather than char-by-char.
1471 2005-11-01  John Wiegley  <johnw@newartisans.com>
1473         * iswitchb.el (iswitchb-define-mode-map): Re-enable the
1474         toggle-ignore keybinding (C-a).  The author said it had been
1475         disabled much earlier due to a possible incompatibility, but after
1476         many months of usage I have encountered no problems (and it is a
1477         rather useful option, especially for switching to " *temp*").
1479         * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
1480         support for OS/X's AddressBook, by calling out to the open source
1481         program "contacts" (installable through Fink).
1483         * net/eudc.el (eudc-expand-inline): If the
1484         `eudc-multiple-match-handling-method' is set to `all', delete the
1485         query string before inserting the query result.
1487         * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
1488         flag, to prevent Eshell from using the system ls when
1489         `eshell-ls-insert-directory' is in used.
1490         (eshell-ls-insert-directory): Disable font-lock in directory
1491         buffer so that Eshell's own fontification is seen.  This broke
1492         recently due to changes in font-lock, so this goes back to version
1493         21 behavior.
1495 2005-11-01  Nick Roberts  <nickrob@snap.net.nz>
1497         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
1498         (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
1499         (gdb-many-windows): Doc fix.
1501 2005-10-31  Romain Francoise  <romain@orebokech.com>
1503         * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
1505 2005-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
1507         * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
1508         that global-font-lock-mode can be enabled by default.
1510         * font-lock.el (font-lock-keywords, font-lock-mode-internal)
1511         (font-lock-add-keywords, font-lock-remove-keywords)
1512         (font-lock-fontify-buffer): Remove autoload cookies.
1514         * jit-lock.el (jit-lock-register): Likewise.
1516         * emacs-lisp/syntax.el (syntax-ppss): Likewise.
1518 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
1520         * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
1521         intact if there is no gud-comint-buffer.
1523 2005-10-31  Luc Teirlinck  <teirllm@auburn.edu>
1525         * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
1526         old prompt comint-prompt-read-only is t and GDB commands are
1527         issued from tool bar etc.
1529 2005-10-31  Masatake YAMATO  <jet@gyve.org>
1531         * vc.el (vc-directory-exclusion-list): Add "{arch}".
1533 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
1535         * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
1536         (thumbs-thumbsdir): Make .emacs.d if it does not exist.
1538 2005-10-30  Michael Albinus  <michael.albinus@gmx.de>
1540         * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
1541         starting at beginning of line.  Fontification is messed up when
1542         `open-paren-in-column-0-is-defun-start' set to t.
1543         Reported by John Paul Wallington <jpw@pobox.com>.
1545 2005-10-30  Luc Teirlinck  <teirllm@auburn.edu>
1547         * comint.el (comint-send-input): Call `comint-update-fence' when
1548         `comint-process-echoes' and `comint-prompt-read-only' are both
1549         non-nil, to avoid leftover read-only newline.
1551 2005-10-30  Richard M. Stallman  <rms@gnu.org>
1553         * textmodes/flyspell.el (flyspell-external-point-words):
1554         Detect when WORD can't be checked properly because
1555         flyspell-get-word finds just part of it, and move on.
1557         * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
1558         boundarychar for Polish.
1559         (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
1560         (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
1562 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
1564         * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
1565         (gdb-registers-font-lock-keywords): Delete.
1566         (gdb-registers-mode): Don't fontify.
1567         (gdb-info-registers-custom): Use text properties instead as, in
1568         future, changed register values will use font-lock-warning-face.
1569         (gdb-local-font-lock-keywords): Rename to...
1570         (gdb-locals-font-lock-keywords): ...for consistency.
1572 2005-10-30  Andre Spiegel  <spiegel@gnu.org>
1574         * vc.el (vc-switch-backend): Better error message if the buffer is
1575         not visiting a file under version control.
1577         * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
1579 2005-10-29  Chong Yidong  <cyd@stupidchicken.com>
1581         * startup.el (command-line): Use ~/.emacs.d/init.el instead of
1582         ~/.emacs.d/.emacs.
1584 2005-10-29  Richard M. Stallman  <rms@gnu.org>
1586         * replace.el (occur-mode-mouse-goto): Always go to other window.
1587         (occur-mode-goto-occurrence): Always switch in same window.
1589         * simple.el (undo): Display message at end, not at start.
1591         * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
1592         New arg REUSE-CELL.
1593         (cancel-timer-internal): New function.
1594         (timer-event-handler): Use cancel-timer-internal,
1595         and pass the cell it returns to timer-activate...
1597         * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
1598         (jit-lock-deferred-fontify, jit-lock-context-fontify)
1599         (jit-lock-after-change): Test memory-full.
1601 2005-10-29  Roland Winkler  <roland.winkler@physik.uni-erlangen.de>
1603         * textmodes/conf-mode.el (conf-assignment-sign)
1604         (conf-assignment-regexp): Fix docstrings.
1605         (conf-mode-initialize): New function.
1606         (conf-mode): Remove optional args.  Use delay-mode-hooks to
1607         recognize recursive calls.
1608         (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
1609         (conf-space-mode, conf-colon-mode, conf-ppd-mode)
1610         (conf-xdefaults-mode): Use define-derived-mode and
1611         conf-mode-initialize.
1613 2005-10-29  Romain Francoise  <romain@orebokech.com>
1615         * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
1617 2005-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
1619         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
1620         part of the decoded armor to find the key-identifier.
1621         (pgg-gpg-lookup-key-owner): New function to return the
1622         human-readable identifier of a key owner.
1623         (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
1624         key itself.
1625         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
1626         the key value) if we have a key and can match it against a secret
1627         key.  Also, added a note pointing out fact that the prompt only
1628         indicates the first matching key.
1630         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
1631         pgg-decrypt-region.
1632         (pgg-pending-timers): A new hash for tracking the passphrase cache
1633         timers, so that new ones supercede old ones.
1634         (pgg-add-passphrase-to-cache): Rename from
1635         `pgg-add-passphrase-cache' to reduce confusion (all callers
1636         changed).  Modified to cancel old timers when new ones are added.
1637         (pgg-remove-passphrase-from-cache): Rename from
1638         `pgg-remove-passphrase-cache' to reduce confusion (all callers
1639         changed).  Modified to cancel old timers when their keys are
1640         removed from the cache.
1641         (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
1642         XEmacs, an indirection to delete-itimer.
1643         (pgg-read-passphrase-from-cache, pgg-read-passphrase):
1644         Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
1645         users can only check cache without risk of prompting.  Correct bug in
1646         notruncate behavior.
1647         (pgg-read-passphrase-from-cache, pgg-read-passphrase)
1648         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
1649         Add informative docstrings.
1650         (pgg-decrypt): Convey provided passphrase in subordinate call to
1651         pgg-decrypt-region.
1653 2005-10-20  Ken Manheimer <ken.manheimer+emacs@gmail.com>
1655         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
1656         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
1657         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
1658         'passphrase' argument, so the passphrase can be managed externally
1659         and then passed in to the system.
1661         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
1662         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
1663         so the passphrase cache can be used reliably with identifiers
1664         besides a pgp packet's key id.
1666         * pgg-gpg.el (pgg-pgp-encrypt-region)
1667         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
1668         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
1669         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
1670         argument to all these routines, so the passphrase can be managed
1671         externally and passed in to the system.
1673         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
1674         'notruncate' argument, so the passphrase cache can be used
1675         reliably with identifiers besides a pgp packet's key id.
1677 2005-10-29  Sascha Wilde  <swilde@sha-bang.de>
1679         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
1680         symmetric encryption.
1681         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
1682         encrypted session key.
1683         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
1684         message ask for the passphrase in a proper way.
1686         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
1687         New user commands for symmetric encryption.
1689 2005-10-28  Bill Wohler  <wohler@newt.com>
1691         * help-mode.el (help-url): New button type. Calls browse-url.
1692         (help-xref-url-regexp): New regexp to recognize URLs in docstring.
1693         Similar to Info nodes: URL `url'.
1694         (help-make-xrefs): Create help-url buttons for
1695         help-xref-url-regexp matches.
1697 2005-10-29  Nick Roberts  <nickrob@snap.net.nz>
1699         * tool-bar.el (tool-bar-add-item-from-menu)
1700         (tool-bar-local-item-from-menu): Fix doc strings.
1702 2005-10-28  Romain Francoise  <romain@orebokech.com>
1704         * ldefs-boot.el: Update.
1706         * subr.el (locate-library): Move from help-fns.el.
1707         * help-fns.el (locate-library): Move to subr.el.
1709 2005-10-28  Richard M. Stallman  <rms@gnu.org>
1711         * net/tramp.el (tramp-completion-mode): defvar moved up.
1713         * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
1715         * tool-bar.el (tool-bar-mode): Delete autoload cookie.
1717         * files.el (find-file-noselect): Use %d to format large file size.
1719         * bindings.el (mode-line-format): Add %e.
1721         * loadup.el ("facemenu"): Load unconditionally.
1722         ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
1723         ("x-dnd"): Load, when appropriate.
1725         * startup.el (command-line): Call before-init-hook earlier.
1726         Warn about some bad characters in -u user name.
1728         * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
1729         (flyspell-external-point-words): Error if misspelled word is not found.
1730         Set flyspell-large-region-beg at end of word.
1732 2005-10-28  Andreas Schwab  <schwab@suse.de>
1734         * view.el (View-revert-buffer-scroll-page-forward):
1735         Use view-page-size-default.
1737 2005-10-28  Juri Linkov  <juri@jurta.org>
1739         * international/quail.el (quail-get-current-str): Translate last
1740         raw character for deterministic input methods.
1742 2005-10-27  Jay Belanger  <belanger@truman.edu>
1744         * calc/calc-ext.el: Add functions to autoloads.
1745         (math-identity-matrix-p, math-ident-row-p): New functions.
1747         * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
1748         multiplication by an identity matrix; don't turn multiplication by
1749         an inverse matrix into division.
1750         (math-div-symbol-fancy):  Replace division by matrices with
1751         multiplication by inverse.
1753         * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
1755         * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
1756         (calc-writeoutpower): New functions.
1758 2005-10-27  Romain Francoise  <romain@orebokech.com>
1760         * replace.el (occur-engine): Include colon in mouse-face highlight.
1762         * dired-x.el: Change Maintainer field.
1764 2005-10-26  Chong Yidong  <cyd@stupidchicken.com>
1766         * longlines.el (longlines-mode): Bind after-change-functions to
1767         nil during initial decoding and final encoding.
1769 2005-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
1771         * term.el (term-emulate-terminal, term-handle-colors-array)
1772         (term-handle-ansi-escape): Specify the terminfo capabilities
1773         implemented.
1775 2005-10-26  Richard M. Stallman  <rms@gnu.org>
1777         * info.el (Info-fontify-node): Fix detection of sentence-break
1778         before *Note.
1780 2005-10-26  Romain Francoise  <romain@orebokech.com>
1782         * smerge-mode.el: Add `tools' to file keywords.
1784 2005-10-26  Nick Roberts  <nickrob@snap.net.nz>
1786         * progmodes/gud.el (gud-menu-map): Only display gud-until icon
1787         when the fringe is not available.
1789         * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
1790         (def-gdb-auto-update-trigger): Simplify construction.
1791         (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
1792         def-gdb-auto-updated-buffer as gdb-info-locals-handler is
1793         defined explicitly.
1794         (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
1795         def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
1796         defined explicitly.
1797         (gdb-info-locals-custom): Remove as it's a no-op.
1799 2005-10-25  Chong Yidong  <cyd@stupidchicken.com>
1801         * longlines.el (longlines-mode): Remove narrowing before
1802         performing the initial decoding or final encoding.
1804 2005-10-25  Romain Francoise  <romain@orebokech.com>
1806         * emacs-lisp/find-func.el (find-library-name): Also strip
1807         extension if library name ends in .el, to take advantage of
1808         `find-library-suffixes'.
1810 2005-10-25  Richard M. Stallman  <rms@gnu.org>
1812         * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
1814 2005-10-25  Juri Linkov  <juri@jurta.org>
1816         * textmodes/texinfo.el (texinfo-mode): Change charset of one
1817         quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
1819 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1821         * play/blackbox.el (blackbox-mode-map): Move init into declaration.
1822         (blackbox-redefine-key): Add argument `map'.
1824         * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
1825         regions when moving the jit-lock-context-unfontify-pos boundary.
1827 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
1829         * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
1831 2005-10-25  Masatake YAMATO  <jet@gyve.org>
1833         * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
1835 2005-10-25  Michael Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>  (tiny change)
1837         * play/blackbox.el (blackbox-redefine-key): New function.
1838         (blackbox-mode-map): Use it to remap existing bindings for cursor
1839         motion instead of binding literal keys.
1841 2005-10-25  Glenn Morris  <rgm@gnu.org>
1843         * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
1844         diary does not end in a newline.  Do not assume a blank line at
1845         the start of the diary file.
1847 2005-10-25  Kenichi Handa  <handa@m17n.org>
1849         * international/quail.el (quail-translate-key): If the input
1850         method is deterministic and failed to handle the last key, restart
1851         the key handling loop from an appropriate key.
1853 2005-10-25  Michael Albinus  <michael.albinus@gmx.de>
1855         * vc.el (vc-dired-mode): Extend comment for binding of
1856         `directory-listing-before-filename-regexp'.
1858 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1860         * textmodes/texinfo.el (texinfo-mode):
1861         * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
1862         not to unnecessarily expose emacs-mule's internal char codes.
1864 2005-10-25  Nick Roberts  <nickrob@snap.net.nz>
1866         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
1867         Display hand pointer and help-echo on disabled icon too.
1868         (gdb-mouse-until): New function.
1869         (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
1871 2005-10-24  Chong Yidong  <cyd@stupidchicken.com>
1873         * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
1874         with 2005-10-23 change to doctor.el.
1876         * finder.el (finder-mode-map): Add follow-link binding.
1878 2005-10-25  Kim F. Storm  <storm@cua.dk>
1880         * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
1881         to gdb-mouse-toggle-breakpoint-fringe.
1882         (gdb-mouse-toggle-breakpoint-margin): Rename from
1883         gdb-mouse-toggle-breakpoint. Fix doc.
1884         (gdb-mouse-toggle-breakpoint-fringe): New defun.
1885         (gdb-put-string): Add optional SPROPS arg.  Add props to string.
1886         (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
1887         string properties also for fringe breakpoint bitmaps.
1889 2005-10-24  Carsten Dominik  <dominik@science.uva.nl>
1891         * textmodes/org.el (org-start-icalendar-file): Fix format form.
1893 2005-10-25  Masatake YAMATO  <jet@gyve.org>
1895         * simple.el (completion-common-substring):
1896         Use `completion-common-substring' prior to `completion-base-size'.
1898 2005-10-24  Hrvoje Niksic  <hniksic@xemacs.org>
1900         * savehist.el: Require CL while compiling.
1901         (savehist-history-variables): Remove.
1902         (savehist-save-minibuffer-history, savehist-additional-variables)
1903         (savehist-minibuffer-history-variables): New vars.
1904         (savehist-save): Use them.
1905         (savehist-uninstall, savehist-minibuffer-hook): New funs.
1906         (savehist-install): New fun, extracted from savehist-load.
1907         (savehist-load): Use them.
1909 2005-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1911         * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
1912         a dummy doc-string-elt property.
1913         (defalias, defvaralias, define-category): Add a docstring property.
1915         * image.el (defimage):
1916         * widget.el (define-widget):
1917         * custom.el (defface, defcustom): Add `doc-string' declaration.
1919         * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
1920         (defadvice): Add `doc-string' declaration.
1922         * emacs-lisp/byte-run.el (macro-declaration-function):
1923         Handle `doc-string' declarations.
1924         (define-obsolete-function-alias, define-obsolete-variable-alias):
1925         Add `doc-string' declaration.
1927 2005-10-24  Kenichi Handa  <handa@m17n.org>
1929         * international/utf-7.el (utf-7): Add autoload cookie.
1931         * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
1933 2005-10-24  Eli Zaretskii  <eliz@gnu.org>
1935         * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
1936         list of directories passed to batch-update-autoloads.  Add "." to
1937         the list of the echoed directories.
1939         * pgg-def.el:
1940         * pgg-gpg.el:
1941         * pgg-parse.el:
1942         * pgg-pgp.el:
1943         * pgg-pgp5.el:
1944         * pgg.el: Moved here from the gnus subdirectory.
1946 2005-10-24  Nick Roberts  <nickrob@snap.net.nz>
1948         * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
1949         in case comint-prompt-read-only is set to t.
1951         * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
1952         in case comint-prompt-read-only is set to t.
1954 2005-10-24  Ulf Jasper  <ulf.jasper@web.de>
1956         * calendar/icalendar.el (icalendar-version): Increase to 0.13.
1957         Now a string.
1958         (icalendar-import-format): Handle CLASS, STATUS, URL.
1959         Rename `subject' to `summary'.
1960         (icalendar-import-format-summary): Rename from
1961         `icalendar-import-format-subject'.
1962         (icalendar-import-format-url, icalendar-import-format-status)
1963         (icalendar-import-format-class): New variables.
1964         (icalendar--rris): Take variable argument list.
1965         (icalendar--datestring-to-isodate): Remove unnecessary
1966         calendar-style check when converting dates with explicit month names.
1967         (icalendar-export-region): Change return type of conversion
1968         subroutines.  Bury current buffer unless error occurred.
1969         (icalendar--convert-to-ical)
1970         (icalendar--parse-summary-and-rest): New functions.
1971         (icalendar--convert-ordinary-to-ical)
1972         (icalendar--convert-weekly-to-ical)
1973         (icalendar--convert-yearly-to-ical)
1974         (icalendar--convert-block-to-ical)
1975         (icalendar--convert-cyclic-to-ical)
1976         (icalendar--convert-anniversary-to-ical): Change return type.
1977         Strip trailing blanks from subject.
1978         (icalendar--convert-sexp-to-ical): Change return type.
1979         Strip trailing blanks from subject.  Handle simple sexp
1980         entries as generated by icalendar.el.
1981         (icalendar--convert-float-to-ical)
1982         (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
1983         (icalendar-import-file): Doc fix.
1984         (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
1985         Correct call to icalendar--rris.
1986         (icalendar--convert-ical-to-diary): Doc fix.  Rename `subject' to
1987         `summary'.
1988         (icalendar--add-diary-entry): Rename `subject' to `summary'.
1990 2005-10-24  Romain Francoise  <romain@orebokech.com>
1992         * server.el (server-sentinel): Set query-on-exit flag to nil on
1993         new client processes (it isn't inherited from the server process).
1995         * replace.el (occur-engine): Rearrange text properties.
1997 2005-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1999         * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
2000         case-fold-search is nil.
2001         (debug-help-follow): Use help-xref-interned directly.
2003 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
2005         * thumbs.el (thumbs-image-type): Add .pbm.
2007 2005-10-23  Richard M. Stallman  <rms@gnu.org>
2009         * faces.el (inhibit-face-set-after-frame-default): New variable.
2010         (set-face-attribute): Bind it.
2011         (face-set-after-frame-default): Test it.
2013         * help-fns.el (describe-simplify-lib-file-name): New function.
2014         (describe-function-1, describe-variable): Use it.
2016         * faces.el (describe-face): Use describe-simplify-lib-file-name.
2018         * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
2019         Eliminate nil as possible value.
2020         (tooltip-hide-delay): Reduce internal-border-width.
2022         * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
2023         (menu-bar-file-menu) <new-file>: Likewise.
2025         * simple.el (line-move-finish): Ignore fields computing LINE-END.
2027         * international/mule.el (load-with-code-conversion):
2028         Pass full file name to `eval-buffer' unless preloading.
2030         * textmodes/flyspell.el (flyspell-large-region):
2031         Call ispell-check-version.
2033         * textmodes/ispell.el (ispell-local-dictionary-overridden):
2034         Fix the make-variable-buffer-local call that was supposed
2035         to be for this variable.
2036         (ispell-aspell-supports-utf8): Doc fix.
2037         (ispell-find-aspell-dictionaries): Preserve elements of
2038         ispell-dictionary-alist for dictionaries that aspell doesn't report.
2039         (ispell-aspell-find-dictionary): Return nil on error.
2041         * play/doctor.el (doctor-doc): Don't say "psychiatrist".
2042         (doctor-symptoms): Likewise.
2044         * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
2046 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
2048         * cus-edit.el (custom-button, custom-button-pressed): New vars.
2049         (custom-raised-buttons): Add :set spec.
2050         (custom-button-unraised, custom-button-pressed-unraised):
2051         New faces, so that custom-raised-buttons actually does something.
2052         (custom-mode): Use custom-button and custom-button-pressed.
2054         * wid-edit.el (widget-specify-button): Don't ignore
2055         widget-mouse-face on graphic terminals.
2056         (widget-move-and-invoke): Cleanup.
2058 2005-10-23  Thien-Thi Nguyen  <ttn@gnu.org>
2060         * whitespace.el (whitespace-cleanup): Doc fix.
2062 2005-10-23  Romain Francoise  <romain@orebokech.com>
2064         * emulation/viper.el (viper-set-hooks): Quote forms passed to
2065         `eval-after-load' to avoid evaluating their result.
2067 2005-10-23  Michael Albinus  <michael.albinus@gmx.de>
2069         * files.el (directory-listing-before-filename-regexp):
2070         New defvar.  Replaces `dired-move-to-filename-regexp' from dired.el.
2072         * dired.el (dired-move-to-filename-regexp): Remove.
2073         All occurences replaced by `directory-listing-before-filename-regexp'.
2075         * dired-x.el, locate.el, vc.el:
2076         Replace `dired-move-to-filename-regexp' by
2077         `directory-listing-before-filename-regexp'.  In vc.el it is
2078         overwritten locally; maybe this can be handled in files.el too.
2080         * net/ange-ftp.el (ange-ftp-date-regexp): Remove.  All occurences
2081         replaced by `directory-listing-before-filename-regexp'.
2083 2005-10-23  Andreas Schwab  <schwab@suse.de>
2085         * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
2086         and eval-next-after-load.
2088 2005-10-23  MIYOSHI Masanori  <miyoshi@meadowy.org>  (tiny change)
2090         * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
2091         exist, create it.
2093 2005-10-23  Ken Manheimer  <ken.manheimer@gmail.com>
2095         * allout.el: Remove autoloads for mailcrypt and crypt++.
2096         Require pgg, pgg-gpg during compilation.
2097         (allout-version): Increment version number to 2.1, and use a literal
2098         rather than RCS Id.
2099         (allout-default-encryption-scheme): Remove.
2100         (allout-passphrase-verifier-handling)
2101         (allout-passphrase-verifier-string)
2102         (allout-file-passphrase-verifier-string)
2103         (allout-passphrase-hint-string): Rename -key- to -passphrase-.
2104         (allout-passphrase-hint-handling): Rename and simplify.
2105         (allout-init): Use `find-file-hook' if available, otherwise
2106         `find-file-hooks'.
2107         (allout-mode): Use `write-file-functions' if available, otherwise
2108         `local-write-file-hooks' and, instead of making auto-save-hook
2109         buffer local, make the write-file-hook activity contingent to
2110         allout-mode.
2111         (allout-mode): Use key-binding substitution in the docstring.
2112         (allout-kill-line): Spell-out kill ring data structure mutation
2113         instead of using byte-compiler-complaint-provoking `pop'.
2114         (allout-insert-listified): Use `insert' rather than `insert-string'
2115         (allout-toggle-current-subtree-encryption): Update docstring, adjust
2116         to new gpp-based encryption, use new `allout-encrypted-topic-p'.
2117         (allout-encrypt-string): Totally revamped vis new underlying
2118         encryption facilities.
2119         (allout-mc-activate-passwd): Remove.
2120         (allout-obtain-passphrase): New, more or less replaces
2121         allout-mc-activate-passwd.
2122         (allout-encrypted-key-info): More or less replaces
2123         allout-encrypted-text-type.
2124         (outlineify-sticky, outlinify-sticky): Add autoload cookie.
2125         (my-mark-marker): Use `(featurep 'xemacs)'.
2127 2005-10-23  Lars Hansen <larsh@soem.dk>
2129         * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
2130         (byte-compile-file-form-defmumble, byte-compile-defun)
2131         (byte-compile-defmacro): Use it.
2132         (byte-compile-form): Don't call byte-compile-set-symbol-position
2133         when a byte-compile handler is called.
2135 2005-10-22  Romain Francoise  <romain@orebokech.com>
2137         * savehist.el (savehist-history-variables): Add `grep-find-history'.
2139         * subr.el (eval-after-load): Convert library name to an absolute
2140         file name using locate-library, since load-history no longer has
2141         library names in it.
2143 2005-10-22  Richard M. Stallman  <rms@gnu.org>
2145         * files.el (make-temp-file): Move from subr.el.
2146         * subr.el (make-temp-file): Move to files.el.
2148         * window.el (get-buffer-window-list): Move from subr.el.
2149         * subr.el (get-buffer-window-list): Move to window.el.
2151         * image.el (image-load-path): Use eval-at-startup to initialize.
2153         * subr.el (eval-at-startup): New macro.
2155         * subr.el: Much rearrangement of functions and division
2156         into pages.  No code changes.
2158 2005-10-22  Kenichi Handa  <handa@m17n.org>
2160         * tar-mode.el (tar-extract): Be sure to call
2161         find-operation-coding-system if set-auto-coding doesn't find a
2162         coding system.
2164 2005-10-22  Kim F. Storm  <storm@cua.dk>
2166         * image.el (image-type-header-regexps): Rename from image-type-regexps.
2167         Change users.
2168         (image-type-file-name-regexps): New defconst.
2169         (image-type-from-data): Simplify loop.
2170         (image-type-from-buffer): New defun.
2171         (image-type-from-file-header): Use it instead of image-type-from-data.
2172         Use image-search-load-path instead of only looking in data-directory.
2173         (image-type-from-file-name): New defun.
2174         (image-search-load-path): Change `pathname' to `filename'.
2175         Make PATH arg optional, default to image-load-path.
2177 2005-10-21  Richard M. Stallman  <rms@gnu.org>
2179         * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
2181         * textmodes/paragraphs.el (sentence-end-base): New variable.
2182         (sentence-end): Use sentence-end-base.
2184 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2186         * font-lock.el (font-lock-default-fontify-region): Check the multiline
2187         property independently from the font-lock-multiline variable.
2189 2005-10-21  Richard M. Stallman  <rms@gnu.org>
2191         * emacs-lisp/find-func.el (find-library-name): Doc fix.
2193         * startup.el (command-line): Convert library names
2194         in `load-history' to absolute file names.
2196         * subr.el (symbol-file): Doc fix.
2198         * loadhist.el (file-loadhist-lookup): Call locate-library
2199         instead of find-library-name.  Don't try converting
2200         abs file names to library names, since load-history no longer
2201         has library names in it.
2202         (file-dependents, file-provides, file-requires): Doc fixes.
2204 2005-10-21  Juri Linkov  <juri@jurta.org>
2206         * progmodes/etags.el (tags-table-mode): New function.
2207         (tags-verify-table): Replace initialize-new-tags-table with
2208         tags-table-mode.
2210         * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
2211         default value.
2212         (desktop-modes-not-to-save): Add tags-table-mode to the
2213         default value.
2215         * info.el (Info-index-next): Add total number of index
2216         alternatives to the message.
2218         * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
2219         backward only space (instead of space and period) before looking
2220         at sentence end.
2222         * simple.el (set-variable): Use user-variable-p instead of symbolp.
2223         Add the old variable value as 4th default-value arg of read-string.
2225 2005-10-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2227         * cus-face.el (custom-declare-face): Make face from X resources
2228         also on Mac.
2230         * disp-table.el (standard-display-g1, standard-display-graphic):
2231         Refuse to use string glyphs also on Mac.
2232         (standard-display-european): Don't set terminal coding system also
2233         on Mac.
2235         * frame.el (display-screens): Use x-display-screens also on Mac.
2237 2005-10-21  Romain Francoise  <romain@orebokech.com>
2239         * net/rcirc.el: Now part of GNU Emacs.  Update FSF's address.
2241 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2243         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
2244         and $? into sexps.
2246         * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
2247         warning face on open-paren-in-column-0.
2249         * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
2250         boundary case.  Fix typo.
2251         Suggested by Martin Rudalics <rudalics@gmx.at>.
2253 2005-10-21  Carsten Dominik  <dominik@science.uva.nl>
2255         * textmodes/org.el: (org-combined-agenda-icalendar-file)
2256         (org-icalendar-include-todo, org-icalendar-combined-name): New options.
2257         (org-export-icalendar-this-file)
2258         (org-export-icalendar-all-agenda-files)
2259         (org-export-icalendar-combine-agenda-files): New commands.
2260         (org-export-icalendar, org-print-icalendar-entries)
2261         (org-start-icalendar-file, org-finish-icalendar-file)
2262         (org-ical-ts-to-string): New functions.
2263         (org-read-date, org-goto-calendar)
2264         (org-agenda-goto-calendar): Inhibit displaying diary entries by
2265         call to `calendar'.
2266         (orgtbl-setup): Remove the :keys arguments from the menu description.
2267         (org-after-save-iCalendar-file-hook): New variable.
2269 2005-10-21  Kenichi Handa  <handa@m17n.org>
2271         * language/vietnamese.el (tcvn-5712): Make it an alias of
2272         vietnamese-tcvn coding-system.
2274 2005-10-20  Michael Albinus  <michael.albinus@gmx.de>
2276         * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
2277         group id is given.
2279 2005-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2281         * progmodes/sh-script.el (sh-escaped-line-re): New var.
2282         (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
2283         (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
2284         whose line is either continued or ends with a comment.
2286 2005-10-20  Romain Francoise  <romain@orebokech.com>
2288         * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
2290         * replace.el (occur-engine): Add follow-link property.
2292         * font-core.el (font-lock-mode): Doc fix.
2294 2005-10-20  Richard M. Stallman  <rms@gnu.org>
2296         * net/rcirc.el: New file.
2298 2005-10-20  Bryan Henderson  <bryanh@giraffe-data.com>  (tiny change)
2300         * term.el (term-term-name): Initialize to "eterm-color".
2302 2005-10-20  Ken Manheimer  <ken.manheimer@gmail.com>
2304         * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
2305         for encryption functionality.
2306         Move allout customization subgroup from `editing' to `outlines' group.
2307         Fix commentary 'keywords' to legitimate ones.
2308         Update author info (using my current email address, obscurified).
2309         (allout-encrypt-string, allout-encryption-produce-work-buffer)
2310         (allout-encrypted-topic-p, allout-encrypted-text-type)
2311         (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
2312         (allout-situate-encryption-key-verifier)
2313         (allout-get-encryption-key-verifier, allout-verify-key)
2314         (allout-next-topic-pending-encryption)
2315         (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
2316         (outline-topic-encryption-bullet, outline-default-encryption-scheme)
2317         (outline-key-verifier-handling, outline-key-hint-handling)
2318         (outline-encrypt-unencrypted-on-saves): New defcustoms.
2319         (allout-file-key-verifier-string, allout-encryption-scheme)
2320         (allout-key-verifier-string, allout-key-hint-string)
2321         (allout-after-save-decrypt): New variables.
2322         (allout-write-file-hook-handler, allout-auto-save-hook-handler)
2323         (allout-after-saves-handler): New hook functions.
2324         (allout-post-command-business): Do allout-after-save-decrypt.
2325         (allout-enable-file-variable-adjustment): Custom var to enable
2326         mechanism for adding and adjusting settings of Emacs file variables.
2327         (allout-adjust-file-variable, allout-file-vars-section-data):
2328         New functions, implement the mechanism.
2329         (outlineify-sticky): Use the file vars mechanism.
2330         (allout-inhibit-protection, allout-during-write-cue)
2331         (allout-override-protect, allout-before-change-protect): Remove.
2332         (allout-flag-region, allout-open-topic): Adjust read-only text.
2333         (allout-open-line-not-read-only): Add to facilitate read-only
2334         text based protection.
2335         (allout-kill-line): Revise to adjust read-only text, clue the
2336         user about the inhibition.
2337         (allout-unprotected): Use unwind-protect.
2338         (allout-shift-in, allout-shift-out): Disallow manually shifting a
2339         topic deeper than the offspring depth of the previous topic -
2340         avoiding confusing "containment discontinuities".
2341         (allout-reindent-bodies): Fix retention of body relative hanging
2342         indent during promotion of collapsed bodies.
2343         (allout-open-topic): Make it easy to open new topic with same
2344         bullet as current topic - topic creation functions provided with
2345         any universal argument provokes now prompt for bullet, defaulting
2346         to the bullet of the previous topic.
2347         (allout-plain-bullets-string, allout-distinctive-bullets-string):
2348         Plain bullet alternates '.' period and ',' comma only.  All other
2349         bullets are relegated to special status (but customizable).
2350         (allout-end-of-entry): Rename from 'allout-end-of-current-entry
2351         since it actually operates w.r.t. most immediately containing
2352         entry, visible or not.
2353         (allout-hide-current-entry, allout-show-current-entry): Use the
2354         revised version.
2355         (allout-old-expose-topic): Solidify deprecation.
2356         (allout-end-of-subtree): Add so we can span concealed as well
2357         as visible topics.
2358         (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
2359         (allout-end-of-current-heading): Tweak to just respect the first line.
2360         (allout-get-body-text): Add.
2361         (allout-ascend-to-depth, allout-ascend): Position at end of prefix
2362         when invoked interactively.
2363         (allout-up-current-level): Use `interactive-p'.
2364         (allout-mode, allout-init): Miscellaneous docstring and
2365         operational refinements, as well as hookups of new encryption stuff.
2366         (allout-beginning-of-current-entry): Now works as advertised.
2367         (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
2368         (allout-isearch-rectification): Refine condition for isearching.
2369         (allout-isearch-abort, allout-enwrap-isearch)
2370         (allout-flag-region, my-region-active-p): Relocate some macros.
2371         (allout-title): Fallback title is '(buffer-name)', not
2372         non-existing '(current-buffer-name)'.
2373         (subst-char-in-string): Define if absent (for some XEmacs versions).
2375 2005-10-20  Jari Aalto  <jari.aalto@cante.net>
2377         * mail/sendmail.el (mail-setup-hook, mail-aliases)
2378         (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
2379         (mail-citation-prefix-regexp, mail-signature-file)
2380         (mail-default-headers, mail-bury-selects-summary)
2381         (mail-send-nonascii): Add autoload cookies.
2383 2005-10-20  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
2385         * frame.el (blink-cursor-mode): Add `mac' to the list of
2386         window-system's that support blinking cursor.
2388 2005-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
2390         * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
2392 2005-10-20  Eli Zaretskii  <eliz@gnu.org>
2394         * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
2395         Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
2396         to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
2398 2005-10-20  Kim F. Storm  <storm@cua.dk>
2400         * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
2401         (ido-set-current-directory): Don't add / after final @.
2402         (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
2403         Explicitly handle ange-ftp completion oddities.
2404         (ido-make-file-list): Don't rotate list at tramp root to avoid
2405         triggering tramp file handler for expand-file-name via get-file-buffer.
2407 2005-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2409         * savehist.el (savehist-coding-system): Revert to checking XEmacs.
2411 2005-10-19  Jay Belanger  <belanger@truman.edu>
2413         * calc/calc-units.el (math-standard-units): Add units, adjust
2414         symbols and update values.
2415         (math-unit-prefixes):  Add more prefixes.
2417 2005-10-19  Romain Francoise  <romain@orebokech.com>
2419         * bookmark.el (bookmark-menu-heading): New face.
2420         (bookmark-bmenu-list): Use it.
2421         Don't fiddle with `baud-rate' at top-level.
2423 2005-10-18  Chong Yidong  <cyd@stupidchicken.com>
2425         * image.el (create-image, find-image): Mention max-image-size in
2426         docstring.
2428 2005-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2430         * savehist.el (savehist-load): Revert to checking XEmacs.
2432         * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
2433         Various docstring and line-width fixups.
2434         (conf-mode): Use cond.
2435         Set font-lock-defaults.  Don't set comment-use-syntax.
2437 2005-10-18  David Ponce  <david@dponce.com>
2439         * tree-widget.el (tree-widget-button-click): New function.
2440         (tree-widget-button-keymap): Use it.
2442 2005-10-18  Romain Francoise  <romain@orebokech.com>
2444         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
2445         (bookmark-bmenu-hide-filenames): Add follow-link property.
2446         Improve help-echo text.
2448         * ffap.el (find-file-at-point): Doc fix.
2450 2005-10-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2452         * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
2454 2005-10-18  Masatake YAMATO  <jet@gyve.org>
2456         Install to the CVS repository what I forgot to install in my
2457         2005-10-16 changes.
2459         * progmodes/python.el (python-complete-symbol): Pass the common
2460         prefix substring of completion to `display-completion-list'.
2462         * textmodes/org.el (org-complete): Ditto.
2464 2005-10-18  Masatake YAMATO  <jet@gyve.org>
2466         Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
2468         * woman.el (WoMan-xref-man-page): New button type derived
2469         from `Man-abstract-xref-man-page'.
2470         (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
2472         * man.el (Man-abstract-xref-man-page): New button type.
2473         (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
2474         (Man-highlight-references): Add new optional argument `xref-man-type'.
2476 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
2478         * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
2480 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
2482         * cus-edit.el (Custom-move-and-invoke): Delete.
2483         (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
2485         * wid-edit.el (widget-move-and-invoke): New function, from
2486         Custom-move-and-invoke.
2488 2005-10-17  Bill Wohler  <wohler@newt.com>
2490         Move all remaining images from lisp/toolbar to etc/images, move
2491         lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar.  Place
2492         the low resolution images in their own directory (low-color).
2494         * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*,
2495         * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*:
2496         * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*:
2497         * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*:
2498         * toolbar/preferences.*, toolbar/print.*, toolbar/save.*:
2499         * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*:
2500         * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
2502         * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
2503         * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
2504         * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
2505         * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
2506         * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
2507         * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
2508         * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
2509         * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
2510         * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
2511         * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
2512         * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
2513         * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
2514         * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
2515         * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
2516         * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
2518         To conform with convention, replace the underscore (_) in the
2519         following image names with dash (-) or (/) as appropriate.
2521         * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
2522         * toolbar/fld_open.*: Move to etc/images/fld-open.*.
2523         * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
2524         * toolbar/jump_to.*: Move to etc/images/jump-to.*.
2525         * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
2526         * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
2527         * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
2528         * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
2529         * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
2530         * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
2531         * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
2532         * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
2533         * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
2534         * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
2535         * toolbar/mail_send.*: Move to etc/images/mail/send.*.
2537         * info.el (info-tool-bar-map): Replace underscores in image names
2538         with dashes.
2540         * makefile.w32-in (WINS): Remove toolbar.
2542         * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
2544         * tool-bar.el: Move to lisp from toolbar.  Now that
2545         toolbar is empty, it should be deleted when folks run "cvs up -P".
2547 2005-10-18  Jay Belanger  <belanger@truman.edu>
2549         * calc/calc-store.el (calc-store-into): Get the proper variable name
2550         to display in message.
2552 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
2554         * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
2555         expressions display in speedbar for all buffers when debugging.
2556         (gdb-speedbar-expand-node): Ensure node contraction is always updated.
2558         * speedbar.el (speedbar-set-mode-line-format): Indent properly.
2559         (speedbar-insert-button, speedbar-make-button):
2560         Use add-text-properties.
2561         (speedbar-update-localized-contents)
2562         (speedbar-update-directory-contents)
2563         (speedbar-update-special-contents): Use dolist.
2564         (speedbar-buffer-easymenu-definition): Add a menu separator.
2566 2005-10-17  Jason Rumney  <jasonr@gnu.org>
2568         * makefile.w32-in: Use $(lisp) consistently.
2569         (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
2570         for shell specific generation of mh-autoloads.
2572 2005-10-17  Richard M. Stallman  <rms@gnu.org>
2574         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
2576 2005-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2578         * jit-lock.el (jit-lock-fontify-now):
2579         Move jit-lock-context-unfontify-pos to avoid wasted work.
2581 2005-10-17  Michael Albinus  <michael.albinus@gmx.de>
2583         * net/tramp.el (tramp-completion-mode): New defvar.  Used in
2584         `tramp-completion-mode' for checking if we are in completion mode.
2585         (tramp-completion-handle-file-name-all-completions): Reorder code
2586         in order to complete for file names only in case there are no
2587         method/user/host completions.  This is necessary for cooperation
2588         with ido.  Reported by Kim F. Storm <storm@cua.dk>.
2590 2005-10-16  Chong Yidong  <cyd@stupidchicken.com>
2592         * longlines.el (longlines-search-forward)
2593         (longlines-search-backward): Match any number of spaces.
2595 2005-10-16  Thien-Thi Nguyen  <ttn@gnu.org>
2597         * diff-mode.el (diff-mode): Doc fix.
2599 2005-10-16  David Reitter <david.reitter@gmail.com>
2601         * mail/sendmail.el (send-mail-function): Use mailclient-send-it
2602         as default on darwin and windows systems.
2604 2005-10-16  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
2606         * arc-mode.el (archive-zip-extract): Doc fix.
2608 2005-10-16  Romain Francoise  <romain@orebokech.com>
2610         * mouse.el (mouse-1-click-follows-link): Doc fix.
2612 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2614         * savehist.el: Don't require CL at runtime.
2615         (savehist-xemacs): Remove.
2616         (savehist-coding-system): Use utf-8 if present, regardless of religion.
2617         (savehist-no-conversion): Use (featurep 'xemacs).
2618         (savehist-load): Check existence of start-itimer rather than XEmacs.
2619         Use an idle timer.
2620         (savehist-process-for-saving): Replace use of CL funs `subseq' and
2621         `delete-if-not'.
2623 2005-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
2625         * savehist.el: Newer version.
2626         (savehist-autosave-interval, savehist-coding-system, savehist-timer)
2627         (savehist-last-checksum, savehist-no-conversion): New vars.
2628         (savehist-autosave, savehist-process-for-saving, savehist-printable):
2629         New functions.
2630         (savehist-load, savehist-save): Use them.
2631         (savehist-delimit): Remove.
2633 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2635         * progmodes/compile.el (compilation-goto-locus): Display the
2636         compilation buffer first and the source buffer second, in case they're
2637         in overlapping frames.  Don't raise the compilation frame if it was the
2638         selected window upon entry.  Pass the `other-window' arg to
2639         pop-to-buffer.
2641         * info.el (Info-fontify-node): Use dolist.
2642         Change add-text-properties to put-text-property.
2644 2005-10-16  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2646         * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
2647         bound of search.
2649 2005-10-16  Masatake YAMATO  <jet@gyve.org>
2651         * dabbrev.el (dabbrev-completion): Pass the common
2652         prefix substring of completion to `display-completion-list'.
2654         * filecache.el (file-cache-minibuffer-complete)
2655         (file-cache-complete): Ditto.
2657         * tempo.el (tempo-display-completions): Ditto.
2659         * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
2661         * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
2663         * eshell/em-hist.el (eshell-list-history): Ditto.
2665         * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
2667         * mail/mailalias.el (mail-complete): Ditto.
2669         * progmodes/etags.el (complete-tag): Ditto.
2671         * progmodes/make-mode.el (makefile-complete): Ditto.
2673         * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
2675         * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
2677         * progmodes/pascal.el (pascal-complete-word)
2678         (pascal-show-completions): Ditto.
2680         * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
2682         * simple.el (completion-common-substring): New variable.
2683         (completion-setup-function): Use `completion-common-substring'
2684         to put faces.
2686 2005-10-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2688         * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
2689         (x-get-selection, mac-select-convert-to-string): Convert from/to
2690         UTF-16 clipboard data as in native byte order, no BOM.
2692 2005-10-16  Nick Roberts  <nickrob@snap.net.nz>
2694         * progmodes/gud.el (gud-tool-bar-map): Rename the images
2695         appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
2696         (gud-sentinel): Use speedbar-frame to check for speedbar.
2698 2005-10-15  Richard M. Stallman  <rms@gnu.org>
2700         * savehist.el: New file.
2702 2005-10-14  Karl Chen  <quarl@cs.berkeley.edu>
2704         * textmodes/tex-mode.el (tex-font-lock-keywords-2):
2705         Fix bug in \bf fontification.
2707 2005-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2709         * pcvs.el (cvs-edit-log-files): New var.
2710         (cvs-mode-edit-log): New arg `file'.
2711         (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
2712         Instead force the use of the original file and nothing else.
2713         (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
2714         the cvs-minor-wrap-function is set.
2715         (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
2717 2005-10-14  Bill Wohler  <wohler@newt.com>
2719         * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
2720         * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
2721         * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
2722         * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
2723         * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
2724         * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
2725         * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
2726         * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
2727         * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
2728         * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
2729         * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
2730         * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
2731         * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
2732         * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
2733         * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
2735         * progmodes/gud.el (gud-tool-bar-map): Rename the images
2736         appropriately (for example, gud-break to gud/break).
2738 2005-10-14  Chong Yidong  <cyd@stupidchicken.com>
2740         * longlines.el (longlinges-search-function)
2741         (longlines-search-forward, longlines-search-backward): New functions.
2742         (longlines-mode): Set isearch-search-fun-function to
2743         longlinges-search-function.
2745         * mouse.el (mouse-drag-region-1): Handle the case where a
2746         double-click event is bound to an arbitrary function.
2748 2005-10-14  David Ponce  <david@dponce.com>
2750         * recentf.el (recentf-track-opened-file)
2751         (recentf-track-closed-file, recentf-update-menu)
2752         (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
2753         (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
2754         mouse-1-click-follows-link.
2756 2005-10-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2758         * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
2759         Gnome file-manager.png.  Suggested by
2760         Joachim Nilsson <joachim.nilsson@vmlinux.org>.
2762         * toolbar/README: Add diropen.xpm.
2764 2005-10-13  Bill Wohler  <wohler@newt.com>
2766         * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
2767         restrictions.  Suggested by David Robinow <drobinow@gmail.com>.
2769 2005-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2771         * progmodes/mixal-mode.el (mixal-operation-codes-alist):
2772         Don't waste the byte-compiler's time on constant data.
2774 2005-10-13  Kenichi Handa  <handa@m17n.org>
2776         * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
2777         byte with `escape-glyph' face.
2779         * international/fontset.el (ccl-encode-unicode-font):
2780         Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
2781         Handle the case that ucs-mule-to-mule-unicode translates a character to
2782         ASCII (usually for IPA characters).
2784 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2786         * info.el (Info-fontify-node): Don't be fooled by a lone "...".
2787         Don't hide the underline of titles if font-lock-mode is disabled.
2789 2005-10-12  Bill Wohler  <wohler@newt.com>
2791         * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
2792         (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
2793         files in MH-E-SRC have been updated.
2794         (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
2796 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2798         * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
2799         (mixal-mode-syntax-table): Add \n as end-comment.
2800         (mixal-operation-codes-alist): Immediately initialize to full value.
2801         (mixal-add-operation-code): Remove.
2802         (mixal-describe-operation-code): Make the arg non-optional.
2803         Use the interactive spec instead.
2804         Use mixal-operation-codes-alist rather than mixal-operation-codes.
2805         (mixal-font-lock-keywords): Don't highlight comments here any more.
2806         (mixal-font-lock-syntactic-keywords): New var.
2807         (mixal-mode): Use it.  Fix comment-start-skip.
2809 2005-10-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2811         * startup.el (command-line-x-option-alist): -nb => -nbi
2813 2005-10-12  Kim F. Storm  <storm@cua.dk>
2815         * startup.el (fancy-splash-default-action): Discard mouse click in
2816         the splash screen window, as it has no sensible meaning in the
2817         next window to be selected.  Fixes error reported by Jan D.
2819 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
2821         * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
2823 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2825         * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
2826         Try to fix up minor layout issues like indentation, line break, etc...
2827         (mixal-mode-syntax-table): Don't try to specify comment syntax,
2828         because it doesn't work.
2829         (mixal-operation-codes): Add some more codes.
2830         (mixal-font-lock-keywords): Process comments here.
2831         (mixal-mode): mixasm no longer needs -g option.
2833 2005-10-11  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
2835         * progmodes/sh-script.el (sh-tmp-file):
2836         Use mktemp -t.  Finish support for es and rc shells.
2838 2005-10-11  Jay Belanger  <belanger@truman.edu>
2840         * calc/calcalg2.el (calc-integral): With an argument, compute the
2841         definite integral.
2843 2005-10-11  Chong Yidong  <cyd@stupidchicken.com>
2845         * mouse.el (mouse-drag-region-1): Don't try to catch a
2846         double-click when doing follow-link (it's overridden anyway).
2848 2005-10-11  Juanma Barranquero  <lekktu@gmail.com>
2850         * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
2851         (autoload-print-form-outbuf): Add docstring.
2853 2005-10-11  Juri Linkov  <juri@jurta.org>
2855         * info.el (Info-mode-menu): Delete menu item "Edit".
2856         (Info-mode): Delete description of Info-edit from docstring,
2857         and rearrange descriptions of Info commands in the order
2858         they are documented in the Info manual.
2860 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2862         * calendar/appt.el (appt-check): Use diary-selective-display var.
2864 2005-10-10  Richard M. Stallman  <rms@gnu.org>
2866         * net/newsticker.el (newsticker-start, newsticker-show-news):
2867         Add autoload cookies.
2869 2005-10-10  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>
2871         * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
2873 2005-10-10  Karl Chen  <quarl@cs.berkeley.edu>
2875         * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
2877 2005-10-10  Jay Belanger  <belanger@truman.edu>
2879         * calc/calc-arith.el (math-check-known-scalarp)
2880         (math-check-known-matrixp): Check the values of arguments that are
2881         variables.
2882         (math-check-known-square-matrixp): New function.
2883         (math-known-square-matrixp): Use math-check-known-square-matrixp.
2884         (math-super-types): Add sqmatrix type.
2886         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
2887         mode name `square' to 'sqmatrix'.
2889         * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
2890         mode name `square' to 'sqmatrix'.
2892 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2894         * progmodes/etags.el (select-tags-table-mode): Don't use
2895         selective-display.
2896         (tags-select-tags-table): Pass `button' to the action function.
2897         (select-tags-table): Place the side-info on button properties rather
2898         than in hidden text.  Abbreviate file names.
2899         (select-tags-table-mode-map): Inherit rather than copy buttom-map.
2900         (select-tags-table-select): Add `button' argument.
2901         Get side-info from the button property rather than from hidden text.
2903 2005-10-11  Nick Roberts  <nickrob@snap.net.nz>
2905         * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
2906         (gud-speedbar-buttons): Preserve point if possible.
2907         (gud-sentinel): Restore previous speedbar display type.
2909         * progmodes/gdb-ui.el (gdba): Improve diagram.
2910         (def-gdb-auto-update-handler, gdb-info-locals-handler)
2911         (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
2912         Call get-buffer-window once.
2914 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2916         * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
2917         (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
2918         (pascal-indent-command): Remove unused var `ind'.
2919         (pascal-indent-case): Remove unused var `oldpos'.
2920         (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
2921         since it's now used as a proper minor mode map.
2922         (pascal-outline): Rename to pascal-outline-mode.
2923         (pascal-outline-mode): Use define-minor-mode.
2924         (pascal-outline-mode, pascal-outline-change): Use overlays rather than
2925         selective-display.
2927 2005-10-10  Andreas Schwab  <schwab@suse.de>
2929         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
2930         number.  Reported by Karl Chen <quarl@cs.berkeley.edu>.
2932         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
2933         outside source directory.
2935 2005-10-10  Carsten Dominik  <dominik@science.uva.nl>
2937         * textmodes/org.el: (org-mode-map): Explicit definition of `C-c
2938         C-x' as a prefix.
2939         (orgtbl-mode-map): Full keymap instead of sparse, because all
2940         `self-insert-command' keys are redefined in this map.
2941         (org-export-as-html): Specify charset for HTML file, by taking it
2942         from the coding system.
2944 2005-10-10  Kenichi Handa  <handa@m17n.org>
2946         * textmodes/flyspell.el (flyspell-check-word-p):
2947         If unread-command-events is non-empty, don't call sit-for.
2949 2005-10-09  Richard M. Stallman  <rms@gnu.org>
2951         * font-lock.el (font-lock-syntactic-keywords)
2952         (font-lock-keywords): Doc fixes.
2954         * textmodes/flyspell.el (flyspell-external-point-words):
2955         Simplify logic, and don't try to check for consecutive appearances
2956         of one incorrect word.
2958 2005-10-10  Nick Roberts  <nickrob@snap.net.nz>
2960         * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
2961         separator.
2963         * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
2964         (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
2965         (gud-expansion-speedbar-buttons): New function.
2966         (gud-speedbar-buttons): Check for gud-comint-buffer.
2968 2005-10-09  Bill Wohler  <wohler@newt.com>
2970         * Makefile.in (updates): Add mh-loaddefs dependency.
2972 2005-10-09  Chong Yidong  <cyd@stupidchicken.com>
2974         * speedbar.el (speedbar-file-key-map): Fix typo.
2976 2005-10-09  Daniel Brockman  <daniel@brockman.se>
2978         * cus-start.el (line-spacing): Add custom spec.
2980 2005-10-09  Romain Francoise  <romain@orebokech.com>
2982         * textmodes/ispell.el (ispell-check-version): Fix last change.
2984 2005-10-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2986         * term/x-win.el: Remove -i, --icon-type from comment.
2988         * startup.el (command-line-x-option-alist): Remove options -i,
2989         -itype, --icon-type, added -nb, --no-bitmap-icon
2991 2005-10-09  Nick Roberts  <nickrob@snap.net.nz>
2993         * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
2994         instead of :active.
2996 2005-10-08  Eric Hanchrow  <offby1@blarg.net>
2998         * textmodes/ispell.el (ispell-check-version):
2999         Ignore hyphen, and all that follows, in aspell's version text.
3001 2005-10-08  Jay Belanger  <belanger@truman.edu>
3003         * calc/calc-arith.el (math-known-square-matrixp): New function.
3004         (math-pow-fancy): Check for matrices before distributing exponent
3005         across products.
3007         * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
3008         fullscreen keypad.  Suggested by Luc Teirlinck.
3009         (calc-keypad-show-input): Add space for formatting.
3011         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
3012         Add square matrix option.
3014         * calc/calc-poly.el (math-expand-term): Check for matrices instead
3015         of checking calc-matrix-mode when deciding how to expand.
3017         * calc/calc.el (calc-set-mode-line): Add square matrix option.
3019 2005-10-08  Lars Hansen  <larsh@soem.dk>
3021         * net/tramp.el (tramp-perl-directory-files-and-attributes):
3022         Add error handling.
3023         (tramp-handle-directory-files-and-attributes): Handle perl error msg.
3025 2005-10-08  Michael Albinus  <michael.albinus@gmx.de>
3027         Sync with Tramp 2.0.51.
3029         * net/tramp.el (tramp-handle-set-visited-file-modtime)
3030         (tramp-handle-insert-file-contents, tramp-handle-write-region):
3031         Insert special handling for `last-coding-system-used', again
3032         it still seems to be necessary (unlike stated before).
3033         Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
3034         (tramp-password-prompt-regexp): There might be other words before
3035         trailing ":".  Reported by Kurt Steinkraus <kurt@steinkraus.us>.
3036         (tramp-chunksize): Improve docstring.
3037         (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
3038         Emacs 20.  Use `tramp-octal-to-decimal' therefore.  Reported by
3039         Christian Joergensen <bugs@razor.dk>.
3041 2005-10-07  Glenn Morris  <rgm@gnu.org>
3043         * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
3044         (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
3045         precision'.
3047 2005-10-07  Romain Francoise  <romain@orebokech.com>
3049         * ibuf-ext.el (ibuffer-do-shell-command-pipe)
3050         (ibuffer-do-shell-command-pipe-replace)
3051         (ibuffer-do-shell-command-file, ibuffer-do-eval)
3052         (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
3053         (ibuffer-do-revert, ibuffer-do-replace-regexp)
3054         (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
3055         (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
3056         (ibuffer-filter-by-name, ibuffer-filter-by-filename)
3057         (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
3058         (ibuffer-filter-by-content, ibuffer-filter-by-predicate
3059         (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
3060         (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
3061         Autoload file sans suffix.
3063         * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
3065 2005-10-07  David Ponce  <david@dponce.com>
3067         * recentf.el (recentf-menu-open-all-flag): New option.
3068         (recentf-digit-shortcut-command-name): New function.
3069         (recentf--shortcuts-keymap): New variable.
3070         (recentf-menu-shortcuts): New variable.
3071         (recentf-make-menu-items): Initialize it.  Replace the "More..."
3072         menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
3073         (recentf-menu-value-shortcut): New function.
3074         (recentf-make-menu-item): Use it.  No more in-lined.
3075         (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
3076         (recentf-open-most-recent-file): Rename from
3077         `recentf-open-file-with-key'.  Don't depend on key binding.
3078         (recentf-mode-map): New variable.
3079         (recentf-mode): Use it.
3081 2005-10-06  Bill Wohler  <wohler@newt.com>
3083         * mh-e/mh-loaddefs.el: Remove.  Now generated automatically.
3085         * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
3086         (MH-E-SRC): New.  Used by mh-autoloads.
3087         (mh-autoloads): New.  Builds mh-e/mh-loaddefs.el.  Rebuilds if any
3088         files in MH-E-SRC have been updated.
3089         (compile, recompile, bootstrap): Depend on mh-autoloads.
3091 2005-10-07  Nick Roberts  <nickrob@snap.net.nz>
3093         * progmodes/gud.el (gud-menu-map): Only display un-intuitive
3094         gud-break and gud-remove icons when the fringe is not available.
3096         * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
3097         Typo.
3099 2005-10-06  Michael Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>  (tiny change)
3101         * play/zone.el (zone): Wrap body with save-window-excursion.
3103 2005-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3105         * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
3106         Use the new `list-only' arg to diary-list-entries.
3108         * calendar/diary-lib.el: Use overlays rather than selective-display.
3109         (diary-selective-display): New var.
3110         (diary-header-line-format): Use it.
3111         (diary-list-entries): Add argument `list-only'.
3112         Put the buffer in diary-mode.  Don't add \^M at beg and end.
3113         Replace \^M by invisible overlays.
3114         (diary-unhide-everything): Replace \^M by invisible overlays.
3115         (print-diary-entries): Look for overlays rather than \^M.
3116         Add a space to the temp buffer name.
3117         (diary-show-all-entries, mark-diary-entries, make-diary-entry):
3118         Put the buffer in diary-mode.
3119         (list-sexp-diary-entries): Replace \^M by invisible overlays.
3120         (diary-anniversary): Make the year arg optional.
3121         (diary-time-regexp): New const.
3122         (diary-font-lock-keywords): Use it to accept a few more time formats.
3124         * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
3126 2005-10-06  Thien-Thi Nguyen  <ttn@gnu.org>
3128         * textmodes/artist.el (artist-ellipse-mirror-quadrant):
3129         Fix bug introduced 2005-07-03: Use (car (last ...))
3130         to faithfully reproduce replaced artist-last.
3131         (artist-set-arrow-points-for-poly): Likewise.
3132         Suggested by Johan Bockg\e,Ae\e(Brd.
3134 2005-10-06  Juanma Barranquero  <lekktu@gmail.com>
3136         * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
3137         * wid-edit.el (widget):
3138         * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
3139         * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
3141 2005-10-06  Kenichi Handa  <handa@m17n.org>
3143         * international/mule-cmds.el (set-language-environment):
3144         Fix setting up of case-table for unibyte mode.
3146         * simple.el (what-cursor-position): If the character is displayed
3147         by some `display' text property, show that.  Don't use
3148         single-key-description for eight-bit characters in multibyte mode.
3150 2005-10-06  Nick Roberts  <nickrob@snap.net.nz>
3152         * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
3153         (gdb-ann3): Set it.
3154         (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
3155         (gdb-info-frames-custom): Use inverse-video for first five
3156         characters of selected frame only.
3157         (gdb-get-frame-number): Select frame even when point is on frame
3158         number.
3160 2005-10-06  Masatake YAMATO  <jet@gyve.org>
3162         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
3163         Put `font-lock-function-name-face'.
3164         (gdb-info-frames-custom): Put `font-lock-function-name-face'
3165         and `font-lock-variable-name-face'
3166         (gdb-registers-font-lock-keywords): New font lock keywords definition.
3167         (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
3168         (gdb-memory-font-lock-keywords): New font lock keywords definition.
3169         (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
3170         (gdb-local-font-lock-keywords): New font lock keywords definition.
3171         (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
3172         (gdb-threads-font-lock-keywords): New font lock keywords definition.
3173         (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
3175 2005-10-05  Michael Kifer  <kifer@cs.stonybrook.edu>
3177         * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
3178         (ediff-merge-region-is-non-clash-to-skip): Previously called
3179         ediff-merge-region-is-non-clash.
3181         * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
3182         Use insert-buffer-substring.
3184         * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
3185         selecting files to patch.  Also bug fixes.
3187         * ediff-util.el (ediff-setup): Bug fix.
3188         (ediff-next-difference): Never skip clashes that differ in white
3189         space only.
3191         * ediff-wind.el (ediff-setup-control-frame)
3192         (ediff-destroy-control-frame): Check the menubar feature.
3194         * viper-cmd.el (viper-normalize-minor-mode-map-alist)
3195         (viper-refresh-mode-line): Use make-local-variable to localize
3196         some vars instead of make-variable-buffer-local.  Suggested by
3197         Stefan Monnier.
3199         * viper-init.el (viper-make-variable-buffer-local): Delete alias.
3200         (viper-restore-cursor-type, viper-set-insert-cursor-type):
3201         Use make-local-variable instead of make-variable-buffer-local.
3202         Suggested by Stefan Monnier.
3204         * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
3205         (viper-comint-mode-hook): Use make-local-variable on
3206         require-final-newline.
3207         (viper-non-hook-settings): Don't use make-variable-buffer-local.
3209 2005-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3211         * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
3212         also the second char of a comment-start sequence.
3213         (scheme-sexp-comment-syntax-table): New var.
3214         (lambda, define): Set their scheme-doc-string-elt property.
3215         (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
3216         Use lisp-font-lock-syntactic-face-function now that it properly
3217         handles |...| symbols.
3218         (scheme-mode-variables): Set lisp-doc-string-elt-property,
3219         parse-sexp-lookup-properties and font-lock-extra-managed-props.
3221         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
3222         bit from # to |.
3223         (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
3225         * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
3226         (lisp-doc-string-elt-property): New var.
3227         (lisp-font-lock-syntactic-face-function): Use it.
3228         Rewrite to recognize docstrings even for forms not at toplevel.
3230         * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
3231         annotation on the | part of #| rather than on the # part.
3232         (scheme-font-lock-syntactic-face-function): New function, to
3233         distinguish strings from |...| symbols.
3234         (scheme-mode-variables): Use it.  Also fix up the font-lock-time
3235         syntax-table so that #|...|# is properly highlighted.
3237         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
3238         Don't mark as docstring the 3rd elem of an unknown toplevel form.
3240 2005-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3242         * bindings.el (global-map): Resync [home] and [end] bindings with C-a
3243         and C-e.
3245         * emacs-lisp/eldoc.el: Move comments into docstrings.
3246         (eldoc-message-commands): Initialize in its declaration.
3247         Add move-beginning-of-line and move-end-of-line.
3248         (eldoc-add-command, eldoc-add-command-completions)
3249         (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
3251         * outline.el (outline-mark-subtree): Activate the mark.
3253         * calendar/appt.el (appt-time-regexp): New var.
3254         (appt-add, appt-make-list): Use it.
3255         (appt-convert-time): Clean up.
3257         * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
3258         Don't set any syntax-table property here.
3259         (tex-font-lock-verb): New function.  Do it here.
3260         (tex-font-lock-syntactic-keywords): Use it.
3262 2005-10-04  Richard M. Stallman  <rms@gnu.org>
3264         * wid-edit.el (widget-file-complete): Get the widget start point
3265         the right way.  Default directory to `/' if file has none.
3267         * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
3269         * textmodes/flyspell.el (flyspell-mode-on):
3270         Call ispell-maybe-find-aspell-dictionaries.
3272         * textmodes/ispell.el (ispell-word, ispell-region):
3273         Call ispell-maybe-find-aspell-dictionaries.
3274         (ispell-accept-buffer-local-defs):
3275         Don't call ispell-maybe-find-aspell-dictionaries
3277 2005-10-04  Richard M. Stallman  <rms@gnu.org>
3279         * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
3281 2005-10-04  Emilio C. Lopes  <eclig@gmx.net>
3283         * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
3284         instead of `fboundp' in order to allow for anonymous functions.
3286 2005-10-04  Chong Yidong  <cyd@stupidchicken.com>
3288         * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
3289         case the user clicks on the link while another window is selected.
3290         (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
3292         * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
3293         functionality.
3294         (dframe-help-echo): Save point in case mouse tracking is off.
3296 2005-10-04  Thien-Thi Nguyen  <ttn@gnu.org>
3298         * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
3300 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3302         * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
3303         not change the global value of those vars.
3305         * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
3306         make-local-variable which we do not need any more.
3308 2005-10-03  Chong Yidong  <cyd@stupidchicken.com>
3310         * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
3311         (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
3312         (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
3313         (speedbar-path-line): Define obsolete aliases.
3314         (speedbar-line-directory): Doc fix.
3316         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
3317         (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
3318         instead of speedbar-line-path.
3320 2005-10-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3322         * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
3323         to nil if dropping on a window.  Handle dropping on a minibuffer window
3324         like dropping on a non-window part of Emacs.
3326 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3328         * net/ange-ftp.el: Use with-current-buffer.
3329         (ange-ftp-insert-directory): Do not follow symlinks any more.
3331         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
3332         Remove interactive spec.
3334 2005-10-03  Kim F. Storm  <storm@cua.dk>
3336         * ido.el (ido-mode): Use custom-initialize-set.
3338 2005-10-02  Richard M. Stallman  <rms@gnu.org>
3340         * progmodes/ebnf2ps.el (ebnf-eps-production-list):
3341         Use insert-buffer-substring.
3343         * net/tramp.el: Pacify byte compiler warnings in pacification code.
3344         (tramp-handle-file-local-copy): Use insert-buffer-substring.
3346 2005-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3348         * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
3349         in last change.
3350         (ange-ftp-insert-directory): Fix up the search for the case where
3351         `file' is absolute.
3353 2005-10-02  Romain Francoise  <romain@orebokech.com>
3355         * progmodes/compile.el (compile-goto-error): Delete extra paren.
3357 2005-10-02  Andreas Schwab  <schwab@suse.de>
3359         * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
3360         directory component in the session info.
3362 2005-10-01  Richard M. Stallman  <rms@gnu.org>
3364         * comint.el (comint-redirect-subvert-readonly): Doc fix.
3366         * simple.el (next-error-internal): New function.
3368         * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
3369         (compilation-start): Pass new arg to compilation-buffer-name.
3370         (compile-goto-error): Use next-error-internal.
3372 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
3374         * speedbar.el: Remove RCS tag.
3375         (speedbar-check-read-only): Handle non-existent files.
3377         * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
3379         * info.el (Info-speedbar-hierarchy-buttons)
3380         (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
3382 2005-10-01  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3384         * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
3385         Do not match newline.
3386         (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
3387         (bibtex-summary): Remove unnecessary save-excursion.
3388         (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
3390 2005-10-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3392         * term/mac-win.el: Add charset info for "iso10646-1".
3393         Modify default fontset to use ATSUI-compatible fonts for some charsets
3394         if available.
3396 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
3398         * speedbar.el: Re-apply arch tag.
3399         (speedbar-version): Rename to version 1.0.  Suggested by Eric
3400         M. Ludlam.
3401         Reapply two changes from Emacs CVS' version of speedbar lost
3402         during the merge:
3403         (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
3404         (speedbar-frame-parameters): Improve customize type.
3406 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3408         * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
3409         (ange-ftp-file-directory-p): Fix the symlink case.
3410         (ange-ftp-insert-directory): When listing a single file, get a list of
3411         the parent buffer and extract the relevant line.  Inspired from a patch
3412         by Katsumi Yamaoka <yamaoka@jpl.org>.
3413         (ange-ftp-file-name-sans-versions): Simplify.
3415 2005-09-30  Bill Wohler  <wohler@newt.com>
3417         Move MH-E image files from toolbar and mail directories into
3418         etc/images.
3420         * mail/reply2.*: Move to etc/images/mail/reply*.
3422         * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
3423         * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
3424         etc/images.
3426         * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
3427         * toolbar/reply*: Move to etc/images/mail.
3429         * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
3431 2005-09-30  Eric M. Ludlam <zappo@gnu.org>
3433         * speedbar.el: New version 1.0pre3.
3435         Frame management code (including timer, and mouse click specifics)
3436         moved to dframe.el:
3437         (speedbar-attached-frame): Removed.  Use dframe-attached-frame.
3438         (speedbar-timer): Removed.  Use dframe-timer.
3439         (speedbar-close-frame): Removed.  Use dframe-close-frame.
3440         (speedbar-activity-change-focus-flag): Removed.  Use
3441         dframe-activity-change-focus-flag.
3442         (speedbar-update-speed, speedbar-navigating-speed): Obsolete.  Use
3443         dframe-update-speed.
3445         (speedbar-current-frame): New macro.  Use this instead of the
3446         variable speedbar-frame.
3448         (speedbar-use-images, speedbar-expand-image-button-alist)
3449         (speedbar-insert-image-button-maybe): Moved to sb-image.el.
3451         (speedbar-find-image-on-load-path): Removed.  Replaced by
3452         defezimage in ezimage.el.
3453         (speedbar-expand-image-button-alist): Removed.  Replaced by
3454         ezimage-expand-image-button-alist in ezimage.el.
3456         (speedbar-ignored-directory-regexp)
3457         (speedbar-add-ignored-directory-regexp)
3458         (speedbar-ignored-directory-expressions)
3459         (speedbar-line-directory, speedbar-buffers-line-directory)
3460         (speedbar-directory-line, speedbar-buffers-line-directory):
3461         Renamed, replacing `path' with `directory'.
3463         (speedbar-create-directory, speedbar-expand-line-descendants)
3464         (speedbar-toggle-line-expansion)
3465         (speedbar-contract-line-descendants): New commands.
3467         (speedbar-query-confirmation-method, speedbar-select-frame-method)
3468         (speedbar-use-tool-tips-flag): New options.
3470         (speedbar-check-read-only, speedbar-require-version)
3471         (speedbar-insert-separator, speedbar-buffers-tail-notes)
3472         (speedbar-handle-delete-frame, speedbar-try-completion)
3473         (speedbar-update-localized-contents): New functions.
3475         (speedbar-incompatible-version, speedbar-ro-to-do-point)
3476         (speedbar-object-read-only-indicator): New variables.
3478         (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
3479         New hooks.
3481         (speedbar-separator-face): New face.
3483         (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
3484         (speedbar-ignored-modes): Add fundamental-mode.
3485         (speedbar-directory-unshown-regexp): Add . directories.
3487         (speedbar-key-map): Remove old SPC and DEL page up/down keys.
3488         (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
3489         `]' for full expand/close.
3490         (speedbar-buffers-key-map): Add SPC to toggle node expansion.
3492         (speedbar-check-vc): Support hidden files.
3493         (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
3494         (speedbar-this-file-in-vc): Use vc-state if available.  If VC
3495         state is nil, it is not checked out.
3497         (speedbar-line-text, speedbar-line-token): Support expand buttons
3498         with no text.
3499         (speedbar-refresh): Universal argument acts as power-click.
3500         (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
3501         that buffer to get variable values.
3503         And many other bugfixes.
3505         * dframe.el, ezimage.el, sb-image.el: New files.
3507         * sb-*.xpm: Remove files.  New image files installed into
3508         etc/images/ezimage.
3510 2005-09-30  Kenichi Handa  <handa@m17n.org>
3512         * ps-mule.el (ps-mule-show-warning): If a character is in
3513         ps-print-translation-table, don't treat it as non-printable.
3515 2005-09-30  David Ponce  <david@dponce.com>
3517         * tree-widget.el (tree-widget-themes-load-path): New variable.
3518         (tree-widget-themes-directory): Doc fix.
3519         (tree-widget-image-formats) [Emacs]: Doc fix.
3520         (tree-widget--locate-sub-directory): New function.
3521         (tree-widget-themes-directory): Use it.
3523         * recentf.el (recentf-filename-handlers): Rename from
3524         `recentf-filename-handler'.  Allow a list of functions.
3525         (recentf-menu-items-for-commands): Fix :help strings.
3526         (recentf-apply-filename-handlers): New function.
3527         (recentf-expand-file-name): Use it.
3528         (recentf-cleanup): Remove duplicates too.
3530 2005-09-29  Juri Linkov  <juri@jurta.org>
3532         * faces.el: Rearrange face definitions to be in the same order as
3533         their face descriptions in "(emacs)Standard Faces".
3535         * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
3537         * tooltip.el (tooltip): Add group `basic-faces'.
3539         * buff-menu.el (Buffer-menu-buffer): Remove group
3540         `font-lock-highlighting-faces'.
3542         * progmodes/compile.el (compilation-error, compilation-warning)
3543         (compilation-info, compilation-line-number, compilation-column-number):
3544         Change group from `font-lock-highlighting-faces' to `compilation'.
3546         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
3547         (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
3548         (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
3549         (vhdl-font-lock-reserved-words-face)
3550         (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
3551         `font-lock-highlighting-faces'.
3553         * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
3555 2005-09-28  Kim F. Storm  <storm@cua.dk>
3557         * emulation/cua-base.el: Set CUA move property on additional commands:
3558         up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
3559         forward-sexp, backward-sexp, forward-list, backward-list.
3561 2005-09-28  Romain Francoise  <romain@orebokech.com>
3563         * comint.el (comint-show-output): Really set point at the
3564         beginning of the output when not using `comint-use-prompt-regexp'.
3566 2005-09-27  Jay Belanger  <belanger@truman.edu>
3568         * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
3569         in TeX mode.
3571 2005-09-26  Juanma Barranquero  <lekktu@gmail.com>
3573         * textmodes/org.el (org-table-sum): Fix format string.
3575         * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
3576         Quote face names.
3578 2005-09-26  Romain Francoise  <romain@orebokech.com>
3580         * isearch.el (isearch-forward-regexp): Close doc string.
3582 2005-09-25  Richard M. Stallman  <rms@gnu.org>
3584         * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
3586         * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
3588         * progmodes/compile.el (compilation-error-properties):
3589         When getting the file from the previous error message,
3590         correctly decode the new data format.
3592         * progmodes/cc-cmds.el (c-electric-paren):
3593         Call old-blink-paren only for close-paren.
3595 2005-09-24  Andreas Schwab  <schwab@suse.de>
3597         * term/rxvt.el (rxvt-register-default-colors): Delete redundant
3598         condition.
3600 2005-09-25  Romain Francoise  <romain@orebokech.com>
3602         * dired-aux.el (dired-copy-file-recursive):
3603         * dired.el (dired-delete-file):
3604         * ediff-mult.el (ediff-dir-diff-copy-file):
3605         * ediff-util.el (ediff-test-save-region):
3606         * forms.el (forms-mode):
3607         * ido.el (ido-file-internal, ido-delete-file-at-head):
3608         * log-edit.el (log-edit-done):
3609         * ses.el (ses-yank-resize):
3610         * play/gomoku.el (gomoku-human-plays, gomoku)
3611         (gomoku-human-resigns, gomoku-prompt-for-other-game)
3612         (gomoku-offer-a-draw):
3613         * play/landmark.el (lm-human-resigns, lm):
3614         * net/eudcb-ldap.el (eudc-ldap-check-base):
3615         * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
3616         * progmodes/ebrowse.el (ebrowse-find-pattern):
3617         * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
3618         * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
3619         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
3621         * vc.el (vc-delete-file):
3622         * play/gomoku.el (gomoku-terminate-game, gomoku)
3623         (gomoku-prompt-for-move, gomoku-human-takes-back):
3624         * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
3625         (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
3627 2005-09-24  Dan Nicolaescu  <dann@ics.uci.edu>
3629         * term/rxvt.el (rxvt-register-default-colors): Add support for 255
3630         color rxvt terminals by using the code xterm.el used to use before
3631         2005-04-09 in order to match the colors used by rxvt.
3633 2005-09-24  Emanuele Giaquinta <emanuele.giaquinta@gmail.com>  (tiny change)
3635         * term/rxvt.el (rxvt-register-default-colors): Add support for 88
3636         colors rxvt-unicode terminals by using the same code as xterm.el.
3638 2005-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3640         * textmodes/tex-mode.el (tex-font-lock-append-prop)
3641         (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
3642         new symbol used for the tex-verbatim face.
3644 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
3646         * woman.el (woman-file-name):
3647         * wid-edit.el (widget-file-prompt-value)
3648         (widget-coding-system-prompt-value):
3649         * w32-fns.el (set-w32-system-coding-system):
3650         * vc.el (vc-version-diff, vc-annotate):
3651         * textmodes/reftex-auc.el (reftex-arg-cite)
3652         (reftex-arg-index-tag):
3653         * textmodes/refer.el (refer-get-bib-files):
3654         * textmodes/artist.el (artist-figlet-choose-font):
3655         * terminal.el (terminal-emulator):
3656         * replace.el (occur-read-primary-args):
3657         * rect.el (string-rectangle, string-insert-rectangle):
3658         * ps-print.el (ps-print-preprint):
3659         * progmodes/pascal.el (pascal-goto-defun):
3660         * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
3661         * progmodes/compile.el (compilation-find-file):
3662         * printing.el (pr-interactive-n-up):
3663         * play/animate.el (animate-birthday-present):
3664         * net/rcompile.el (remote-compile):
3665         * man.el (man, Man-goto-section, Man-follow-manual-reference):
3666         * mail/rmailsum.el (rmail-summary-search-backward)
3667         (rmail-summary-search):
3668         * mail/rmailout.el (rmail-output-read-rmail-file-name)
3669         (rmail-output-read-file-name):
3670         * mail/rmail.el (rmail-search, rmail-search-backwards):
3671         * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
3672         * locate.el (locate):
3673         * international/quail.el (quail-show-keyboard-layout):
3674         * international/mule.el (set-buffer-file-coding-system)
3675         (revert-buffer-with-coding-system, set-file-name-coding-system)
3676         (set-terminal-coding-system, set-keyboard-coding-system)
3677         (set-next-selection-coding-system):
3678         * international/mule-diag.el (describe-coding-system)
3679         (describe-font, describe-fontset):
3680         * international/mule-cmds.el (universal-coding-system-argument)
3681         (search-unencodable-char, describe-input-method)
3682         (set-language-environment, describe-language-environment):
3683         * international/codepage.el (codepage-setup):
3684         * international/code-pages.el (codepage-setup):
3685         * info.el (Info-search, Info-follow-reference)
3686         (Info-search-backward):
3687         * emacs-lisp/advice.el (ad-read-advised-function)
3688         (ad-read-advice-class, ad-clear-cache, ad-activate)
3689         (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
3690         (ad-enable-advice, ad-disable-advice, ad-remove-advice)
3691         (ad-read-regexp):
3692         * ediff-util.el (ediff-toggle-regexp-match):
3693         * ediff-ptch.el (ediff-prompt-for-patch-file):
3694         * dired-aux.el (dired-diff):
3695         * diff.el (diff):
3696         * cus-edit.el (custom-variable-prompt):
3697         * calendar/timeclock.el (timeclock-ask-for-project):
3698         * calc/calcalg3.el (calc-get-fit-variables):
3699         * calc/calc-store.el (calc-edit-variable)
3700         (calc-permanent-variable):
3701         * vc-mcvs.el (vc-mcvs-register):
3702         * shadowfile.el (shadow-define-literal-group):
3703         * woman.el (woman-file-name):
3704         * vc.el (vc-version-diff, vc-merge):
3705         * textmodes/reftex-index.el (reftex-index-complete-tag):
3706         * format.el (format-decode-buffer, format-decode-region):
3707         * emulation/viper-cmd.el (viper-read-string-with-history):
3708         * emacs-lisp/debug.el (cancel-debug-on-entry):
3709         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3710         * ediff.el (ediff-merge-revisions)
3711         (ediff-merge-revisions-with-ancestor, ediff-revision):
3712         * completion.el (interactive-completion-string-reader):
3713         * calc/calc-prog.el (calc-user-define-formula):
3714         Follow convention for reading with the minibuffer.
3716 2005-09-24  Steven Huwig  <steven_h@acm.org>  (tiny change)
3718         * progmodes/python.el (python-describe-symbol): Add globals() and
3719         locals() to the arguments of emacs.ehelp.
3721 2005-09-24  Magnus Henoch  <mange@freemail.hu>
3723         * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
3724         New function, code extracted from ispell-valid-dictionary-list.
3725         (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
3726         Call it.
3728 2005-09-24  Eli Zaretskii  <eliz@gnu.org>
3730         * subr.el (version-regexp-alist): Extend valid syntax for version
3731         strings: allow any of the characters -,_,+ to separate the
3732         alpha/beta/rc part from the version part.  Doc fix.
3733         (version-to-list): Doc fix.  Bind case-fold-search to t, as advertised.
3735 2005-09-23  David Reitter  <david.reitter@gmail.com>
3737         * mail/mailclient.el: New file.
3739 2005-09-23  Richard M. Stallman  <rms@gnu.org>
3741         * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
3742         (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
3743         Doc fixes.
3745         * progmodes/cc-mode.el (c-font-lock-init):
3746         Specify font-lock-lines-before.
3748 2005-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3750         * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
3751         whole conflict.
3753 2005-09-23  Carsten Dominik  <dominik@science.uva.nl>
3755         * textmodes/org.el (org-mode-map, orgtbl-mode-map):
3756         Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix.  Make use
3757         of `remap' feature when available.  Additional key bindings for
3758         better tty support.
3759         (org-mode-restart, org-force-self-insert): New commands.
3760         (org-time-stamp-inactive): New command.
3761         (org-remap): New function.
3762         (org-table-auto-blank-field, org-level-color-stars-only): New options.
3763         (org-enable-fixed-width-editor): Move to `org-structure'
3764         customization group.
3765         (org-self-insert-command, orgtbl-self-insert-command): Modify to
3766         blank field after field motion commands.
3768 2005-09-23  Kenichi Handa  <handa@m17n.org>
3770         * international/mule-cmds.el (set-language-environment):
3771         Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
3772         have to call utf-translate-cjk-load-tables.
3774 2005-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3776         * mouse.el (mouse-move-drag-overlay): Fix last change.
3778 2005-09-22  David Ponce  <david@dponce.com>
3780         * tree-widget.el (tree-widget-value-create): Fix previous change.
3782 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
3784         * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
3786 2005-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3788         * mouse.el (mouse-move-drag-overlay): New function.
3789         (mouse-drag-region-1): Use it.
3790         Try to simplify a bit the state handling.  Handle clicks on links
3791         inside intangible areas.
3792         (mouse-save-then-kill): Minor simplification.
3793         (mouse-secondary-overlay): Make it always non-nil instead of
3794         recreating it each time.
3795         (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
3796         (mouse-kill-secondary, mouse-secondary-save-then-kill):
3797         Simplify accordingly.
3799 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
3801         * term/rxvt.el (rxvt-standard-colors): Fix some colors.
3803 2005-09-20  Michael Kifer  <kifer@cs.stonybrook.edu>
3805         * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
3806         (ediff-file-name-sans-prefix): Treat nil as an empty string.
3807         (ediff-fixup-patch-map): Better heuristic for intuiting the file names
3808         to patch.
3810         * ediff-util.el: Use insert-buffer-substring.
3812         * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
3814         * emulation/viper-cmd.el (viper-change-state): Don't move over the
3815         field boundaries in the minibuffer.
3816         (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
3817         (viper-minibuffer-post-command-hook): New hook.
3818         (viper-line): Don't move cursor at bolp.
3820         * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
3822         * emulation/viper-init.el: Add alias to make-variable-buffer-local to
3823         avoid compiler warnings.
3825         * emulation/viper-macs.el (ex-map): Better messages.
3827         * emulation/viper-utils.el (viper-beginning-of-field): New function.
3829         * emulation/viper.el: Replace make-variable-buffer-local with
3830         viper-make-variable-buffer-local everywhere, to avoid warnings.
3832 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3834         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
3835         Delete unused var `old-selected-window'.
3836         (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
3837         (mouse-drag-secondary): Delete unused var `start-frame'.
3839 2005-09-19  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
3841         * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
3843 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3845         * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
3846         Re-indent within 80 columns.  Use inhibit-read-only.
3848 2005-09-19  Romain Francoise  <romain@orebokech.com>
3850         * calendar/diary-lib.el (mark-diary-entries): Revert last change.
3852 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3854         * font-lock.el (font-lock-default-fontify-region): Don't add a line
3855         unconditionally, since the after-change-function already did it.
3857 2005-09-19  Miles Bader  <miles@gnu.org>
3859         * net/newsticker.el: Get rid of CVS keyword.
3861 2005-09-19  Johan Bockg\e,Ae\e(Brd  <bojohan+sf@dd.chalmers.se>
3863         * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
3864         The prompt is formatted later.
3866 2005-09-19  David Ponce  <david@dponce.com>
3868         * tree-widget.el (tree-widget-value-create): Save the converted
3869         tree :node widget.
3871 2005-09-19  Juanma Barranquero  <lekktu@gmail.com>
3873         * progmodes/sh-script.el (sh-blink): Fix spurious reference to
3874         variable `message'.
3876 2005-09-18  Michael Albinus  <michael.albinus@gmx.de>
3878         * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
3879         to cover prompts like "login as:".  Reported by Slawomir Nowaczyk
3880         <slawomir.nowaczyk.847@student.lu.se>.
3882 2005-09-18  Chong Yidong  <cyd@stupidchicken.com>
3884         * image.el (image-load-path): Use symbol `data-directory' instead
3885         of its value, for backward compatibility with packages that bind
3886         it during `find-image'.  Suggested by Katsumi Yamaoka.
3887         (image-search-load-path): Handle symbols whose values are strings.
3889 2005-09-18  Romain Francoise  <romain@orebokech.com>
3891         * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
3892         with-current-buffer form in save-excursion.
3894 2005-09-18  D Goel  <deego@gnufans.org>
3896         * apropos.el (apropos-command): Fix `message' call: first arg
3897         should be a format spec.  In this and all other cases that appear
3898         below and elsewhere in the source code, I made a change only when
3899         two conditions were satisfied: [1] I can think of a possibility
3900         that the arguments would cause an error, for example, the code in
3901         question relies on external variables such as filenames.  [2] I
3902         was sure that the arg to `message' could not have been nil in the code.
3904         * textmodes/tildify.el (tildify-region): Ditto.
3906         * textmodes/reftex-index.el (reftex-index-change-entry)
3907         (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
3908         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
3909         * textmodes/org.el (org-complete, org-deadline, org-schedule)
3910         (org-priority, org-table-sum):
3911         * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
3912         * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
3913         (flyspell-word, flyspell-display-next-corrections):
3914         * textmodes/bibtex.el (bibtex-print-help-message):
3915         * textmodes/artist.el (artist-key-set-point-poly):
3916         * term/mac-win.el (mac-services-insert-text):
3917         * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
3918         (vhdl-hooked-abbrev, vhdl-template-insert-fun)
3919         (vhdl-port-paste-testbench, vhdl-compose-new-component)
3920         (vhdl-compose-configuration):
3921         * progmodes/sh-script.el (sh-blink, sh-show-indent)
3922         (sh-set-indent, sh-learn-line-indent):
3923         * progmodes/ps-mode.el (ps-mode-target-column):
3924         * progmodes/idlwave.el (idlwave-make-tags)
3925         (idlwave-scan-library-catalogs):
3926         * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
3927         * progmodes/gud.el (gud-jdb-analyze-source):
3928         * progmodes/flymake.el (flymake-log):
3929         * progmodes/ebnf2ps.el (ebnf-generate-region):
3930         * progmodes/cmacexp.el (c-macro-expansion):
3931         * progmodes/ada-xref.el (ada-treat-cmd-string):
3932         * progmodes/ada-mode.el (ada-create-case-exception-substring)
3933         (ada-justified-indent-current, ada-batch-reformat):
3934         * play/zone.el (zone):
3935         * play/landmark.el (lm-move):
3936         * play/decipher.el (decipher-show-alphabet):
3937         * net/newsticker.el (newsticker--display-jump)
3938         (newsticker--display-scroll):
3939         * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
3940         (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
3941         * mail/feedmail.el (feedmail-dump-message-to-queue):
3942         * eshell/esh-proc.el (eshell-remove-process-entry):
3943         * emulation/ws-mode.el (ws-last-error):
3944         * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
3945         (viper-record-kbd-macro):
3946         * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
3947         * emacs-lisp/lisp-mnt.el (lm-report-bug):
3948         * emacs-lisp/find-func.el (find-function-noselect):
3949         * calendar/timeclock.el (timeclock-status-string)
3950         (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
3951         (timeclock-when-to-leave-string):
3952         * calendar/icalendar.el (icalendar--convert-ical-to-diary):
3953         * calc/calc-units.el (calc-enter-units-table):
3954         * calc/calc-mode.el (calc-mode-record-mode):
3955         * woman.el (woman-mini-help):
3956         * wdired.el (wdired-change-to-wdired-mode):
3957         * vc.el (vc-retrieve-snapshot):
3958         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
3959         * startup.el (display-startup-echo-area-message):
3960         * simple.el (set-goal-column):
3961         * ses.el (ses-command-hook, ses-recalculate-cell):
3962         * server.el (server-process-filter):
3963         * printing.el (pr-interface-txt-print, pr-interface-printify)
3964         (pr-interface-ps):
3965         * pcvs.el (cvs-help):
3966         * log-edit.el (log-edit, log-edit-mode-help):
3967         * iswitchb.el (iswitchb-possible-new-buffer):
3968         * isearch.el (isearch-edit-string):
3969         * image-mode.el (image-mode, image-minor-mode):
3970         * ibuf-macs.el (define-ibuffer-filter):
3971         * hi-lock.el (hi-lock-find-patterns):
3972         * files.el (toggle-read-only):
3973         * ediff-util.el (ediff-copy-diff)
3974         (ediff-write-merge-buffer-and-maybe-kill):
3975         * echistory.el (Electric-history-undefined):
3976         * dnd.el (dnd-insert-text):
3977         * dired-aux.el (dired-query):
3978         * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
3979         * bookmark.el (bookmark-bmenu-locate):
3980         * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
3981         Fix `message' calls to ensure first arg is a format string.
3982         The change was made only when these two conditions were satisfied:
3983         [1] when there is a possibility that the arguments would cause an error
3984         for example, if the code in question relies on external variables
3985         such as filenames, and
3986         [2] if the arg to `message' could not have been nil in the code.
3988         * pcomplete.el (pcomplete--help): Fix `message' format spec.
3989         Not having a %s would be weird, though not technically wrong.
3991 2005-09-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3993         * term/mac-win.el (mac-add-charset-info): Doc fix.
3995 2005-09-17  Romain Francoise  <romain@orebokech.com>
3997         * shell.el (shell-resync-dirs): Handle echoing processes more
3998         reliably.  Don't insert resync command if `comint-process-echoes'
3999         is non-nil.
4001 2005-09-17  Magnus Henoch  <mange@freemail.hu>
4003         * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
4004         (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
4005         aspell versions >= 0.60.
4006         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
4007         only if ispell-aspell-supports-utf8 is non-nil.
4009 2005-09-17  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
4011         * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
4012         buffer-local value to lisp-indent-function.
4014 2005-09-17  Milan Zamazal  <pdm@zamazal.org>
4016         * progmodes/glasses.el (glasses-make-readable): If
4017         glasses-separator differs from underscore, put appropriate
4018         overlays over underscore characters.
4019         (glasses-convert-to-unreadable): If glasses-separator differs from
4020         underscore, try to convert glasses-separator characters to
4021         underscores.
4023 2005-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4025         * calendar/diary-lib.el (mark-diary-entries): Don't move point.
4026         Use with-syntax-table and dolist.
4028 2005-09-16  Carsten Dominik  <dominik@science.uva.nl>
4030         * textmodes/reftex-auc.el:
4031         * textmodes/reftex-cite.el:
4032         * textmodes/reftex-dcr.el:
4033         * textmodes/reftex-global.el:
4034         * textmodes/reftex-parse.el:
4035         * textmodes/reftex-ref.el:
4036         * textmodes/reftex-sel.el:
4037         * textmodes/reftex-toc.el:
4038         * textmodes/reftex-vars.el:
4039         * textmodes/reftex.el: Small changes to remove compiler warnings.
4041         * textmodes/reftex-index.el: Likewise.
4042         (reftex-query-index-phrase): More efficient use of markers.
4044 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
4046         * image.el (image-load-path): New variable.
4047         (image-search-load-path): New function.
4048         (find-image): Search for images in `image-load-path'.
4050 2005-09-15  Richard M. Stallman  <rms@gnu.org>
4052         * follow.el: Change Maintainer field.
4054 2005-09-15  David Ponce  <david@dponce.com>
4056         * recentf.el (recentf-save-file-modes): New option.
4057         (recentf-save-list): Use it.
4059 2005-09-15  Nick Roberts  <nickrob@snap.net.nz>
4061         * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
4062         (mode-line-mule-info, mode-line-modified): Move bindings from
4063         mouse-3 to mouse-1.
4065 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
4067         * simple.el (sendmail-user-agent-compose): Revert last change.
4069 2005-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4071         * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
4072         Use with-current-buffer.
4073         (ange-ftp-gwp-start): Remove unused var `gw-user'.
4074         (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
4075         (ange-ftp-insert-directory): Remove unused var `short'.
4076         (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
4078         * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
4079         (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
4081         * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
4082         (check-calendar-holidays, diary-list-entries): Autoload.
4083         Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
4084         (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
4086         * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
4087         which mistakenly removed a call to display-buffer.
4089 2005-09-14  Juanma Barranquero  <lekktu@gmail.com>
4091         * obsolete/iso-insert.el: Move to obsolete/ from international/.
4093 2005-09-14  Thien-Thi Nguyen  <ttn@gnu.org>
4095         * progmodes/hideshow.el
4096         (hs-hide-comments-when-hiding-all): Remove autoload cookie.
4097         (hs-allow-nesting): New user var.
4098         (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
4099         (hs-hide-block-at-point): When nesting allowed,
4100         if there is already an overlay in place, delete it.
4101         (hs-safety-is-job-n): Delete func; remove call sites.
4102         (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
4103         (hs-overlay-at): New func.
4104         (hs-already-hidden-p, hs-show-block): Use it.
4105         (hs-hide-all): Don't pre-clean if nesting allowed.
4106         (hs-show-all): Temporarily disallow
4107         nesting around call to `hs-discard-overlays'.
4109 2005-09-14  Chong Yidong  <cyd@stupidchicken.com>
4111         * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
4112         Delete unused local var.
4114 2005-09-13  Juanma Barranquero  <lekktu@gmail.com>
4116         * help-fns.el (describe-categories): "?\ " -> "?\s".
4117         (help-do-arg-highlight): Recognize also ARG-n, as in
4118         `move-to-left-margin' (ARG+n is already recognized).  Simplify.
4120         * international/codepage.el (dos-unsupported-char-glyph):
4121         * net/newsticker.el (tool-bar-map, w3-mode-map)
4122         (w3m-minor-mode-map):
4123         * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
4124         (ent-alist):
4125         * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
4127 2005-09-13  Chong Yidong  <cyd@stupidchicken.com>
4129         * custom.el (custom-push-theme): Handle the case where a symbol is
4130         bound but face properties have not yet been assigned.
4132         * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
4133         Fix behavior if noerase is `t' and there is no mail buffer.
4135         * simple.el (sendmail-user-agent-compose): Use a new mail buffer
4136         if `continue' is nil, rather than signal an error.
4138 2005-09-12  Richard M. Stallman  <rms@gnu.org>
4140         * font-lock.el (font-lock-keywords): Add autoload.
4142         * help-fns.el (describe-variable): Rearrange to put source link
4143         in a predictable place.
4145         * net/newsticker.el: New file.
4147 2005-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4149         * calendar/calendar.el (calendar-for-loop): Add edebug info.
4150         (calendar-basic-setup): Use the new nil arg.
4151         (number-of-diary-entries): Move to diary-lib.el.
4153         * calendar/diary-lib.el: Use with-current-buffer, match-string.
4154         (diary-list-entries): Use with-syntax-table and dolist.
4155         Rename from list-diary-entries.
4156         Use number-of-diary-entries if `number' is nil.
4157         (diary, diary-view-entries): Use this new name and new nil arg value.
4158         (number-of-diary-entries): Move from calendar.el.
4159         (diary-unhide-everything): New function.
4160         (include-other-diary-files, fancy-diary-display)
4161         (diary-show-all-entries, make-diary-entry): Use it.
4162         (diary-mail-entries): Use buffer-string.
4163         (mark-diary-entries): Fix long standing paren typo.
4164         (diary-sexp-entry): Use count-lines.
4165         (make-diary-entry): Avoid `previous-line'.
4166         (diary-mode-map): New var.
4167         (diary-mode): Redraw cal after saving.  Setup header-line.
4168         (fancy-diary-display-mode): Use local-set-key.
4170         * startup.el (command-line): Try calling various terminal-init-foo-bar
4171         functions by stripping hyphenated suffixes from $TERM.
4173         * files.el (normal-mode): Check boundness of font-lock-keywords.
4175 2005-09-12  Richard M. Stallman  <rms@gnu.org>
4177         * progmodes/compile.el: Don't decide a file's directory
4178         until the user actually tries to go there.
4179         (compilation-next-error-function):
4180         Pass compilation-find-file the directory from the file-struct.
4181         (compilation-internal-error-properties): Separate local FILE-STRUCT
4182         from FILE.  Doc the args better.  Rename arg FMT to FMTS.
4183         (compilation-find-file): Arg DIR renamed to DIRECTORY.
4184         Expand it, and if nil, use default-directory.
4185         (compilation-get-file-structure): Don't mix specified directory
4186         with default directory.  Put specified directory into
4187         file-struct.  Don't make the file name absolute.
4189         * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
4190         (compile-command): Add autoload.
4191         (compilation-disable-input): Add autoload.
4193 2005-09-11  Stephen Gildea  <gildea@stop.mail-abuse.org>
4195         * time-stamp.el: Mention variable `time-stamp-pattern' in doc
4196         strings of the variables it can override.
4197         (time-stamp): New (as yet undocumented) time-stamp-format escapes
4198         %Q and %q, for fully-qualified domain name and unqualified host name.
4200 2005-09-11  Kim F. Storm  <storm@cua.dk>
4202         * emacs-lisp/authors.el (authors-aliases): Update list.
4203         (authors-fixed-entries): Update mldrag.el entry.
4205 2005-09-10  Alan Mackenzie  <acm@muc.de>
4207         * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
4208         from the region narrowed to.
4210 2005-09-10  Magnus Henoch  <mange@freemail.hu>
4212         * textmodes/ispell.el (ispell-check-version): Signal an error if
4213         aspell version is less than 0.60.
4215 2005-09-10  Pascal Dupuis  <Pascal.Dupuis@esat.kuleuven.be>  (tiny change)
4217         * progmodes/octave-inf.el (inferior-octave-startup):
4218         Resync current dir at the end.
4220 2005-09-10  Emilio C. Lopes  <eclig@gmx.net>
4222         * woman.el (woman-topic-at-point-default):
4223         Rename to woman-use-topic-at-point-default.
4224         (woman-topic-at-point): Rename to woman-use-topic-at-point.
4225         (woman-file-name): Reflect renames above.  Automatically use the
4226         word at point as topic if woman-use-topic-at-point is non-nil.
4227         Otherwise offer it as default but don't insert it in the
4228         minibuffer.  Also use `test-completion' instead of `assoc' as
4229         suggested by Stefan Monnier.
4231 2005-09-10  Andre Spiegel  <spiegel@gnu.org>
4233         * vc.el (vc-directory, vc-update-change-log): Throw an error on
4234         the attempt to do it over Tramp.  This is not yet supported.
4236 2005-09-10  Eli Zaretskii  <eliz@gnu.org>
4238         * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
4239         (menu-bar-non-minibuffer-window-p): New functions.
4240         ("Split Window", "Save As..."): Use them.
4241         ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
4242         ("Print Buffer", "Truncate Long Lines in this Buffer"):
4243         Use menu-bar-menu-frame-live-and-visible-p.
4244         ("Save Buffer", "Insert File", "Open Directory...")
4245         ("Open File...", "Visit New File..."):
4246         Use menu-bar-non-minibuffer-window-p.
4247         (kill-this-buffer-enabled-p, dired <menu-enable>):
4248         Use menu-bar-non-minibuffer-window-p.
4250 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
4252         * cus-start.el (all): Don't complain about fringe-related
4253         built-ins if fringes are not supported.  Ditto about
4254         selection-related built-ins.  Fix the test for GTK-related built-ins.
4256         * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
4257         ("Postscript Print Buffer", "Print Region", "Save As...")
4258         ("Save", "Insert File...", "Open Directory...")
4259         ("Open File...", "Visit New File..."")
4260         ("Truncate Long Lines in this Buffer"): Don't look at
4261         menu-updating-frame if this display does not support multiple frames.
4263 2005-09-09  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
4265         * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
4267 2005-09-09  Emilio Lopes  <eclig@gmx.net>
4269         * woman.el: Format- and whitespace-related changes.
4271 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
4273         * woman.el: Fix my email address.
4275 2005-09-08  Richard M. Stallman  <rms@gnu.org>
4277         * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
4278         (sh-mode): Locally set skeleton-pair-default-alist.
4280         * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
4282         * progmodes/flymake.el: Require `compile' unconditionally.
4284         * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
4286         * woman.el (woman-file-name): Provide a default, not initial input.
4288         * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
4290         * font-lock.el (font-lock-support-mode): Doc fix.
4292         * descr-text.el (describe-property-list): Handle non-symbol prop names.
4294 2005-09-08  Richard M. Stallman  <rms@gnu.org>
4296         * simple.el (blink-matching-open): Get rid of text props from
4297         the string shown in echo area.  Don't permanently set point.
4298         Some rearrangements.
4300 2005-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
4302         * recentf.el (recentf-filename-handler): Add custom choice
4303         `abbreviate-file-name'.
4305         * msb.el (msb--very-many-menus): Fix typo.
4307         * disp-table.el (standard-display-european): Don't set
4308         enable-multibyte-characters to nil.
4310 2005-09-08  David Ponce  <david@dponce.com>
4312         * recentf.el (recentf-show-file-shortcuts-flag): New option.
4313         (recentf-expand-file-name): Doc fix.
4314         (recentf-dialog-mode-map): Define digit shortcuts.
4315         (recentf--files-with-key): New variable.
4316         (recentf-show-digit-shortcut-filter): New function.
4317         (recentf-open-files-items): New function.
4318         (recentf-open-files): Use it.
4319         (recentf-open-file-with-key): New command.
4321 2005-09-08  Chong Yidong  <cyd@stupidchicken.com>
4323         * buff-menu.el (Buffer-menu-sort-by-column): New function.
4324         Suggested by Kim F. Storm.
4325         (Buffer-menu-sort-button-map): Global keymap for sort buttons.
4326         (Buffer-menu-make-sort-button): Use global keymap.
4328 2005-09-07  Michael Albinus  <michael.albinus@gmx.de>
4330         * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
4331         (Man-getpage-in-background-advice): Remove defadvice; it isn't
4332         necessary any longer with the remapped command.
4333         (Man-bgproc-sentinel-advice): Remove defadvice which counts
4334         formatting time only.
4336         * net/tramp.el (tramp-action-password)
4337         (tramp-multi-action-password): Compile the password prompt from
4338         `method', `user' and `host'.  Sometimes it isn't obvious which
4339         password to enter, for example with remote files offered by
4340         recentf.el, or with multiple steps.  Suggested by Robert Marshall
4341         <robert@chezmarshall.freeserve.co.uk>.
4343 2005-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4345         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4346         Fix regexp for when "s///" is at the beginning of line.
4348 2005-09-07  Jay Belanger  <belanger@truman.edu>
4350         * calc/calc-poly.el (math-expand-term): Multiply out any powers
4351         when in matrix mode.
4353 2005-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4355         * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
4356         non-anonymous functions.
4358 2005-09-06  Chong Yidong  <cyd@stupidchicken.com>
4360         * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
4361         when using a header line.  Otherwise, use mouse-1-click-follows-link.
4363         * mouse.el (mouse-drag-header-line): Do nothing if the header-line
4364         can't be moved; don't signal an error.
4366 2005-09-05  Chong Yidong  <cyd@stupidchicken.com>
4368         * cus-theme.el (custom-theme-write-faces): Save the current face
4369         spec, not the defface spec.
4371         * custom.el (custom-known-themes): Clarify meaning of "standard".
4372         (custom-push-theme): Save old values in the standard theme.
4373         (disable-theme): Correct typo.
4374         (custom-face-theme-value) Deleted unused function.
4375         (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
4377 2005-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4379         * progmodes/compile.el (compilation-goto-locus): Take into account
4380         iconified frames when determining whether the buffer is
4381         already visible.
4382         Don't reset window height if the window already existed.
4384 2005-09-04  Chong Yidong  <cyd@stupidchicken.com>
4386         * custom.el (load-theme): Rename from require-theme.
4387         Add interactive spec.
4388         (enable-theme): Rename from custom-enable-theme.
4389         Add interactive spec.
4390         (disable-theme): Rename from custom-disable-theme.
4391         Add interactive spec.
4392         (custom-make-theme-feature): Doc fix.
4393         (custom-theme-directory): Doc fix.
4394         (provide-theme): Call enable-theme.
4396 2005-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4398         * obsolete/lazy-lock.el (lazy-lock-mode):
4399         * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
4400         font-lock-mode if it's off.  Print a warning instead.
4402         * progmodes/compile.el (compilation-start): Ignore errors if the
4403         process died before we get to send-eof.
4405         * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
4406         Undo last change.  Enclosing the result in quotes broke things on Unix
4407         since tex-send-command passes it through shell-quote-argument.
4408         (tex-send-command): Pass `file' through convert-standard-filename
4409         when possible.
4410         (tex-uptodate-p): Handle the case where TeX hasn't put additional
4411         info in a transcript.
4413 2005-09-02  Dan Nicolaescu  <dann@ics.uci.edu>
4415         * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
4416         fix compilation warning. Reorder the key definitions to group
4417         together keys emitted by the current version of xterm.
4419         * progmodes/vhdl-mode.el (vhdl-highlight-faces)
4420         (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
4421         Reorder predicates to correct min-color usage.
4423 2005-09-01  Chong Yidong  <cyd@stupidchicken.com>
4425         * longlines.el (longlines-mode): Inhibit read-only when encoding.
4426         Kill local variables when longlines-mode is turned off.
4428 2005-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4430         * international/mule-cmds.el (set-locale-environment): Soothe compiler.
4432         * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
4434         * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
4436         * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
4437         (font-lock-lines-before): Change default to being inactive.
4438         (font-lock-default-fontify-region): Obey font-lock-lines-before.
4439         (font-lock-after-change-function): Don't handle f-l-lines-before here.
4441 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
4443         * net/tramp.el (tramp-handle-make-auto-save-file-name):
4444         Deactivate temporarily advice if active (not needed for Emacs 22,
4445         but for backwards compatibility).
4446         (tramp-exists-file-name-handler): Rewrite.  First implementation
4447         was too simple.
4448         (tramp-advice-make-auto-save-file-name):
4449         Call `tramp-handle-make-auto-save-file-name' (again, just for
4450         backwards compatibility).
4452 2005-08-31  Reto Zimmermann  <reto@gnu.org>
4454         * progmodes/vhdl-mode.el
4455         (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
4456         (vhdl-end-p): Fix indentation bug "else" after "-- when".
4457         (vhdl-set-default-project): New function (easier setting of default).
4458         (vhdl-port-copy): Handle extended identifiers for generics.
4459         (vhdl-compiler-alist): Better description for error message regexp.
4460         (vhdl-make): Query for target, use previous as default.
4461         (vhdl-port-copy): Fix port copy for port names starting with "signal".
4462         (vhdl-font-lock-keywords-2): Fix fontification for record
4463         el. assign.
4464         (vhdl-speedbar-make-subpack-line): Add package body link.
4465         (vhdl-generate-makefile-1): Not include itself as dependency.
4466         (vhdl-font-lock-init): Highlight c-preprocessor directives.
4467         (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
4468         (vhdl-get-syntactic-context): Handle c-preprocessor directives.
4469         (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
4470         (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
4471         (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
4472         (vhdl-import-project): Add string argument for `error'.
4473         (vhdl-compose-configuration)
4474         (vhdl-compose-configuration-architecture): Add configuration
4475         declaration generation.
4476         (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
4477         (vhdl-trailer-re): Add "record" keyword (better indentation).
4478         (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
4479         "[^ \t-\"]+".
4480         (vhdl-font-lock-keywords-2): Not highlight formal parameter after '|'.
4481         (vhdl-testbench-entity-file-name)
4482         (vhdl-testbench-architecture-file-name): Allow separate
4483         customization of testbench file names.
4484         (vhdl-beginning-of-block): Handle optional subprogram parameter list.
4485         (vhdl-get-visible-signals): Allow newline within alias declaration.
4486         (vhdl-update-sensitivity-list): Signal read only on certain attributes.
4487         (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
4488         (member-ignore-case): Alias for missing function in XEmacs.
4489         (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
4490         (vhdl-update-sensitivity-list): Ignore case on read signals.
4491         (vhdl-replace-string): Adjust case only for file names.
4492         (vhdl-update-sensitivity-list): Fix search for read signals.
4493         (vhdl-update-sensitivity-list): Exclude formal parameters.
4494         (vhdl-get-visible-signals): Include aliases of signals.
4495         (vhdl-get-visible-signals): Fix signal name searching.
4496         (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
4497         (vhdl-fixup-whitespace-region): Fix for character
4498         literals (e.g. ':').
4500 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
4502         * ansi-color.el (comint-last-output-start):
4503         * bs.el (font-lock-verbose):
4504         * diff-mode.el (add-log-buffer-file-name-function):
4505         * dired-x.el (vm-folder-directory):
4506         * faces.el (help-xref-stack-item):
4507         * files.el (font-lock-keywords):
4508         * find-lisp.el (dired-buffers, dired-subdir-alist):
4509         * ido.el (cua-inhibit-cua-keys):
4510         * log-view.el (cvs-minor-wrap-function):
4511         * outline.el (font-lock-warning-face):
4512         * simple.el (compilation-current-error):
4513         * speedbar.el (ange-ftp-path-format, efs-path-regexp)
4514         (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
4515         * tooltip.el (comint-prompt-regexp):
4516         * w32-fns.el (explicit-shell-file-name):
4517         * term/mac-win.el (mac-charset-info-alist)
4518         (mac-services-selection, mac-system-script-code):
4519         * term/tty-colors.el (msdos-color-values):
4520         * term/w32-win.el (xlfd-regexp-registry-subnum):
4521         * term/x-win.el (x-keysym-table, x-selection-timeout)
4522         (x-session-id, x-session-previous-id):
4523         * textmodes/ispell.el (mail-yank-prefix):
4524         * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
4525         * textmodes/org.el (calc-embedded-close-formula)
4526         (calc-embedded-open-formula)
4527         (font-lock-unfontify-region-function):
4528         * textmodes/reftex-global.el (isearch-next-buffer-function)
4529         (TeX-master):
4530         * textmodes/reftex.el (font-lock-keywords):
4531         * textmodes/tex-mode.el (font-lock-comment-face)
4532         (font-lock-doc-face):
4533         * textmodes/texinfo.el (outline-heading-alist):
4534         Add defvars.
4536         * textmodes/artist.el (x-pointer-crosshair): Add defvar.
4537         (artist-spray-chars, artist-mode-init, artist-replace-string)
4538         (artist-select-erase-char, artist-vap-find-endpoints-horiz)
4539         (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
4540         (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
4542         * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
4543         (conf-align-assignments): "?\ " -> "?\s".
4545         * textmodes/reftex-index.el (TeX-master): Add defvar.
4546         (reftex-index-phrases-marker): Move up defvar.
4548         * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
4549         (reftex-toc-include-labels-indicator)
4550         (reftex-toc-include-index-indicator)
4551         (reftex-toc-max-level-indicator): Move up declarations.
4553         * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
4554         of args to `tramp-run-real-handler', even if it's empty in this case.
4556 2005-08-31  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4558         * dired.el (dired-move-to-filename-regexp): Add date format for
4559         Mac OS X 10.3 in East Asian locales.
4561 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
4563         * files.el (make-auto-save-file-name): Add file name handler call
4564         if applicable.
4566         * net/tramp.el (tramp-file-name-handler-alist)
4567         (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
4568         (tramp-handle-make-auto-save-file-name): Rename from
4569         `tramp-make-auto-save-file-name'.
4570         (tramp-exists-file-name-handler): New defun.
4571         (tramp-advice-make-auto-save-file-name): Make defadvice only when
4572         `make-auto-save-file-name' is not a magic file name operation.
4574 2005-08-30  Richard M. Stallman  <rms@gnu.org>
4576         * files.el (risky-local-variable-p):
4577         Match `-predicates' and `-commands.
4579         * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
4580         (custom-save-all): Visit the file if necessary;
4581         kill the buffer if we created it.
4582         (custom-save-delete): Don't visit file or kill buffer here.
4584 2005-08-30  Carsten Dominik  <dominik@science.uva.nl>
4586         * textmodes/org.el (org-special-keyword): New face.
4587         (org-table-copy-down, org-table-eval-formula)
4588         (org-table-recalculate, org-init-section-numbers):
4589         Use `string-to-number' instead of `string-to-int'.
4590         (org-get-location): Use `insert-buffer-substring' instead of
4591         `insert-buffer'.
4592         (org-modify-diary-entry-string): New function.
4593         (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
4594         (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
4595         (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
4596         active region.
4597         (org-export-as-html): Handle QUOTE keyword.
4598         (org-quote-string): New option.
4599         (org-bookmark-jump-unhide): New function, used for
4600         `bookmark-after-jump-hook'.
4601         (org-diary-default-entry): Apply only when not called through
4602         `org-agenda'.
4604 2005-08-30  Juanma Barranquero  <lekktu@gmail.com>
4606         * net/eudc.el (mode-popup-menu):
4607         * play/handwrite.el (ps-printer-name, ps-lpr-command):
4608         * progmodes/ada-mode.el (compile-auto-highlight)
4609         (skeleton-further-elements):
4610         * progmodes/autoconf.el (font-lock-syntactic-keywords):
4611         * progmodes/cmacexp.el (msdos-shells):
4612         * progmodes/compile.el (font-lock-extra-managed-props)
4613         (font-lock-keywords, font-lock-maximum-size)
4614         (font-lock-support-mode):
4615         * progmodes/grep.el (font-lock-lines-before):
4616         * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
4617         * progmodes/mixal-mode.el (compile-command):
4618         * progmodes/perl-mode.el (font-lock-comment-face)
4619         (font-lock-doc-face, font-lock-string-face):
4620         * progmodes/prolog.el (comint-prompt-regexp):
4621         * progmodes/sh-script.el (font-lock-comment-face)
4622         (font-lock-set-defaults, font-lock-string-face):
4623         * progmodes/sql.el (font-lock-keyword-face)
4624         (font-lock-set-defaults, font-lock-string-face):
4625         * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
4626         (itimer-version, lazy-lock-defer-contextually)
4627         (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
4628         Add defvars.
4630         * progmodes/cperl-mode.el (cperl-electric-lbrace)
4631         (cperl-electric-keyword, cperl-electric-pod)
4632         (cperl-electric-backspace, cperl-forward-re)
4633         (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
4634         (vc-rcs-header, vc-sccs-header): Add defvars.
4636         * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
4637         (font-lock-syntactic-keywords, gud-find-expr-function):
4638         Add defvars.
4640         * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
4641         (gdb-frame-parameters): Declare before use.
4643         * progmodes/gud.el (gdb-active-process, gdb-define-alist)
4644         (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
4645         (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
4646         (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
4648         * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
4649         (idlwave-help-with-source): Use `insert-buffer-substring', not
4650         `insert-buffer'.
4652 2005-08-29  Juri Linkov  <juri@jurta.org>
4654         * outline.el (hide-entry, hide-leaves, outline-toggle-children):
4655         Put outline-back-to-heading function call inside save-excursion.
4657 2005-08-29  Juanma Barranquero  <lekktu@gmail.com>
4659         * man.el (Man-init-defvars, Man-translate-references)
4660         (Man-support-local-filenames, Man-highlight-references):
4661         * progmodes/sql.el (sql-interactive-mode):
4662         * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
4664         * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
4665         (compilation-mode-font-lock-keywords): Add defvars.
4666         (checkdoc-interactive-loop): "?\ " -> "?\s".
4668         * emacs-lisp/lisp-mode.el (font-lock-comment-face)
4669         (font-lock-doc-face, font-lock-string-face)
4670         (font-lock-keywords-case-fold-search): Add defvars.
4671         (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
4673         * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
4674         Don't pass X and Y (they are ignored anyway).
4675         (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
4676         (mouse-delete-window): Make arguments optional.
4678         * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
4679         (caesar-translate-table, minor-modes, news-buffer-save)
4680         (news-group-name, news-minor-modes): Add defvars.
4682         * emacs-lisp/lselect.el (mouse-highlight-priority)
4683         (x-lost-selection-functions, zmacs-regions):
4684         * emacs-lisp/pp.el (font-lock-verbose):
4685         * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
4686         * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
4687         (ses-mode-map):
4688         * emacs-lisp/tcover-unsafep.el (safe-functions):
4689         * international/mule-cmds.el (mac-system-coding-system)
4690         (mac-system-locale):
4691         * language/ethio-util.el (rmail-current-message)
4692         (rmail-message-vector):
4693         * language/thai-util.el (thai-auto-composition-mode):
4694         * mail/metamail.el (rmail-current-message, rmail-message-vector):
4695         * mail/mspools.el (rmail-inbox-list, vm-crash-box)
4696         (vm-folder-directory, vm-init-file, vm-init-file-loaded)
4697         (vm-primary-inbox, vm-spool-files):
4698         * mail/rmail.el (deleted-head, font-lock-fontified)
4699         (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
4700         (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
4701         (total-messages):
4702         * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
4703         (rmail-summary-mode-map):
4704         * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
4705         (rmail-last-label, rmail-last-multi-labels)
4706         (rmail-summary-vector, rmail-total-messages):
4707         * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
4708         * mail/rmailsum.el (msgnum):
4709         * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
4710         (rmail-current-message):
4711         * obsolete/fast-lock.el (font-lock-face-list):
4712         * obsolete/rnewspost.el (mail-reply-buffer):
4713         * obsolete/scribe.el (compile-command):
4714         * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
4716 2005-08-28  John Paul Wallington  <jpw@gnu.org>
4718         * ibuf-ext.el (ibuffer-auto-update-changed):
4719         Use `frame-or-buffer-changed-p' to check whether we need to update.
4720         (ibuffer-auto-mode): Don't advise `get-buffer-create' and
4721         `kill-buffer'.  Initialise `ibuffer-auto-buffers-changed'
4722         as a `frame-or-buffer-changed-p' state vector instead.
4724 2005-08-27  Romain Francoise  <romain@orebokech.com>
4726         * textmodes/makeinfo.el (makeinfo-compile):
4727         Use `compilation-start'.  Set `next-error-function' according to
4728         `disable-errors'.
4729         (makeinfo-next-error): New function.
4730         (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
4731         (makeinfo-buffer): Likewise.
4733         * progmodes/compile.el (compilation-start): Add autoload cookie.
4735         * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
4736         * textmodes/sgml-mode.el: Likewise.
4737         * progmodes/python.el: Likewise.
4739 2005-08-27  Eli Zaretskii  <eliz@gnu.org>
4741         * simple.el (blink-matching-paren-distance): Document the meaning
4742         of nil value, and allow to customize to nil.
4744         * eshell/esh-ext.el (eshell-windows-shell-file): Look for
4745         command.com, not command.exe.
4747 2005-08-26  John Wiegley  <johnw@newartisans.com>
4749         * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
4750         code around a bit so that an extraneous nil argument is not added
4751         to a command when no args are given.
4753         * eshell/esh-arg.el (eshell-parse-double-quote): If a
4754         double-quoted argument resolves to nil, return it as an empty
4755         string rather than as nil.  This made it impossible to pass "" to
4756         a shell script as a null string argument.
4758 2005-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4760         * outline.el (outline-invent-heading): New fun.
4761         (outline-promote, outline-demote): Use it.
4762         (outline-move-subtree-down): Remove unused vars `re' and `txt'.
4763         (outline-end-of-subtree): Remove unused var `opoint'.
4765 2005-08-26  David Reitter  <david.reitter@gmail.com>
4767         * menu-bar.el (truncate-lines, write-file, print-buffer)
4768         (ps-print-buffer-faces, ps-print-buffer, split-window):
4769         Disable menu items when the frame they refer to is invisible, or when
4770         they refer to a buffer and the minibuffer is selected.
4772 2005-08-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
4774         * progmodes/flymake.el (flymake-highlight-err-lines):
4775         Use save-excursion around flymake-highlight-line to preserve point.
4777 2005-08-26  Eli Zaretskii  <eliz@gnu.org>
4779         * progmodes/octave-mod.el: Change Author and Maintainer address.
4780         (octave-maintainer-address): Change Kurt's email address.
4781         * progmodes/octave-inf.el: Change Author and Maintainer address.
4782         * progmodes/octave-hlp.el: Change Author and Maintainer address.
4784 2005-08-26  Kim F. Storm  <storm@cua.dk>
4786         * subr.el (version-list-<, version-list-<=, version-list-=):
4787         Renamed from integer-list-*.
4788         (version-list-not-zero): Likewise.  Fix while loop.
4789         (version=): Use version-list-= instead of string-equal.
4791 2005-08-26  Richard M. Stallman  <rms@gnu.org>
4793         * outline.el (outline-promote): Try shortening the heading.
4794         As last resort, read the heading to use.
4795         (outline-demote): As last resort, read the heading to use.
4797 2005-08-26  Romain Francoise  <romain@orebokech.com>
4799         * progmodes/compile.el (compilation-start): Doc fix.
4801         * progmodes/antlr-mode.el (antlr-default): Fix defface form.
4802         (antlr-font-lock-additional-keywords): Fix reference to
4803         `antlr-font-lock-literal-regexp' erroneously changed during the
4804         mass face rename.
4805         (antlr-run-tool): Use `compilation-start'.
4807         * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
4808         instead of the obsolete `compile-internal'.
4810 2005-08-26  Juanma Barranquero  <lekktu@gmail.com>
4812         * calendar/cal-bahai.el (date, displayed-month, displayed-year)
4813         (number, original-date):
4814         * calendar/cal-china.el (date):
4815         * calendar/cal-coptic.el (date):
4816         * calendar/cal-french.el (date):
4817         * calendar/cal-hebrew.el (date, entry, number, original-date):
4818         * calendar/cal-islam.el (date, number, original-date):
4819         * calendar/cal-iso.el (date):
4820         * calendar/cal-julian.el (date):
4821         * calendar/cal-mayan.el (date):
4822         * calendar/cal-menu.el (date, event):
4823         * calendar/cal-persia.el (date):
4824         * calendar/lunar.el (date):
4825         * calendar/solar.el (date): Add defvars.
4827         * emerge.el:
4828         * ibuffer.el:
4829         * info-xref.el:
4830         * obsolete/bg-mouse.el:
4831         * obsolete/sun-curs.el:
4832         * obsolete/swedish.el: Move the `defvar's to the top level.
4834         * smerge-mode.el (smerge-refined-change): Add :group.
4836 2005-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4838         * smerge-mode.el (smerge-remove-props): Make the args non-optional.
4839         (smerge-keep-n): Remove props.
4840         (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
4841         (smerge-keep-current, smerge-kill-current): Don't remove props anymore
4842         now that it's done in smerge-keep-n.
4843         (smerge-refined-change): New face.
4844         (smerge-refine-chopup-region, smerge-refine-highlight-change)
4845         (smerge-refine): New funs.
4846         (smerge-basic-map): Bind smerge-refine.
4848 2005-08-25  Juri Linkov  <juri@jurta.org>
4850         * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
4851         compilation-process-setup-function and compilation-disable-input
4852         in grep-mode instead of let-bindings in grep.
4854         * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
4855         Delete "Automatic File De/compression" (auto-compression-mode).
4857 2005-08-25  Juanma Barranquero  <lekktu@gmail.com>
4859         * obsolete/bg-mouse.el: Move to obsolete/ from term/.
4860         Silence warning about non-existent variable.
4862 2005-08-25  Richard M. Stallman  <rms@gnu.org>
4864         * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
4865         Rename "Describe Key" to "Describe Key or Mouse Operation".
4867         * mail/mailalias.el (build-mail-aliases): Delete comments
4868         from the contents before processing them.
4870         * isearch.el (isearch-edit-string): Erase the Search prompt
4871         if user enters an empty string and there is no default.
4873         * comint.el (comint-file-name-prefix): Add autoload.
4875 2005-08-25  Joe Corneli  <jcorneli@math.utexas.edu>
4877         * subr.el (play-sound): Rearrange to avoid warning.
4879 2005-08-25  Carsten Dominik  <dominik@science.uva.nl>
4881         * calendar/diary-lib.el (diary-modify-entry-list-string-function):
4882         New hook.
4883         (add-to-diary-list): Call `diary-modify-entry-list-string-function'
4885 2005-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4887         * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
4889         * custom.el (custom-theme-set-variables): Sort minor modes last.
4891 2005-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4893         * subr.el (version-separator, version-regexp-alist): New vars used by
4894         version comparison funs.
4895         (integer-list-<, integer-list-=, integer-list-<=)
4896         (integer-list-not-zero): New funs for integer list comparison.
4897         (version-to-list, version=, version<, version<=): New funs for version
4898         comparison.
4900 2005-08-24  Juanma Barranquero  <lekktu@gmail.com>
4902         * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
4903         (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
4904         time to silence the byte-compiler.
4906         * ibuffer.el (ibuffer-compile-make-eliding-form)
4907         (ibuffer-check-formats): Use `with-no-warnings' to hide references
4908         to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
4909         so it's silly to get warnings for it).
4910         (ibuffer-auto-mode, ibuffer-cached-filter-formats)
4911         (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
4912         (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
4913         (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
4914         (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
4915         (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
4916         Defvar at compile time.
4917         (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
4918         (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
4919         Declare them before use.
4921         * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
4922         (info-xref-good, info-xref-bad): Defvar at compile time.
4924         * obsolete/mlsupport.el (filter-region, execute-monitor-command):
4925         Use `let*' instead of `let'.
4927         * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
4928         (*mouse-y*, menu, char): Defvar at compile time.
4929         (sc::menu): Declare it before use.
4930         (sc::pack-one-line): Use `let', not `let*'.
4932         * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
4933         (mail-send-hook): Defvar at compile time.
4935         * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
4936         Defvar at compile time.
4938         * term/sun-mouse.el (current-global-mousemap)
4939         (current-local-mousemap): Declare them before use.
4941 2005-08-24  Carsten Dominik  <dominik@science.uva.nl>
4943         * bookmark.el (bookmark-after-jump-hook): New hook.
4944         (bookmark-jump): Run `bookmark-after-jump-hook'.
4946 2005-08-23  Juri Linkov  <juri@jurta.org>
4948         * faces.el (minibuffer-prompt): Doc fix.
4950 2005-08-23  Juanma Barranquero  <lekktu@gmail.com>
4952         * progmodes/xscheme.el: Trivial changes to silence warnings.
4953         (xscheme-previous-mode, xscheme-previous-process-state):
4954         Add defvars.
4955         (xscheme-last-input-end, xscheme-process-command-line)
4956         (xscheme-process-name, xscheme-buffer-name)
4957         (xscheme-expressions-ring-max, xscheme-expressions-ring)
4958         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
4959         (xscheme-control-g-synchronization-p)
4960         (xscheme-control-g-disabled-p, xscheme-string-receiver)
4961         (default-xscheme-runlight, xscheme-runlight)
4962         (xscheme-runlight-string, xscheme-process-filter-state)
4963         (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
4964         Move to beginning of file.
4965         (scheme-interaction-mode-commands-alist)
4966         (scheme-interaction-mode-map, scheme-debugger-mode-map):
4967         Declare them before use.  Note: the initialization code for the variables
4968         has not been moved because it uses functions that reference the variables.
4969         (xscheme-control-g-message-string, xscheme-process-filter-alist)
4970         (xscheme-prompt-for-expression-map): Declare them before use.
4971         (scheme-debugger-mode-commands): "?\ " -> "?\s".
4973 2005-08-23  Ed Swarthout  <ed.swarthout@gmail.com>  (tiny change)
4975         * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
4977 2005-08-22  Juri Linkov  <juri@jurta.org>
4979         * faces.el (set-face-underline): Delete this duplicate function
4980         and make an obsolete alias to set-face-underline-p.
4981         (set-face-underline-p): Use docstring of set-face-underline.
4982         (describe-face): Create hyperlink to parent face.
4984         * info.el (Info-insert-dir): Use save-excursion around
4985         insert-buffer-substring.
4986         (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
4987         (Info-escape-percent): Delete function.
4988         (Info-fontify-node): Replace Info-escape-percent by
4989         replace-regexp-in-string with REP arg set to lambda that
4990         duplicates `%' and preserves text properties.
4992         * progmodes/compile.el (compilation-disable-input): Doc fix.
4993         (define-compilation-mode): Doc fix and refill.
4994         (kill-compilation): Use `mode-name' in the error message.
4995         (compilation-find-file): Use `compilation-error' in the
4996         read-file-name's prompt.
4998 2005-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5000         * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
5001         (smerge-auto-leave): Make undo re-enable the mode.
5002         (debug-ignored-errors): Add the user-error of impossible resolution.
5003         (smerge-resolve): Move things around a bit, in preparation for later.
5004         (smerge-diff): Don't fail if the buffer has no associated file.
5005         (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
5006         (smerge-conflict-overlay): New function.
5007         (smerge-match-conflict): Don't add text properties here.
5008         (smerge-find-conflict): Instead, add an overlay here.
5009         Also check for the case where we're inside a conflict already, so as to
5010         obviate the need for font-lock-multiline, which is unbearably slow with
5011         large conflicts and ciomplex font-lock patterns.
5012         (smerge-remove-props): Remove overlay rather than text-properties.
5013         (smerge-mode): Don't set font-lock-multiline.
5014         Remove overlays when turned off.
5016 2005-08-21  Kim F. Storm  <storm@cua.dk>
5018         * ido.el (ido-ignore-item-p): Use save-match-data.
5019         Bind case-fold-search to ido-case-fold locally.
5021 2005-08-20  Richard M. Stallman  <rms@gnu.org>
5023         * files.el (normal-mode): If font lock is on, turn it off and on.
5025         * subr.el (replace-regexp-in-string): Doc fix.
5027         * startup.el (command-line-1): Don't suppress startup screen
5028         due to existing processes.
5030         * progmodes/grep.el (grep): Bind compilation-disable-input to t.
5032         * progmodes/compile.el (compilation-disable-input): Default to nil.
5034 2005-08-20  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
5036         * progmodes/compile.el (compilation-disable-input): New defcustom.
5037         (compilation-start): If compilation-disable-input is non-nil, send
5038         EOF to the compilation process.
5040 2005-08-20  Eli Zaretskii  <eliz@gnu.org>
5042         * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
5043         Run the argument of tex-shell-cd-command through
5044         convert-standard-filename, to get the correct style of slashes on
5045         Windows, and enclose the result in quotes, in case the file name
5046         includes whitespace or other special characters.
5048 2005-08-19  Andreas Schwab  <schwab@suse.de>
5050         * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
5051         process.
5053 2005-08-18  Luc Teirlinck  <teirllm@auburn.edu>
5055         * cus-start.el (minibuffer-prompt-properties): Correct typo.
5057 2005-08-18  Kim F. Storm  <storm@cua.dk>
5059         * scroll-lock.el: Fix errors due to incorrect line wrapping.
5061 2005-08-18  Richard M. Stallman  <rms@gnu.org>
5063         * scroll-lock.el: New file.
5065 2005-08-18  Thien-Thi Nguyen  <ttn@gnu.org>
5067         * dired.el (dired-move-to-end-of-filename):
5068         Handle fifo as rendered by "ls -lF": Don't include trailing "|".
5070 2005-08-18  Kim F. Storm  <storm@cua.dk>
5072         * ido.el (ido-everywhere): Fix defcustom :set function to disable
5073         rather than toggle mode when custom value is nil.
5074         (ido-everywhere): Fix defun doc string.
5076 2005-08-17  Richard M. Stallman  <rms@gnu.org>
5078         * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
5079         as tag instead of "Inviolable".
5081 2005-08-17  Kim F. Storm  <storm@cua.dk>
5083         * windmove.el (windmove-coordinates-of-position): Remove.
5084         (windmove-coordinates-of-window-position): Remove.
5085         (windmove-reference-loc): Use posn-at-point instead.
5087         * subr.el (insert-for-yank-1): Doc fix.
5089         * ido.el (ido-enter-matching-directory): Rename from
5090         ido-enter-single-matching-directory.  Change 'slash choice to
5091         'only.  Add 'first choice.
5092         (ido-exhibit): Adapt to above changes.
5094 2005-08-16  Luc Teirlinck  <teirllm@auburn.edu>
5096         * Makefile.in: Expand comment about building loaddefs.el.
5098 2005-08-16  Nick Roberts  <nickrob@snap.net.nz>
5100         * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
5101         Comment use of defadvice.
5103         * progmodes/gud.el (gud-jump): Rework for gdb-ui.
5105 2005-08-15  Dan Nicolaescu  <dann@ics.uci.edu>
5107         * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
5108         * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
5109         * progmodes/gdb-ui.el, progmodes/idlw-help.el,
5110         * progmodes/idlw-shell.el, progmodes/ld-script.el,
5111         * progmodes/which-func.el, ruler-mode.el, strokes.el,
5112         * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
5113         for backward compatibility for faces that did not appear in the
5114         previous Emacs release.
5116         * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
5118 2005-08-15  Kim F. Storm  <storm@cua.dk>
5120         * emulation/cua-base.el (cua-delete-region): Return t if
5121         deleted region was non-empty.
5122         (cua-replace-region): Inhibit overwrite-mode for
5123         self-insert-command if replaced region was non-empty.
5124         (cua--explicit-region-start, cua--status-string): Make them
5125         buffer-local at top-level...
5126         (cua-mode): ...rather than when mode is enabled.
5128 2005-08-15  Thien-Thi Nguyen  <ttn@gnu.org>
5130         * progmodes/vhdl-mode.el (vhdl-emacs-21):
5131         Set t for Emacs 21, 22, and so on.
5133 2005-08-15  David Ponce  <david@dponce.com>
5135         * tree-widget.el: Update Commentary header.
5136         (tree-widget-theme): Doc fix.
5137         (tree-widget-space-width): New option.
5138         (tree-widget-image-properties): Look up in the default theme too.
5139         (tree-widget--cursors): Only for images with arrow pointer shape.
5140         (tree-widget-lookup-image): Pointer shape is hand by default.
5141         (tree-widget-icon): Rename generic icon widget from
5142         `tree-widget-control'.
5143         (tree-widget-*-icon): Rename from `tree-widget-*-control' and
5144         derive from `tree-widget-icon'.
5145         (tree-widget-handle): Improve default look and feel of the text
5146         representation.
5147         (tree-widget): Rename :*-control properties to :*-icon properties.
5148         Add :action and :help-echo properties.
5149         (tree-widget-after-toggle-functions): Move.
5150         (tree-widget-close-node, tree-widget-open-node): Remove.
5151         (tree-widget-before-create-icon-functions): New hook.
5152         (tree-widget-value-create): Update to allow customization of icons
5153         and nodes at run-time via that new hook.
5154         (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
5155         (tree-widget-icon-action, tree-widget-icon-help-echo)
5156         (tree-widget-action, tree-widget-help-echo): New functions.
5158 2005-08-15  Kim F. Storm  <storm@cua.dk>
5160         * ido.el (ido-buffer-internal): Use with-no-warnings.
5161         (ido-make-merged-file-list): Use while-no-input.
5163 2005-08-15  Richard M. Stallman  <rms@gnu.org>
5165         * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
5166         (flyspell-large-region): Fix doc and custom type.
5168 2005-08-14  Richard M. Stallman  <rms@gnu.org>
5170         * files.el (interpreter-mode-alist): Doc fix.
5172         * mail/rmail.el (rmail-nonignored-headers): New variable.
5173         (rmail-clear-headers): Use it.
5174         (rmail-reply): Better handling of mail-followup-to header.
5176         * progmodes/sh-script.el (sh-font-lock-keywords-var):
5177         Rename variable from sh-font-lock-keywords.  In the `shell' entry,
5178         don't try to refer to executable-font-lock-keywords.
5179         (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
5180         (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
5181         (sh-font-lock-keywords): Append executable-font-lock-keywords here.
5182         (sh-mode): Set comment-start-skip, local-abbrev-table,
5183         imenu-case-fold-search.
5184         (sh-set-shell): Don't set them here.
5185         (sh-feature): Simplify.  Get rid of the eval-a-variable feature.
5186         Don't cache the results in the original alist; don't ever modify
5187         that alist.
5189         * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
5191         * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
5192         empty.
5194 2005-08-15  Andreas Schwab  <schwab@suse.de>
5196         * desktop.el: Put autoload cookie at risky-local-variable declarations.
5198         * dired.el, info.el, mail/rmail.el: Revert last change.
5200 2005-08-14  Thien-Thi Nguyen  <ttn@gnu.org>
5202         * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
5203         modification in `eval-after-load' form.
5204         * info.el: Likewise.
5205         * mail/rmail.el: Likewise.
5207 2005-08-14  Juri Linkov  <juri@jurta.org>
5209         * progmodes/compile.el (compilation-mode-font-lock-keywords):
5210         Remove highlighting of "Compilation started".  Highlight only
5211         the word "finished" in "Compilation finished".  Add highlighting
5212         of "interrupt", "killed", "terminated" and the exit code.
5213         (compilation-start): Add newline after header.  Use exactly the
5214         same time stamp format as the finishing message.
5215         (compilation-mode-map): Add ellipsis to "Search Files (grep)".
5217         * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
5218         (grep-mode-font-lock-keywords): Don't highlight "Grep started".
5219         Add highlighting of "interrupt", "killed", "terminated".
5221         * delsel.el (delete-selection-pre-hook): If overwrite-mode is
5222         enabled and the current command is self-insert-command, call it
5223         explicitly with overwrite-mode bound to nil, to not allow it
5224         to delete the character after the selected region.
5226 2005-08-12  Matt Hodges  <MPHodges@member.fsf.org>
5228         * emacs-lisp/eldoc.el: Add move-beginning-of-line,
5229         move-end-of-line, end-of-line, and beginning-of-line to the list
5230         of commands after which the echo area is updated.
5232 2005-08-12  Eli Zaretskii  <eliz@gnu.org>
5234         * cus-edit.el (custom-save-all, custom-save-delete):
5235         Bind recentf-exclude to exclude custom-file.
5237 2005-08-12  Ehud Karni  <ehud@unix.mvs.co.il>
5239         * mail/rmailsum.el (rmail-summary-end-of-message): New command
5240         to go to the bottom of the mail message.  Added to
5241         `rmail-summary-mode-map' with key "/".
5242         (rmail-summary-show-message): New (internal) function for use by
5243         both `rmail-summary-beginning/end-of-message'.
5244         (rmail-summary-beginning-of-message): Change to use
5245         rmail-summary-show-message.
5247         * mail/rmail.el (rmail-end-of-message): New command to go to the
5248         end of the current message.  Added to `rmail-mode-map' with key "/".
5249         (rmail-beginning-of-message): Fix to work as documented.
5250         (rmail-mode): Change documentation.
5252         * progmodes/compile.el (compilation-start): Add the line
5253         "Compilation started" with compilation start time.
5254         (compilation-mode-font-lock-keywords): Add `started' to keywords.
5256 2005-08-11  Luc Teirlinck  <teirllm@auburn.edu>
5258         * menu-bar.el (menu-bar-options-menu): Standardize capitalization
5259         of menu items.
5261 2005-08-11  Richard M. Stallman  <rms@gnu.org>
5263         * simple.el (pop-global-mark): Reverse test of widen-automatically.
5265         * battery.el (battery-status-function): Don't use ignore-errors.
5267 2005-08-11  Lute Kamstra  <lute@gnu.org>
5269         * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
5270         define-obsolete-variable-alias.
5272 2005-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5274         * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
5275         (ange-ftp-send-cmd): Revert last change, and expand
5276         the comment explaining the problem.
5278 2005-08-10  Luc Teirlinck  <teirllm@auburn.edu>
5280         * ldefs-boot.el: Update.
5282         * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
5283         item to "Time, Load and Mail".  Change help echo text.
5285         * time.el (display-time-use-mail-icon, display-time-format)
5286         (display-time-string-forms): Shorten first line of docstrings.
5288 2005-08-10  Lars Hansen  <larsh@soem.dk>
5290         * desktop.el (desktop-buffer-mode-handlers):
5291         Make non-customizable. Add autoload cookie.  Change initial value to
5292         nil; add elements in respective modules instead.  Fix doc string.
5293         (desktop-load-file): New function.
5294         (desktop-minor-mode-handlers): New autoloaded variable.
5295         (desktop-create-buffer): Call minor mode handlers.
5296         Use desktop-load-file to load major and minor mode modules prior to
5297         checking for a handler.
5298         (desktop-save): Don't add nil to desktop-minor-modes for minor
5299         modes with nil function in desktop-minor-mode-table.  Don't delete
5300         desktop file before rewriting it.
5301         (desktop-locals-to-save): Add autoload cookie.  Don't make
5302         automatically buffer-local.  Add variables column-number-mode,
5303         size-indication-mode, indent-tabs-mode,
5304         indicate-buffer-boundaries, indicate-empty-lines and
5305         show-trailing-whitespace.
5306         (desktop-clear): Allow desktop-clear-preserve-buffers to contain
5307         regexps. Don't use desktop-clear-preserve-buffers-regexp.
5308         (desktop-clear-preserve-buffers-regexp): Delete.
5309         (desktop-clear-preserve-buffers): Update initial value and docstring.
5310         (desktop-save-buffer): Fix doc string.
5312         * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
5313         (hilit-chg-desktop-restore): New function.
5314         (highlight-changes-mode): Add highlight-changes-mode to
5315         desktop-locals-to-save.
5317         * dired.el: Add handler to desktop-buffer-mode-handlers.
5318         (dired-restore-desktop-buffer): Remove autoload cookie.
5319         (dired-mode): Add autoload cookie.
5321         * info.el: Add handler to desktop-buffer-mode-handlers.
5322         (Info-restore-desktop-buffer): Remove autoload cookie.
5323         (Info-mode): Add autoload cookie.
5325         * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
5326         (mh-restore-desktop-buffer): Remove autoload cookie.
5327         (mh-folder-mode): Add autoload cookie.
5329         * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
5330         (rmail-restore-desktop-buffer): Remove autoload cookie.
5332 2005-08-11  Masatake YAMATO  <jet@gyve.org>
5334         * hexl.el (hexl-address-region):
5335         (hexl-ascii-region, hexl-font-lock-keywords):
5336         (hexl-highlight-line-range): Use the term "region"
5337         instead of "area" for consistency with the other symbols
5338         defined in hexl.el.
5340 2005-08-09  Luc Teirlinck  <teirllm@auburn.edu>
5342         * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
5343         correct group: it is set with `menu-bar-make-mm-toggle' (pointed
5344         out by Juri Linkov).  Add `display-battery-mode'.
5346 2005-08-09  Juri Linkov  <juri@jurta.org>
5348         * progmodes/compile.el (compilation-mode-font-lock-keywords):
5349         Remove `-text' from face variable names.
5350         (compilation-error-file-name, compilation-warning-file-name)
5351         (compilation-info-file-name): Delete faces.
5352         (compilation-line-number, compilation-column-number):
5353         Remove face underlining.
5354         (compilation-message-face): Set to `underline' value by default.
5355         (compilation-error-face, compilation-warning-face)
5356         (compilation-info-face): Remove `-file-name' from face names.
5357         (compilation-error-text-face, compilation-warning-text-face)
5358         (compilation-info-text-face): Delete face variables.
5359         (compilation-text-face): Delete function.
5361         * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
5362         (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
5363         (grep-error-face): Set to `compilation-error' instead of
5364         `compilation-error-face' (which is redefined to `grep-hit-face' in
5365         grep buffers).
5366         (grep-mode-font-lock-keywords): Remove `-text' from face variable
5367         names.  Use `grep-error-face' instead of `compilation-error-text-face'.
5369         * dired-aux.el (dired-do-query-replace-regexp):
5370         Use `query-replace-read-args'.
5372         * replace.el (query-replace-read-from, query-replace-read-to)
5373         (query-replace-read-args): Rename arg `string' to `prompt'.
5375         * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
5377 2005-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
5379         * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
5380         uploading files.
5381         (ange-ftp-canonize-filename): Handle file names beginning with ~
5382         correctly.
5384 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
5386         * textmodes/fill.el (canonically-space-region)
5387         (fill-context-prefix, fill-french-nobreak-p)
5388         (fill-delete-newlines, fill-comment-paragraph)
5389         (justify-current-line): "?\ " -> "?\s".
5391 2005-08-09  Ben North  <ben@redfrontdoor.org>  (tiny change)
5393         * textmodes/fill.el (fill-nonuniform-paragraphs):
5394         Improve argument/docstring consistency.
5396 2005-08-09  Richard M. Stallman  <rms@gnu.org>
5398         * textmodes/ispell.el (ispell-word): More fboundp checks.
5400         * files.el (find-file-noselect): Don't call set-buffer-major-mode.
5401         (find-file-noselect-1): Call it here, only if RAWFILE.
5402         (normal-mode): Always set some major mode.
5403         (save-some-buffers-action-alist): Change some explanation strings.
5404         (file-name-non-special): In the `quote' method, use unwind-protect.
5406 2005-08-09  Magnus Henoch  <mange@freemail.hu>
5408         * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
5409         (ispell-have-aspell-dictionaries): New variable.
5410         (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
5411         (ispell-get-aspell-config-value): New function.
5412         (ispell-aspell-find-dictionary): New function.
5413         (ispell-aspell-add-aliases): New function.
5414         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
5415         appropriate.  Don't look for ispell dictionaries if we use aspell.
5416         (ispell-menu-map): Don't build a submenu of dictionaries.
5418 2005-08-09  Richard M. Stallman  <rms@gnu.org>
5420         * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
5421         (sql-read-passwd): Use read-passwd.
5423         * progmodes/idlw-toolbar.el (idlwave-toolbar)
5424         (idlwave-toolbar-is-possible): Add defvars.
5426         * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
5427         Avoid warnings.
5429         * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
5430         (idlwave-system-class-info, idlwave-executive-commands-alist):
5431         Use defvar.
5433         * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
5435         * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
5436         Avoid warnings.
5438         * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
5439         and content-type: headers.
5441         * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
5443         * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
5444         and rename some of them to be more self-explanatory.
5446         * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
5448         * startup.el (command-line-1): Implement -scriptload.
5450         * replace.el (occur-engine): Initial *Occur* output not undoable.
5452         * menu-bar.el (menu-bar-file-menu): Rename some menu items
5453         and improve help strings.
5455         * isearch.el (isearch-repeat): When changing direction,
5456         mark search successful.
5458         * ediff-init.el: Use (featurep 'xemacs).
5460         * comint.el (send-invisible): Identify buffer, if not selected.
5462         * align.el: Delete autoload for c-guess-basic-syntax.
5464 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
5466         * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
5467         Improve argument/docstring consistency.  Doc fixes.
5468         (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
5469         (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
5470         (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
5471         (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
5472         (r2bv-organization, r2bv-pages, r2bv-primary-author)
5473         (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
5474         (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
5475         Defvar at compile time.
5477 2005-08-09  Juri Linkov  <juri@jurta.org>
5479         * info.el: Replace `info' with upper-case `Info' where appropriate.
5480         (info-title-1, info-title-2, info-title-3, info-title-4)
5481         (info-menu-header): Move up face definitions.
5482         (info-menu-star): Rename from `info-menu-5'.
5483         (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
5484         (Info-fontify-visited-nodes): Fix docstring.
5485         (Info-hide-note-references): Fix docstring.
5486         (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
5487         menu items in the same way as on cross-references.
5488         (info-apropos): Fix sorting order and formatting to be like in the
5489         stand-alone Info browser.  Display error messages for 1 sec.
5490         (Info-mode-map): Move down `c' key binding.  Bind `^' to `Info-up'.
5491         (Info-mode-menu): Remove item for `Info-search-case-sensitively'
5492         from the menu bar.
5493         (Info-insert-dir): Restore point after calling
5494         `insert-buffer-substring'.
5496 2005-08-08  Richard M. Stallman  <rms@gnu.org>
5498         * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
5499         (recompute-lucid-menubar): Add defvars.
5501         * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
5503         * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
5505         * net/net-utils.el (run-dig): Rename from `dig'.
5507         * play/gametree.el (gametree-mode): Use make-local-variable,
5508         not make-variable-buffer-local.
5510         * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
5512         * ansi-color.el (ansi-color-make-extent)
5513         (ansi-color-set-extent-face): Use fboundp, not functionp.
5515         * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
5516         not make-variable-buffer-local.
5518         * bookmark.el (Info-current-file): Add defvar.
5519         (bookmark-jump-noselect): Use with-no-warnings.
5521         * completion.el (c-mode-map, fortran-mode-map): Add defvars.
5523         * ebuff-menu.el (Helper-return-blurb): Add defvar.
5525         * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
5527         * find-file.el (ada-procedure-start-regexp)
5528         (ada-package-start-regexp): Add defvars.
5530         * info.el (Info-insert-dir): Use insert-buffer-substring.
5532         * xml.el (xml-att-def-re): Add defvar.
5534         * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
5535         calling convention.
5537         * subr.el (while-no-input): Return t if there is input.
5539 2005-08-08  Luc Teirlinck  <teirllm@auburn.edu>
5541         * cus-start.el (all): Add `overflow-newline-into-fringe'.
5543 2005-08-08  Juanma Barranquero  <lekktu@gmail.com>
5545         * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
5546         (scheme-prev-l/c-dir/file): Fix typos in docstrings.
5548 2005-08-08  Emilio C. Lopes  <eclig@gmx.net>
5550         * cmuscheme.el (scheme-start-file): Replace reference to
5551         `user-emacs-directory' by "~/.emacs.d/".
5553 2005-08-08  Thien-Thi Nguyen  <ttn@gnu.org>
5555         * info.el (Info-dir-remove-duplicates): Avoid case folding
5556         in loop; instead, keep downcased strings for comparison.
5557         Suggested by Helmut Eller.
5559 2005-08-07  Michael Albinus  <michael.albinus@gmx.de>
5561         Sync with Tramp 2.0.50.
5563         * net/tramp.el: Remove defvar of `last-coding-system-used' in the
5564         XEmacs case; not necessary anymore.
5565         (tramp-user-regexp): Allow "@" as part of user name.
5566         (tramp-handle-set-visited-file-modtime)
5567         (tramp-handle-insert-file-contents)
5568         (tramp-handle-write-region): No special handling for
5569         `last-coding-system-used, because this is done in
5570         `tramp-accept-process-output' now.
5571         (tramp-accept-process-output): New defun.
5572         (tramp-process-one-action, tramp-process-one-multi-action)
5573         (tramp-wait-for-regexp, tramp-wait-for-output)
5574         (tramp-discard-garbage-erase-buffer): Call it.  Reported by David
5575         Howells <dhowells@redhat.com>.
5576         (clear-visited-file-modtime): Defadvice removed.  The check for
5577         unset buffer's modtime does not need to be based on
5578         `tramp-buffer-file-attributes'.  Suggested by RMS.
5579         (tramp-message): Insert "\n" if not being at beginning of line.
5580         (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
5581         sequence with same logic.
5582         (tramp-completion-handle-expand-file-name): Discard call of
5583         `tramp-drop-volume-letter'.  It is not necessary, and there have
5584         been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
5585         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
5586         (tramp-do-copy-or-rename-file-out-of-band): Transfer message
5587         should always be visible.
5588         (tramp-handle-insert-directory, tramp-setup-complete)
5589         (tramp-set-process-query-on-exit-flag)
5590         (tramp-append-tramp-buffers): Pacify byte-compiler.
5591         (tramp-bug): Delete non-existing variables from list.
5592         Apply `tramp-load-report-modules' as pre-hook.
5593         Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
5594         `shell-prompt-pattern' because of non-7bit characters.
5595         Reported by Sebastian Luque <sluque@mun.ca>.
5596         (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
5597         (tramp-match-string-list): Remove function.
5598         (tramp-wait-for-regexp): Remove call of that function.
5599         Suggested by Kim F. Storm <storm@cua.dk>.
5600         (tramp-set-auto-save-file-modes): Use octal integer code #o600
5601         instead of octal character code ?\600.  The latter resulted in a
5602         syntax error with XEmacs.
5604         * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
5605         XEmacs case; not necessary anymore.
5606         (tramp-smb-handle-write-region): No special handling for
5607         `last-coding-system-used, because this is done in
5608         `tramp-accept-process-output' now.
5609         (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
5611 2005-08-06  Luc Teirlinck  <teirllm@auburn.edu>
5613         * wid-edit.el (widget-choice-value-create):
5614         Unconditionally respect user choice.  Set :explicit-choice back to nil
5615         when no longer needed.
5616         (widget-choice-action): Unconditionally respect user choice.
5617         Eliminate :explicit-choice-value.
5619         * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
5621         * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
5622         with `indicate-empty-lines' and `indicate-buffer-boundaries'.
5623         (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
5624         running new function `toggle-indicate-empty-lines'.
5625         Rename "Customize" item to "Customize fringe".
5626         Rename "Indicators" item to "Buffer boundaries" and change help echo.
5627         (menu-bar-showhide-fringe-ind-menu): Change several help echos.
5628         Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
5629         Delete "Empty lines only" item.
5630         (menu-bar-showhide-fringe-ind-customize): New function.
5631         (menu-bar-showhide-fringe-ind-mixed)
5632         (menu-bar-showhide-fringe-ind-box)
5633         (menu-bar-showhide-fringe-ind-right)
5634         (menu-bar-showhide-fringe-ind-left)
5635         (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
5636         instead of `fringe-indicators'.
5638 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
5640         * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
5641         Change the date of last update.
5643 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
5645         * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
5646         (viper-exec-yank, viper-put-back): Don't display modification msg
5647         if in the minibuffer.
5649         * viper-init.el (viper-replace-overlay-cursor-color)
5650         (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
5651         Make variables frame local.
5653         * viper-util.el (viper-append-filter-alist): Use append instead of
5654         nconc.
5656         * viper.el (viper-vi-state-mode-list)
5657         (viper-emacs-state-mode-list): Move help-mode and
5658         completion-list-mode from the first list to the second.
5659         (viper-mode): Docstring.
5660         (viper-go-away, viper-non-hook-settings): Don't localize
5661         minor-mode-alist in newer Emacsen.  Add advice to
5662         set-cursor-color.  Don't bind "\C-c\\".
5664 2005-08-06  Emilio C. Lopes  <eclig@gmx.net>
5666         * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
5667         (scheme-macro-expand-command): New user options.
5668         (scheme-trace-procedure, scheme-expand-current-form): New commands.
5669         (scheme-form-at-point, scheme-start-file)
5670         (scheme-interactively-start-process): New functions.
5671         (scheme-get-process): New function, extracted from `scheme-proc'.
5672         (run-scheme): Call `scheme-start-file' to get start file, and pass
5673         it to `make-comint'.
5674         (switch-to-scheme, scheme-proc):
5675         Call `scheme-interactively-start-process' if no Scheme buffer/process
5676         is available.
5678 2005-08-06  Juri Linkov  <juri@jurta.org>
5680         * progmodes/compile.el (compilation-mode-font-lock-keywords):
5681         Use `compilation-text-face', `compilation-info-text-face' and
5682         `compilation-error-text-face' instead of `font-lock-keyword-face'.
5683         (compilation-error): New face.
5684         (compilation-error-file-name): Inherit from
5685         `compilation-error' instead of `font-lock-warning-face'.
5686         (compilation-warning-file-name): Inherit from
5687         `compilation-warning' instead of `font-lock-warning-face'.
5688         (compilation-info, compilation-error-file-name)
5689         (compilation-warning-file-name, compilation-info-file-name)
5690         (compilation-line-number, compilation-column-number): Doc fix.
5691         (compilation-error-text-face, compilation-warning-text-face)
5692         (compilation-info-text-face): New face variables.
5693         (compilation-line-face, compilation-column-face)
5694         (compilation-enter-directory-face)
5695         (compilation-leave-directory-face): Doc fix.
5696         (compilation-text-face): New function.
5698         * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
5699         instead of 1 to display binary file names as info file links.
5700         (grep-error-face): Use `compilation-error-face' instead of
5701         `font-lock-keyword-face'.
5702         (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
5703         and `compilation-warning-text-face' instead of
5704         `font-lock-keyword-face'.  Use `compilation-error-text-face'
5705         instead of `grep-error-face'.
5707 2005-08-05  Kenichi Handa  <handa@m17n.org>
5709         * international/code-pages.el: Add autoload cookies for all coding
5710         systems.
5712 2005-08-04  Luc Teirlinck  <teirllm@auburn.edu>
5714         * cus-start.el (all): Put undo.c where it alphabetically belongs.
5716 2005-08-04  Juri Linkov  <juri@jurta.org>
5718         * progmodes/compile.el (compilation-mode-map):
5719         * progmodes/grep.el (grep-mode-map):
5720         Bind TAB to `compilation-next-error' and [backtab] to
5721         `compilation-previous-error'.
5723         * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
5724         matching line numbers, column numbers and their ranges with regexp
5725         matching only line numbers.
5726         (grep-context-face): New face variable.
5727         (grep-mode-font-lock-keywords): Use it.
5729         * faces.el (read-face-name): Delete duplicate faces.
5731 2005-08-02  Juanma Barranquero  <lekktu@gmail.com>
5733         * thumbs.el (thumbs-find-image): Don't make variables
5734         automatically buffer local.
5735         (thumbs-current-tmp-filename, thumbs-current-image-filename)
5736         (thumbs-image-num): Make automatically buffer local.
5737         (thumbs-show-thumbs-list): Use `make-local-variable', not
5738         `make-variable-buffer-local'.
5739         (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
5741         * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
5742         (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
5743         (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
5744         (bother, bye, canyou, chatlst, continue, deathlst, describe)
5745         (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
5746         (feelings-about, foullst, found, hello, history, howareyoulst)
5747         (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
5748         (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
5749         (neglst, obj, object, owner, please, problems, qlist)
5750         (random-adjective, relation, remlst, repetitive-shortness)
5751         (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
5752         (shortlst, something, sportslst, stallmanlst, states, subj)
5753         (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
5754         (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
5755         Defvar at compile time.
5757         * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
5758         not `make-variable-buffer-local'.
5760 2005-08-02  Kim F. Storm  <storm@cua.dk>
5762         * emulation/cua-rect.el (cua--highlight-rectangle): Only show
5763         rectangle overlay in selected window.
5765 2005-08-01  Luc Teirlinck  <teirllm@auburn.edu>
5767         * cus-start.el (all): Put `indicate-empty-lines' in fringe group
5768         instead of display group.  Make `indicate-buffer-boundaries'
5769         customizable through Custom.
5771 2005-08-01  Juanma Barranquero  <lekktu@gmail.com>
5773         * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
5774         (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
5775         (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
5776         (gdb-put-string): Fix typos in docstrings.
5778 2005-08-01  Nick Roberts  <nickrob@snap.net.nz>
5780         Update copyright notices of files in progmodes directory for
5781         release of Emacs 22.1.
5783         * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
5785         * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
5786         Don't barf if the GUD buffer has been killed.
5788 2005-08-01  Kim F. Storm  <storm@cua.dk>
5790         * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
5792 2005-07-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5794         * simple.el (next-error-follow-minor-mode):
5795         make-variable-buffer-local -> make-local-variable.
5797         * emacs-lisp/cl-extra.el: Require CL also when compiling.
5799         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
5800         (byte-compile-form-make-variable-buffer-local): New functions to warn
5801         about misuses of make-variable-buffer-local where make-local-variable
5802         was meant.
5804 2005-07-29  Juanma Barranquero  <lekktu@gmail.com>
5806         * bs.el (bs-attributes-list): Doc fix.
5807         (bs): Update url-link.
5809         * desktop.el (desktop-save-buffer): Fix typos in docstring.
5810         (desktop-load-default): Simplify.
5812         * ibuffer.el (ibuffer-columnize-and-insert-list)
5813         (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
5814         (ibuffer-unmark-all, ibuffer-toggle-marks)
5815         (ibuffer-unmark-forward, ibuffer-unmark-backward)
5816         (ibuffer-compile-make-format-form, ibuffer-format-column)
5817         (ibuffer-current-buffers-with-marks)
5818         (ibuffer-update-title-and-summary): "?\ " -> "?\s".
5819         (ibuffer): Doc fix.
5820         (ibuffer-mode): Fix typo in docstring.
5821         (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
5822         with `define-obsolete-variable-alias'.
5823         (ibuffer-elide-long-columns): Mark as obsolete.  Doc fix.
5825 2005-07-29  Kenichi Handa  <handa@m17n.org>
5827         * international/mule-cmds.el (select-message-coding-system):
5828         Be sure to use LF for end-of-line.  If no coding system is decided,
5829         return iso-8859-1-unix.
5831 2005-07-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5833         * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
5834         (ange-ftp-pending-error-line): New vars.
5835         (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
5836         to handle the non-fatal no-route-to-host messages.
5837         (internal-ange-ftp-mode): Make the no-match regexp more efficient.
5839 2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
5841         * isearch.el (isearch-mode-map, isearch-other-meta-char)
5842         (isearch-quote-char, isearch-printing-char)
5843         (isearch-text-char-description): "?\ " -> "?\s".
5844         (isearch-lazy-highlight-cleanup)
5845         (isearch-lazy-highlight-initial-delay)
5846         (isearch-lazy-highlight-interval)
5847         (isearch-lazy-highlight-max-at-a-time)
5848         (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
5849         Declare with define-obsolete-*-alias macros.
5850         (isearch-forward): Fix typo in docstring.
5851         (search-invisible, search-ring-yank-pointer)
5852         (regexp-search-ring-yank-pointer): Doc fixes.
5854         * recentf.el (recentf-menu-append-commands-p): Declare with
5855         `define-obsolete-variable-alias'.
5856         (recentf-max-saved-items, recentf-menu-filter)
5857         (recentf-arrange-by-rule-subfilter): Doc fixes.
5858         (recentf-menu-append-commands-flag)
5859         (recentf-initialize-file-name-history, recentf-expand-file-name)
5860         (recentf-clear-data): Fix typos in docstrings.
5862 2005-07-28  Nick Roberts  <nickrob@snap.net.nz>
5864         * progmodes/gdb-ui.el: Smarten comments.
5865         (gdb-info-breakpoints-custom): Use nowarn when finding file.
5867 2005-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
5869         * term/apollo.el (terminal-init-apollo): New function containing
5870         all former top level forms in the file.
5871         * term/bobcat.el (terminal-init-bobcat):
5872         * term/cygwin.el (terminal-init-cygwin):
5873         * term/iris-ansi.el (terminal-init-iris-ansi):
5874         * term/linux.el (terminal-init-linux):
5875         * term/news.el (terminal-init-news):
5876         * term/rxvt.el (terminal-init-rxvt):
5877         * term/sun.el (terminal-init-sun):
5878         * term/tvi970.el (terminal-init-tvi970):
5879         * term/vt100.el (terminal-init-vt100):
5880         * term/vt102.el (terminal-init-vt102):
5881         * term/vt125.el (terminal-init-vt125):
5882         * term/vt200.el (terminal-init-vt200):
5883         * term/vt201.el (terminal-init-vt201):
5884         * term/vt220.el (terminal-init-vt220):
5885         * term/vt240.el (terminal-init-vt240):
5886         * term/vt300.el (terminal-init-vt300):
5887         * term/vt320.el (terminal-init-vt320):
5888         * term/vt400.el (terminal-init-vt400):
5889         * term/vt420.el (terminal-init-vt420):
5890         * term/wyse50.el (terminal-init-wyse50):
5891         * term/xterm.el (terminal-init-xterm): Likewise.
5893         * term/README: Describe the terminal-init-* functionality.
5895         * startup.el (command-line): After loading the terminal initialization
5896         file call the corresponding terminal initialization function.
5898 2005-07-27  Kenichi Handa  <handa@m17n.org>
5900         * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
5901         negative.
5903         * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
5904         (ps-mule-composition-prologue): Fix for the case that
5905         RelativeCompose is false.
5907 2005-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5909         * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
5911         * descr-text.el (describe-char): Handle the case where the list of
5912         chars is displayed in a separate frame.
5913         Be a bit more discriminating when looking for the char.
5915 2005-07-26  Juanma Barranquero  <lekktu@gmail.com>
5917         * bookmark.el (bookmark-automatically-show-annotations)
5918         (bookmark-read-annotation-text-func): Doc fixes.
5919         (bookmark-save): Improve argument/docstring consistency.
5920         (bookmark-get-bookmark, bookmark-get-bookmark-record)
5921         (bookmark-alist-from-buffer)
5922         (bookmark-upgrade-file-format-from-0)
5923         (bookmark-grok-file-format-version)
5924         (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
5925         (bookmark-read-annotation-mode)
5926         (bookmark-insert-current-bookmark, bookmark-jump)
5927         (bookmark-exit-hook): Fix typos in docstrings.
5928         (bookmark-exit-hooks): Define as obsolete alias.
5929         (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
5930         not `bookmark-exit-hooks'.  Fix docstring.
5931         (bookmark-bmenu-select): "?\ " -> "?\s".
5933 2005-07-25  Ari Roponen <arjuropo@cc.jyu.fi>  (tiny change)
5935         * startup.el (command-line): Fix typo.
5937 2005-07-24  Richard M. Stallman  <rms@gnu.org>
5939         * tooltip.el (tooltip-mode): Test emacs-basic-display,
5940         not emacs-quick-startup.
5942 2005-07-24  Juanma Barranquero  <lekktu@gmail.com>
5944         * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
5945         (reb-next-match, reb-show-subexp): Use `with-selected-window'
5946         instead of `reb-with-current-window'.
5947         (reb-prev-match): Likewise.  Also, don't move left if the search
5948         was unsuccessful.
5949         (reb-initialize-buffer): New function.
5950         (re-builder, reb-change-syntax): Use it.
5952         * man.el (Man-goto-page): Make second argument NOERROR optional.
5954 2005-07-23  Richard M. Stallman  <rms@gnu.org>
5956         * man.el (Man-bgproc-sentinel): Check here for failure to find
5957         any man page in the output, and report the error here.
5958         (Man-arguments): Make it permanent local.
5959         (Man-goto-page): New arg NOERROR.  Never kill the current buffer.
5960         (Man-mode): Pass t for NOERROR.
5962         * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
5963         (grep-mode-font-lock-keywords):
5964         Don't use compilation-...-face for messages that are not file names.
5966         * progmodes/compile.el (compilation-mode-font-lock-keywords):
5967         Don't use compilation-...-face for messages that are not file names.
5969 2005-07-22  Juri Linkov  <juri@jurta.org>
5971         * startup.el (normal-splash-screen): Update menu name.
5973         * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
5975 2005-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
5977         * term/xterm.el: Load term/rxvt if the terminal is actually an
5978         rxvt terminal.
5979         (xterm-rxvt-set-background-mode): Remove, not used anymore.
5981         * term/rxvt.el (function-key-map): Use substitute-key-definition
5982         to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
5984         * term/cygwin.el: New file.
5986 2005-07-22  Kim F. Storm  <storm@cua.dk>
5988         * image-file.el (insert-image-file, image-file-yank-handler):
5989         Fix last change to maintain a (unique) yank-handler on yanked images.
5991 2005-07-22  Eduardo Mu\e,Aq\e(Boz  <emufer@terra.es>  (tiny change)
5993         * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
5994         of the file size (as in "177B" for 177 bytes).  This happens with
5995         "ls -lh" on FreeBSD.
5997 2005-07-22  Juanma Barranquero  <lekktu@gmail.com>
5999         * hilit-chg.el (highlight-changes-global-initial-state)
6000         (highlight-compare-buffers, hilit-chg-turn-on-maybe)
6001         (hilit-chg-fixup, highlight-changes-mode):
6002         Fix typos in docstrings.
6003         (highlight-changes-global-modes, highlight-changes-rotate-faces):
6004         Doc fixes.
6006 2005-07-21  Luc Teirlinck  <teirllm@auburn.edu>
6008         * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
6009         mode function using `eval-after-load'.
6011 2005-07-21  Kim F. Storm  <storm@cua.dk>
6013         * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
6014         included when reporting an emacs crash, and tell about the DEBUG file.
6016         * image-file.el (insert-image-file): Add yank-handler.
6017         (image-file-yank-handler): Yank handler to make unique copies of
6018         images when they are yanked into a buffer next to each other.
6020 2005-07-21  Juanma Barranquero  <lekktu@gmail.com>
6022         * comint.el (comint-use-prompt-regexp, comint-send-input)
6023         (comint-source-default, comint-extract-string)
6024         (comint-get-source, comint-word, comint-completion)
6025         (comint-source, comint-prompt-read-only, comint-update-fence):
6026         Fix typos in docstrings.
6027         (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
6028         Declare with define-obsolete-*-alias macros.
6029         (comint-previous-matching-input-from-input)
6030         (comint-next-matching-input-from-input)
6031         (comint-previous-matching-input, comint-next-matching-input)
6032         (comint-forward-matching-input):
6033         Improve argument/docstring consistency.
6035         * desktop.el (desktop-clear-preserve-buffers-regexp):
6036         Also preserve the *server* buffer.
6038         * simple.el (clone-indirect-buffer): Doc fix.
6039         (fixup-whitespace, just-one-space)
6040         (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
6041         (next-error, next-error-highlight)
6042         (next-error-highlight-no-select, next-error-last-buffer)
6043         (next-error-buffer-p, next-error-find-buffer, next-error)
6044         (previous-error, next-error-no-select, previous-error-no-select)
6045         (open-line, split-line, minibuffer-prompt-width, kill-new)
6046         (binary-overwrite-mode): Fix typos in docstrings.
6047         (set-fill-column): Fix typo in message.
6049         * skeleton.el (skeleton-proxy-new): Doc fix.
6051         * strokes.el (strokes-load-hook): Doc fix.
6052         (strokes-grid-resolution, strokes-get-grid-position)
6053         (strokes-renormalize-to-grid, strokes-read-stroke)
6054         (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
6055         (strokes-global-map): Fix typos in docstrings.
6056         (strokes-help): Doc fix.  Fix help message and pass it through
6057         `substitute-command-keys'.
6059         * tempo.el (tempo-insert-prompt, tempo-interactive)
6060         (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
6061         (tempo-insert-string-functions, tempo-local-tags)
6062         (tempo-define-template, tempo-insert-template)
6063         (tempo-insert-prompt-compat, tempo-is-user-element)
6064         (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
6065         Fix typos in docstrings.
6067         * vcursor.el (vcursor-other-window, vcursor-bind-keys)
6068         (vcursor-key-bindings, vcursor-use-vcursor-map)
6069         (vcursor-find-window, vcursor-scroll-down)
6070         (vcursor-disable, vcursor-beginning-of-buffer)
6071         (vcursor-end-of-buffer): Fix typos in docstrings.
6072         (vcursor-relative-move, vcursor-get-char-count):
6073         Improve argument/docstring consistency.
6075         * version.el: "?\ " -> "?\s".
6077         * wid-edit.el (widget-default-create, widget-after-change)
6078         (widget-default-format-handler, widget-checklist-add-item)
6079         (widget-radio-add-item, widget-choose, widget-specify-secret)
6080         (widget-field-value-create, widget-field-value-get)
6081         (widget-editable-list-format-handler)
6082         (widget-editable-list-entry-create, widget-group-value-create)
6083         (widget-documentation-link-add)
6084         (widget-documentation-string-value-create): "?\ " -> "?\s".
6085         (widget-convert-text): Doc fix.
6086         (widget-narrow-to-field, widget-field-find)
6087         (widget-url-link-action, widget-emacs-library-link-action)
6088         (widget-color-notify): Fix typos in docstrings.
6090         * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
6091         (x-select-text, set-w32-system-coding-system)
6092         (w32-add-charset-info): Fix typos in docstrings.
6094         * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
6095         (cua-enable-cua-keys, cua-use-hyper-key)
6096         (cua-virtual-rectangle-edges): Fix typos in docstrings.
6097         (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
6099         * net/tramp.el (tramp-handle-load): Fix typo in error message.
6101         * emacs-lisp/re-builder.el (regexp-builder): Declare with
6102         `defalias' instead of faking it.
6104         * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
6105         (eshell-ls-missing, eshell-ls-dired-initial-args)
6106         (eshell-ls-use-in-dired): Fix typos in docstrings.
6108 2005-07-20  Kim F. Storm  <storm@cua.dk>
6110         * emulation/cua-base.el (cua-mode): Improve doc string.
6112 2005-07-20  Juanma Barranquero  <lekktu@gmail.com>
6114         * abbrev.el (expand-region-abbrevs): Doc fix.
6115         (inverse-add-mode-abbrev, inverse-add-global-abbrev):
6116         Improve argument/docstring consistency.
6118         * arc-mode.el (archive-get-descr, archive-alternate-display):
6119         Doc fixes.
6120         (archive-l-e): Improve argument/docstring consistency.
6121         (archive-tmpdir, archive-unixdate, archive-unixtime)
6122         (archive-chmod-entry): Fix typos in docstrings.
6123         (archive-unflag, archive-unflag-backwards)
6124         (archive-unmark-all-files): "?\ " -> "?\s".
6126         * buff-menu.el (Buffer-menu-unmark): Doc fix.
6127         (Buffer-menu-not-modified, Buffer-menu-execute)
6128         (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
6129         (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
6131         * composite.el (compose-string, encode-composition-rule)
6132         (compose-last-chars): Fix typos in docstrings.
6134         * desktop.el (desktop-enable, desktop-basefilename):
6135         Declare with `define-obsolete-variable-alias'.
6136         (desktop-internal-v2s): Don't quote keywords.
6137         (desktop-clear): "?\ " -> "?\s".
6139         * dired.el (dired-align-file, dired-flag-backup-files)
6140         (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
6141         (dired-listing-switches, dired-ls-F-marks-symlinks)
6142         (dired-dwim-target, dired-load-hook, dired-mode-hook)
6143         (dired-directory, dired-faces, dired, dired-revert)
6144         (dired-mode, dired-summary, dired-view-file)
6145         (dired-copy-filename-as-kill, dired-delete-file)
6146         (dired-no-confirm, dired-unmark-all-marks)
6147         (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
6148         (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
6149         (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
6150         Fix typos in message strings.
6152         * dired-x.el (virtual-dired): Declare with `defalias'.
6153         (dired-mark-unmarked-files, dired-local-variables-file)
6154         (dired-omit-here-always): Doc fix.
6155         (dired-omit-mode, dired-find-subdir)
6156         (dired-enable-local-variables, dired-clean-up-buffers-too)
6157         (dired-extra-startup, dired-mark-extension, dired-jump)
6158         (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
6159         (dired-smart-shell-command, dired-guess-shell-alist-user)
6160         (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
6161         (dired-x-bind-find-file, dired-x-submit-report):
6162         Fix typos in docstrings.
6163         (dired-mark-unmarked-files): "?\ " -> "?\s".
6165         * dirtrack.el (dirtrack-list): Fix typos in docstring.
6167         * faces.el (describe-face): "?\ " -> "?\s".
6168         (read-all-face-attributes, read-face-font, modify-face)
6169         (face-attr-construct, italic): Fix typos in docstrings.
6170         (frame-update-face-colors): Declare with
6171         `define-obsolete-function-alias'.
6173         * files.el (find-file-noselect, recode-file-name): Doc fixes.
6174         (insert-directory, kill-some-buffers): "?\ " -> "?\s".
6175         (magic-mode-alist, buffer-file-numbers-unique)
6176         (write-file-functions, get-free-disk-space):
6177         Fix typos in docstrings.
6178         (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
6179         (write-contents-hooks, write-file-hooks):
6180         Declare with `define-obsolete-variable-alias'.
6182         * forms-d2.el (arch-rj): Fix typo in docstrings.
6183         (arch-tocol): Likewise.  "?\ " -> "?\s".
6185         * frame.el (set-frame-font, cursor-in-non-selected-windows):
6186         Fix typo in docstring.
6187         (set-screen-width, set-screen-height): Delete redundant info in
6188         doctrings.
6189         (new-frame, screen-height, screen-width): Declare with
6190         `define-obsolete-function-alias'.
6191         (delete-frame-hook, blink-cursor): Declare with
6192         `define-obsolete-variable-alias'.
6194         * paths.el (prune-directory-list): Fix typos in docstring.
6196         * pcvs-util.el (cvs-flags-query, cvs-strings->string)
6197         (cvs-prefix-get): Fix typos in docstrings.
6199         * ps-print.el (ps-extend-face-list, ps-extend-face)
6200         (ps-print-background-image): Fix typos in docstrings.
6201         (ps-default-fg, ps-default-bg): Doc fixes.
6203         * s-region.el (s-region-bind): Doc fix.
6204         (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
6206         * textmodes/org.el (org-table-formula-substitute-names)
6207         (org-table-get-vertical-vector): Doc fixes.
6208         (org-table-recalculate): Remove unused argument to `message'.
6210 2005-07-19  Carsten Dominik  <dominik@science.uva.nl>
6212         * textmodes/org.el (org-table-column-names)
6213         (org-table-column-name-regexp)
6214         (org-table-named-field-locations): New variables.
6215         (org-archive-subtree): Protect `this-command' when calling
6216         `org-copy-subtree' and `org-cut-subtree', to avoid appending to
6217         the kill buffer.
6218         (org-complete): Remove fixed-formula completion.
6219         (org-edit-formulas-map): New variable.
6220         (org-table-edit-formulas): New command.
6221         (org-finish-edit-formulas, org-abort-edit-formulas)
6222         (org-show-variable, org-table-get-vertical-vector): New functions.
6223         (org-table-maybe-eval-formula): Handle `:=' fields.
6224         (org-table-get-stored-formulas, org-table-store-formulas)
6225         (org-table-get-formula, org-table-modify-formulas)
6226         (org-table-replace-in-formulas): Handle named field formulas.
6227         (org-table-get-specials): Store locations of named fields.
6229 2005-07-19  Juri Linkov  <juri@jurta.org>
6231         * progmodes/grep.el (grep-regexp-alist)
6232         (grep-mode-font-lock-keywords, grep-process-setup):
6233         Use default GNU grep match color "01;31m" instead of "01;41m".
6234         (grep-regexp-alist, grep-mode-font-lock-keywords):
6235         Use `\\[[0-9]*m' instead of `\\[00m'.
6236         (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
6237         sgr_start where its handling is more important.  Use the real
6238         length of sgr_start instead of constant 8.
6239         (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
6240         specially.  Delete all remaining escape sequences.
6241         (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
6242         (grep-regexp-alist): Make hyperlink only for binary file name
6243         instead of the whole line.
6244         (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
6245         (grep-mode): Add autoload.
6247         * emacs-lisp/find-func.el (find-function-regexp):
6248         Add `define-compilation-mode'.
6250 2005-07-19  Juri Linkov  <juri@jurta.org>
6252         * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
6253         (compare-windows-sync-string-size, compare-windows-recenter)
6254         (compare-windows-highlight, compare-windows): Add version 22.1.
6255         (compare-windows) <defface>: Inherit from lazy-highlight instead
6256         of duplicating its default value.
6258         * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
6259         (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
6261         * descr-text.el (describe-char): Create link buttons for `charset'
6262         and `code point'.  Add the current input method name with a link
6263         button to `to input' field.  Print face names of display table
6264         characters in `The display table entry is displayed by' section
6265         instead of printing face-id in the `display' field.
6266         Guess hardcoded faces and create a link button for them.
6267         Skip empty fields when calculating max-width.
6268         Treat `widget-create' specially while inserting strings from the
6269         collected field list.
6270         (describe-char-after): Made obsolete in version 22.1, not 21.5.
6272         * diff-mode.el (diff-file-header): Change foreground color from
6273         yellow to green on light backgrounds.
6274         (diff-context): Inherit from `shadow' only for color/grayscale
6275         with more than 88 colors.
6276         (diff-indicator-removed, diff-indicator-added)
6277         (diff-indicator-changed): New faces.
6278         (diff-font-lock-keywords): Use new faces.  Regroup rules.
6279         Add "^---$" for `normal' diff format.  Fontify `#' lines with
6280         font-lock-comment-delimiter-face and font-lock-comment-face.
6281         Add `#' to ^[^...] in the rule for `diff-context-face'.
6283         * faces.el (mode-line-highlight): Replace RoyalBlue4 with
6284         a button-like box.  Inherit from `highlight' on low colors.
6285         (shadow): Use shades of gray only for color/grayscale with
6286         more than 88 colors.  Use green for light backgrounds with
6287         8 colors, and yellow for dark backgrounds with 8 colors.
6289         * font-lock.el (font-lock-regexp-grouping-backslash):
6290         Don't inherit from escape-glyph (use bold for all cases).
6292         * info.el (info-xref-visited): Use light foreground color `violet'
6293         for dark backgrounds instead of dark color `magenta3'.
6294         (info-title-1): Use `yellow' color for dark backgrounds.
6296         * isearch.el (isearch): Use not-too-dark magenta3 instead of
6297         too-light magenta2.
6299         * replace.el (match): Use slightly more light RoyalBlue3 instead
6300         of dark RoyalBlue4.
6302         * wid-edit.el (widget-inactive): Inherit from `shadow'.
6304 2005-07-19  Juanma Barranquero  <lekktu@gmail.com>
6306         * novice.el (disabled-command-hook): Declare it with
6307         `define-obsolete-variable-alias'.
6309         * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
6310         (desktop-buffer-misc-functions, desktop-buffer-handlers)
6311         (desktop-load-default): Add release to obsolescence info.
6312         (desktop-globals-to-clear, desktop-buffer-mode-handlers)
6313         (desktop-append-buffer-args, desktop-read):
6314         Fix typos in docstrings.
6315         (desktop-kill): Fix typo in message.
6316         (desktop-save): Doc fix.
6318 2005-07-19  Michael Kifer  <kifer@cs.stonybrook.edu>
6320         * viper-cmd.el (viper-escape-to-state): Bug fix.
6321         (viper-envelop-ESC-key): Change the definition of fast
6322         keysequence so it'll work with keyboard macros.
6324         * ediff.el (ediff-patch-buffer): Change the docstring.
6326 2005-07-19  Kenichi Handa  <handa@m17n.org>
6328         * international/mule-cmds.el (select-safe-coding-system): Try to
6329         use an auto-coding (if any) before anything else.  If the found
6330         auto-coding is invalid, show a warning message.
6332         * international/mule.el (find-auto-coding): New function created
6333         by modifying the body of set-auto-coding.
6334         (set-auto-coding): Use find-auto-coding to find a coding.
6336 2005-07-18  Richard M. Stallman  <rms@gnu.org>
6338         * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
6339         not isearch-mode-end-hook-error.
6340         (allout-before-change-protect): Fix error message.
6342 2005-07-18  Juri Linkov  <juri@jurta.org>
6344         * allout.el (allout-mode):
6345         * calculator.el (calculator-copy):
6346         * custom.el (custom-known-themes):
6347         * dired.el (dired-desktop-buffer-misc-data)
6348         (dired-restore-desktop-buffer):
6349         * dired-x.el (dired-omit-marker-char):
6350         * files.el (basic-save-buffer):
6351         * font-core.el (font-lock-mode):
6352         * calendar/calendar.el (calendar-goto-hebrew-date)
6353         (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
6354         (calendar-goto-persian-date):
6355         * language/ethio-util.el (ethio-sera-to-fidel-region):
6356         * textmodes/picture.el (picture-mode):
6357         Delete duplicate duplicate words.
6359 2005-07-18  Juri Linkov  <juri@jurta.org>
6361         * isearch.el (isearch-mode-map): Remove key bindings for regexp
6362         chars * ? } |.
6363         (isearch-fallback): Don't call `isearch-process-search-char'.
6364         (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
6365         (isearch-process-search-char): Call `isearch-fallback' for regexp
6366         chars * ? } |.
6367         (isearch-return-char): Make obsolete with `make-obsolete' instead
6368         of simply documenting it as obsolete in the docstring.
6369         (isearch-fallback): Refill docstring.
6371         * international/isearch-x.el
6372         (isearch-process-search-multibyte-characters): Remove unneeded
6373         `concat'.  Add intermediate values to `junk-hist' instead of
6374         `minibuffer-history'.  Test the length of `str'.
6376 2005-07-18  Juanma Barranquero  <lekktu@gmail.com>
6378         * allout.el (allout-resolve-xref): Fix typos in error strings.
6379         (allout-before-change-protect): Remove unneeded `concat'.
6381         * array.el (array-mode, array-reconfigure-rows)
6382         (untabify-backward): Fix typos in docstrings.
6383         (array-reconfigure-rows): Use `insert-buffer-substring', not
6384         `insert-buffer'.
6386         * calendar/icalendar.el (icalendar--get-unfolded-buffer):
6387         * progmodes/ada-mode.el (ada-make-body):
6388         Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
6390         * dired.el (dired-log):
6391         * tar-mode.el (tar-subfile-save-buffer):
6392         * play/zone.el (zone-pgm-stress-destress):
6393         Use `insert-buffer-substring', not `insert-buffer'.
6395 2005-07-17  Simon Josefsson  <jas@extundo.com>
6397         * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
6399 2005-07-16  Jose E. Marchesi  <jemarch@gnu.org>
6401         * lisp/mail/smtpmail.el (smtpmail-auth-supported):
6402         Add plain auth method.
6403         (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
6405 2005-07-17  Kim F. Storm  <storm@cua.dk>
6407         * ido.el (dired-other-window): Add ido property.
6409 2005-07-16  Juanma Barranquero  <lekktu@gmail.com>
6411         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
6412         Fix typo in docstring.
6413         (byte-compile-interactive-only-functions): Add `insert-buffer' and
6414         `insert-file-literally'.
6416         * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
6417         info and delete redundant message.  Doc fix.
6418         (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
6419         (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
6421 2005-07-16  Richard M. Stallman  <rms@gnu.org>
6423         * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
6424         (byte-compile-and): Use byte-compile-and-recursion.
6425         (byte-compile-or-recursion): New function.
6426         (byte-compile-or): Use that.
6427         (byte-compile-if): Guard the else-clause too.
6428         (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
6430         * isearch.el (isearch-mode-end-hook-quit): New variable.
6431         (isearch-done): Bind it.
6432         (isearch-mode-end-hook): Doc fix.
6434         * allout.el (allout-isearch-did-quit): Variable deleted.
6435         (allout-real-isearch-abort): Function name no longer used.
6436         (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
6437         (allout-isearch-rectification): isearch-mode always exists.
6438         Don't set allout-isearch-did-quit.
6439         (allout-isearch-expose): Check isearch-mode-end-hook-error, not
6440         allout-isearch-did-quit.
6441         (allout-enwrap-isearch): Just add the hook.
6442         (allout-isearch-abort): Function deleted.
6443         (allout-pre-command-business): Avoid warning.
6445         * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
6446         Correctly avoid warnings.
6447         (pascal-outline): Likewise.
6449         * progmodes/f90.el (f90-abbrev-start): Avoid warning.
6451         * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
6453         * play/tetris.el (tetris-mode): Avoid warning.
6455         * play/snake.el (snake-mode): Avoid warning.
6457         * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
6458         (gamegrid-set-display-table): Avoid warning.
6459         (gamegrid-set-timer): Likewise.
6460         (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
6461         (gamegrid-add-score-with-update-game-score-1): Take FILE
6462         as argument.
6463         (gamegrid-add-score-with-update-game-score): Pass that argument.
6464         Rename have-shared-game-dir to gamegrid-shared-game-dir.
6466         * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
6468         * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
6469         (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
6471         * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
6472         and insert-file.
6474         * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
6475         (sc-ask): Avoid warnings.
6477         * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
6478         (eshell-hist-initialize): Use that var the natural way.
6480         * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
6482         * emacs-lisp/re-builder.el (reb-cook-regexp):
6483         Avoid warning calling lre-compile-string.
6484         (reb-color-display-p): Avoid warning.
6486         * calculator.el (calculator-last-input): Guard uses
6487         of event-key and key-press-event-p.
6488         (event-key, key-press-event-p): Delete definitions.
6490         * emacs-lisp/find-gc.el (find-gc-unsafe-list)
6491         (find-gc-source-directory, find-gc-subrs-callers)
6492         (find-gc-noreturn-list, find-gc-source-files)
6493         (find-gc-subrs-called): Vars renamed and defvar'd.
6495         * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
6496         (checkdoc-overlay-put, checkdoc-delete-overlay)
6497         (checkdoc-overlay-start, checkdoc-overlay-end)
6498         (checkdoc-mode-line-update, checkdoc-char=):
6499         Define such that compiler knows they are defined.
6500         (checkdoc-call-eval-buffer): Delete.  Use eval-buffer directly.
6501         (checkdoc-read-event): Delete.  Use read-event directly.
6503         * whitespace.el (whitespace-make-overlay)
6504         (whitespace-overlay-put, whitespace-delete-overlay)
6505         (whitespace-overlay-start, whitespace-overlay-end):
6506         Define such that compiler knows they are defined.
6507         (whitespace): Move conditional inside.
6509         * tempo.el (tempo-insert-template): Suppress warning.
6511         * ediff-diff.el (longlines-mode): Add defvar.
6513 2005-07-16  Gary Howell  <g1howell-list@yahoo.com>  (tiny change)
6515         * server.el: Bind "C-x #" in a way that works even if C-x is
6516         redefined to a command key, not a prefix key.
6518 2005-07-16  Johan Bockgard  <bojohan@users.sourceforge.net>  (tiny change)
6520         * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
6521         cl-make-type-test till execution time.
6523 2005-07-16  Markus Rost  <rost@math.uni-bielefeld.de>
6525         * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
6526         arg ARG and use it.
6528 2005-07-16  Johan Bockgard  <bojohan@users.sourceforge.net>  (tiny change)
6530         * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
6532 2005-07-15  Luc Teirlinck  <teirllm@auburn.edu>
6534         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
6535         a defcustom with two :set or :type keywords.
6537 2005-07-15  Richard M. Stallman  <rms@gnu.org>
6539         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
6540         Don't give ^M comment-end syntax.
6542 2005-07-16  Nick Roberts  <nickrob@snap.net.nz>
6544         * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
6545         Don't consider gdbmi (gdb-mi.el has its own update functions).
6546         (gdb-var-delete): Make it work for gdbmi as well.
6547         (gdb-speedbar-expand-node): Move var-update here for gdbmi.
6549         * progmodes/gud.el (etags, sdb): Only require etags when needed.
6550         (gud-speedbar-menu-items): Correct logic for enabling items.
6552 2005-07-15  Kim F. Storm  <storm@cua.dk>
6554         * ido.el: Fix commentary.
6555         (ido-define-mode-map): Move ido-next-work-file to C-M-o.
6556         Use with-no-warnings around ffap-guesser.
6557         (ido-file-internal, ido-read-file-name, ido-read-directory-name):
6558         Let bind minibuffer-completing-file-name to t.
6560 2005-07-15  Juanma Barranquero  <lekktu@gmail.com>
6562         * startup.el (site-run-file, keyboard-type): Doc fixes.
6563         (command-line): Check for "--basic-display" argument; also for
6564         "--quick", not "--bare-bones" (which was renamed).
6565         (fancy-splash-text): Add missing item "Getting New Versions".
6566         (normal-splash-screen): Fix typos and improve consistency with
6567         `fancy-splash-text'.  Update copyright year.
6569         * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
6570         valid binding for `help-char'.
6572         * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
6574 2005-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
6576         * term.el (term-mode): Disable cua-mode for term buffers.
6578 2005-07-14  Juanma Barranquero  <lekktu@gmail.com>
6580         * add-log.el (add-log-mailing-address, change-log-merge):
6581         Doc fixes.
6582         (change-log-get-method-definition): Fix typo in docstring.
6584 2005-07-14  Kim F. Storm  <storm@cua.dk>
6586         * emulation/cua-base.el:
6587         (cua--pre-command-handler-1, cua--pre-command-handler)
6588         (cua--post-command-handler-1, cua--post-command-handler):
6589         Split in two.  Check (buffer local) value of cua-mode.
6590         (cua-selection-mode): New command.
6592 2005-07-13  Luc Teirlinck  <teirllm@auburn.edu>
6594         * custom.el (custom-initialize-safe-set)
6595         (custom-initialize-safe-default): Doc fixes.
6597         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
6598         and simplify :init-value again.
6600         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
6601         and simplify :init-value again.  Delete autoload.
6603         * startup.el (command-line): Use `custom-reevaluate-setting' again
6604         for tooltip-mode.
6606         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
6607         a defcustom with two :initialize keywords.
6609 2005-07-13  Juanma Barranquero  <lekktu@gmail.com>
6611         * allout.el (my-mark-marker, allout-isearch-prior-pos)
6612         (allout-unprotected, allout-undo-aggregation, allout-snug-back)
6613         (allout-post-command-business, allout-flag-region)
6614         (isearch-reenable-font-lock, allout-yank)
6615         (allout-insert-latex-header, allout-insert-latex-trailer)
6616         (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
6617         (allout-latex-verb-quote): Fix typos in docstrings.
6618         (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
6619         (allout-unprotected, allout-prefix-data):
6620         Improve argument/docstring consistency.
6621         (allout-chart-subtree): Fix argument spec.
6622         (allout-open-topic): Rename `use_sib_bullet' argument to
6623         `use-sib-bullet'.  Doc fix.
6625         * whitespace.el (whitespace-check-buffer-leading)
6626         (whitespace-check-buffer-trailing)
6627         (whitespace-check-buffer-indent)
6628         (whitespace-check-buffer-spacetab)
6629         (whitespace-check-buffer-ateol, whitespace-highlighted-space)
6630         (whitespace-check-leading-whitespace)
6631         (whitespace-check-trailing-whitespace)
6632         (whitespace-check-spacetab-whitespace)
6633         (whitespace-check-indent-whitespace)
6634         (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
6635         (whitespace-modes): Fix typos in docstrings.
6636         (defgroup, defcustom): Doc fixes.
6638         * winner.el (winner-mode, winner-boring-buffers)
6639         (winner-pending-undo-ring): Doc fixes.
6640         (winner-ring): Remove unneeded `progn'.
6641         (winner-equal): `defsubst' it.
6642         (winner-redo): Fix message.
6644 2005-07-13  Kim F. Storm  <storm@cua.dk>
6646         * simple.el (line-move-1): Always use vertical-motion to
6647         do the last (or only) line move to ensure some movement.
6648         Undo 2005-06-23 change--don't check for overlays.
6650 2005-07-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6652         * term/mac-win.el (ccl-encode-mac-roman-font)
6653         (ccl-encode-mac-centraleurroman-font)
6654         (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
6655         (ccl-encode-mac-dingbats-font): Remove check for ASCII.
6656         Change charset-id boundary of dimension to ?\xef.
6657         (mac-char-fontspec-list): New constant.
6658         (fontset-add-mac-fonts): Use it.  Accept non-string `base-family'
6659         argument.  Nil uses itself as family in font-spec.  Previous
6660         behavior for nil is now provided by non-nil non-string argument.
6661         All callers changed.  Add font-specs for Mac fonts to
6662         "fontset-default" unless iso8859-1 fonts are installed.
6664 2005-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6666         * progmodes/sh-script.el (sh-get-indent-info): Only indent
6667         a continuation line if the \ is preceded by SPC or TAB.
6668         (sh-get-indent-info): Simplify.
6669         (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
6670         Use with-current-buffer.
6672         * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
6673         when the matched text is empty.
6675 2005-07-12  Luc Teirlinck  <teirllm@auburn.edu>
6677         * startup.el (command-line): Revert to previous handling of
6678         tooltip-mode.  Explain in comment why the complexity is needed.
6680         * tooltip.el (tooltip-mode): Revert to previous implementation of
6681         its defcustom.
6683         * frame.el (blink-cursor-mode): Revert to previous implementation
6684         of its defcustom.  Update comment.
6686 2005-07-12  Lars Hansen  <larsh@soem.dk>
6688         * desktop.el: Update e-mail address.
6690 2005-07-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6692         * term/mac-win.el (mac-services-mail-selection)
6693         (mac-services-mail-to): New functions.
6694         (mac-application-menu-map): Bind them.
6696 2005-07-12  wulei <milton@wulei.net>  (tiny change)
6698         * progmodes/gdb-ui.el: Add note about buffering with Windows.
6700 2005-07-11  Luc Teirlinck  <teirllm@auburn.edu>
6702         * custom.el (custom-reevaluate-setting): Doc fix.
6704 2005-07-11  Jay Belanger  <belanger@truman.edu>
6706         * calc/calc.el (calc-embedded-announce-formula-alist)
6707         (calc-embedded-open-close-plain-alist)
6708         (calc-embedded-open-close-mode-alist): Add checks for additional
6709         major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
6711 2005-07-11  Juanma Barranquero  <lekktu@gmail.com>
6713         * custom.el (custom-enable-theme): Don't add theme to
6714         `custom-enabled-themes' with `push' because there is no
6715         setf-method for `delq'.
6717 2005-07-11  Richard M. Stallman  <rms@gnu.org>
6719         * custom.el (custom-declare-variable): Doc fix.
6721         * dired-aux.el (dired-compare-directories): Remove "." and ".."
6722         from the alists.
6724         * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
6725         Do nothing if edebug-active.
6727         * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
6728         (edebug-display): Do it here instead.
6730 2005-07-10  Richard M. Stallman  <rms@gnu.org>
6732         * cus-face.el (custom-theme-set-faces): Make it work.
6733         (custom-reset-faces): Doc fix.
6734         (custom-theme-reset-internal-face, custom-theme-face-value):
6735         Functions deleted.
6737         * custom.el (custom-push-theme): Maintain list of the settings
6738         of a given theme in its theme-settings property.
6739         Maintain position of old settings in the theme-value
6740         or theme-face property.
6741         (custom-enabled-themes): New variable.
6742         (custom-theme-enabled-p): New function.
6743         (provide-theme): Update custom-enabled-themes.
6744         Disable and reenable the `user' theme.
6745         (require-theme): Doc fix.
6746         (custom-do-theme-reset, custom-remove-theme): Functions deleted.
6747         (custom-theme-value, custom-theme-variable-value): Likewise.
6748         (custom-theme-reset-internal): Likewise.
6749         (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
6750         (custom-enable-theme, custom-disable-theme): New functions.
6751         (custom-variable-theme-value, custom-face-theme-value): Likewise.
6752         (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
6753         (custom-theme-reset-variables): Simplify.
6754         (deftheme, custom-declare-theme, custom-make-theme-feature):
6755         Definitions moved.
6757 2005-07-10  Chong Yidong  <cyd@stupidchicken.com>
6759         * longlines.el (longlines-show-region)
6760         (longlines-unshow-hard-newlines): Recognize hard newlines by
6761         non-nil hard property, instead of t.
6763 2005-07-10  Michael Kifer  <kifer@cs.stonybrook.edu>
6765         * viper-cmd.el (viper--key-maps): New variable.
6766         (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
6767         emulation-mode-map-alists.
6768         (viper-envelop-ESC-key): Use viper-subseq.
6769         (viper-search-forward/backward/next): Disable debug-on-error.
6771         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
6772         (viper-ESC-key): New defcustoms.
6774         * viper-macs.el (ex-map-read-args): Use viper-subseq.
6776         * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
6777         (viper-subseq): Copy of subseq from cl.el.
6779         * viper.el (viper-go-away, viper-set-hooks): Use
6780         emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
6782         * viper-mous.el (viper-current-frame-saved): Use defvar.
6784         * viper-init.el: Get rid of -face in face names.
6786         * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
6787         Make it work with longlines mode
6789         * ediff-mult.el (ediff-meta-mode-hook): New variable.
6791         * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
6793         * ediff-init.el: Get rid of -face in face names.
6795 2005-07-10  Richard M. Stallman  <rms@gnu.org>
6797         * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
6798         and with-timeout-unsuspend.
6800         * emacs-lisp/debug.el (debug): Call with-timeout-suspend
6801         and with-timeout-unsuspend.
6803         * emacs-lisp/timer.el (with-timeout-timers): New variable.
6804         (with-timeout): Bind that variable to record timers.
6805         (with-timeout-suspend, with-timeout-unsuspend): New functions.
6807         * emacs-lisp/debug.el (debug-help-follow): New function.
6808         (debugger-mode-map): Use that instead of help-follow.
6809         (debugger-setup-buffer): Use eval-buffer-list
6810         to handle eval-buffer frames.
6812 2005-07-10  N. Raghavendra  <raghu@mri.ernet.in>  (tiny change)
6814         * timezone.el (timezone-parse-date): Change first regexp
6815         so it will not mistakenly match dates with no time zone.
6817 2005-07-10  Jeff Dwork  <jeff.dwork@amd.com>  (tiny change)
6819         * facemenu.el (facemenu-read-color): Do case-insensitive matching.
6821 2005-07-10  Luc Teirlinck  <teirllm@auburn.edu>
6823         * custom.el (custom-initialize-safe-set)
6824         (custom-initialize-safe-default): New functions.
6826         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
6827         and simplify :init-value.
6829         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
6830         and simplify :init-value.  Delete obsolete comment.
6832         * startup.el (command-line): Use `custom-reevaluate-setting' to
6833         handle `tooltip-mode'.  Delete obsolete comment.
6835         * files.el (set-visited-file-name): Avoid calling
6836         `file-name-nondirectory' with a nil argument.
6838 2005-07-09  Richard M. Stallman  <rms@gnu.org>
6840         * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
6841         was called with nil for the buffer, handle the read position right.
6842         Handle read position for eval-region, too.
6844 2005-07-09  Juri Linkov  <juri@jurta.org>
6846         * fringe.el (fringe-mode): Add period in docstring.
6847         (fringe-query-style): Build prompt depending on `all-frames' arg.
6849         * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
6850         to not create links to unrelated functions in the Help buffer.
6852         * progmodes/compile.el (compilation-mode-hook, compilation-mode):
6853         Doc fix.
6855         * simple.el (next-error-hook): New variable.
6856         (next-error): Use it.  Doc fix.
6858         * textmodes/ispell.el (ispell-command-loop): Add current
6859         dictionary name and program name to mode-line-format.
6860         (ispell-region, ispell-process-line): Add current dictionary name
6861         and program name to messages.
6863 2005-07-08  Jay Belanger  <belanger@truman.edu>
6865         * calc/calc.el (calc-embedded-announce-formula-alist)
6866         (calc-embedded-open-close-formula-alist)
6867         (calc-embedded-open-close-word-alist)
6868         (calc-embedded-open-close-plain-alist)
6869         (calc-embedded-open-close-new-formula-alist)
6870         (calc-embedded-open-close-mode-alist)
6871         (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
6872         (calc-embedded-mode-hook): New variables.
6874         * calc/calc-embed.el (calc-embedded-firsttime)
6875         (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
6876         New variables.
6877         (calc-do-embedded): Use calc-embedded-firsttime,
6878         calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
6879         determine whether or not to run hooks.
6880         (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
6881         calc-embedded-firsttime-formula appropriately.
6882         Set calc-embedded delimiter variables according to mode.
6884 2005-07-08  Richard M. Stallman  <rms@gnu.org>
6886         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
6887         Check for "emacs", etc., as entire symbol, not just as word.
6888         (checkdoc-file-comments-engine): Use regexp-quote on FN.
6890         * files.el (set-visited-file-name): Report the error
6891         for "empty filename" earlier.
6892         (kill-some-buffers): Ignore buffers already dead.
6894         * fringe.el (fringe-mode): Doc fix.
6896         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
6897         Check for (featurep 'xemacs) and turn off warnings in what it guards.
6898         Use unwind-protect to ensure byte-compile-unresolved-functions
6899         is updated.
6901         * whitespace.el (whitespace-buffer-leading-cleanup):
6902         Simplify w/ skip-chars-forward.
6903         (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
6905         * mail/rmail.el (rmail-only-expunge): Fix paren error.
6906         Unconditionally try to leave point at the same old place.
6908 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>  (tiny change)
6910         * comint.el (comint-postoutput-scroll-to-bottom)
6911         (comint-show-maximum-output): Take scroll-margin into consideration.
6913 2005-07-08  Kim F. Storm  <storm@cua.dk>
6915         * ido.el (ido-use-filename-at-point): New choice `guess'.
6916         (ido-file-internal): Try ffap-guesser if selected.
6918         * ido.el (ido-before-fallback-functions): New hook.
6919         (ido-buffer-internal, ido-file-internal, ido-read-buffer)
6920         (ido-read-file-name): Run it.
6922 2005-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6924         * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
6925         strings rather than a list of symbols to the completion function.
6927 2005-07-07  Jay Belanger  <belanger@truman.edu>
6929         * calc/calc-units.el (math-apply-units): Change the places in
6930         which units are simplified.
6932 2005-07-07  Luc Teirlinck  <teirllm@auburn.edu>
6934         * cus-edit.el (customize-option, customize-option-other-window):
6935         Make them handle aliases.
6937         * custom.el (custom-variable-p): Make it recursively follow
6938         aliases.  Mention that in the docstring.
6940 2005-07-07  Richard M. Stallman  <rms@gnu.org>
6942         * cus-start.el (exec-path): Use `directory' instead of `file'.
6943         Fix tag for nil.
6945 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
6947         * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
6948         when called non-interactively.  Doc fix.
6950 2005-07-07  Lute Kamstra  <lute@gnu.org>
6952         * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
6953         new address as well.
6955 2005-07-07  Kenichi Handa  <handa@m17n.org>
6957         * international/mule.el (make-coding-system):
6958         Describe `ascii-incompatible' property in the docstring.
6959         (set-file-name-coding-system): Signal an error if coding-system is
6960         ascii-incompatible.
6961         (set-keyboard-coding-system): Likewise.
6963         * international/mule-cmds.el (set-default-coding-systems):
6964         Don't set default-file-name-coding-system and
6965         default-keyboard-coding-system if coding-system is ASCII-incompatible.
6967         * international/utf-16.el: Declare that all UTF-16-based coding
6968         systems are ASCII-incompatible.
6970 2005-07-07  Nick Roberts  <nickrob@snap.net.nz>
6972         * progmodes/gud.el: Require font-lock for displaying errors.
6973         Used by gdb-ui.el.
6975 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
6977         * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
6978         values for the pattern lists which are `read'able but not
6979         `append'able (like symbols).
6981 2005-07-06  Richard M. Stallman  <rms@gnu.org>
6983         * progmodes/flymake.el (flymake-float-time): Instead of
6984         with-no-warnings, test for xemacs.
6985         (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
6986         to avoid warning.
6988 2005-07-06  Juanma Barranquero  <lekktu@gmail.com>
6990         * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
6992 2005-07-05  Lute Kamstra  <lute@gnu.org>
6994         * battery.el: Add support for Darwin (with much debugging help
6995         from Samuel Lauber <sam124@operamail.com>).
6996         (battery-status-function, battery-echo-area-format)
6997         (battery-mode-line-format): Add support for pmset on Darwin.
6998         (battery-load-low, battery-load-critical): New user options.
6999         (battery-pmset): New function.
7001 2005-07-05  Lute Kamstra  <lute@gnu.org>
7003         Update FSF's address in GPL notices.
7005         * textmodes/page-ext.el: Update FSF's address.
7007 2005-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7009         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
7010         filling from using prefix when filling a single-line docstring.
7012         * progmodes/flymake.el: Remove useless eval-when-compile.
7014         * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
7016 2005-07-04  Richard M. Stallman  <rms@gnu.org>
7018         * textmodes/org.el (org-file-apps-defaults-gnu):
7019         Rename from org-file-apps-defaults-linux.
7020         (org-default-apps): Don't test system-type for `linux'.
7021         (org-file-apps): Doc fix.
7023 2005-07-04  David Ponce  <david@dponce.com>
7025         * tree-widget.el: Improve header Commentary section.
7026         (tree-widget) [defgroup]
7027         (tree-widget-image-enable, tree-widget-themes-directory)
7028         (tree-widget-theme, tree-widget-image-properties-emacs)
7029         (tree-widget-image-properties-xemacs, tree-widget-create-image)
7030         (tree-widget-image-formats, tree-widget-control)
7031         (tree-widget-empty-control, tree-widget-leaf-control
7032         (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
7033         (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
7034         (tree-widget-keep, tree-widget-after-toggle-functions)
7035         (tree-widget-open-node, tree-widget-close-node): Doc fix.
7036         (tree-widget-open-control, tree-widget-close-control): Fix doc and
7037         :help-echo message.
7038         (tree-widget-set-theme): Doc fix.  Use `string-equal'.
7039         (tree-widget-image-properties): Doc fix.  Clearer implementation.
7040         (tree-widget--cursors): New constant.
7041         (tree-widget-lookup-image): New function split from
7042         `tree-widget-find-image'.  Clearer implementation.
7043         (tree-widget-find-image): Use it.
7044         (tree-widget-button-keymap): Use `set-keymap-parent'.
7045         (tree-widget) [define-widget]: Use `widget-children-value-delete'.
7046         Define the sub-widgets here.
7047         (tree-widget-node): Check that :node is not a tree-widget.
7048         (tree-widget-get-super, tree-widget-open-control)
7049         (tree-widget-close-control, tree-widget-empty-control)
7050         (tree-widget-leaf-control, tree-widget-guide)
7051         (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
7052         (tree-widget-no-handle, tree-widget-value-delete)
7053         (tree-widget-map): Remove.
7054         (tree-widget-children-value-save): Doc fix.  Simplified.
7055         (tree-widget-value-create): Update according to previous changes.
7057 2005-07-04  Carsten Dominik  <dominik@science.uva.nl>
7059         * textmodes/org.el: Leading space replaced by TABS.
7060         (org-recalc-marks, org-table-rotate-recalc-marks)
7061         (org-table-get-specials): Treat "^" and "_" marks.
7062         (org-table-justify-field-maybe): Optional argument NEW.
7063         (org-table-eval-formula): Parsing of the format simplified.
7064         New modes C,I.  Honor the %= parameter in the current table.
7065         Avoid unnecessary re-align by using the NEW argument to
7066         `org-table-justify-field-maybe'.
7067         (org-calc-default-modes): Default for date-format mimicks org-mode.
7068         (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
7070 2005-07-03  Luc Teirlinck  <teirllm@auburn.edu>
7072         * cus-face.el (custom-theme-set-faces): Make it handle face
7073         aliases whose alias declarations are pre- or autoloaded.
7075 2005-07-04  Juri Linkov  <juri@jurta.org>
7077         * faces.el (read-face-name): Put the code for getting a face name
7078         from the buffer before adding the faces from the `face' property.
7079         Use `completing-read-multiple' instead of `completing-read'.
7080         Require `crm'.  Add default value and post-process the returned
7081         list of faces.
7083         * emacs-lisp/crm.el (crm-find-current-element)
7084         (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
7086         * emacs-lisp/lisp-mode.el (eval-defun-1):
7087         * emacs-lisp/edebug.el (edebug-eval-defun):
7088         Remove unnecessary quotes.
7090 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
7092         * progmodes/prolog.el (prolog-eof-string): Doc fixes.
7093         (prolog-indent-level): Fix typo in docstring.
7095         * info.el (Info-history, Info-history-forward)
7096         (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
7098         * add-log.el (add-change-log-entry):
7099         * comint.el (comint-dynamic-list-input-ring)
7100         (comint-dynamic-list-completions):
7101         * dabbrev.el (dabbrev-expand):
7102         * delim-col.el (delimit-columns-rectangle-line):
7103         * diff-mode.el (diff-context->unified, diff-reverse-direction)
7104         (diff-unified->context):
7105         * ediff-init.el (ediff-abbrev-jobname):
7106         * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
7107         (ediff-replace-session-activity-marker-in-meta-buffer):
7108         * info.el (Info-summary):
7109         * lpr.el (printify-region):
7110         * printing.el (pr-create-interface):
7111         * ps-print.el (ps-print-quote):
7112         * ses.el (ses-column-widths, ses-print-cell)
7113         (ses-adjust-print-width, ses-center):
7114         * shell.el (shell-file-name-quote-list):
7115         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
7116         (strokes-fill-current-buffer-with-whitespace)
7117         (strokes-xpm-for-stroke, strokes-list-strokes)
7118         (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
7119         * term.el (term-dynamic-list-input-ring)
7120         (term-dynamic-list-completions):
7121         * calc/calc.el (math-format-stack-value):
7122         * emacs-lisp/edebug.el (edebug-display-freq-count):
7123         * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
7124         (delphi-new-comment-line):
7125         * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
7126         * progmodes/executable.el (executable-set-magic):
7127         * progmodes/python.el (inferior-python-mode):
7128         * progmodes/scheme.el (scheme-mode-syntax-table):
7129         * progmodes/sh-script.el (sh-maybe-here-document):
7130         * progmodes/sql.el (sql-copy-column):
7131         * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
7132         * textmodes/bibtex.el (bibtex-mode):
7133         * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
7134         (sgml-auto-attributes):
7135         * textmodes/table.el (table-insert, table-shorten-cell)
7136         (table--generate-source-scan-lines, table-delete-row)
7137         (*table--cell-delete-char, table--spacify-frame)
7138         (table--horizontally-shift-above-and-below)
7139         (table--cell-insert-char, table--cell-blank-str)
7140         (table--fill-region-strictly):
7141         * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
7142         * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
7144         * add-log.el (change-log):
7145         * apropos.el (apropos):
7146         * comint.el (comint-completion, comint-source):
7147         * dabbrev.el (dabbrev):
7148         * delim-col.el (columns):
7149         * diff-mode.el (diff-mode):
7150         * ediff.el (ediff):
7151         * ediff-diff.el (ediff-diff):
7152         * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
7153         * ediff-mult.el (ediff-mult):
7154         * ediff-ptch.el (ediff-ptch):
7155         * ediff-wind.el (ediff-window):
7156         * facemenu.el (facemenu):
7157         * indent.el (indent):
7158         * info.el (info):
7159         * jka-cmpr-hook.el (compression, jka-compr):
7160         * lpr.el (lpr):
7161         * outline.el (outlines):
7162         * pcmpl-cvs.el (pcmpl-cvs):
7163         * pcmpl-rpm.el (pcmpl-rpm):
7164         * printing.el (printing):
7165         * ps-print.el (postscript, ps-print, ps-print-horizontal)
7166         (ps-print-vertical, ps-print-headers, ps-print-font)
7167         (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
7168         (ps-print-background, ps-print-printer, ps-print-page)
7169         (ps-print-miscellany):
7170         * ses.el (ses):
7171         * shell.el (shell, shell-directories, shell-faces):
7172         * startup.el (initialization):
7173         * strokes.el (strokes):
7174         * term.el (term):
7175         * uniquify.el (uniquify):
7176         * w32-vars.el (w32):
7177         * calc/calc.el (calc):
7178         * emacs-lisp/bytecomp.el (bytecomp):
7179         * emacs-lisp/cl-indent.el (lisp-indent):
7180         * emacs-lisp/edebug.el (edebug):
7181         * emacs-lisp/elp.el (elp):
7182         * emacs-lisp/testcover.el (testcover):
7183         * emacs-lisp/trace.el (trace):
7184         * emulation/viper-ex.el (viper-ex):
7185         * emulation/viper-mous.el (viper-mouse):
7186         * mail/mailalias.el (mailalias):
7187         * mail/supercite.el (supercite, supercite-frames)
7188         (supercite-attr, supercite-cite, supercite-hooks):
7189         * net/rcompile.el (remote-compile):
7190         * net/rlogin.el (rlogin):
7191         * obsolete/ooutline.el (outlines):
7192         * progmodes/delphi.el (delphi):
7193         * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
7194         (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
7195         (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
7196         (ebnf-optimization):
7197         * progmodes/etags.el (etags):
7198         * progmodes/executable.el (executable):
7199         * progmodes/idlwave.el (idlwave):
7200         * progmodes/pascal.el (pascal):
7201         * progmodes/prolog.el (prolog):
7202         * progmodes/python.el (python):
7203         * progmodes/scheme.el (scheme):
7204         * progmodes/sh-script.el (sh, sh-script):
7205         * progmodes/sql.el (SQL):
7206         * progmodes/tcl.el (tcl):
7207         * textmodes/bibtex.el (bibtex, bibtex-autokey):
7208         * textmodes/enriched.el (enriched):
7209         * textmodes/makeinfo.el (makeinfo):
7210         * textmodes/sgml-mode.el (sgml):
7211         * textmodes/table.el (table-hooks):
7212         * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
7213         * textmodes/texinfo.el (texinfo):
7214         * textmodes/two-column.el (two-column):
7215         Finish `defgroup' description with period.
7217         * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
7218         * eshell/esh-var.el (eshell-var):
7219         * progmodes/vhdl-mode.el (vhdl-testbench):
7220         * textmodes/org.el (org): Fix typos in docstrings.
7222         * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
7223         consistency.
7225         * progmodes/flymake.el (flymake-find-file): Remove.
7226         (flymake-float-time): Use `with-no-warnings'.
7227         (flymake-check-start-time, flymake-check-was-interrupted)
7228         (flymake-err-info, flymake-is-running, flymake-last-change-time)
7229         (flymake-new-err-info): `defvar' at compile time.
7231 2005-07-03  Juanma Barranquero  <lekktu@gmail.com>
7233         * replace.el (occur-hook): Doc fix.
7234         (occur-1): Don't call `occur-hook' if there are no matches.
7236 2005-07-03  Richard M. Stallman  <rms@gnu.org>
7238         * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
7239         global-map, save the same map.
7240         (global-map): Don't alter it at top level.
7241         (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
7242         Then alter it here instead.
7243         (tpu-edt-off): Set global-map to the saved one.
7245         * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
7246         All references simplified.
7247         (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p.  Uses changed.
7248         (zmacs-regions): Add defvar.
7249         (repeat-complex-command-map): Everything about that deleted.
7251         * textmodes/artist.el (artist-key-is-drawing)
7252         (artist-key-endpoint1, artist-key-poly-point-list)
7253         (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
7254         (artist-key-compl-table, artist-rb-save-data)
7255         (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
7256         Don't put them in eval-when-compile.
7257         (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
7259         * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
7260         Use with-no-warnings.
7262         * net/browse-url.el (dos-windows-version): Add defvar.
7264         * mail/supercite.el (filladapt-prefix-table): Add defvar.
7266         * mail/rmailsum.el (rmail-summary-redo): Add defvar.
7267         (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
7268         (rmail-new-summary-line-count): Rename from new-summary-line-count.
7269         Add defvar.
7270         (rmail-summary-beginning-of-message): Use with-no-warnings.
7271         (rmail-summary-first-message, rmail-summary-last-message): Likewise.
7273         * emulation/vip.el (vip-replace-string, ex-map, ex-read):
7274         Use with-no-warnings.
7276         * emulation/vi.el (vi-mark-region): Use c-mark-function.
7277         (c-mark-function): Add point-moving-unit property.
7278         (vi-goto-line): Use with-no-warnings.
7280         * emulation/edt.el (edt-last-copied-word): Add defvar.
7281         (zmacs-region-stays): Likewise.
7282         (edt-mark-section-wisely): Use c-mark-function for C.
7283         Use makr-defun for Fortran.
7284         (time-string): defvar deleted.
7285         (edt-display-the-time): Don't set time-string.
7287         * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
7289         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
7290         Don't warn when name is not constant
7291         or for defining the group `emacs'.
7293         * tooltip.el (gud-tooltip-mode): Add defvar.
7295         * startup.el (default-frame-background-mode): Add defvar.
7297         * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
7299         * info.el (tool-bar-map): Add defvar.
7301         * dired.el (dnd-protocol-alist): Add defvar.
7303         * dired-aux.el (dired-query): Display question with answer, when
7304         the user answers.
7306         * custom.el (custom-add-option): Doc fix.
7308         * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
7310 2005-07-03  Eli Zaretskii  <eliz@gnu.org>
7312         * font-lock.el (font-lock-regexp-grouping-construct): Fix the
7313         bogus name from the last change.
7315 2005-07-02  Luc Teirlinck  <teirllm@auburn.edu>
7317         * custom.el (custom-declare-variable): Fix typos in comment.
7318         (custom-known-themes): Doc fix.
7319         (custom-theme-directory): New defcustom.
7320         (require-theme): Make it check `custom-theme-directory'.
7322         * cus-theme.el (custom-new-theme-mode): New function.
7323         (custom-theme-name, custom-theme-variables, custom-theme-faces)
7324         (custom-theme-description): Add compiler defvars.
7325         (customize-create-theme): Add doc to the "*New Custom Theme*"
7326         buffer.  Use `custom-new-theme-mode'.
7327         (custom-theme-write): Put the created buffer in emacs-lisp-mode
7328         and save it to the `custom-theme-directory'.  Make this the
7329         default directory of the buffer.
7331 2005-07-02  David Hunter  <hunterd_42@comcast.net>  (tiny change)
7333         * progmodes/flymake.el (flymake-mode, flymake-mode-off):
7334         Fix unbalanced parentheses.
7336 2005-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7338         * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
7339         into flymake-mode and delegate to flymake-mode.
7341         * find-file.el (ff-which-function-are-we-in): Clean up.
7343 2005-07-02  Juanma Barranquero  <lekktu@gmail.com>
7345         * replace.el (occur-rename-buffer): Fix docstring.
7347         * emulation/edt.el (*EDT-keys*, edt-default-global-map)
7348         (edt-last-copied-word, edt-learn-macro-count)
7349         (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
7350         (edt-rect-start-point, edt-user-global-map, rect-start-point)
7351         (time-string, zmacs-region-stays):
7352         * emulation/edt-mapper.el (edt-save-function-key-map)
7353         (EDT-key-name): `defvar' to silence the byte-compiler.
7355 2005-07-02  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
7357         * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
7358         font-lock-regexp-backslash.  Doc fix.
7359         (font-lock-regexp-backslash-grouping-construct): Rename from
7360         font-lock-regexp-backslash-construct.  Doc fix.
7361         (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
7362         grouping constructs.
7364 2005-07-02  Eli Zaretskii  <eliz@gnu.org>
7366         * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
7367         updating all the prerequisites.
7369 2005-07-01  Juanma Barranquero  <lekktu@gmail.com>
7371         * textmodes/org.el (org-agenda-start-on-weekday)
7372         (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
7373         (org-agenda-use-time-grid, org-archive-location)
7374         (org-allow-space-in-links, org-usenet-links-prefer-google)
7375         (org-enable-table-editor, org-export-default-language)
7376         (org-export-html-show-new-buffer, org-fill-paragraph)
7377         (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
7378         (org-goto-quit, org-occur, org-eval-in-calendar)
7379         (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
7380         (org-agenda-diary-entry, org-remember-help)
7381         (org-table-convert-region, org-at-table-p)
7382         (org-table-move-row-down, org-table-move-row-up)
7383         (org-table-copy-region, org-table-toggle-vline-visibility)
7384         (org-table-get-stored-formulas, org-table-get-specials)
7385         (org-recalc-commands, org-table-eval-formula)
7386         (org-table-formula-substitute-names, orgtbl-make-binding)
7387         (org-format-org-table-html, org-format-table-table-html)
7388         (org-format-table-table-html-using-table-generate-source)
7389         (org-customize): Fix typos in docstrings.
7390         (org-level-2, org-at-timestamp-p, org-agenda-day-view)
7391         (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
7392         (org-back-to-heading): Doc fixes.
7393         (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
7394         (org-agenda-change-all-lines, org-get-header):
7395         Improve argument/docstring consistency.
7396         (orgtbl-error): Fix error message.
7398         * progmodes/flymake.el (flymake-find-possible-master-files)
7399         (flymake-master-file-compare, flymake-get-line-err-count)
7400         (flymake-highlight-line, flymake-gui-warnings-enabled):
7401         Fix typos in docstrings.
7402         (flymake-parse-line, flymake-get-project-include-dirs-function)
7403         (flymake-get-prev-err-line-no, flymake-goto-prev-error):
7404         Doc fixes.
7405         (flymake-get-project-include-dirs-function)
7406         (flymake-make-err-menu-data):
7407         Improve argument/docstring consistency.
7409 2005-07-01  Lute Kamstra  <lute@gnu.org>
7411         * battery.el (battery-linux-proc-apm): Fix typo in docstring.
7412         Catch errors with ignore-errors.  Use temporary buffer.
7413         (battery-linux-proc-acpi): Fix typo in docstring.  Document `%r'.
7415         * facemenu.el (facemenu-unlisted-faces): Delete foreground and
7416         background color faces.
7417         (facemenu-set-foreground, facemenu-set-background):
7418         Use facemenu-set-face-from-menu.
7419         (facemenu-set-face-from-menu): Treat face names that start with
7420         "fg:" or "bg:" as special.
7421         (facemenu-add-new-color): Don't create faces.  Simplify.
7423 2005-06-30  Richard M. Stallman  <rms@gnu.org>
7425         * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
7426         (crm-find-current-element): Likewise.
7428 2005-06-30  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
7430         * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
7432 2005-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7434         * arc-mode.el (archive-extract): Make it work as a mouse binding.
7435         (archive-mouse-extract): Make it an obsolete alias.
7436         (archive-mode-map): Don't use archive-mouse-extract any more.
7437         (archive-mode, archive-extract): write-contents-hooks ->
7438         write-contents-functions.
7439         (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
7440         first arg.
7441         (archive-rename-entry): Update the call.
7442         (archive-zip-summarize): Remove unused var `method'.
7443         (archive-lzh-summarize): Remove unused var `creator'.
7445         * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
7446         dedicated frame upon exit.
7448         * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
7449         (archive-zip-extract, archive-zip-expunge)
7450         (archive-zip-update, archive-zip-update-case): Use executable-find.
7451         (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
7452         Use restore-buffer-modified-p.
7453         (archive-extract, archive-add-new-member, archive-write-file-member):
7454         Use with-current-buffer.
7455         (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
7457 2005-06-30  Andreas Schwab  <schwab@suse.de>
7459         * progmodes/gud.el (gud-filter): Remove unneeded progn.
7461 2005-06-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
7463         * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
7465 2005-06-30  Juri Linkov  <juri@jurta.org>
7467         * faces.el (vertical-border): Inherit from mode-line-inactive
7468         only on tty.
7470 2005-06-30  Juanma Barranquero  <lekktu@gmail.com>
7472         * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
7473         example, -NLINES in the `occur' docstring).
7475         * replace.el (occur-1): When no matches are found, do not set the
7476         `buffer-read-only' and modified flags for the occur buffer,
7477         because it is deleted.
7479         * emulation/cua-base.el (cua-check-pending-input)
7480         (cua-repeat-replace-region, cua-mode, cua-debug)
7481         (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
7482         Fix typos in docstrings.
7484         * emulation/cua-gmrk.el (cua-toggle-global-mark)
7485         (cua-cut-region-to-global-mark)
7486         (cua--cut-rectangle-to-global-mark):
7487         Remove period from end of messages.
7489         * emulation/cua-rect.el (cua-do-rectangle-padding):
7490         Remove period from end of messages.
7491         (cua--rectangle-seq-format): Fix typo in docstring.
7492         (cua-sequence-rectangle, cua-fill-char-rectangle):
7493         Improve argument/docstring consistency.
7495 2005-06-29  Juri Linkov  <juri@jurta.org>
7497         * faces.el (default-frame-background-mode): New internal variable.
7498         (frame-set-background-mode): Use it.
7500         * startup.el (normal-top-level): Set default-frame-background-mode
7501         instead of frame-background-mode.  Before setting it, test for its
7502         nil value.  Remove tests for frame-background-mode and frame
7503         parameter `reverse'.  Add test for "unspecified-fg".
7505         * term/xterm.el (xterm-rxvt-set-background-mode):
7506         * term/rxvt.el (rxvt-set-background-mode):
7507         Set default-frame-background-mode instead of frame-background-mode.
7509 2005-06-29  Juanma Barranquero  <lekktu@gmail.com>
7511         * simple.el (set-variable): Warn about obsolete user variables.
7513         * imenu.el (imenu--completion-buffer):
7514         * mouse.el (mouse-buffer-menu-alist):
7515         * msb.el (msb-invisible-buffer-p):
7516         * calendar/diary-lib.el (diary-header-line-format):
7517         * emacs-lisp/pp.el (pp-buffer):
7518         * progmodes/cperl-mode.el (cperl-do-auto-fill):
7519         * textmodes/picture.el (picture-replace-match):
7520         Change space constants followed by a sexp to "?\s ".
7522         * play/decipher.el (decipher-loop-with-breaks):
7523         * textmodes/texinfo.el (texinfo-insert-@item): Change space
7524         constants "protected" from end of line by a comment to "?\s".
7526 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7528         * font-lock.el (save-buffer-state): Use `declare'.
7530         * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
7531         reset the syntax-table to cperl-mode-syntax-table.
7532         (cperl-mode): Make _ into word-syntax during font-locking so "print" in
7533         "foo_print_bar" is not matched as a reserved keyword.
7535 2005-06-29  Carsten Dominik  <dominik@science.uva.nl>
7537         * textmodes/org.el (orgtbl-setup): New function, for delayed
7538         setup for the orgtbl commands.
7539         (org-calc-default-modes): New option.
7540         (orgtbl-make-binding): Use `defun' to get better help display.
7541         (org-diary): Call `org-compile-prefix-format'.
7542         (org-table-formula-substitute-names): New function.
7543         (org-agenda-day-view, org-agenda-week-view): New commands.
7544         (org-agenda-toggle-week-view): Command removed.
7545         (org-tbl-menu): Split off from org-org-menu.
7546         (org-mode): Move removal of outline-mode menus to here.
7547         (org-table-formula-debug): New option.
7548         (org-table-insert-row): Keep first field if just "#" or "*".
7549         (org-mode): Paragraph regexps fixed.
7550         (org-table-recalculate-regexp): New constant.
7551         (org-table-justify-field-maybe): Avoid replace if not necessary.
7552         (org-copy-special, org-cut-special): Use `call-interactively'.
7553         (org-table-copy-region): Take region from `interactive' call.
7554         (org-trim): Return string even if no match.
7555         (org-formula): New face.
7556         (org-set-font-lock-defaults): No longer highlight "FIXME".
7557         But highlight formula-related fields in table.
7558         (org-table-p): Use regexp, not fontification.
7559         (org-table-align): Handle white space at end of line.
7560         (org-table-formula-evaluate-inline): New option.
7561         (org-mode): Auto-wrapping in comment lines turned off.
7562         (org-table-copy-down): Evaluate only in copied field, not in
7563         destination.
7564         (org-table-current-formula): Variable removed.
7565         (org-table-store-formulas, org-table-get-stored-formulas)
7566         (org-table-modify-formulas, org-table-replace-in-formulas)
7567         (org-table-maybe-eval-formula): New functions.
7568         (org-table-get-formula): Modify to use stored formulas.
7569         (org-table-insert-column, org-table-delete-column)
7570         (org-table-move-column): Call `org-table-modify-formulas'.
7571         (org-complete): Add completion for keyword formulas.
7572         (orgtbl-mode): Pull orgtbl-mode-map to start of
7573         minor-mode-map-alist.
7575 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7577         * progmodes/python.el (python-check): Require `compile' before
7578         modifying its variables.
7580         * newcomment.el (comment-indent-default): Don't get fooled by an early
7581         end of buffer.
7583 2005-06-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7585         * ps-print.el (ps-print-version): Fix version number.
7587 2005-06-28  Luc Teirlinck  <teirllm@auburn.edu>
7589         * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
7591 2005-06-28  Richard M. Stallman  <rms@gnu.org>
7593         * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
7594         (flyspell-local-mouse-map): Declaration deleted.
7595         (flyspell-mouse-map): Bind only mouse-2.
7596         (flyspell-mode-map): Don't test flyspell-use-local-map.
7597         (flyspell-overlay-keymap-property-name): Var deleted.
7598         (flyspell-mode-on): Don't make local bindings for
7599         flyspell-mouse-map and flyspell-mode-map.
7600         (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
7602         * textmodes/ispell.el (ispell-word): Do not ignore short words.
7604         * progmodes/compile.el (compilation-next-error-function):
7605         Don't switch buffers; operate on the current buffer.
7607         * progmodes/compile.el (compilation-error-file-name)
7608         (compilation-warning-file-name, compilation-info-file-name)
7609         (compilation-line-number, compilation-column-number): New faces.
7610         (compilation-error-face, compilation-warning-face)
7611         (compilation-info-face, compilation-line-face)
7612         (compilation-column-face): Use them.
7614         * facemenu.el (facemenu-add-face): Warn when font-lock is active.
7616         * comint.el (comint-password-prompt-regexp): Accept ", try again".
7618         * bindings.el (global-map): Bind insertchar and its variants.
7620 2005-06-27  Richard M. Stallman  <rms@gnu.org>
7622         * textmodes/artist.el (artist-text-overwrite)
7623         (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
7625 2005-06-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7627         * ps-print.el: It was not working the page selection for printing.
7628         Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
7629         (ps-print-version): New version 6.6.7.
7630         (ps-end-sheet): New fun.
7631         (ps-header-sheet, ps-end-job): Call it.
7633 2005-06-27  Luc Teirlinck  <teirllm@auburn.edu>
7635         * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
7637 2005-06-27  Lute Kamstra  <lute@gnu.org>
7639         * facemenu.el (facemenu-unlisted-faces): Add foreground and
7640         background color faces.
7641         (facemenu-get-face): Delete function.
7642         (facemenu-set-face-from-menu): Don't call facemenu-get-face.
7643         (facemenu-add-new-color): Make second argument mandatory.
7644         Create the appropriate face and return it.  Simplify.
7645         (facemenu-set-foreground, facemenu-set-background): Don't check if
7646         color is defined.  Use return value of facemenu-add-new-color.
7648 2005-06-26  Nick Roberts  <nickrob@snap.net.nz>
7650         * progmodes/gud.el (gud-filter): Add missing argument to
7651         with-selected-window.
7653 2005-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7655         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
7656         a :require to the defcustom.
7658         * emacs-lisp/autoload.el (make-autoload): Add the :setter for
7659         defcustoms corresponding to minor modes.
7661 2005-06-26  David Ponce  <david@dponce.com>
7663         * recentf.el: Require tree-widget instead of wid-edit.
7664         (recentf-filename-handler): Fix widget :type.
7665         (recentf-cancel-dialog, recentf-open-more-files)
7666         (recentf-open-files-action): Doc fix.
7667         (recentf-dialog-goto-first): New function.
7668         (recentf-dialog-mode-map): Set parent keymap first.
7669         (recentf-dialog-mode): Define with define-derived-mode.
7670         Don't display continuation lines in dialogs.
7671         (recentf-edit-list): Rename from recentf-edit-selected-items.
7672         (recentf-edit-list-select): Rename from recentf-edit-list-action.
7673         Simplify.
7674         (recentf-edit-list-validate): New function.
7675         (recentf-edit-list): Update accordingly.
7676         (recentf-open-files-item-shift): Remove.
7677         (recentf-open-files-item): Convert menu elements into tree and
7678         link widgets.  Don't create the widgets.
7679         (recentf-open-files): Update accordingly.
7680         (recentf-save-list): Untabify.
7682 2005-06-25  Luc Teirlinck  <teirllm@auburn.edu>
7684         * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
7685         (keep-lines): Add INTERACTIVE arg.  Never delete lines only
7686         partially contained in the active region.  Do not take active
7687         region into account when called from Lisp, unless INTERACTIVE arg
7688         is non-nil.  Use `forward-line' instead of `beginning-of-line' to
7689         avoid trouble with fields.  Make marker point nowhere when no
7690         longer used.  Always return nil.  Doc fix.
7691         (flush-lines): Add INTERACTIVE arg.  Do not take active region
7692         into account when called from Lisp, unless INTERACTIVE arg is
7693         non-nil.  Use `forward-line' instead of `beginning-of-line' to
7694         avoid trouble with fields.  Make marker point nowhere when no
7695         longer used.  Always return nil.  Doc fix.
7696         (how-many): Add INTERACTIVE arg.  Make RSTART and REND args
7697         interchangeable.  Do not take active region into account when
7698         called from Lisp, unless INTERACTIVE arg is non-nil.  Do not print
7699         message in echo area when called from Lisp, unless INTERACTIVE arg
7700         is non-nil.  Avoid saying "1 occurrences".  Do not use markers.
7701         Return the number of matches.  Doc fix.
7702         (occur): Doc fix.
7703         (perform-replace): Make comment follow double space convention for
7704         the sake of `outline-minor-mode'.
7706         * faces.el (facep): Doc fix.
7708 2005-06-25  Richard M. Stallman  <rms@gnu.org>
7710         * facemenu.el (facemenu-enable-faces-p): New function.
7711         (facemenu-background-menu, facemenu-foreground-menu)
7712         (facemenu-face-menu): Add menu-enable property.
7714         * jka-compr.el (jka-compr-insert-file-contents):
7715         Special handling if cannot find the uncompression program.
7717         * cus-face.el (custom-face-attributes): Add autoload.
7719         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
7720         Bind comment-indent-function locally.
7722         * window.el (save-selected-window): Use save-current-buffer.
7724         * subr.el (with-selected-window): Use save-current-buffer.
7726         * progmodes/gud.el (gud-filter): Simplify using with-selected-window
7727         and with-current-buffer.
7729 2005-06-24  Richard M. Stallman  <rms@gnu.org>
7731         * simple.el (line-move-1): Fix previous change.
7733 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
7735         * replace.el (occur-1): Set `buffer-read-only' and the
7736         buffer-modified flag before running `occur-hook' to protect
7737         against unintentional buffer switches that can lead to data loss.
7739 2005-06-24  Nick Roberts  <nickrob@snap.net.nz>
7741         * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
7742         (gud-gdb-marker-filter): Use font-lock-warning-face for any
7743         initial error.
7745         * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
7746         after fresh input.
7747         (gdb-var-create-handler): Put name of expression in quotes.
7749 2005-06-23  Luc Teirlinck  <teirllm@auburn.edu>
7751         * emacs-lisp/ring.el (ring-elements): Make it return a list of the
7752         elements of RING in order, and without bogus nil elements.
7754 2005-06-23  Richard M. Stallman  <rms@gnu.org>
7756         * simple.el (set-variable): Args renamed; doc fix.
7757         (line-move-1): When there are overlays around, use vertical-motion.
7759         * faces.el (escape-glyph): Use brown against light background.
7760         (nobreak-space): Rename from no-break-space.
7761         Fix previous change.
7763         * dired-aux.el (dired-do-copy): Fix arg prompt.
7765         * mail/sendmail.el (mail-setup-with-from): Fix custom type.
7767 2005-06-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
7769         * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
7770         rather than "Distributor".
7772 2005-06-23  Lute Kamstra  <lute@gnu.org>
7774         * emacs-lisp/debug.el (debugger-special-form-p): New defun.
7775         (debug-on-entry): Use it.  New interactive declaration that uses
7776         function-called-at-point.
7778 2005-06-23  Kim F. Storm  <storm@cua.dk>
7780         * subr.el (save-match-data): Add comment about using evaporate arg
7781         to set-match-data.
7783 2005-06-22  Glenn Morris  <gmorris@ast.cam.ac.uk>
7785         * cus-edit.el (customize-face)
7786         (customize-face-other-window): Handle face aliases.
7788         * faces.el (face-documentation, set-face-attribute)
7789         (face-spec-set): Handle face aliases.
7791 2005-06-22  Juanma Barranquero  <lekktu@gmail.com>
7793         * help-mode.el (help-make-xrefs): If a symbol representing a face
7794         name is not followed by the word "face", it could still be a
7795         function or variable name, so don't bypass other checks.
7797 2005-06-22  Juri Linkov  <juri@jurta.org>
7799         * ps-print.el (ps-face-foreground-name, ps-face-background-name):
7800         Replace aliased functions with calls where second arg `inherit' is t.
7802 2005-06-22  Nick Roberts  <nickrob@snap.net.nz>
7804         * progmodes/gdb-ui.el (gdb-error): New variable.
7805         (gdb-error): New function.
7806         (gdb-annotation-rules): Act on error-begin and error annotations.
7807         (gdb-concat-output): Use font-lock-warning-face for errors.
7809 2005-06-22  Miles Bader  <miles@gnu.org>
7811         * bindings.el (propertized-buffer-identification): Use renamed
7812         `Buffer-menu-buffer' face.
7814         * faces.el (vertical-border): Rename from `vertical-divider'.
7815         (escape-glyph): Change dark-background color back to `cyan'.
7817 2005-06-21  Juri Linkov  <juri@jurta.org>
7819         * faces.el (face-user-default-spec): Try getting `customized-face'
7820         prior to `saved-face'.
7821         (frame-background-mode): Refill docstring.
7823         * emacs-lisp/lisp-mode.el (eval-defun-1):
7824         * emacs-lisp/edebug.el (edebug-eval-defun):
7825         Set `saved-face' temporarily to nil before calling form.
7826         Set `customized-face' to the new spec after that.
7828 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
7830         * subr.el (1value, lambda, key-substitution-in-progress):
7831         Doc fixes.
7833         * autoinsert.el (auto-insert-alist):
7834         * ses.el (ses-call-printer):
7835         * subr.el (noreturn):
7836         * emacs-lisp/lisp.el (check-parens):
7837         * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
7838         * net/browse-url.el (browse-url-mosaic):
7839         * progmodes/cc-defs.el (c-safe-scan-lists):
7840         * progmodes/ebnf-abn.el (ebnf-abn-lex):
7841         * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
7842         * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
7843         * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
7844         * progmodes/ebnf-iso.el (ebnf-iso-lex):
7845         * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
7847 2005-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7849         * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
7851 2005-06-21  Glenn Morris  <gmorris@ast.cam.ac.uk>
7853         * calendar/appt.el (appt-make-list): Activate the package, if
7854         not already active (for backwards compatibility).
7856 2005-06-20  Kim F. Storm  <storm@cua.dk>
7858         * subr.el (add-to-ordered-list): Test membership with eq.  Simplify.
7860 2005-06-20  Miles Bader  <miles@gnu.org>
7862         * faces.el (vertical-divider): New face.
7864 2005-06-20  Juanma Barranquero  <lekktu@gmail.com>
7866         * simple.el (kill-whole-line): Doc fix.
7867         (next-error-buffer-p, next-error-find-buffer)
7868         (clone-indirect-buffer): Fix typos in docstrings.
7869         (comment-line-break-function): Doc fix: don't say variable
7870         is automatically buffer-local (it isn't).
7872 2005-06-19  Michael Albinus  <michael.albinus@gmx.de>
7874         * net/tramp-ftp.el (top):
7875         * net/tramp-smb.el (top):
7876         * net/tramp-util.el (top):
7877         * net/tramp-uu.el (top):
7878         * net/tramp-vc.el (top):
7879         * net/tramp.el (top): Revert copyright years back to original
7880         ones.  Tramp has a life outside GNU Emacs.
7882 2005-06-19  Nick Roberts  <nickrob@snap.net.nz>
7884         * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
7886 2005-06-18  Juri Linkov  <juri@jurta.org>
7888         * progmodes/grep.el (grep-regexp-alist): Use backreference at the
7889         end of first regexp to limit the match to the position between
7890         line number and source line with same separator character as used
7891         between file name and line number.  In the second regexp limit
7892         mouse-face area to file name and line number by adding new group
7893         for them and referring it in HYPERLINK arg.
7894         (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
7895         (grep-mode): Set font-lock-lines-before to 0 to not refontify the
7896         previous line where grep markers may be already removed.
7898 2005-06-18  Peter Kleiweg  <p.c.j.kleiweg@rug.nl>
7900         * progmodes/ps-mode.el: Update version and maintainer's email address.
7902 2005-06-18  Steve Youngs  <steve@xemacs.org>
7904         * net/browse-url.el (browse-url-browser-function)
7905         (browse-url-default-browser): Add firefox.
7906         (browse-url-firefox-program, browse-url-firefox-arguments)
7907         (browse-url-firefox-startup-arguments)
7908         (browse-url-firefox-new-window-is-tab): New defcustoms.
7909         (browse-url-firefox, browse-url-firefox-sentinel): New functions.
7911 2005-06-17  Richard M. Stallman  <rms@gnu.org>
7913         * startup.el (command-line): Warn if specified user name has
7914         no home directory.
7916         * term.el (term-get-old-input, term-input-filter, term-input-sender)
7917         (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
7919         * longlines.el (longlines-mode, longlines-show-hard-newlines):
7920         Doc fixes.
7922         * faces.el (underline): Try bold if terminal doesn't support underline.
7924         * mail/sendmail.el (mail-setup-with-from): New variable.
7925         (mail-insert-from-field): New function.
7926         (sendmail-send-it): Call it.
7927         (mail-setup): Optionally call it here.
7929         * term/linux.el: Call tty-no-underline.
7931 2005-06-17  Luc Teirlinck  <teirllm@auburn.edu>
7933         * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
7935 2005-06-17  Miles Bader  <miles@gnu.org>
7937         * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
7938         (ediff-current-diff-C, ediff-current-diff-Ancestor)
7939         (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
7940         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
7941         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
7942         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
7943         Remove "-face" suffix from face names.
7944         (ediff-current-diff-face-A, ediff-current-diff-face-B)
7945         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
7946         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
7947         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
7948         (ediff-even-diff-face-A, ediff-even-diff-face-B)
7949         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
7950         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
7951         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
7952         New backward-compatibility aliases for renamed faces.
7953         (ediff-current-diff-face-A, ediff-current-diff-face-B)
7954         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
7955         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
7956         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
7957         (ediff-even-diff-face-A, ediff-even-diff-face-B)
7958         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
7959         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
7960         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
7961         Use renamed ediff faces.
7963         * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
7964         Remove "-face" suffix from face names.
7965         (eshell-test-ok-face, eshell-test-failed-face):
7966         New backward-compatibility aliases for renamed faces.
7967         (eshell-run-test): Use renamed eshell-test faces.
7969         * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
7970         face name.
7971         (eshell-prompt-face): New backward-compatibility alias for renamed
7972         face.
7973         (eshell-emit-prompt): Use renamed eshell-prompt face.
7975         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
7976         (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
7977         (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
7978         (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
7979         Remove "-face" suffix from face names.
7980         (eshell-ls-directory-face, eshell-ls-symlink-face)
7981         (eshell-ls-executable-face, eshell-ls-readonly-face)
7982         (eshell-ls-unreadable-face, eshell-ls-special-face)
7983         (eshell-ls-missing-face, eshell-ls-archive-face)
7984         (eshell-ls-backup-face, eshell-ls-product-face)
7985         (eshell-ls-clutter-face):
7986         New backward-compatibility aliases for renamed faces.
7987         (eshell-ls-decorated-name): Use renamed eshell-ls faces.
7989         * progmodes/cc-fonts.el (c-nonbreakable-space-face):
7990         Remove "-face" suffix from face name.
7991         (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
7992         instead of literal face.
7994 2005-06-17  Juanma Barranquero  <lekktu@gmail.com>
7996         * emacs-lisp/warnings.el (display-warning, lwarn)
7997         (warning-minimum-log-level): Doc fixes.
7998         (warning-minimum-level, warning-minimum-log-level):
7999         Add :debug to :type choices.
8001         * progmodes/ada-mode.el (ada-format-paramlist)
8002         (ada-get-indent-case, ada-check-matching-start)
8003         (ada-check-defun-name, ada-goto-matching-decl-start)
8004         (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
8005         (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
8006         (ada-make-subprogram-body): Follow error conventions.
8007         (ada-case-exception-file, ada-indent-comment-as-code)
8008         (ada-indent-handle-comment-special, ada-indent-renames)
8009         (ada-indent-return, ada-search-directories-internal)
8010         (ada-tab-policy, ada-case-exception-substring)
8011         (ada-other-file-alist, ada-matching-start-re)
8012         (ada-matching-decl-start-re, ada-contextual-menu-last-point)
8013         (ada-imenu-generic-expression, ada-compile-goto-error)
8014         (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
8015         (ada-popup-menu, ada-add-extensions, ada-mode)
8016         (ada-region-selected, ada-create-case-exception)
8017         (ada-create-case-exception-substring, ada-after-keyword-p)
8018         (ada-activate-keys-for-case, ada-adjust-case-region)
8019         (ada-adjust-case-buffer, ada-format-paramlist)
8020         (ada-scan-paramlist, ada-insert-paramlist)
8021         (ada-indent-newline-indent)
8022         (ada-indent-newline-indent-conditional)
8023         (ada-justified-indent-current, ada-goto-previous-word)
8024         (ada-indent-current, ada-get-indent-open-paren)
8025         (ada-get-indent-paramlist, ada-get-indent-end)
8026         (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
8027         (ada-get-indent-block-start, ada-get-indent-subprog)
8028         (ada-get-indent-noindent, ada-get-indent-label)
8029         (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
8030         (ada-search-prev-end-stmt, ada-goto-next-non-ws)
8031         (ada-goto-stmt-end, ada-goto-next-word)
8032         (ada-check-matching-start, ada-check-defun-name)
8033         (ada-goto-matching-decl-start, ada-goto-matching-start)
8034         (ada-goto-matching-end, ada-search-ignore-string-comment)
8035         (ada-in-decl-p, ada-looking-at-semi-or)
8036         (ada-looking-at-semi-private, ada-in-paramlist-p)
8037         (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
8038         (ada-untab-hard, ada-move-to-start, ada-move-to-end)
8039         (ada-next-procedure, ada-previous-procedure, ada-next-package)
8040         (ada-previous-package, ada-create-menu)
8041         (ada-fill-comment-paragraph-justify)
8042         (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
8043         (ada-other-file-name, ada-last-which-function-line)
8044         (ada-last-which-function-subprog, ada-which-function)
8045         (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
8046         (ada-gen-treat-proc, ada-check-emacs-version)
8047         (ada-continuation-indent, ada-align-region-separate):
8048         Fix typos in docstrings.
8049         (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
8051 2005-06-16  Lute Kamstra  <lute@gnu.org>
8053         * simple.el (fundamental-mode): Run after-change-major-mode-hook
8054         conditionally.
8056 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
8058         * comint.el (comint-replace-by-expanded-filename)
8059         (comint-prompt-regexp, comint-delimiter-argument-list)
8060         (comint-preinput-scroll-to-bottom):
8061         * info.el (Info-hide-cookies-node):
8062         * ls-lisp.el (ls-lisp-classify):
8063         * find-file.el (ff-search-directories, ff-special-constructs)
8064         (ff-find-other-file):
8065         * font-lock.el (font-lock-keywords):
8066         * shell.el (shell-prompt-pattern)
8067         (shell-dynamic-complete-functions, shell-mode)
8068         (shell-delimiter-argument-list):
8069         * term.el (term-replace-by-expanded-filename)
8070         (term-prompt-regexp, term-delimiter-argument-list):
8071         * woman.el (woman-ignore, woman0-if):
8072         * emacs-lisp/derived.el (derived-mode-init-mode-variables):
8073         * emacs-lisp/elint.el (elint-init-env):
8074         * emacs-lisp/regexp-opt.el (regexp-opt-depth):
8075         * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
8076         * language/ethio-util.el (ethio-tilde-escape)
8077         (ethio-use-three-dot-question):
8078         * net/zone-mode.el (zone-mode-load-time-setup):
8079         * progmodes/cc-align.el (c-lineup-argcont):
8080         * progmodes/cc-awk.el (c-awk-beginning-of-defun):
8081         * progmodes/cperl-mode.el (cperl-set-style-back):
8082         * progmodes/inf-lisp.el (inferior-lisp-prompt):
8083         * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
8084         Fix spellings in docstrings.
8086         * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
8087         * progmodes/modula2.el (m2-for): Fix spellings.
8089         * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
8091         * simple.el (undo-more): Don't use `format' on `error' arguments.
8092         Improve argument/docstring consistency.
8093         (pending-undo-list): Doc fix.
8095         * smerge-mode.el (smerge-ensure-match):
8096         * emulation/vip.el (vip-ex):
8097         * net/zone-mode.el (zone-mode-update-serial):
8098         * progmodes/idlwave.el (idlwave-complete):
8099         * progmodes/vhdl-mode.el (vhdl-visit-file)
8100         (vhdl-compose-wire-components):
8101         Don't use `format' on `error' arguments.
8103         * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
8104         (tooltip-use-echo-area, tooltip-process-prompt-regexp)
8105         (tooltip-help-tips): Fix typos in docstrings.
8107 2005-06-16  David Ponce  <david@dponce.com>
8109         * tree-widget.el (tree-widget-value-create): Simplify last change.
8111 2005-06-15  Matt Hodges  <MPHodges@member.fsf.org>
8113         * ido.el (ido-incomplete-regexp): New variable.
8114         (ido-set-matches-1): Handle invalid-regexp error and set
8115         ido-incomplete-regexp.
8116         (ido-incomplete-regexp): New face.
8117         (ido-completions): Use it.
8118         (ido-complete, ido-exit-minibuffer, ido-completions):
8119         Handle incomplete regexps.
8120         (ido-completions): Add check for complete match when entering a regexp.
8122 2005-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8124         * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
8126 2005-06-15  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
8128         * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
8129         by field delimiters.
8131 2005-06-15  David Ponce  <david@dponce.com>
8133         * tree-widget.el: eval-and-compile inlined functions so they will
8134         be available at run-time too.
8135         (tree-widget-super-format-handler)
8136         (tree-widget-format-handler): Remove.
8137         (tree-widget-value-create): Handle the :indent property.
8139 2005-06-15  Miles Bader  <miles@gnu.org>
8141         * progmodes/which-func.el (which-func): Only inherit
8142         `font-lock-function-name-face' when that makes sense against the
8143         default mode-line face, otherwise set the face color explicitly.
8145         * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
8146         faces instead of (non-existent) variables.
8148 2005-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8150         * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
8151         (iswitchb-get-matched-buffers): Likewise.  Simplify.
8153 2005-06-14  Miles Bader  <miles@gnu.org>
8155         * progmodes/ld-script.el (ld-script-location-counter):
8156         Remove "-face" suffix from face name.
8157         (ld-script-location-counter-face):
8158         New backward-compatibility alias for renamed face.
8159         (ld-script-location-counter-face): Use renamed face.
8161         * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
8162         (cperl-hash): Remove "-face" suffix from face names.
8163         (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
8164         New backward-compatibility aliases for renamed faces.
8165         (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
8166         (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
8168         * progmodes/which-func.el (which-func): Remove "-face" suffix from face
8169         name.
8170         (which-func-face): New backward-compatibility alias for renamed face.
8171         (which-func-format): Use renamed which-func face.
8173         * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
8174         (vhdl-function, vhdl-directive, vhdl-reserved-word)
8175         (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
8176         names.
8177         (vhdl-speedbar-entity, vhdl-speedbar-architecture)
8178         (vhdl-speedbar-configuration, vhdl-speedbar-package)
8179         (vhdl-speedbar-library, vhdl-speedbar-instantiation)
8180         (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
8181         (vhdl-speedbar-architecture-selected)
8182         (vhdl-speedbar-configuration-selected)
8183         (vhdl-speedbar-package-selected)
8184         (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
8185         names.
8186         (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
8187         Use renamed faces.
8188         (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
8189         (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
8190         (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
8191         Use renamed faces.
8192         (syntax-alist): Don't use "font-lock-" or "-face" in generated face
8193         names.
8194         (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
8195         (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
8196         (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
8197         (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
8198         (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
8199         (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
8201         * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
8202         face name.
8203         (sh-heredoc-face): New backward-compatibility alias for renamed face.
8204         (sh-heredoc-face): Use renamed sh-heredoc face.
8206         * progmodes/idlw-help.el (idlwave-help-link):
8207         Remove "-face" suffix from face name.
8208         (idlwave-help-link-face):
8209         New backward-compatibility alias for renamed face.
8210         (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
8212         * progmodes/idlw-shell.el (idlwave-shell-bp-face)
8213         (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
8214         (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
8215         New backward-compatibility aliases for renamed faces.
8216         (idlwave-shell-disabled-breakpoint-face)
8217         (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
8219         * progmodes/flymake.el (flymake-errline, flymake-warnline):
8220         Remove "-face" suffix from face names.
8221         (flymake-errline-face, flymake-warnline-face):
8222         New backward-compatibility aliases for renamed faces.
8223         (flymake-highlight-line): Use renamed flymake faces.
8225         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
8226         (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
8227         (ebrowse-member-class, ebrowse-progress):
8228         Remove "-face" suffix from face names.
8229         (ebrowse-tree-mark-face, ebrowse-root-class-face)
8230         (ebrowse-file-name-face, ebrowse-default-face)
8231         (ebrowse-member-attribute-face, ebrowse-member-class-face)
8232         (ebrowse-progress-face):
8233         New backward-compatibility aliases for renamed faces.
8234         (ebrowse-show-progress, ebrowse-show-file-name-at-point)
8235         (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
8236         (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
8237         (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
8239         * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
8240         antlr-syntax)
8241         (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
8242         (antlr-literal): Remove "-face" suffix and "font-lock-" from face
8243         names.
8244         (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
8245         (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
8246         (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
8247         (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
8248         backward-compatibility aliases for renamed faces.
8249         (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
8250         (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
8251         (antlr-tokenref-face, antlr-literal-face): Variables renamed to
8252         remove "font-lock-".  Use renamed antlr-mode faces.
8253         (antlr-font-lock-additional-keywords): Use renamed faces.  Replace
8254         literal face-names with face variable references.
8256         * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
8257         face name.
8258         (Buffer-menu-buffer-face): New backward-compatibility alias for
8259         renamed face.
8260         (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
8262 2005-06-15  Daniel Pfeiffer  <occitan@esperanto.org>
8264         * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
8265         Eliminate "-face" suffix.
8266         (makefile-targets): Inherit from font-lock-function-name-face and
8267         eliminate "-face" suffix.
8268         (makefile-shell): Remove attributes and eliminate "-face" suffix.
8269         (makefile-*-font-lock-keywords): Append makefile-targets in rule
8270         actions, instead of prepending, to make it less visible.
8271         (makefile-previous-dependency, makefile-match-dependency):
8272         Don't match a target on a continuation line.
8274         * files.el (auto-mode-alist): Put Makefile in gmake mode.
8276 2005-06-15  Nick Roberts  <nickrob@snap.net.nz>
8278         * progmodes/gdb-ui.el (menu): Re-order menu items.
8279         (gdb-tooltip-print): Respect tooltip-use-echo-area.
8281         * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
8282         Define in tooltip.el.
8283         (gud-tooltip-process-output): Respect tooltip-use-echo-area.
8284         (gud-tooltip-tips): Respect tooltip-use-echo-area and
8285         gud-tooltip-echo-area.
8287         * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
8288         backward compatibility and make obsolete.
8289         (tooltip-help-tips): Use tooltip-use-echo-area.
8290         (tooltip-show-help-function): Rename to...
8291         (tooltip-show-help): ...this, because it is a function.
8292         (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
8294 2005-06-14  Luc Teirlinck  <teirllm@auburn.edu>
8296         * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
8297         (edebug-print-length, edebug-print-level, edebug-print-circle)
8298         (edebug-modify-breakpoint, edebug-eval-last-sexp)
8299         (edebug-eval-print-last-sexp): Doc fixes.
8301 2005-06-14  Kim F. Storm  <storm@cua.dk>
8303         * ido.el (ido-mode): Make a new keymap every time we enable ido,
8304         as the coverage buffer/file/both may change.
8306 2005-06-14  Lute Kamstra  <lute@gnu.org>
8308         * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
8309         and run-mode-hooks.  Simplify.
8311         * mail/rmailedit.el (rmail-edit-mode):
8312         * progmodes/octave-inf.el (inferior-octave-mode):
8313         * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
8315         * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
8316         and run-mode-hooks.
8317         (recentf-edit-list, recentf-open-files): Don't call
8318         kill-all-local-variables directly.
8320         * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
8322 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
8324         * emacs-lisp/byte-run.el (make-obsolete)
8325         (define-obsolete-function-alias): Rename arguments FUNCTION and
8326         NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
8327         (make-obsolete-variable, define-obsolete-variable-alias):
8328         Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
8329         respectively.
8331         * isearchb.el (isearchb-activate):
8332         * pcvs.el (cvs-mode):
8333         * ses.el (ses-load):
8334         * vc-arch.el (vc-arch-checkin, vc-arch-diff):
8335         * net/tramp.el (tramp-find-file-exists-command)
8336         (tramp-find-shell):
8337         * progmodes/ada-mode.el (ada-create-case-exception)
8338         (ada-create-case-exception-substring, ada-make-subprogram-body):
8339         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
8340         * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
8341         * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
8342         * textmodes/org.el (org-promote, org-evaluate-time-range)
8343         (org-agenda-next-date-line, org-agenda-previous-date-line)
8344         (org-agenda-error, org-open-at-point, org-table-move-row)
8345         (org-format-table-table-html-using-table-generate-source)
8346         (org-shiftcursor-error, org-ctrl-c-ctrl-c):
8347         * textmodes/reftex.el (reftex-access-scan-info):
8348         * textmodes/reftex-toc.el (reftex-toc-dframe-p)
8349         (reftex-toc-promote-prepare): Follow error conventions.
8351         * diff-mode.el (diff-mode): Fix typo in docstring.
8353         * forms.el (forms--intuit-from-file): Fix reference to
8354         `forms-number-of-fields' in error message.
8355         (forms-print): Fix quoting in error message.
8357         * forms.el (forms-mode):
8358         * emulation/vi.el (vi-goto-insert-state):
8359         * progmodes/flymake.el (flymake-new-err-info)
8360         (flymake-start-syntax-check-for-current-buffer)
8361         (flymake-simple-cleanup):
8362         * eshell/esh-var.el (eshell/export):
8363         * progmodes/gud.el (xdb):
8364         * textmodes/flyspell.el (flyspell-incorrect-hook)
8365         (flyspell-maybe-correct-transposition)
8366         (flyspell-maybe-correct-doubling): Fix quoting in docstring.
8368 2005-06-13  Luc Teirlinck  <teirllm@auburn.edu>
8370         * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
8371         minibuffer prompt.
8373 2005-06-13  Kim F. Storm  <storm@cua.dk>
8375         * subr.el (add-to-ordered-list): New defun.
8377         * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
8378         add cua--keymap-alist to emulation-mode-map-alists.
8380 2005-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8382         * subr.el (complete-in-turn): New macro.
8383         (dynamic-completion-table, lazy-completion-table): Add debug info.
8385         * faces.el (read-face-name): Use complete-in-turn complete non-aliases
8386         in preference to face aliases.
8388         * textmodes/fill.el (fill-match-adaptive-prefix): New function.
8389         (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
8390         Remove unused vars `start' and `firstline'.
8391         (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
8392         (justify-current-line, fill-individual-paragraphs): Remove unused vars.
8394 2005-06-13  Eli Zaretskii  <eliz@gnu.org>
8396         * cus-start.el (all): Don't complain about missing GTK-related
8397         variables, unless either `gtk' is boundp or this isn't a
8398         `windows-nt' build.
8400 2005-06-13  Lute Kamstra  <lute@gnu.org>
8402         * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
8403         run-mode-hooks.
8405         * ediff-mult.el (ediff-meta-mode):
8406         * ediff-util.el (ediff-mode): Use run-mode-hooks.
8408         * ledit.el (ledit-mode): Use delay-mode-hooks.
8410         * woman.el (woman-mode-line-format): Delete constant.
8411         (woman-mode-map): Initialize it properly.
8412         (woman-mode): Set mode-class property to special.
8413         Use delay-mode-hooks and run-mode-hooks.  Use the right keymap.
8414         Set major-mode and mode-name.  Don't set mode-line-format directly.
8415         (Man-getpage-in-background): Don't reference woman-mode-line-format.
8417         * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
8418         string argument obsolete.
8420 2005-06-13  Carsten Dominik  <dominik@science.uva.nl>
8422         * textmodes/org.el (org-CUA-compatible): New option.
8423         (org-disputed-keys): New variable.
8424         (org-key): New function.
8425         (orgtbl-make-binding): Add docstring to the created function.
8426         (org-mode): Set paragraph start/separate regexps.
8427         (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
8428         (org-archive-location, org-archive-mark-done)
8429         (org-archive-stamp-time): New options.
8430         (org-archive-subtree): New command.
8431         (org-fill-paragraph): New function.
8432         (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
8433         (org-fake-empty-table-line): Function removed.
8434         (org-format-org-table-html): Do not create empty table lines at
8435         separator lines.  Improved table header treatment.
8436         (org-link-format): New option.
8437         (org-make-link): New function.
8438         (org-insert-link, org-store-link): Use org-make-link.
8439         (org-open-file): Quote file name for shell command, to allow
8440         spaces in file names.
8441         (org-link-regexp): Fix bug with mailto link.
8442         (org-link-maybe-angles-regexp, org-protected-link-regexp):
8443         New constants.
8444         (org-export-as-html): Deal with the optional angles around a link.
8445         Better treatment of file: links.
8446         (org-open-at-point): Replace @{ and @} with < and >.
8447         (org-run-mode-hooks): Function removed.
8448         (org-agenda-mode): No longer use `org-run-mode-hooks'.
8450 2005-06-13  Nick Roberts  <nickrob@snap.net.nz>
8452         * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
8453         MI command -data-list-register-values.
8454         (gdb-post-prompt): Indent properly.
8456 2005-06-13  Juanma Barranquero  <lekktu@gmail.com>
8458         * hilit-chg.el (highlight-changes-colors): Rename from
8459         `highlight-changes-colours'.
8460         (highlight-changes-colours): Keep as obsolete alias.
8461         (highlight-changes-face-list): Doc fix.
8462         (hilit-chg-make-list): Use `highlight-changes-colors'.
8464 2005-06-12  Mark A. Hershberger  <mah@everybody.org>
8466         * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
8467         defun-prompt-regexp.
8469 2005-06-12  Eli Zaretskii  <eliz@gnu.org>
8471         * loadup.el: Don't say we are dumping under 2 names on windows-nt
8472         and cygwin.
8474         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
8475         Don't use an old loaddefs.el, as in Makefile.in.
8477 2005-06-12  Lute Kamstra  <lute@gnu.org>
8479         * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
8481         * man.el (Man-mode-map): Initialize it properly.
8482         (Man-mode): Set mode-class property to special.
8484         * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
8486 2005-06-11  Luc Teirlinck  <teirllm@auburn.edu>
8488         * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
8489         A newline is needed in the docstring there.
8491         * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
8492         Doc fixes.
8494 2005-06-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8496         * printing.el: Doc fix.  The menubar is no more changed when printing
8497         is loaded, it only changes when pr-menu-bind or pr-update-menus is
8498         called.  Now, the menubar changing will work in Emacs 20, 21 and 22.
8499         (pr-version): New version number (6.8.4).
8500         (pr-menu-bind): New command.
8501         (pr-update-menus): Docstring and code fix.
8502         (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
8503         Docstring fix.
8504         (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
8505         (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
8507 2005-06-11  Thien-Thi Nguyen  <ttn@gnu.org>
8509         * emacs-lisp/ewoc.el: Doc fixes for public funcs:
8510         "Returns" to "return", document useful return values, etc.
8512 2005-06-11  Alan Mackenzie  <acm@muc.de>
8514         * fill.el (fill-context-prefix): Try `adaptive-fill-function'
8515         BEFORE `adaptive-fill-regexp' when determining a fill prefix.
8516         (adaptive-file-function): Minor amendment to doc-string.
8518 2005-06-11  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
8520         * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
8521         (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
8522         Fix :type--it is `integer', not `string'.
8524         * faces.el (modeline-highlight): Rename from (the erroneous)
8525         `modeline-higilight'.
8527 2005-06-11  Lute Kamstra  <lute@gnu.org>
8529         * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
8530         lisp-interaction-mode-map but make it the parent.
8531         (edebug-eval-mode): Use define-derived-mode.
8533 2005-06-11  Andreas Schwab  <schwab@suse.de>
8535         * bindings.el: Add binding of `ESC functionkey' for every
8536         `M-functionkey'.
8537         * hexl.el (hexl-mode-map): Likewise.
8539 2005-06-10  Michael Hotchin  <michael@hotchin.net>  (tiny change)
8541         * progmodes/compile.el (compilation-error-regexp-alist-alist)
8542         [msft]: update regexp for newer msft compilers.
8544 2005-06-10  Mark A. Hershberger  <mah@everybody.org>
8546         * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
8547         ATTLIST portions of included DTDs.
8548         (xml-parse-dtd): Eliminate use of inefficient match-data.
8550 2005-06-10  Miles Bader  <miles@gnu.org>
8552         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
8553         (mpuz-text): Remove "-face" suffix from face names.
8554         (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
8555         (mpuz-text-face): New backward-compatibility aliases for renamed faces.
8556         (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
8558         * play/gomoku.el (gomoku-O, gomoku-X):
8559         Remove "-face" suffix from face names.
8560         (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
8561         New backward-compatibility aliases for renamed faces.
8562         (gomoku-font-lock-keywords): Use renamed gomoku faces.
8564 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
8566         * thumbs.el: Fixes for changes of 2005-06-09.
8567         (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
8568         as a directory.
8569         (thumbs-thumbname): Remove directory separator from format string;
8570         `thumbs-thumbsdir' now returns a valid directory name.
8571         (thumbs-temp-dir): New defsubst.
8572         (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
8573         Use it.
8575         * cus-edit.el (minibuffer):
8576         * files.el (make-backup-file-name-function):
8577         * filesets.el (filesets-external-viewers):
8578         * hilit-chg.el (highlight-changes-colours)
8579         (highlight-changes-face-list, highlight-changes-rotate-faces):
8580         * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
8581         * kmacro.el (kmacro-call-macro):
8582         * log-edit.el (log-edit-changelog-full-paragraphs):
8583         * mouse.el (mouse-1-click-follows-link):
8584         * skeleton.el (skeleton-autowrap):
8585         * subr.el (insert-for-yank-1):
8586         * tempo.el (tempo-insert-region):
8587         * terminal.el (terminal-emulator):
8588         * time.el (display-time-mail-face):
8589         * vc.el (vc-annotate):
8590         * vcursor.el (vcursor-copy-line):
8591         * woman.el (woman-bold-headings, woman-ignore)
8592         (woman-default-faces, woman-monochrome-faces):
8593         * calendar/todo-mode.el (todo-insert-threshold):
8594         * emulation/pc-select.el (pc-select-selection-keys-only)
8595         (pc-selection-mode):
8596         * emulation/vip.el (vip-find-char-forward):
8597         * emulation/viper-cmd.el (viper-find-char-forward):
8598         * international/mule-cmds.el
8599         (select-safe-coding-system-accept-default-p)
8600         (input-method-exit-on-invalid-key):
8601         * international/mule-diag.el (describe-coding-system):
8602         * international/ucs-tables.el (unify-8859-on-encoding-mode):
8603         * net/browse-url.el (browse-url-xterm-program):
8604         * obsolete/lazy-lock.el (lazy-lock-mode):
8605         * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
8606         (cperl-mode):
8607         * progmodes/cpp.el (cpp-face-light-name-list)
8608         (cpp-face-dark-name-list):
8609         * progmodes/delphi.el (delphi-newline-always-indents):
8610         Fix spellings in docstrings.
8612         * ido.el (ido-mode, ido-file-extensions-order)
8613         (ido-default-file-method, ido-default-buffer-method)
8614         (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
8615         (ido-decorations, ido-read-file-name-as-directory-commands)
8616         (ido-read-file-name-non-ido, ido-work-directory-list)
8617         (ido-ignore-item-temp-list, ido-current-directory)
8618         (ido-magic-forward-char, ido-enter-find-file)
8619         (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
8620         (ido-find-file, ido-read-buffer): Fix typos in docstrings.
8622 2005-06-10  Lute Kamstra  <lute@gnu.org>
8624         * play/dunnet.el (dun-mode): Use define-derived-mode.
8625         (dungeon-mode-map): Rename to dun-mode-map.  Keep old name as an
8626         obsolete alias.
8628         * play/doctor.el (doctor-mode-map): Remove defvar.
8629         (doctor-mode): Use define-derived-mode.
8631         * mail/mspools.el (mspools-mode):
8632         * net/eudc-hotlist.el (eudc-hotlist-mode):
8633         * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
8635 2005-06-10  Miles Bader  <miles@gnu.org>
8637         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
8638         Remove "-face" suffix from face names.
8639         (flyspell-incorrect-face, flyspell-duplicate-face):
8640         New backward-compatibility aliases for renamed faces.
8641         (flyspell-mode-on, make-flyspell-overlay)
8642         (flyspell-highlight-incorrect-region)
8643         (flyspell-highlight-duplicate-region)
8644         (flyspell-display-next-corrections)
8645         (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
8647         * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
8648         from face name.
8649         (texinfo-heading-face): New backward-compatibility alias for
8650         renamed face.
8651         (texinfo-heading-face): Use renamed texinfo-heading face.
8653         * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
8654         suffix from face names.
8655         (tex-math-face, tex-verbatim-face):
8656         New backward-compatibility aliases for renamed faces.
8657         (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
8658         (tex-insert-quote): Use `tex-verbatim-face' variable instead of
8659         literal face name.
8661         * textmodes/table.el (table-cell): Remove "-face" suffix from face
8662         name.
8663         (table-cell-face): New backward-compatibility alias for renamed face.
8664         (table--put-cell-face-property, table--update-cell-face):
8665         Use renamed table-cell face.
8667         * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
8668         from face name.
8669         (sgml-namespace-face): New backward-compatibility alias for
8670         renamed face.
8671         (sgml-namespace-face): Use renamed sgml-namespace face.
8673         * textmodes/org.el (org-level-1, org-level-2, org-level-3)
8674         (org-level-4, org-level-5, org-level-6, org-level-7)
8675         (org-level-8, org-warning, org-headline-done)
8676         (org-deadline-announce, org-scheduled-today)
8677         (org-scheduled-previously, org-link, org-done, org-table)
8678         (org-time-grid): Remove "-face" suffix from face names.
8679         (org-level-1-face, org-level-2-face, org-level-3-face)
8680         (org-level-4-face, org-level-5-face, org-level-6-face)
8681         (org-level-7-face, org-level-8-face, org-warning-face)
8682         (org-headline-done-face, org-deadline-announce-face)
8683         (org-scheduled-today-face, org-scheduled-previously-face)
8684         (org-link-face, org-done-face, org-table-face)
8685         (org-time-grid-face):
8686         New backward-compatibility aliases for renamed faces.
8687         (org-level-faces, org-set-font-lock-defaults, org-timeline)
8688         (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
8689         (org-agenda-get-timestamps, org-agenda-get-scheduled)
8690         (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
8692         * emulation/viper-init.el (viper-search, viper-replace-overlay)
8693         (viper-minibuffer-emacs, viper-minibuffer-insert)
8694         (viper-minibuffer-vi): Remove "-face" suffix from face names.
8695         (viper-search-face, viper-replace-overlay-face)
8696         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
8697         (viper-minibuffer-vi-face):
8698         New backward-compatibility aliases for renamed faces.
8699         (viper-search-face, viper-replace-overlay-face)
8700         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
8701         (viper-minibuffer-vi-face): Use renamed viper faces.
8703         * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
8704         Remove "-face" suffix from face names.
8705         (testcover-nohits-face, testcover-1value-face):
8706         New backward-compatibility aliases for renamed faces.
8707         (testcover-mark): Use renamed testcover faces.
8709         * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
8710         face name.
8711         (diary-button-face): New backward-compatibility alias for renamed face.
8712         (diary-entry): Use renamed diary-button face.
8714         * calendar/calendar.el (diary, calendar-today, holiday)
8715         (mark-visible-calendar-date): Remove "-face" suffix from face names.
8716         (diary-face, calendar-today-face, holiday-face):
8717         New backward-compatibility aliases for renamed faces.
8718         (eval-after-load "facemenu", diary-entry-marker)
8719         (calendar-today-marker, calendar-holiday-marker, diary-face):
8720         Use renamed calendar faces.
8722         * compare-w.el (compare-windows): Remove "-face" suffix from face name.
8723         (compare-windows-face): New backward-compatibility alias for
8724         renamed face.
8725         (compare-windows-highlight): Use renamed compare-windows face.
8727         * strokes.el (strokes-char): Remove "-face" suffix from face name.
8728         (strokes-char-face): New backward-compatibility alias for renamed face.
8729         (strokes-encode-buffer): Use renamed strokes-char face.
8731         * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
8732         (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
8733         Remove "-face" suffix from face names.
8734         (cvs-header-face, cvs-filename-face, cvs-unknown-face)
8735         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
8736         (cvs-msg-face): New backward-compatibility aliases for renamed faces.
8737         (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
8738         Use renamed pcvs faces.
8739         * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
8740         * pcvs-defs.el (cvs-mode-map): Likewise.
8741         * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
8743         * info.el (info-title-1, info-title-2, info-title-3)
8744         (info-title-4): Remove "-face" suffix from and downcase face names.
8745         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
8746         (Info-title-4-face):
8747         New backward-compatibility aliases for renamed faces.
8748         (Info-fontify-node): Use renamed info faces.
8750         * hilit-chg.el (highlight-changes, highlight-changes-delete):
8751         Remove "-face" suffix from face names.
8752         (highlight-changes-face, highlight-changes-delete-face):
8753         New backward-compatibility aliases for renamed faces.
8754         (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
8755         (hilit-chg-make-list): Use renamed highlight-changes faces.
8757         * generic-x.el (show-tabs-tab, show-tabs-space):
8758         Remove "-face" suffix from face names.
8759         (show-tabs-tab-face, show-tabs-space-face):
8760         New backward-compatibility aliases for renamed faces.
8761         (show-tabs-generic-mode-font-lock-defaults-1)
8762         (show-tabs-generic-mode-font-lock-defaults-2):
8763         Use renamed show-tabs faces.
8765         * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
8766         (smerge-markers): Remove "-face" suffix from face names.
8767         (smerge-mine-face, smerge-other-face, smerge-base-face)
8768         (smerge-markers-face):
8769         New backward-compatibility aliases for renamed faces.
8770         (smerge-mine-face, smerge-other-face, smerge-base-face)
8771         (smerge-markers-face): Use renamed smerge faces.
8773         * log-view.el (log-view-file, log-view-message): Remove "-face"
8774         suffix from face names.
8775         (log-view-file-face, log-view-message-face):
8776         New backward-compatibility aliases for renamed faces.
8777         (log-view-file-face, log-view-message-face): Use renamed log-view
8778         faces.
8780         * paren.el (show-paren-match, show-paren-mismatch):
8781         Remove "-face" suffix from face names.
8782         (show-paren-match-face, show-paren-mismatch-face):
8783         New backward-compatibility aliases for renamed faces.
8784         (show-paren-function): Use renamed show-paren faces.
8786         * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
8787         (ruler-mode-margins, ruler-mode-fringes)
8788         (ruler-mode-column-number, ruler-mode-fill-column)
8789         (ruler-mode-comment-column, ruler-mode-goal-column)
8790         (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
8791         suffix from face names.
8792         (ruler-mode-default-face, ruler-mode-pad-face)
8793         (ruler-mode-margins-face, ruler-mode-fringes-face)
8794         (ruler-mode-column-number-face, ruler-mode-fill-column-face)
8795         (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
8796         (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
8797         New backward-compatibility aliases for renamed faces.
8798         (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
8799         (ruler-mode-column-number, ruler-mode-fill-column)
8800         (ruler-mode-comment-column, ruler-mode-goal-column)
8801         (ruler-mode-tab-stop, ruler-mode-current-column)
8802         (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
8803         faces.
8805         * whitespace.el (whitespace-highlight): Remove "-face" suffix from
8806         face name.
8807         (whitespace-highlight-the-space): Use renamed face.
8808         (whitespace-highlight-face): New backward-compatibility alias for
8809         renamed face.
8811         * woman.el (woman-italic, woman-bold, woman-unknown)
8812         (woman-addition, woman-symbol-face):
8813         Remove "-face" suffix from face names.
8814         (woman-italic-face, woman-bold-face, woman-unknown-face)
8815         (woman-addition-face):
8816         New backward-compatibility aliases for renamed faces.
8817         (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
8818         (woman-decode-region, woman-replace-match)
8819         (woman-display-extended-fonts, woman-special-characters)
8820         (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
8821         Use renamed woman faces.
8823         * longlines.el (longlines-visible-face): Face removed.
8825         * diff-mode.el (diff-header, diff-file-header, diff-index)
8826         (diff-hunk-header, diff-removed, diff-added, diff-changed)
8827         (diff-function, diff-context, diff-nonexistent): Remove "-face"
8828         suffix from face names.
8829         (diff-header-face, diff-file-header-face, diff-index-face)
8830         (diff-hunk-header-face, diff-removed-face, diff-added-face)
8831         (diff-changed-face, diff-function-face, diff-context-face)
8832         (diff-nonexistent-face): New backward-compatibility aliases for
8833         renamed faces.
8834         (diff-header-face, diff-file-header-face)
8835         (diff-index, diff-index-face, diff-hunk-header)
8836         (diff-hunk-header-face, diff-removed, diff-removed-face)
8837         (diff-added, diff-added-face, diff-changed-face, diff-function)
8838         (diff-function-face, diff-context-face, diff-nonexistent)
8839         (diff-nonexistent-face): Use renamed diff-mode faces.
8841         * progmodes/compile.el (compilation-warning-face)
8842         (compilation-info-face): Remove "-face" suffix from face names.
8843         (compilation-warning-face, compilation-info-face):
8844         New backward-compatibility aliases for renamed faces.
8845         (compilation-warning-face, compilation-info-face):
8846         Use renamed compilation faces.
8848         * add-log.el (change-log-date, change-log-name)
8849         (change-log-email, change-log-file, change-log-list)
8850         (change-log-conditionals, change-log-function)
8851         (change-log-acknowledgement): Remove "-face" suffix from face names.
8852         (change-log-date-face, change-log-name-face)
8853         (change-log-email-face, change-log-file-face)
8854         (change-log-list-face, change-log-conditionals-face)
8855         (change-log-function-face, change-log-acknowledgement-face):
8856         New backward-compatibility aliases for renamed faces.
8857         (change-log-font-lock-keywords): Use renamed change-log faces.
8859         * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
8860         (custom-set, custom-changed, custom-saved, custom-button)
8861         (custom-button-pressed, custom-documentation, custom-state)
8862         (custom-comment, custom-comment-tag, custom-variable-tag)
8863         (custom-variable-button, custom-face-tag, custom-group-tag-1)
8864         (custom-group-tag): Remove "-face" suffix from face names.
8865         (custom-magic-alist, custom-magic-value-create)
8866         (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
8867         (custom-invalid-face, custom-rogue-face, custom-modified-face)
8868         (custom-set-face, custom-changed-face, custom-saved-face)
8869         (custom-button-face, custom-button-pressed-face)
8870         (custom-documentation-face, custom-state-face)
8871         (custom-comment-face, custom-comment-tag-face)
8872         (custom-variable-tag-face, custom-variable-button-face)
8873         (custom-face-tag-face, custom-group-tag-face-1)
8874         (custom-group-tag-face):
8875         New backward-compatibility aliases for renamed faces.
8877         * wid-edit.el (widget-documentation, widget-button)
8878         (widget-field, widget-single-line-field, widget-inactive)
8879         (widget-button-pressed): "-face" suffix removed from face names.
8880         (widget-documentation-face, widget-button-face)
8881         (widget-field-face, widget-single-line-field-face)
8882         (widget-inactive-face, widget-button-pressed-face):
8883         New backward-compatibility aliases for renamed faces.
8884         (widget-documentation-face, widget-button-face)
8885         (widget-button-pressed-face, widget-specify-field)
8886         (widget-specify-inactive): Use renamed widget faces.
8888 2005-06-10  Kenichi Handa  <handa@m17n.org>
8890         * term/x-win.el (x-clipboard-yank): Remove condition-case
8891         wrapping.
8893 2005-06-11  Kenichi Handa  <handa@m17n.org>
8895         * add-log.el (change-log-font-lock-keywords): Make the regexp for
8896         date lines stricter.
8898 2005-06-10  Zhang Wei  <id.brep@gmail.com>  (tiny change)
8900         * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
8901         of x-get-selection.
8903 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
8905         * comint.el (comint-mode, comint-snapshot-last-prompt):
8906         * frame.el (frame-current-scroll-bars):
8907         * term.el (term-mode, term-check-proc, term-input-sender)
8908         (term-simple-send, term-extract-string, term-word)
8909         (term-match-partial-filename):
8910         * window.el (window-current-scroll-bars):
8911         * emulation/cua-base.el (cua-normal-cursor-color)
8912         (cua-read-only-cursor-color, cua-overwrite-cursor-color)
8913         (cua-global-mark-cursor-color):
8914         * mail/undigest.el (rmail-forward-separator-regex):
8915         Fix typos in docstrings.
8917         * comint.el (comint-check-proc, make-comint-in-buffer)
8918         (comint-source-default): Doc fixes.
8920         * term.el (term-send-string): Improve argument/docstring consistency.
8922 2005-06-09  Luc Teirlinck  <teirllm@auburn.edu>
8924         * comint.el (comint-send-input): Bind `inhibit-read-only' around
8925         call to `delete-region'.
8926         (comint-mode-hook): Do not enable Font Lock by default.
8928 2005-06-09  Lute Kamstra  <lute@gnu.org>
8930         * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
8931         could be void.
8933 2005-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8935         * emacs-lisp/debug.el (debugger-will-be-back): New var.
8936         (debug): Use it.
8937         (debugger-step-through, debugger-continue, debugger-jump)
8938         (debugger-return-value): Set it when needed.
8939         (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
8940         Use inhibit-read-only.
8942 2005-06-09  Juanma Barranquero  <lekktu@gmail.com>
8944         * window.el (shrink-window-if-larger-than-buffer)
8945         (window-size-fixed): Fix typo in docstring.
8947         * thumbs.el: Don't set `auto-image-file-mode'.  Do not create the
8948         thumbnails directory on loading.
8949         (thumbs-conversion-program): Use `eq' to check the system type,
8950         not `equal'.
8951         (thumbs-temp-dir): Initialize to `temporary-file-directory',
8952         not "/tmp".  Fix docstring.
8953         (thumbs-thumbsdir): New function to return the thumbnails
8954         directory, creating it if needed.
8955         (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
8956         (thumbs-temp-file): Delete variable and make it into a function.
8957         (thumbs-resize-image, thumbs-modify-image): Use it.
8958         (thumbs-kill-buffer): Simplify.
8959         (thumbs-gensym): Defalias or duplicate CL `gensym'.
8960         (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
8961         docstrings.
8963 2005-06-09  Kim F. Storm  <storm@cua.dk>
8965         * subr.el (save-match-data): Add RESEAT arg `evaporate' to
8966         set-match-data to free markers in match-data.
8968         * replace.el (replace-match-data): Pass RESEAT arg `t' to
8969         match-data to unchain markers in match-data.
8971 2005-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8973         * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
8974         the debugger immediately anyway.  Undo the 2005-06-06 change, rendered
8975         unnecessary now.
8977 2005-06-08  Richard M. Stallman  <rms@gnu.org>
8979         * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
8980         give the variable a doc string that doesn't say don't set it directly.
8982         * textmodes/ispell.el (ispell-check-version):
8983         Use match-string-no-properties.
8984         (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
8985         (ispell-buffer-local-words): Likewise.
8987         * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
8988         except on terminals with enough colors to really display it.
8989         (makefile-dependency-regex): Delete spurious `bb'.
8991         * faces.el (escape-glyph): Use blue once again in last case.
8992         (no-break-space): Redefine so that it isn't invisible on a tty.
8994 2005-06-08  Kim F. Storm  <storm@cua.dk>
8996         * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
8997         also when reading directory name.
8999 2005-06-08  Lute Kamstra  <lute@gnu.org>
9001         * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
9002         (flyspell-mode-line-string): Remove autoload cookie.
9003         (flyspell-mode): Remove defvar.
9005 2005-06-07  Lute Kamstra  <lute@gnu.org>
9007         * textmodes/org.el (org-run-mode-hooks): New function.
9008         (org-agenda-mode): Use it.
9010 2005-06-07  David McCabe  <davemccabe@gmail.com>  (tiny change)
9012         * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
9014 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9016         * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
9018 2005-06-06  Luc Teirlinck  <teirllm@auburn.edu>
9020         * font-lock.el (font-lock-add-keywords): Doc fix.
9022 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9024         * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
9025         (tex-compile-default): In the absence of any history, use the order in
9026         tex-compile-alist to choose the preferred command.
9027         (tex-compile-commands): Reorder a bit.
9029         * textmodes/flyspell.el (flyspell-auto-correct-binding)
9030         (flyspell-incorrect-face, flyspell-duplicate-face):
9031         Use (X)Emacs-agnostic code.
9032         (flyspell-mode-map): Don't overwrite at each load.  Remove code
9033         redundant with the subsequent add-minor-mode.  Merge Emacs and
9034         XEmacs code.
9035         (flyspell-word): Minor simplification.
9036         (flyspell-math-tex-command-p): Quieten the byte-compiler.
9037         (flyspell-external-point-words): Remove unused vars `size' and `start'.
9038         (flyspell-do-correct): Rename from flyspell-xemacs-correct.
9039         Merge the corresponding Emacs code.
9040         (flyspell-correct-word, flyspell-xemacs-popup):
9041         Use flyspell-do-correct.
9043         * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
9044         a dedicated window.
9046         * international/latexenc.el (latexenc-find-file-coding-system):
9047         Undo part of last patch, to turn off a compiler warning.
9049 2005-06-06  Juri Linkov  <juri@jurta.org>
9051         * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
9052         Rename `tmm-inactive-face' to `tmm-inactive'.
9054 2005-06-06  Matt Hodges  <MPHodges@member.fsf.org>
9056         * iswitchb.el: Rename faces.
9058 2005-06-06  Kim F. Storm  <storm@cua.dk>
9060         * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
9061         (cua-global-mark): Remove -face suffix from face names.
9063         * emulation/cua-gmrk.el (cua--init-global-mark):
9064         Remove cua-global-mark face setup.
9066 2005-06-06  Richard M. Stallman  <rms@gnu.org>
9068         * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
9069         just like other allowed characters.
9070         (makefile-match-dependency): Exclude leading and training whitespace
9071         from the range of regexp subexp 1.
9072         (makefile-macroassign-regex): Don't try to match the body,
9073         just the name of the macro being defined.
9075         * info.el (Info-read-node-name-2): New function.
9076         (Info-read-node-name-1): Use that.
9077         Add a completion-base-size-function property.
9079         * simple.el (completion-setup-function): Look for
9080         completion-base-size-function property of minibuffer-completion-table.
9082         * files.el (locate-file-completion): Doc fix.
9084         * printing.el: Don't call pr-update-menus; user must do that.
9086         * emacs-lisp/debug.el (debugger-window): New variable.
9087         (debug): Use debugger-window if it is set and still alive.
9088         Record debugger-window for next entry.
9090         * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
9092 2005-06-06  Matthias F\e,Av\e(Brste  <slashdevslashnull@gmx.net>
9094         * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
9095         (hack-one-local-variable, hack-local-variables)
9096         (hack-local-variables-prop-line): Pass that arg.
9098 2005-06-06  Kim F. Storm  <storm@cua.dk>
9100         * ido.el (ido-first-match, ido-only-match, ido-subdir)
9101         (ido-indicator): Remove -face suffix from face names.
9103 2005-06-06  Juri Linkov  <juri@jurta.org>
9105         * font-lock.el (font-lock-regexp-backslash)
9106         (font-lock-regexp-backslash-construct): New faces.
9107         (lisp-font-lock-keywords-2): Use new faces.  Match `?:' only
9108         after `('.  Add `while-no-input' to control structures.
9110         * faces.el (no-break-space, shadow): New faces.
9111         (escape-glyph): Use less loud colors pink2 and red4.
9113         * diff-mode.el (diff-context-face)
9114         * dired.el (dired-ignored)
9115         * rfn-eshadow.el (file-name-shadow)
9116         * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
9118         * info.el (Info-title-1-face): Use green instead of yellow because
9119         bold yellow is not readable on light backgrounds.
9121         * progmodes/compile.el (compilation-start): Move `erase-buffer' up
9122         before selecting the desired mode to not spend time fontifying
9123         old contents.
9125 2005-06-06  Juanma Barranquero  <lekktu@gmail.com>
9127         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
9128         (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
9130         * ps-print.el (ps-default-fg, ps-default-bg):
9131         Fix typos in docstrings.
9133         * isearchb.el (isearchb): Don't pass a spurious second argument to
9134         `iswitchb-completions'.
9136 2005-06-05  Nick Roberts  <nickrob@snap.net.nz>
9138         * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
9139         to preserve point.
9140         (gdb-find-file-hook): Add doc string.
9142         * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
9143         C dereferenced pointer expression.
9144         (gud-tool-bar-map): Put it on the tool bar.  Re-order icons.
9146         * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
9148         * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
9149         * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
9150         * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
9151         * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
9152         * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
9153         Make background transparent.
9155 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
9157         * font-lock.el (font-lock-add-keywords): Doc fix.  Comment change.
9158         (font-lock-remove-keywords): Doc fix.
9159         (font-lock-mode-major-mode): Compiler defvar.
9160         (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
9162         * font-core.el (font-lock-mode-major-mode): Compiler defvar.
9163         (font-lock-mode): Update `font-lock-mode-major-mode'.
9164         (font-lock-set-defaults): Compiler defvar.
9165         (font-lock-default-function): Take `font-lock-mode-major-mode'
9166         into account.
9168         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
9169         keep track of which major mode it enabled the minor mode for.
9170         Use find-file-hook again.  Update docstring.
9172         * simple.el (eval-expression-print-level)
9173         (eval-expression-print-length, eval-expression-debug-on-error):
9174         Doc fixes.
9176 2005-06-04  Matt Hodges  <MPHodges@member.fsf.org>
9178         * iswitchb.el (iswitchb-single-match-face)
9179         (iswitchb-current-match-face, iswitchb-virtual-matches-face)
9180         (iswitchb-invalid-regexp-face): New faces.
9181         (iswitchb-completions): Use them.
9182         (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
9183         now marked as an obsolete alias.
9184         (iswitchb-read-buffer): Remove check for bound font variables.
9185         (iswitchb-invalid-regexp): New free variable.
9186         (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
9187         set iswitchb-invalid-regexp.
9188         (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
9189         invalid regexps.
9190         (iswitchb-completions): Add check for complete match when entering
9191         a regexp.
9192         (iswitchb-completions): Remove require-match argument.
9193         (iswitchb-exhibit): Fix caller.
9194         (iswitchb-common-match-inserted): New variable.
9195         (iswitchb-complete, iswitchb-completion-help): Use it.
9197 2005-06-04  David Reitter  <david.reitter@gmail.com>  (tiny change)
9199         * url-http.el (url-http-chunked-encoding-after-change-function):
9200         Use `url-http-debug' instead of `message'.
9202 2005-06-04  Thierry Emery  <thierry.emery@free.fr>  (tiny change)
9204         * url-http.el (url-http-parse-headers): Pass redirected URL as a
9205         callback argument.
9207 2005-06-04  Kim F. Storm  <storm@cua.dk>
9209         * simple.el (line-move): Only call sit-for when moving backwards.
9211         * ido.el (ido-make-merged-file-list-1): New defun split from
9212         ido-make-merged-file-list.
9213         (ido-make-merged-file-list): Bind throw-on-input around call to
9214         ido-make-merged-file-list-1.  Return input-pending-p if
9215         interrupted by more input available.
9216         (ido-read-internal): Handle input-pending-p return value from
9217         ido-make-merged-file-list.
9219 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9221         * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
9222         compatibility code.
9224         * international/latexenc.el (latexenc-find-file-coding-system):
9225         Don't inherit the EOL part of the coding-system from the
9226         tex-main buffer.  Fit within 80 columns.
9228 2005-06-03  Matt Hodges  <MPHodges@member.fsf.org>
9230         * tmm.el (tmm-inactive-face): New face.
9231         (tmm-remove-inactive-mouse-face): New function.
9232         (tmm-prompt, tmm-add-one-shortcut)
9233         (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
9234         but not selectable.
9236 2005-06-03  Juanma Barranquero  <lekktu@gmail.com>
9238         * faces.el (face-equal): Improve argument/docstring consistency.
9240 2005-06-03  Daniel Pfeiffer  <occitan@esperanto.org>
9242         * progmodes/make-mode.el (makefile-targets-face)
9243         (makefile-shell-face, makefile-makepp-perl-face): Add :version.
9244         (makefile-bsdmake-dependency-regex)
9245         (makefile-makepp-rule-action-regex)
9246         (makefile-bsdmake-rule-action-regex): New constants.
9247         (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
9249         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9250         Allow (...) within `...' for makepp messages.
9252 2005-06-03  Michael Kifer  <kifer@cs.stonybrook.edu>
9254         * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
9256         * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
9257         "." files are deleted from all file lists before comparison.
9259         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
9260         (viper-ESC-key): Made them customizable.
9262         * viper.el (viper-non-hook-settings): Fix the names of defadvices.
9264 2005-06-01  Luc Teirlinck  <teirllm@auburn.edu>
9266         * autorevert.el (auto-revert-buffers): Use save-match-data.
9268 2005-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9270         * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
9271         menu items with a nil command binding.
9273 2005-06-01  Juanma Barranquero  <lekktu@gmail.com>
9275         * emacs-lisp/cl-macs.el (defsetf):
9276         Improve argument/docstring consistency.
9278         * faces.el (list-faces-display): Improve the formatting by
9279         computing the maximum length required for any face-name (reworked
9280         patch of 1999-01-11, accidentally deleted on 1999-07-21).
9281         (internal-find-face): Remove redundant info in docstring.
9283 2005-06-01  Nick Roberts  <nickrob@snap.net.nz>
9285         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
9286         (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
9287         (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
9288         (gdb-assembler-custom): Improve regexps.
9289         (def-gdb-auto-update-handler): Use window point to preserve point.
9291 2005-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9293         * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
9295 2005-05-31  Jay Belanger  <belanger@truman.edu>
9297         * calc/calc-embed.el (calc-embedded-word): Change argument passed
9298         to calc-embedded.
9299         (calc-embedded-make-info): Have plain prefix argument select
9300         entire line.
9302 2005-05-31  Juanma Barranquero  <lekktu@gmail.com>
9304         * faces.el (list-faces-display): Signal error if passed a regexp
9305         that matches no face name.
9307         * simple.el (filter-buffer-substring): Fix typo in docstring.
9309 2005-05-31  Richard M. Stallman  <rms@gnu.org>
9311         * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
9312         (vhdl-emacs-21): Doc fix.
9313         (vhdl-mode): Unconditionally set comment-padding.
9314         (vhdl-fixup-whitespace-region): Insert spaces only where
9315         there are none.
9316         (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
9318 2005-05-30  John Wiegley  <johnw@newartisans.com>
9320         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
9321         * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
9322         * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
9323         `directory-sep-char' to ?/, and all uses of `string-to-int' to
9324         `string-to-number'.
9326 2005-05-30  Jay Belanger  <belanger@truman.edu>
9328         * calc/calc.el (calc-bug-address): Fix docstring.
9329         (calc-window-hook, calc-trail-window-hook): New variables.
9330         (calc-trail-display): Restore use of calc-trail-window-hook.
9331         (calc): Restore use of calc-window-hook.
9333 2005-05-31  Masatake YAMATO  <jet@gyve.org>
9335         * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
9337         * help-fns.el (help-C-file-name): Add autoload mark for
9338         `find-function-noselect'.
9340 2005-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9342         * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
9343         (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
9345 2005-05-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
9347         * calendar/diary-lib.el (mark-included-diary-files): Only kill
9348         included diary buffer if it was not already being visited.
9349         Reported by Stephen Berman <Stephen.Berman@gmx.net>.
9351         * calendar/icalendar.el (top-level): Do not require 'appt.
9353         * mail/supercite.el (sc-select-attribution): Only use a list
9354         element from sc-attrib-selection-list if it returns a string.
9355         Reported by Davide G. M. Salvetti <salve@debian.org>.
9357 2005-05-30  Juanma Barranquero  <lekktu@gmail.com>
9359         * thumbs.el (thumbs-thumbname): The resulting thumbname now
9360         includes a hash value to improve its uniqueness, and has a ".jpg"
9361         extension.  Also, it is now a valid filename on all systems.
9362         (thumbs-make-thumb): Use `let', not `let*'.
9363         (thumbs-show-thumbs-list): Check for JPEG availability.
9365 2005-05-30  Richard M. Stallman  <rms@gnu.org>
9367         * filesets.el (filesets-menu-ensure-use-cached):
9368         Prevent warning when emacs-version>= is undefined.
9370         * printing.el (pr-interactive-n-up): Use string-to-number.
9372         * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
9374         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
9375         Warn only when name to be defined is quoted.
9377 2005-05-30  Nick Roberts  <nickrob@snap.net.nz>
9379         * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
9380         Make regexp more robust.
9381         (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
9382         Force regeneration of disassembly.
9384 2005-05-29  Jay Belanger  <belanger@truman.edu>
9386         * calc/calc.el (calc-user-invocation): Check if
9387         calc-invocation-macro is non-nil.
9389 2005-05-29  Juri Linkov  <juri@jurta.org>
9391         * add-log.el (change-log-font-lock-keywords):
9392         Add `+' to e-mail regexp to accept mail address with keywords.
9394         * man.el (Man-name-regexp): Add `:' to accept qualified names.
9396 2005-05-29  Luc Teirlinck  <teirllm@auburn.edu>
9398         * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
9400         * ielm.el (inferior-emacs-lisp-mode): Ditto.
9402 2005-05-29  Richard M. Stallman  <rms@gnu.org>
9404         * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
9405         Undo the change that moves to end of the current word.
9407 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
9409         * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
9410         Throw error when count <= 0 to ensure input is a number.
9411         (gdb-read-memory-custom): Pick up address from buffer.
9412         (gdb-memory-mode): Allow user to increment and decrement
9413         memory address from header line.
9415 2005-05-29  Richard M. Stallman  <rms@gnu.org>
9417         * flyspell.el (flyspell-version): Function deleted.
9418         (flyspell-auto-correct-previous-hook): Doc fix.
9420         * jit-lock.el (jit-lock-function, jit-lock-after-change):
9421         Do nothing if memory is full.
9423         * font-lock.el (font-lock-fontify-syntactically-region):
9424         Pass t for GREEDY to looking-back.
9426         * saveplace.el (save-place-alist-to-file): Write the file
9427         using write-region.
9429         * subr.el (looking-back): New argument GREEDY.
9431         * progmodes/compile.el (compilation-start): Set the mode
9432         before inserting the initial text.
9434         * progmodes/which-func.el (which-func-update-1): Turn the mode
9435         off in case of error by setting which-func-mode.
9437 2005-05-29  Peter Heslin  <p.j.heslin@durham.ac.uk>  (tiny change)
9439         * flyspell.el (flyspell-auto-correct-previous-word):
9440         Narrow down to what's on the screen, and recenter overlays
9441         at the end of the next word.
9443 2005-05-29  Manuel Serrano  <Manuel.Serrano@sophia.inria.fr>
9445         * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
9446         (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
9447         (flyspell-abbrev-p): Default to nil.
9448         (flyspell-use-global-abbrev-table-p): Doc fix.
9449         (flyspell-large-region): Allow nil as value.
9450         (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
9452         (mail-mode-flyspell-verify): More robust handling
9453         of `mail-header-separator'.  More efficient signature detection.
9454         Allow for regexp metacharacters in message-header-separator.
9455         Adding `To' not to be checked in mail-mode-flyspell-verify.
9457         (flyspell-prog-mode): Run flyspell-prog-mode-hook.
9458         (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
9459         Bind flyspell-auto-correct-binding.
9460         Bind C-. and C-, .
9461         (flyspell-mode-map): Likewise.
9462         (flyspell-mode): Doc fix.
9463         (flyspell-accept-buffer-local-defs): Preserve current buffer.
9464         (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
9465         (flyspell-word-cache-result): New var, always local.
9466         (flyspell-check-pre-word-p): Doc fix.
9467         (flyspell-check-changed-word-p): Handle spc like newline.
9468         (flyspell-post-command-hook): Set flyspell-word-cache-result.
9469         (flyspell-word-search-backward, flyspell-word-search-forward):
9470         New functions.
9471         (flyspell-word): Return t if nothing to check.
9472         When parsing TeX code, check for after } or \.
9473         Use flyspell-word-search-backward to find previous word.
9474         Return nil if duplicated word.
9475         For word already checked, return same value as last time.
9476         Set flyspell-word-cache-result after checking.
9477         Don't clobber the return value.
9478         (flyspell-get-word): Major rewrite.
9479         (flyspell-external-point-words): New locals pword, pcount.
9480         Fix size used in progress message.
9481         Find the proper corresponding word in flyspell-large-region-buffer.
9482         (flyspell-region): Check for flyspell-large-region = nil.
9483         (flyspell-highlight-incorrect-region): Clean up overlays in region.
9484         (flyspell-auto-correct-word): Check that WORD is a cons.
9485         (flyspell-correct-word): Likewise.
9487 2005-05-29  Daniel Pfeiffer  <occitan@esperanto.org>
9489         * progmodes/make-mode.el (makefile-rule-action-regex)
9490         (makefile-macroassign-regex, makefile-makepp-mode)
9491         (makefile-bsdmake-mode): Continuation lines may be empty.
9492         Reported by Joshua Varner.
9493         (makefile-makepp-font-lock-keywords): Add $(stem).
9495 2005-05-28  Karl Berry  <karl@gnu.org>
9497         * textmodes/tex-mode.el: Now that tex-send-command calls
9498         shell-quote-argument (2005-03-31 change), remove all calls to
9499         shell-quote-argument; they all end up invoking tex-send-command.
9500         The double quoting loses on filenames with non-safe characters,
9501         such as "@".  Reported by Frederik Fouvry.
9503 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
9505         * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
9506         about preserving point.
9508 2005-05-27  Jay Belanger  <belanger@truman.edu>
9510         * calc/calc-misc.el (calc-info-goto-node): Use info instead of
9511         Info-goto-node.
9513         * calc/calc-embed.el (calc-embed-arg): New variable.
9514         (calc-do-embedded-activate, calc-embedded-activate-formula)
9515         (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
9516         variable by new variable.
9517         (calc-embedded-make-info): Replace undeclared variable by new
9518         variable.  When selecting region with positive prefix
9519         argument, use end of previous line instead of beginning of line.
9521         * calc/calc-aent.el (calc-arg-values): Declare it.
9523         * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
9524         Declare them.
9526         * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
9528         * calc/calc.el (calc-alg-map): Declare it.
9530         * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
9532 2005-05-28  Nick Roberts  <nickrob@snap.net.nz>
9534         * progmodes/gdb-ui.el (gdb-all-registers): New variable.
9535         (gdb-registers-buffer, toggle-gdb-all-registers):
9536         Toggle display of floating point registers.
9537         (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
9539         * progmodes/gud.el (gud-goto-info): Use info.  Don't use require.
9540         (toggle-gud-tooltip-dereference):
9541         Rename from gud-toggle-tooltip-dereference.
9543 2005-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9545         * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
9547 2005-05-27  Jay Belanger  <belanger@truman.edu>
9549         * calc/calc-prog.el (calc-kbd-report): Remove.
9550         (calc-kbd-query): Rewrite.
9552 2005-05-27  Juanma Barranquero  <lekktu@gmail.com>
9554         * image.el (image-library-alist): Move to image.c.
9555         (image-type-available-p): Doc fix.
9557 2005-05-27  Lute Kamstra  <lute@gnu.org>
9559         * calc/calc.el (calc):
9560         * outline.el (outline-1, outline-2, outline-3, outline-4)
9561         (outline-5, outline-6, outline-7, outline-8):
9562         * textmodes/dns-mode.el (dns-mode):
9563         * textmodes/sgml-mode.el (sgml-namespace-face):
9564         * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
9565         (tex-verbatim-face, tex-use-reftex):
9566         * textmodes/texinfo.el (texinfo-heading-face):
9567         Specify customization group.
9569         * longlines.el: Don't require easy-mmode.
9570         (longlines-visible-face): Specify customization group.
9572 2005-05-27  Kenichi Handa  <handa@m17n.org>
9574         * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
9575         encoding table of windows-1251.
9577         * international/ucs-tables.el (ucs-set-table-for-input):
9578         If translation-table-for-input of a coding system is a symbol, get
9579         its translation-table property.
9581         * international/code-pages.el: Don't register a coding system into
9582         non-iso-charset-alist more than once.
9583         (cp-make-coding-system): Likewise.
9585 2005-05-26  John Wiegley  <johnw@newartisans.com>
9587         * eshell/esh-cmd.el (eshell-eval-command): If the return value of
9588         `eshell-resume-eval' is wrapped in a list, it indicates that the
9589         command was run asynchronously.  In that case, unwrap the value
9590         before checking the delimiter value.
9592         * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
9593         character before a space at the end of a line is \, assume the space
9594         is part of the last argument rather than a final argument separator.
9596         * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
9597         is in use, and the target is `t' or `nil' (which are the most common
9598         values), don't assume that the symbol target is a buffer.
9600 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
9602         * calendar/calendar.el (calendar-mode-line-format):
9603         Use mode-line-highlight as mouse-face.
9605         * time.el (display-time-string-forms, display-time-update):
9606         Use mode-line-highlight as mouse-face.
9608 2005-05-26  Jay Belanger  <belanger@truman.edu>
9610         * calc/calc.el (calc-language-alist): Remove extra defvar.
9612 2005-05-26  Lute Kamstra  <lute@gnu.org>
9614         * arc-mode.el (archive-mode):
9615         * bookmark.el (bookmark-read-annotation-mode)
9616         (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
9617         * bs.el (bs-mode):
9618         * calc/calc-yank.el (calc-edit-mode):
9619         * calc/calc.el (calc-mode, calc-trail-mode):
9620         * calculator.el (calculator-mode):
9621         * chistory.el (command-history-mode):
9622         * comint.el:
9623         * cus-edit.el (custom-mode):
9624         * descr-text.el (describe-text-mode):
9625         * ebuff-menu.el (Electric-buffer-menu-mode):
9626         * ediff-util.el (ediff-mode):
9627         * emacs-lisp/re-builder.el (reb-mode):
9628         * emulation/vi.el (vi-mode-setup):
9629         * emulation/ws-mode.el (wordstar-mode):
9630         * eshell/esh-mode.el (eshell-mode):
9631         * forms.el (forms-mode):
9632         * help-mode.el (help-mode):
9633         * hexl.el (hexl-mode):
9634         * ibuffer.el (ibuffer-mode):
9635         * ielm.el (inferior-emacs-lisp-mode):
9636         * info.el (Info-mode, Info-edit-mode):
9637         * international/swedish.el:
9638         * ledit.el (ledit-from-lisp-mode):
9639         * locate.el (locate-mode):
9640         * mail/rmail.el (rmail-mode):
9641         * mail/rmailedit.el (rmail-edit-mode):
9642         * mail/rmailsum.el (rmail-summary-mode):
9643         * mail/supercite.el (sc-electric-mode):
9644         * net/eudc.el (eudc-mode):
9645         * net/quickurl.el (quickurl-list-mode):
9646         * net/snmp-mode.el (snmp-mode, snmpv2-mode):
9647         * obsolete/ooutline.el (outline-mode):
9648         * obsolete/options.el (Edit-options-mode):
9649         * obsolete/rnews.el (news-mode):
9650         * obsolete/rnewspost.el (news-reply-mode):
9651         * play/5x5.el (5x5-mode):
9652         * play/decipher.el (decipher-mode, decipher-stats-mode):
9653         * play/gomoku.el (gomoku-mode):
9654         * play/snake.el (snake-mode):
9655         * play/solitaire.el (solitaire-mode):
9656         * play/tetris.el (tetris-mode):
9657         * progmodes/ada-mode.el (ada-mode):
9658         * progmodes/antlr-mode.el (antlr-mode):
9659         * progmodes/autoconf.el (autoconf-mode):
9660         * progmodes/dcl-mode.el (dcl-mode):
9661         * progmodes/delphi.el (delphi-mode):
9662         * progmodes/ebrowse.el (ebrowse-tree-mode)
9663         (ebrowse-electric-list-mode, ebrowse-member-mode)
9664         (ebrowse-electric-position-mode):
9665         * progmodes/f90.el (f90-mode):
9666         * progmodes/fortran.el (fortran-mode):
9667         * progmodes/icon.el (icon-mode):
9668         * progmodes/idlw-help.el (idlwave-help-mode):
9669         * progmodes/idlw-shell.el (idlwave-shell-mode):
9670         * progmodes/idlwave.el (idlwave-mode):
9671         * progmodes/inf-lisp.el (inferior-lisp-mode):
9672         * progmodes/m4-mode.el (m4-mode):
9673         * progmodes/meta-mode.el (metafont-mode, metapost-mode):
9674         * progmodes/modula2.el (modula-2-mode):
9675         * progmodes/octave-inf.el (inferior-octave-mode):
9676         * progmodes/octave-mod.el (octave-mode):
9677         * progmodes/pascal.el (pascal-mode):
9678         * progmodes/sh-script.el (sh-mode):
9679         * progmodes/sql.el (sql-mode, sql-interactive-mode):
9680         * progmodes/vhdl-mode.el (vhdl-mode):
9681         * progmodes/xscheme.el (scheme-interaction-mode):
9682         * replace.el (occur-mode):
9683         * ses.el (ses-mode):
9684         * simple.el (completion-list-mode):
9685         * skeleton.el:
9686         * speedbar.el (speedbar-mode):
9687         * term.el (term-mode):
9688         * terminal.el (terminal-edit-mode):
9689         * textmodes/reftex-index.el (reftex-index-mode)
9690         (reftex-index-phrases-mode):
9691         * textmodes/reftex-sel.el (reftex-select-label-mode)
9692         (reftex-select-bib-mode):
9693         * textmodes/reftex-toc.el (reftex-toc-mode):
9694         * wdired.el (wdired-change-to-wdired-mode):
9695         * wid-browse.el (widget-browse-mode):
9696         Use run-mode-hooks.
9698         * array.el (array-mode):
9699         * calendar/todo-mode.el (todo-mode):
9700         * man.el (Man-mode):
9701         * play/landmark.el (lm-mode):
9702         * play/mpuz.el (mpuz-mode):
9703         Use kill-all-local-variables and run-mode-hooks.
9705         * subr.el (delay-mode-hooks): Specify indentation.
9707 2005-05-26  Mark A. Hershberger  <mah@everybody.org>
9709         * xml.el (xml-substitute-special): Don't die for undefined xml
9710         entities.
9712 2005-05-26  Jay Belanger  <belanger@truman.edu>
9714         * calc/calc-prog.el (calc-user-define-edit): Don't find substring
9715         of nil.
9717 2005-05-27  Nick Roberts  <nickrob@snap.net.nz>
9719         * progmodes/gdb-ui.el (gdb-frame-address):
9720         Rename from gdb-current-address.
9721         (gdb-previous-frame-address): Rename from gdb-previous-address.
9722         (gdb-selected-frame): Rename from gdb-current-frame.
9723         (gdb-get-selected-frame): Rename from gdb-get-current-frame.
9724         (gdb-frame-number): Rename from gdb-current-stack-level.
9725         (gdb-ann3): Match new mode-name for disassembly buffer.
9726         Extend initialization of variables.
9727         (gdb-post-prompt): Update disassembly from gdb-frame-handler.
9728         (gdb-memory-mode): Use mouse-face in header line.
9729         (gdb-assembler-buffer-name): Call it disassembly and give frame
9730         in mode line.
9731         (gdb-source-spec-regexp, gdb-assembler-custom)
9732         (gdb-invalidate-assembler, gdb-frame-handler):
9733         Make robust to leading zeroes in address format.
9735 2005-05-26  Carsten Dominik  <dominik@science.uva.nl>
9737         * textmodes/org.el (org-mode): Use `define-derived-mode' to
9738         define `org-mode'.
9739         (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
9741 2005-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9743         * log-edit.el (log-edit-changelog-entries): Distinguish between
9744         filenames like xfns.c and fns.c.
9746 2005-05-25  Luc Teirlinck  <teirllm@auburn.edu>
9748         * buff-menu.el (Buffer-menu-revert-function): Improve handling of
9749         point after reverting.
9750         (Buffer-menu-make-sort-button): Handle the case where
9751         `Buffer-menu-use-header-line' is nil.
9753 2005-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
9755         * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
9756         New funcs.  In minibuffer-local-completion-map bind `]', `/'
9757         and `:' to them.
9759 2005-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9761         * startup.el (normal-top-level): Allow modification of load-path while
9762         we're iterating over it.
9764 2005-05-25  Juanma Barranquero  <lekktu@gmail.com>
9766         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
9767         (thumbs-cleanup-thumbsdir, thumbs-call-convert)
9768         (thumbs-resize-interactive, thumbs-insert-image)
9769         (thumbs-insert-thumb, thumbs-dired-show-marked)
9770         (thumbs-find-image-at-point, thumbs-delete-images)
9771         (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
9772         (thumbs-increment-image-size, thumbs-decrement-image-size):
9773         Fix typos in docstrings.
9775 2005-05-24  Andre Spiegel  <spiegel@gnu.org>
9777         * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
9778         (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
9779         (cperl-mode): Use them.
9781 2005-05-24  Juanma Barranquero  <lekktu@gmail.com>
9783         * window.el (quit-window, shrink-window-if-larger-than-buffer):
9784         Doc fixes.
9786 2005-05-24  Nick Roberts  <nickrob@snap.net.nz>
9788         * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
9789         Bind C-d to gdb-inferior-io-eof.
9791         * dired.el (dired-dnd-popup-notice): Use message-box.
9793 2005-05-23  Masatake YAMATO  <jet@gyve.org>
9795         * bindings.el (mode-line-major-mode-keymap):
9796         Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
9798         * faces.el (mode-line-highlight): New face.
9800         * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
9801         as mouse-face.
9803         * bindings.el (top-level, help-echo, mode-line-modified)
9804         (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
9805         as mouse-face.
9807 2005-05-23  Juanma Barranquero  <lekktu@gmail.com>
9809         * progmodes/cc-engine.el (c-guess-basic-syntax):
9810         Remove spurious call to `zerop'.
9812         * emacs-lisp/cl.el (acons, pairlis): Add docstring.
9814 2005-05-23  Martin Stjernholm  <bug-cc-mode@gnu.org>
9816         CC Mode update to 5.30.10:
9818         * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
9819         could go past the limit in decoration level 2, thereby causing
9820         errors during interactive fontification.
9822         * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
9823         the file is evaluated interactively.
9825         * cc-engine.el (c-guess-basic-syntax): Handle operator
9826         declarations somewhat better in C++.
9828         * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
9829         make use of `run-mode-hooks' which has been added in Emacs 21.1.
9830         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
9831         (awk-mode): Use it.
9832         (make-local-hook): Suppress warning about obsoleteness.
9834         * cc-engine.el, cc-align.el, cc-cmds.el
9835         (c-append-backslashes-forward, c-delete-backslashes-forward)
9836         (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
9837         Compensate for return value from `forward-line' when it has moved
9838         but not to a different line due to eob.
9840         * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
9841         `objc-method-intro' and `objc-method-args-cont'.
9843 2005-05-23  Alan Mackenzie  <bug-cc-mode@gnu.org>
9845         CC Mode update to 5.30.10:
9847         * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
9848         in the copyright statement.  Incidentally, change "along with GNU
9849         Emacs" to "along with this program" where it occurs.
9851         * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
9852         so that it is interactive, hence can be found by M-x awk-mode
9853         whilst cc-mode is yet to be loaded.  Reported by Glenn Morris
9854         <gmorris+emacs@ast.cam.ac.uk>.
9856         * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
9857         Mode's regexps.
9859 2005-05-23  Kevin Ryde  <user42@zip.com.au>
9861         * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
9862         c-parse-state, to avoid a lisp error (on bad code).
9864 2005-05-23  Lute Kamstra  <lute@gnu.org>
9866         * subr.el (font-lock-defaults): Remove defvar as it's already
9867         defined in font-core.el.
9869         * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
9871 2005-05-23  Nick Roberts  <nickrob@snap.net.nz>
9873         * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
9874         more general and work when GDB variable "print pretty" is on,
9875         as with Emacs, for example.
9877 2005-05-22  Luc Teirlinck  <teirllm@auburn.edu>
9879         * font-core.el: Update comment.
9881         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
9882         Use `after-change-major-mode-hook' instead of `find-file-hook'.
9884         * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
9886 2005-05-22  Eli Zaretskii  <eliz@gnu.org>
9888         * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
9889         and `yank-handler' in the doc strings.
9891 2005-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9893         * emacs-lisp/cl.el (eql): Remove.  It's a builtin already.
9895 2005-05-22  Richard M. Stallman  <rms@gnu.org>
9897         * help.el (describe-key): Move print-help-return-message call
9898         out of conditional.
9900         * progmodes/etags.el (list-tags): Use with-no-warnings.
9902         * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
9903         (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
9904         (starttls-extra-args, starttls-extra-arguments): Add defvars.
9906         * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
9908         * language/viet-util.el (viet-viscii-nonascii-translation-table):
9909         Add defvar.
9911         * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
9912         Use defvar, not defconst.
9914         * hexl.el (hexl-follow-line): Use with-no-warnings.
9916         * emulation/tpu-extras.el: Use write-file-functions instead of
9917         write-file-hooks.
9919         * dired.el (dired-font-lock-keywords): Fontify files with junk
9920         extensions even if marked by -F.
9922 2005-05-22  Juanma Barranquero  <lekktu@gmail.com>
9924         * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
9925         (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
9926         * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
9927         (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
9928         (concatenate, list-length, get*, getf, cl-remprop):
9929         * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
9930         (etypecase, progv, lexical-let, lexical-let*)
9931         (multiple-value-bind, multiple-value-setq, shiftf):
9932         Improve argument/docstring consistency.
9934         * subr.el (focus-frame, unfocus-frame):
9935         Revert deletion on 2005-05-01.
9937 2005-05-22  Andre Spiegel  <spiegel@gnu.org>
9939         * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
9940         doesn't exist.
9942         * vc.el (vc-trunk-p): Add autoload cookie.  The function is used in
9943         vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
9945 2005-05-22  Nick Roberts  <nickrob@snap.net.nz>
9947         * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
9948         already deleted variables: auto-fill-hook, blink-paren-hook,
9949         lisp-indent-hook, inhibit-local-variables, unread-command-event,
9950         suspend-hooks, comment-indent-hook, meta-flag,
9951         before-change-function, after-change-function,
9952         font-lock-doc-string-face.
9954 2005-05-21  Luc Teirlinck  <teirllm@auburn.edu>
9956         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9958 2005-05-21  Eli Zaretskii  <eliz@gnu.org>
9960         * mail/rmail.el (rmail-reply): Filter the list in reply-to through
9961         rmail-dont-reply-to.
9963 2005-05-21  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
9965         * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
9966         literal blank when splitting new-header-values.
9968 2005-05-21  Matt Hodges  <MPHodges@member.fsf.org>
9970         * calendar/cal-menu.el (cal-menu-update): Add separator as a
9971         string so that tmm doesn't create a completion entry for it.
9973         * textmodes/table.el (table-disable-menu): Ditto.
9975 2005-05-21  Richard M. Stallman  <rms@gnu.org>
9977         * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
9979         * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
9981         * net/rcompile.el (remote-compile): Use compilation-start.
9983         * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
9985 2005-05-21  Daniel Pfeiffer  <occitan@esperanto.org>
9987         * files.el (auto-mode-alist): Check GNUmakefile before makefile.
9988         Default to makefile-bsdmake-mode on BSD systems.
9990         * imenu.el (imenu-generic-expression, imenu--generic-function'):
9991         REGEXP may also be a search function now.  The part of doc-string
9992         for describing the structure was 95% identical to that of
9993         `imenu--generic-function'.  Unify it there.
9995         * progmodes/make-mode.el (makefile-imenu-generic-expression):
9996         Use function to find dependencies, because regexp alone is so complex,
9997         it easily goes into an endless loop.
9998         (makefile-makepp-mode): Also add submenu for Perl functions
9999         defined in the makefile.
10000         (makefile-bsdmake-mode): Special imenu-generic-expression no
10001         longer needed, due to function call.
10002         (makefile-match-dependency): Take BOUND into account when checking
10003         if we're through.
10005 2005-05-20  Jay Belanger  <belanger@truman.edu>
10007         * calc/calc-units.el (calc-invalidate-units-table):
10008         Use inhibit-read-only.
10009         (math-build-units-table-buffer): Use view-mode.
10011 2005-05-20  David Kastrup  <dak@gnu.org>
10013         * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
10014         easy-menu-add is not a nop on Emacs; and clarify when to call it.
10016 2005-05-20  Lute Kamstra  <lute@gnu.org>
10018         * diff-mode.el (diff-header-face, diff-file-header-face)
10019         (diff-index-face, diff-hunk-header-face, diff-removed-face)
10020         (diff-added-face, diff-changed-face, diff-function-face)
10021         (diff-context-face, diff-nonexistent-face): Put them in the
10022         diff-mode customization group.
10024 2005-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10026         * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
10028         * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
10030         * font-lock.el (lisp-font-lock-keywords-2): Don't error.
10031         Minor regexp-optimization.
10033 2005-05-20  Carsten Dominik  <dominik@science.uva.nl>
10035         * textmodes/org.el (org-agenda-toggle-time-grid): New command.
10036         (org-agenda-use-time-grid, org-agenda-time-grid): New options.
10037         (org-agenda-add-time-grid-maybe): New function.
10038         (org-agenda): Call `org-agenda-add-time-grid-maybe'.
10039         (org-table-create): `dotimes' instead of `mapcar'.
10040         (org-xor): Simplify implementation.
10041         (org-agenda): `inhibit-redisplay' turned on.
10042         (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
10043         a consistent line after a state change.
10044         (org-agenda-remove-times-when-in-prefix): New option.
10045         (org-prefix-has-time): New variable.
10046         (org-parse-time-string): Optional argument NODEFAULT.
10047         (org-format-agenda-item): Parse items for time-of-day
10048         specifications and move these into the prefix if possible.
10049         (org-agenda-priority): Get current heading, not previous heading
10050         during agenda remote editing.
10052 2005-05-20  Juanma Barranquero  <lekktu@gmail.com>
10054         * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
10055         (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
10056         (remove-duplicates, delete-duplicates, substitute)
10057         (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
10058         (nsubstitute-if-not, find, find-if, find-if-not, position)
10059         (position-if, position-if-not, count, count-if, count-if-not)
10060         (mismatch, search, sort*, stable-sort, merge, member*)
10061         (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
10062         (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
10063         (intersection, nintersection, set-difference, nset-difference)
10064         (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
10065         (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
10066         (nsublis, tree-equal): Improve argument/docstring consistency.
10068         * subr.el (send-string, send-region):
10069         Remove obsolescence declaration.
10070         (window-dot, set-window-dot, read-input, show-buffer)
10071         (eval-current-buffer, string-to-int):
10072         Add release number to obsolescence declarations.
10074 2005-05-19  Kim F. Storm  <storm@cua.dk>
10076         * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
10077         (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
10079 2005-05-20  Matt Hodges  <MPHodges@member.fsf.org>
10081         * faces.el (list-faces-display): Make back button respect optional
10082         regexp arg.
10084 2005-05-19  Juanma Barranquero  <lekktu@gmail.com>
10086         * calculator.el (calculator-radix-grouping-mode)
10087         (calculator-radix-grouping-digits, calculator-displayer)
10088         (calculator-radix-grouping-separator, calculator-copy-displayer):
10089         * dabbrev.el (dabbrev-search-these-buffers-only):
10090         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
10091         (diff-advance-after-apply-hunk, diff-mode-hook)
10092         (diff-minor-mode-prefix):
10093         * imenu.el (imenu-use-popup-menu):
10094         * jit-lock.el (jit-lock-context-time):
10095         * newcomment.el (comment-fill-column, comment-column)
10096         (comment-style, comment-padding, comment-multi-line)
10097         (comment-empty-lines, comment-auto-fill-only-comments):
10098         * reveal.el (reveal-around-mark):
10099         * uniquify.el (uniquify-buffer-name-style)
10100         (uniquify-after-kill-buffer-p)
10101         (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
10102         (uniquify-min-dir-content, uniquify-separator)
10103         (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
10104         * w32-vars.el (w32-fixed-font-alist):
10105         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
10106         * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
10107         * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
10108         * progmodes/perl-mode.el (perl-indent-level)
10109         (perl-continued-statement-offset, perl-continued-brace-offset)
10110         (perl-brace-offset, perl-brace-imaginary-offset)
10111         (perl-label-offset, perl-indent-continued-arguments)
10112         (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
10113         * progmodes/tcl.el (tcl-indent-level)
10114         (tcl-continued-indent-level, tcl-auto-newline)
10115         (tcl-tab-always-indent, tcl-electric-hash-style)
10116         (tcl-help-directory-list, tcl-use-smart-word-finder)
10117         (tcl-application, tcl-command-switches, tcl-prompt-regexp)
10118         (inferior-tcl-source-command):
10119         * textmodes/fill.el (enable-kinsoku):
10120         * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
10121         * textmodes/table.el (table-yank-handler):
10122         Specify missing group (and type, if simple) in defcustom.
10124 2005-05-19  Luc Teirlinck  <teirllm@auburn.edu>
10126         * progmodes/compile.el (compilation-finish-function): Fix defvar.
10128 2005-05-19  Richard M. Stallman  <rms@gnu.org>
10130         * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
10132         * subr.el (event-basic-type): Don't get an error.
10133         (left-fringe-p): Function deleted.
10135         * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
10136         (list-buffers-noselect): Set `font-lock-face' property, not `face'.
10138         * dired-aux.el (dired-copy-file-recursive): Handle symlinks
10139         in recursive copy.
10141         * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
10143         * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
10145         * emacs-lisp/bytecomp.el
10146         (byte-compile-file-form-custom-declare-variable): Call
10147         byte-compile-nogroup-warn if appropriate.
10149         * progmodes/compile.el (compilation-finish-function): Mark obsolete.
10150         (compilation-set-window): Don't call left-fringe-p; do it directly.
10152 2005-05-19  Jay Belanger  <belanger@truman.edu>
10154         * calc/calc-graph.el (calc-graph-format-data): Make sure
10155         var-PlotRejects is bound before trying to check its value.
10157 2005-05-19  Carsten Dominik  <dominik@science.uva.nl>
10159         * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
10160         definition of this variable from reftex-global.el to reftex.el,
10161         because it is needed in the menu.
10163 2005-05-19  Lute Kamstra  <lute@gnu.org>
10165         * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
10166         years are fixed.  Don't insert a space after a dash.
10168 2005-05-19  Kim F. Storm  <storm@cua.dk>
10170         * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
10172 2005-05-19  Daniel Pfeiffer  <occitan@esperanto.org>
10174         * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
10175         strings, because (eq ... ?\\) is fairly frequent.
10177         * progmodes/make-mode.el (makefile-add-this-line-targets):
10178         Simplify and integrate into `makefile-pickup-targets'.
10179         (makefile-add-this-line-macro): Simplify and integrate into
10180         `makefile-pickup-macros.
10181         (makefile-pickup-filenames-as-targets): Simplify.
10182         (makefile-previous-dependency, makefile-match-dependency):
10183         Don't stumble over `::'.
10185 2005-05-19  Nick Roberts  <nickrob@snap.net.nz>
10187         * subr.el (post-command-idle-hook, post-command-idle-delay):
10188         Remove obsoletion of post-command-idle-hook and
10189         post-command-idle-delay.
10191         * faces.el (list-faces-display): Provide button when describe-face
10192         is called to take user back to the list of faces.
10194         * help-fns.el (describe-variable): Remove hyperlinks in a
10195         variable's value as these are quite frequently inappropriate.
10197         * follow.el (follow-submit-feedback, follow-mode):
10198         Remove references to post-command-idle-hook.
10200 2005-05-18  Daniel Pfeiffer  <occitan@esperanto.org>
10202         * progmodes/make-mode.el (makefile-previous-dependency)
10203         (makefile-match-dependency): Check for := (and in bsd mode also
10204         !=) to give a better result, even when font-lock is not on.
10206 2005-05-18  Jay Belanger  <belanger@truman.edu>
10208         * calc/calc-help.el (calc-s-prefix-help):
10209         Add `calc-copy-special-constant' to help string.
10211 2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>
10213         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
10215 2005-05-18  Jay Belanger  <belanger@truman.edu>
10217         * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
10218         in linear factors are in proper order.
10220 2005-05-18  Carsten Dominik  <dominik@science.uva.nl>
10222         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
10223         Support for jurabib.
10225         * textmodes/reftex.el (featurep): Define aliases for overlay
10226         commands, for XEmacs compatibility, and use these aliases in
10227         overlay initializations.
10228         (reftex-highlight): Use `reftex-move-overlay'.
10229         (reftex-unhighlight): Use `reftex-delete-overlay'.
10230         (reftex-uniq): Function removed.  Use `reftex-uniquify' instead.
10231         (reftex-access-search-path): Use `reftex-uniquify' instead of
10232         `reftex-uniq'
10234         * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
10235         `before-string' property modification enables for Emacs as well.
10236         (reftex-select-item): Use `reftex-delete-overlay'.
10237         (reftex-select-mark): Use `reftex-make-overlay' and
10238         `reftex-overlay-put'.
10239         (reftex-select-unmark): Use `reftex-delete-overlay' and
10240         `reftex-overlay-put'.
10242 2005-05-18  Lute Kamstra  <lute@gnu.org>
10244         * emacs-lisp/lisp.el (check-parens): Fix docstring.
10246 2005-05-18  Juanma Barranquero  <lekktu@gmail.com>
10248         * add-log.el (add-change-log-entry):
10249         * array.el (array-make-template, array-reconfigure-rows)
10250         (array-init-max-row, array-init-max-column)
10251         (array-init-columns-per-line, array-init-field-width):
10252         * replace.el (replace-match-maybe-edit, perform-replace):
10253         * textmodes/spell.el (spell-region):
10254         Replace `read-input' by `read-string'.
10256         * forms.el (forms-mode):
10257         * finder.el (finder-compile-keywords):
10258         * shadowfile.el (shadow-read-files):
10259         Replace `eval-current-buffer' by `eval-buffer'.
10261         * terminal.el (te-pass-through):
10262         * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
10263         (ange-ftp-raw-send-cmd):
10264         * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
10265         (send-process-next-char, telnet-initial-filter, telnet):
10266         Replace `send-string' by `process-send-string'.
10268         * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
10269         (prolog-consult-region): Replace `send-string' by
10270         `process-send-string'; replace `send-region' by `process-send-region'.
10272         * progmodes/delphi.el (delphi-log-msg):
10273         Replace `set-window-dot' by `set-window-point'.
10275         * subr.el (window-dot, set-window-dot, read-input, send-string)
10276         (send-region, show-buffer, eval-current-buffer):
10277         Make really obsolete, as the comment says.
10279 2005-05-17  Kim F. Storm  <storm@cua.dk>
10281         * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
10282         (cua--init-keymaps): Bind C-return instead of S-return to set
10283         rectangle mark.
10285         * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
10286         instead of S-return to toggle/clear rectangle mark.
10288 2005-05-17  Daniel Pfeiffer  <occitan@esperanto.org>
10290         * progmodes/make-mode.el (makefile-dependency-skip): New variable.
10291         (makefile-macroassign-regex, makefile-make-font-lock-keywords):
10292         Also fontify plain strings assigned to variables, mostly so that a
10293         colon has a face and is thus not taken as a dependency separator.
10294         (makefile-previous-dependency): Inline the new matcher, because it
10295         is too complex to work in both directions.
10296         (makefile-match-dependency): Eliminate `backward' arg (see above).
10297         Completely reimplemented so as to not sometimes go into an endless
10298         loop.  It should also be more efficient, because first it only
10299         searches for `:', instead of applying the very complex regexp.
10300         (makefile-mode): Cancel `font-lock-support-mode', because blocks
10301         to be fontified in one piece can be too long for JIT.
10302         Makefiles are never *that* big.
10304 2005-05-17  Reiner Steib  <Reiner.Steib@gmx.de>
10306         * dired.el (dired-mode): Simplify.
10308 2005-05-17  Lute Kamstra  <lute@gnu.org>
10310         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
10311         defcustom for the mode hook variable.
10313         * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
10314         Emacs Lisp Reference Manual.
10316 2005-05-17  Juanma Barranquero  <lekktu@gmail.com>
10318         * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
10319         (evenp, list*):
10320         * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
10321         * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
10323         * net/tramp-smb.el (tramp-smb-open-connection):
10324         Pass `tramp-chunksize' as fifth (required) argument.
10326 2005-05-16  Daniel Pfeiffer  <occitan@esperanto.org>
10328         * font-lock.el (lisp-font-lock-keywords-1):
10329         Set `font-lock-negation-char-face' for [^...] char group.
10330         (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
10332         * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
10333         a var, and refine it to mask one more level of nested vars.
10334         (makefile-rule-action-regex): Turn it into a var, and refine it so
10335         it recognizes backslashed continuation lines as belonging to the
10336         same command.
10337         (makefile-macroassign-regex): Refine it so it recognizes
10338         backslashed continuation lines as belonging to the same command.
10339         (makefile-var-use-regex): Don't look at the next char, because it
10340         might be the same one to be skipped by the initial [^$], leading
10341         to an overlooked variable use.
10342         (makefile-make-font-lock-keywords): Remove two parameters, which
10343         are now variables that some of the modes set locally.
10344         Handle dependency and rule action matching through functions, because
10345         regexps alone match too often.  Dependency matching now comes
10346         last, so it can check, whether a colon already matched something else.
10347         (makefile-mode): Inform that font-lock improves makefile parsing
10348         capabilities.
10349         (makefile-match-dependency, makefile-match-action): New functions.
10351 2005-05-16  Juanma Barranquero  <lekktu@gmail.com>
10353         * emacs-lisp/cl-extra.el (equalp): Doc fix.
10355         * align.el (align-regexp):
10356         * ansi-color.el (ansi-color-get-face):
10357         * array.el (array-reconfigure-rows, array-init-max-row)
10358         (array-init-max-column, array-init-columns-per-line)
10359         (array-init-field-width):
10360         * dired-aux.el (dired-trample-file-versions):
10361         * dired-x.el (dired-mark-sexp):
10362         * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
10363         * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
10364         * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
10365         * faces.el (face-read-integer):
10366         * files.el (backup-extract-version, insert-directory):
10367         * hexl.el (hexl-insert-decimal-char):
10368         * server.el (server-process-filter):
10369         * shell.el (shell-extract-num):
10370         * startup.el (command-line-1):
10371         * term.el (term-command-hook):
10372         * time-stamp.el (time-stamp, time-stamp-string-preprocess)
10373         (time-stamp-do-number):
10374         * time.el (display-time-update):
10375         * timezone.el (timezone-parse-date, timezone-zone-to-minute)
10376         (timezone-fix-time):
10377         * vms-patch.el (vms-suspend-resume-hook):
10378         * calendar/appt.el (appt-convert-time):
10379         * calendar/cal-bahai.el (mark-bahai-diary-entries):
10380         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
10381         * calendar/cal-islam.el (mark-islamic-diary-entries):
10382         * calendar/calendar.el (calendar-cursor-to-date)
10383         (calendar-star-date):
10384         * calendar/diary-lib.el (diary-attrtype-convert)
10385         (mark-diary-entries, diary-entry-time):
10386         * calendar/solar.el (solar-get-number):
10387         * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
10388         * emacs-lisp/re-builder.el (reb-display-subexp):
10389         * emulation/edt.el (edt-set-scroll-margins):
10390         * emulation/tpu-extras.el (tpu-set-scroll-margins):
10391         * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
10392         (vip-get-ex-count):
10393         * emulation/viper-ex.el (viper-get-ex-token)
10394         (viper-get-ex-buffer, viper-get-ex-count, ex-next):
10395         * international/fontset.el (fontset-plain-name):
10396         * mail/feedmail.el (feedmail-look-at-queue-directory):
10397         * mail/mailalias.el (mail-get-names):
10398         * mail/rmail.el (rmail-convert-to-babyl-format):
10399         * mail/rmailsum.el (rmail-make-basic-summary-line)
10400         (rmail-summary-next-same-subject, rmail-summary-rmail-update)
10401         (rmail-summary-goto-msg):
10402         * mail/smtpmail.el (smtpmail-read-response):
10403         * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
10404         (ange-ftp-vms-add-file-entry):
10405         * play/gametree.el (gametree-looking-at-ply)
10406         (gametree-current-branch-score):
10407         * progmodes/ada-xref.el (ada-prj-find-prj-file)
10408         (ada-xref-find-in-modified-ali, ada-find-in-src-path):
10409         * progmodes/cperl-mode.el (condition-case):
10410         * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
10411         (ebrowse-set-member-buffer-column-width)
10412         (ebrowse-select-1st-to-9nth):
10413         * progmodes/etags.el (etags-snarf-tag):
10414         * progmodes/flymake.el (flymake-parse-line):
10415         * progmodes/idlw-shell.el (idlwave-shell-parse-line)
10416         (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
10417         (idlwave-shell-menu-def):
10418         * progmodes/ps-mode.el (ps-run-goto-error):
10419         * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
10420         (vhdl-speedbar-contract-level):
10421         * term/mac-win.el (x-handle-numeric-switch):
10422         * term/sun-mouse.el (sun-get-frame-data):
10423         * term/w32-win.el (x-handle-numeric-switch):
10424         * term/x-win.el (x-handle-numeric-switch):
10425         * textmodes/ispell.el (ispell-parse-output):
10426         * textmodes/nroff-mode.el (nroff-outline-level):
10427         * textmodes/reftex-cite.el (reftex-bib-sort-year)
10428         (reftex-bib-sort-year-reverse, reftex-format-citation):
10429         * textmodes/reftex-parse.el (reftex-init-section-numbers)
10430         (reftex-section-number):
10431         * textmodes/texinfmt.el (texinfo-paragraphindent):
10432         Replace `string-to-int' by `string-to-number'.
10434         * international/latexenc.el: Add page marker to force the "Local
10435         Variables:" string out of the last page.
10437 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
10439         * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
10440         tooltip-change-major-mode.
10441         (gud-tooltip-print-command): Remove case where gud-minor-mode
10442         is gdb ("--fullname").
10443         (gud-tooltip-tips): Turn GUD tooltips off for this case and
10444         explain to user.
10446 2005-05-16  Jay Belanger  <belanger@truman.edu>
10448         * calc/calc-store.el (calc-copy-special-constant): New function.
10450         * calc/calc-ext.el (calc-init-extensions): Add binding for
10451         `calc-copy-special-constant'.
10453         * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
10454         for the `calc-copy-special-constant' command.
10456 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
10458         * subr.el (left-fringe-p): New function.
10460         * progmodes/compile.el (compilation-setup): Set local value of
10461         overlay-arrow-string to "" always.
10462         (compilation-set-window): Left fringe then don't scroll.
10463         No left fringe then no arrow and scroll message to top.
10464         (compilation-context-lines): Adjust doc string accordingly.
10466 2005-05-16  Kim F. Storm  <storm@cua.dk>
10468         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
10469         (ido-magic-delete-char): New commands for C-f, C-b, C-d.
10470         (ido-wide-find-dir-or-delete-dir): New command for M-d.
10471         (ido-define-mode-map): Bind them.  Add C-x prefix to fallback commands.
10472         (ido-read-file-name): Handle commands with ido property value
10473         equal to find-file as reading a file name, to allow C-d to enter dired.
10474         (ibuffer-find-file): Add ido property with value find-file.
10476 2005-05-15  Kim F. Storm  <storm@cua.dk>
10478         * subr.el (open-network-stream-nowait): Remove.
10479         (open-network-stream-server): Remove.
10481 2005-05-15  Richard M. Stallman  <rms@gnu.org>
10483         * faces.el (describe-face): Output a definition link button.
10485         * help-mode.el (help-face-def): New button type.
10487         * emacs-lisp/copyright.el (copyright-fix-years):
10488         Match properly if the first year is 2-digit.
10489         Don't mess up the whitespace after the years by filling.
10491         * dired-aux.el (dired-mark-confirm):
10492         Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
10494         * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
10495         (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
10496         (dired-mark-pop-up): Handle FILES = (t FILE) specially.
10498         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10499         Set font-lock-comment-start-skip.
10501         * font-lock.el (font-lock-comment-start-skip): New variable.
10502         (font-lock-comment-end-skip): New variable.
10503         (font-lock-fontify-syntactically-region): Use them if non-nil.
10505 2005-05-15  Jay Belanger  <belanger@truman.edu>
10507         * calc/calc-store.el (calc-store-value): Return a string rather
10508         than display it as a message.
10509         Use calc-var-name for variable name.
10510         (calc-store-into): Add the result of calc-store-value to message.
10511         (calc-copy-variable): Add a message.
10512         (calc-store-exchange): Improve error messages.
10513         (calc-store-binary, calc-store-map): Don't reset the values of
10514         special constants.
10516 2005-05-14  Luc Teirlinck  <teirllm@auburn.edu>
10518         * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
10519         manual to docstring.
10521         * files.el (hack-local-variables-confirm): Add STRING argument.
10522         Make the function handle non file visiting buffers correctly.
10523         (hack-local-variables-prop-line, hack-local-variables)
10524         (hack-one-local-variable): Use STRING arg of
10525         `hack-local-variables-confirm'.
10527 2005-05-14  Michael Albinus  <michael.albinus@gmx.de>
10529         Sync with Tramp 2.0.49.
10531         * net/tramp.el (tramp-handle-dired-call-process)
10532         (tramp-handle-insert-directory):`insert-buffer' cannot be used
10533         because the contents of the Tramp buffer is changed before
10534         insertion (`expand-file' and alike).
10535         (tramp-handle-insert-directory): If `localname' has an empty
10536         nondirectory name, it must not be quoted.
10537         (tramp-pre-connection): Add parameter CHUNKSIZE.  Make local
10538         variable `tramp-chunksize'.  Change callees.
10539         (tramp-open-connection-setup-interactive-shell): Check remote host
10540         for buggy `send-process-string' implementation.
10541         Set `tramp-chunksize' if found.  Reported by Michael Kifer
10542         <kifer@cs.sunysb.edu> (and a lot of other people all the years).
10543         (tramp-handle-shell-command): `insert-buffer' cannot be used
10544         because the contents of the Tramp buffer is changed before
10545         insertion (`expand-file' and alike).  Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
10546         <frederic.bothamy@free.fr>.
10547         (tramp-set-auto-save): Actions should be done for Tramp file name
10548         handler only.  Ange-FTP has its own auto-save mechanism.
10549         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
10550         (tramp-set-auto-save-file-modes): Set file modes of
10551         `buffer-auto-save-file-name' to ?\600 as fallback solution.
10552         Reported by Ferenc Wagner <wferi@tba.elte.hu>.
10553         (tramp-bug): Remove obsolete variable.
10554         (tramp-append-tramp-buffers): Rewrite partly.  More suitable check
10555         for presence of `mml-mode'.  Make it running for older Emacsen as well.
10557 2005-05-14  John Paul Wallington  <jpw@pobox.com>
10559         * ibuf-ext.el (define-ibuffer-filter filename):
10560         If `dired-directory' is a list, use its car.
10562 2005-05-14  Daniel Brockman  <daniel@brockman.se>  (tiny change)
10564         * ibuffer.el (define-ibuffer-column filename):
10565         If `dired-directory' is a list, use its car.
10567 2005-05-14  Richard M. Stallman  <rms@gnu.org>
10569         * subr.el (symbol-file): Doc fix.
10571         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
10572         (byte-compile-form): Call byte-compile-nogroup-warn.
10573         (byte-compile-warning-types): Doc fix.
10575         * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
10577         * progmodes/cc-engine.el (c-literal-faces):
10578         Add font-lock-comment-delimiter-face.
10580         * net/net-utils.el (dig): Use with-no-warnings.
10582         * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
10583         (sc-recite-frame-alist, sc-default-cite-frame)
10584         (sc-default-uncite-frame, sc-default-recite-frame)
10585         (sc-attrib-selection-list, sc-rewrite-header-list):
10586         Mark as risky-local-variable.
10588         * international/ogonek.el (ogonek-jak, ogonek-how):
10589         Don't use beginning-of-buffer.
10591         * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
10593         * calendar/solar.el (solar-data-list): Move definition up.
10595         * dnd.el (dnd-protocol-alist): Add autoload.
10597         * progmodes/sh-script.el: Many doc usage fixes.
10598         (sh-indent-after-do): Change default to match common styles.
10600 2005-05-13  Luc Teirlinck  <teirllm@auburn.edu>
10602         * files.el (interpreter-mode-alist)
10603         (auto-mode-interpreter-regexp): Doc fixes.
10605 2005-05-13  Matt Hodges  <MPHodges@member.fsf.org>
10607         * tmm.el (tmm-get-keymap): Include only active menus and menu items.
10609         * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
10611 2005-05-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10613         * dired.el (dired-mode): make-variable-buffer-local =>
10614         make-local-variable.
10616 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10618         * term/mac-win.el (mac-select-convert-to-string): Try coding
10619         systems in mac-script-code-coding-systems if specified one cannot
10620         encode string for `com.apple.traditional-mac-plain-text'.
10622 2005-05-13  Daniel Pfeiffer  <occitan@esperanto.org>
10624         * progmodes/make-mode.el (makefile-targets-face)
10625         (makefile-shell-face, makefile-makepp-perl-face): New faces.
10626         (makefile-dependency-regex): Fix it to not make the colon in
10627         $(var:a=b) special.
10628         (makefile-rule-action-regex): New regexp for highlighting embedded
10629         Shell strings.
10630         (makefile-macroassign-regex): Handle != for highlighting as
10631         embedded Shell strings.
10632         (makefile-var-use-regex): New const.
10633         (makefile-statements, makefile-automake-statements)
10634         (makefile-gmake-statements, makefile-makepp-statements)
10635         (makefile-bsdmake-statements): New consts.
10636         (makefile-make-font-lock-keywords): New function.
10637         (makefile-automake-font-lock-keywords)
10638         (makefile-gmake-font-lock-keywords)
10639         (makefile-makepp-font-lock-keywords)
10640         (makefile-bsdmake-font-lock-keywords): New consts.
10641         (makefile-mode-map): Add switchers between the various submodes.
10642         (makefile-mode): Document the availability of the variants.
10643         (makefile-automake-mode, makefile-gmake-mode)
10644         (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
10646         * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
10647         new variants of makefile-mode.
10649 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10651         * font-lock.el (font-lock-comment-delimiter-face): Fix up
10652         the inheritance.
10654 2005-05-12  Luc Teirlinck  <teirllm@auburn.edu>
10656         * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
10657         (inferior-lisp-load-hook): Convert defcustoms back to defvars.
10659         * files.el (normal-mode): Extend the scope of the
10660         `enable-local-variables' binding to include the `set-auto-mode' call.
10661         (magic-mode-alist): Doc fix.
10663 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10665         * font-lock.el (font-lock-comment-delimiter-face): Inherit from
10666         font-lock-comment-face rather than copying its setting.
10668 2005-05-12  Andreas Schwab  <schwab@suse.de>
10670         * eshell/esh-mode.el (eshell-send-input): Doc fix.
10672 2005-05-12  Lute Kamstra  <lute@gnu.org>
10674         * emacs-lisp/generic.el (define-generic-mode): Don't generate a
10675         defcustom for the mode hook variable.  Delete the last argument.
10676         * generic-x.el: Fix callers of define-generic-mode.
10677         (generic-x-modes): Delete group.
10678         (show-tabs-tab-face, show-tabs-space-face): Put them in the
10679         generic-x customization group.
10681 2005-05-12  Kim F. Storm  <storm@cua.dk>
10683         * font-lock.el (font-lock-negation-char-face): Default to "off".
10685         * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
10686         font-lock-negation-char-face to ! in !=.
10688 2005-05-12  Masatake YAMATO  <jet@gyve.org>
10690         * add-log.el (find-change-log): Fix typos in the docstring
10691         of function.
10693 2005-05-11  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
10695         * international/latexenc.el (latexenc-find-file-coding-system):
10696         Avoid `re-search-forward' when looking for input encoding because
10697         of speed and safety.  Better regular expressions for recognizing
10698         input encoding.  Limit a search for TeX-master/tex-main-file to
10699         the local variable section.
10701 2005-05-11  Dan Nicolaescu  <dann@ics.uci.edu>
10703         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
10704         syntax of $ to "'" (quote).
10706 2005-05-11  Reiner Steib  <Reiner.Steib@gmx.de>
10708         * dnd.el (dnd-protocol-alist): Improve custom type.
10710         * dired.el (dired-dnd-protocol-alist): New variable.
10711         (dired-mode): Use `dired-dnd-protocol-alist'.  Move call of
10712         `dired-mode-hook' to the end.
10714 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10716         * font-lock.el (font-lock-fontify-syntactically-region): Don't use
10717         comment-end if comment-start-skip is not set.
10718         Obey the font-lock-comment-delimiter-face variables.
10720 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10722         * files.el (executable-find): Move from executable.el.  Use
10723         locate-file.
10724         * progmodes/executable.el (executable-find): Move to files.el.
10726         * font-lock.el (font-lock-fontify-keywords-region): Use a marker
10727         when trying to ensure forward progress.
10729 2005-05-11  Chong Yidong  <cyd@stupidchicken.com>
10731         * mouse-sel.el (mouse-sel-follow-link-p): New function.
10732         (mouse-select, mouse-select-internal, mouse-extend-internal):
10733         Use it to implement mouse-1-click-follows-link functionality.
10735 2005-05-11  Richard M. Stallman  <rms@gnu.org>
10737         * font-lock.el (font-lock-fontify-syntactically-region):
10738         Use font-lock-comment-delimiter-face for comment delimiters.
10740 2005-05-10  Jay Belanger  <belanger@truman.edu>
10742         * calc/calc-help.el (calc-m-prefix-help): Add mention of
10743         preserving embedded modes.
10745 2005-05-10  Richard M. Stallman  <rms@gnu.org>
10747         * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
10749         * progmodes/ada-mode.el (ada-adjust-case-skeleton):
10750         Move from ada-stmt.el.
10751         (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
10753         * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
10754         Move to ada-mode.el.
10755         (ada-stmt-mode-hook): Delete; do the work in ada-mode.
10757         * cus-edit.el (custom-file): Call file-chase-links.
10759         * files.el (read-directory-name): Fix previous change.
10760         (hack-local-variables-confirm): New function.
10761         (hack-local-variables-prop-line, hack-local-variables)
10762         (hack-one-local-variable): Use it.
10764 2005-05-10  Lute Kamstra  <lute@gnu.org>
10766         * font-lock.el (font-lock-keywords-alist)
10767         (font-lock-removed-keywords-alist): Clarify docstrings.
10769 2005-05-10  Nick Roberts  <nickrob@snap.net.nz>
10771         * progmodes/gdb-ui.el (gdb-macro-info): New variable.
10772         (gdb-source-info): Check for preprocessor info.
10773         (gdb-tooltip-print-1): New function.  Don't print tooltip if it is
10774         a macro for a function.
10775         (gdb-info-breakpoints-custom): Try to find file again if not already
10776         found (user might have used GDB dir command).
10777         (gdb-get-location): Update gdb-location-alist correctly for change
10778         to gdb-info-breakpoints-custom.
10780         * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
10781         (gud-tooltip-print-command): Add gdbmi case.
10782         (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
10783         preprocessor info.
10785 2005-05-09  Reiner Steib  <Reiner.Steib@gmx.de>
10787         * startup.el (fancy-splash-insert): Fix typo in doc string.
10789 2005-05-09  Juanma Barranquero  <lekktu@gmail.com>
10791         * obsolete/float.el (string-to-float):
10792         * obsolete/hilit19.el (hilit-add-pattern):
10793         * obsolete/rnews.el (news-parse-range, news-select-message)
10794         (news-get-pruned-list-of-files): Replace `string-to-int' by
10795         `string-to-number'.
10797         * obsolete/uncompress.el: Set `find-file-not-found-functions', not
10798         `find-file-not-found-hooks'; use `add-hook'.
10799         (uncompress-while-visiting): Set `write-file-functions', not
10800         `write-file-hooks'; use `add-hook'.
10802 2005-05-09  Kim F. Storm  <storm@cua.dk>
10804         * emulation/cua-base.el (cua-copy-region, cua-cut-region)
10805         (cua-paste): Handle clipboard action.
10806         (cua--init-keymaps): Remap clipboard-kill-region and
10807         clipboard-kill-ring-save.
10809 2005-05-08  Eli Zaretskii  <eliz@gnu.org>
10811         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
10812         Improve commentary.
10814         * simple.el (next-error-overlay-arrow-position): Revert the change
10815         made on 2005-04-30.
10817 2005-05-07  Jay Belanger  <belanger@truman.edu>
10819         * calc/calcsel2.el (calc-commute-left, calc-commute-right)
10820         (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
10821         `calc-sel-reselect'.
10823         * calc/calc-mode.el (calc-save-modes): Reset the modes list if
10824         Calc is in embedded mode.
10826 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
10828         * progmodes/compile.el (compilation-setup):
10829         Set overlay-arrow-string to an empty string on text terminals.
10831         * textmodes/ispell.el (ispell-program-name): Try looking for
10832         "aspell" along exec-path, and if found, use it as the default
10833         speller program.
10835 2005-05-07  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
10837         * international/mule.el (sgml-xml-auto-coding-function):
10838         Recognize encoding='FOO' in single quotes as well as in double quotes.
10840 2005-05-07  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
10842         * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
10843         as well as `interactive', so that defmacro* would recognize
10844         `declare' forms.
10846 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
10848         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
10849         Explain more about the LIGHTER arg's usage in the doc string.
10850         Add commentary to clarify what the code does.  Fix the regexp that
10851         strips whitespace from LIGHTER.  Quote LIGHTER before using it,
10852         since it could have characters special to regular expressions.
10854 2005-05-07  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
10856         * replace.el (occur-1): Bind inhibit-read-only so that
10857         erase-buffer doesn't barf on read-only text properties (likewise
10858         for add-text-properties in occur-engine).  Mark buffer as unmodified.
10859         (occur-engine): Don't set buffer-read-only here.
10861 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10863         * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
10864         list-buffers-directory.  This caused the *cvs-commit* buffer to be
10865         sometimes mistakenly reused as a *cvs* buffer.
10867 2005-05-07  Nick Roberts  <nickrob@snap.net.nz>
10869         * tooltip.el: Move code for GUD tooltips into gud.el.
10870         (require): CL no longer needed to compile case.
10871         (tooltip-mode): Do not toggle functions for GUD tooltips.
10872         (tooltip-gud-tips-p): Remove.  Replace with minor mode
10873         gud-tooltip-mode in gud.el.
10874         (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
10875         (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
10876         tooltip-gud prefix with gud-tooltip and obsolete.
10877         (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
10878         (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
10879         (tooltip-mouse-motion): Mouse movement functions/variable.
10880         Rename in gud.el by adding gud prefix.
10881         (tooltip-gud-original-filter, tooltip-gud-dereference)
10882         (tooltip-gud-event, tooltip-toggle-gud-tips)
10883         (tooltip-gud-process-output, tooltip-gud-print-command)
10884         (tooltip-gud-tips): GUD tooltip functions/variables.  Rename in
10885         gud.el by replacing tooltip-gud prefix with gud-tooltip.
10886         (gdb-tooltip-print): Move to gdb-ui.el.
10888         * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
10889         (require): CL needed to compile case.
10890         (gud-tooltip-mode): Use to toggle GUD tooltips instead of
10891         tooltip-gud-tips-p.  Make it a minor-mode.
10892         (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
10893         (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
10894         (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
10895         (gud-tooltip-change-major-mode)
10896         (gud-tooltip-activate-mouse-motions-if-enabled)
10897         (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
10898         (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
10899         (gud-tooltip-original-filter, gud-tooltip-dereference)
10900         (gud-tooltip-event, tooltip-toggle-gud-tips)
10901         (gud-tooltip-process-output, gud-tooltip-print-command)
10902         (gud-tooltip-tips): Move from tooltip.el.
10904         * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
10905         (gdb-cpp-define-alist-flags): Doc fix.
10906         (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
10907         gud-tooltip-mode is t.
10909 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10911         * net/goto-addr.el (goto-address-fontify): Make sure the overlays
10912         evaporate if their text is deleted.
10913         (goto-address-at-point): Make it work as a mouse binding as well.
10914         (goto-address-at-mouse): Obsolete it.  Update users.
10916 2005-05-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
10918         * calendar/appt.el (top-level): No longer activate on load.
10920 2005-05-06  Juanma Barranquero  <lekktu@gmail.com>
10922         * calendar/cal-bahai.el (mark-bahai-diary-entries):
10923         * net/webjump.el (webjump):
10924         * progmodes/idlw-help.el (idlwave-do-context-help1)
10925         (idlwave-highlight-linked-completions):
10926         * textmodes/po.el (po-find-file-coding-system-guts):
10927         Replace `assoc-ignore-case' by `assoc-string'.
10929 2005-05-06  Eli Zaretskii  <eliz@gnu.org>
10931         * files.el (locate-file): Doc fix.
10933         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
10934         Remove the redundant test for ms-dos.
10936         * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
10937         look for the preprocessor with exec-suffixes.  If not found in
10938         standard places, look in exec-path.  Remove most of the tests that
10939         used system-type.
10941         * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
10943         * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
10945         * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
10946         file-name clash with jka-compr.el on 8+3 filesystems.
10948 2005-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10950         * term/mac-win.el: Don't define or bind scroll bar functions if
10951         x-toolkit-scroll-bars is t.
10952         (x-select-text, x-get-selection-value): Clear
10953         x-last-selected-text-clipboard if x-select-enable-clipboard is
10954         nil.
10955         (PRIMARY): Put mac-scrap-name property.
10956         (mac-select-convert-to-file-url): New function.
10957         (public.file-url): New selection target type.  Add to
10958         selection-converter-alist.
10959         (x-get-selection, x-selection-value): Handle it.
10960         (x-cut-buffer-or-selection-value): New alias.
10962 2005-05-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10964         * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
10965         entry to avoid calling bibtex-find-entry with arg global
10966         being t.  Remove arg key.
10967         (bibtex-summary-function, bibtex-complete-crossref-cleanup)
10968         (bibtex-copy-summary-as-kill): Change accordingly.
10970 2005-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10972         * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
10973         (org-agenda-date-later): Use with-current-buffer.
10975 2005-05-05  Luc Teirlinck  <teirllm@auburn.edu>
10977         * emacs-lisp/byte-run.el (define-obsolete-function-alias)
10978         (define-obsolete-variable-alias): Doc Fixes.
10980 2005-05-06  Kim F. Storm  <storm@cua.dk>
10982         * simple.el (line-move-1): Fix 2005-04-26 change.  Must still use
10983         vertical-motion when selective-display is active.
10985         * ido.el (ido-setup-hook): New hook.
10986         (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
10987         (ido-input-stack): New var.
10988         (ido-define-mode-map): Bind M-b to ido-push-dir.  Move old
10989         ido-next-work-file binding to M-O.
10990         Bind M-f to ido-wide-find-file-or-pop-dir.
10991         (ido-define-mode-map): Don't run ido-define-mode-map-hook.
10992         (ido-read-internal): Run ido-setup-hook.
10993         Catch quit in read-file-name and read-string to cancel edit.
10994         Handle new push, pop, and pop-all exit codes (for M-b/M-f).
10995         Automatically pop-all when completing a directory name (RET).
10996         (ido-file-internal): Add with-no-warnings around ffap and dired code.
10997         (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
10998         (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
10999         (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
11000         New functions for M-b/M-f to move among the directory components.
11001         (ido-make-merged-file-list): Catch quit to cancel merge.
11002         (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
11003         (ido-completion-help): No warnings for ido-completion-buffer-full.
11005 2005-05-05  Daniel Pfeiffer  <occitan@esperanto.org>
11007         * font-lock.el (font-lock-negation-char-face): New face and variable.
11008         * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
11009         * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
11010         * progmodes/cperl-mode.el (cperl-init-faces): Use it.
11011         * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
11013 2005-05-05  Juanma Barranquero  <lekktu@gmail.com>
11015         * emacs-lisp/byte-run.el (define-obsolete-function-alias):
11016         Fix typo in docstring.
11018         * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
11019         (ebrowse-print-statistics-line)
11020         (ebrowse-electric-position-mode-hook): Fix typo in docstring.
11022         * term/w32-win.el (image-library-alist): Add additional name for
11023         Xpm library.
11025 2005-05-05  Nick Roberts  <nickrob@snap.net.nz>
11027         * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
11028         use gcc instead of cpp.
11030         * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
11031         (gdb-create-define-alist): Use it.
11032         (gdb-cpp-define-alist-program): Update for MS-DOS.
11034 2005-05-04  Nick Roberts  <nickrob@snap.net.nz>
11036         * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
11038 2005-05-04  Richard M. Stallman  <rms@gnu.org>
11040         * help.el (describe-key): No error when UNTRANSLATED is nil.
11042         * simple.el (line-move-1): Fix previous change to signal errors
11043         appropriately.
11045 2005-05-03  Ulf Jasper  <ulf.jasper@web.de>
11047         * calendar/icalendar.el (icalendar-version): Now at 0.12.
11048         (icalendar-duration-correction): Remove.
11049         (icalendar--get-event-properties): Split result at commas.
11050         (icalendar--decode-isoduration): New optional argument
11051         DURATION-CORRECTION.
11052         (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
11053         (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
11054         (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
11055         (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
11056         (icalendar--convert-anniversary-to-ical): New functions, extracted
11057         from icalendar-export-region, with bug fixes.
11058         (icalendar-export-region): Use the above functions.
11059         (icalendar-import-buffer): Check before saving diary file.
11060         (icalendar--convert-recurring-to-diary)
11061         (icalendar--convert-non-recurring-all-day-to-diary)
11062         (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
11063         extracted from icalendar--convert-ical-to-diary, with bug fixes.
11064         (icalendar--convert-ical-to-diary): Use the above functions.
11066 2005-05-03  Nick Roberts  <nickrob@snap.net.nz>
11068         * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
11069         Remove these recent additions.
11070         (c-mode): Restore to before 2005-04-28.
11072         * progmodes/cc-vars.el (cc-define-list-program): Remove this
11073         recent addition.
11075         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
11076         (gdb-define-alist): New variables.
11077         (gdb-create-define-alist): New function.
11078         (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
11079         (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
11080         with string-to-number.
11081         (gdb-reset): Kill gdb-define-alist.  Move assignments outside loop.
11083         * progmodes/gud.el: Replace string-to-int with string-to-number.
11084         (gud-find-file): Handle gdb-define-alist.
11086         * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
11088 2005-05-02  Jay Belanger  <belanger@truman.edu>
11090         * calc/calc-aent.el (math-read-token):
11091         * calc/calc-bin.el (calc-word-size):
11092         * calc/calc-ext.el (calc-read-number-fancy):
11093         * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
11094         (math-parse-date, math-parse-standard-date, calcFunc-tzone):
11095         * calc/calc-frac.el (calc-over-notation):
11096         * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
11097         (calc-graph-num-points, calc-graph-init):
11098         * calc/calc-prog.el (calc-read-parse-table-part)
11099         (calc-edit-macro-repeats):
11100         * calc/calc-yank.el (calc-do-grab-rectangle):
11101         * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
11102         Replace `string-to-int' by `string-to-number'.
11104 2005-05-02  Kim F. Storm  <storm@cua.dk>
11106         * kmacro.el: Use executing-kbd-macro-index variable.
11108 2005-05-02  Thien-Thi Nguyen  <ttn@gnu.org>
11110         * net/rlogin.el (rlogin-parse-words): Delete func.
11111         (rlogin): Use split-string, not rlogin-parse-words.
11112         Also, if there are option-like elements in the parsed args,
11113         take the host to be the first arg immediately following them.
11114         Suggested by Michael Mauger.
11116 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
11118         * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
11120 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
11122         * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
11123         (cc-mode-cpp-program): Rename to cc-define-list-program and
11124         move to cc-vars.el.
11126         * progmodes/cc-vars.el (cc-define-list-program):
11127         Change to "gcc -E -dM -".  Make customizable.
11129 2005-05-02  Kim F. Storm  <storm@cua.dk>
11131         * emulation/cua-base.el: Fix check for CUA-mode if no init file.
11133 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
11135         * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
11137         * international/mule-util.el (truncate-string): Remove alias and
11138         obsolete declaration.
11140         * international/mule-cmds.el (update-iso-coding-systems):
11141         Remove alias and obsolete declaration.
11143         * international/mule.el (coding-system-parent): Remove alias and
11144         obsolete declaration.
11146         * subr.el (define-function, sref): Remove aliases and obsolete
11147         declarations.
11148         (chars-in-region): Remove obsolete declaration.
11150 2005-05-01  Richard M. Stallman  <rms@gnu.org>
11152         * info.el (Info-mode): Set widen-automatically to nil, locally.
11154         * simple.el (widen-automatically): New variable.
11155         (pop-global-mark): Obey widen-automatically.
11157 2005-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
11159         * term/xterm.el (function-key-map): Call substitute-key-definition
11160         before the keymap size is increased by a lot of define-key calls.
11162 2005-05-01  Richard M. Stallman  <rms@gnu.org>
11164         * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
11165         Rename ARG to ELEMENT.  Doc fix.
11167 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
11169         * allout.el (allout-exposure): Remove macro and obsolete declaration.
11170         Remove references to allout-exposure/change to allout-new-exposure.
11172         * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
11173         bytecode symbols.
11175         * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
11176         (compiled-function-p, focus-frame, unfocus-frame):
11177         Remove aliases and obsolete declarations.
11178         Back out inadvertent changes from previous commit.
11180 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
11182         * files.el (require-final-newline): Make Custom tags consistent
11183         with mode-require-final-newline.
11184         (mode-require-final-newline): Doc fix.
11186 2005-05-01  Stefan Monnier <monnier@iro.umontreal.ca>
11188         * international/latexenc.el (latexenc-find-file-coding-system):
11189         Fix regular expressions.
11191 2005-05-01  David Kastrup <dak@gnu.org>
11193         * international/latexenc.el (latexenc-find-file-coding-system):
11194         Fix regular expressions.
11196 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
11198         * subr.el (string-to-int): Make obsolete.
11200 2005-04-30  Richard M. Stallman  <rms@gnu.org>
11202         * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
11204         * loadup.el: load jka-comp-hook.
11206         * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
11207         (jka-compr-handler): Add autoload.  `put' calls moved
11208         to jka-comp-hook.el.
11209         (compression, jka-compr): defgroups moved to jka-comp-hook.el.
11210         (jka-compr-inhibit): Autoload.
11212         * jka-comp-hook.el: New file.
11213         Enable the mode by default.
11215         * files.el (backup-buffer-copy): Use copy-file instead
11216         of write-region, and put back the 'excl.
11218 2005-04-30  Chong Yidong  <cyd@stupidchicken.com>
11220         * progmodes/flymake.el (flymake-split-string)
11221         (flymake-split-string, flymake-log, flymake-pid-to-names)
11222         (flymake-reg-names, flymake-get-source-buffer-name)
11223         (flymake-unreg-names, flymake-add-line-err-info)
11224         (flymake-add-err-info): Clarify docstrings.
11225         (flymake-popup-menu, flymake-make-emacs-menu)
11226         (flymake-make-xemacs-menu): Add docstrings.
11227         (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
11228         Set variables directly throughout.
11230 2005-04-30  Nick Roberts  <nickrob@snap.net.nz>
11232         * progmodes/cc-mode.el (cc-create-define-alist): Check that file
11233         exists.  Initialize cc-define-alist.
11234         (c-mode): Add cc-create-define-alist locally to after-save-hook.
11235         If there is no file (Macroexpansion) don't create an alist.
11237 2005-04-29  Sam Steingold  <sds@gnu.org>
11239         * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
11240         (cc-create-define-alist): Use it instead of the hard-coded string.
11242 2005-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11244         * international/mule-conf.el (file-coding-system-alist): Fix regexp
11245         for latexenc.
11247 2005-04-29  Lute Kamstra  <lute@gnu.org>
11249         * emacs-lisp/generic.el: Improve commentary section.
11250         (define-generic-mode): Improve docstring.
11252 2005-04-29  Carsten Dominik  <dominik@science.uva.nl>
11254         * textmodes/org.el (many places): Change to quiet the byte compiler.
11255         (org-prefix-format-compiled): New variable.
11256         (org-compile-prefix-format): New function.
11257         (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
11258         (org-agenda-prefix-format,org-timeline-prefix-format): New options.
11259         (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
11260         (org-get-entries-from-diary): Use `org-get-time-of-day' for
11261         consistency with entries from `org-mode' files.
11262         (org-get-time-of-day): Fix bug with partial matches early in a line.
11263         (org-non-link-chars): New constant.
11264         (org-link-regexp): Respect `org-non-link-chars'.
11265         (org-agenda-day-view): Remove command.
11266         (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
11267         (org-follow-bbdb-link, org-store-link): Search also company field.
11268         (org-highlight-overlay): New variable.
11269         (org-highlight, org-unhighlight): New functions.
11270         (org-agenda-mode): Add pre-command-hook to remove highlight.
11271         (org-evaluate-time-range): Behavior depends upon whether time stamp
11272         contains a time or not.
11273         (org-show-subtree, org-show-entry): New functions.
11274         (org-agenda-cleanup-fancy-diary): Remove empty lines.
11276 2005-04-28  Luc Teirlinck  <teirllm@auburn.edu>
11278         * comint.el (comint-output-filter-functions): Add autoload cookie.
11280 2005-04-28  Kim F. Storm  <storm@cua.dk>
11282         * ido.el (ido-everywhere): Fix last change.
11284 2005-04-28  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
11286         * international/latexenc.el: New file.
11287         * international/mule-conf.el (file-coding-system-alist): For .tex,
11288         .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
11290 2005-04-28  Lute Kamstra  <lute@gnu.org>
11292         * font-lock.el (font-lock-add-keywords)
11293         (font-lock-remove-keywords): Clarify docstring.
11294         (font-lock-keywords-alist, font-lock-removed-keywords-alist):
11295         Don't start docstrings with a `*'.
11296         (font-lock-update-removed-keyword-alist): Give it a docstring.
11298         * generic-x.el: Update commentary section.
11299         Only require font-lock when compiling.
11300         Define all modes conditionally.
11301         Place all generic modes in the generic-x-modes customization group.
11302         (generic-x-modes): New customization group.
11303         (generic-default-modes, generic-mswindows-modes)
11304         (generic-unix-modes, generic-other-modes): New constants.
11305         (generic-define-mswindows-modes, generic-define-unix-modes):
11306         Update docstrings.  Make them obsolete.
11307         (generic-extras-enable-list): New default value.  Update docstring.
11308         Improve :type.  Change :set function.
11309         (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
11310         Fix docstring.
11312         * emacs-lisp/generic.el (generic-mode-internal):
11313         Simplify font-lock-defaults.
11314         (define-generic-mode): Fix docstring.
11316 2005-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11318         * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
11319         font-lock-face property to highlight matches.
11321 2005-04-28  Nick Roberts  <nickrob@snap.net.nz>
11323         * progmodes/cc-mode.el (cc-create-define-alist): New function.
11324         (cc-define-alist): New variable.
11325         (c-mode): Make it local and initialize it.
11327         * progmodes/gdb-ui.el (gdb-active-process): New variable.
11328         (gdb-exited): New function.
11329         (gdb-annotation-rules): Use it.
11330         (gdb-starting): Set gdb-active-process to t.
11331         (gdb-stopping): Amend doc string.
11332         (gdb-reset): Set gdb-active-process to nil.
11334         * tooltip.el (tooltip-gud-tips): Show the associated #define
11335         directives when a C program under GDB is not executing.
11337 2005-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11339         * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
11340         font-lock-fontify-syntactic-keywords.
11342         * font-lock.el (font-lock-default-fontify-region): Don't force
11343         parse-sexp-lookup-properties to nil.
11345 2005-04-27  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
11347         * man.el (man-mode-syntax-table): Set up `:' to have
11348         word-constituent syntax.
11350 2005-04-27  Lute Kamstra  <lute@gnu.org>
11352         * novice.el (disable-command): Don't add spurious newlines to the
11353         init file.  Reported by Dan Jacobson <jidanni@jidanni.org>.
11355 2005-04-26  Jay Belanger  <belanger@truman.edu>
11357         * calc/calc-yank.el (calc-edit-finish): Make sure there is more
11358         than one window before deleting window.
11360 2005-04-26  Luc Teirlinck  <teirllm@auburn.edu>
11362         * shell.el (shell-prompt-pattern): Doc fix.
11363         (shell-mode): Set paragraph-separate buffer locally to "\\'".
11365         * comint.el (comint-prompt-regexp, comint-get-old-input)
11366         (comint-use-prompt-regexp)
11367         (comint-use-prompt-regexp-instead-of-fields)
11368         (comint-replace-by-expanded-history, comint-send-input)
11369         (comint-output-filter, comint-get-old-input-default)
11370         (comint-line-beginning-position, comint-bol, comint-show-output)
11371         (comint-backward-matching-input, comint-forward-matching-input)
11372         (comint-next-prompt, comint-previous-prompt):
11373         Rename `comint-use-prompt-regexp-instead-of-fields' to
11374         `comint-use-prompt-regexp'.  Keep old name as alias and declare
11375         obsolete.
11376         (comint-use-prompt-regexp): Shorten first line of doc string.
11378         * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
11379         Set paragraph-separate buffer locally to "\\'".
11381         * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
11382         Adapt to above name change.
11384         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
11385         (smbclient-prompt-regexp): Ditto.
11387         * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
11389 2005-04-27  Nick Roberts  <nickrob@snap.net.nz>
11391         * progmodes/gdb-ui.el (gdb-location-alist): Rename from
11392         gdb-location-list.
11393         Break lines that are over 80 characters wide.
11395 2005-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11397         * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
11398         New fun and var, to preserve compatibility.
11400         * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
11402 2005-04-26  Dominique de Waleffe  <ddw@missioncriticalit.com>  (tiny change)
11404         * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
11405         name to file-newer-than-file-p.
11407 2005-04-26  Richard M. Stallman  <rms@gnu.org>
11409         * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
11411         * progmodes/python.el (python-mode):
11412         Use new name eldoc-documentation-function.
11414         * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
11416         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
11417         (eldoc-documentation-function):
11418         Rename from eldoc-print-current-symbol-info-function.  Calls changed.
11420 2005-04-26  Nick Roberts  <nickrob@snap.net.nz>
11422         * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
11424 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
11426         * term/xterm.el (function-key-map): Fix strings for
11427         {C,S,A,C-S}-f[1-4].  Use substitute-key-definition to bind
11428         {C,S,A,C-S}-{f1-f12}.
11430 2005-04-26  Kenichi Handa  <handa@m17n.org>
11432         * international/mule-cmds.el (select-safe-coding-system):
11433         Fix previous change.
11435 2005-04-26  Lute Kamstra  <lute@gnu.org>
11437         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
11439         * font-lock.el (font-lock-fontify-region-function): Fix docstring.
11440         (font-lock-comment-delimiter-face): Ditto.
11442         * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
11444 2005-04-25  Jay Belanger  <belanger@truman.edu>
11446         * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
11447         to t while inserting information; use help-mode.
11449 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
11451         * term.el (ansi-term-color-vector): Use the xterm colors.
11452         (term-raw-map): Don't add mappings for \eO and \e[.  Map deletechar.
11454 2005-04-25  Lute Kamstra  <lute@gnu.org>
11456         * font-core.el (font-lock-defaults): Fix docstring.
11458         * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
11460 2005-04-25  Kenichi Handa  <handa@m17n.org>
11462         * international/mule-cmds.el (select-safe-coding-system):
11463         Don't check consistency with coding: spec, etc if raw-text or
11464         no-conversion was found to be safe.
11466 2005-04-24  Richard M. Stallman  <rms@gnu.org>
11468         * mail/sendmail.el (mail-font-lock-keywords): Match any number of
11469         citation markers at start of each line.
11471         * mail/rmail.el (rmail-font-lock-keywords): Match any number of
11472         citation markers at start of each line.
11474         * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
11476         * files.el (mode-require-final-newline): Fix previous change.
11477         (require-final-newline): Fix type label.
11479 2005-04-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
11481         * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
11482         statement in buffer (broken by 2004-11-24 change).
11484 2005-04-24  Kim F. Storm  <storm@cua.dk>
11486         * ido.el (ido-everywhere): Save and restore old read-buffer-function
11487         and read-file-name-function values.  Don't overwrite existing
11488         non-nil values if ido-mode is enabled without ido-everywhere.
11490 2005-04-24  Luc Teirlinck  <teirllm@auburn.edu>
11492         * files.el (mode-require-final-newline): Minor doc fix.
11494 2005-04-24  Eli Zaretskii  <eliz@gnu.org>
11496         * subr.el (syntax-after): Doc fix.
11497         (syntax-class): If argument is nil, return nil.  Mask off upper 16
11498         bits, not 8 bits.
11500         * files.el (mode-require-final-newline): Doc fix.
11501         (backup-buffer-copy): Fix last change.
11503 2005-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11505         * term/mac-win.el: Require select.  Set selection-coding-system to
11506         mac-system-coding-system.  Call menu-bar-enable-clipboard.
11507         (x-last-selected-text-clipboard, x-last-selected-text-primary)
11508         (x-select-enable-clipboard): New variables.
11509         (x-select-text, x-get-selection, x-selection-value)
11510         (x-get-selection-value, mac-select-convert-to-string)
11511         (mac-services-open-file, mac-services-open-selection)
11512         (mac-services-insert-text): New functions.
11513         (CLIPBOARD, FIND): Put mac-scrap-name property.
11514         (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
11515         (public.tiff): Put mac-ostype property.
11516         (selection-converter-alist): Add entries for them.
11517         (mac-application-menu-map): New keymap.
11518         (interprogram-cut-function, interprogram-paste-function): Set to
11519         x-select-text and x-get-selection-value, respectively.
11520         (split-window-keep-point): Set to t.
11522 2005-04-23  Richard M. Stallman  <rms@gnu.org>
11524         * files.el (read-directory-name): Always pass non-nil
11525         DEFAULT-FILENAME arg to read-file-name.
11526         (backup-buffer-copy, basic-save-buffer-2): Take care against
11527         writing thru an unexpected existing symlink.
11528         (revert-buffer): In indirect buffer, revert the base buffer.
11529         (magic-mode-alist): Doc fix.
11530         (buffer-stale-function): Doc fix.
11531         (minibuffer-with-setup-hook): Avoid warning.
11532         (mode-require-final-newline): Doc and custom fix.
11534         * follow.el (follow-end-of-buffer): Use with-no-warnings.
11536         * font-lock.el (font-lock-comment-face): On terminals with few colors,
11537         use the default appearance.
11538         (font-lock-comment-delimiter-face): New face, new variable.
11540         * imenu.el (imenu--generic-function): The official position of a
11541         definition is the start of the line that BEG is in.
11543         * midnight.el (midnight-timer): Move defvar up.
11545         * mouse.el (mouse-drag-region-1): Delete some debugging code.
11547         * saveplace.el (save-place-to-alist): Use with-no-warnings.
11549         * startup.el (command-line): Use with-no-warnings.
11551         * window.el (window-size-fixed): New defvar.
11553         * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
11555         * mail/rmail.el (rmail-font-lock-keywords):
11556         Use font-lock-comment-delimiter-face.
11558         * mail/sendmail.el (mail-font-lock-keywords):
11559         Use font-lock-comment-delimiter-face.
11561         * progmodes/compile.el (next-error-highlight-timer): New defvar.
11563 2005-04-23  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
11565         * progmodes/compile.el (compilation-mode-font-lock-keywords):
11566         Specify t for LAXMATCH when matching directories.
11567         Save match data around compilation-compat-error-properties form.
11569 2005-04-23  David Kastrup  <dak@gnu.org>
11571         * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
11572         Mention that the autoloaded aliases should be kept for AUCTeX.
11574 2005-04-23  Andreas Schwab  <schwab@suse.de>
11576         * isearch.el (isearch-forward): Doc fix.
11578 2005-04-23  Eli Zaretskii  <eliz@gnu.org>
11580         * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
11581         (jit-lock-stealth-nice): Change default value to 0.5.
11583 2005-04-23  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
11585         * abbrev.el (write-abbrev-file): Write table entries in
11586         alphabetical order by table name.
11588 2005-04-22  Kim F. Storm  <storm@cua.dk>
11590         * ido.el (ido-read-internal): Fix `list' completion.
11592 2005-04-22  Kenichi Handa  <handa@m17n.org>
11594         * recentf.el (recentf-save-file-coding-system): New variable.
11595         (recentf-save-list): Encode the file by
11596         recentf-save-file-coding-system and add coding: tag.
11598 2005-04-22  Nick Roberts  <nickrob@snap.net.nz>
11600         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
11602 2005-04-21  Lute Kamstra  <lute@gnu.org>
11604         * loadhist.el (unload-feature): Don't remove a function from hooks
11605         if it is about to be restored to an autoload .  Remove functions
11606         that will become unbound from auto-mode-alist.  Simplify the code.
11608         * subr.el (assq-delete-all): New implementation that is linear,
11609         not quadratic.  Suggested by David Kastrup <dak@gnu.org>.
11610         (rassq-delete-all): New function.
11612         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
11613         Add size-indication-mode.
11615 2005-04-21  Kenichi Handa  <handa@m17n.org>
11617         * international/mule-cmds.el: Add autoload for widget-value in
11618         eval-when-compile.
11620 2005-04-21  Nick Roberts  <nickrob@snap.net.nz>
11622         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
11623         Add tooltip-mode.
11625         * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
11627 2005-04-20  Luc Teirlinck  <teirllm@auburn.edu>
11629         * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
11630         (inferior-lisp-filter-regexp, inferior-lisp-program)
11631         (inferior-lisp-load-command, inferior-lisp-prompt)
11632         (inferior-lisp-mode-hook, lisp-source-modes)
11633         (inferior-lisp-load-hook): defvar->defcustom.
11634         (inferior-lisp-program, inferior-lisp-prompt)
11635         (inferior-lisp-load-hook): Doc fixes.
11636         (inferior-lisp-install-letter-bindings): Small change in
11637         introductory comment.
11639 2005-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
11641         * vc.el (vc-annotate-color-map): Change some colors so that text
11642         using them as foreground is readable on both white and black
11643         backgrounds.
11645 2005-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11647         * international/mule-conf.el (translation-table-for-input):
11648         Remove redundant declaration.
11650 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
11652         * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
11654         * tooltip.el (tooltip-gud-tips-p): Expand documentation.
11655         (tooltip-toggle-gud-tips): New function.
11657 2005-04-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11659         * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
11660         right angle brackets.
11662 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
11664         * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
11666 2005-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11668         * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
11669         Remove.  Update callers to use expand-file-name instead.
11671         * subr.el (syntax-class): New function.
11673         * simple.el (blink-matching-open): Use it.
11675         * paren.el (show-paren-function): Use it to recognize parens that are
11676         also used in 2-char comment markers.
11678 2005-04-19  Lute Kamstra  <lute@gnu.org>
11680         * loadhist.el (unload-feature): Update for new format of
11681         load-history.  Simplify the code.
11683 2005-04-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11685         * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
11686         (mac-add-charset-info): New function.  Initialize variable
11687         mac-charset-info-alist using it.
11688         (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
11689         for translation.
11690         (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
11691         (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
11692         (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
11693         New CCL programs.
11695 2005-04-19  Kim F. Storm  <storm@cua.dk>
11697         * simple.el (next-buffer, prev-buffer, next-error)
11698         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
11699         (clone-indirect-buffer-other-window): Move bindings to bindings.el.
11701         * bindings.el (next-buffer, prev-buffer, next-error)
11702         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
11703         (clone-indirect-buffer-other-window): Move bindings from simple.el.
11704         (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
11705         (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
11707 2005-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11709         * isearch.el (isearch-edit-string): Make the search-ring available for
11710         minibuffer history commands.
11711         (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
11712         the default history commands now work just as well.
11713         (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
11715 2005-04-18  Kim F. Storm  <storm@cua.dk>
11717         * emulation/cua-base.el (cua--pre-command-handler): Add more
11718         elaborate check for shift modifier on non-window systems.
11720 2005-04-18  Lars Hansen  <larsh@math.ku.dk>
11722         * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
11724 2005-04-18  Kim F. Storm  <storm@cua.dk>
11726         * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
11727         and make it optional.  Don't test tooltip-gud-echo-area here.
11728         (tooltip-gud-process-output, gdb-tooltip-print):
11729         Pass tooltip-gud-echo-area to tooltip-show.
11730         (tooltip-help-tips): Remove second optional arg to tooltip-show.
11732 2005-04-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11734         * tooltip.el (tooltip-mode): `emacs-quick-startup' and
11735         `display-graphic-p' may not be bound yet.
11737 2005-04-17  Luc Teirlinck  <teirllm@auburn.edu>
11739         * startup.el (command-line): No longer enable Xterm Mouse mode by
11740         default in terminals compatible with xterm.
11742         * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
11744 2005-04-18  Nick Roberts  <nickrob@snap.net.nz>
11746         * tooltip.el (tooltip-gud-echo-area): Rename from
11747         tooltip-use-echo-area.
11748         (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
11749         (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
11750         area independently of where help tooltips are displayed.
11752 2005-04-17  David Kastrup  <dak@gnu.org>
11754         * cus-theme.el (custom-theme-write-variables): Quote variables
11755         where necessary.
11757 2005-04-17  Richard M. Stallman  <rms@gnu.org>
11759         * simple.el (yank-excluded-properties): Add follow-link to value.
11761         * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
11763         * startup.el (fancy-splash-max-time): Just 30 seconds.
11764         (fancy-splash-delay): Just 7.
11765         (fancy-splash-screens): No time limit other than fancy-splash-max-time.
11767         * loadhist.el (unload-feature): Update for new format of load-history.
11768         Simplify the code.
11770         * mail/rmail.el (rmail-ignored-headers): Ignore more headers
11771         (rmail-font-lock-keywords): Don't fontify the text of a citation.
11773         * mail/sendmail.el (mail-font-lock-keywords):
11774         Don't fontify subject text.
11775         Don't fontify the text of a citation.
11777 2005-04-17  Mark H. Weaver  <mhw@netris.org>  (tiny change)
11779         * comint.el (comint-output-filter): Run comint-output-filter-functions
11780         with point where the user had it.
11782 2005-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11784         * international/ucs-tables.el (ucs-set-table-for-input):
11785         Disable when using unify-on-decoding.
11787 2005-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
11789         * emulation/cua-base.el (cua-global-mark-face): Add special case
11790         for displays supporting a high number of colors.
11792 2005-04-16  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
11794         * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
11796 2005-04-16  Chong Yidong  <cyd@stupidchicken.com>
11798         * filesets.el (filesets-add-buffer): If user supplies a name of a
11799         non-existing fileset, create a new fileset.
11801 2005-04-16  Carsten Dominik  <dominik@science.uva.nl>
11803         * textmodes/org.el (org-up-heading-all): Fix bug with
11804         `outline-up-heading-all'.
11806 2005-04-16  Andreas Schwab  <schwab@suse.de>
11808         * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
11809         /etc/permissions.d/* and /etc/aliases.d/*.
11811 2005-04-16  Kenichi Handa  <handa@m17n.org>
11813         * international/code-pages.el (cp-make-coding-system):
11814         Set `translation-table-for-input' property value to the symbol
11815         ucs-mule-to-mule-unicode, not to that value.
11816         (pt154): Escape guillemet by `\'.
11818 2005-04-15  Luc Teirlinck  <teirllm@auburn.edu>
11820         * loadup.el: Load tooltip if x-show-tip is fboundp.
11822         * startup.el (command-line): Add comment.
11824         * tooltip.el (tooltip-mode): Specify correct standard value for
11825         Custom in init-value.
11827 2005-04-15  Nick Roberts  <nickrob@snap.net.nz>
11829         * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
11830         possible.
11832 2005-04-15  Carsten Dominik  <dominik@science.uva.nl>
11834         * textmodes/org.el (org-agenda-date-prompt): Rename from
11835         `org-agenda-date-today'.
11836         (org-evaluate-time-range): Insert at point instead of directly
11837         after time range.
11838         (org-first-headline-recenter, org-subtree-end-visible-p)
11839         (org-optimize-window-after-visibility-change): New functions
11840         (org-agenda-post-command-hook): Don't allow point at end of line,
11841         to make sure it always hits the text properties.
11842         (org-agenda-next-date-line, org-agenda-previous-date-line):
11843         New commands.
11844         (org-set-regexps-and-options): Category may contain white space.
11845         (org-agenda-get-deadlines, org-agenda-get-scheduled):
11846         Improve marker positions.
11847         (org-agenda-new-marker): Argument POS made optional.
11848         (org-agenda-get-timestamps): Deadlines which are done are listed
11849         in org-done-face now.
11850         (org-agenda-get-todos, org-agenda-get-timestamps)
11851         (org-agenda-get-deadlines, org-agenda-get-scheduled):
11852         Set `undone-face' and `done-face' properties.
11853         (org-last-todo-state-is-todo): New variable.
11854         (org-todo): Set `org-last-todo-state-is-todo'.
11855         (org-agenda-todo): Change face according to
11856         `org-last-todo-state-is-todo'.  And change other lines referring to
11857         the same entry.
11858         (org-calendar-goto-agenda): New command.
11859         (org-calendar-to-agenda-key): New option.
11860         (org-startup-folded): New allowed value `content'.
11861         (org-set-regexps-and-options): Accept new value `content' for
11862         `org-startup-folded'.
11863         (org-get-current-options): Handle new value `content' for
11864         `org-startup-folded'.
11865         (org-insert-todo-heading): New command.
11866         (org-mode): Insert first line "*-* mode: org-mode -*-" when called
11867         interactively in empty file and option
11868         `org-insert-mode-line-in-empty-file' has been set.
11869         (org-agenda-todo,org-agenda-priority): Modify to use
11870         `org-agenda-change-all-lines'.
11871         (org-warning-face): Change color on dark background
11873 2005-04-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11875         * international/mule-cmds.el (set-locale-environment): On Mac OS,
11876         use preferences AppleLocale and AppleLanguages, and variable
11877         mac-system-locale for default locale.  On Mac OS Classic, use
11878         mac-system-coding-system for default coding systems.
11880         * term/mac-win.el: Don't set file-name-coding-system.
11881         Decode variables system-name, emacs-build-system, user-login-name, and
11882         user-full-name by mac-system-coding-system on Mac OS Classic.
11883         (mac-system-coding-system): New variable.
11885 2005-04-13  Luc Teirlinck  <teirllm@auburn.edu>
11887         * startup.el (command-line): Handle `xterm-mouse-mode' before
11888         reading init file.
11890         * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
11892 2005-04-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
11894         * progmodes/sh-script.el (sh-here-document-word): Make it a
11895         defcustom.  Doc fix.
11896         (sh-add): Bash uses $(( )) for arithmetic.
11897         (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
11898         (sh-maybe-here-document): Remove quotes and leading whitespace
11899         from heredoc word when closing.  Indent heredoc with tabs if word
11900         starts with "-".
11902 2005-04-13  Richard M. Stallman  <rms@gnu.org>
11904         * simple.el (undo): Fix previous change.
11906         * custom.el (defface): Doc fix.
11908 2005-04-13  Lute Kamstra  <lute@gnu.org>
11910         * Makefile.in (DONTCOMPILE): Remove list.
11911         (compile, compile-always): Don't use DONTCOMPILE.
11912         (update-authors): Load the library in which batch-update-authors
11913         is defined.
11914         * makefile.w32-in (DONTCOMPILE): Remove list.
11915         (compile, compile-always): Fix comments.
11916         (update-authors): Load the library in which batch-update-authors
11917         is defined.
11919         * generic-x.el (generic-mode-ini-file-find-file-hook):
11920         Rename to ini-generic-mode-find-file-hook.
11921         Keep generic-mode-ini-file-find-file-hook as an alias.
11922         (ini-generic-mode-find-file-hook): Rename from
11923         generic-mode-ini-file-find-file-hook.  Fix docstring.
11924         (ini-generic-mode): Docstring change.
11925         (bat-generic-mode-run-as-comint): Silence the byte compiler.
11927         * help.el (describe-key-briefly): UNTRANSLATED can be nil when
11928         called from lisp.
11930         * generic.el: Move to the emacs-lisp subdir.
11932 2005-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
11934         * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
11935         and C-S- function and cursor motion keys.
11937 2005-04-12  Luc Teirlinck  <teirllm@auburn.edu>
11939         * startup.el (command-line): Enable Xterm Mouse mode by default.
11940         * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
11941         for Custom.  No longer show "Mouse" in mode line when enabled.
11942         Doc fix.
11944 2005-04-12  Kim F. Storm  <storm@cua.dk>
11946         * emulation/cua-base.el (cua-rectangle-face)
11947         (cua-rectangle-noselect-face): Define face attributes here.
11949         * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
11951 2005-04-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
11953         * startup.el (command-line): Turn off blinking cursor if
11954         cursorBlink in resources is off or false.
11956 2005-04-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11958         * term/mac-win.el (dnd): Require dnd.
11959         (mac-drag-n-drop): Call dnd-handle-one-url.
11960         (kTextEncodingMacRoman, kTextEncodingISOLatin1)
11961         (kTextEncodingISOLatin2): Remove constants.
11962         (mac-script-code-coding-systems): New constant.
11963         (mac-handle-language-change): New function.
11964         (special-event-map): Bind it to `language-change' event.
11965         (mac-centraleurroman, mac-cyrillic): New coding systems.
11966         (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
11967         (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
11968         and mac-cyrillic-encoder to encode-mac-centraleurroman and
11969         encode-mac-cyrillic, respectively.
11971 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
11973         * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
11974         Don't set overlay-arrow-string to "=>" as this is done
11975         globally in C now.
11977 2005-04-12  Lute Kamstra  <lute@gnu.org>
11979         * generic-x.el (rc-generic-mode, rul-generic-mode):
11980         Fix auto-mode-alist entries.
11981         (etc-fstab-generic-mode): Tweak fontification.
11983         * generic.el (generic-make-keywords-list): Fix docstring.
11984         (generic-mode-internal): Simplify generic-font-lock-keywords.
11986 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
11988         * whitespace.el (whitespace-buffer-leading)
11989         (whitespace-buffer-trailing): Revert the incorrect test inversion.
11990         However, fix the highlight area for the leading and
11991         trailing whitespaces to show space.
11993 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
11995         * whitespace.el (whitespace-version): Bump to 3.5
11997         (whitespace-buffer-leading, whitespace-buffer-trailing):
11998         Invert sense of the test to highlight the whitespace.
12000 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
12002         * progmodes/gud.el (gud-display-line): GUD uses its own
12003         overlay arrow now so don't set overlay-arrow-string.
12004         (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
12006 2005-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
12008         * term.el (term-ansi-current-bold, term-ansi-current-underline)
12009         (term-ansi-current-reverse, term-ansi-current-invisible)
12010         (term-ansi-face-already-done): Change to boolean.
12011         (term-reset-terminal, term-handle-colors-array): Handle the above
12012         vars accordingly.
12013         (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
12014         (term-emulate-terminal): Use the new name.
12016         * faces.el (secondary-selection): Use yellow1, not yellow.
12017         (trailing-whitespace): Use red1, not red.
12019 2005-04-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12021         * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
12022         (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
12023         (dired-dnd-handle-file): Call dnd-get-local-file-uri
12025         * cus-edit.el (dnd): New group.
12027         * term/w32-win.el (dnd): Require dnd
12028         (w32-drag-n-drop): Call dnd-handle-one-url.
12030         * x-dnd.el: Require dnd.
12031         (x-dnd-handle-uri-list, x-dnd-handle-file-name):
12032         Call dnd-handle-one-url.
12033         (x-dnd-types-alist, x-dnd-insert-utf8-text)
12034         (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
12035         to dnd-insert-text.
12036         (x-dnd-protocol-alist, x-dnd-open-file-other-window)
12037         (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
12038         (x-dnd-get-local-file-name, x-dnd-open-local-file)
12039         (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
12041         * dnd.el (dnd-protocol-alist): New file with generic DND functions.
12043 2005-04-11  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
12045         * wdired.el: Doc fixes.
12046         (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
12047         (wdired-use-dired-vertical-movement): Rename from
12048         wdired-always-move-to-filename-beginning.
12049         (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
12050         (wdired-change-to-wdired-mode): Change mode name.
12051         (wdired-newline): Delete.
12053 2005-04-11  Richard M. Stallman  <rms@gnu.org>
12055         * whitespace.el (whitespace-highlight-the-space):
12056         Don't call whitespace-unhighlight-the-space here.
12058         * simple.el (undo): Record t in undo-equiv-table
12059         for the redo record made by an undo-in-region.
12061 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
12063         * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
12064         (gdb-frame-inferior-io-buffer): New Functions to control
12065         display of separate IO buffer.
12066         (menu): Add them to menu-bar.
12067         (gdb-display-buffer): Check for buffer another frame.
12068         Protect GUD buffer.
12069         (gdb-setup-windows): Create IO buffer if not already there.
12070         (gdb-memory-mode): Remove purecopy noops.
12072 2005-04-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
12074         * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
12075         and pass to self-insert-command.
12077 2005-04-11  Lute Kamstra  <lute@gnu.org>
12079         * generic.el: Commentary section cleanup.
12080         (generic): Delete.
12081         (generic-use-find-file-hook, generic-lines-to-scan)
12082         (generic-find-file-regexp, generic-ignore-files-regexp)
12083         (default-generic-mode, generic-mode-find-file-hook)
12084         (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
12085         * generic-x.el (generic-x): Docstring fix.  Put it in the data group.
12086         (generic-use-find-file-hook, generic-lines-to-scan)
12087         (generic-find-file-regexp, generic-ignore-files-regexp)
12088         (default-generic-mode, generic-mode-find-file-hook)
12089         (generic-mode-ini-file-find-file-hook): Move from generic.el.
12091 2005-04-10  Karl Fogel  <kfogel@red-bean.com>
12093         * bookmark.el (bookmark-write-file): Catch errors writing file.
12094         This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
12096 2005-04-10  Richard M. Stallman  <rms@gnu.org>
12098         * startup.el (fancy-splash-tail): Update copyright year.
12099         (command-line): Split part of -Q into -D.
12100         (emacs-basic-display): New defvar.
12101         (fancy-splash-text): Correct name of menu item.
12103         * saveplace.el (save-place-alist-to-file): Catch errors writing file.
12105         * info.el (Info-fontify-node): Handle fontification of multiple * Menu
12106         lines in one node.
12108         * comint.el (comint-send-input): New arg ARTIFICIAL.
12109         Callers in this file changed.
12111         * abbrev.el (define-abbrevs): Read system abbrevs properly.
12113         * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
12115 2005-04-10  Chong Yidong  <cyd@stupidchicken.com>
12117         * url/url-ldap.el (url-ldap): Add docstring.  Fix call to
12118         `ldap-search-internal'.
12120 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12122         * files.el (set-auto-mode-1): Use line-end-position.
12124         * international/latin-1.el:
12125         * international/latin-2.el:
12126         * international/latin-3.el:
12127         * international/latin-4.el:
12128         * international/latin-5.el:
12129         * international/latin-8.el:
12130         * international/latin-9.el: Give punctuation syntax to NBSP.
12132         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
12133         (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
12134         Use char-classes to accept non-ascii letters, accepted in some recent
12135         bibtex implementations.
12137 2005-04-10  Luc Teirlinck  <teirllm@auburn.edu>
12139         * custom.el (custom-set-minor-mode): Any non-nil value for the
12140         variable should enable the mode when set through Custom.
12142 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12144         * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
12145         TAB binding so tab-always-indent is obeyed.
12146         (vhdl-minibuffer-local-map): Move initialization into declaration.
12147         (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
12148         (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
12149         (vhdl-hooked-abbrev): Avoid test for XEmacs.
12150         (vhdl-current-line): Use line-beginning-position.
12151         (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
12152         with-output-to-temp-buffer, so the current position can be recorded.
12154 2005-04-10  Masatake YAMATO  <jet@gyve.org>
12156         * progmodes/compile.el (compilation-error-regexp-alist-alist):
12157         Add regexp for gcov.
12159 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12161         * calendar/time-date.el (time-to-seconds, seconds-to-time)
12162         (days-to-time, time-subtract, time-add): Don't use the #xhhhh
12163         syntax which Emacs 20 doesn't support.
12165 2005-04-09  Richard M. Stallman  <rms@gnu.org>
12167         * help.el (describe-key-briefly, describe-key):
12168         Replace strings as event types with "(any string)".
12170 2005-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12172         * arc-mode.el (archive-mode-map): Move initialization into
12173         the declaration.  Override *all* bindings of `undo'.
12174         (archive-lemacs): Remove, use (featurep 'xemacs) instead.
12176 2005-04-09  Jay Belanger  <belanger@truman.edu>
12178         * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
12180 2005-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
12182         * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
12183         (xterm-register-default-colors): Update color values computation
12184         to match xterm-200.
12186 2005-04-09  Kenichi Handa  <handa@m17n.org>
12188         * international/code-pages.el (iso-latin-7): Fix the map.
12190 2005-04-08  Luc Teirlinck  <teirllm@auburn.edu>
12192         * emacs-lisp/lisp.el (defun-prompt-regexp)
12193         (parens-require-spaces, buffer-end, end-of-defun)
12194         (insert-parentheses): Doc fixes.
12196 2005-04-08  Kim F. Storm  <storm@cua.dk>
12198         * comint.el (comint-highlight-prompt): Fix face spec.
12199         * hi-lock.el (hi-green): Likewise.
12201 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
12203         * cus-edit.el (custom-modified-face):
12204         * comint.el (comint-highlight-input): Fix previous changes.
12205         * term.el (term-handle-ansi-escape): Add a comment.
12207 2005-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12209         * whitespace.el (whitespace-highlight-the-space): Put the same overlay
12210         in the buffer and in whitespace-highlighted-space.
12211         (whitespace-unhighlight-the-space): Simplify.
12212         (whitespace-buffer): Simplify.
12214 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
12216         * textmodes/table.el (table-cell-face): Add special case for
12217         displays supporting a high number of colors.
12218         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
12219         (vhdl-font-lock-reserved-words-face)
12220         (vhdl-speedbar-architecture-face)
12221         (vhdl-speedbar-instantiation-face)
12222         (vhdl-speedbar-architecture-selected-face)
12223         (vhdl-speedbar-instantiation-selected-face): Likewise.
12224         * progmodes/sh-script.el (sh-heredoc-face): Likewise.
12225         * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
12226         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
12227         (ebrowse-root-class-face, ebrowse-member-attribute-face)
12228         (ebrowse-progress-face): Likewise.
12229         * progmodes/compile.el (compilation-info-face): Likewise.
12230         * progmodes/cc-fonts.el (c-invalid-face): Likewise.
12231         * emacs-lisp/re-builder.el (reb-match-3): Likewise.
12232         * calendar/calendar.el (diary-face): Likewise.
12233         * woman.el (woman-italic-face, woman-bold-face)
12234         (woman-unknown-face): Likewise.
12235         * wid-edit.el (widget-button-pressed-face): Likewise.
12236         * whitespace.el (whitespace-highlight-face): Likewise.
12237         * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
12238         * pcvs-info.el (cvs-marked-face): Likewise.
12239         * info.el (info-xref): Likewise.
12240         * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
12241         * hilit-chg.el (highlight-changes-face)
12242         (highlight-changes-delete-face): Likewise.
12243         * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
12244         (hi-red-b): Likewise.
12245         * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
12246         * font-lock.el (font-lock-keyword-face)
12247         (font-lock-function-name-face, font-lock-warning-face): Likewise.
12248         * cus-edit.el (custom-invalid-face, custom-modified-face)
12249         (custom-set-face, custom-changed-face, custom-variable-tag-face)
12250         (custom-group-tag-face-1, custom-group-tag-face): Likewise.
12251         * comint.el (comint-highlight-prompt): Likewise.
12253 2005-04-08  Lute Kamstra  <lute@gnu.org>
12255         * font-lock.el (font-lock-keywords): Docstring fixes.
12257 2005-04-08  Kenichi Handa  <handa@m17n.org>
12259         * ps-mule.el (ps-mule-show-warning): If the number of unprintable
12260         chars are more than a limit, print " and more..." at the tail.
12262 2005-04-08  Kim F. Storm  <storm@cua.dk>
12264         * emacs-lisp/authors.el (authors-aliases): Update list.
12265         (authors-ignored-files): New list.
12266         (authors-fixed-entries): Fix typo.
12267         (authors-renamed-files-alist): Update list.
12268         (authors-add): Check authors-ignored-files.
12270 2005-04-08  Carsten Dominik  <dominik@science.uva.nl>
12272         * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
12273         optional, to ensure backward compatibility.
12275 2005-04-08  Stephen Eglen  <stephen@gnu.org>
12277         * textmodes/flyspell.el (flyspell-large-region): Doc fix.
12279 2005-04-08  Kim F. Storm  <storm@cua.dk>
12281         * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
12283         * mouse.el (mouse-on-link-p): Doc fix.
12285 2005-04-07  Luc Teirlinck  <teirllm@auburn.edu>
12287         * ielm.el (ielm-prompt-read-only): Doc fix.
12289         * comint.el (comint-prompt-read-only): Doc fix.
12291 2005-04-07  Benjamin Rutt  <brutt@bloomington.in.us>
12293         * ffap.el (ffap-pass-wildcards-to-dired): New user option to
12294         ensure dired always handles wildcards passed to ffap.
12295         (find-file-at-point): Use it.
12296         (ffap-dired-wildcards): Doc fix.
12298 2005-04-07  Juri Linkov  <juri@jurta.org>
12300         * simple.el (next-error-overlay-arrow-position): New defvar.
12301         Put "=>" on its property `overlay-arrow-string'.  Add it to
12302         `overlay-arrow-variable-list'.
12304         * progmodes/compile.el (compilation-setup):
12305         Set `next-error-overlay-arrow-position' to nil.  Also set it to
12306         nil in the local hook `kill-buffer-hook'.  Make local variable
12307         `overlay-arrow-string' and set it to "=>".
12308         (compilation-goto-locus): Set BOL position to
12309         `next-error-overlay-arrow-position' instead of
12310         `overlay-arrow-position'.
12312         * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
12313         locally instead of adding it to the global hook.
12314         (Info-kill-buffer): Move up.
12316 2005-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
12318         * term/xterm.el (xterm-standard-colors): Update color values from
12319         xterm-200.
12321 2005-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12323         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
12325         * fast-lock.el:
12326         * lazy-lock.el: Move them to the obsolete subdir.
12328 2005-04-06  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
12330         * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
12331         (wdired-add-replace-advice): Remove.
12332         (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
12334 2005-04-06  Kim F. Storm  <storm@cua.dk>
12336         * startup.el (command-line): Add --bare-bones alias for -Q.
12338 2005-04-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12340         * term/mac-win.el: Use create-fontset-from-mac-roman-font to
12341         create the startup fontset if a font specification ends with
12342         `mac-roman'.
12344 2005-04-06  Lute Kamstra  <lute@gnu.org>
12346         * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
12347         change.
12349         * emacs-lisp/copyright.el (copyright-update-year): Replace the
12350         right subexpression.  Suggested by Jay Bingham <jay.bingham@hp.com>.
12352 2005-04-05  Lute Kamstra  <lute@gnu.org>
12354         * generic.el (generic-mode-internal): Fix 2005-03-31 change.
12355         (define-generic-mode): Ditto.  Fix debug declaration.
12357         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
12358         Put them in the generic-x group.
12360         * calendar/timeclock.el (timeclock): Doc fix.
12362         * generic.el (define-generic-mode): Don't use custom-current-group.
12363         Document default :group value.
12364         * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
12365         (define-global-minor-mode): Don't use custom-current-group.
12367 2005-04-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
12369         * startup.el (command-line-1): Display startup-echo-area-message
12370         when fancy splash screen is in use.
12372         * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
12373         (sh-escaped-newline): New face.
12374         (sh-font-lock-keywords) <shell>: Improve regexp for escaped
12375         newline, and use sh-escaped-newline face.
12377         * progmodes/tcl.el (tcl-escaped-newline): New face.
12378         (tcl-builtin-list): New variable.
12379         (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
12380         newlines.  Fix keywords subexpression number.
12382 2005-04-05  Carsten Dominik  <dominik@science.uva.nl>
12384         * textmodes/org.el (org-diary-default-entry): Fix call to
12385         `add-to-diary-entry'.
12387 2005-04-05  Kim F. Storm  <storm@cua.dk>
12389         * ediff-init.el: Use (featurep 'xemacs).
12391 2005-04-05  David Ponce  <david@dponce.com>
12393         * cus-edit.el (face): Derive from symbol widget.  Display sample
12394         of the current face on the fly.
12395         (widget-face-sample-face-get, widget-face-notify): New functions.
12396         (widget-face-value-create): Remove.
12398         * wid-edit.el (widget-field-end): Temporarily remove field
12399         narrowing before to call `get-char-property'.
12401 2005-04-04  Jay Belanger  <belanger@truman.edu>
12403         * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
12404         (math-read-subscripts): New variable.
12405         (math-read-preprocess-string): Process subscripts.
12407 2005-04-04  Luc Teirlinck  <teirllm@auburn.edu>
12409         * comint.el (comint-prompt-read-only): Doc fix.
12411         * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
12412         `-1'.  Doc fix.
12414 2005-04-04  Carsten Dominik  <dominik@science.uva.nl>
12416         * textmodes/org.el (org-insert-mode-line-in-empty-file):
12417         Change default value to nil.
12419 2005-04-04  Lute Kamstra  <lute@gnu.org>
12421         * autorevert.el (auto-revert-mode): Specify :group.
12422         * battery.el (display-battery-mode): Specify :group.
12423         * diff-mode.el (diff-minor-mode): Specify :group.
12424         * font-core.el (font-lock-mode): Specify :group.
12425         * hl-line.el (hl-line-mode): Specify :group.
12426         * iimage.el (iimage): New customization group.
12427         (iimage-mode): Specify :group.
12428         * longlines.el (longlines-mode): Specify :group.
12429         * master.el: Don't require easy-mmode.
12430         (master): New customization group.
12431         (master-mode): Specify :group.
12432         * msb.el (msb-mode): Specify :group.
12433         * reveal.el (reveal-mode): Specify :group.
12434         * simple.el (next-error-follow-minor-mode): Specify :group.
12435         * smerge-mode.el (smerge-mode): Specify :group.
12436         * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
12437         * emulation/cua-base.el (cua-mode): Specify :group.
12438         * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
12439         * language/thai-util.el (thai-auto-composition-mode)
12440         (thai-word-mode): Specify :group.
12441         * mail/supercite.el (sc-minor-mode): Specify :group.
12442         * progmodes/cwarn.el (cwarn-mode): Specify :group.
12443         * progmodes/flymake.el (flymake-mode): Specify :group.
12444         * progmodes/glasses.el (glasses-mode): Specify :group.
12445         * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
12446         * textmodes/enriched.el (enriched-mode): Specify :group.
12447         * textmodes/refill.el (refill-mode): Specify :group.
12449         * add-log.el (change-log-font-lock-keywords): Names in
12450         parenthesized lists can contain spaces.
12452 2005-04-04  Thien-Thi Nguyen  <ttn@gnu.org>
12454         * startup.el (fancy-splash-text): Shorten default text of
12455         "Emacs Tutorial" line.  Also, if the current language env
12456         indicates an available tutorial file other than TUTORIAL,
12457         extract its title and append it to the line in parentheses.
12458         (fancy-splash-insert): If arg is a thunk, funcall it.
12460 2005-04-04  Jay Belanger  <belanger@truman.edu>
12462         * calc.el (calc-language-alist): Add tags to customization type.
12464 2005-04-03  Luc Teirlinck  <teirllm@auburn.edu>
12466         * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
12467         Doc fix.
12469 2005-04-03  Marcelo Toledo  <marcelo@gnu.org>
12471         * add-log.el (change-log-font-lock-keywords): The manual
12472         describing a Change Log entry, says: (...) "Aside from these
12473         header lines, every line in the change log starts with a space or
12474         a tab.".  The font-lock was not highlighting lines started with
12475         spaces, added support for it.
12477 2005-04-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
12479         * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
12480         (bibtex-generate-url-list): Update docstring accordingly.  Put the
12481         complex example in the docstring.
12482         (bibtex-font-lock-url): Use pop.
12484 2005-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12486         * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
12488         * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
12490 2005-04-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
12492         * filesets.el (filesets-set-default): Doc fix.
12494 2005-04-03  Lute Kamstra  <lute@gnu.org>
12496         * generic.el (define-generic-mode): Add argument to specify
12497         keywords for defcustom.
12498         (default-generic-mode): Specify :group.
12500         * generic-x.el: Specify :group for all generic modes.
12502         * desktop.el (desktop-no-desktop-file-hook)
12503         (desktop-after-read-hook): Doc fix.
12505 2005-04-02  Luc Teirlinck  <teirllm@auburn.edu>
12507         * simple.el (visible-mode): Use explicit :group keyword.
12508         This changes the group of `visible-mode-hook' from paren-blinking
12509         to editing-basics.
12511 2005-04-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)
12513         * mail/rmail.el (rmail-parse-url): Bugfix.  Parse traditional
12514         mailbox specifications as well as URLs.
12515         (rmail-insert-inbox-text): Remove unused conditional branches.
12517 2005-04-01  Jay Belanger  <belanger@truman.edu>
12519         * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
12520         (calc-gnuplot-print-command): Move definitions to calc.el.
12522         * calc/calc-embed.el (calc-embedded-announce-formula)
12523         (calc-embedded-open-formula, calc-embedded-close-formula)
12524         (calc-embedded-open-word, calc-embedded-close-word)
12525         (calc-embedded-open-plain, calc-embedded-close-plain)
12526         (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
12527         (calc-embedded-open-mode, calc-embedded-close-mode):
12528         Move definitions to calc.el.
12530         * calc/calc.el (calc-settings-file, calc-language-alist):
12531         Make customizable.
12532         (calc-embedded-announce-formula, calc-embedded-open-formula)
12533         (calc-embedded-close-formula, calc-embedded-open-word)
12534         (calc-embedded-close-word, calc-embedded-open-plain)
12535         (calc-embedded-close-plain, calc-embedded-open-new-formula)
12536         (calc-embedded-close-new-formula, calc-embedded-open-mode)
12537         (calc-embedded-close-mode, calc-gnuplot-name)
12538         (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
12539         from other files and make customizable.
12541 2005-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12543         * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
12544         Use buffer-live-p.
12545         (cvs-mode-run): Don't call cvs-update-header here.
12546         (cvs-run-process): Call cvs-update-header.
12547         Use process properties for cvs-postprocess and cvs-buffer so that
12548         the sentinel can behave better if the temp buffer is killed.
12549         Use a pipe rather than a tty, to better handle unexpected prompts.
12550         (cvs-sentinel): Rewrite.  Call cvs-update-header.
12552 2005-04-01  Andre Spiegel  <spiegel@gnu.org>
12554         * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
12555         we go via Tramp or Ange-FTP.  Suggested by Kai Grossjohann.
12557 2005-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12559         * generic.el (define-generic-mode): Add indentation rule.
12561 2005-03-31  Luc Teirlinck  <teirllm@auburn.edu>
12563         * files.el (mode-require-final-newline): Make Custom correctly
12564         report a nil value and allow to set it to nil via Custom.
12565         Doc fix.
12567 2005-04-01  Kenichi Handa  <handa@m17n.org>
12569         * international/characters.el: Enable the correct case setting for
12570         dotless-i and dotted-I.
12572 2005-04-01  Kim F. Storm  <storm@cua.dk>
12574         * ido.el (ido-file-internal): Fall back to non-ido command if
12575         initial directory is on slow ftp (or tramp) host.
12577 2005-03-31  Richard M. Stallman  <rms@gnu.org>
12579         * emacs-lisp/autoload.el (make-autoload):
12580         Handle define-global-minor-mode.
12582         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
12583         Rename from easy-mmode-define-global-mode.
12584         (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
12586         * progmodes/scheme.el (scheme-mode-syntax-table):
12587         Update syntax of | and # for two-character comment syntax.
12589 2005-03-31  Lute Kamstra  <lute@gnu.org>
12591         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
12592         (define-minor-mode): Call custom-current-group at load-time.
12594         * generic.el (define-generic-mode): Add debug declaration.
12595         Add defcustom for the mode hook.
12596         (generic-mode-internal): Use run-mode-hooks.
12598 2005-03-31  Kim F. Storm  <storm@cua.dk>
12600         * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
12601         (mouse-fixup-help-message): New defun called by show_help_echo
12602         to fixup mouse-2 prefix in help messages when applicable.
12604         * tooltip.el (tooltip-show-help-function): Don't fixup message here.
12606 2005-03-31  Kenichi Handa  <handa@m17n.org>
12608         * language/thai-word.el (thai-find-word-ends): Pay attention to
12609         the case that we reach the end of buffer.
12611         * textmodes/fill.el (fill-text-properties-at): New function.
12612         (fill-newline): Use fill-text-properties-at instead of
12613         text-properties-at.
12615 2005-03-31  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
12617         * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
12618         not comint-quote-filename.
12620 2005-03-31  Thien-Thi Nguyen  <ttn@gnu.org>
12622         * help-fns.el (help-with-tutorial): Revert last change.
12624 2005-03-31  Kim F. Storm  <storm@cua.dk>
12626         * emulation/cua-base.el (cua-scroll-down): Add CUA property.
12628 2005-03-30  Paul Eggert  <eggert@cs.ucla.edu>
12630         * calendar/cal-china.el: Update reference to "Calendrical
12631         Calculations" book; there's a new edition.
12632         * calendar/cal-coptic.el: Likewise.
12633         * calendar/cal-french.el: Likewise.
12634         * calendar/cal-hebrew.el: Likewise.
12635         * calendar/cal-islam.el: Likewise.
12636         * calendar/cal-iso.el: Likewise.
12637         * calendar/cal-julian.el: Likewise.
12638         * calendar/cal-mayan.el: Likewise.
12639         * calendar/cal-persia.el: Likewise.
12640         * calendar/calendar.el: Likewise.
12641         * calendar/holidays.el: Likewise.
12642         * calendar/lunar.el: Likewise.
12643         * calendar/solar.el: Likewise.
12645         * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
12646         white space from doc string.
12648 2005-03-30  Jay Belanger  <belanger@truman.edu>
12650         * calc/calc-help.el (calc-full-help): Remove email address.
12652 2005-03-30  Thien-Thi Nguyen  <ttn@gnu.org>
12654         * help-fns.el (help-with-tutorial): Delete title line.
12656 2005-03-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
12658         * calendar/cal-x.el (calendar-one-frame-setup)
12659         (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
12660         rather than 'symbol for set-window-dedicated-p.
12662         * calendar/appt.el (appt-buffer-name): Make it a constant.
12663         (appt-add): Doc fix.
12665         * filesets.el (filesets-menu-path, filesets-menu-before)
12666         (filesets-menu-in-menu): Doc fix.  Now valid in GNU Emacs.
12667         (filesets-menu-cache-file): Use directory ~/.emacs.d.
12668         (filesets-add-submenu): Delete and use add-submenu instead.
12670 2005-03-30  Carsten Dominik  <dominik@science.uva.nl>
12672         * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
12673         (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
12674         (org-diary-default-entry): New function.
12675         (org-get-entries-from-diary): Better parsing of diary entries.
12676         (org-agenda-check-no-diary): New function.
12677         ("diary-lib"): Advice to function `add-to-diary-list', to allow
12678         linking to diary entries.
12679         (org-agenda-execute-calendar-command): New function.
12680         (org-agenda): Improve visible section in window.
12681         Use `org-fit-agenda-window'.
12682         (org-fit-agenda-window): New option.
12683         (org-move-subtree-down): Better handling of empty lines
12684         at end of subtree.
12685         (org-cycle): Numeric prefix is interpreted now as show-subtree N
12686         levels up.
12687         (org-fontify-done-headline): New option.
12688         (org-headline-done-face): New face.
12689         (org-set-font-lock-defaults): Use `org-headline-done-face'.
12690         (org-table-copy-down): Rename from `org-table-copy-from-above'.
12691         When current field is non-empty, it is copied to next row.
12692         (org-table-copy-from-above): Fix bug which made it
12693         impossible to copy fields containing only a single non-white character.
12695 2005-03-30  Kim F. Storm  <storm@cua.dk>
12697         * kmacro.el (kmacro-end-macro): Isearch may store this command
12698         into the macro -- so ignore it when executing keyboard macro.
12700 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
12702         * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
12704 2005-03-29  Kenichi Handa  <handa@m17n.org>
12706         * language/thai.el ("Thai"): Set setup-function and exit-function
12707         for Thai language environment.
12709         * language/thai-util.el: Require thai-word.
12710         (thai-word-mode-map): New variable.
12711         (thai-word-mode): New minor mode.
12712         (setup-thai-language-environment-internal): New function.
12713         (exit-thai-language-environment-internal): New function.
12715         * language/thai-word.el (thai-word-table): Declare it by defvar,
12716         use dolist to initialize it.
12717         (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
12718         (thai-fill-find-break-point): New functions.
12720 2005-03-29  Richard M. Stallman  <rms@gnu.org>
12722         * simple.el (idle-update-delay): Move definition up.
12723         (set-mark): Doc fix.
12725 2005-03-29  Chong Yidong  <cyd@stupidchicken.com>
12727         * longlines.el: New file.
12729         * simple.el (buffer-substring-filters): New variable.
12730         (filter-buffer-substring): New function.
12731         (kill-region, copy-region-as-kill): Use it.
12733         * register.el (copy-to-register, append-to-register)
12734         (prepend-to-register): Use filter-buffer-substring.
12736 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
12738         * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
12739         (gud-filter-pending-text): Move in front of gdb.
12740         (gud-overlay-arrow-position): New variable.
12741         (gud-sentinel, gud-display-line): Use it in place of
12742         overlay-arrow-position.
12744 2005-03-29  Glenn Morris  <gmorris@ast.cam.ac.uk>
12746         * progmodes/fortran.el (fortran-if-indent): Doc fix.
12747         (fortran-font-lock-keywords-2): Add "where", "elsewhere".
12748         (fortran-font-lock-keywords-4): New variable.
12749         (fortran-blocks-re, fortran-end-block-re)
12750         (fortran-start-block-re): New constants, for hideshow.
12751         (hs-special-modes-alist): Add a Fortran entry.
12752         (fortran-mode-map): Bind fortran-end-of-block,
12753         fortran-beginning-of-block to \M-\C-n, \M-\C-p.
12754         (fortran-mode): Doc fix.  Add fortran-font-lock-keywords-4.
12755         (fortran-looking-at-if-then, fortran-end-of-block)
12756         (fortran-beginning-of-block): New functions, for hideshow.
12758         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
12759         Doc fix.  Tweak regexp.
12760         (f90-beginning-of-block): Push mark first.
12762 2005-03-29  Jay Belanger  <belanger@truman.edu>
12764         * calc/calc.el: Update copyright date.
12765         (calc-version): Increase to 2.1.
12766         (calc-version-date): Remove.
12768         * calc/calc-help.el: Update copyright date.
12769         (calc-full-help): Remove reference to calc-version-date.
12770         Update copyright date.
12772 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12774         * vc.el (vc-do-command): Use a pipe for async processes, so password
12775         prompts don't show up at places where the user can't reply.
12777 2005-03-29  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
12779         * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
12780         on the file name we pass to the inferior shell.
12782 2005-03-29  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
12784         * progmodes/which-func.el (which-function): Be robust in the face of an
12785         imenu--make-index-alist failure.
12787 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12789         * reveal.el (reveal-mode-map): Don't override C-a and C-e.
12791         * progmodes/python.el (python-preoutput-filter): Fix last change.
12793 2005-03-29  Lute Kamstra  <lute@gnu.org>
12795         * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
12796         functions and compiled macros.
12797         (debug-convert-byte-code): Handle macros too.
12798         (debug-on-entry-1): Don't signal an error when trying to clear a
12799         function that is not set to debug on entry.
12801 2005-03-29  Jay Belanger  <belanger@truman.edu>
12803         * calc/calc-lang.el: Add functions to math-function-table
12804         properties of tex and math.
12806 2005-03-29  Kenichi Handa  <handa@m17n.org>
12808         * ps-mule.el (ps-mule-plot-string): Translate characters by
12809         ps-print-translation-table.
12810         (ps-mule-begin-job): Call find-charset-region/string with
12811         ps-print-translation-table.
12812         (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
12814         * ps-print.el (ps-print-translation-table): New variable.
12815         (ps-plot-region): Translate characters by ps-print-translation-table.
12817 2005-03-29  Juri Linkov  <juri@jurta.org>
12819         * simple.el (next-error-highlight-timer): New variable.
12821         * progmodes/compile.el (compilation-goto-locus):
12822         Use `next-error-highlight-timer' instead of `sit-for'.
12824 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12826         * mail/supercite.el (sc-mail-field): Use assoc-string.
12827         (sc-get-address): Simplify regexps.
12829         * files.el (minibuffer-with-setup-hook): New macro.
12830         (find-file-read-args): Use it to avoid let-binding
12831         minibuffer-with-setup-hook (which breaks turning on/off
12832         file-name-shadow-mode while in the prompt).
12834         * complete.el (PC-read-include-file-name-internal):
12835         Use test-completion.
12837 2005-03-28  Luc Teirlinck  <teirllm@auburn.edu>
12839         * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
12841 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12843         * window.el (window-buffer-height): Use count-screen-lines.
12845         * progmodes/python.el (python-preoutput-leftover): New var.
12846         (python-preoutput-filter): Use it.
12847         (python-send-receive): Loop until all the result has been received.
12849 2005-03-28  Juri Linkov  <juri@jurta.org>
12851         * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
12853         * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
12854         "Recover Crashed Session".
12855         (menu-bar-search-menu): Add ellipsis to "Search tagged files".
12856         (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
12857         (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
12858         (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
12859         (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
12860         (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
12861         (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
12862         (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
12864         * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
12865         Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
12866         Ediff Sessions", "Toggle use of separate control buffer frame",
12867         "Use separate frame for Ediff control buffer".
12869         * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
12870         Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
12871         "Rename Bookmark", "Delete Bookmark".
12873         * info.el (Info-mode-menu): Remove ellipsis from "Index".
12874         Add ellipsis to "Lookup a String", "Lookup a string in all indices".
12875         Add `:active Info-index-alternatives' to "Next Matching Item".
12877         * wdired.el (wdired-change-to-wdired-mode):
12878         Mention `wdired-abort-changes' key in the initial message.
12880         * international/mule.el (auto-coding-alist): Associate non-ascii
12881         image filename extensions with `no-conversion'.
12883 2005-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12885         * international/iso-acc.el:
12886         * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
12888 2005-03-26  Luc Teirlinck  <teirllm@auburn.edu>
12890         * textmodes/sgml-mode.el (html-mode): Doc update.
12892         * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
12894 2005-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
12896         * term.el (term-move-columns): Fix face after extending a line.
12897         (term-insert-spaces): Likewise.
12898         (term-reset-terminal): Fix off by one error.
12900 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
12902         * international/mule.el (auto-coding-alist): Add .xpi files.
12904         * files.el (auto-mode-alist): Add .xpi files.
12906 2005-03-26  Jure Cuhalev  <gandalf@owca.info>  (tiny change)
12908         * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
12910 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
12912         * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
12914 2005-03-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
12916         * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
12917         binding.  Suggested by Stephan Stahl <stahl@eos.franken.de>.
12919         * calendar/cal-move.el (calendar-beginning-of-year): Move the
12920         cursor to Jan 1 when needed.
12921         (calendar-end-of-year): Fix -/+ typo.
12922         Reported by Chong Yidong <cyd@stupidchicken.com>.
12924 2005-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12926         * progmodes/flymake.el (flymake-mode): Add autoload cookie.
12928         * emacs-lisp/debug.el (debugger-record-expression): Add a missing
12929         format to `message'.  Inspired by Deepak Goel <deego@gnufans.org>.
12931 2005-03-25  Richard M. Stallman  <rms@gnu.org>
12933         * filesets.el (filesets-init): Add autoload.
12935         * mail/mailalias.el (mail-directory): Doc fix.
12937 2005-03-25  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
12939         * mail/mailalias.el (mail-directory-process): Do nothing if
12940         mail-directory-process is an atom.
12941         (mail-get-names): Ignore mail-directory-names if it is an atom.
12942         (mail-directory-process defvar): Doc fix.
12943         (mail-names): Doc fix.
12945 2005-03-25  Johan Bockg\e,Ae\e(Brd  <bojohan+mail@dd.chalmers.se>  (tiny change)
12947         * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
12949 2005-03-26  Kenichi Handa  <handa@m17n.org>
12951         * international/mule-util.el (detect-coding-with-priority):
12952         Call update-coding-systems-internal before detect-coding-region.
12954 2005-03-26  Nick Roberts  <nickrob@snap.net.nz>
12956         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
12957         (gdb-frames-mode-map): Add follow-link property.
12959 2005-03-25  Jay Belanger  <belanger@truman.edu>
12961         * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
12962         for variables.
12964 2005-03-25  Juri Linkov  <juri@jurta.org>
12966         * image-mode.el: Optimize image filename extension regexps in
12967         autoload cookies.  Associate .x[bp]m with `image-mode-maybe'
12968         in `auto-mode-alist'.
12969         (image-mode): Add `image-toggle-display-text' to local hook
12970         `change-major-mode-hook'.  Display the image as an image by
12971         default.  Set `cursor-type' and `truncate-lines' if the image
12972         is already displayed.  Take into account the current mode (image
12973         or text) in message.
12974         (image-minor-mode): New minor mode.
12975         (image-mode-maybe, image-toggle-display-text): New functions.
12976         (image-toggle-display): Use called-interactively-p.
12977         Let-bind `inhibit-read-only' to t.
12979         * image-mode.el (image-minor-mode): Set `cursor-type' and
12980         `truncate-lines' if the image is already displayed.  Add turning
12981         image-minor-mode off to `change-major-mode-hook'.  Add message.
12982         Call `image-toggle-display-text' after turning image-minor-mode off.
12984 2005-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12986         * international/mule-cmds.el (set-locale-environment): For Mac OS X's
12987         Terminal.app, use utf-8.
12988         (set-display-table-and-terminal-coding-system): Add coding-system arg.
12989         (set-locale-environment): Use it.
12991         * term/xterm.el: Undo last change, better done in mule-cmds.el.
12993         * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
12995         * progmodes/python.el (python-close-block-statement-p)
12996         (python-outdent-p, python-current-defun): Use symbol-end.
12998 2005-03-25  Karl Chen  <quarl@cs.berkeley.edu>  (tiny change)
13000         * files.el (save-some-buffers): Doc fix.
13002 2005-03-25  Werner Lemberg  <wl@gnu.org>
13004         * complete.el, thumbs.el: Replace `legal' with `valid'.
13005         * calendar/calendar.el: Replace `legal' with `valid'.
13006         * emacs-lisp/advice.el: Replace `legal' with `valid'.
13007         * mail/supercite.el: Replace `legal' with `valid'.
13008         * progmodes/cperl-mode.el, progmodes/idlw-shell.el
13009         * progmodes/idlwave.el, progmodes/vhdl-mode.el:
13010         Replace `legal' with `valid'.
13011         * textmodes/reftex-vars.el, textmodes/reftex.el:
13012         Replace `legal' with `valid'.
13014 2005-03-25  Werner Lemberg  <wl@gnu.org>
13016         * calc/calc-forms.el, calc/calc-sel.el:
13017         * midnight.el, vc-cvs.el:
13018         * emacs-lisp/cl-macs.el:
13019         * emulation/vip.el:
13020         * eshell/esh-io.el, eshell/esh-var.el:
13021         * mail/supercite.el:
13022         * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
13023         * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
13024         * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
13025         * progmodes/sh-script.el, progmodes/xscheme.el:
13026         * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
13027         * textmodes/reftex-index.el, textmodes/reftex-parse.el
13028         * textmodes/reftex-ref.el, textmodes/reftex-vars.el
13029         * textmodes/reftex.el, textmodes/org.el:
13030         Replace `illegal' with `invalid'.
13032 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13034         * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
13035         (flymake-find-buildfile, flymake-find-possible-master-files)
13036         (flymake-check-include, flymake-parse-line): Replace loops over the
13037         length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
13039         * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
13040         Substitute file-name-as-directory in the rest of the file.
13041         (flymake-get-common-file-prefix): Rewrite, using compare-strings.
13042         (flymake-replace-region): Remove unused arg `buffer'.
13043         (flymake-check-patch-master-file-buffer): Update calls to it.
13044         (flymake-add-err-info): Remove unused var `count'.
13045         (flymake-mode): Use define-minor-mode.
13047         * progmodes/flymake.el: Use with-current-buffer.
13048         (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
13049         flymake-replace-regexp-in-string, flymake-line-beginning-position)
13050         (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
13051         Avoid testing for `xemacs'.
13052         (flymake-nop): Move.
13053         (flymake-region-has-flymake-overlays): Return the computed value.
13054         (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
13055         Remove unused var `endline'.
13056         (flymake-get-line-count): Remove unused function.
13057         (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
13059         * emulation/vi.el:
13060         * generic.el:
13061         * hilit-chg.el (global-highlight-changes):
13062         * hi-lock.el (hi-lock-mode):
13063         * follow.el: find-file-hooks -> find-file-hook.
13065         * comint.el (comint-insert-input): Obey mouse-yank-at-point.
13067 2005-03-24  Juri Linkov  <juri@jurta.org>
13069         * dired.el (dired-mode-map): Add menu item "Compare directories"
13070         for dired-compare-directories.
13072         * dired-aux.el (dired-compare-directories): Add autoload cookie.
13073         Doc fix.  Replace `read-file-name' with `read-directory-name'.
13075 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13077         * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
13079 2005-03-24  Jay Belanger  <belanger@truman.edu>
13081         * calc/calc-embed.el (calc-embedded-mode-change): Save all
13082         relevant mode settings in calc-embedded-original-modes when modes
13083         are permanently changed.
13085 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13087         * autoinsert.el: find-file-hooks -> find-file-hook.
13089 2005-03-24  Lute Kamstra  <lute@gnu.org>
13091         * generic.el (generic-font-lock-defaults): Make it obsolete.
13092         (generic-font-lock-keywords): New variable to replace
13093         generic-font-lock-defaults.
13094         (generic-mode-set-font-lock): Delete it.
13095         (generic-mode-internal): Don't call generic-mode-set-font-lock.
13096         (generic-bracket-support): Add docstring.
13098         * generic-x.el: Rename generic-font-lock-defaults to
13099         generic-font-lock-keywords throughout.
13100         (mailagent-rules-setup-function): Delete it.
13101         (mailagent-rules-generic-mode): Use anonymous function instead.
13102         (show-tabs-generic-mode-font-lock-defaults-1)
13103         (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
13104         Quote faces.
13105         (show-tabs-tab-face, show-tabs-space-face): Specify background,
13106         not foreground.
13108         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13109         Recognize define-generic-mode.
13111 2005-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13113         * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
13114         if there's no completion table.
13116 2005-03-23  Miles Bader  <miles@gnu.org>
13118         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
13119         Remove tty-specific variants, as they're no longer needed.
13121 2005-03-23  Lute Kamstra  <lute@gnu.org>
13123         * generic-x.el: Code cleanup: make args constant whenever possible.
13124         (installshield-statement-keyword-list)
13125         (installshield-system-functions-list)
13126         (installshield-system-variables-list, installshield-types-list)
13127         (installshield-funarg-constants-list): Make them constants.
13129         * generic.el (generic-make-keywords-list): Add autoload cookie.
13131         * calendar/time-date.el: Add comment on time value formats.
13132         Don't require parse-time.
13133         (with-decoded-time-value): New macro.
13134         (encode-time-value): New function.
13135         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
13136         (days-to-time): Return a valid time value when arg is huge.
13137         (time-since): Use time-subtract.
13138         (time-to-number-of-days): Use time-to-seconds.
13140 2005-03-23  David Ponce  <david@dponce.com>
13142         * recentf.el: (recentf-keep): New option.
13143         (recentf-menu-action): Default to `find-file'.
13144         (recentf-keep-non-readable-files-flag)
13145         (recentf-keep-non-readable-files-p)
13146         (recentf-file-readable-p, recentf-find-file)
13147         (recentf-cleanup-remote): Remove.
13148         (recentf-include-p): More robust.
13149         (recentf-keep-p): New function.
13150         (recentf-remove-if-non-kept): Rename from
13151         `recentf-remove-if-non-readable'.  Use `recentf-keep-p'.
13152         All callers updated.
13153         (recentf-menu-items-for-commands): Fix help string.
13154         (recentf-track-closed-file): Update.  Doc fix.
13155         (recentf-cleanup): Update.  Count removed files.  Doc fix.
13157 2005-03-23  Kim F. Storm  <storm@cua.dk>
13159         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
13160         Don't inherit from fringe face (now happens automatically).
13162 2005-03-22  Kim F. Storm  <storm@cua.dk>
13164         * tooltip.el (tooltip-show-help-function): Ignore negative mouse
13165         position values.
13167 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13169         * menu-bar.el (showhide-date-time): Remove.
13170         (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
13171         (menu-bar-make-mm-toggle): Simplify.
13173 2005-03-22  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
13175         * progmodes/perl-mode.el (perl-font-lock-keywords-2):
13176         Accept qualified variable and function names.
13178 2005-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
13180         * bindings.el (completion-ignored-extensions):
13181         Remove ".lis" for `vax-vms'.
13183 2005-03-22  Andreas Schwab  <schwab@suse.de>
13185         * generic-x.el: Revert last change.
13186         * ldefs-boot.el: Update.
13188 2005-03-22  Jay Belanger  <belanger@truman.edu>
13190         * calc/calc-embed.el (calc-embedded-original-modes): New variable.
13191         (calc-embedded-save-original-modes)
13192         (calc-embedded-restore-original-modes): New functions.
13193         (calc-do-embedded): Save original modes when entering embedded mode
13194         and restore when leaving embedded mode.
13195         (calc-embedded-modes-change): Change the value of
13196         calc-embedded-original-modes to reflect permanent changes.
13198 2005-03-22  Lute Kamstra  <lute@gnu.org>
13200         * generic-x.el: Require generic again.
13202 2005-03-22  Miles Bader  <miles@gnu.org>
13204         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
13205         Tweak details to look good on both ttys and bitmap displays, light
13206         or dark background, etc.
13208 2005-03-21  Kim F. Storm  <storm@cua.dk>
13210         * tooltip.el (tooltip-show-help-function): Check car and cdr of
13211         mouse position.
13213 2005-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13215         * icomplete.el: Don't forcibly turn on the mode upon load.
13216         (icomplete-mode): Use define-minor-mode.
13217         (icomplete-eoinput): Default to nil.
13218         (icomplete-minibuffer-setup): Remove autoload.
13219         (icomplete-tidy): Simplify.
13220         (icomplete-exhibit): Use buffer-undo-list to determine if we're still
13221         in the initial state or if the user has modified the field.
13222         Fix handling of icomplete-max-delay-chars.
13223         Remove code that handles the oddball case where
13224         minibuffer-completion-table is an integer.
13225         Wrap icomplete-completions in while-no-input in case building
13226         completions takes more time than expected.
13227         (icomplete-completions): Simplify.
13229 2005-03-21  Richard M. Stallman  <rms@gnu.org>
13231         * jka-compr.el (jka-compr-really-do-compress):
13232         Make variable buffer-local.
13234         * image-mode.el: Handle .xpm files too.
13235         (image-toggle-display): Preserve modification flag.
13237         * help.el (where-is): Don't mention aliases with no key bindings.
13239 2005-03-21  Lute Kamstra  <lute@gnu.org>
13241         * generic.el: Fix commentary section.  Don't require cl for
13242         compilation.
13243         (generic-mode-list): Add autoload cookie.
13244         (generic-use-find-file-hook, generic-lines-to-scan)
13245         (generic-find-file-regexp, generic-ignore-files-regexp)
13246         (generic-mode, generic-mode-find-file-hook)
13247         (generic-mode-ini-file-find-file-hook): Fix docstrings.
13248         (define-generic-mode): Make it a defmacro.  Fix docstring.
13249         (generic-mode-internal): Code cleanup.  Add autoload cookie.
13250         (generic-mode-set-comments): Code cleanup.
13251         * generic-x.el: Don't prevent compilation.  Don't require generic.
13252         Follow coding conventions.  Minor code cleanup.
13253         (etc-fstab-generic-mode): Add some keywords.
13254         * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
13255         define-generic-mode like a function declaration.
13257 2005-03-21  Jay Belanger  <belanger@truman.edu>
13259         * calc/calc-embed.el (calc-do-embedded): Put data on stack before
13260         changing modes.
13262 2005-03-21  Sam Steingold  <sds@gnu.org>
13264         * add-log.el (add-log-current-defun): Support more C DEFUN forms.
13266 2005-03-21  Thien-Thi Nguyen  <ttn@gnu.org>
13268         * progmodes/dcl-mode.el (dcl-font-lock-keywords):
13269         Add underscore to "f$ lexicals" regexp.
13271 2005-03-20  Juri Linkov  <juri@jurta.org>
13273         * subr.el (progress-reporter-do-update): When `min-value' is equal
13274         to `max-value', set `percentage' to 0 and prevent division by zero.
13276 2005-03-20  Michael Albinus  <michael.albinus@gmx.de>
13278         Sync with Tramp 2.0.48.
13280         * net/tramp.el (all): Change all addresses to .gnu.org.
13281         (tramp-append-tramp-buffers): New defun.
13282         (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
13283         Catch `dont-send' signal.
13284         (tramp-set-auto-save-file-modes): Set always permissions, because
13285         there might be an old auto-saved file belonging to another
13286         original file.  This could be a security threat.  Reported by
13287         Kjetil Kjernsmo <kjetil@kjernsmo.net>.
13288         Check for Emacs 21.3.50 removed.
13290         * net/tramp-smb.el (all): Remove debug construct for
13291         `with-parsed-tramp-file-name'.
13292         (tramp-smb-prompt): Prompt can contain spaces inside directory names.
13293         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
13294         No error message if DIRECTORY or FILENAME doesn't exist.
13295         (tramp-smb-open-connection): Check existence of
13296         `tramp-smb-program'.
13298 2005-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13300         * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
13301         Properly handle the case where the `m' or `s' command's argument is not
13302         yet terminated.
13303         (perl-indent-new-calculate): New function.
13304         (perl-indent-line): Use it.
13306 2005-03-20  Miles Bader  <miles@gnu.org>
13308         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
13309         in text-mode too.  Change to new face names.
13310         (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
13311         Add `:weight bold' attribute.
13312         (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
13314 2005-03-19  Juri Linkov  <juri@jurta.org>
13316         * files.el (auto-mode-alist): Add comment.  Optimize jar/ear/war.
13318         * international/mule.el (auto-coding-alist): Sync with
13319         `auto-mode-alist' by adding upper case archive file extensions
13320         and adding ear/war to jar extension.
13322 2005-03-19  David Casperson  <casper@unbc.ca>  (tiny change)
13324         * textmodes/tex-mode.el (tex-view): If tex-shell process is not
13325         running, restart it.
13327 2005-03-19  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny changes)
13329         * finder.el (finder-current-item): Throw an error on an empty line.
13331         * man.el (Man-follow-manual-reference): If current-word returns
13332         nil, use "".
13334 2005-03-19  Matt Hodges  <MPHodges@member.fsf.org>
13336         * simple.el (goto-line): Doc fix.
13338 2005-03-19  Aaron Hawley  <Aaron.Hawley@uvm.edu>  (tiny change)
13340         * files.el (save-buffer): Doc fix.
13342 2005-03-19  Michael R. Mauger  <mmaug@yahoo.com>
13344         * recentf.el (recentf-cleanup-remote): New variable.
13345         (recentf-cleanup): Use it to conditionally check availability of
13346         remote files.
13348 2005-03-19  Joe Edmonds  <joe-bugs-debian-org@elem.com>  (tiny change)
13350         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
13351         function names.
13353 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
13355         * language/thai-word.el: New file.
13357 2005-03-19  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
13359         * files.el (backup-buffer): If the file's directory is not
13360         writable, use copy instead of move to backup the file.
13362 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
13364         * obsolete/keyswap.el: Moved to obsolete/ from term/.
13366 2005-03-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13368         * ps-print.el (ps-generate-string-list, ps-generate-header-line):
13369         Use functionp instead of symbolp and fboundp.  Reported by Drkm
13370         <darkman_spam@yahoo.fr>.
13371         (ps-print-version): New version 6.6.6.
13373 2005-03-18  Tak Ota  <Takaaki.Ota@am.sony.com>
13375         * textmodes/table.el (table--line-column-position): New idiom.
13376         (table--row-column-insertion-point-p): New function to test
13377         validity of row and column insertion operation at a location.
13378         (table-global-menu, table-cell-menu): Use above functions for
13379         deterministic test operation.
13380         (table--editable-cell-p): Behave in deterministic fashion.
13382 2005-03-18  Juri Linkov  <juri@jurta.org>
13384         * isearch.el (isearch-lazy-highlight-new-loop):
13385         Make arguments beg and end optional.
13386         (isearch-update): Remove optional arguments nil from
13387         isearch-lazy-highlight-new-loop.
13388         (isearch-lazy-highlight-search): Let-bind case-fold-search to
13389         isearch-lazy-highlight-case-fold-search instead of
13390         isearch-case-fold-search, and let-bind isearch-regexp to
13391         isearch-lazy-highlight-regexp.
13392         Use isearch-lazy-highlight-last-string instead of isearch-string.
13394         * replace.el (perform-replace): Remove bindings of global
13395         variables isearch-string, isearch-regexp, isearch-case-fold-search.
13396         Add three new arguments to `replace-highlight'.
13397         (replace-highlight): Add arguments string, regexp, case-fold.
13398         Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
13399         to allow isearch-lazy-highlight-new-loop to use these values
13400         to set corresponding isearch-lazy-highlight-* internal
13401         variables whose values lazy highlighting will use regardless of
13402         changes to global variables isearch-string, isearch-regexp,
13403         isearch-case-fold-search during lazy highlighting loop.
13404         (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
13405         to `lazy-highlight-cleanup'.
13407         * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
13408         (ispell-highlight-face): Set default face to `isearch' when
13409         lazy highlighting is enabled.
13410         (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
13411         priority to 1.  Add lazy highlighting.
13412         (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
13413         from `isearch-dehighlight'.
13415 2005-03-18  David Ponce  <david@dponce.com>
13417         * files.el (hack-local-variables): Do a case-insensitive search
13418         for End.
13420 2005-03-18  Juri Linkov  <juri@jurta.org>
13422         * isearch.el (lazy-highlight-cleanup) <command>: Rename from
13423         `isearch-lazy-highlight-cleanup', add alias to old name and
13424         declare obsolete.  Add release numbers to other obsolete vars.
13425         (isearch-done, isearch-lazy-highlight-new-loop):
13426         Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
13427         (lazy-highlight-cleanup) <variable>: Doc fix.
13428         (isearch-lazy-highlight-update): Rename obsolete
13429         `isearch-lazy-highlight-face' to `lazy-highlight-face'.
13431 2005-03-18  Kenichi Handa  <handa@m17n.org>
13433         * language/thai-util.el: Fix categorization of Thai characters in
13434         thai-category-table.
13435         (thai-composition-pattern): Adjust it for the above change.
13436         (thai-self-insert-command, thai-compose-syllable): New functions.
13437         (thai-compose-region): Use thai-compose-syllable.
13438         (thai-compose-string): Likewise.
13439         (thai-composition-function): Likewise.
13440         (thai-auto-composition): New function.
13441         (thai-auto-composition-mode): New minor mode.
13443         * language/thai.el: Fix patterns to be registered in
13444         composition-function-table.
13446         * international/quail.el (quail-input-method): Locally bind
13447         inhibit-modification-hooks to t.
13449 2005-03-17  Richard M. Stallman  <rms@gnu.org>
13451         * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
13452         (perl-mode): Use run-mode-hooks.
13454         * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
13455         (rmail-pop-password-required, rmail-remote-password): Doc fixes.
13456         (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
13458         * mail/sendmail.el (sendmail-send-it): Reenable the code
13459         to compute resend-to-address and use it.
13461         * tar-mode.el (tar-mode): Turn off undo unconditionally.
13463         * image-mode.el: New file.
13465         * image.el (insert-sliced-image): Add autoload cookie.
13467         * font-lock.el (font-lock-lines-before): New user option.
13468         (font-lock-after-change-function): Obey it.
13470         * bindings.el (esc-map): Make M-g a prefix.
13471         Bind M-g g and M-g M-g to goto-line.
13473         * faces.el (face-id): Doc fix.
13475 2005-03-17  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
13477         * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
13478         (rmail-show-message): Use rmail-unknown-mail-followup-to.
13479         (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
13481         * mail/sendmail.el (mail-yank-ignored-headers)
13482         (mail-font-lock-keywords, mail-mode-fill-paragraph):
13483         Add Mail-Followup-To and Mail-Reply-To headers.
13484         (mail-citation-hook): Add autoload cookie.
13485         (mail-mode): Doc fix.
13486         (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
13487         (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
13488         (mail-mode-fill-paragraph): Handle those headers.
13489         (mail-mailing-lists): New variable.
13490         (mail-mail-reply-to, mail-mail-followup-to): New functions.
13492 2005-03-17  Juri Linkov  <juri@jurta.org>
13494         * isearch.el (isearch-fallback): Check for `(car previous)'
13495         before calling `isearch-other-end-state'.
13497 2005-03-17  Kim F. Storm  <storm@cua.dk>
13499         * simple.el (move-beginning-of-line): Move to beginning of buffer
13500         line, as well as beginning of screen line.
13502 2005-03-16  Glenn Morris  <gmorris@ast.cam.ac.uk>
13504         * calendar/diary-lib.el (mark-diary-entries): Use new optional
13505         argument REDRAW rather than calendar-redrawing variable.
13506         * calendar/calendar.el (calendar-redrawing): Delete.
13507         (redraw-calendar): Do not bind calendar-redrawing.
13509 2005-03-16  Matt Hodges  <MPHodges@member.fsf.org>
13511         * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
13512         diary-file buffer.
13514 2005-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13516         * help.el (describe-mode): Allow a :minor-mode-function property to
13517         specify a different minor mode toggle function than the variable.
13518         * simple.el (auto-fill-function):
13519         * subr.el (add-minor-mode): Use it.
13521 2005-03-16  Kenichi Handa  <handa@m17n.org>
13523         * language/ethio-util.el (sera-being-called-by-w3): New variable.
13524         (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
13525         (ethio-fidel-to-sera-buffer): Likewise.
13527 2005-03-16  Juri Linkov  <juri@jurta.org>
13529         * emacs-lisp/find-func.el (find-function-regexp):
13530         Add defun-emitting macro `menu-bar-make-toggle'.
13532         * isearch.el: Put `isearch-scroll' property to
13533         `split-window-horizontally'.
13535         * info.el: Update error messages for `debug-ignored-errors'.
13536         (Info-isearch-search): Doc fix.
13537         (Info-find-node): Move up code to go into info buffer before
13538         recording the node to the history.
13539         (Info-fontify-node): Fontify titles only if the next line
13540         has two or more `*', `=', `-', `.'.
13541         Display "go to this node" for empty (match-string 3).
13543 2005-03-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
13545         * term/mac-win.el: Add mouse pointer shape constants.
13547 2005-03-15  Kim F. Storm  <storm@cua.dk>
13549         * simple.el (move-beginning-of-line): Use vertical-motion.
13551 2005-03-15  Juri Linkov  <juri@jurta.org>
13553         * isearch.el (isearch-error): New variable.
13554         (isearch-invalid-regexp, isearch-within-brackets): Remove.
13555         (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
13556         (isearch-within-brackets-state): Remove.
13557         (isearch-case-fold-search-state, isearch-pop-fun-state):
13558         Decrease frame index.
13559         (isearch-mode, isearch-top-state, isearch-push-state)
13560         (isearch-edit-string, isearch-abort, isearch-search-and-update)
13561         (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
13562         (isearch-search, isearch-lazy-highlight-new-loop):
13563         Replace `isearch-invalid-regexp' with `isearch-error'.
13564         Remove `isearch-within-brackets'.
13565         (isearch-search): Add `search-failed' handler to `condition-case'.
13566         (isearch-lazy-highlight-search): Add `condition-case' to catch
13567         errors and allow `isearch-lazy-highlight-update' to try
13568         highlighting from the beginning of the window.
13569         (isearch-repeat): Move up code to set isearch-wrapped to t
13570         before calling isearch-wrap-function.
13572         * info.el (Info-isearch-initial-node): New internal variable.
13573         (Info-search): Signal an error in isearch mode when search leaves
13574         the initial node.  Signal an error when `bound' is non-nil and
13575         nothing was found in the current subfile.
13576         (Info-isearch-search): Remove `condition-case'.
13577         (Info-isearch-wrap): Don't wrap when search failed during leaving
13578         the initial node.  If `Info-isearch-search' is nil, wrap around
13579         the current node.
13580         (Info-isearch-start): New fun.
13581         (Info-mode): Add buffer-local hook `Info-isearch-start' to
13582         `isearch-mode-hook'.
13584 2005-03-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
13586         * simple.el (normal-erase-is-backspace): Set default to t if
13587         running on Mac.
13589         * term/mac-win.el (function-key-map): Sync with x-win.el.
13591 2005-03-15  Kenichi Handa  <handa@m17n.org>
13593         * international/mule-cmds.el (locale-language-names): Modify the
13594         format of elements and add more entries.
13595         (locale-preferred-coding-systems): Add more entries.
13596         (set-locale-environment): Adjust for the change of
13597         locale-language-names.
13599 2005-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13601         * pcvs.el (smerge-ediff): Remove bogus autoload.
13603 2005-03-14  Lute Kamstra  <lute@gnu.org>
13605         * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
13606         Ignore a `*' at the beginning of a line.
13608         * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
13609         * emacs-lisp/byte-run.el (macro-declaration-function): Move from
13610         subr.el.
13611         (dont-compile, eval-when-compile, eval-and-compile): Use declare
13612         to specify indentation.
13614         * generic.el (define-generic-mode): Let generic-mode-list be a
13615         list of strings; test membership with equal.
13617 2005-03-14  Kim F. Storm  <storm@cua.dk>
13619         * simple.el (next-line, previous-line): Add optional try-vscroll
13620         arg to recognize interactive use.  Pass it on to line-move.
13621         (line-move): Don't perform auto-window-vscroll when defining or
13622         executing keyboard macro to ensure consistent behavior.
13624 2005-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13626         * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
13628 2005-03-13  Lute Kamstra  <lute@gnu.org>
13630         * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
13631         debugger-setup-buffer so that backtrace marks the frames set to
13632         debug-on-exit and we don't have to do it manually.  Set an extra
13633         debug-on-exit for macro's.
13634         (debugger-setup-buffer): Don't mark the top frame manually.
13636 2005-03-12  Lute Kamstra  <lute@gnu.org>
13638         * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
13639         lisp-indent-function throughout.
13640         (with-no-warnings): Set lisp-indent-function property.
13642 2005-03-12  Thien-Thi Nguyen  <ttn@gnu.org>
13644         * progmodes/dcl-mode.el (dcl-mode-syntax-table):
13645         Add entry for backslash.
13647 2005-03-12  Juri Linkov  <juri@jurta.org>
13649         * info.el (Info-search): Four fixes for backward search.
13651 2005-03-11  Jay Belanger  <belanger@truman.edu>
13653         * calc/calc.el (calc-language-alist): New variable.
13654         * calc/calc-embed.el (calc-embedded-language-alist): Remove.
13655         (calc-embedded-find-modes): Use calc-language-alist instead of
13656         calc-embedded-language-alist.
13658 2005-03-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
13660         * calendar/calendar.el (calendar-redrawing): New internal
13661         variable.
13662         (redraw-calendar): Remove bogus save-excursion from previous
13663         change.  Bind calendar-redrawing to t for mark-diary-entries.
13664         * calendar/diary-lib.el (mark-diary-entries): No need to redraw
13665         calendar if that is why we were called.
13667 2005-03-11  Kenichi Handa  <handa@m17n.org>
13669         * international/mule.el (make-coding-system): Set property
13670         coding-system-define-form to nil.
13671         (define-coding-system-alias): Likewise.
13673 2005-03-11  Kenichi Handa  <handa@m17n.org>
13675         These changes are suggested by Dave Love <fx@gnu.org>.
13677         * textmodes/fill.el: Change encoding to iso-2022-7bit and add
13678         coding: tag.
13679         (adaptive-fill-regexp): Add more bullets.
13680         (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
13681         regexps.
13683 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13685         * help.el (describe-mode): Properly handle non-trivial lighters.
13686         Don't ignore minor modes that are not listed in minor-mode-list.
13688         * tooltip.el (tooltip-mode): Don't complain that you can't turn the
13689         feature ON when the user requests to turn it OFF.
13691 2005-03-10  Lute Kamstra  <lute@gnu.org>
13693         * emacs-lisp/debug.el (debug-entry-code): Delete it.
13694         (implement-debug-on-entry): New function to replace debug-entry-code.
13695         (debug-on-entry-1): Use implement-debug-on-entry.  Delete the
13696         second argument as the 2005-03-07 change makes it obsolete.
13697         (debug-on-entry, cancel-debug-on-entry): Update call to
13698         debug-on-entry-1.
13699         (debug, debugger-setup-buffer): Comment update.
13700         (debugger-frame-number): Update to work with implement-debug-on-entry.
13702 2005-03-10  Jay Belanger  <belanger@truman.edu>
13704         * calc/calc-embed.el (math-ms-args): Declare it.
13705         (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
13706         math-ms-args.
13707         (calc-embedded-subst): Use math-multi-subst-rec to substitute
13708         variables.
13710 2005-03-10  Nick Roberts  <nickrob@snap.net.nz>
13712         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
13713         Use message-box.
13715         * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
13716         (tooltip-activate-mouse-motions-if-enabled): Use dolist.
13717         (tooltip-gud-tips): Simplify.
13718         (tooltip-gud-tips-p): Remove superfluous :set.
13719         (tooltip-gud-modes): Add fortran-mode.
13720         (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
13722         * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
13724 2005-03-09  Kim F. Storm  <storm@cua.dk>
13726         * play/animate.el (animate-place-char): Use forward-line instead
13727         of next-line to improve performance.
13729 2005-03-09  Simon Josefsson  <jas@extundo.com>
13731         * net/browse-url.el (browse-url-default-browser): Doc fix.
13733 2005-03-09  Miles Bader  <miles@gnu.org>
13735         * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
13736         (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
13738 2005-03-09  Kenichi Handa  <handa@m17n.org>
13740         * international/latin-1.el: Set case and syntax for 255 only if
13741         set-case-syntax-set-multibyte is nil.
13743         * textmodes/ispell.el (ispell-insert-word): New function.
13744         (ispell-word): Use ispell-insert-word to insert a new word.
13745         (ispell-process-line): Likewise.
13746         (ispell-complete-word): Likewise.
13748 2005-03-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
13750         * calendar/calendar.el (redraw-calendar): Preserve point.
13751         Reported by Matt Hodges <MPHodges@member.fsf.org>.
13752         (calendar-week-start-day): Move after definition of
13753         redraw-calendar.  Delete buffer test, since redraw-calendar has
13754         that now.
13756         * calendar/diary-lib.el (mark-diary-entries): Only call
13757         redraw-calendar in the first of any recursive calls.
13758         Reported by Alan Shutko <ats@acm.org>.
13760 2005-03-08  Juri Linkov  <juri@jurta.org>
13762         * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
13763         (html-horizontal-rule, html-line, html-image, html-checkboxes)
13764         (html-radio-buttons): Add a space before the trailing `/>' where
13765         sgml-xml-mode is non-nil.
13766         (sgml-delete-tag): Check if the tag ends with `/>' to not delete
13767         the subsequent tag of the empty XML tag.
13768         (html-href-anchor): Don't set initial input to "http:".
13769         (html-image): Ask for the image URL and set point inside alt="".
13770         (html-name-anchor): Duplicate the name in the `id' attribute when
13771         sgml-xml-mode is non-nil.
13772         (html-paragraph): Remove \n before <p>.
13773         (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
13774         instead of `checked' when sgml-xml-mode is non-nil.
13776         * facemenu.el (list-colors-print): Print #RRGGBB in default face.
13777         Remove 1 space before #RRGGBB to not truncate it on terminal
13778         windows w/o fringes.  Remove 1 space between bg and fg examples
13779         to get more space.
13780         (list-colors-duplicates): Replace `and' with `if' for `boundp' to
13781         avoid byte-compile warnings.
13783         * image-file.el (image-file-handler): Put `safe-magic' property to
13784         `image-file-handler'.
13786         * info.el (Info-isearch-search): Emulate word search in
13787         isearching through multiple Info nodes with Info-search.
13788         (Info-isearch-wrap): Allow isearch-word.
13790 2005-03-08  Lute Kamstra  <lute@gnu.org>
13792         * emacs-lisp/debug.el (debugger-step-through): Make sure that
13793         stepping into the debugger's code is not possible.
13794         (debugger-jumping-flag): Docstring update.
13796 2005-03-08  Jay Belanger  <belanger@truman.edu>
13798         * calc/calc-embed.el (calc-do-embedded): Reset mode line when
13799         embedded mode begins.
13800         (calc-embedded-language-alist): New variable.
13801         (calc-embedded-find-modes): Use calc-embedded-language-alist to
13802         set default language mode.
13804 2005-03-08  Kenichi Handa  <handa@m17n.org>
13806         * international/ccl.el (define-ccl-program): Fix docstring about
13807         extra 256 bytes assured for the output buffer.
13809         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
13810         Fix BUFFER_MAGNIFICATION to 2.
13811         (ccl-encode-mule-utf-16be-with-signature): Likewise.
13813 2005-03-07  Karl Chen  <quarl@cs.berkeley.edu>
13815         * align.el (align-rules-list): Added an alignment rule for CSS
13816         declarations (applies to css-mode and html-mode buffers).
13818 2005-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13820         * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
13822 2005-03-07  Kim F. Storm  <storm@cua.dk>
13824         * simple.el (move-beginning-of-line): New command.
13826         * bindings.el (global-map): Bind C-a to move-beginning-of-line.
13828         * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
13830         * emulation/cua-base.el: Put CUA move property on move-end-of-line
13831         and move-beginning-of-line.
13833         * apropos.el (apropos-print): Omit command from M-x ... RET.
13835 2005-03-07  Nick Roberts  <nickrob@snap.net.nz>
13837         * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
13838         (gdb-send, gdb-send-item): Log items sent from gdb-send too.
13840 2005-03-06  Richard M. Stallman  <rms@gnu.org>
13842         * bindings.el (esc-map): Bind M-g to goto-line.
13844         * facemenu.el (global-map): Bind M-o, not M-g.
13846 2005-03-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13848         * menu-bar.el (menu-bar-file-menu): Add the same :enable to
13849         "Open Directory" as for "Open File".
13851 2005-03-06  Chong Yidong  <cyd@stupidchicken.com>
13853         * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
13854         (push-mark-command): Run activate-mark-hook.
13856 2005-03-06  Richard M. Stallman  <rms@gnu.org>
13858         * help-mode.el (help-mode-finish): Don't alter the element
13859         in view-return-to-alist if there already is one.
13861         * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
13862         make sure the current buffer is the expected one.
13864         * novice.el (disabled-command-function): Output in *Disabled Command*.
13865         Explicitly ignore non-keyboard events, and explicitly handle C-g.
13867         * textmodes/flyspell.el (flyspell-large-region):
13868         Pass args differently for aspell.
13870         * files.el (mode-require-final-newline): Doc fix.
13872 2005-03-03  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
13874         * progmodes/which-func.el (which-function):
13875         Specify NOERROR when calling imenu--make-index-alist.
13877 2005-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13879         * simple.el (normal-erase-is-backspace): Define default value.
13881         * custom.el (custom-theme-set-variables): Remove unused var
13882         `immediate'.
13883         (custom-reevaluate-setting): Simple function to handle variables
13884         that are defined before their default value can really be
13885         computed.
13887         * startup.el (command-line): Use it for temporary-file-directory,
13888         small-emporary-file-directory, auto-save-file-name-transforms,
13889         blink-cursor-mode, and normal-erase-is-backspace.
13891         * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
13892         progress, even with buggy anchored keywords.
13894 2005-03-05  Luc Teirlinck  <teirllm@auburn.edu>
13896         * simple.el (goto-line): Remove unbalanced final parenthesis.
13898 2005-03-05  Richard M. Stallman  <rms@gnu.org>
13900         * simple.el (goto-line): Use a number at point as the default.
13901         With C-u as arg, switch buffers.
13903 2005-03-05  Juri Linkov  <juri@jurta.org>
13905         * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
13906         with `no-blinking-cursor'.
13908         * startup.el (no-blinking-cursor): New defvar.
13909         (command-line): Add `--no-blinking-cursor' to longopts.
13910         Set `no-blinking-cursor' to t for command line arguments
13911         -Q, -nbc, --no-blinking-cursor.  Replace `emacs-quick-startup'
13912         with `no-blinking-cursor' in the condition for calling
13913         `blink-cursor-mode'.
13915 2005-03-04  Luc Teirlinck  <teirllm@auburn.edu>
13917         * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
13918         (menu-bar-options-save): Add blink-cursor-mode.
13919         (menu-bar-options-menu): Add blink-cursor-mode.
13921 2005-03-04  Ulf Jasper  <ulf.jasper@web.de>
13923         * calendar/icalendar.el (icalendar-version): Increase to 0.11.
13924         (icalendar-export-file, icalendar-export-region)
13925         (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
13926         (icalendar--convert-ical-to-diary): Fix problem with DURATION.
13928 2005-03-04  Lute Kamstra  <lute@gnu.org>
13930         * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
13931         (debug-function-list): Ditto.
13933 2005-03-04  Robert J. Chassell  <bob@rattlesnake.com>
13935         * textmodes/texinfmt.el (texinfo-append-refill):
13936         Redefine the types of line to which @refill
13937         is not appended by replacing a search for `@refill\\|@bye' with
13938         `@refill\\|^[ \t]*@'.  The intent is to solve both the `@end
13939         itemize@refill' bug and the unfilled long lines bug.
13940         (texinfmt-version): Update number and date.
13942 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
13944         * international/code-pages.el (windows-1250, windows-125[2-8])
13945         (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
13947 2005-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13949         * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
13950         bound yet.
13952 2005-03-02  Romain Francoise  <romain@orebokech.com>
13954         * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
13955         buffer after removing limits.
13956         (ibuffer-pop-filter): Ditto.
13957         Update copyright.
13959 2005-03-02  Miles Bader  <miles@gnu.org>
13961         * button.el (make-text-button): If the user doesn't specify a
13962         type, use the default.  Rewrite to use `add-text-properties' and
13963         plist functions.
13965 2005-03-01  Lute Kamstra  <lute@gnu.org>
13967         * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
13968         (debugger-jumping-flag): New var.
13969         (debug-entry-code): Use it.
13970         (debugger-jump): Use debugger-jumping-flag and add
13971         debugger-reenable to post-command-hook.
13972         (debugger-reenable): Use debugger-jumping-flag and remove itself
13973         from post-command-hook.
13974         (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
13975         debugger-reenable.
13977 2005-03-01  Robert J. Chassell  <bob@rattlesnake.com>
13979         * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
13980         inclusion of "itemize\\|", which may be unnecessary, is certainly
13981         inelegant, and stops refilling in itemize lists when formatting
13982         Japanese Texinfo files to Info.
13983         Update copyright to 2005.
13985 2005-03-01  Nick Roberts  <nickrob@snap.net.nz>
13987         * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
13988         of an error if GDB can't find the source file.
13990 2005-03-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
13992         * calendar/calendar.el (redraw-calendar): Work from any buffer,
13993         not just the calendar.
13995         * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
13996         first.
13997         (diary-redraw-calendar): New function.
13998         (make-diary-entry): Add diary-redraw-calendar to local
13999         write-contents-functions.  Turn off selective display before
14000         inserting in diary.
14002 2005-03-01  Kim F. Storm  <storm@cua.dk>
14004         * emacs-lisp/copyright.el (copyright-fix-years): New command.
14006 2005-03-01  Lute Kamstra  <lute@gnu.org>
14008         * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
14009         that debug-entry-code can be safely removed from a function while
14010         this code is being evaluated.  Revert the 2005-02-27 change as the
14011         new implementation no longer requires it.  Make sure that a
14012         function body containing just a string is not mistaken for a docstring.
14013         (debug): Skip one more frame in case of debug on entry.
14014         (debugger-setup-buffer): Delete one more frame line in case of
14015         debug on entry.
14016         (debugger-frame-number): Update to use the new text introduced by
14017         the 1999-11-03 change.  Skip one more frame in case of debug on entry.
14019 2005-02-28  Kim F. Storm  <storm@cua.dk>
14021         * double.el (double-translate-key): Call force-window-update after
14022         read-event to avoid crash in redisplay.
14024 2005-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14026         * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
14027         (debug): Use it.  Move the inhibit-trace earlier.
14028         (debug-entry-code): New const.
14029         (debug-on-entry-1): Use it.
14031 2005-02-28  Chong Yidong  <cyd@stupidchicken.com>
14033         * international/utf-16.el (ccl-encode-mule-utf-16le):
14034         Fix BUFFER_MAGNIFICATION to 2.
14035         (ccl-encode-mule-utf-16be): Likewise.
14037 2005-02-28  Kenichi Handa  <handa@m17n.org>
14039         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
14040         Fix BUFFER_MAGNIFICATION to 4.
14041         (ccl-encode-mule-utf-16be-with-signature): Likewise.
14043 2005-02-28  Nick Roberts  <nickrob@snap.net.nz>
14045         * speedbar.el (speedbar-update-flag): Doc fix.
14046         (speedbar-show-info-under-mouse): Give set-mouse-position the right
14047         argument.
14049 2005-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14051         * reveal.el (reveal-post-command): Don't try to reveal overlays which
14052         have a non-nil `invisible' property but are actually visible.
14054         * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
14055         for perldoc sections.
14056         (perl-outline-regexp, perl-outline-level): New var and function.
14057         (perl-mode): Use them.
14059 2005-02-27  Glenn Morris  <gmorris@ast.cam.ac.uk>
14061         * calendar/diary-lib.el (diary-remind): Discard any mark portion
14062         from diary-entry.  Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
14064 2005-02-27  Luc Teirlinck  <teirllm@auburn.edu>
14066         * cus-edit.el: Comment change.
14067         (custom-buffer-create-internal): Slightly reword text at top of
14068         Custom buffers.  Mention there that saving an option edits the
14069         init file.  Add link to Emacs manual node on `custom-file'.
14070         (custom-magic-alist): Rewrite individual State messages to use
14071         capitalized keywords.  Doc fix.
14073 2005-02-27  Matt Hodges  <MPHodges@member.fsf.org>
14075         * calendar/calendar.el (calendar-buffer): Move above
14076         calendar-week-start-day.
14077         (calendar-week-start-day): Doc fix.  Add :set function.
14078         (calendar-minimum-window-height): New variable.
14079         (generate-calendar-window): Only resize window if selected-window
14080         is displaying the calendar buffer.  Use new variable
14081         calendar-minimum-window-height.
14082         (generate-calendar): Reword error message.
14083         (calendar-mode-map): Bind DEL to scroll-other-window-down.
14085 2005-02-27  Andreas Schwab  <schwab@suse.de>
14087         * vc.el (vc-do-command): Don't run command asynchronously when
14088         operating in a remote directory.
14090         * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
14091         change from sync with Tramp 2.0.47.
14093 2005-02-27  Richard M. Stallman  <rms@gnu.org>
14095         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
14097         * textmodes/flyspell.el (flyspell-mode-on):
14098         Call ispell-change-dictionary only if necessary.
14100         * emacs-lisp/re-builder.el (regexp-builder): New function.
14102         * register.el (describe-register-1): Explicitly handle
14103         yank-excluded-properties = t.
14105         * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
14106         (custom-magic-alist): Change the status descriptions again.
14107         (face widget-type): Total rewrite based on `restricted-sexp'
14108         to eliminate the confusing double hiding levels.
14110         * emacs-lisp/debug.el (debug-on-entry-1):
14111         If function body is empty, add nil as body form.
14113 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14115         * emacs-lisp/trace.el (inhibit-trace): New var.
14116         (trace-make-advice): Use it.
14118         * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
14120 2005-02-26  Kim F. Storm  <storm@cua.dk>
14122         * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
14123         (mouse-on-link-p, mouse-drag-region-1): Use it.
14125 2005-02-25  Lute Kamstra  <lute@gnu.org>
14127         * replace.el (query-replace-read-from): Fix 2005-02-19 change.
14129 2005-02-24  Luc Teirlinck  <teirllm@auburn.edu>
14131         * frame.el (blink-cursor-mode): Add :group keyword.
14133 2005-02-24  Ulf Jasper  <ulf.jasper@web.de>
14135         * calendar/icalendar.el (icalendar--decode-isodatetime):
14136         New optional argument DAY-SHIFT.
14137         (icalendar-export-region): Fix coding-system-for-write.
14138         (icalendar--convert-ical-to-diary): Shift end-day of all-day
14139         events by one.
14141 2005-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14143         * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
14145 2005-02-24  Kim F. Storm  <storm@cua.dk>
14147         * international/iso-acc.el (iso-accents-compose): Fix crash
14148         during redisplay.  Call force-window-update after read-event
14149         and delete-region to signal that window is not accurate.
14151 2005-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14153         * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
14154         Remove unused and inexistent var `inhibit-trace'.
14155         (debugger-mode): Use run-mode-hooks.
14156         (debugger-list-functions): Add buttons; setup xref stack.
14158 2005-02-23  Richard M. Stallman  <rms@gnu.org>
14160         * calendar/appt.el (appt-time-msg-list): 3rd elt of each
14161         appointment says it was explicitly made.
14162         (appt-add): Set the 3rd element.
14163         (appt-make-list): Preserve explicit appointments.
14165         * subr.el (find-tag-default): Catch errors in forward-sexp.
14167 2005-02-23  Juri Linkov  <juri@jurta.org>
14169         * info.el (Info-isearch-search): New defcustom.
14170         (Info-isearch-search): Call the default isearch function
14171         when Info-isearch-search is nil.
14172         (Info-isearch-wrap): Use variable Info-isearch-search.
14174 2005-02-22  Luc Teirlinck  <teirllm@auburn.edu>
14176         * cus-edit.el: Comment change.
14178 2005-02-22  Kim F. Storm  <storm@cua.dk>
14180         * progmodes/hideif.el (hide-ifdef-use-define-alist):
14181         Use completing-read.  Suggested by Juan-Leon Lahoz Garcia.
14183 2005-02-22  Simon Josefsson  <jas@extundo.com>
14185         * net/browse-url.el (browse-url-netscape-new-window-is-tab):
14186         New variable.
14187         (browse-url-netscape): Use it.  Suggested by "Johann 'Myrkraverk'
14188         Oskarsson" <myrkraverk@users.sourceforget.net>.
14190 2005-02-22  Kim F. Storm  <storm@cua.dk>
14192         * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
14193         check that window of that event is the selected window.
14194         (mouse-drag-region-1): Compare mouse event window to selected
14195         window before setting point.
14197         * tooltip.el (tooltip-show-help-function): Pass event to
14198         mouse-on-link-p so it can check selected window.
14200 2005-02-22  Kenichi Handa  <handa@m17n.org>
14202         * ps-mule.el (ps-mule-header-string-charsets): Delete it.
14203         (ps-mule-show-warning): New function.
14204         (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
14205         characters are found.
14207         * ps-print.el (ps-header-footer-string): Return a list of header
14208         and footer strings.
14210 2005-02-21  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
14212         * pcvs.el (cvs-retrieve-revision): Fix thinko.
14214 2005-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14216         * frame.el (blink-cursor-mode): Use define-minor-mode.
14218         * term/mac-win.el (function-key-map): Use char-names more consistently.
14219         (file-name-coding-system): Only set it for MacOS-9.  The other case is
14220         already handled in mule-cmds.el (where it also works when mac-win.el
14221         is not used).
14223 2005-02-21  Kenichi Handa  <handa@m17n.org>
14225         * international/mule.el (ctext-pre-write-conversion): Always use
14226         " *code-converting-work*" buffer for work.
14228         * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
14230 2005-02-20  Thien-Thi Nguyen  <ttn@gnu.org>
14232         * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
14234 2005-02-20  Jonathan Yavner  <jyavner@member.fsf.org>
14236         * ses.el (undo-more): Restore defadvice, but only the part that
14237         allows changes outside the restricted area of the buffer.
14239 2005-02-20  Kim F. Storm  <storm@cua.dk>
14241         * simple.el (line-move): Add fourth optional arg try-vscroll which
14242         must be set to perform auto-window-vscroll.
14243         When moving backwards and doing auto-window-vscroll, automatically
14244         vscroll to the last part of lines which are taller than the window.
14245         (next-line, previous-line): Set try-vscroll arg on line-move.
14247 2005-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
14249         * replace.el (query-replace, query-replace-regexp)
14250         (replace-string, replace-regexp): When operating on region, make
14251         the minibuffer prompt say so.
14253         * isearch.el (isearch-forward): Document isearch-query-replace and
14254         isearch-query-replace-regexp keybindings.
14256 2005-02-19  Jay Belanger  <belanger@truman.edu>
14258         * calc/calc-aent.el (math-read-token): Add local variable.
14260         * calc/calc-prog.el (calc-user-define-edit): Add local variable.
14261         (calc-edit-top): Move declaration to earlier in file.
14262         (calc-edit-macro-repeats): Add local variables.
14264         * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
14265         Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
14266         calcFunc-tanh.
14267         Adjust integration rule for calcFunc-tan.
14269 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
14271         * viper-cmd.el (viper-prefix-commands): Make into a defconst.
14272         (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
14273         (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
14274         (viper-skip-separators): Bug fix.
14275         (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
14276         particular major mode.
14277         (viper-del-backward-char-in-replace): Don't put deleted char on the
14278         kill ring.
14280         * viper-ex.el (viper-color-display-p): New function.
14281         (viper-has-face-support-p): Use viper-color-display-p.
14283         * viper-keym.el (viper-gnus-modifier-map): New keymap.
14285         * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
14287         * viper-util.el (viper-glob-unix-files): Fix shell status check.
14288         (viper-file-remote-p): Make equivalent to file-remote-p.
14290         * viper.el (viper-major-mode-modifier-list):
14291         Use viper-gnus-modifier-map.
14293 2005-02-19  David Kastrup  <dak@gnu.org>
14295         * subr.el (subregexp-context-p): Fix garbled doc string by adding
14296         quoting.
14298 2005-02-19  Jay Belanger  <belanger@truman.edu>
14300         * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
14301         Remove extra definitions.
14302         (calc-coth): New function.
14303         (calcFunc-cot): Fix `let'.
14305 2005-02-19  Eli Zaretskii  <eliz@gnu.org>
14307         * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
14308         the reasons we use "type pc" in these faces.
14310         * button.el (button): Ditto.
14312 2005-02-19  Michael Mauger  <mmaug@yahoo.com>
14314         * replace.el (query-replace-read-from): Set the value of
14315         query-replace-from-history-variable to handle the case of an empty
14316         string entered to accept the suggested default.
14318         * net/tramp.el (tramp-file-name-for-operation):
14319         Use dired-call-process instead of dired-call-process-command.
14321 2005-02-19  Jay Belanger  <belanger@truman.edu>
14323         * calc/calc-arith.el (math-trig-inverses, math-div-trig)
14324         (math-div-non-trig): New variables.
14325         (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
14326         (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
14327         (math-combine-prod, math-div-symb-fancy): Add simplifications for
14328         trig expressions.
14330 2005-02-19  Nick Roberts  <nickrob@snap.net.nz>
14332         * progmodes/gdb-ui.el (gdb-var-update-handler)
14333         (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
14334         for watch expressions,
14335         (gdb-var-create-handler): Don't set speedbar-update-flag.
14336         (gdb-post-prompt): Simplify test for speedbar.
14338 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
14340         * ediff.el (ediff-set-diff-overlays-in-one-buffer)
14341         (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
14342         we use the syntax table of the correct buffer.
14343         (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
14344         Felix Gatzemeier.
14346         * ediff-init.el (ediff-hide-face): Check for definedness of functions.
14347         (ediff-file-remote-p): Make synonymous with file-remote-p.
14348         In all deffaces ediff-*-face-*, use min-colors.
14350         * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
14351         ediff-recurse-to-subdirectories.
14352         (ediff-mark-if-equal): Check that the arguments are strings, use
14353         ediff-same-contents (after to Felix Gatzemeier).
14355         * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
14356         nil.
14358 2005-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14360         * log-view.el (log-view-message-re): Fix up Subversion regexp.
14362 2005-02-18  David Kastrup  <dak@gnu.org>
14364         * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
14365         use `mark-active' when defined.
14367 2005-02-18  Kenichi Handa  <handa@m17n.org>
14369         * ps-print.el (ps-font-info-database): New entry
14370         ZapfChancery-MediumItalic with correct font name.  Fix font name
14371         of the entry Zapf-Chancery-MediumItalic.
14373 2005-02-16  Luc Teirlinck  <teirllm@auburn.edu>
14375         * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
14377 2005-02-16  Kim F. Storm  <storm@cua.dk>
14379         * ido.el (ido-fallback-command): Pass user input to fallback command.
14381 2005-02-16  Nick Roberts  <nickrob@snap.net.nz>
14383         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
14384         (gdb-find-file-hook): Add server prefix.
14386 2005-02-16  Richard M. Stallman  <rms@gnu.org>
14388         * replace.el (perform-replace): Pass new args to replace-highlight.
14389         (replace-highlight): Take region args,
14390         and pass them to isearch-lazy-highlight-new-loop.
14392         * novice.el (disabled-command-hook): Autoload the defalias
14393         and the make-obsolete-variable call.
14395         * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
14397         * isearch.el (isearch-lazy-highlight-start-limit)
14398         (isearch-lazy-highlight-end-limit): New variables limit
14399         the region for highlighting.
14400         (isearch-lazy-highlight-new-loop): New args BEG and END.
14401         (isearch-lazy-highlight-search): Use the new vars.
14402         (isearch-lazy-highlight-update): Likewise.
14404         * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
14406         * cus-start.el (all): Use default-boundp.
14408 2005-02-15  David Casperson  <casper@unbc.ca>  (tiny change)
14410         * menu-bar.el (menu-bar-select-frame): Handle current frame.
14412 2005-02-15  Luc Teirlinck  <teirllm@auburn.edu>
14414         * autorevert.el (auto-revert-stop-on-user-input)
14415         (auto-revert-verbose): Doc fixes.
14417 2005-02-15  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
14419         * international/mule-cmds.el (set-locale-environment): Remove call
14420         to set-selection-coding-system on Windows.
14422 2005-02-15  Jay Belanger  <belanger@truman.edu>
14424         * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
14425         calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
14426         calcFunc-coth.
14427         (math-simplify-sqrt): Add simplifications.
14429         * calc/calc-arith.el (math-real-if-arg-functions): Add functions
14430         to list.
14432         * calc/calc-ext.el: Add functions to autoloads.
14434         * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
14435         (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
14436         (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
14437         (math-csc-raw, math-cot-raw): New functions.
14439         * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
14441         * calc/calc-undo.el (calc-handle-undo): Remove prefix from
14442         the variable name in a message.
14444         * calc/calc-units.el: Add simplification rules for calcFunc-sec,
14445         calcFunc-csc, calcFunc-cot.
14447         * calc/calcalg2.el: Add derivative and integration rules for
14448         calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
14449         calcFunc-csch, calcFunc-coth.
14450         (math-do-integral-methods): Add to checks for when to use
14451         substitutions.
14453         * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
14455 2005-02-15  Lute Kamstra  <lute@gnu.org>
14457         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
14458         Add ;;;###autoload to `outline-regexp'.  Suggested by Stefan Monnier
14459         <monnier@iro.umontreal.ca>
14460         (lisp-outline-level): Improve efficiency.  Suggested by David
14461         Kastrup <dak@gnu.org>.
14463 2005-02-15  Nick Roberts  <nickrob@snap.net.nz>
14465         * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
14466         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
14467         (gdb-set-gud-minor-mode-existing-buffers): New functions.
14468         (gdb-find-file-hook): New hook.  Add it to find-file-hook.
14469         (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
14471 2005-02-14  Luc Teirlinck  <teirllm@auburn.edu>
14473         * cus-start.el (all): Comment change.
14475 2005-02-14  Lute Kamstra  <lute@gnu.org>
14477         * cus-start.el (all): Check if symbol is void.
14479 2005-02-14  Carsten Dominik  <dominik@science.uva.nl>
14481         * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
14482         optional argument to \cite.
14484 2005-02-14  Richard M. Stallman  <rms@gnu.org>
14486         * cus-edit.el (custom-buffer-create-internal): Update help message.
14487         (custom-magic-alist): Update help messages.
14489         * cus-start.el (all): Allow a var to specify a standard value.
14491 2005-02-12  Luc Teirlinck  <teirllm@auburn.edu>
14493         * custom.el (custom-theme-set-variables): Handle variable aliases.
14495         * frame.el (blink-cursor-timer): Doc fix.
14496         (blink-cursor): Make it an alias for `blink-cursor-mode' and
14497         declare obsolete.
14498         (blink-cursor-mode): Define with defcustom and use correct
14499         standard expression in that defcustom.
14500         * startup.el (command-line): Adapt to above changes in frame.el.
14502 2005-02-11  Lute Kamstra  <lute@gnu.org>
14504         * apropos.el (apropos-score-doc): Prevent division by zero.
14506 2005-02-11  Ulf Jasper  <ulf.jasper@web.de>
14508         * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
14509         (icalendar--get-event-property-attributes)
14510         (icalendar--get-event-properties)
14511         (icalendar--datetime-to-diary-date): New functions.
14512         (icalendar--split-value): Doc fix.
14513         (icalendar--datetime-to-noneuropean-date)
14514         (icalendar--datetime-to-european-date): New optional argument
14515         SEPARATOR.  Return result as a string instead of a list.
14516         (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
14517         (icalendar--convert-string-for-export): Rename arg S to STRING.
14518         (icalendar-export-region): Doc fix.  Change name of error buffer.
14519         Save output buffer.
14520         (icalendar-import-file): Add blank at end of prompt.
14521         (icalendar-import-buffer): Doc fix.  Do not switch to error
14522         buffer.  Indicate status in return value.
14523         (icalendar--convert-ical-to-diary): Doc fix.  Change name of error
14524         buffer.  Save output buffer.  Handle exception from recurrence
14525         rules (EXDATE, EXRULE).  Handle start- and end-date of recurring
14526         events.  Fix problems with weekly all-day events.
14528 2005-02-10  Richard M. Stallman  <rms@gnu.org>
14530         * simple.el (eval-expression-print-format):
14531         Avoid warning about edebug-active.
14533         * help.el (help-for-help-internal): Rename from help-for-help.
14534         (help-for-help): Define with defalias.
14536         * font-core.el (font-lock-default-function): Use with-no-warnings.
14538         * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
14540         * custom.el (defface): Doc fix.
14542 2005-02-10  Nick Roberts  <nickrob@snap.net.nz>
14544         * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
14545         width 0" to prevent word wrapping problems.
14547 2005-02-09  Kim F. Storm  <storm@cua.dk>
14549         * ido.el (ido-file-extensions-order): New defcustom.
14550         (ido-file-extension-lessp, ido-file-extension-aux)
14551         (ido-file-extension-order): New advanced file ordering.
14552         (ido-file-lessp): New simple file ordering.
14553         (ido-sort-list): Remove.
14554         (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
14555         (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
14557 2005-02-08  Dan Nicolaescu  <dann@ics.uci.edu>
14559         * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
14560         that some versions of grep produce.
14561         (grep-mode-font-lock-keywords): Likewise.
14563 2005-02-09  Nick Roberts  <nickrob@snap.net.nz>
14565         * progmodes/gdb-ui.el (gdb-location-list): New variable.
14566         (gdb-cdir): Delete.
14567         (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
14568         (gdb-source-info): Treat case when source file is in another
14569         directory properly.
14570         (gdb-get-location): New function.
14572 2005-02-07  Jay Belanger  <belanger@truman.edu>
14574         * calc/calc-prog.el (calc-write-parse-table-part)
14575         (calc-fix-token-name): Fix a check for language type.
14577         * calc/calccomp.el (math-compose-expr): Fix a check for language type.
14579 2005-02-07  Andre Spiegel  <spiegel@gnu.org>
14581         * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
14582         as directory not writable.
14584 2005-02-07  Kim F. Storm  <storm@cua.dk>
14586         * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
14587         (cua--standard-movement-commands): Remove list.
14588         Instead, set CUA property value to move for movement commands.
14589         (cua-movement-commands): Remove.  Users must set CUA prop instead.
14590         (cua--pre-command-handler): Check CUA property.
14591         (cua--init-keymaps): Don't remap undo commands.
14592         (cua-mode): Don't call cua--rectangle-on-off.
14594         * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
14595         (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
14596         (cua--rect-undo-set-point): New var.
14597         (cua--rectangle-undo-boundary): Setup undo apply entry.
14598         (cua--rect-undo-handler): New function for rectangle undo.
14599         (cua--rect-start-position, cua--rect-end-position): Add.
14600         (cua--rectangle-post-command): Call cua--rectangle-set-corners
14601         for restored rectangle.  Set point if cua--rect-undo-set-point.
14603 2005-02-06  Jay Belanger  <belanger@truman.edu>
14605         * calc/calc-lang.el (calc-tex-language): Display more information
14606         in messages.
14608         * calc/calccomp.el (math-compose-expr): Allow multiline matrices
14609         in TeX mode.
14611 2005-02-06  Richard M. Stallman  <rms@gnu.org>
14613         * emacs-lisp/lisp.el (buffer-end): Doc fix.
14615 2005-02-05  Arne_J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
14617         * net/ldap.el (ldap-search-internal): Support attributes with
14618         optional descriptions separated by a semi-colon, as in
14619         "userCertificate;binary".
14621 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14623         * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
14624         isn't a cons (i.e. the version is 0).
14626 2005-02-05  Eli Zaretskii  <eliz@gnu.org>
14628         * help.el (help-for-help): Doc fix.
14630 2005-02-05  Nick Roberts  <nickrob@snap.net.nz>
14632         * progmodes/gdb-ui.el: Update copyright.  Put GDB-Frames before
14633         GDB-Windows on the menu-bar as this works better.
14635 2005-02-04  Jay Belanger  <belanger@truman.edu>
14637         * calc/calc-embed.el (calc-embedded-update): Don't put in
14638         unnecessary newlines.  Adjust the end of formula marker.
14640         * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
14641         (math-latex-parse-two-args): New function.
14643 2005-02-03  Lute Kamstra  <lute@gnu.org>
14645         * help-fns.el (help-with-tutorial): Make sure that users cannot
14646         remove the entire text of the tutorial by means of `undo'.
14648 2005-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14650         * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
14651         in recent changes, where the ispell process was repeatedly
14652         killed & restarted.
14654         * international/mule-cmds.el (set-locale-environment): Set file-name
14655         coding system to utf-8 on Darwin systems.
14656         (set-default-coding-systems): Don't set default-file-name-coding-system
14657         on Darwin systems.
14659 2005-02-03  Richard M. Stallman  <rms@gnu.org>
14661         * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
14663 2005-02-03  Matt Hodges  <MPHodges@member.fsf.org>
14665         * faces.el (list-faces-display): Add optional argument.
14667 2005-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14669         * font-core.el (font-lock-default-function): Handle the rare case where
14670         only font-lock-keywords is set.
14672 2005-02-02  Kenichi Handa  <handa@m17n.org>
14674         * international/characters.el: Cancel previous change for
14675         I-WITH-DOT-ABOVE and DOTLESS-i.
14677         * international/latin-5.el: Cancel previous change.
14679 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
14681         * progmodes/gud.el: Correction to syntax in gud-menu-map.
14683 2005-02-02  Kenichi Handa  <handa@m17n.org>
14685         * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
14686         DOTLESS-i.
14688         * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
14689         Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
14691         * case-table.el (get-upcase-table): New function.
14692         (copy-case-table): Copy upcaes table too if non-nil.
14693         (set-case-syntax-delims): Maintain upcase table too.
14694         (set-case-syntax-pair): Likewise.
14695         (set-upcase-syntax, set-downcase-syntax): New functions.
14696         (set-case-syntax): Maintain upcase table too.
14698 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
14700         * progmodes/gdb-ui.el (gdb-goto-info): Delete.
14702         * progmodes/gud.el (gud-goto-info): New function.
14703         (gud-tool-bar-map): Use correct icon.
14705 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
14707         * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
14708         When delegating, order args in the funcall correctly.
14710 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
14712         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
14714 2005-02-01  Carsten Dominik  <dominik@science.uva.nl>
14716         * textmodes/reftex.el (reftex-access-scan-info): Error out in a
14717         buffer not visiting a file.
14719 2005-01-31  Jay Belanger  <belanger@truman.edu>
14721         * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
14722         bound on the line with the formula.
14724 2005-01-31  Kim F. Storm  <storm@cua.dk>
14726         * ses.el (ses-create-cell-variable-range)
14727         (ses-destroy-cell-variable-range, ses-reset-header-string)
14728         (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
14729         (ses-insert-row): Fix format of apply undo entries.
14731 2005-01-31  Jay Belanger  <belanger@truman.edu>
14733         * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
14734         parts.
14736         * calc/calc-embed.el (calc-embedded-open-formula)
14737         (calc-embedded-close-formula): Ignore matrix environments.
14739         * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
14740         TeX mode.
14742         * calc/calc-lang.el (math-function-table, math-oper-table)
14743         (math-variable-table): Adjust the LaTeX portions.
14745         * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
14746         (math-latex-ignore-words): New constant.
14748 2005-01-31  Richard M. Stallman  <rms@gnu.org>
14750         * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
14751         (ispell-local-dictionary): Doc fix.
14752         (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
14753         Don't reinitialize at run time.  Don't defcustom.
14754         All uses changed to append ispell-local-dictionary-alist,
14755         or check it first.
14756         (ispell-current-dictionary): New variable for dictionary in use.
14757         (ispell-dictionary): Now used only for global default.
14758         (ispell-start-process): Set ispell-current-dictionary,
14759         not ispell-dictionary.
14760         (ispell-change-dictionary): Use this only for setting
14761         user preferences.
14762         (ispell-internal-change-dictionary): New function
14763         to change the current dictionary in use.
14764         (ispell-region, ispell-process-line, ispell-buffer-local-dict):
14765         Use ispell-current-dictionary.
14766         Handle ispell-local-dictionary-overridden.
14767         (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
14769 2005-01-31  Jay Belanger  <belanger@truman.edu>
14771         * calc/calc-aent.el (math-read-token): Add support for LaTeX.
14773         * calc/calc-ext.el: Add calc-latex-language to autoloads.
14774         (calc-mode-map): Add calc-latex-language.
14776         * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
14777         (math-latex-print-frac): New functions.
14778         (math-oper-table, math-function-table, math-variable-table)
14779         (math-complex-format, math-input-filter): Add latex properties.
14780         (calc-set-language): Set math-expr-special-function-mapping.
14782         * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
14783         (calc-write-parse-table-part): Add LaTeX support.
14785         * calc/calc.el (calc-language): Adjust docstring.
14786         (calc-set-mode-line): Add LaTeX support.
14787         (math-expr-special-function-mapping): New variable.
14788         (math-tex-ignore-words): Add to list.
14790         * calc/calccomp.el (math-compose-expr, math-compose-rows):
14791         Add LaTeX support.
14792         (math-compose-expr): Add support for special functions.
14794         * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
14796 2005-01-31  Nick Roberts  <nickrob@snap.net.nz>
14798         * progmodes/gdb-ui.el (gdb-memory-address)
14799         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
14800         (gdb-memory-mode-map, gdb-memory-format-keymap)
14801         (gdb-memory-format-menu, gdb-memory-unit-keymap)
14802         (gdb-memory-unit-menu): New variables for a buffer
14803         that lets the user examine program memory.
14804         (gdb-memory-set-address, gdb-memory-set-repeat-count)
14805         (gdb-memory-format-binary, gdb-memory-format-octal)
14806         (gdb-memory-format-unsigned, gdb-memory-format-signed)
14807         (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
14808         (gdb-memory-format-menu-1, gdb-memory-unit-giant)
14809         (gdb-memory-unit-word, gdb-memory-unit-halfword)
14810         (gdb-memory-unit-byte, gdb-memory-unit-menu)
14811         (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
14812         (gdb-memory-mode, gdb-memory-buffer-name)
14813         (gdb-display-memory-buffer, gdb-frame-memory-buffer):
14814         New functions for above buffer.
14816 2005-01-30  Richard M. Stallman  <rms@gnu.org>
14818         * cus-edit.el (custom-bury-buffer): Function deleted.
14819         (custom-buffer-done-function): Option deleted.
14820         (custom-buffer-done-kill): New (replacement option.
14821         (Custom-buffer-done): Call quit-window.
14822         (custom-buffer-create-internal): Update for above changes.
14824 2005-01-29  Luc Teirlinck  <teirllm@auburn.edu>
14826         * simple.el (undo-ask-before-discard): New var.
14827         (undo-outer-limit-truncate): Implement it.
14828         (undo-extra-outer-limit): Doc update.
14830 2005-01-29  Richard M. Stallman  <rms@gnu.org>
14832         * ses.el (undo-more): Delete defadvice.
14833         (ses-begin-change): Doc fix.
14835         * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
14836         instead of rebinding C-x u and C-_.
14838         * files.el (normal-backup-enable-predicate): Return nil for files
14839         in /tmp, regardless of temporary-file-directory.
14841         * man.el (Man-getpage-in-background): Disable undo in Man buffer.
14843         * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
14844         (open-rectangle, delete-whitespace-rectangle-line)
14845         (clear-rectangle-line): If FILL, pass t instead of FILL
14846         for move-to-column's 2nd arg.
14848         * simple.el (undo): Fix the test for continuing a series of undos.
14849         (undo-more): Set pending-undo-list to t when we reach end.
14850         (pending-undo-list): Move up defvar.
14852         * wid-edit.el (widget-button-click):
14853         Shorten the range of the track-mouse binding.
14855         * comint.el (comint-insert-input): Undo previous changes;
14856         use last-input-event in interactive spec.
14858 2005-01-29  Eli Zaretskii  <eliz@gnu.org>
14860         * progmodes/compile.el (compilation-start): Bind buffer-read-only
14861         to nil before invoking call-process.  Reset buffer's modified flag
14862         after fontifying it in the no-async branch.
14864         * wid-edit.el (widget-specify-button): If mouse pointer shape
14865         cannot be changed, use mouse face instead.
14867 2005-01-29  Nick Roberts  <nickrob@snap.net.nz>
14869         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
14870         (gdb-goto-breakpoint): Make breakpoint handling work on template
14871         functions in C++.  Reported by Martin Reed <mjreed@essex.ac.uk>
14872         (gdb-assembler-custom): Update to recognize breakpoint information
14873         added on 2005-01-19.
14875 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14877         * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
14878         (dsssl-mode): Use define-derived-mode.
14879         (scheme-mode-initialize): Remove.
14880         (scheme-mode): Use run-mode-hooks.
14882         * cus-edit.el (customize-group-other-window)
14883         (custom-buffer-create-other-window): Don't override special-display-*.
14884         (custom-mode-map): Make it dense.
14886         * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
14887         sets the default value.
14889 2005-01-28  Eli Zaretskii  <eliz@gnu.org>
14891         * descr-text.el: Add more keywords.
14893 2005-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14895         * speedbar.el: Avoid unnecessary use of locate-library.
14897         * international/mule-cmds.el (standard-display-european-internal):
14898         Don't fiddle with latin-1 non-break space any more since it's now
14899         special cased in the C code.
14900         Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
14902 2005-01-26  Luc Teirlinck  <teirllm@auburn.edu>
14904         * cus-start.el (all): Add `undo-outer-limit'.
14906 2005-01-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14908         * textmodes/bibtex.el (bibtex-format-entry):
14909         Use `bibtex-empty-field-re' only on the text of fields, not on entire
14910         field lines.
14911         (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
14912         not on part of a buffer.
14914 2005-01-25  Lute Kamstra  <lute@gnu.org>
14916         * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
14917         nonempty field text strings like "{letters\\macro{}more letters}".
14918         Clarify docstring.
14919         (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
14920         (bibtex-entry-offset, bibtex-parse-association)
14921         (bibtex-parse-field-name): Fix typos in docstrings.
14922         (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
14924 2005-01-24  Carsten Dominik  <dominik@science.uva.nl>
14926         * textmodes/reftex-global.el (reftex-isearch-push-state-function)
14927         (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
14928         (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
14929         (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
14931         * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
14932         isearch minor mode.
14934 2005-01-24  Luc Teirlinck  <teirllm@auburn.edu>
14936         * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
14938 2005-01-24  Lute Kamstra  <lute@gnu.org>
14940         * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
14941         CASECHARS and NOT-CASECHARS regular expressions of the
14942         "nederlands" and "nederlands8" dictionaries to prevent a "Range
14943         striding over charsets" error.
14945 2005-01-24  Jay Belanger  <belanger@truman.edu>
14947         * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
14948         display variable name.
14950 2005-01-24  Kenichi Handa  <handa@m17n.org>
14952         * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
14953         Fix setting of the element of encoded-kbd-iso2022-invocations.
14955 2005-01-24  Nick Roberts  <nickrob@snap.net.nz>
14957         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
14958         (gdb-threads-select): Change to also accept mouse events.
14959         (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
14960         (gdb-threads-mouse-select): Delete.
14962 2005-01-23  Luc Teirlinck  <teirllm@auburn.edu>
14964         * files.el (insert-directory): Take care of empty directory,
14965         listed without -a switch.
14967 2005-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14969         * textmodes/refill.el (refill-post-command-function):
14970         Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
14971         to the list of functions that we should be careful not to undo.
14972         (refill-late-fill-paragraph-function): Remove.
14973         (refill-saved-state): New var.
14974         (refill-mode): Use it to save fill-paragraph-function.
14975         Save also the value of auto-fill-function.
14977         * term/w32-win.el: Simplify code.
14979 2005-01-23  Kim F. Storm  <storm@cua.dk>
14981         * simple.el (line-move): Adapt to new return value from
14982         pos-visible-in-window-p.
14984         * simple.el (line-move): Fix last change.  Check partial
14985         visibility at point rather than at window-start.
14987 2005-01-22  Jason Rumney  <jasonr@gnu.org>
14989         * term/w32-win.el (xw-defined-colors): Remove debug-message.
14991 2005-01-22  David Kastrup  <dak@gnu.org>
14993         * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
14995 2005-01-22  Eli Zaretskii  <eliz@gnu.org>
14997         * type-break.el (type-break-mode): Add a test for
14998         type-break-file-name being non-nil.
15000 2005-01-22  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
15002         * net/eudc.el (top level): Call (message "") via progn, so that
15003         eudc-options-file is loaded.
15005 2005-01-22  Kim F. Storm  <storm@cua.dk>
15007         * simple.el (line-move-1): Rename from line-move.
15008         (line-move): New function that adjusts vscroll for partially
15009         visible rows, and calls line-move-1 otherwise.
15011 2005-01-21  Ren\e,Ai\e(B Kyllingstad  <listmailxemacs@kyllingstad.com>
15013         * pcomplete.el: Define pcomplete-read-event instead of read-event,
15014         since it's not a complete read-event implementation
15016 2005-01-20  Jay Belanger  <belanger@truman.edu>
15018         * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
15019         for called function.
15021 2005-01-20  Steven Tamm  <steventamm@mac.com>
15023         * term/mac-win.el (process-connection-type): Remove.
15024         Controlled now by s/darwin.h:PTY_ITERATION.
15026 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15028         * window.el (handle-select-window): Don't switch window when we're
15029         in the minibuffer.
15031 2005-01-10  Paul Pogonyshev  <pogonyshev@gmx.net>
15033         * subr.el (dotimes-with-progress-reporter): New macro.
15035         * ses.el (ses-dotimes-msg): Remove macro.
15036         Use `dotimes-with-progress-reporter' instead.
15038 2005-01-19  Steven Tamm  <steventamm@mac.com>
15040         * term/mac-win.el (process-connection-type): Use new
15041         operating-system-release variable to use ptys on Darwin 7 (OS X
15042         10.3) when using carbon build.
15044 2005-01-19  Jay Belanger  <belanger@truman.edu>
15046         * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
15047         flags if the last command was a tab or M-tab.
15049         * calc/calc-prog.el (calc-user-define-edit): Put original formula
15050         in formula editing buffer.
15052 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
15054         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
15055         breakpoint image symbol in margin.
15057 2005-01-19  Jay Belanger  <belanger@truman.edu>
15059         * calc/calc-prog.el (calc-execute-kbd-macro):
15060         Ignore calc-keep-arg-flag.
15062 2005-01-19  Kenichi Handa  <handa@m17n.org>
15064         * textmodes/ispell.el (ispell-looking-at): New function.
15065         (ispell-process-line): Use ispell-looking-at to compare the ispell
15066         output and the buffer contents.
15068 2005-01-18  Jay Belanger  <belanger@truman.edu>
15070         * calc/calc.el (calc-display-raw): Fix docstring.
15072 2005-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15074         * simple.el (blink-matching-open): Strip extra info from syntax.
15076         * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
15077         funny chars in the end-of-here-doc marker.
15079 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
15081         * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
15082         that enable/disabled state of breakpoints is shown correctly in
15083         fringe and on ttys.
15084         (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
15085         Add breakpoint information as text properties.
15086         (gdb-mouse-toggle-breakpoint):
15087         Rename to gdb-mouse-set-clear-breakpoint.
15088         (gdb-mouse-toggle-breakpoint): New function.  Enable/disable
15089         breakpoints in the margin.
15090         (gdb-remove-strings): Simplify.
15092 2005-01-17  Jay Belanger  <belanger@truman.edu>
15094         * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
15095         erasing buffer.
15097 2005-01-17  Richard M. Stallman  <rms@gnu.org>
15099         * progmodes/grep.el (grep-find): Copy from `grep' the condition
15100         for calling grep-compute-defaults.
15102         * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
15103         if buffer is empty.
15105         * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
15107 2005-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
15109         * hilit-chg.el (highlight-changes-mode): Don't autoload.
15111         * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
15112         non-preloaded variables.
15114 2005-01-17  Steven Tamm  <steventamm@mac.com>
15116         * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
15117         tex-shell cause to force interactivity when using pipes.
15119 2005-01-17  Kim F. Storm  <storm@cua.dk>
15121         * simple.el (just-one-space): Make arg optional.
15123 2005-01-17  Nick Roberts  <nickrob@snap.net.nz>
15125         * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
15126         posn-at-x-y to t to access left-margin.
15128 2005-01-16  Michael Albinus  <michael.albinus@gmx.de>
15130         Sync with Tramp 2.0.47.
15132         * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
15133         catching keep-date problems in cp/scp operations.
15134         (tramp-handle-copy-file): Don't call `set-file-modes'
15135         unconditionally.  Specialized functions should know better what is
15136         necessary.  This improves performance a little bit, and the
15137         functions could catch errors with `cp -p' and `scp -p'.
15138         (tramp-do-copy-or-rename-file-via-buffer)
15139         (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
15140         when appropriate.
15141         (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
15142         Call `set-file-modes' when appropriate.
15143         (tramp-action-out-of-band): Mask `scp -p' error.  Reported by Isak
15144         Johnsson <isak@hypergene.com>
15145         (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
15146         of both Tramp buffer and debug buffer.  Reported by Joakim Verona
15147         <joakim@verona.se>
15148         (tramp-file-name-for-operation): Mark `shell-command' as magic for
15149         Emacs only.
15151         * net/tramp-util.el (tramp-minor-mode): New minor mode.  Add it to
15152         `find-file-hooks' and `dired-mode-hook'.
15153         (tramp-minor-mode-map): Respective map.  Add remapping for
15154         `compile' and `recompile'.
15155         (tramp-remap-command, tramp-recompile): New defuns.
15156         (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
15157         in buffer "*Compilation*".  Call the commands asynchronously.
15159         * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
15160         (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
15161         `shell-command', because it isn't magic in XEmacs.  Reported by
15162         Adrian Aichner <adrian@xemacs.org>.
15164         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
15165         `substitute-in-file-name.
15166         (tramp-smb-handle-substitute-in-file-name): New defun.
15167         (tramp-smb-advice-PC-do-completion): Delete advice.
15169 2005-01-16  Kai Grossjohann  <kgrossjo@eu.uu.net>
15171         * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
15172         Fix error in deleting region.
15174 2005-01-15  Richard M. Stallman  <rms@gnu.org>
15176         * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
15177         In non-temp buffer, switch syntax table temporarily.
15179         * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
15181         * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
15183         * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
15185         * imenu.el (imenu--split-menu): Copy menulist before sorting.
15186         (imenu--generic-function): Use START, not BEG, as pos of definition.
15188         * simple.el (just-one-space): Argument specifies number of spaces.
15190         * simple.el (eval-expression-print-format): Avoid warning
15191         about edebug-active.
15193 2005-01-15  James R. Van Zandt  <jrvz@comcast.net>  (Tiny change)
15195         * progmodes/sh-script.el: Code copied from make-mode.el
15196         with small changes,
15197         (sh-mode-map): Bind C-c C-\.
15198         (sh-backslash-column, sh-backslash-align): New variables.
15199         (sh-backslash-region, sh-append-backslash): New functions.
15201 2005-01-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15203         * mail/rmail.el: Updated to work with movemail from GNU Mailutils
15204         (rmail-pop-password, rmail-pop-password-required): Move to
15205         rmail-obsolete group.
15206         (rmail-set-pop-password): Rename to rmail-set-remote-password.
15207         All callers updated.
15208         (rmail-get-pop-password): Rename to rmail-get-remote-password.
15209         Take an argument specifying whether it is POP or IMAP mailbox we
15210         are using.  All callers updated.
15211         (rmail-pop-password-error): Rename to
15212         rmail-remote-password-error.  Added mailutils-specific error message.
15213         (rmail-movemail-search-path)
15214         (rmail-movemail-variant-in-use): New variables.
15215         (rmail-remote-password, rmail-remote-password-required):
15216         New customization variables.
15217         (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
15218         (rmail-parse-url): New function.
15219         (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
15220         with GNU mailutils movemail.
15222 2005-01-15  Kevin Ryde  <user42@zip.com.au>
15224         * info-look.el (c-mode/symbol): Add ^` to prefix, and change
15225         suffix to space, $ or '$, to correctly position point when going
15226         to @table style constants like DBL_MAX.
15228 2005-01-15  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
15230         * type-break.el (type-break-mode, type-break-file-time)
15231         (type-break-file-keystroke-count, type-break-choose-file):
15232         Don't store data in or load data from the file if type-break-file-name
15233         is nil.
15234         (type-break-file-name): Doc update as per the above.
15236 2005-01-15  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
15238         * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
15239         lookup-key might return nil; handle that.
15241 2005-01-15  Alan Mackenzie  <acm@muc.de>
15243         * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
15244         rather than the element found, thus enabling the tree to be setcar'd.
15246 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
15248         * textmodes/org.el (org-show-following-heading): New option.
15249         (org-show-hierarchy-above): Use `org-show-following-heading'.
15250         (org-cycle): Documentation fix.
15252         * textmodes/org.el (orgtbl-optimized): New option
15253         (orgtbl-mode): New command, a minor mode.
15254         (orgtbl-mode-map): New variable.
15255         (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
15256         (orgtbl-error, orgtbl-self-insert-command)
15257         (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
15259         * textmodes/org.el (org-mode): `org-table-may-need-update' is now
15260         a local variable in each org-mode buffer.
15262         * textmodes/org.el (org-set-regexps-and-options): Rename from
15263         `org-set-regexps'.  Added checking for STARTUP keyword.
15264         (org-get-current-options): Add STARTUP options.
15265         (org-table-insert-row): Make mode intelligent about when
15266         realignment is needed.
15267         (org-self-insert-command, org-delete-backward-char, org-delete-char):
15268         New commands.
15269         (org-enable-table-editor): New default value `optimized'.
15270         (org-table-blank-field): Support blanking regions if active.
15272 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
15274         * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
15275         if the year is not given.
15277         * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
15278         Add new escapes %m and %M, fixed bug with %F by adding
15279         save-match-data.
15280         (reftex-reference): Remove ?. from list of spaces.
15281         (reftex-label-info): Add automatic label prefix recognition.
15283         * textmodes/reftex-index.el (reftex-index-next-phrase):
15284         Add slave parameter to call of `reftex-index-this-phrase'.
15285         (reftex-index-this-phrase): New optional argument.
15286         (reftex-index-region-phrases): Add slave parameter to call of
15287         `reftex-index-this-phrase'.
15288         (reftex-display-index): New argument redo.
15289         (reftex-index-rescan): Add 'redo to arguments of
15290         `reftex-display-index'.
15291         (reftex-index-Rescan, reftex-index-revert)
15292         (reftex-index-switch-index-tag): Add 'redo to arguments of
15293         `reftex-display-index'.
15294         (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
15295         indexing.  Fix bug with matching is there is a quote before or
15296         after the word.
15298         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
15299         Fix bug when collecting citation keys in lines with comments.
15300         (reftex-citation): Prefix argument no longer rescans the document,
15301         but forces prompting for optional arguments of cite macros.
15302         (reftex-do-citation): Prompting for optional arguments implemented.
15304         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
15305         Add optional arguments to most cite commands.
15306         (reftex-cite-cleanup-optional-args): New option
15307         (reftex-cite-prompt-optional-args): New option.
15308         (reftex-trust-label-prefix): New option.
15310         * textmodes/reftex-toc.el (reftex-toc-find-section):
15311         Add push-mark before changing the position in the buffer.
15313         * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
15314         (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
15316 2005-01-14  Nick Roberts  <nickrob@snap.net.nz>
15318         * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
15319         more carefully.
15321 2005-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15323         * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
15324         (sgml-mode): Use it.
15325         (sgml-get-context): Better keep track of implicitly closed tags.
15327 2005-01-13  Kenichi Handa  <handa@m17n.org>
15329         * textmodes/ispell.el: These changes are to fix misalignment error
15330         caused by equivalent characters of different Emacs charsets.
15331         (ispell-unified-chars-table): New variable.
15332         (ispell-get-decoded-string): New function.
15333         (ispell-get-casechars, ispell-get-not-casechars)
15334         (ispell-get-otherchars): Call ispell-get-decoded-string.
15336 2005-01-12  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
15338         * custom.el (custom-declare-variable): Just put symbol instead
15339         of (defvar . symbol) in `current-load-list'.
15341 2005-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
15343         * emacs-lisp/elint.el: Fixed typo in Commentary section.
15345 2005-01-12  Jay Belanger  <belanger@truman.edu>
15347         * calc/calc-help.el (calc-describe-key): Use temporary info buffer
15348         to create a Calc summary.
15350 2005-01-12  Kim F. Storm  <storm@cua.dk>
15352         * mouse.el (mouse-on-link-p): Change functionality and doc
15353         string to comply with latest description in lisp ref.
15355 2005-01-12  Nick Roberts  <nickrob@snap.net.nz>
15357         * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
15358         Enable mouse clicks on mode-line, header-line and margin.
15359         (event-type): Give mouse event symbols an 'event-kind property
15360         with value 'mouse-click.
15362 2005-01-12  Juri Linkov  <juri@jurta.org>
15364         * facemenu.el (list-colors-display): Add new arg buffer-name.
15365         Use it.  Fix docstring.  Replace code for identifying duplicate
15366         colors by the name with call to `list-colors-duplicates' which
15367         identifies duplicate colors by the value unless the color
15368         is one of special Windows colors.  Set truncate-lines to t.
15369         Print sorted duplicate color names on each line.  Indent to 22
15370         \(the longest color name in rgb.txt) instead of 20.  Optimize.
15371         (list-colors-duplicates): New function.
15372         (facemenu-color-name-equal): Delete function.
15374         * facemenu.el (list-colors-print): New function created from code
15375         in list-colors-display.  Print #RRGGBB at the window right edge.
15376         (list-colors-display): When temp-buffer-show-function is not
15377         defined, call list-colors-print from temp-buffer-show-hook
15378         to get the right value of window-width in list-colors-print
15379         after the buffer is displayed.
15381         * simple.el (pop-mark): Move deactivate-mark out of conditional
15382         part to deactivate the active mark regardless of the state of the
15383         mark ring.
15385         * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
15386         variables line in desktop files.
15388 2005-01-12  Juri Linkov  <juri@jurta.org>
15390         * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
15391         Bring together isearch highlight related options.
15392         (lazy-highlight): Replace group `replace' by `matching'.
15393         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
15394         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
15395         (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
15396         and declare them obsolete.
15397         (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
15398         (isearch-faces): Remove defgroup.
15399         (isearch-overlay, isearch-highlight, isearch-dehighlight):
15400         Move isearch highlighting code closer to lazy highlighting code.
15402         * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
15403         (query-replace-highlight, query-replace-lazy-highlight)
15404         (query-replace): Move definitions to the beginning of the file.
15406 2005-01-11  Juri Linkov  <juri@jurta.org>
15408         * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
15409         * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
15410         * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
15412         * info.el (Info-history-forward): New variable.
15413         (Info-select-node): Reset Info-history-forward to nil.
15414         (Info-last): Turn into defalias.
15415         (Info-history-back): Rename from Info-last.
15416         Add current node to Info-history-forward.
15417         (Info-history-forward): New fun.
15418         (Info-mode-map): Replace Info-last by Info-history-back.
15419         Bind Info-history-forward to "r".
15420         (Info-mode-menu): Replace Info-last by Info-history-back.
15421         Fix menu item text.  Add menu item for Info-history-forward.
15422         (info-tool-bar-map): Replace Info-last by Info-history-back.
15423         Replace its icon "undo" by "back_arrow".  Add icon "fwd_arrow"
15424         for Info-history-forward.
15425         (Info-mode): Replace Info-last by Info-history-back in docstring.
15426         Add local variable Info-history-forward.
15427         (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
15429 2005-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
15431         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
15432         (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
15433         Ignore select-window events rather than fiddle with
15434         mouse-autoselect-window.
15436 2005-01-11  Matthew Mundell  <matt@mundell.ukfsn.org>
15438         * type-break.el (type-break-mode): Fix previous change.
15440 2005-01-10  Jay Belanger  <belanger@truman.edu>
15442         * calc/calc-ext.el (calc-reset): Reset when inside embedded
15443         calculator; only reset when point is inside a calculator.
15444         Don't adjust the window height if the window takes up the whole height
15445         of the frame.
15447 2005-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
15449         * ebuff-menu.el (Electric-buffer-menu-mode):
15450         Preserve value of buffer-local var header-line-format.
15452 2005-01-09  Jay Belanger  <belanger@truman.edu>
15454         * calc/calc.el (calc-mode-var-list-restore-saved-values):
15455         Make sure settings file exists before accessing it.
15457         * calc/calc-embed.el (calc-embedded-subst):
15458         Replace math-multi-subst-rec, which is only supposed to be called
15459         by math-multi-subst, by math-multi-subst.
15461 2005-01-09  Andre Spiegel  <spiegel@gnu.org>
15463         * vc.el (vc-allow-async-revert): New user option.
15464         (vc-disable-async-diff): New internal variable.
15465         (vc-revert-buffer): Use them to disable asynchronous diff.
15467         * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
15468         (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
15469         asynchronously if vc-disable-async-diff is t.
15471 2005-01-09  Jay Belanger  <belanger@truman.edu>
15473         * calc/calc.el (defcalcmodevar): New macro.
15474         (calc-mode-var-list-restore-default-values)
15475         (calc-mode-var-list-restore-saved-values): New functions.
15476         (calc-mode-var-list): Use defcalcmodevar to define it.
15477         (calc-always-load-extensions, calc-line-numbering)
15478         (calc-line-breaking, calc-display-just, calc-display-origin)
15479         (calc-number-radix, calc-leading-zeros, calc-group-digits)
15480         (calc-group-char, calc-point-char, calc-frac-format)
15481         (calc-prefer-frac, calc-hms-format, calc-date-format)
15482         (calc-float-format, calc-full-float-format, calc-complex-format)
15483         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
15484         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
15485         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
15486         (calc-matrix-brackets, calc-language, calc-language-option)
15487         (calc-left-label, calc-right-label, calc-word-size)
15488         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
15489         (calc-display-raw, calc-internal-prec, calc-angle-mode)
15490         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
15491         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
15492         (calc-window-height, calc-display-trail, calc-show-selections)
15493         (calc-use-selections, calc-assoc-selections)
15494         (calc-display-working-message, calc-auto-why, calc-timing)
15495         (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
15496         (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
15497         (calc-gnuplot-default-device, calc-gnuplot-default-output)
15498         (calc-gnuplot-print-device, calc-gnuplot-print-output)
15499         (calc-gnuplot-geometry, calc-graph-default-resolution)
15500         (calc-graph-default-resolution-3d, calc-invocation-macro)
15501         (calc-show-banner): Use defcalcmodevar to declare them and set
15502         their default values.
15504         * calc/calc-ext.el (calc-reset): Restore saved values of variables
15505         instead of default values (but restore default values if there is
15506         an argument of 0).
15508 2005-01-09  David Kastrup  <dak@gnu.org>
15510         * desktop.el (desktop-restore-eager): Fix typo in type.
15512 2005-01-08  Richard M. Stallman  <rms@gnu.org>
15514         * cus-edit.el (customize): Delete :link.
15516 2005-01-08  Jay Belanger  <belanger@truman.edu>
15518         * calc/calc.el (calc-mode): Remove the extension from the
15519         `calc-settings-file' file name when loading it.
15521 2005-01-08  Kim F. Storm  <storm@cua.dk>
15523         * info.el (Info-mode-map, Info-next-link-keymap)
15524         (Info-prev-link-keymap, Info-up-link-keymap):
15525         Map follow-link to mouse-face.
15526         (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
15528 2005-01-08  Jay Belanger  <belanger@truman.edu>
15530         * calc/calc.el (calc-settings-file): Change default value.
15531         Suggested by cgw in a comment in calc-mode.el.
15533         * calc/calc-mode.el (calc-settings-file-name):
15534         Compare calc-settings-file to user-init-file instead of ~/.emacs.
15535         Replace ~/.emacs in a prompt by calc-settings-file.
15537 2005-01-07  Lars Hansen  <larsh@math.ku.dk>
15539         * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
15540         (desktop-lazy-idle-delay): New customizable variables.
15541         (desktop-buffer-args-list): New variable.
15542         (desktop-append-buffer-args): New function.
15543         (desktop-save): Call desktop-append-buffer-args for some buffers.
15544         (desktop-lazy-create-buffer): New function.
15545         (desktop-idle-create-buffers): New function.
15546         (desktop-read): Add message about buffers to restore lazily.
15547         (desktop-lazy-abort): New command.
15548         (desktop-clear): Call desktop-lazy-abort.
15549         (desktop-lazy-complete): New command.
15551 2005-01-06  Richard M. Stallman  <rms@gnu.org>
15553         * emacs-lisp/find-func.el (find-face-definition):
15554         Rename from find-face.
15556 2005-01-06  Kim F. Storm  <storm@cua.dk>
15558         * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
15560         * man.el (Man-xref-man-page, Man-xref-header-file)
15561         (Man-xref-normal-file): Add follow-link property.
15563 2005-01-06  Jay Belanger  <belanger@truman.edu>
15565         * calc/calc-units.el: Make sure the proper macro definitions are
15566         available when compiling.
15568 2005-01-06  Juri Linkov  <juri@jurta.org>
15570         * isearch.el (isearch-lazy-highlight-update):
15571         Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
15573 2005-01-06  Miles Bader  <miles@gnu.org>
15575         * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
15576         (isearch-lazy-highlight-face): Use new name.
15578 2005-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15580         * uniquify.el (uniquify-rationalize-file-buffer-names):
15581         Re-add an interactive spec.
15582         (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
15583         to the same name.
15585         * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
15586         (isearch-update, isearch-done): Adjust calls accordingly.
15588 2005-01-05  Richard M. Stallman  <rms@gnu.org>
15590         * custom.el (custom-set-variables, custom-theme-set-variables):
15591         Clarify documentation.
15593         * emacs-lisp/find-func.el (find-variable)
15594         (find-variable-other-window, find-variable-other-frame):
15595         Fix the TYPE args to find-function-read and find-function-do-it.
15596         (find-function): Doc fix.
15597         (find-function-at-point): Replace function-at-point alias.
15599 2005-01-04  Richard M. Stallman  <rms@gnu.org>
15601         * cus-face.el (custom-declare-face):
15602         Record defface in current-load-list.
15604         * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
15606         * emacs-lisp/find-func.el: Doc fixes.
15607         (find-face-regexp): New variable.
15608         (find-function-regexp-alist): New variable.
15609         (find-function-C-source): Third arg is now TYPE.
15610         (find-function-search-for-symbol): Handle general TYPE.
15611         (find-function-read, find-function-do-it): Handle general TYPE.
15612         (find-definition-noselect, find-face): New functions.
15613         (function-at-point): Alias deleted.
15615 2005-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15617         * battery.el (display-battery-mode): Rename from display-battery.
15618         Handle the case where it gets turned off.
15620 2005-01-04  Richard M. Stallman  <rms@gnu.org>
15622         * cus-edit.el (customize): Make :link point to user doc.
15624         * man.el (Man-fontify-manpage): Turn off undo generation.
15626         * add-log.el (change-log-font-lock-keywords): Don't match just "From".
15628 2005-01-04  Andreas Schwab  <schwab@suse.de>
15630         * files.el (insert-directory): Only look for error lines in
15631         inserted text.  Don't move too far after processing --dired markers.
15633 2005-01-04  Richard M. Stallman  <rms@gnu.org>
15635         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
15636         Don't expand if the character is @, period, dash, etc.
15637         (define-mail-abbrev): Quote names that contain problem characters.
15639 2005-01-04  Thien-Thi Nguyen  <ttn@gnu.org>
15641         * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
15643 2005-01-03  Richard M. Stallman  <rms@gnu.org>
15645         * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
15646         (query-replace-highlight, query-replace-lazy-highlight)
15647         (query-replace): Definitions moved up.  Doc fix.
15649 2005-01-03  Richard M. Stallman  <rms@gnu.org>
15651         * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
15652         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
15653         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
15654         (lazy-highlight-face): Rename from isearch-lazy-...
15655         Change all references to them.
15657 2005-01-03  Luc Teirlinck  <teirllm@auburn.edu>
15659         * cus-edit.el (custom-file): Doc fix for defcustom.
15660         (custom-file): The function no longer sets the variable
15661         `custom-file' to its return value.
15663         * startup.el (command-line): No longer load `custom-file'.
15665 2005-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15667         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
15669         * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
15670         Don't confuse module-prefixed identifiers for labels.
15671         Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
15673 2005-01-02  Richard M. Stallman  <rms@gnu.org>
15675         * files.el (basic-save-buffer-1): Fix previous change.
15677         * loadhist.el (file-loadhist-lookup): New function.
15678         (file-provides, file-requires): Use it.
15680         * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
15681         instead of calculating the right size.
15683 2005-01-02  Karl Chen  <quarl@cs.berkeley.edu>  (tiny change)
15685         * vc-svn.el (vc-svn-diff): Stay local if possible.
15687 2005-01-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15689         * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
15691         * files.el (hack-local-variables): Fix last change.
15693 2005-01-02  Jay Belanger  <belanger@truman.edu>
15695         * calc/calc-yank.el (calc-edit-top): New variable.
15696         (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
15697         object.  Change header properties.
15698         (calc-edit-finish, calc-edit-finish-stack-object)
15699         (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
15700         edited object.
15701         * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
15702         for the beginning of the edited object.
15703         * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
15704         for the beginning of the edited object.
15705         * calc/calc-prog.el (calc-edit-macro-finish-edit)
15706         (calc-finish-formula-edit, calc-macro-repeats)
15707         (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
15708         (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
15709         beginning of the edited object.
15710         (calc-user-define-edit): Change the header for editing macros.
15711         Remove unnecessary variable.
15713 2005-01-01  Jay Belanger  <belanger@truman.edu>
15715         * calc/calc-yank.el (calc-edit-mode): Change default header.
15716         (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
15717         * calc/calc-store.el (calc-edit-variable): Change title to match new
15718         header.
15719         * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
15720         mode to match new header.
15721         (calc-user-define-edit): Change titles to include names of commands.
15722         (calc-finish-formula-edit): Adjust to handle new header.
15723         (calc-finish-macro-edit): Remove.
15724         (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
15725         (calc-edit-macro-command, calc-edit-macro-command-type)
15726         (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
15727         (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
15728         (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
15729         (calc-edit-macro-finish-edit): New functions.
15730         (calc-user-define-edit): Use new functions to edit named calc macros.
15732 2005-01-01  Stefan  <monnier@iro.umontreal.ca>
15734         * files.el (hack-local-variables): Cleanup prefix/suffix matching.
15736         * ses.el (copy-region-as-kill): Deactivate mark.
15738 2005-01-01  Richard M. Stallman  <rms@gnu.org>
15740         * replace.el (occur-1): If the output buffer is also an input,
15741         don't kill it, rename it.
15743         * faces.el (set-face-background, set-face-foreground): Doc fix.
15745         * cus-face.el (custom-face-attributes): Fix :help-echo strings
15746         for :foreground and :background.
15748         * dired.el (dired-view-command-alist): Variable deleted.
15749         (dired-view-file, dired-mouse-find-file-other-window):
15750         Delete the code to use it.
15752 2005-01-01  Kim F. Storm  <storm@cua.dk>
15754         * image.el (insert-sliced-image): Use t for line-height property.
15756 See ChangeLog.11 for earlier changes.
15758 ;; Local Variables:
15759 ;; coding: iso-2022-7bit
15760 ;; End:
15762     Copyright (C) 2005 Free Software Foundation, Inc.
15763   Copying and distribution of this file, with or without modification,
15764   are permitted provided the copyright notice and this notice are preserved.
15766 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1