*** empty log message ***
[emacs.git] / lisp / ChangeLog
blobf411310ab29ac61a7a2ece4b0d11f32847334f74
1 2005-08-25  Juanma Barranquero  <lekktu@gmail.com>
3         * obsolete/bg-mouse.el: Move to obsolete/ from term/.
4         Silence warning about non-existent variable.
6 2005-08-25  Richard M. Stallman  <rms@gnu.org>
8         * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
9         Rename "Describe Key" to "Describe Key or Mouse Operation".
11         * mail/mailalias.el (build-mail-aliases): Delete comments
12         from the contents before processing them.
14         * isearch.el (isearch-edit-string): Erase the Search prompt
15         if user enters an empty string and there is no default.
17         * comint.el (comint-file-name-prefix): Add autoload.
19 2005-08-25  Joe Corneli  <jcorneli@math.utexas.edu>
21         * subr.el (play-sound): Rearrange to avoid warning.
23 2005-08-25  Carsten Dominik  <dominik@science.uva.nl>
25         * calendar/diary-lib.el (diary-modify-entry-list-string-function):
26         New hook.
27         (add-to-diary-list): Call `diary-modify-entry-list-string-function'
29 2005-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
31         * subr.el (version-separator, version-regexp-alist): New vars used by
32         version comparison funs.
33         (integer-list-<, integer-list-=, integer-list-<=)
34         (integer-list-not-zero): New funs for integer list comparison.
35         (version-to-list, version=, version<, version<=): New funs for version
36         comparison.
38 2005-08-24  Juanma Barranquero  <lekktu@gmail.com>
40         * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
41         (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
42         time to silence the byte-compiler.
44         * ibuffer.el (ibuffer-compile-make-eliding-form)
45         (ibuffer-check-formats): Use `with-no-warnings' to hide references
46         to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
47         so it's silly to get warnings for it).
48         (ibuffer-auto-mode, ibuffer-cached-filter-formats)
49         (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
50         (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
51         (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
52         (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
53         (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
54         Defvar at compile time.
55         (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
56         (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
57         Declare them before use.
59         * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
60         (info-xref-good, info-xref-bad): Defvar at compile time.
62         * obsolete/mlsupport.el (filter-region, execute-monitor-command):
63         Use `let*' instead of `let'.
65         * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
66         (*mouse-y*, menu, char): Defvar at compile time.
67         (sc::menu): Declare it before use.
68         (sc::pack-one-line): Use `let', not `let*'.
70         * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
71         (mail-send-hook): Defvar at compile time.
73         * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
74         Defvar at compile time.
76         * term/sun-mouse.el (current-global-mousemap)
77         (current-local-mousemap): Declare them before use.
79 2005-08-24  Carsten Dominik  <dominik@science.uva.nl>
81         * bookmark.el (bookmark-after-jump-hook): New hook.
82         (bookmark-jump): Run `bookmark-after-jump-hook'.
84 2005-08-23  Juri Linkov  <juri@jurta.org>
86         * faces.el (minibuffer-prompt): Doc fix.
88 2005-08-23  Juanma Barranquero  <lekktu@gmail.com>
90         * progmodes/xscheme.el: Trivial changes to silence warnings.
91         (xscheme-previous-mode, xscheme-previous-process-state):
92         Add defvars.
93         (xscheme-last-input-end, xscheme-process-command-line)
94         (xscheme-process-name, xscheme-buffer-name)
95         (xscheme-expressions-ring-max, xscheme-expressions-ring)
96         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
97         (xscheme-control-g-synchronization-p)
98         (xscheme-control-g-disabled-p, xscheme-string-receiver)
99         (default-xscheme-runlight, xscheme-runlight)
100         (xscheme-runlight-string, xscheme-process-filter-state)
101         (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
102         Move to beginning of file.
103         (scheme-interaction-mode-commands-alist)
104         (scheme-interaction-mode-map, scheme-debugger-mode-map): Declare
105         them before use.  Note: the initialization code for the variables
106         has not been moved because it uses functions that reference the
107         variables.
108         (xscheme-control-g-message-string, xscheme-process-filter-alist)
109         (xscheme-prompt-for-expression-map): Declare them before use.
110         (scheme-debugger-mode-commands): "?\ " -> "?\s".
112 2005-08-23  Ed Swarthout  <ed.swarthout@gmail.com>  (tiny change)
114         * hexl.el (hexl-print-current-point-info): Fix simple spelling
115         error.
117 2005-08-22  Juri Linkov  <juri@jurta.org>
119         * faces.el (set-face-underline): Delete this duplicate function
120         and make an obsolete alias to set-face-underline-p.
121         (set-face-underline-p): Use docstring of set-face-underline.
122         (describe-face): Create hyperlink to parent face.
124         * info.el (Info-insert-dir): Use save-excursion around
125         insert-buffer-substring.
126         (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
127         (Info-escape-percent): Delete function.
128         (Info-fontify-node): Replace Info-escape-percent by
129         replace-regexp-in-string with REP arg set to lambda that
130         duplicates `%' and preserves text properties.
132         * progmodes/compile.el (compilation-disable-input): Doc fix.
133         (define-compilation-mode): Doc fix and refill.
134         (kill-compilation): Use `mode-name' in the error message.
135         (compilation-find-file): Use `compilation-error' in the
136         read-file-name's prompt.
138 2005-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
140         * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
141         (smerge-auto-leave): Make undo re-enable the mode.
142         (debug-ignored-errors): Add the user-error of impossible resolution.
143         (smerge-resolve): Move things around a bit, in preparation for later.
144         (smerge-diff): Don't fail if the buffer has no associated file.
145         (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
146         (smerge-conflict-overlay): New function.
147         (smerge-match-conflict): Don't add text properties here.
148         (smerge-find-conflict): Instead, add an overlay here.
149         Also check for the case where we're inside a conflict already, so as to
150         obviate the need for font-lock-multiline, which is unbearably slow with
151         large conflicts and ciomplex font-lock patterns.
152         (smerge-remove-props): Remove overlay rather than text-properties.
153         (smerge-mode): Don't set font-lock-multiline.
154         Remove overlays when turned off.
156 2005-08-21  Kim F. Storm  <storm@cua.dk>
158         * ido.el (ido-ignore-item-p): Use save-match-data.
159         Bind case-fold-search to ido-case-fold locally.
161 2005-08-20  Richard M. Stallman  <rms@gnu.org>
163         * files.el (normal-mode): If font lock is on, turn it off and on.
165         * subr.el (replace-regexp-in-string): Doc fix.
167         * startup.el (command-line-1): Don't suppress startup screen
168         due to existing processes.
170         * progmodes/grep.el (grep): Bind compilation-disable-input to t.
172         * progmodes/compile.el (compilation-disable-input): Default to nil.
174 2005-08-20  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
176         * progmodes/compile.el (compilation-disable-input): New defcustom.
177         (compilation-start): If compilation-disable-input is non-nil, send
178         EOF to the compilation process.
180 2005-08-20  Eli Zaretskii  <eliz@gnu.org>
182         * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
183         Run the argument of tex-shell-cd-command through
184         convert-standard-filename, to get the correct style of slashes on
185         Windows, and enclose the result in quotes, in case the file name
186         includes whitespace or other special characters.
188 2005-08-19  Andreas Schwab  <schwab@suse.de>
190         * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
191         process.
193 2005-08-18  Luc Teirlinck  <teirllm@auburn.edu>
195         * cus-start.el (minibuffer-prompt-properties): Correct typo.
197 2005-08-18  Kim F. Storm  <storm@cua.dk>
199         * scroll-lock.el: Fix errors due to incorrect line wrapping.
201 2005-08-18  Richard M. Stallman  <rms@gnu.org>
203         * scroll-lock.el: New file.
205 2005-08-18  Thien-Thi Nguyen  <ttn@gnu.org>
207         * dired.el (dired-move-to-end-of-filename):
208         Handle fifo as rendered by "ls -lF": Don't include trailing "|".
210 2005-08-18  Kim F. Storm  <storm@cua.dk>
212         * ido.el (ido-everywhere): Fix defcustom :set function to disable
213         rather than toggle mode when custom value is nil.
214         (ido-everywhere): Fix defun doc string.
216 2005-08-17  Richard M. Stallman  <rms@gnu.org>
218         * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
219         as tag instead of "Inviolable".
221 2005-08-17  Kim F. Storm  <storm@cua.dk>
223         * windmove.el (windmove-coordinates-of-position): Remove.
224         (windmove-coordinates-of-window-position): Remove.
225         (windmove-reference-loc): Use posn-at-point instead.
227         * subr.el (insert-for-yank-1): Doc fix.
229         * ido.el (ido-enter-matching-directory): Rename from
230         ido-enter-single-matching-directory.  Change 'slash choice to
231         'only.  Add 'first choice.
232         (ido-exhibit): Adapt to above changes.
234 2005-08-16  Luc Teirlinck  <teirllm@auburn.edu>
236         * Makefile.in: Expand comment about building loaddefs.el.
238 2005-08-16  Nick Roberts  <nickrob@snap.net.nz>
240         * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
241         Comment use of defadvice.
243         * progmodes/gud.el (gud-jump): Rework for gdb-ui.
245 2005-08-15  Dan Nicolaescu  <dann@ics.uci.edu>
247         * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
248         * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
249         * progmodes/gdb-ui.el, progmodes/idlw-help.el,
250         * progmodes/idlw-shell.el, progmodes/ld-script.el,
251         * progmodes/which-func.el, ruler-mode.el, strokes.el,
252         * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
253         for backward compatibility for faces that did not appear in the
254         previous Emacs release.
256         * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
258 2005-08-15  Kim F. Storm  <storm@cua.dk>
260         * emulation/cua-base.el (cua-delete-region): Return t if
261         deleted region was non-empty.
262         (cua-replace-region): Inhibit overwrite-mode for
263         self-insert-command if replaced region was non-empty.
264         (cua--explicit-region-start, cua--status-string): Make them
265         buffer-local at top-level...
266         (cua-mode): ...rather than when mode is enabled.
268 2005-08-15  Thien-Thi Nguyen  <ttn@gnu.org>
270         * progmodes/vhdl-mode.el (vhdl-emacs-21):
271         Set t for Emacs 21, 22, and so on.
273 2005-08-15  David Ponce  <david@dponce.com>
275         * tree-widget.el Update Commentary header.
276         (tree-widget-theme): Doc fix.
277         (tree-widget-space-width): New option.
278         (tree-widget-image-properties): Look up in the default theme too.
279         (tree-widget--cursors): Only for images with arrow pointer shape.
280         (tree-widget-lookup-image): Pointer shape is hand by default.
281         (tree-widget-icon): Rename generic icon widget from
282         `tree-widget-control'.
283         (tree-widget-*-icon): Rename from `tree-widget-*-control' and
284         derive from `tree-widget-icon'.
285         (tree-widget-handle): Improve default look and feel of the text
286         representation.
287         (tree-widget): Rename :*-control properties to :*-icon properties.
288         Add :action and :help-echo properties.
289         (tree-widget-after-toggle-functions): Move.
290         (tree-widget-close-node, tree-widget-open-node): Remove.
291         (tree-widget-before-create-icon-functions): New hook.
292         (tree-widget-value-create): Update to allow customization of icons
293         and nodes at run-time via that new hook.
294         (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
295         (tree-widget-icon-action, tree-widget-icon-help-echo)
296         (tree-widget-action, tree-widget-help-echo): New functions.
298 2005-08-15  Kim F. Storm  <storm@cua.dk>
300         * ido.el (ido-buffer-internal): Use with-no-warnings.
301         (ido-make-merged-file-list): Use while-no-input.
303 2005-08-15  Richard M. Stallman  <rms@gnu.org>
305         * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
306         (flyspell-large-region): Fix doc and custom type.
308 2005-08-14  Richard M. Stallman  <rms@gnu.org>
310         * files.el (interpreter-mode-alist): Doc fix.
312         * mail/rmail.el (rmail-nonignored-headers): New variable.
313         (rmail-clear-headers): Use it.
314         (rmail-reply): Better handling of mail-followup-to header.
316         * progmodes/sh-script.el (sh-font-lock-keywords-var):
317         Rename variable from sh-font-lock-keywords.  In the `shell' entry,
318         don't try to refer to executable-font-lock-keywords.
319         (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
320         (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
321         (sh-font-lock-keywords): Append executable-font-lock-keywords here.
322         (sh-mode): Set comment-start-skip, local-abbrev-table,
323         imenu-case-fold-search.
324         (sh-set-shell): Don't set them here.
325         (sh-feature): Simplify.  Get rid of the eval-a-variable feature.
326         Don't cache the results in the original alist; don't ever modify
327         that alist.
329         * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
331         * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
332         empty.
334 2005-08-15  Andreas Schwab  <schwab@suse.de>
336         * desktop.el: Put autoload cookie at risky-local-variable declarations.
338         * dired.el, info.el, mail/rmail.el: Revert last change.
340 2005-08-14  Thien-Thi Nguyen  <ttn@gnu.org>
342         * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
343         modification in `eval-after-load' form.
344         * info.el: Likewise.
345         * mail/rmail.el: Likewise.
347 2005-08-14  Juri Linkov  <juri@jurta.org>
349         * progmodes/compile.el (compilation-mode-font-lock-keywords):
350         Remove highlighting of "Compilation started".  Highlight only
351         the word "finished" in "Compilation finished".  Add highlighting
352         of "interrupt", "killed", "terminated" and the exit code.
353         (compilation-start): Add newline after header.  Use exactly the
354         same time stamp format as the finishing message.
355         (compilation-mode-map): Add ellipsis to "Search Files (grep)".
357         * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
358         (grep-mode-font-lock-keywords): Don't highlight "Grep started".
359         Add highlighting of "interrupt", "killed", "terminated".
361         * delsel.el (delete-selection-pre-hook): If overwrite-mode is
362         enabled and the current command is self-insert-command, call it
363         explicitly with overwrite-mode bound to nil, to not allow it
364         to delete the character after the selected region.
366 2005-08-12  Matt Hodges  <MPHodges@member.fsf.org>
368         * emacs-lisp/eldoc.el: Add move-beginning-of-line,
369         move-end-of-line, end-of-line, and beginning-of-line to the list
370         of commands after which the echo area is updated.
372 2005-08-12  Eli Zaretskii  <eliz@gnu.org>
374         * cus-edit.el (custom-save-all, custom-save-delete):
375         Bind recentf-exclude to exclude custom-file.
377 2005-08-12  Ehud Karni  <ehud@unix.mvs.co.il>
379         * mail/rmailsum.el (rmail-summary-end-of-message): New command
380         to go to the bottom of the mail message.  Added to
381         `rmail-summary-mode-map' with key "/".
382         (rmail-summary-show-message): New (internal) function for use by
383         both `rmail-summary-beginning/end-of-message'.
384         (rmail-summary-beginning-of-message): Change to use
385         rmail-summary-show-message.
387         * mail/rmail.el (rmail-end-of-message): New command to go to the
388         end of the current message.  Added to `rmail-mode-map' with key "/".
389         (rmail-beginning-of-message): Fix to work as documented.
390         (rmail-mode): Change documentation.
392         * progmodes/compile.el (compilation-start): Add the line
393         "Compilation started" with compilation start time.
394         (compilation-mode-font-lock-keywords): Add `started' to keywords.
396 2005-08-11  Luc Teirlinck  <teirllm@auburn.edu>
398         * menu-bar.el (menu-bar-options-menu): Standardize capitalization
399         of menu items.
401 2005-08-11  Richard M. Stallman  <rms@gnu.org>
403         * simple.el (pop-global-mark): Reverse test of widen-automatically.
405         * battery.el (battery-status-function): Don't use ignore-errors.
407 2005-08-11  Lute Kamstra  <lute@gnu.org>
409         * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
410         define-obsolete-variable-alias.
412 2005-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
414         * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
415         (ange-ftp-send-cmd): Revert last change, and expand
416         the comment explaining the problem.
418 2005-08-10  Luc Teirlinck  <teirllm@auburn.edu>
420         * ldefs-boot.el: Update.
422         * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
423         item to "Time, Load and Mail".  Change help echo text.
425         * time.el (display-time-use-mail-icon, display-time-format)
426         (display-time-string-forms): Shorten first line of docstrings.
428 2005-08-10  Lars Hansen  <larsh@soem.dk>
430         * desktop.el (desktop-buffer-mode-handlers):
431         Make non-customizable. Add autoload cookie.  Change initial value to
432         nil; add elements in respective modules instead.  Fix doc string.
433         (desktop-load-file): New function.
434         (desktop-minor-mode-handlers): New autoloaded variable.
435         (desktop-create-buffer): Call minor mode handlers.
436         Use desktop-load-file to load major and minor mode modules prior to
437         checking for a handler.
438         (desktop-save): Don't add nil to desktop-minor-modes for minor
439         modes with nil function in desktop-minor-mode-table.  Don't delete
440         desktop file before rewriting it.
441         (desktop-locals-to-save): Add autoload cookie.  Don't make
442         automatically buffer-local.  Add variables column-number-mode,
443         size-indication-mode, indent-tabs-mode,
444         indicate-buffer-boundaries, indicate-empty-lines and
445         show-trailing-whitespace.
446         (desktop-clear): Allow desktop-clear-preserve-buffers to contain
447         regexps. Don't use desktop-clear-preserve-buffers-regexp.
448         (desktop-clear-preserve-buffers-regexp): Delete.
449         (desktop-clear-preserve-buffers): Update initial value and docstring.
450         (desktop-save-buffer): Fix doc string.
452         * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
453         (hilit-chg-desktop-restore): New function.
454         (highlight-changes-mode): Add highlight-changes-mode to
455         desktop-locals-to-save.
457         * dired.el: Add handler to desktop-buffer-mode-handlers.
458         (dired-restore-desktop-buffer): Remove autoload cookie.
459         (dired-mode): Add autoload cookie.
461         * info.el: Add handler to desktop-buffer-mode-handlers.
462         (Info-restore-desktop-buffer): Remove autoload cookie.
463         (Info-mode): Add autoload cookie.
465         * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
466         (mh-restore-desktop-buffer): Remove autoload cookie.
467         (mh-folder-mode): Add autoload cookie.
469         * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
470         (rmail-restore-desktop-buffer): Remove autoload cookie.
472 2005-08-11  Masatake YAMATO  <jet@gyve.org>
474         * hexl.el (hexl-address-region):
475         (hexl-ascii-region, hexl-font-lock-keywords):
476         (hexl-highlight-line-range): Use the term "region"
477         instead of "area" for consistency with the other symbols
478         defined in hexl.el.
480 2005-08-09  Luc Teirlinck  <teirllm@auburn.edu>
482         * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
483         correct group: it is set with `menu-bar-make-mm-toggle' (pointed
484         out by Juri Linkov).  Add `display-battery-mode'.
486 2005-08-09  Juri Linkov  <juri@jurta.org>
488         * progmodes/compile.el (compilation-mode-font-lock-keywords):
489         Remove `-text' from face variable names.
490         (compilation-error-file-name, compilation-warning-file-name)
491         (compilation-info-file-name): Delete faces.
492         (compilation-line-number, compilation-column-number):
493         Remove face underlining.
494         (compilation-message-face): Set to `underline' value by default.
495         (compilation-error-face, compilation-warning-face)
496         (compilation-info-face): Remove `-file-name' from face names.
497         (compilation-error-text-face, compilation-warning-text-face)
498         (compilation-info-text-face): Delete face variables.
499         (compilation-text-face): Delete function.
501         * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
502         (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
503         (grep-error-face): Set to `compilation-error' instead of
504         `compilation-error-face' (which is redefined to `grep-hit-face' in
505         grep buffers).
506         (grep-mode-font-lock-keywords): Remove `-text' from face variable
507         names.  Use `grep-error-face' instead of `compilation-error-text-face'.
509         * dired-aux.el (dired-do-query-replace-regexp):
510         Use `query-replace-read-args'.
512         * replace.el (query-replace-read-from, query-replace-read-to)
513         (query-replace-read-args): Rename arg `string' to `prompt'.
515         * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
517 2005-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
519         * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
520         uploading files.
521         (ange-ftp-canonize-filename): Handle file names beginning with ~
522         correctly.
524 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
526         * textmodes/fill.el (canonically-space-region)
527         (fill-context-prefix, fill-french-nobreak-p)
528         (fill-delete-newlines, fill-comment-paragraph)
529         (justify-current-line): "?\ " -> "?\s".
531 2005-08-09  Ben North  <ben@redfrontdoor.org>  (tiny change)
533         * textmodes/fill.el (fill-nonuniform-paragraphs):
534         Improve argument/docstring consistency.
536 2005-08-09  Richard M. Stallman  <rms@gnu.org>
538         * textmodes/ispell.el (ispell-word): More fboundp checks.
540         * files.el (find-file-noselect): Don't call set-buffer-major-mode.
541         (find-file-noselect-1): Call it here, only if RAWFILE.
542         (normal-mode): Always set some major mode.
543         (save-some-buffers-action-alist): Change some explanation strings.
544         (file-name-non-special): In the `quote' method, use unwind-protect.
546 2005-08-09  Magnus Henoch  <mange@freemail.hu>
548         * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
549         (ispell-have-aspell-dictionaries): New variable.
550         (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
551         (ispell-get-aspell-config-value): New function.
552         (ispell-aspell-find-dictionary): New function.
553         (ispell-aspell-add-aliases): New function.
554         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
555         appropriate.  Don't look for ispell dictionaries if we use aspell.
556         (ispell-menu-map): Don't build a submenu of dictionaries.
558 2005-08-09  Richard M. Stallman  <rms@gnu.org>
560         * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
561         (sql-read-passwd): Use read-passwd.
563         * progmodes/idlw-toolbar.el (idlwave-toolbar)
564         (idlwave-toolbar-is-possible): Add defvars.
566         * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
567         Avoid warnings.
569         * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
570         (idlwave-system-class-info, idlwave-executive-commands-alist):
571         Use defvar.
573         * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
575         * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
576         Avoid warnings.
578         * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
579         and content-type: headers.
581         * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
583         * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
584         and rename some of them to be more self-explanatory.
586         * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
588         * startup.el (command-line-1): Implement -scriptload.
590         * replace.el (occur-engine): Initial *Occur* output not undoable.
592         * menu-bar.el (menu-bar-file-menu): Rename some menu items
593         and improve help strings.
595         * isearch.el (isearch-repeat): When changing direction,
596         mark search successful.
598         * ediff-init.el: Use (featurep 'xemacs).
600         * comint.el (send-invisible): Identify buffer, if not selected.
602         * align.el: Delete autoload for c-guess-basic-syntax.
604 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
606         * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
607         Improve argument/docstring consistency.  Doc fixes.
608         (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
609         (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
610         (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
611         (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
612         (r2bv-organization, r2bv-pages, r2bv-primary-author)
613         (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
614         (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
615         Defvar at compile time.
617 2005-08-09  Juri Linkov  <juri@jurta.org>
619         * info.el: Replace `info' with upper-case `Info' where appropriate.
620         (info-title-1, info-title-2, info-title-3, info-title-4)
621         (info-menu-header): Move up face definitions.
622         (info-menu-star): Rename from `info-menu-5'.
623         (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
624         (Info-fontify-visited-nodes): Fix docstring.
625         (Info-hide-note-references): Fix docstring.
626         (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
627         menu items in the same way as on cross-references.
628         (info-apropos): Fix sorting order and formatting to be like in the
629         stand-alone Info browser.  Display error messages for 1 sec.
630         (Info-mode-map): Move down `c' key binding.  Bind `^' to `Info-up'.
631         (Info-mode-menu): Remove item for `Info-search-case-sensitively'
632         from the menu bar.
633         (Info-insert-dir): Restore point after calling
634         `insert-buffer-substring'.
636 2005-08-08  Richard M. Stallman  <rms@gnu.org>
638         * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
639         (recompute-lucid-menubar): Add defvars.
641         * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
643         * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
645         * net/net-utils.el (run-dig): Rename from `dig'.
647         * play/gametree.el (gametree-mode): Use make-local-variable,
648         not make-variable-buffer-local.
650         * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
652         * ansi-color.el (ansi-color-make-extent)
653         (ansi-color-set-extent-face): Use fboundp, not functionp.
655         * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
656         not make-variable-buffer-local.
658         * bookmark.el (Info-current-file): Add defvar.
659         (bookmark-jump-noselect): Use with-no-warnings.
661         * completion.el (c-mode-map, fortran-mode-map): Add defvars.
663         * ebuff-menu.el (Helper-return-blurb): Add defvar.
665         * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
667         * find-file.el (ada-procedure-start-regexp)
668         (ada-package-start-regexp): Add defvars.
670         * info.el (Info-insert-dir): Use insert-buffer-substring.
672         * xml.el (xml-att-def-re): Add defvar.
674         * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
675         calling convention.
677         * subr.el (while-no-input): Return t if there is input.
679 2005-08-08  Luc Teirlinck  <teirllm@auburn.edu>
681         * cus-start.el (all): Add `overflow-newline-into-fringe'.
683 2005-08-08  Juanma Barranquero  <lekktu@gmail.com>
685         * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
686         (scheme-prev-l/c-dir/file): Fix typos in docstrings.
688 2005-08-08  Emilio C. Lopes  <eclig@gmx.net>
690         * cmuscheme.el (scheme-start-file): Replace reference to
691         `user-emacs-directory' by "~/.emacs.d/".
693 2005-08-08  Thien-Thi Nguyen  <ttn@gnu.org>
695         * info.el (Info-dir-remove-duplicates): Avoid case folding
696         in loop; instead, keep downcased strings for comparison.
697         Suggested by Helmut Eller.
699 2005-08-07  Michael Albinus  <michael.albinus@gmx.de>
701         Sync with Tramp 2.0.50.
703         * tramp.el: Remove defvar of `last-coding-system-used' in the
704         XEmacs case; not necessary anymore.
705         (tramp-user-regexp): Allow "@" as part of user name.
706         (tramp-handle-set-visited-file-modtime)
707         (tramp-handle-insert-file-contents)
708         (tramp-handle-write-region): No special handling for
709         `last-coding-system-used, because this is done in
710         `tramp-accept-process-output' now.
711         (tramp-accept-process-output): New defun.
712         (tramp-process-one-action, tramp-process-one-multi-action)
713         (tramp-wait-for-regexp, tramp-wait-for-output)
714         (tramp-discard-garbage-erase-buffer): Call it.  Reported by David
715         Howells <dhowells@redhat.com>.
716         (clear-visited-file-modtime): Defadvice removed.  The check for
717         unset buffer's modtime does not need to be based on
718         `tramp-buffer-file-attributes'.  Suggested by RMS.
719         (tramp-message): Insert "\n" if not being at beginning of line.
720         (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
721         sequence with same logic.
722         (tramp-completion-handle-expand-file-name): Discard call of
723         `tramp-drop-volume-letter'.  It is not necessary, and there have
724         been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
725         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
726         (tramp-do-copy-or-rename-file-out-of-band): Transfer message
727         should always be visible.
728         (tramp-handle-insert-directory, tramp-setup-complete)
729         (tramp-set-process-query-on-exit-flag)
730         (tramp-append-tramp-buffers): Pacify byte-compiler.
731         (tramp-bug): Delete non-existing variables from list.
732         Apply `tramp-load-report-modules' as pre-hook.
733         Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
734         `shell-prompt-pattern' because of non-7bit characters.
735         Reported by Sebastian Luque <sluque@mun.ca>.
736         (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
737         (tramp-match-string-list): Remove function.
738         (tramp-wait-for-regexp): Remove call of that function.
739         Suggested by Kim F. Storm <storm@cua.dk>.
740         (tramp-set-auto-save-file-modes): Use octal integer code #o600
741         instead of octal character code ?\600.  The latter resulted in a
742         syntax error with XEmacs.
744         * tramp-smb.el: Remove defvar of `last-coding-system-used' in the
745         XEmacs case; not necessary anymore.
746         (tramp-smb-handle-write-region): No special handling for
747         `last-coding-system-used, because this is done in
748         `tramp-accept-process-output' now.
749         (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
751 2005-08-06  Luc Teirlinck  <teirllm@auburn.edu>
753         * wid-edit.el (widget-choice-value-create):
754         Unconditionally respect user choice.  Set :explicit-choice back to nil
755         when no longer needed.
756         (widget-choice-action): Unconditionally respect user choice.
757         Eliminate :explicit-choice-value.
759         * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
761         * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
762         with `indicate-empty-lines' and `indicate-buffer-boundaries'.
763         (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
764         running new function `toggle-indicate-empty-lines'.
765         Rename "Customize" item to "Customize fringe".
766         Rename "Indicators" item to "Buffer boundaries" and change help echo.
767         (menu-bar-showhide-fringe-ind-menu): Change several help echos.
768         Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
769         Delete "Empty lines only" item.
770         (menu-bar-showhide-fringe-ind-customize): New function.
771         (menu-bar-showhide-fringe-ind-mixed)
772         (menu-bar-showhide-fringe-ind-box)
773         (menu-bar-showhide-fringe-ind-right)
774         (menu-bar-showhide-fringe-ind-left)
775         (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
776         instead of `fringe-indicators'.
778 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
780         * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
781         Change the date of last update.
783 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
785         * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
786         (viper-exec-yank, viper-put-back): Don't display modification msg
787         if in the minibuffer.
789         * viper-init.el (viper-replace-overlay-cursor-color)
790         (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
791         Make variables frame local.
793         * viper-util.el (viper-append-filter-alist): Use append instead of
794         nconc.
796         * viper.el (viper-vi-state-mode-list)
797         (viper-emacs-state-mode-list): Move help-mode and
798         completion-list-mode from the first list to the second.
799         (viper-mode): Docstring.
800         (viper-go-away, viper-non-hook-settings): Don't localize
801         minor-mode-alist in newer Emacsen.  Add advice to
802         set-cursor-color.  Don't bind "\C-c\\".
804 2005-08-06  Emilio C. Lopes  <eclig@gmx.net>
806         * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
807         (scheme-macro-expand-command): New user options.
808         (scheme-trace-procedure, scheme-expand-current-form): New commands.
809         (scheme-form-at-point, scheme-start-file)
810         (scheme-interactively-start-process): New functions.
811         (scheme-get-process): New function, extracted from `scheme-proc'.
812         (run-scheme): Call `scheme-start-file' to get start file, and pass
813         it to `make-comint'.
814         (switch-to-scheme, scheme-proc):
815         Call `scheme-interactively-start-process' if no Scheme buffer/process
816         is available.
818 2005-08-06  Juri Linkov  <juri@jurta.org>
820         * progmodes/compile.el (compilation-mode-font-lock-keywords):
821         Use `compilation-text-face', `compilation-info-text-face' and
822         `compilation-error-text-face' instead of `font-lock-keyword-face'.
823         (compilation-error): New face.
824         (compilation-error-file-name): Inherit from
825         `compilation-error' instead of `font-lock-warning-face'.
826         (compilation-warning-file-name): Inherit from
827         `compilation-warning' instead of `font-lock-warning-face'.
828         (compilation-info, compilation-error-file-name)
829         (compilation-warning-file-name, compilation-info-file-name)
830         (compilation-line-number, compilation-column-number): Doc fix.
831         (compilation-error-text-face, compilation-warning-text-face)
832         (compilation-info-text-face): New face variables.
833         (compilation-line-face, compilation-column-face)
834         (compilation-enter-directory-face)
835         (compilation-leave-directory-face): Doc fix.
836         (compilation-text-face): New function.
838         * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
839         instead of 1 to display binary file names as info file links.
840         (grep-error-face): Use `compilation-error-face' instead of
841         `font-lock-keyword-face'.
842         (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
843         and `compilation-warning-text-face' instead of
844         `font-lock-keyword-face'.  Use `compilation-error-text-face'
845         instead of `grep-error-face'.
847 2005-08-05  Kenichi Handa  <handa@m17n.org>
849         * international/code-pages.el: Add autoload cookies for all coding
850         systems.
852 2005-08-04  Luc Teirlinck  <teirllm@auburn.edu>
854         * cus-start.el (all): Put undo.c where it alphabetically belongs.
856 2005-08-04  Juri Linkov  <juri@jurta.org>
858         * progmodes/compile.el (compilation-mode-map):
859         * progmodes/grep.el (grep-mode-map):
860         Bind TAB to `compilation-next-error' and [backtab] to
861         `compilation-previous-error'.
863         * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
864         matching line numbers, column numbers and their ranges with regexp
865         matching only line numbers.
866         (grep-context-face): New face variable.
867         (grep-mode-font-lock-keywords): Use it.
869         * faces.el (read-face-name): Delete duplicate faces.
871 2005-08-02  Juanma Barranquero  <lekktu@gmail.com>
873         * thumbs.el (thumbs-find-image): Don't make variables
874         automatically buffer local.
875         (thumbs-current-tmp-filename, thumbs-current-image-filename)
876         (thumbs-image-num): Make automatically buffer local.
877         (thumbs-show-thumbs-list): Use `make-local-variable', not
878         `make-variable-buffer-local'.
879         (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
881         * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
882         (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
883         (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
884         (bother, bye, canyou, chatlst, continue, deathlst, describe)
885         (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
886         (feelings-about, foullst, found, hello, history, howareyoulst)
887         (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
888         (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
889         (neglst, obj, object, owner, please, problems, qlist)
890         (random-adjective, relation, remlst, repetitive-shortness)
891         (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
892         (shortlst, something, sportslst, stallmanlst, states, subj)
893         (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
894         (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
895         Defvar at compile time.
897         * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
898         not `make-variable-buffer-local'.
900 2005-08-02  Kim F. Storm  <storm@cua.dk>
902         * emulation/cua-rect.el (cua--highlight-rectangle): Only show
903         rectangle overlay in selected window.
905 2005-08-01  Luc Teirlinck  <teirllm@auburn.edu>
907         * cus-start.el (all): Put `indicate-empty-lines' in fringe group
908         instead of display group.  Make `indicate-buffer-boundaries'
909         customizable through Custom.
911 2005-08-01  Juanma Barranquero  <lekktu@gmail.com>
913         * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
914         (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
915         (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
916         (gdb-put-string): Fix typos in docstrings.
918 2005-08-01  Nick Roberts  <nickrob@snap.net.nz>
920         Update copyright notices of files in progmodes directory for
921         release of Emacs 22.1.
923         * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
925         * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
926         Don't barf if the GUD buffer has been killed.
928 2005-08-01  Kim F. Storm  <storm@cua.dk>
930         * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
932 2005-07-29  Stefan Monnier  <monnier@iro.umontreal.ca>
934         * simple.el (next-error-follow-minor-mode):
935         make-variable-buffer-local -> make-local-variable.
937         * emacs-lisp/cl-extra.el: Require CL also when compiling.
939         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
940         (byte-compile-form-make-variable-buffer-local): New functions to warn
941         about misuses of make-variable-buffer-local where make-local-variable
942         was meant.
944 2005-07-29  Juanma Barranquero  <lekktu@gmail.com>
946         * bs.el (bs-attributes-list): Doc fix.
947         (bs): Update url-link.
949         * desktop.el (desktop-save-buffer): Fix typos in docstring.
950         (desktop-load-default): Simplify.
952         * ibuffer.el (ibuffer-columnize-and-insert-list)
953         (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
954         (ibuffer-unmark-all, ibuffer-toggle-marks)
955         (ibuffer-unmark-forward, ibuffer-unmark-backward)
956         (ibuffer-compile-make-format-form, ibuffer-format-column)
957         (ibuffer-current-buffers-with-marks)
958         (ibuffer-update-title-and-summary): "?\ " -> "?\s".
959         (ibuffer): Doc fix.
960         (ibuffer-mode): Fix typo in docstring.
961         (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
962         with `define-obsolete-variable-alias'.
963         (ibuffer-elide-long-columns): Mark as obsolete.  Doc fix.
965 2005-07-29  Kenichi Handa  <handa@m17n.org>
967         * international/mule-cmds.el (select-message-coding-system):
968         Be sure to use LF for end-of-line.  If no coding system is decided,
969         return iso-8859-1-unix.
971 2005-07-28  Stefan Monnier  <monnier@iro.umontreal.ca>
973         * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
974         (ange-ftp-pending-error-line): New vars.
975         (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
976         to handle the non-fatal no-route-to-host messages.
977         (internal-ange-ftp-mode): Make the no-match regexp more efficient.
979 2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
981         * isearch.el (isearch-mode-map, isearch-other-meta-char)
982         (isearch-quote-char, isearch-printing-char)
983         (isearch-text-char-description): "?\ " -> "?\s".
984         (isearch-lazy-highlight-cleanup)
985         (isearch-lazy-highlight-initial-delay)
986         (isearch-lazy-highlight-interval)
987         (isearch-lazy-highlight-max-at-a-time)
988         (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
989         Declare with define-obsolete-*-alias macros.
990         (isearch-forward): Fix typo in docstring.
991         (search-invisible, search-ring-yank-pointer)
992         (regexp-search-ring-yank-pointer): Doc fixes.
994         * recentf.el (recentf-menu-append-commands-p): Declare with
995         `define-obsolete-variable-alias'.
996         (recentf-max-saved-items, recentf-menu-filter)
997         (recentf-arrange-by-rule-subfilter): Doc fixes.
998         (recentf-menu-append-commands-flag)
999         (recentf-initialize-file-name-history, recentf-expand-file-name)
1000         (recentf-clear-data): Fix typos in docstrings.
1002 2005-07-28  Nick Roberts  <nickrob@snap.net.nz>
1004         * progmodes/gdb-ui.el: Smarten comments.
1005         (gdb-info-breakpoints-custom): Use nowarn when finding file.
1007 2005-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
1009         * term/apollo.el (terminal-init-apollo): New function containing
1010         all former top level forms in the file.
1011         * term/bobcat.el (terminal-init-bobcat):
1012         * term/cygwin.el (terminal-init-cygwin):
1013         * term/iris-ansi.el (terminal-init-iris-ansi):
1014         * term/linux.el (terminal-init-linux):
1015         * term/news.el (terminal-init-news):
1016         * term/rxvt.el (terminal-init-rxvt):
1017         * term/sun.el (terminal-init-sun):
1018         * term/tvi970.el (terminal-init-tvi970):
1019         * term/vt100.el (terminal-init-vt100):
1020         * term/vt102.el (terminal-init-vt102):
1021         * term/vt125.el (terminal-init-vt125):
1022         * term/vt200.el (terminal-init-vt200):
1023         * term/vt201.el (terminal-init-vt201):
1024         * term/vt220.el (terminal-init-vt220):
1025         * term/vt240.el (terminal-init-vt240):
1026         * term/vt300.el (terminal-init-vt300):
1027         * term/vt320.el (terminal-init-vt320):
1028         * term/vt400.el (terminal-init-vt400):
1029         * term/vt420.el (terminal-init-vt420):
1030         * term/wyse50.el (terminal-init-wyse50):
1031         * term/xterm.el (terminal-init-xterm): Likewise.
1033         * term/README: Describe the terminal-init-* functionality.
1035         * startup.el (command-line): After loading the terminal initialization
1036         file call the corresponding terminal initialization function.
1038 2005-07-27  Kenichi Handa  <handa@m17n.org>
1040         * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
1041         negative.
1043         * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
1044         (ps-mule-composition-prologue): Fix for the case that
1045         RelativeCompose is false.
1047 2005-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1049         * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
1051         * descr-text.el (describe-char): Handle the case where the list of
1052         chars is displayed in a separate frame.
1053         Be a bit more discriminating when looking for the char.
1055 2005-07-26  Juanma Barranquero  <lekktu@gmail.com>
1057         * bookmark.el (bookmark-automatically-show-annotations)
1058         (bookmark-read-annotation-text-func): Doc fixes.
1059         (bookmark-save): Improve argument/docstring consistency.
1060         (bookmark-get-bookmark, bookmark-get-bookmark-record)
1061         (bookmark-alist-from-buffer)
1062         (bookmark-upgrade-file-format-from-0)
1063         (bookmark-grok-file-format-version)
1064         (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
1065         (bookmark-read-annotation-mode)
1066         (bookmark-insert-current-bookmark, bookmark-jump)
1067         (bookmark-exit-hook): Fix typos in docstrings.
1068         (bookmark-exit-hooks): Define as obsolete alias.
1069         (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
1070         not `bookmark-exit-hooks'.  Fix docstring.
1071         (bookmark-bmenu-select): "?\ " -> "?\s".
1073 2005-07-25  Ari Roponen <arjuropo@cc.jyu.fi>  (tiny change)
1075         * startup.el (command-line): Fix typo.
1077 2005-07-24  Richard M. Stallman  <rms@gnu.org>
1079         * tooltip.el (tooltip-mode): Test emacs-basic-display,
1080         not emacs-quick-startup.
1082 2005-07-24  Juanma Barranquero  <lekktu@gmail.com>
1084         * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
1085         (reb-next-match, reb-show-subexp): Use `with-selected-window'
1086         instead of `reb-with-current-window'.
1087         (reb-prev-match): Likewise.  Also, don't move left if the search
1088         was unsuccessful.
1089         (reb-initialize-buffer): New function.
1090         (re-builder, reb-change-syntax): Use it.
1092         * man.el (Man-goto-page): Make second argument NOERROR optional.
1094 2005-07-23  Richard M. Stallman  <rms@gnu.org>
1096         * man.el (Man-bgproc-sentinel): Check here for failure to find
1097         any man page in the output, and report the error here.
1098         (Man-arguments): Make it permanent local.
1099         (Man-goto-page): New arg NOERROR.  Never kill the current buffer.
1100         (Man-mode): Pass t for NOERROR.
1102         * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
1103         (grep-mode-font-lock-keywords):
1104         Don't use compilation-...-face for messages that are not file names.
1106         * progmodes/compile.el (compilation-mode-font-lock-keywords):
1107         Don't use compilation-...-face for messages that are not file names.
1109 2005-07-22  Juri Linkov  <juri@jurta.org>
1111         * startup.el (normal-splash-screen): Update menu name.
1113         * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
1115 2005-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
1117         * term/xterm.el: Load term/rxvt if the terminal is actually an
1118         rxvt terminal.
1119         (xterm-rxvt-set-background-mode): Remove, not used anymore.
1121         * term/rxvt.el (function-key-map): Use substitute-key-definition
1122         to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
1124         * term/cygwin.el: New file.
1126 2005-07-22  Kim F. Storm  <storm@cua.dk>
1128         * image-file.el (insert-image-file, image-file-yank-handler):
1129         Fix last change to maintain a (unique) yank-handler on yanked images.
1131 2005-07-22  Eduardo Mu\e,Aq\e(Boz  <emufer@terra.es>  (tiny change)
1133         * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
1134         of the file size (as in "177B" for 177 bytes).  This happens with
1135         "ls -lh" on FreeBSD.
1137 2005-07-22  Juanma Barranquero  <lekktu@gmail.com>
1139         * hilit-chg.el (highlight-changes-global-initial-state)
1140         (highlight-compare-buffers, hilit-chg-turn-on-maybe)
1141         (hilit-chg-fixup, highlight-changes-mode):
1142         Fix typos in docstrings.
1143         (highlight-changes-global-modes, highlight-changes-rotate-faces):
1144         Doc fixes.
1146 2005-07-21  Luc Teirlinck  <teirllm@auburn.edu>
1148         * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
1149         mode function using `eval-after-load'.
1151 2005-07-21  Kim F. Storm  <storm@cua.dk>
1153         * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
1154         included when reporting an emacs crash, and tell about the DEBUG file.
1156         * image-file.el (insert-image-file): Add yank-handler.
1157         (image-file-yank-handler): Yank handler to make unique copies of
1158         images when they are yanked into a buffer next to each other.
1160 2005-07-21  Juanma Barranquero  <lekktu@gmail.com>
1162         * comint.el (comint-use-prompt-regexp, comint-send-input)
1163         (comint-source-default, comint-extract-string)
1164         (comint-get-source, comint-word, comint-completion)
1165         (comint-source, comint-prompt-read-only, comint-update-fence):
1166         Fix typos in docstrings.
1167         (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
1168         Declare with define-obsolete-*-alias macros.
1169         (comint-previous-matching-input-from-input)
1170         (comint-next-matching-input-from-input)
1171         (comint-previous-matching-input, comint-next-matching-input)
1172         (comint-forward-matching-input):
1173         Improve argument/docstring consistency.
1175         * desktop.el (desktop-clear-preserve-buffers-regexp):
1176         Also preserve the *server* buffer.
1178         * simple.el (clone-indirect-buffer): Doc fix.
1179         (fixup-whitespace, just-one-space)
1180         (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
1181         (next-error, next-error-highlight)
1182         (next-error-highlight-no-select, next-error-last-buffer)
1183         (next-error-buffer-p, next-error-find-buffer, next-error)
1184         (previous-error, next-error-no-select, previous-error-no-select)
1185         (open-line, split-line, minibuffer-prompt-width, kill-new)
1186         (binary-overwrite-mode): Fix typos in docstrings.
1187         (set-fill-column): Fix typo in message.
1189         * skeleton.el (skeleton-proxy-new): Doc fix.
1191         * strokes.el (strokes-load-hook): Doc fix.
1192         (strokes-grid-resolution, strokes-get-grid-position)
1193         (strokes-renormalize-to-grid, strokes-read-stroke)
1194         (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
1195         (strokes-global-map): Fix typos in docstrings.
1196         (strokes-help): Doc fix.  Fix help message and pass it through
1197         `substitute-command-keys'.
1199         * tempo.el (tempo-insert-prompt, tempo-interactive)
1200         (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
1201         (tempo-insert-string-functions, tempo-local-tags)
1202         (tempo-define-template, tempo-insert-template)
1203         (tempo-insert-prompt-compat, tempo-is-user-element)
1204         (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
1205         Fix typos in docstrings.
1207         * vcursor.el (vcursor-other-window, vcursor-bind-keys)
1208         (vcursor-key-bindings, vcursor-use-vcursor-map)
1209         (vcursor-find-window, vcursor-scroll-down)
1210         (vcursor-disable, vcursor-beginning-of-buffer)
1211         (vcursor-end-of-buffer): Fix typos in docstrings.
1212         (vcursor-relative-move, vcursor-get-char-count):
1213         Improve argument/docstring consistency.
1215         * version.el: "?\ " -> "?\s".
1217         * wid-edit.el (widget-default-create, widget-after-change)
1218         (widget-default-format-handler, widget-checklist-add-item)
1219         (widget-radio-add-item, widget-choose, widget-specify-secret)
1220         (widget-field-value-create, widget-field-value-get)
1221         (widget-editable-list-format-handler)
1222         (widget-editable-list-entry-create, widget-group-value-create)
1223         (widget-documentation-link-add)
1224         (widget-documentation-string-value-create): "?\ " -> "?\s".
1225         (widget-convert-text): Doc fix.
1226         (widget-narrow-to-field, widget-field-find)
1227         (widget-url-link-action, widget-emacs-library-link-action)
1228         (widget-color-notify): Fix typos in docstrings.
1230         * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
1231         (x-select-text, set-w32-system-coding-system)
1232         (w32-add-charset-info): Fix typos in docstrings.
1234         * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
1235         (cua-enable-cua-keys, cua-use-hyper-key)
1236         (cua-virtual-rectangle-edges): Fix typos in docstrings.
1237         (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
1239         * net/tramp.el (tramp-handle-load): Fix typo in error message.
1241         * emacs-lisp/re-builder.el (regexp-builder): Declare with
1242         `defalias' instead of faking it.
1244         * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
1245         (eshell-ls-missing, eshell-ls-dired-initial-args)
1246         (eshell-ls-use-in-dired): Fix typos in docstrings.
1248 2005-07-20  Kim F. Storm  <storm@cua.dk>
1250         * emulation/cua-base.el (cua-mode): Improve doc string.
1252 2005-07-20  Juanma Barranquero  <lekktu@gmail.com>
1254         * abbrev.el (expand-region-abbrevs): Doc fix.
1255         (inverse-add-mode-abbrev, inverse-add-global-abbrev):
1256         Improve argument/docstring consistency.
1258         * arc-mode.el (archive-get-descr, archive-alternate-display):
1259         Doc fixes.
1260         (archive-l-e): Improve argument/docstring consistency.
1261         (archive-tmpdir, archive-unixdate, archive-unixtime)
1262         (archive-chmod-entry): Fix typos in docstrings.
1263         (archive-unflag, archive-unflag-backwards)
1264         (archive-unmark-all-files): "?\ " -> "?\s".
1266         * buff-menu.el (Buffer-menu-unmark): Doc fix.
1267         (Buffer-menu-not-modified, Buffer-menu-execute)
1268         (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
1269         (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
1271         * composite.el (compose-string, encode-composition-rule)
1272         (compose-last-chars): Fix typos in docstrings.
1274         * desktop.el (desktop-enable, desktop-basefilename):
1275         Declare with `define-obsolete-variable-alias'.
1276         (desktop-internal-v2s): Don't quote keywords.
1277         (desktop-clear): "?\ " -> "?\s".
1279         * dired.el (dired-align-file, dired-flag-backup-files)
1280         (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
1281         (dired-listing-switches, dired-ls-F-marks-symlinks)
1282         (dired-dwim-target, dired-load-hook, dired-mode-hook)
1283         (dired-directory, dired-faces, dired, dired-revert)
1284         (dired-mode, dired-summary, dired-view-file)
1285         (dired-copy-filename-as-kill, dired-delete-file)
1286         (dired-no-confirm, dired-unmark-all-marks)
1287         (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
1288         (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
1289         (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
1290         Fix typos in message strings.
1292         * dired-x.el (virtual-dired): Declare with `defalias'.
1293         (dired-mark-unmarked-files, dired-local-variables-file)
1294         (dired-omit-here-always): Doc fix.
1295         (dired-omit-mode, dired-find-subdir)
1296         (dired-enable-local-variables, dired-clean-up-buffers-too)
1297         (dired-extra-startup, dired-mark-extension, dired-jump)
1298         (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
1299         (dired-smart-shell-command, dired-guess-shell-alist-user)
1300         (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
1301         (dired-x-bind-find-file, dired-x-submit-report):
1302         Fix typos in docstrings.
1303         (dired-mark-unmarked-files): "?\ " -> "?\s".
1305         * dirtrack.el (dirtrack-list): Fix typos in docstring.
1307         * faces.el (describe-face): "?\ " -> "?\s".
1308         (read-all-face-attributes, read-face-font, modify-face)
1309         (face-attr-construct, italic): Fix typos in docstrings.
1310         (frame-update-face-colors): Declare with
1311         `define-obsolete-function-alias'.
1313         * files.el (find-file-noselect, recode-file-name): Doc fixes.
1314         (insert-directory, kill-some-buffers): "?\ " -> "?\s".
1315         (magic-mode-alist, buffer-file-numbers-unique)
1316         (write-file-functions, get-free-disk-space):
1317         Fix typos in docstrings.
1318         (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
1319         (write-contents-hooks, write-file-hooks):
1320         Declare with `define-obsolete-variable-alias'.
1322         * forms-d2.el (arch-rj): Fix typo in docstrings.
1323         (arch-tocol): Likewise.  "?\ " -> "?\s".
1325         * frame.el (set-frame-font, cursor-in-non-selected-windows):
1326         Fix typo in docstring.
1327         (set-screen-width, set-screen-height): Delete redundant info in
1328         doctrings.
1329         (new-frame, screen-height, screen-width): Declare with
1330         `define-obsolete-function-alias'.
1331         (delete-frame-hook, blink-cursor): Declare with
1332         `define-obsolete-variable-alias'.
1334         * paths.el (prune-directory-list): Fix typos in docstring.
1336         * pcvs-util.el (cvs-flags-query, cvs-strings->string)
1337         (cvs-prefix-get): Fix typos in docstrings.
1339         * ps-print.el (ps-extend-face-list, ps-extend-face)
1340         (ps-print-background-image): Fix typos in docstrings.
1341         (ps-default-fg, ps-default-bg): Doc fixes.
1343         * s-region.el (s-region-bind): Doc fix.
1344         (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
1346         * textmodes/org.el (org-table-formula-substitute-names)
1347         (org-table-get-vertical-vector): Doc fixes.
1348         (org-table-recalculate): Remove unused argument to `message'.
1350 2005-07-19  Carsten Dominik  <dominik@science.uva.nl>
1352         * textmodes/org.el (org-table-column-names)
1353         (org-table-column-name-regexp)
1354         (org-table-named-field-locations): New variables.
1355         (org-archive-subtree): Protect `this-command' when calling
1356         `org-copy-subtree' and `org-cut-subtree', to avoid appending to
1357         the kill buffer.
1358         (org-complete): Remove fixed-formula completion.
1359         (org-edit-formulas-map): New variable.
1360         (org-table-edit-formulas): New command.
1361         (org-finish-edit-formulas, org-abort-edit-formulas)
1362         (org-show-variable, org-table-get-vertical-vector): New functions.
1363         (org-table-maybe-eval-formula): Handle `:=' fields.
1364         (org-table-get-stored-formulas, org-table-store-formulas)
1365         (org-table-get-formula, org-table-modify-formulas)
1366         (org-table-replace-in-formulas): Handle named field formulas.
1367         (org-table-get-specials): Store locations of named fields.
1369 2005-07-19  Juri Linkov  <juri@jurta.org>
1371         * progmodes/grep.el (grep-regexp-alist)
1372         (grep-mode-font-lock-keywords, grep-process-setup):
1373         Use default GNU grep match color "01;31m" instead of "01;41m".
1374         (grep-regexp-alist, grep-mode-font-lock-keywords):
1375         Use `\\[[0-9]*m' instead of `\\[00m'.
1376         (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
1377         sgr_start where its handling is more important.  Use the real
1378         length of sgr_start instead of constant 8.
1379         (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
1380         specially.  Delete all remaining escape sequences.
1381         (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
1382         (grep-regexp-alist): Make hyperlink only for binary file name
1383         instead of the whole line.
1384         (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
1385         (grep-mode): Add autoload.
1387         * emacs-lisp/find-func.el (find-function-regexp):
1388         Add `define-compilation-mode'.
1390 2005-07-19  Juri Linkov  <juri@jurta.org>
1392         * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
1393         (compare-windows-sync-string-size, compare-windows-recenter)
1394         (compare-windows-highlight, compare-windows): Add version 22.1.
1395         (compare-windows) <defface>: Inherit from lazy-highlight instead
1396         of duplicating its default value.
1398         * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
1399         (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
1401         * descr-text.el (describe-char): Create link buttons for `charset'
1402         and `code point'.  Add the current input method name with a link
1403         button to `to input' field.  Print face names of display table
1404         characters in `The display table entry is displayed by' section
1405         instead of printing face-id in the `display' field.
1406         Guess hardcoded faces and create a link button for them.
1407         Skip empty fields when calculating max-width.
1408         Treat `widget-create' specially while inserting strings from the
1409         collected field list.
1410         (describe-char-after): Made obsolete in version 22.1, not 21.5.
1412         * diff-mode.el (diff-file-header): Change foreground color from
1413         yellow to green on light backgrounds.
1414         (diff-context): Inherit from `shadow' only for color/grayscale
1415         with more than 88 colors.
1416         (diff-indicator-removed, diff-indicator-added)
1417         (diff-indicator-changed): New faces.
1418         (diff-font-lock-keywords): Use new faces.  Regroup rules.
1419         Add "^---$" for `normal' diff format.  Fontify `#' lines with
1420         font-lock-comment-delimiter-face and font-lock-comment-face.
1421         Add `#' to ^[^...] in the rule for `diff-context-face'.
1423         * faces.el (mode-line-highlight): Replace RoyalBlue4 with
1424         a button-like box.  Inherit from `highlight' on low colors.
1425         (shadow): Use shades of gray only for color/grayscale with
1426         more than 88 colors.  Use green for light backgrounds with
1427         8 colors, and yellow for dark backgrounds with 8 colors.
1429         * font-lock.el (font-lock-regexp-grouping-backslash):
1430         Don't inherit from escape-glyph (use bold for all cases).
1432         * info.el (info-xref-visited): Use light foreground color `violet'
1433         for dark backgrounds instead of dark color `magenta3'.
1434         (info-title-1): Use `yellow' color for dark backgrounds.
1436         * isearch.el (isearch): Use not-too-dark magenta3 instead of
1437         too-light magenta2.
1439         * replace.el (match): Use slightly more light RoyalBlue3 instead
1440         of dark RoyalBlue4.
1442         * wid-edit.el (widget-inactive): Inherit from `shadow'.
1444 2005-07-19  Juanma Barranquero  <lekktu@gmail.com>
1446         * novice.el (disabled-command-hook): Declare it with
1447         `define-obsolete-variable-alias'.
1449         * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
1450         (desktop-buffer-misc-functions, desktop-buffer-handlers)
1451         (desktop-load-default): Add release to obsolescence info.
1452         (desktop-globals-to-clear, desktop-buffer-mode-handlers)
1453         (desktop-append-buffer-args, desktop-read):
1454         Fix typos in docstrings.
1455         (desktop-kill): Fix typo in message.
1456         (desktop-save): Doc fix.
1458 2005-07-19  Michael Kifer  <kifer@cs.stonybrook.edu>
1460         * viper-cmd.el (viper-escape-to-state): Bug fix.
1461         (viper-envelop-ESC-key): Change the definition of fast
1462         keysequence so it'll work with keyboard macros.
1464         * ediff.el (ediff-patch-buffer): Change the docstring.
1466 2005-07-19  Kenichi Handa  <handa@m17n.org>
1468         * international/mule-cmds.el (select-safe-coding-system): Try to
1469         use an auto-coding (if any) before anything else.  If the found
1470         auto-coding is invalid, show a warning message.
1472         * international/mule.el (find-auto-coding): New function created
1473         by modifying the body of set-auto-coding.
1474         (set-auto-coding): Use find-auto-coding to find a coding.
1476 2005-07-18  Richard M. Stallman  <rms@gnu.org>
1478         * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
1479         not isearch-mode-end-hook-error.
1480         (allout-before-change-protect): Fix error message.
1482 2005-07-18  Juri Linkov  <juri@jurta.org>
1484         * allout.el (allout-mode):
1485         * calculator.el (calculator-copy):
1486         * custom.el (custom-known-themes):
1487         * dired.el (dired-desktop-buffer-misc-data)
1488         (dired-restore-desktop-buffer):
1489         * dired-x.el (dired-omit-marker-char):
1490         * files.el (basic-save-buffer):
1491         * font-core.el (font-lock-mode):
1492         * calendar/calendar.el (calendar-goto-hebrew-date)
1493         (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
1494         (calendar-goto-persian-date):
1495         * language/ethio-util.el (ethio-sera-to-fidel-region):
1496         * textmodes/picture.el (picture-mode):
1497         Delete duplicate duplicate words.
1499 2005-07-18  Juri Linkov  <juri@jurta.org>
1501         * isearch.el (isearch-mode-map): Remove key bindings for regexp
1502         chars * ? } |.
1503         (isearch-fallback): Don't call `isearch-process-search-char'.
1504         (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
1505         (isearch-process-search-char): Call `isearch-fallback' for regexp
1506         chars * ? } |.
1507         (isearch-return-char): Make obsolete with `make-obsolete' instead
1508         of simply documenting it as obsolete in the docstring.
1509         (isearch-fallback): Refill docstring.
1511         * international/isearch-x.el
1512         (isearch-process-search-multibyte-characters): Remove unneeded
1513         `concat'.  Add intermediate values to `junk-hist' instead of
1514         `minibuffer-history'.  Test the length of `str'.
1516 2005-07-18  Juanma Barranquero  <lekktu@gmail.com>
1518         * allout.el (allout-resolve-xref): Fix typos in error strings.
1519         (allout-before-change-protect): Remove unneeded `concat'.
1521         * array.el (array-mode, array-reconfigure-rows)
1522         (untabify-backward): Fix typos in docstrings.
1523         (array-reconfigure-rows): Use `insert-buffer-substring', not
1524         `insert-buffer'.
1526         * calendar/icalendar.el (icalendar--get-unfolded-buffer):
1527         * progmodes/ada-mode.el (ada-make-body):
1528         Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
1530         * dired.el (dired-log):
1531         * tar-mode.el (tar-subfile-save-buffer):
1532         * play/zone.el (zone-pgm-stress-destress):
1533         Use `insert-buffer-substring', not `insert-buffer'.
1535 2005-07-17  Simon Josefsson  <jas@extundo.com>
1537         * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
1539 2005-07-16  Jose E. Marchesi  <jemarch@gnu.org>
1541         * lisp/mail/smtpmail.el (smtpmail-auth-supported):
1542         Add plain auth method.
1543         (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
1545 2005-07-17  Kim F. Storm  <storm@cua.dk>
1547         * ido.el (dired-other-window): Add ido property.
1549 2005-07-16  Juanma Barranquero  <lekktu@gmail.com>
1551         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
1552         Fix typo in docstring.
1553         (byte-compile-interactive-only-functions): Add `insert-buffer' and
1554         `insert-file-literally'.
1556         * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
1557         info and delete redundant message.  Doc fix.
1558         (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
1559         (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
1561 2005-07-16  Richard M. Stallman  <rms@gnu.org>
1563         * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
1564         (byte-compile-and): Use byte-compile-and-recursion.
1565         (byte-compile-or-recursion): New function.
1566         (byte-compile-or): Use that.
1567         (byte-compile-if): Guard the else-clause too.
1568         (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
1570         * isearch.el (isearch-mode-end-hook-quit): New variable.
1571         (isearch-done): Bind it.
1572         (isearch-mode-end-hook): Doc fix.
1574         * allout.el (allout-isearch-did-quit): Variable deleted.
1575         (allout-real-isearch-abort): Function name no longer used.
1576         (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
1577         (allout-isearch-rectification): isearch-mode always exists.
1578         Don't set allout-isearch-did-quit.
1579         (allout-isearch-expose): Check isearch-mode-end-hook-error, not
1580         allout-isearch-did-quit.
1581         (allout-enwrap-isearch): Just add the hook.
1582         (allout-isearch-abort): Function deleted.
1583         (allout-pre-command-business): Avoid warning.
1585         * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
1586         Correctly avoid warnings.
1587         (pascal-outline): Likewise.
1589         * progmodes/f90.el (f90-abbrev-start): Avoid warning.
1591         * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
1593         * play/tetris.el (tetris-mode): Avoid warning.
1595         * play/snake.el (snake-mode): Avoid warning.
1597         * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
1598         (gamegrid-set-display-table): Avoid warning.
1599         (gamegrid-set-timer): Likewise.
1600         (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
1601         (gamegrid-add-score-with-update-game-score-1): Take FILE
1602         as argument.
1603         (gamegrid-add-score-with-update-game-score): Pass that argument.
1604         Rename have-shared-game-dir to gamegrid-shared-game-dir.
1606         * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
1608         * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
1609         (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
1611         * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
1612         and insert-file.
1614         * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
1615         (sc-ask): Avoid warnings.
1617         * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
1618         (eshell-hist-initialize): Use that var the natural way.
1620         * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
1622         * emacs-lisp/re-builder.el (reb-cook-regexp):
1623         Avoid warning calling lre-compile-string.
1624         (reb-color-display-p): Avoid warning.
1626         * calculator.el (calculator-last-input): Guard uses
1627         of event-key and key-press-event-p.
1628         (event-key, key-press-event-p): Delete definitions.
1630         * emacs-lisp/find-gc.el (find-gc-unsafe-list)
1631         (find-gc-source-directory, find-gc-subrs-callers)
1632         (find-gc-noreturn-list, find-gc-source-files)
1633         (find-gc-subrs-called): Vars renamed and defvar'd.
1635         * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
1636         (checkdoc-overlay-put, checkdoc-delete-overlay)
1637         (checkdoc-overlay-start, checkdoc-overlay-end)
1638         (checkdoc-mode-line-update, checkdoc-char=):
1639         Define such that compiler knows they are defined.
1640         (checkdoc-call-eval-buffer): Delete.  Use eval-buffer directly.
1641         (checkdoc-read-event): Delete.  Use read-event directly.
1643         * whitespace.el (whitespace-make-overlay)
1644         (whitespace-overlay-put, whitespace-delete-overlay)
1645         (whitespace-overlay-start, whitespace-overlay-end):
1646         Define such that compiler knows they are defined.
1647         (whitespace): Move conditional inside.
1649         * tempo.el (tempo-insert-template): Suppress warning.
1651         * ediff-diff.el (longlines-mode): Add defvar.
1653 2005-07-16  Gary Howell  <g1howell-list@yahoo.com>  (tiny change)
1655         * server.el: Bind "C-x #" in a way that works even if C-x is
1656         redefined to a command key, not a prefix key.
1658 2005-07-16  Johan Bockgard  <bojohan@users.sourceforge.net>  (tiny change)
1660         * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
1661         cl-make-type-test till execution time.
1663 2005-07-16  Markus Rost  <rost@math.uni-bielefeld.de>
1665         * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
1666         arg ARG and use it.
1668 2005-07-16  Johan Bockgard  <bojohan@users.sourceforge.net>  (tiny change)
1670         * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
1672 2005-07-15  Luc Teirlinck  <teirllm@auburn.edu>
1674         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
1675         a defcustom with two :set or :type keywords.
1677 2005-07-15  Richard M. Stallman  <rms@gnu.org>
1679         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
1680         Don't give ^M comment-end syntax.
1682 2005-07-16  Nick Roberts  <nickrob@snap.net.nz>
1684         * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
1685         Don't consider gdbmi (gdb-mi.el has its own update functions).
1686         (gdb-var-delete): Make it work for gdbmi as well.
1687         (gdb-speedbar-expand-node): Move var-update here for gdbmi.
1689         * progmodes/gud.el (etags, sdb): Only require etags when needed.
1690         (gud-speedbar-menu-items): Correct logic for enabling items.
1692 2005-07-15  Kim F. Storm  <storm@cua.dk>
1694         * ido.el: Fix commentary.
1695         (ido-define-mode-map): Move ido-next-work-file to C-M-o.
1696         Use with-no-warnings around ffap-guesser.
1697         (ido-file-internal, ido-read-file-name, ido-read-directory-name):
1698         Let bind minibuffer-completing-file-name to t.
1700 2005-07-15  Juanma Barranquero  <lekktu@gmail.com>
1702         * startup.el (site-run-file, keyboard-type): Doc fixes.
1703         (command-line): Check for "--basic-display" argument; also for
1704         "--quick", not "--bare-bones" (which was renamed).
1705         (fancy-splash-text): Add missing item "Getting New Versions".
1706         (normal-splash-screen): Fix typos and improve consistency with
1707         `fancy-splash-text'.  Update copyright year.
1709         * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
1710         valid binding for `help-char'.
1712         * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
1714 2005-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
1716         * term.el (term-mode): Disable cua-mode for term buffers.
1718 2005-07-14  Juanma Barranquero  <lekktu@gmail.com>
1720         * add-log.el (add-log-mailing-address, change-log-merge):
1721         Doc fixes.
1722         (change-log-get-method-definition): Fix typo in docstring.
1724 2005-07-14  Kim F. Storm  <storm@cua.dk>
1726         * emulation/cua-base.el:
1727         (cua--pre-command-handler-1, cua--pre-command-handler)
1728         (cua--post-command-handler-1, cua--post-command-handler):
1729         Split in two.  Check (buffer local) value of cua-mode.
1730         (cua-selection-mode): New command.
1732 2005-07-13  Luc Teirlinck  <teirllm@auburn.edu>
1734         * custom.el (custom-initialize-safe-set)
1735         (custom-initialize-safe-default): Doc fixes.
1737         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
1738         and simplify :init-value again.
1740         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
1741         and simplify :init-value again.  Delete autoload.
1743         * startup.el (command-line): Use `custom-reevaluate-setting' again
1744         for tooltip-mode.
1746         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
1747         a defcustom with two :initialize keywords.
1749 2005-07-13  Juanma Barranquero  <lekktu@gmail.com>
1751         * allout.el (my-mark-marker, allout-isearch-prior-pos)
1752         (allout-unprotected, allout-undo-aggregation, allout-snug-back)
1753         (allout-post-command-business, allout-flag-region)
1754         (isearch-reenable-font-lock, allout-yank)
1755         (allout-insert-latex-header, allout-insert-latex-trailer)
1756         (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
1757         (allout-latex-verb-quote): Fix typos in docstrings.
1758         (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
1759         (allout-unprotected, allout-prefix-data):
1760         Improve argument/docstring consistency.
1761         (allout-chart-subtree): Fix argument spec.
1762         (allout-open-topic): Rename `use_sib_bullet' argument to
1763         `use-sib-bullet'.  Doc fix.
1765         * whitespace.el (whitespace-check-buffer-leading)
1766         (whitespace-check-buffer-trailing)
1767         (whitespace-check-buffer-indent)
1768         (whitespace-check-buffer-spacetab)
1769         (whitespace-check-buffer-ateol, whitespace-highlighted-space)
1770         (whitespace-check-leading-whitespace)
1771         (whitespace-check-trailing-whitespace)
1772         (whitespace-check-spacetab-whitespace)
1773         (whitespace-check-indent-whitespace)
1774         (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
1775         (whitespace-modes): Fix typos in docstrings.
1776         (defgroup, defcustom): Doc fixes.
1778         * winner.el (winner-mode, winner-boring-buffers)
1779         (winner-pending-undo-ring): Doc fixes.
1780         (winner-ring): Remove unneeded `progn'.
1781         (winner-equal): `defsubst' it.
1782         (winner-redo): Fix message.
1784 2005-07-13  Kim F. Storm  <storm@cua.dk>
1786         * simple.el (line-move-1): Always use vertical-motion to
1787         do the last (or only) line move to ensure some movement.
1788         Undo 2005-06-23 change--don't check for overlays.
1790 2005-07-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1792         * term/mac-win.el (ccl-encode-mac-roman-font)
1793         (ccl-encode-mac-centraleurroman-font)
1794         (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
1795         (ccl-encode-mac-dingbats-font): Remove check for ASCII.
1796         Change charset-id boundary of dimension to ?\xef.
1797         (mac-char-fontspec-list): New constant.
1798         (fontset-add-mac-fonts): Use it.  Accept non-string `base-family'
1799         argument.  Nil uses itself as family in font-spec.  Previous
1800         behavior for nil is now provided by non-nil non-string argument.
1801         All callers changed.  Add font-specs for Mac fonts to
1802         "fontset-default" unless iso8859-1 fonts are installed.
1804 2005-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1806         * progmodes/sh-script.el (sh-get-indent-info): Only indent
1807         a continuation line if the \ is preceded by SPC or TAB.
1808         (sh-get-indent-info): Simplify.
1809         (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
1810         Use with-current-buffer.
1812         * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
1813         when the matched text is empty.
1815 2005-07-12  Luc Teirlinck  <teirllm@auburn.edu>
1817         * startup.el (command-line): Revert to previous handling of
1818         tooltip-mode.  Explain in comment why the complexity is needed.
1820         * tooltip.el (tooltip-mode): Revert to previous implementation of
1821         its defcustom.
1823         * frame.el (blink-cursor-mode): Revert to previous implementation
1824         of its defcustom.  Update comment.
1826 2005-07-12  Lars Hansen  <larsh@soem.dk>
1828         * desktop.el: Update e-mail address.
1830 2005-07-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1832         * term/mac-win.el (mac-services-mail-selection)
1833         (mac-services-mail-to): New functions.
1834         (mac-application-menu-map): Bind them.
1836 2005-07-12  wulei <milton@wulei.net>  (tiny change)
1838         * progmodes/gdb-ui.el: Add note about buffering with Windows.
1840 2005-07-11  Luc Teirlinck  <teirllm@auburn.edu>
1842         * custom.el (custom-reevaluate-setting): Doc fix.
1844 2005-07-11  Jay Belanger  <belanger@truman.edu>
1846         * calc/calc.el (calc-embedded-announce-formula-alist)
1847         (calc-embedded-open-close-plain-alist)
1848         (calc-embedded-open-close-mode-alist): Add checks for additional
1849         major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
1851 2005-07-11  Juanma Barranquero  <lekktu@gmail.com>
1853         * custom.el (custom-enable-theme): Don't add theme to
1854         `custom-enabled-themes' with `push' because there is no
1855         setf-method for `delq'.
1857 2005-07-11  Richard M. Stallman  <rms@gnu.org>
1859         * custom.el (custom-declare-variable): Doc fix.
1861         * dired-aux.el (dired-compare-directories): Remove "." and ".."
1862         from the alists.
1864         * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
1865         Do nothing if edebug-active.
1867         * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
1868         (edebug-display): Do it here instead.
1870 2005-07-10  Richard M. Stallman  <rms@gnu.org>
1872         * cus-face.el (custom-theme-set-faces): Make it work.
1873         (custom-reset-faces): Doc fix.
1874         (custom-theme-reset-internal-face, custom-theme-face-value):
1875         Functions deleted.
1877         * custom.el (custom-push-theme): Maintain list of the settings
1878         of a given theme in its theme-settings property.
1879         Maintain position of old settings in the theme-value
1880         or theme-face property.
1881         (custom-enabled-themes): New variable.
1882         (custom-theme-enabled-p): New function.
1883         (provide-theme): Update custom-enabled-themes.
1884         Disable and reenable the `user' theme.
1885         (require-theme): Doc fix.
1886         (custom-do-theme-reset, custom-remove-theme): Functions deleted.
1887         (custom-theme-value, custom-theme-variable-value): Likewise.
1888         (custom-theme-reset-internal): Likewise.
1889         (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
1890         (custom-enable-theme, custom-disable-theme): New functions.
1891         (custom-variable-theme-value, custom-face-theme-value): Likewise.
1892         (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
1893         (custom-theme-reset-variables): Simplify.
1894         (deftheme, custom-declare-theme, custom-make-theme-feature):
1895         Definitions moved.
1897 2005-07-10  Chong Yidong  <cyd@stupidchicken.com>
1899         * longlines.el (longlines-show-region)
1900         (longlines-unshow-hard-newlines): Recognize hard newlines by
1901         non-nil hard property, instead of t.
1903 2005-07-10  Michael Kifer  <kifer@cs.stonybrook.edu>
1905         * viper-cmd.el (viper--key-maps): New variable.
1906         (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
1907         emulation-mode-map-alists.
1908         (viper-envelop-ESC-key): Use viper-subseq.
1909         (viper-search-forward/backward/next): Disable debug-on-error.
1911         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
1912         (viper-ESC-key): New defcustoms.
1914         * viper-macs.el (ex-map-read-args): Use viper-subseq.
1916         * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
1917         (viper-subseq): Copy of subseq from cl.el.
1919         * viper.el (viper-go-away, viper-set-hooks): Use
1920         emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
1922         * viper-mous.el (viper-current-frame-saved): Use defvar.
1924         * viper-init.el: Get rid of -face in face names.
1926         * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
1927         Make it work with longlines mode
1929         * ediff-mult.el (ediff-meta-mode-hook): New variable.
1931         * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
1933         * ediff-init: Get rid of -face in face names.
1935 2005-07-10  Richard M. Stallman  <rms@gnu.org>
1937         * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
1938         and with-timeout-unsuspend.
1940         * emacs-lisp/debug.el (debug): Call with-timeout-suspend
1941         and with-timeout-unsuspend.
1943         * emacs-lisp/timer.el (with-timeout-timers): New variable.
1944         (with-timeout): Bind that variable to record timers.
1945         (with-timeout-suspend, with-timeout-unsuspend): New functions.
1947         * emacs-lisp/debug.el (debug-help-follow): New function.
1948         (debugger-mode-map): Use that instead of help-follow.
1949         (debugger-setup-buffer): Use eval-buffer-list
1950         to handle eval-buffer frames.
1952 2005-07-10  N. Raghavendra  <raghu@mri.ernet.in>  (tiny change)
1954         * timezone.el (timezone-parse-date): Change first regexp
1955         so it will not mistakenly match dates with no time zone.
1957 2005-07-10  Jeff Dwork  <jeff.dwork@amd.com>  (tiny change)
1959         * facemenu.el (facemenu-read-color): Do case-insensitive matching.
1961 2005-07-10  Luc Teirlinck  <teirllm@auburn.edu>
1963         * custom.el (custom-initialize-safe-set)
1964         (custom-initialize-safe-default): New functions.
1966         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
1967         and simplify :init-value.
1969         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
1970         and simplify :init-value.  Delete obsolete comment.
1972         * startup.el (command-line): Use `custom-reevaluate-setting' to
1973         handle `tooltip-mode'.  Delete obsolete comment.
1975         * files.el (set-visited-file-name): Avoid calling
1976         `file-name-nondirectory' with a nil argument.
1978 2005-07-09  Richard M. Stallman  <rms@gnu.org>
1980         * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
1981         was called with nil for the buffer, handle the read position right.
1982         Handle read position for eval-region, too.
1984 2005-07-09  Juri Linkov  <juri@jurta.org>
1986         * fringe.el (fringe-mode): Add period in docstring.
1987         (fringe-query-style): Build prompt depending on `all-frames' arg.
1989         * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
1990         to not create links to unrelated functions in the Help buffer.
1992         * progmodes/compile.el (compilation-mode-hook, compilation-mode):
1993         Doc fix.
1995         * simple.el (next-error-hook): New variable.
1996         (next-error): Use it.  Doc fix.
1998         * textmodes/ispell.el (ispell-command-loop): Add current
1999         dictionary name and program name to mode-line-format.
2000         (ispell-region, ispell-process-line): Add current dictionary name
2001         and program name to messages.
2003 2005-07-08  Jay Belanger  <belanger@truman.edu>
2005         * calc/calc.el (calc-embedded-announce-formula-alist)
2006         (calc-embedded-open-close-formula-alist)
2007         (calc-embedded-open-close-word-alist)
2008         (calc-embedded-open-close-plain-alist)
2009         (calc-embedded-open-close-new-formula-alist)
2010         (calc-embedded-open-close-mode-alist)
2011         (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
2012         (calc-embedded-mode-hook): New variables.
2014         * calc/calc-embed.el (calc-embedded-firsttime)
2015         (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
2016         New variables.
2017         (calc-do-embedded): Use calc-embedded-firsttime,
2018         calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
2019         determine whether or not to run hooks.
2020         (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
2021         calc-embedded-firsttime-formula appropriately.
2022         Set calc-embedded delimiter variables according to mode.
2024 2005-07-08  Richard M. Stallman  <rms@gnu.org>
2026         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
2027         Check for "emacs", etc., as entire symbol, not just as word.
2028         (checkdoc-file-comments-engine): Use regexp-quote on FN.
2030         * files.el (set-visited-file-name): Report the error
2031         for "empty filename" earlier.
2032         (kill-some-buffers): Ignore buffers already dead.
2034         * fringe.el (fringe-mode): Doc fix.
2036         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
2037         Check for (featurep 'xemacs) and turn off warnings in what it guards.
2038         Use unwind-protect to ensure byte-compile-unresolved-functions
2039         is updated.
2041         * whitespace.el (whitespace-buffer-leading-cleanup):
2042         Simplify w/ skip-chars-forward.
2043         (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
2045         * mail/rmail.el (rmail-only-expunge): Fix paren error.
2046         Unconditionally try to leave point at the same old place.
2048 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>  (tiny change)
2050         * comint.el (comint-postoutput-scroll-to-bottom)
2051         (comint-show-maximum-output): Take scroll-margin into consideration.
2053 2005-07-08  Kim F. Storm  <storm@cua.dk>
2055         * ido.el (ido-use-filename-at-point): New choice `guess'.
2056         (ido-file-internal): Try ffap-guesser if selected.
2058         * ido.el (ido-before-fallback-functions): New hook.
2059         (ido-buffer-internal, ido-file-internal, ido-read-buffer)
2060         (ido-read-file-name): Run it.
2062 2005-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2064         * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
2065         strings rather than a list of symbols to the completion function.
2067 2005-07-07  Jay Belanger  <belanger@truman.edu>
2069         * calc/calc-units.el (math-apply-units): Change the places in
2070         which units are simplified.
2072 2005-07-07  Luc Teirlinck  <teirllm@auburn.edu>
2074         * cus-edit.el (customize-option, customize-option-other-window):
2075         Make them handle aliases.
2077         * custom.el (custom-variable-p): Make it recursively follow
2078         aliases.  Mention that in the docstring.
2080 2005-07-07  Richard M. Stallman  <rms@gnu.org>
2082         * cus-start.el (exec-path): Use `directory' instead of `file'.
2083         Fix tag for nil.
2085 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
2087         * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
2088         when called non-interactively.  Doc fix.
2090 2005-07-07  Lute Kamstra  <lute@gnu.org>
2092         * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
2093         new address as well.
2095 2005-07-07  Kenichi Handa  <handa@m17n.org>
2097         * international/mule.el (make-coding-system):
2098         Describe `ascii-incompatible' property in the docstring.
2099         (set-file-name-coding-system): Signal an error if coding-system is
2100         ascii-incompatible.
2101         (set-keyboard-coding-system): Likewise.
2103         * international/mule-cmds.el (set-default-coding-systems):
2104         Don't set default-file-name-coding-system and
2105         default-keyboard-coding-system if coding-system is ASCII-incompatible.
2107         * international/utf-16.el: Declare that all UTF-16-based coding
2108         systems are ASCII-incompatible.
2110 2005-07-07  Nick Roberts  <nickrob@snap.net.nz>
2112         * progmodes/gud.el: Require font-lock for displaying errors.
2113         Used by gdb-ui.el.
2115 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
2117         * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
2118         values for the pattern lists which are `read'able but not
2119         `append'able (like symbols).
2121 2005-07-06  Richard M. Stallman  <rms@gnu.org>
2123         * progmodes/flymake.el (flymake-float-time): Instead of
2124         with-no-warnings, test for xemacs.
2125         (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
2126         to avoid warning.
2128 2005-07-06  Juanma Barranquero  <lekktu@gmail.com>
2130         * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
2132 2005-07-05  Lute Kamstra  <lute@gnu.org>
2134         * battery.el: Add support for Darwin (with much debugging help
2135         from Samuel Lauber <sam124@operamail.com>).
2136         (battery-status-function, battery-echo-area-format)
2137         (battery-mode-line-format): Add support for pmset on Darwin.
2138         (battery-load-low, battery-load-critical): New user options.
2139         (battery-pmset): New function.
2141 2005-07-05  Lute Kamstra  <lute@gnu.org>
2143         Update FSF's address in GPL notices.
2145         * textmodes/page-ext.el: Update FSF's address.
2147 2005-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2149         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
2150         filling from using prefix when filling a single-line docstring.
2152         * progmodes/flymake.el: Remove useless eval-when-compile.
2154         * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
2156 2005-07-04  Richard M. Stallman  <rms@gnu.org>
2158         * textmodes/org.el (org-file-apps-defaults-gnu):
2159         Rename from org-file-apps-defaults-linux.
2160         (org-default-apps): Don't test system-type for `linux'.
2161         (org-file-apps): Doc fix.
2163 2005-07-04  David Ponce  <david@dponce.com>
2165         * tree-widget.el: Improve header Commentary section.
2166         (tree-widget) [defgroup]
2167         (tree-widget-image-enable, tree-widget-themes-directory)
2168         (tree-widget-theme, tree-widget-image-properties-emacs)
2169         (tree-widget-image-properties-xemacs, tree-widget-create-image)
2170         (tree-widget-image-formats, tree-widget-control)
2171         (tree-widget-empty-control, tree-widget-leaf-control
2172         (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
2173         (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
2174         (tree-widget-keep, tree-widget-after-toggle-functions)
2175         (tree-widget-open-node, tree-widget-close-node): Doc fix.
2176         (tree-widget-open-control, tree-widget-close-control): Fix doc and
2177         :help-echo message.
2178         (tree-widget-set-theme): Doc fix.  Use `string-equal'.
2179         (tree-widget-image-properties): Doc fix.  Clearer implementation.
2180         (tree-widget--cursors): New constant.
2181         (tree-widget-lookup-image): New function split from
2182         `tree-widget-find-image'.  Clearer implementation.
2183         (tree-widget-find-image): Use it.
2184         (tree-widget-button-keymap): Use `set-keymap-parent'.
2185         (tree-widget) [define-widget]: Use `widget-children-value-delete'.
2186         Define the sub-widgets here.
2187         (tree-widget-node): Check that :node is not a tree-widget.
2188         (tree-widget-get-super, tree-widget-open-control)
2189         (tree-widget-close-control, tree-widget-empty-control)
2190         (tree-widget-leaf-control, tree-widget-guide)
2191         (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
2192         (tree-widget-no-handle, tree-widget-value-delete)
2193         (tree-widget-map): Remove.
2194         (tree-widget-children-value-save): Doc fix.  Simplified.
2195         (tree-widget-value-create): Update according to previous changes.
2197 2005-07-04  Carsten Dominik  <dominik@science.uva.nl>
2199         * textmodes/org.el: Leading space replaced by TABS.
2200         (org-recalc-marks, org-table-rotate-recalc-marks)
2201         (org-table-get-specials): Treat "^" and "_" marks.
2202         (org-table-justify-field-maybe): Optional argument NEW.
2203         (org-table-eval-formula): Parsing of the format simplified.
2204         New modes C,I.  Honor the %= parameter in the current table.
2205         Avoid unnecessary re-align by using the NEW argument to
2206         `org-table-justify-field-maybe'.
2207         (org-calc-default-modes): Default for date-format mimicks org-mode.
2208         (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
2210 2005-07-03  Luc Teirlinck  <teirllm@auburn.edu>
2212         * cus-face.el (custom-theme-set-faces): Make it handle face
2213         aliases whose alias declarations are pre- or autoloaded.
2215 2005-07-04  Juri Linkov  <juri@jurta.org>
2217         * faces.el (read-face-name): Put the code for getting a face name
2218         from the buffer before adding the faces from the `face' property.
2219         Use `completing-read-multiple' instead of `completing-read'.
2220         Require `crm'.  Add default value and post-process the returned
2221         list of faces.
2223         * emacs-lisp/crm.el (crm-find-current-element)
2224         (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
2226         * emacs-lisp/lisp-mode.el (eval-defun-1):
2227         * emacs-lisp/edebug.el (edebug-eval-defun):
2228         Remove unnecessary quotes.
2230 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
2232         * progmodes/prolog.el (prolog-eof-string): Doc fixes.
2233         (prolog-indent-level): Fix typo in docstring.
2235         * info.el (Info-history, Info-history-forward)
2236         (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
2238         * add-log.el (add-change-log-entry):
2239         * comint.el (comint-dynamic-list-input-ring)
2240         (comint-dynamic-list-completions):
2241         * dabbrev.el (dabbrev-expand):
2242         * delim-col.el (delimit-columns-rectangle-line):
2243         * diff-mode.el (diff-context->unified, diff-reverse-direction)
2244         (diff-unified->context):
2245         * ediff-init.el (ediff-abbrev-jobname):
2246         * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
2247         (ediff-replace-session-activity-marker-in-meta-buffer):
2248         * info.el (Info-summary):
2249         * lpr.el (printify-region):
2250         * printing.el (pr-create-interface):
2251         * ps-print.el (ps-print-quote):
2252         * ses.el (ses-column-widths, ses-print-cell)
2253         (ses-adjust-print-width, ses-center):
2254         * shell.el (shell-file-name-quote-list):
2255         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
2256         (strokes-fill-current-buffer-with-whitespace)
2257         (strokes-xpm-for-stroke, strokes-list-strokes)
2258         (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
2259         * term.el (term-dynamic-list-input-ring)
2260         (term-dynamic-list-completions):
2261         * calc/calc.el (math-format-stack-value):
2262         * emacs-lisp/edebug.el (edebug-display-freq-count):
2263         * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
2264         (delphi-new-comment-line):
2265         * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
2266         * progmodes/executable.el (executable-set-magic):
2267         * progmodes/python.el (inferior-python-mode):
2268         * progmodes/scheme.el (scheme-mode-syntax-table):
2269         * progmodes/sh-script.el (sh-maybe-here-document):
2270         * progmodes/sql.el (sql-copy-column):
2271         * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
2272         * textmodes/bibtex.el (bibtex-mode):
2273         * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
2274         (sgml-auto-attributes):
2275         * textmodes/table.el (table-insert, table-shorten-cell)
2276         (table--generate-source-scan-lines, table-delete-row)
2277         (*table--cell-delete-char, table--spacify-frame)
2278         (table--horizontally-shift-above-and-below)
2279         (table--cell-insert-char, table--cell-blank-str)
2280         (table--fill-region-strictly):
2281         * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
2282         * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
2284         * add-log.el (change-log):
2285         * apropos.el (apropos):
2286         * comint.el (comint-completion, comint-source):
2287         * dabbrev.el (dabbrev):
2288         * delim-col.el (columns):
2289         * diff-mode.el (diff-mode):
2290         * ediff.el (ediff):
2291         * ediff-diff.el (ediff-diff):
2292         * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
2293         * ediff-mult.el (ediff-mult):
2294         * ediff-ptch.el (ediff-ptch):
2295         * ediff-wind.el (ediff-window):
2296         * facemenu.el (facemenu):
2297         * indent.el (indent):
2298         * info.el (info):
2299         * jka-cmpr-hook.el (compression, jka-compr):
2300         * lpr.el (lpr):
2301         * outline.el (outlines):
2302         * pcmpl-cvs.el (pcmpl-cvs):
2303         * pcmpl-rpm.el (pcmpl-rpm):
2304         * printing.el (printing):
2305         * ps-print.el (postscript, ps-print, ps-print-horizontal)
2306         (ps-print-vertical, ps-print-headers, ps-print-font)
2307         (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
2308         (ps-print-background, ps-print-printer, ps-print-page)
2309         (ps-print-miscellany):
2310         * ses.el (ses):
2311         * shell.el (shell, shell-directories, shell-faces):
2312         * startup.el (initialization):
2313         * strokes.el (strokes):
2314         * term.el (term):
2315         * uniquify.el (uniquify):
2316         * w32-vars.el (w32):
2317         * calc/calc.el (calc):
2318         * emacs-lisp/bytecomp.el (bytecomp):
2319         * emacs-lisp/cl-indent.el (lisp-indent):
2320         * emacs-lisp/edebug.el (edebug):
2321         * emacs-lisp/elp.el (elp):
2322         * emacs-lisp/testcover.el (testcover):
2323         * emacs-lisp/trace.el (trace):
2324         * emulation/viper-ex.el (viper-ex):
2325         * emulation/viper-mous.el (viper-mouse):
2326         * mail/mailalias.el (mailalias):
2327         * mail/supercite.el (supercite, supercite-frames)
2328         (supercite-attr, supercite-cite, supercite-hooks):
2329         * net/rcompile.el (remote-compile):
2330         * net/rlogin.el (rlogin):
2331         * obsolete/ooutline.el (outlines):
2332         * progmodes/delphi.el (delphi):
2333         * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
2334         (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
2335         (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
2336         (ebnf-optimization):
2337         * progmodes/etags.el (etags):
2338         * progmodes/executable.el (executable):
2339         * progmodes/idlwave.el (idlwave):
2340         * progmodes/pascal.el (pascal):
2341         * progmodes/prolog.el (prolog):
2342         * progmodes/python.el (python):
2343         * progmodes/scheme.el (scheme):
2344         * progmodes/sh-script.el (sh, sh-script):
2345         * progmodes/sql.el (SQL):
2346         * progmodes/tcl.el (tcl):
2347         * textmodes/bibtex.el (bibtex, bibtex-autokey):
2348         * textmodes/enriched.el (enriched):
2349         * textmodes/makeinfo.el (makeinfo):
2350         * textmodes/sgml-mode.el (sgml):
2351         * textmodes/table.el (table-hooks):
2352         * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
2353         * textmodes/texinfo.el (texinfo):
2354         * textmodes/two-column.el (two-column):
2355         Finish `defgroup' description with period.
2357         * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
2358         * eshell/esh-var.el (eshell-var):
2359         * progmodes/vhdl-mode.el (vhdl-testbench):
2360         * textmodes/org.el (org): Fix typos in docstrings.
2362         * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
2363         consistency.
2365         * progmodes/flymake.el (flymake-find-file): Remove.
2366         (flymake-float-time): Use `with-no-warnings'.
2367         (flymake-check-start-time, flymake-check-was-interrupted)
2368         (flymake-err-info, flymake-is-running, flymake-last-change-time)
2369         (flymake-new-err-info): `defvar' at compile time.
2371 2005-07-03  Juanma Barranquero  <lekktu@gmail.com>
2373         * replace.el (occur-hook): Doc fix.
2374         (occur-1): Don't call `occur-hook' if there are no matches.
2376 2005-07-03  Richard M. Stallman  <rms@gnu.org>
2378         * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
2379         global-map, save the same map.
2380         (global-map): Don't alter it at top level.
2381         (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
2382         Then alter it here instead.
2383         (tpu-edt-off): Set global-map to the saved one.
2385         * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
2386         All references simplified.
2387         (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p.  Uses changed.
2388         (zmacs-regions): Add defvar.
2389         (repeat-complex-command-map): Everything about that deleted.
2391         * textmodes/artist.el (artist-key-is-drawing)
2392         (artist-key-endpoint1, artist-key-poly-point-list)
2393         (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
2394         (artist-key-compl-table, artist-rb-save-data)
2395         (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
2396         Don't put them in eval-when-compile.
2397         (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
2399         * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
2400         Use with-no-warnings.
2402         * net/browse-url.el (dos-windows-version): Add defvar.
2404         * mail/supercite.el (filladapt-prefix-table): Add defvar.
2406         * mail/rmailsum.el (rmail-summary-redo): Add defvar.
2407         (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
2408         (rmail-new-summary-line-count): Rename from new-summary-line-count.
2409         Add defvar.
2410         (rmail-summary-beginning-of-message): Use with-no-warnings.
2411         (rmail-summary-first-message, rmail-summary-last-message): Likewise.
2413         * emulation/vip.el (vip-replace-string, ex-map, ex-read):
2414         Use with-no-warnings.
2416         * emulation/vi.el (vi-mark-region): Use c-mark-function.
2417         (c-mark-function): Add point-moving-unit property.
2418         (vi-goto-line): Use with-no-warnings.
2420         * emulation/edt.el (edt-last-copied-word): Add defvar.
2421         (zmacs-region-stays): Likewise.
2422         (edt-mark-section-wisely): Use c-mark-function for C.
2423         Use makr-defun for Fortran.
2424         (time-string): defvar deleted.
2425         (edt-display-the-time): Don't set time-string.
2427         * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
2429         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
2430         Don't warn when name is not constant
2431         or for defining the group `emacs'.
2433         * tooltip.el (gud-tooltip-mode): Add defvar.
2435         * startup.el (default-frame-background-mode): Add defvar.
2437         * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
2439         * info.el (tool-bar-map): Add defvar.
2441         * dired.el (dnd-protocol-alist): Add defvar.
2443         * dired-aux.el (dired-query): Display question with answer, when
2444         the user answers.
2446         * custom.el (custom-add-option): Doc fix.
2448         * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
2450 2005-07-03  Eli Zaretskii  <eliz@gnu.org>
2452         * font-lock.el (font-lock-regexp-grouping-construct): Fix the
2453         bogus name from the last change.
2455 2005-07-02  Luc Teirlinck  <teirllm@auburn.edu>
2457         * custom.el (custom-declare-variable): Fix typos in comment.
2458         (custom-known-themes): Doc fix.
2459         (custom-theme-directory): New defcustom.
2460         (require-theme): Make it check `custom-theme-directory'.
2462         * cus-theme.el (custom-new-theme-mode): New function.
2463         (custom-theme-name, custom-theme-variables, custom-theme-faces)
2464         (custom-theme-description): Add compiler defvars.
2465         (customize-create-theme): Add doc to the "*New Custom Theme*"
2466         buffer.  Use `custom-new-theme-mode'.
2467         (custom-theme-write): Put the created buffer in emacs-lisp-mode
2468         and save it to the `custom-theme-directory'.  Make this the
2469         default directory of the buffer.
2471 2005-07-02  David Hunter  <hunterd_42@comcast.net>  (tiny change)
2473         * progmodes/flymake.el (flymake-mode, flymake-mode-off):
2474         Fix unbalanced parentheses.
2476 2005-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2478         * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
2479         into flymake-mode and delegate to flymake-mode.
2481         * find-file.el (ff-which-function-are-we-in): Clean up.
2483 2005-07-02  Juanma Barranquero  <lekktu@gmail.com>
2485         * replace.el (occur-rename-buffer): Fix docstring.
2487         * emulation/edt.el (*EDT-keys*, edt-default-global-map)
2488         (edt-last-copied-word, edt-learn-macro-count)
2489         (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
2490         (edt-rect-start-point, edt-user-global-map, rect-start-point)
2491         (time-string, zmacs-region-stays):
2492         * emulation/edt-mapper.el (edt-save-function-key-map)
2493         (EDT-key-name): `defvar' to silence the byte-compiler.
2495 2005-07-02  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
2497         * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
2498         font-lock-regexp-backslash.  Doc fix.
2499         (font-lock-regexp-backslash-grouping-construct): Rename from
2500         font-lock-regexp-backslash-construct.  Doc fix.
2501         (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
2502         grouping constructs.
2504 2005-07-02  Eli Zaretskii  <eliz@gnu.org>
2506         * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
2507         updating all the prerequisites.
2509 2005-07-01  Juanma Barranquero  <lekktu@gmail.com>
2511         * textmodes/org.el (org-agenda-start-on-weekday)
2512         (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
2513         (org-agenda-use-time-grid, org-archive-location)
2514         (org-allow-space-in-links, org-usenet-links-prefer-google)
2515         (org-enable-table-editor, org-export-default-language)
2516         (org-export-html-show-new-buffer, org-fill-paragraph)
2517         (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
2518         (org-goto-quit, org-occur, org-eval-in-calendar)
2519         (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
2520         (org-agenda-diary-entry, org-remember-help)
2521         (org-table-convert-region, org-at-table-p)
2522         (org-table-move-row-down, org-table-move-row-up)
2523         (org-table-copy-region, org-table-toggle-vline-visibility)
2524         (org-table-get-stored-formulas, org-table-get-specials)
2525         (org-recalc-commands, org-table-eval-formula)
2526         (org-table-formula-substitute-names, orgtbl-make-binding)
2527         (org-format-org-table-html, org-format-table-table-html)
2528         (org-format-table-table-html-using-table-generate-source)
2529         (org-customize): Fix typos in docstrings.
2530         (org-level-2, org-at-timestamp-p, org-agenda-day-view)
2531         (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
2532         (org-back-to-heading): Doc fixes.
2533         (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
2534         (org-agenda-change-all-lines, org-get-header):
2535         Improve argument/docstring consistency.
2536         (orgtbl-error): Fix error message.
2538         * progmodes/flymake.el (flymake-find-possible-master-files)
2539         (flymake-master-file-compare, flymake-get-line-err-count)
2540         (flymake-highlight-line, flymake-gui-warnings-enabled):
2541         Fix typos in docstrings.
2542         (flymake-parse-line, flymake-get-project-include-dirs-function)
2543         (flymake-get-prev-err-line-no, flymake-goto-prev-error):
2544         Doc fixes.
2545         (flymake-get-project-include-dirs-function)
2546         (flymake-make-err-menu-data):
2547         Improve argument/docstring consistency.
2549 2005-07-01  Lute Kamstra  <lute@gnu.org>
2551         * battery.el (battery-linux-proc-apm): Fix typo in docstring.
2552         Catch errors with ignore-errors.  Use temporary buffer.
2553         (battery-linux-proc-acpi): Fix typo in docstring.  Document `%r'.
2555         * facemenu.el (facemenu-unlisted-faces): Delete foreground and
2556         background color faces.
2557         (facemenu-set-foreground, facemenu-set-background):
2558         Use facemenu-set-face-from-menu.
2559         (facemenu-set-face-from-menu): Treat face names that start with
2560         "fg:" or "bg:" as special.
2561         (facemenu-add-new-color): Don't create faces.  Simplify.
2563 2005-06-30  Richard M. Stallman  <rms@gnu.org>
2565         * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
2566         (crm-find-current-element): Likewise.
2568 2005-06-30  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
2570         * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
2572 2005-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2574         * arc-mode.el (archive-extract): Make it work as a mouse binding.
2575         (archive-mouse-extract): Make it an obsolete alias.
2576         (archive-mode-map): Don't use archive-mouse-extract any more.
2577         (archive-mode, archive-extract): write-contents-hooks ->
2578         write-contents-functions.
2579         (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
2580         first arg.
2581         (archive-rename-entry): Update the call.
2582         (archive-zip-summarize): Remove unused var `method'.
2583         (archive-lzh-summarize): Remove unused var `creator'.
2585         * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
2586         dedicated frame upon exit.
2588         * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
2589         (archive-zip-extract, archive-zip-expunge)
2590         (archive-zip-update, archive-zip-update-case): Use executable-find.
2591         (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
2592         Use restore-buffer-modified-p.
2593         (archive-extract, archive-add-new-member, archive-write-file-member):
2594         Use with-current-buffer.
2595         (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
2597 2005-06-30  Andreas Schwab  <schwab@suse.de>
2599         * progmodes/gud.el (gud-filter): Remove unneeded progn.
2601 2005-06-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
2603         * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
2605 2005-06-30  Juri Linkov  <juri@jurta.org>
2607         * faces.el (vertical-border): Inherit from mode-line-inactive
2608         only on tty.
2610 2005-06-30  Juanma Barranquero  <lekktu@gmail.com>
2612         * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
2613         example, -NLINES in the `occur' docstring).
2615         * replace.el (occur-1): When no matches are found, do not set the
2616         `buffer-read-only' and modified flags for the occur buffer,
2617         because it is deleted.
2619         * emulation/cua-base.el (cua-check-pending-input)
2620         (cua-repeat-replace-region, cua-mode, cua-debug)
2621         (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
2622         Fix typos in docstrings.
2624         * emulation/cua-gmrk.el (cua-toggle-global-mark)
2625         (cua-cut-region-to-global-mark)
2626         (cua--cut-rectangle-to-global-mark):
2627         Remove period from end of messages.
2629         * emulation/cua-rect.el (cua-do-rectangle-padding):
2630         Remove period from end of messages.
2631         (cua--rectangle-seq-format): Fix typo in docstring.
2632         (cua-sequence-rectangle, cua-fill-char-rectangle):
2633         Improve argument/docstring consistency.
2635 2005-06-29  Juri Linkov  <juri@jurta.org>
2637         * faces.el (default-frame-background-mode): New internal variable.
2638         (frame-set-background-mode): Use it.
2640         * startup.el (normal-top-level): Set default-frame-background-mode
2641         instead of frame-background-mode.  Before setting it, test for its
2642         nil value.  Remove tests for frame-background-mode and frame
2643         parameter `reverse'.  Add test for "unspecified-fg".
2645         * term/xterm.el (xterm-rxvt-set-background-mode):
2646         * term/rxvt.el (rxvt-set-background-mode):
2647         Set default-frame-background-mode instead of frame-background-mode.
2649 2005-06-29  Juanma Barranquero  <lekktu@gmail.com>
2651         * simple.el (set-variable): Warn about obsolete user variables.
2653         * imenu.el (imenu--completion-buffer):
2654         * mouse.el (mouse-buffer-menu-alist):
2655         * msb.el (msb-invisible-buffer-p):
2656         * calendar/diary-lib.el (diary-header-line-format):
2657         * emacs-lisp/pp.el (pp-buffer):
2658         * progmodes/cperl-mode.el (cperl-do-auto-fill):
2659         * textmodes/picture.el (picture-replace-match):
2660         Change space constants followed by a sexp to "?\s ".
2662         * play/decipher.el (decipher-loop-with-breaks):
2663         * textmodes/texinfo.el (texinfo-insert-@item): Change space
2664         constants "protected" from end of line by a comment to "?\s".
2666 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2668         * font-lock.el (save-buffer-state): Use `declare'.
2670         * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
2671         reset the syntax-table to cperl-mode-syntax-table.
2672         (cperl-mode): Make _ into word-syntax during font-locking so "print" in
2673         "foo_print_bar" is not matched as a reserved keyword.
2675 2005-06-29  Carsten Dominik  <dominik@science.uva.nl>
2677         * textmodes/org.el (orgtbl-setup): New function, for delayed
2678         setup for the orgtbl commands.
2679         (org-calc-default-modes): New option.
2680         (orgtbl-make-binding): Use `defun' to get better help display.
2681         (org-diary): Call `org-compile-prefix-format'.
2682         (org-table-formula-substitute-names): New function.
2683         (org-agenda-day-view, org-agenda-week-view): New commands.
2684         (org-agenda-toggle-week-view): Command removed.
2685         (org-tbl-menu): Split off from org-org-menu.
2686         (org-mode): Move removal of outline-mode menus to here.
2687         (org-table-formula-debug): New option.
2688         (org-table-insert-row): Keep first field if just "#" or "*".
2689         (org-mode): Paragraph regexps fixed.
2690         (org-table-recalculate-regexp): New constant.
2691         (org-table-justify-field-maybe): Avoid replace if not necessary.
2692         (org-copy-special, org-cut-special): Use `call-interactively'.
2693         (org-table-copy-region): Take region from `interactive' call.
2694         (org-trim): Return string even if no match.
2695         (org-formula): New face.
2696         (org-set-font-lock-defaults): No longer highlight "FIXME".
2697         But highlight formula-related fields in table.
2698         (org-table-p): Use regexp, not fontification.
2699         (org-table-align): Handle white space at end of line.
2700         (org-table-formula-evaluate-inline): New option.
2701         (org-mode): Auto-wrapping in comment lines turned off.
2702         (org-table-copy-down): Evaluate only in copied field, not in
2703         destination.
2704         (org-table-current-formula): Variable removed.
2705         (org-table-store-formulas, org-table-get-stored-formulas)
2706         (org-table-modify-formulas, org-table-replace-in-formulas)
2707         (org-table-maybe-eval-formula): New functions.
2708         (org-table-get-formula): Modify to use stored formulas.
2709         (org-table-insert-column, org-table-delete-column)
2710         (org-table-move-column): Call `org-table-modify-formulas'.
2711         (org-complete): Add completion for keyword formulas.
2712         (orgtbl-mode): Pull orgtbl-mode-map to start of
2713         minor-mode-map-alist.
2715 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2717         * progmodes/python.el (python-check): Require `compile' before
2718         modifying its variables.
2720         * newcomment.el (comment-indent-default): Don't get fooled by an early
2721         end of buffer.
2723 2005-06-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2725         * ps-print.el (ps-print-version): Fix version number.
2727 2005-06-28  Luc Teirlinck  <teirllm@auburn.edu>
2729         * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
2731 2005-06-28  Richard M. Stallman  <rms@gnu.org>
2733         * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
2734         (flyspell-local-mouse-map): Declaration deleted.
2735         (flyspell-mouse-map): Bind only mouse-2.
2736         (flyspell-mode-map): Don't test flyspell-use-local-map.
2737         (flyspell-overlay-keymap-property-name): Var deleted.
2738         (flyspell-mode-on): Don't make local bindings for
2739         flyspell-mouse-map and flyspell-mode-map.
2740         (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
2742         * textmodes/ispell.el (ispell-word): Do not ignore short words.
2744         * progmodes/compile.el (compilation-next-error-function):
2745         Don't switch buffers; operate on the current buffer.
2747         * progmodes/compile.el (compilation-error-file-name)
2748         (compilation-warning-file-name, compilation-info-file-name)
2749         (compilation-line-number, compilation-column-number): New faces.
2750         (compilation-error-face, compilation-warning-face)
2751         (compilation-info-face, compilation-line-face)
2752         (compilation-column-face): Use them.
2754         * facemenu.el (facemenu-add-face): Warn when font-lock is active.
2756         * comint.el (comint-password-prompt-regexp): Accept ", try again".
2758         * bindings.el (global-map): Bind insertchar and its variants.
2760 2005-06-27  Richard M. Stallman  <rms@gnu.org>
2762         * textmodes/artist.el (artist-text-overwrite)
2763         (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
2765 2005-06-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2767         * ps-print.el: It was not working the page selection for printing.
2768         Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
2769         (ps-print-version): New version 6.6.7.
2770         (ps-end-sheet): New fun.
2771         (ps-header-sheet, ps-end-job): Call it.
2773 2005-06-27  Luc Teirlinck  <teirllm@auburn.edu>
2775         * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
2777 2005-06-27  Lute Kamstra  <lute@gnu.org>
2779         * facemenu.el (facemenu-unlisted-faces): Add foreground and
2780         background color faces.
2781         (facemenu-get-face): Delete function.
2782         (facemenu-set-face-from-menu): Don't call facemenu-get-face.
2783         (facemenu-add-new-color): Make second argument mandatory.
2784         Create the appropriate face and return it.  Simplify.
2785         (facemenu-set-foreground, facemenu-set-background): Don't check if
2786         color is defined.  Use return value of facemenu-add-new-color.
2788 2005-06-26  Nick Roberts  <nickrob@snap.net.nz>
2790         * progmodes/gud.el (gud-filter): Add missing argument to
2791         with-selected-window.
2793 2005-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2795         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
2796         a :require to the defcustom.
2798         * emacs-lisp/autoload.el (make-autoload): Add the :setter for
2799         defcustoms corresponding to minor modes.
2801 2005-06-26  David Ponce  <david@dponce.com>
2803         * recentf.el: Require tree-widget instead of wid-edit.
2804         (recentf-filename-handler): Fix widget :type.
2805         (recentf-cancel-dialog, recentf-open-more-files)
2806         (recentf-open-files-action): Doc fix.
2807         (recentf-dialog-goto-first): New function.
2808         (recentf-dialog-mode-map): Set parent keymap first.
2809         (recentf-dialog-mode): Define with define-derived-mode.
2810         Don't display continuation lines in dialogs.
2811         (recentf-edit-list): Rename from recentf-edit-selected-items.
2812         (recentf-edit-list-select): Rename from recentf-edit-list-action.
2813         Simplify.
2814         (recentf-edit-list-validate): New function.
2815         (recentf-edit-list): Update accordingly.
2816         (recentf-open-files-item-shift): Remove.
2817         (recentf-open-files-item): Convert menu elements into tree and
2818         link widgets.  Don't create the widgets.
2819         (recentf-open-files): Update accordingly.
2820         (recentf-save-list): Untabify.
2822 2005-06-25  Luc Teirlinck  <teirllm@auburn.edu>
2824         * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
2825         (keep-lines): Add INTERACTIVE arg.  Never delete lines only
2826         partially contained in the active region.  Do not take active
2827         region into account when called from Lisp, unless INTERACTIVE arg
2828         is non-nil.  Use `forward-line' instead of `beginning-of-line' to
2829         avoid trouble with fields.  Make marker point nowhere when no
2830         longer used.  Always return nil.  Doc fix.
2831         (flush-lines): Add INTERACTIVE arg.  Do not take active region
2832         into account when called from Lisp, unless INTERACTIVE arg is
2833         non-nil.  Use `forward-line' instead of `beginning-of-line' to
2834         avoid trouble with fields.  Make marker point nowhere when no
2835         longer used.  Always return nil.  Doc fix.
2836         (how-many): Add INTERACTIVE arg.  Make RSTART and REND args
2837         interchangeable.  Do not take active region into account when
2838         called from Lisp, unless INTERACTIVE arg is non-nil.  Do not print
2839         message in echo area when called from Lisp, unless INTERACTIVE arg
2840         is non-nil.  Avoid saying "1 occurrences".  Do not use markers.
2841         Return the number of matches.  Doc fix.
2842         (occur): Doc fix.
2843         (perform-replace): Make comment follow double space convention for
2844         the sake of `outline-minor-mode'.
2846         * faces.el (facep): Doc fix.
2848 2005-06-25  Richard M. Stallman  <rms@gnu.org>
2850         * facemenu.el (facemenu-enable-faces-p): New function.
2851         (facemenu-background-menu, facemenu-foreground-menu)
2852         (facemenu-face-menu): Add menu-enable property.
2854         * jka-compr.el (jka-compr-insert-file-contents):
2855         Special handling if cannot find the uncompression program.
2857         * cus-face.el (custom-face-attributes): Add autoload.
2859         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2860         Bind comment-indent-function locally.
2862         * window.el (save-selected-window): Use save-current-buffer.
2864         * subr.el (with-selected-window): Use save-current-buffer.
2866         * progmodes/gud.el (gud-filter): Simplify using with-selected-window
2867         and with-current-buffer.
2869 2005-06-24  Richard M. Stallman  <rms@gnu.org>
2871         * simple.el (line-move-1): Fix previous change.
2873 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
2875         * replace.el (occur-1): Set `buffer-read-only' and the
2876         buffer-modified flag before running `occur-hook' to protect
2877         against unintentional buffer switches that can lead to data loss.
2879 2005-06-24  Nick Roberts  <nickrob@snap.net.nz>
2881         * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
2882         (gud-gdb-marker-filter): Use font-lock-warning-face for any
2883         initial error.
2885         * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
2886         after fresh input.
2887         (gdb-var-create-handler): Put name of expression in quotes.
2889 2005-06-23  Luc Teirlinck  <teirllm@auburn.edu>
2891         * emacs-lisp/ring.el (ring-elements): Make it return a list of the
2892         elements of RING in order, and without bogus nil elements.
2894 2005-06-23  Richard M. Stallman  <rms@gnu.org>
2896         * simple.el (set-variable): Args renamed; doc fix.
2897         (line-move-1): When there are overlays around, use vertical-motion.
2899         * faces.el (escape-glyph): Use brown against light background.
2900         (nobreak-space): Rename from no-break-space.
2901         Fix previous change.
2903         * dired-aux.el (dired-do-copy): Fix arg prompt.
2905         * mail/sendmail.el (mail-setup-with-from): Fix custom type.
2907 2005-06-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
2909         * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
2910         rather than "Distributor".
2912 2005-06-23  Lute Kamstra  <lute@gnu.org>
2914         * emacs-lisp/debug.el (debugger-special-form-p): New defun.
2915         (debug-on-entry): Use it.  New interactive declaration that uses
2916         function-called-at-point.
2918 2005-06-23  Kim F. Storm  <storm@cua.dk>
2920         * subr.el (save-match-data): Add comment about using evaporate arg
2921         to set-match-data.
2923 2005-06-22  Glenn Morris  <gmorris@ast.cam.ac.uk>
2925         * cus-edit.el (customize-face)
2926         (customize-face-other-window): Handle face aliases.
2928         * faces.el (face-documentation, set-face-attribute)
2929         (face-spec-set): Handle face aliases.
2931 2005-06-22  Juanma Barranquero  <lekktu@gmail.com>
2933         * help-mode.el (help-make-xrefs): If a symbol representing a face
2934         name is not followed by the word "face", it could still be a
2935         function or variable name, so don't bypass other checks.
2937 2005-06-22  Juri Linkov  <juri@jurta.org>
2939         * ps-print.el (ps-face-foreground-name, ps-face-background-name):
2940         Replace aliased functions with calls where second arg `inherit' is t.
2942 2005-06-22  Nick Roberts  <nickrob@snap.net.nz>
2944         * progmodes/gdb-ui.el (gdb-error): New variable.
2945         (gdb-error): New function.
2946         (gdb-annotation-rules): Act on error-begin and error annotations.
2947         (gdb-concat-output): Use font-lock-warning-face for errors.
2949 2005-06-22  Miles Bader  <miles@gnu.org>
2951         * bindings.el (propertized-buffer-identification): Use renamed
2952         `Buffer-menu-buffer' face.
2954         * faces.el (vertical-border): Rename from `vertical-divider'.
2955         (escape-glyph): Change dark-background color back to `cyan'.
2957 2005-06-21  Juri Linkov  <juri@jurta.org>
2959         * faces.el (face-user-default-spec): Try getting `customized-face'
2960         prior to `saved-face'.
2961         (frame-background-mode): Refill docstring.
2963         * emacs-lisp/lisp-mode.el (eval-defun-1):
2964         * emacs-lisp/edebug.el (edebug-eval-defun):
2965         Set `saved-face' temporarily to nil before calling form.
2966         Set `customized-face' to the new spec after that.
2968 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
2970         * subr.el (1value, lambda, key-substitution-in-progress):
2971         Doc fixes.
2973         * autoinsert.el (auto-insert-alist):
2974         * ses.el (ses-call-printer):
2975         * subr.el (noreturn):
2976         * emacs-lisp/lisp.el (check-parens):
2977         * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
2978         * net/browse-url.el (browse-url-mosaic):
2979         * progmodes/cc-defs.el (c-safe-scan-lists):
2980         * progmodes/ebnf-abn.el (ebnf-abn-lex):
2981         * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
2982         * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
2983         * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
2984         * progmodes/ebnf-iso.el (ebnf-iso-lex):
2985         * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
2987 2005-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
2989         * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
2991 2005-06-21  Glenn Morris  <gmorris@ast.cam.ac.uk>
2993         * calendar/appt.el (appt-make-list): Activate the package, if
2994         not already active (for backwards compatibility).
2996 2005-06-20  Kim F. Storm  <storm@cua.dk>
2998         * subr.el (add-to-ordered-list): Test membership with eq.  Simplify.
3000 2005-06-20  Miles Bader  <miles@gnu.org>
3002         * faces.el (vertical-divider): New face.
3004 2005-06-20  Juanma Barranquero  <lekktu@gmail.com>
3006         * simple.el (kill-whole-line): Doc fix.
3007         (next-error-buffer-p, next-error-find-buffer)
3008         (clone-indirect-buffer): Fix typos in docstrings.
3009         (comment-line-break-function): Doc fix: don't say variable
3010         is automatically buffer-local (it isn't).
3012 2005-06-19  Michael Albinus  <michael.albinus@gmx.de>
3014         * net/tramp-ftp.el (top):
3015         * net/tramp-smb.el (top):
3016         * net/tramp-util.el (top):
3017         * net/tramp-uu.el (top):
3018         * net/tramp-vc.el (top):
3019         * net/tramp.el (top): Revert copyright years back to original
3020         ones.  Tramp has a life outside GNU Emacs.
3022 2005-06-19  Nick Roberts  <nickrob@snap.net.nz>
3024         * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
3026 2005-06-18  Juri Linkov  <juri@jurta.org>
3028         * progmodes/grep.el (grep-regexp-alist): Use backreference at the
3029         end of first regexp to limit the match to the position between
3030         line number and source line with same separator character as used
3031         between file name and line number.  In the second regexp limit
3032         mouse-face area to file name and line number by adding new group
3033         for them and referring it in HYPERLINK arg.
3034         (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
3035         (grep-mode): Set font-lock-lines-before to 0 to not refontify the
3036         previous line where grep markers may be already removed.
3038 2005-06-18  Peter Kleiweg  <p.c.j.kleiweg@rug.nl>
3040         * progmodes/ps-mode.el: Update version and maintainer's email address.
3042 2005-06-18  Steve Youngs  <steve@xemacs.org>
3044         * net/browse-url.el (browse-url-browser-function)
3045         (browse-url-default-browser): Add firefox.
3046         (browse-url-firefox-program, browse-url-firefox-arguments)
3047         (browse-url-firefox-startup-arguments)
3048         (browse-url-firefox-new-window-is-tab): New defcustoms.
3049         (browse-url-firefox, browse-url-firefox-sentinel): New functions.
3051 2005-06-17  Richard M. Stallman  <rms@gnu.org>
3053         * startup.el (command-line): Warn if specified user name has
3054         no home directory.
3056         * term.el (term-get-old-input, term-input-filter, term-input-sender)
3057         (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
3059         * longlines.el (longlines-mode, longlines-show-hard-newlines):
3060         Doc fixes.
3062         * faces.el (underline): Try bold if terminal doesn't support underline.
3064         * mail/sendmail.el (mail-setup-with-from): New variable.
3065         (mail-insert-from-field): New function.
3066         (sendmail-send-it): Call it.
3067         (mail-setup): Optionally call it here.
3069         * term/linux.el: Call tty-no-underline.
3071 2005-06-17  Luc Teirlinck  <teirllm@auburn.edu>
3073         * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
3075 2005-06-17  Miles Bader  <miles@gnu.org>
3077         * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
3078         (ediff-current-diff-C, ediff-current-diff-Ancestor)
3079         (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
3080         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
3081         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
3082         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
3083         Remove "-face" suffix from face names.
3084         (ediff-current-diff-face-A, ediff-current-diff-face-B)
3085         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
3086         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
3087         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
3088         (ediff-even-diff-face-A, ediff-even-diff-face-B)
3089         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
3090         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
3091         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
3092         New backward-compatibility aliases for renamed faces.
3093         (ediff-current-diff-face-A, ediff-current-diff-face-B)
3094         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
3095         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
3096         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
3097         (ediff-even-diff-face-A, ediff-even-diff-face-B)
3098         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
3099         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
3100         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
3101         Use renamed ediff faces.
3103         * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
3104         Remove "-face" suffix from face names.
3105         (eshell-test-ok-face, eshell-test-failed-face):
3106         New backward-compatibility aliases for renamed faces.
3107         (eshell-run-test): Use renamed eshell-test faces.
3109         * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
3110         face name.
3111         (eshell-prompt-face): New backward-compatibility alias for renamed
3112         face.
3113         (eshell-emit-prompt): Use renamed eshell-prompt face.
3115         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
3116         (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
3117         (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
3118         (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
3119         Remove "-face" suffix from face names.
3120         (eshell-ls-directory-face, eshell-ls-symlink-face)
3121         (eshell-ls-executable-face, eshell-ls-readonly-face)
3122         (eshell-ls-unreadable-face, eshell-ls-special-face)
3123         (eshell-ls-missing-face, eshell-ls-archive-face)
3124         (eshell-ls-backup-face, eshell-ls-product-face)
3125         (eshell-ls-clutter-face):
3126         New backward-compatibility aliases for renamed faces.
3127         (eshell-ls-decorated-name): Use renamed eshell-ls faces.
3129         * progmodes/cc-fonts.el (c-nonbreakable-space-face):
3130         Remove "-face" suffix from face name.
3131         (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
3132         instead of literal face.
3134 2005-06-17  Juanma Barranquero  <lekktu@gmail.com>
3136         * emacs-lisp/warnings.el (display-warning, lwarn)
3137         (warning-minimum-log-level): Doc fixes.
3138         (warning-minimum-level, warning-minimum-log-level):
3139         Add :debug to :type choices.
3141         * progmodes/ada-mode.el (ada-format-paramlist)
3142         (ada-get-indent-case, ada-check-matching-start)
3143         (ada-check-defun-name, ada-goto-matching-decl-start)
3144         (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
3145         (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
3146         (ada-make-subprogram-body): Follow error conventions.
3147         (ada-case-exception-file, ada-indent-comment-as-code)
3148         (ada-indent-handle-comment-special, ada-indent-renames)
3149         (ada-indent-return, ada-search-directories-internal)
3150         (ada-tab-policy, ada-case-exception-substring)
3151         (ada-other-file-alist, ada-matching-start-re)
3152         (ada-matching-decl-start-re, ada-contextual-menu-last-point)
3153         (ada-imenu-generic-expression, ada-compile-goto-error)
3154         (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
3155         (ada-popup-menu, ada-add-extensions, ada-mode)
3156         (ada-region-selected, ada-create-case-exception)
3157         (ada-create-case-exception-substring, ada-after-keyword-p)
3158         (ada-activate-keys-for-case, ada-adjust-case-region)
3159         (ada-adjust-case-buffer, ada-format-paramlist)
3160         (ada-scan-paramlist, ada-insert-paramlist)
3161         (ada-indent-newline-indent)
3162         (ada-indent-newline-indent-conditional)
3163         (ada-justified-indent-current, ada-goto-previous-word)
3164         (ada-indent-current, ada-get-indent-open-paren)
3165         (ada-get-indent-paramlist, ada-get-indent-end)
3166         (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
3167         (ada-get-indent-block-start, ada-get-indent-subprog)
3168         (ada-get-indent-noindent, ada-get-indent-label)
3169         (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
3170         (ada-search-prev-end-stmt, ada-goto-next-non-ws)
3171         (ada-goto-stmt-end, ada-goto-next-word)
3172         (ada-check-matching-start, ada-check-defun-name)
3173         (ada-goto-matching-decl-start, ada-goto-matching-start)
3174         (ada-goto-matching-end, ada-search-ignore-string-comment)
3175         (ada-in-decl-p, ada-looking-at-semi-or)
3176         (ada-looking-at-semi-private, ada-in-paramlist-p)
3177         (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
3178         (ada-untab-hard, ada-move-to-start, ada-move-to-end)
3179         (ada-next-procedure, ada-previous-procedure, ada-next-package)
3180         (ada-previous-package, ada-create-menu)
3181         (ada-fill-comment-paragraph-justify)
3182         (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
3183         (ada-other-file-name, ada-last-which-function-line)
3184         (ada-last-which-function-subprog, ada-which-function)
3185         (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
3186         (ada-gen-treat-proc, ada-check-emacs-version)
3187         (ada-continuation-indent, ada-align-region-separate):
3188         Fix typos in docstrings.
3189         (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
3191 2005-06-16  Lute Kamstra  <lute@gnu.org>
3193         * simple.el (fundamental-mode): Run after-change-major-mode-hook
3194         conditionally.
3196 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
3198         * comint.el (comint-replace-by-expanded-filename)
3199         (comint-prompt-regexp, comint-delimiter-argument-list)
3200         (comint-preinput-scroll-to-bottom):
3201         * info.el (Info-hide-cookies-node):
3202         * ls-lisp.el (ls-lisp-classify):
3203         * find-file.el (ff-search-directories, ff-special-constructs)
3204         (ff-find-other-file):
3205         * font-lock.el (font-lock-keywords):
3206         * shell.el (shell-prompt-pattern)
3207         (shell-dynamic-complete-functions, shell-mode)
3208         (shell-delimiter-argument-list):
3209         * term.el (term-replace-by-expanded-filename)
3210         (term-prompt-regexp, term-delimiter-argument-list):
3211         * woman.el (woman-ignore, woman0-if):
3212         * emacs-lisp/derived.el (derived-mode-init-mode-variables):
3213         * emacs-lisp/elint.el (elint-init-env):
3214         * emacs-lisp/regexp-opt.el (regexp-opt-depth):
3215         * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
3216         * language/ethio-util.el (ethio-tilde-escape)
3217         (ethio-use-three-dot-question):
3218         * net/zone-mode.el (zone-mode-load-time-setup):
3219         * progmodes/cc-align.el (c-lineup-argcont):
3220         * progmodes/cc-awk.el (c-awk-beginning-of-defun):
3221         * progmodes/cperl-mode.el (cperl-set-style-back):
3222         * progmodes/inf-lisp.el (inferior-lisp-prompt):
3223         * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
3224         Fix spellings in docstrings.
3226         * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
3227         * progmodes/modula2.el (m2-for): Fix spellings.
3229         * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
3231         * simple.el (undo-more): Don't use `format' on `error' arguments.
3232         Improve argument/docstring consistency.
3233         (pending-undo-list): Doc fix.
3235         * smerge-mode.el (smerge-ensure-match):
3236         * emulation/vip.el (vip-ex):
3237         * net/zone-mode.el (zone-mode-update-serial):
3238         * progmodes/idlwave.el (idlwave-complete):
3239         * progmodes/vhdl-mode.el (vhdl-visit-file)
3240         (vhdl-compose-wire-components):
3241         Don't use `format' on `error' arguments.
3243         * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
3244         (tooltip-use-echo-area, tooltip-process-prompt-regexp)
3245         (tooltip-help-tips): Fix typos in docstrings.
3247 2005-06-16  David Ponce  <david@dponce.com>
3249         * tree-widget.el (tree-widget-value-create): Simplify last change.
3251 2005-06-15  Matt Hodges  <MPHodges@member.fsf.org>
3253         * ido.el (ido-incomplete-regexp): New variable.
3254         (ido-set-matches-1): Handle invalid-regexp error and set
3255         ido-incomplete-regexp.
3256         (ido-incomplete-regexp): New face.
3257         (ido-completions): Use it.
3258         (ido-complete, ido-exit-minibuffer, ido-completions):
3259         Handle incomplete regexps.
3260         (ido-completions): Add check for complete match when entering a regexp.
3262 2005-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3264         * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
3266 2005-06-15  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3268         * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
3269         by field delimiters.
3271 2005-06-15  David Ponce  <david@dponce.com>
3273         * tree-widget.el: eval-and-compile inlined functions so they will
3274         be available at run-time too.
3275         (tree-widget-super-format-handler)
3276         (tree-widget-format-handler): Remove.
3277         (tree-widget-value-create): Handle the :indent property.
3279 2005-06-15  Miles Bader  <miles@gnu.org>
3281         * progmodes/which-func.el (which-func): Only inherit
3282         `font-lock-function-name-face' when that makes sense against the
3283         default mode-line face, otherwise set the face color explicitly.
3285         * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
3286         faces instead of (non-existent) variables.
3288 2005-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3290         * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
3291         (iswitchb-get-matched-buffers): Likewise.  Simplify.
3293 2005-06-14  Miles Bader  <miles@gnu.org>
3295         * progmodes/ld-script.el (ld-script-location-counter):
3296         Remove "-face" suffix from face name.
3297         (ld-script-location-counter-face):
3298         New backward-compatibility alias for renamed face.
3299         (ld-script-location-counter-face): Use renamed face.
3301         * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
3302         (cperl-hash): Remove "-face" suffix from face names.
3303         (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
3304         New backward-compatibility aliases for renamed faces.
3305         (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
3306         (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
3308         * progmodes/which-func.el (which-func): Remove "-face" suffix from face
3309         name.
3310         (which-func-face): New backward-compatibility alias for renamed face.
3311         (which-func-format): Use renamed which-func face.
3313         * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
3314         (vhdl-function, vhdl-directive, vhdl-reserved-word)
3315         (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
3316         names.
3317         (vhdl-speedbar-entity, vhdl-speedbar-architecture)
3318         (vhdl-speedbar-configuration, vhdl-speedbar-package)
3319         (vhdl-speedbar-library, vhdl-speedbar-instantiation)
3320         (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
3321         (vhdl-speedbar-architecture-selected)
3322         (vhdl-speedbar-configuration-selected)
3323         (vhdl-speedbar-package-selected)
3324         (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
3325         names.
3326         (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
3327         Use renamed faces.
3328         (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
3329         (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
3330         (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
3331         Use renamed faces.
3332         (syntax-alist): Don't use "font-lock-" or "-face" in generated face
3333         names.
3334         (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
3335         (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
3336         (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
3337         (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
3338         (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
3339         (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
3341         * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
3342         face name.
3343         (sh-heredoc-face): New backward-compatibility alias for renamed face.
3344         (sh-heredoc-face): Use renamed sh-heredoc face.
3346         * progmodes/idlw-help.el (idlwave-help-link):
3347         Remove "-face" suffix from face name.
3348         (idlwave-help-link-face):
3349         New backward-compatibility alias for renamed face.
3350         (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
3352         * progmodes/idlw-shell.el (idlwave-shell-bp-face)
3353         (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
3354         (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
3355         New backward-compatibility aliases for renamed faces.
3356         (idlwave-shell-disabled-breakpoint-face)
3357         (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
3359         * progmodes/flymake.el (flymake-errline, flymake-warnline):
3360         Remove "-face" suffix from face names.
3361         (flymake-errline-face, flymake-warnline-face):
3362         New backward-compatibility aliases for renamed faces.
3363         (flymake-highlight-line): Use renamed flymake faces.
3365         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
3366         (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
3367         (ebrowse-member-class, ebrowse-progress):
3368         Remove "-face" suffix from face names.
3369         (ebrowse-tree-mark-face, ebrowse-root-class-face)
3370         (ebrowse-file-name-face, ebrowse-default-face)
3371         (ebrowse-member-attribute-face, ebrowse-member-class-face)
3372         (ebrowse-progress-face):
3373         New backward-compatibility aliases for renamed faces.
3374         (ebrowse-show-progress, ebrowse-show-file-name-at-point)
3375         (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
3376         (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
3377         (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
3379         * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
3380         antlr-syntax)
3381         (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
3382         (antlr-literal): Remove "-face" suffix and "font-lock-" from face
3383         names.
3384         (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
3385         (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
3386         (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
3387         (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
3388         backward-compatibility aliases for renamed faces.
3389         (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
3390         (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
3391         (antlr-tokenref-face, antlr-literal-face): Variables renamed to
3392         remove "font-lock-".  Use renamed antlr-mode faces.
3393         (antlr-font-lock-additional-keywords): Use renamed faces.  Replace
3394         literal face-names with face variable references.
3396         * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
3397         face name.
3398         (Buffer-menu-buffer-face): New backward-compatibility alias for
3399         renamed face.
3400         (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
3402 2005-06-15  Daniel Pfeiffer  <occitan@esperanto.org>
3404         * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
3405         Eliminate "-face" suffix.
3406         (makefile-targets): Inherit from font-lock-function-name-face and
3407         eliminate "-face" suffix.
3408         (makefile-shell): Remove attributes and eliminate "-face" suffix.
3409         (makefile-*-font-lock-keywords): Append makefile-targets in rule
3410         actions, instead of prepending, to make it less visible.
3411         (makefile-previous-dependency, makefile-match-dependency):
3412         Don't match a target on a continuation line.
3414         * files.el (auto-mode-alist): Put Makefile in gmake mode.
3416 2005-06-15  Nick Roberts  <nickrob@snap.net.nz>
3418         * progmodes/gdb-ui.el (menu): Re-order menu items.
3419         (gdb-tooltip-print): Respect tooltip-use-echo-area.
3421         * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
3422         Define in tooltip.el.
3423         (gud-tooltip-process-output): Respect tooltip-use-echo-area.
3424         (gud-tooltip-tips): Respect tooltip-use-echo-area and
3425         gud-tooltip-echo-area.
3427         * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
3428         backward compatibility and make obsolete.
3429         (tooltip-help-tips): Use tooltip-use-echo-area.
3430         (tooltip-show-help-function): Rename to...
3431         (tooltip-show-help): ...this, because it is a function.
3432         (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
3434 2005-06-14  Luc Teirlinck  <teirllm@auburn.edu>
3436         * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
3437         (edebug-print-length, edebug-print-level, edebug-print-circle)
3438         (edebug-modify-breakpoint, edebug-eval-last-sexp)
3439         (edebug-eval-print-last-sexp): Doc fixes.
3441 2005-06-14  Kim F. Storm  <storm@cua.dk>
3443         * ido.el (ido-mode): Make a new keymap every time we enable ido,
3444         as the coverage buffer/file/both may change.
3446 2005-06-14  Lute Kamstra  <lute@gnu.org>
3448         * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
3449         and run-mode-hooks.  Simplify.
3451         * mail/rmailedit.el (rmail-edit-mode):
3452         * progmodes/octave-inf.el (inferior-octave-mode):
3453         * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
3455         * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
3456         and run-mode-hooks.
3457         (recentf-edit-list, recentf-open-files): Don't call
3458         kill-all-local-variables directly.
3460         * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
3462 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
3464         * emacs-lisp/byte-run.el (make-obsolete)
3465         (define-obsolete-function-alias): Rename arguments FUNCTION and
3466         NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
3467         (make-obsolete-variable, define-obsolete-variable-alias):
3468         Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
3469         respectively.
3471         * isearchb.el (isearchb-activate):
3472         * pcvs.el (cvs-mode):
3473         * ses.el (ses-load):
3474         * vc-arch.el (vc-arch-checkin, vc-arch-diff):
3475         * net/tramp.el (tramp-find-file-exists-command)
3476         (tramp-find-shell):
3477         * progmodes/ada-mode.el (ada-create-case-exception)
3478         (ada-create-case-exception-substring, ada-make-subprogram-body):
3479         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
3480         * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
3481         * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
3482         * textmodes/org.el (org-promote, org-evaluate-time-range)
3483         (org-agenda-next-date-line, org-agenda-previous-date-line)
3484         (org-agenda-error, org-open-at-point, org-table-move-row)
3485         (org-format-table-table-html-using-table-generate-source)
3486         (org-shiftcursor-error, org-ctrl-c-ctrl-c):
3487         * textmodes/reftex.el (reftex-access-scan-info):
3488         * textmodes/reftex-toc.el (reftex-toc-dframe-p)
3489         (reftex-toc-promote-prepare): Follow error conventions.
3491         * diff-mode.el (diff-mode): Fix typo in docstring.
3493         * forms.el (forms--intuit-from-file): Fix reference to
3494         `forms-number-of-fields' in error message.
3495         (forms-print): Fix quoting in error message.
3497         * forms.el (forms-mode):
3498         * emulation/vi.el (vi-goto-insert-state):
3499         * progmodes/flymake.el (flymake-new-err-info)
3500         (flymake-start-syntax-check-for-current-buffer)
3501         (flymake-simple-cleanup):
3502         * eshell/esh-var.el (eshell/export):
3503         * progmodes/gud.el (xdb):
3504         * textmodes/flyspell.el (flyspell-incorrect-hook)
3505         (flyspell-maybe-correct-transposition)
3506         (flyspell-maybe-correct-doubling): Fix quoting in docstring.
3508 2005-06-13  Luc Teirlinck  <teirllm@auburn.edu>
3510         * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
3511         minibuffer prompt.
3513 2005-06-13  Kim F. Storm  <storm@cua.dk>
3515         * subr.el (add-to-ordered-list): New defun.
3517         * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
3518         add cua--keymap-alist to emulation-mode-map-alists.
3520 2005-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3522         * subr.el (complete-in-turn): New macro.
3523         (dynamic-completion-table, lazy-completion-table): Add debug info.
3525         * faces.el (read-face-name): Use complete-in-turn complete non-aliases
3526         in preference to face aliases.
3528         * textmodes/fill.el (fill-match-adaptive-prefix): New function.
3529         (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
3530         Remove unused vars `start' and `firstline'.
3531         (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
3532         (justify-current-line, fill-individual-paragraphs): Remove unused vars.
3534 2005-06-13  Eli Zaretskii  <eliz@gnu.org>
3536         * cus-start.el (all): Don't complain about missing GTK-related
3537         variables, unless either `gtk' is boundp or this isn't a
3538         `windows-nt' build.
3540 2005-06-13  Lute Kamstra  <lute@gnu.org>
3542         * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
3543         run-mode-hooks.
3545         * ediff-mult.el (ediff-meta-mode):
3546         * ediff-util.el (ediff-mode): Use run-mode-hooks.
3548         * ledit.el (ledit-mode): Use delay-mode-hooks.
3550         * woman.el (woman-mode-line-format): Delete constant.
3551         (woman-mode-map): Initialize it properly.
3552         (woman-mode): Set mode-class property to special.
3553         Use delay-mode-hooks and run-mode-hooks.  Use the right keymap.
3554         Set major-mode and mode-name.  Don't set mode-line-format directly.
3555         (Man-getpage-in-background): Don't reference woman-mode-line-format.
3557         * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
3558         string argument obsolete.
3560 2005-06-13  Carsten Dominik  <dominik@science.uva.nl>
3562         * textmodes/org.el (org-CUA-compatible): New option.
3563         (org-disputed-keys): New variable.
3564         (org-key): New function.
3565         (orgtbl-make-binding): Add docstring to the created function.
3566         (org-mode): Set paragraph start/separate regexps.
3567         (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
3568         (org-archive-location, org-archive-mark-done)
3569         (org-archive-stamp-time): New options.
3570         (org-archive-subtree): New command.
3571         (org-fill-paragraph): New function.
3572         (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
3573         (org-fake-empty-table-line): Function removed.
3574         (org-format-org-table-html): Do not create empty table lines at
3575         separator lines.  Improved table header treatment.
3576         (org-link-format): New option.
3577         (org-make-link): New function.
3578         (org-insert-link, org-store-link): Use org-make-link.
3579         (org-open-file): Quote file name for shell command, to allow
3580         spaces in file names.
3581         (org-link-regexp): Fix bug with mailto link.
3582         (org-link-maybe-angles-regexp, org-protected-link-regexp):
3583         New constants.
3584         (org-export-as-html): Deal with the optional angles around a link.
3585         Better treatment of file: links.
3586         (org-open-at-point): Replace @{ and @} with < and >.
3587         (org-run-mode-hooks): Function removed.
3588         (org-agenda-mode): No longer use `org-run-mode-hooks'.
3590 2005-06-13  Nick Roberts  <nickrob@snap.net.nz>
3592         * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
3593         MI command -data-list-register-values.
3594         (gdb-post-prompt): Indent properly.
3596 2005-06-13  Juanma Barranquero  <lekktu@gmail.com>
3598         * hilit-chg.el (highlight-changes-colors): Rename from
3599         `highlight-changes-colours'.
3600         (highlight-changes-colours): Keep as obsolete alias.
3601         (highlight-changes-face-list): Doc fix.
3602         (hilit-chg-make-list): Use `highlight-changes-colors'.
3604 2005-06-12  Mark A. Hershberger  <mah@everybody.org>
3606         * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
3607         defun-prompt-regexp.
3609 2005-06-12  Eli Zaretskii  <eliz@gnu.org>
3611         * loadup.el: Don't say we are dumping under 2 names on windows-nt
3612         and cygwin.
3614         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
3615         Don't use an old loaddefs.el, as in Makefile.in.
3617 2005-06-12  Lute Kamstra  <lute@gnu.org>
3619         * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
3621         * man.el (Man-mode-map): Initialize it properly.
3622         (Man-mode): Set mode-class property to special.
3624         * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
3626 2005-06-11  Luc Teirlinck  <teirllm@auburn.edu>
3628         * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
3629         A newline is needed in the docstring there.
3631         * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
3632         Doc fixes.
3634 2005-06-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3636         * printing.el: Doc fix.  The menubar is no more changed when printing
3637         is loaded, it only changes when pr-menu-bind or pr-update-menus is
3638         called.  Now, the menubar changing will work in Emacs 20, 21 and 22.
3639         (pr-version): New version number (6.8.4).
3640         (pr-menu-bind): New command.
3641         (pr-update-menus): Docstring and code fix.
3642         (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
3643         Docstring fix.
3644         (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
3645         (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
3647 2005-06-11  Thien-Thi Nguyen  <ttn@gnu.org>
3649         * emacs-lisp/ewoc.el: Doc fixes for public funcs:
3650         "Returns" to "return", document useful return values, etc.
3652 2005-06-11  Alan Mackenzie  <acm@muc.de>
3654         * fill.el (fill-context-prefix): Try `adaptive-fill-function'
3655         BEFORE `adaptive-fill-regexp' when determining a fill prefix.
3656         (adaptive-file-function): Minor amendment to doc-string.
3658 2005-06-11  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
3660         * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
3661         (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
3662         Fix :type--it is `integer', not `string'.
3664         * faces.el (modeline-highlight): Rename from (the erroneous)
3665         `modeline-higilight'.
3667 2005-06-11  Lute Kamstra  <lute@gnu.org>
3669         * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
3670         lisp-interaction-mode-map but make it the parent.
3671         (edebug-eval-mode): Use define-derived-mode.
3673 2005-06-11  Andreas Schwab  <schwab@suse.de>
3675         * bindings.el: Add binding of `ESC functionkey' for every
3676         `M-functionkey'.
3677         * hexl.el (hexl-mode-map): Likewise.
3679 2005-06-10  Michael Hotchin  <michael@hotchin.net>  (tiny change)
3681         * progmodes/compile.el (compilation-error-regexp-alist-alist)
3682         [msft]: update regexp for newer msft compilers.
3684 2005-06-10  Mark A. Hershberger  <mah@everybody.org>
3686         * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
3687         ATTLIST portions of included DTDs.
3688         (xml-parse-dtd): Eliminate use of inefficient match-data.
3690 2005-06-10  Miles Bader  <miles@gnu.org>
3692         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
3693         (mpuz-text): Remove "-face" suffix from face names.
3694         (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
3695         (mpuz-text-face): New backward-compatibility aliases for renamed faces.
3696         (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
3698         * play/gomoku.el (gomoku-O, gomoku-X):
3699         Remove "-face" suffix from face names.
3700         (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
3701         New backward-compatibility aliases for renamed faces.
3702         (gomoku-font-lock-keywords): Use renamed gomoku faces.
3704 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
3706         * thumbs.el: Fixes for changes of 2005-06-09.
3707         (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
3708         as a directory.
3709         (thumbs-thumbname): Remove directory separator from format string;
3710         `thumbs-thumbsdir' now returns a valid directory name.
3711         (thumbs-temp-dir): New defsubst.
3712         (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
3713         Use it.
3715         * cus-edit.el (minibuffer):
3716         * files.el (make-backup-file-name-function):
3717         * filesets.el (filesets-external-viewers):
3718         * hilit-chg.el (highlight-changes-colours)
3719         (highlight-changes-face-list, highlight-changes-rotate-faces):
3720         * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
3721         * kmacro.el (kmacro-call-macro):
3722         * log-edit.el (log-edit-changelog-full-paragraphs):
3723         * mouse.el (mouse-1-click-follows-link):
3724         * skeleton.el (skeleton-autowrap):
3725         * subr.el (insert-for-yank-1):
3726         * tempo.el (tempo-insert-region):
3727         * terminal.el (terminal-emulator):
3728         * time.el (display-time-mail-face):
3729         * vc.el (vc-annotate):
3730         * vcursor.el (vcursor-copy-line):
3731         * woman.el (woman-bold-headings, woman-ignore)
3732         (woman-default-faces, woman-monochrome-faces):
3733         * calendar/todo-mode.el (todo-insert-threshold):
3734         * emulation/pc-select.el (pc-select-selection-keys-only)
3735         (pc-selection-mode):
3736         * emulation/vip.el (vip-find-char-forward):
3737         * emulation/viper-cmd.el (viper-find-char-forward):
3738         * international/mule-cmds.el
3739         (select-safe-coding-system-accept-default-p)
3740         (input-method-exit-on-invalid-key):
3741         * international/mule-diag.el (describe-coding-system):
3742         * international/ucs-tables.el (unify-8859-on-encoding-mode):
3743         * net/browse-url.el (browse-url-xterm-program):
3744         * obsolete/lazy-lock.el (lazy-lock-mode):
3745         * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
3746         (cperl-mode):
3747         * progmodes/cpp.el (cpp-face-light-name-list)
3748         (cpp-face-dark-name-list):
3749         * progmodes/delphi.el (delphi-newline-always-indents):
3750         Fix spellings in docstrings.
3752         * ido.el (ido-mode, ido-file-extensions-order)
3753         (ido-default-file-method, ido-default-buffer-method)
3754         (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
3755         (ido-decorations, ido-read-file-name-as-directory-commands)
3756         (ido-read-file-name-non-ido, ido-work-directory-list)
3757         (ido-ignore-item-temp-list, ido-current-directory)
3758         (ido-magic-forward-char, ido-enter-find-file)
3759         (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
3760         (ido-find-file, ido-read-buffer): Fix typos in docstrings.
3762 2005-06-10  Lute Kamstra  <lute@gnu.org>
3764         * play/dunnet.el (dun-mode): Use define-derived-mode.
3765         (dungeon-mode-map): Rename to dun-mode-map.  Keep old name as an
3766         obsolete alias.
3768         * play/doctor.el (doctor-mode-map): Remove defvar.
3769         (doctor-mode): Use define-derived-mode.
3771         * mail/mspools.el (mspools-mode):
3772         * net/eudc-hotlist.el (eudc-hotlist-mode):
3773         * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
3775 2005-06-10  Miles Bader  <miles@gnu.org>
3777         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
3778         Remove "-face" suffix from face names.
3779         (flyspell-incorrect-face, flyspell-duplicate-face):
3780         New backward-compatibility aliases for renamed faces.
3781         (flyspell-mode-on, make-flyspell-overlay)
3782         (flyspell-highlight-incorrect-region)
3783         (flyspell-highlight-duplicate-region)
3784         (flyspell-display-next-corrections)
3785         (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
3787         * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
3788         from face name.
3789         (texinfo-heading-face): New backward-compatibility alias for
3790         renamed face.
3791         (texinfo-heading-face): Use renamed texinfo-heading face.
3793         * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
3794         suffix from face names.
3795         (tex-math-face, tex-verbatim-face):
3796         New backward-compatibility aliases for renamed faces.
3797         (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
3798         (tex-insert-quote): Use `tex-verbatim-face' variable instead of
3799         literal face name.
3801         * textmodes/table.el (table-cell): Remove "-face" suffix from face
3802         name.
3803         (table-cell-face): New backward-compatibility alias for renamed face.
3804         (table--put-cell-face-property, table--update-cell-face):
3805         Use renamed table-cell face.
3807         * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
3808         from face name.
3809         (sgml-namespace-face): New backward-compatibility alias for
3810         renamed face.
3811         (sgml-namespace-face): Use renamed sgml-namespace face.
3813         * textmodes/org.el (org-level-1, org-level-2, org-level-3)
3814         (org-level-4, org-level-5, org-level-6, org-level-7)
3815         (org-level-8, org-warning, org-headline-done)
3816         (org-deadline-announce, org-scheduled-today)
3817         (org-scheduled-previously, org-link, org-done, org-table)
3818         (org-time-grid): Remove "-face" suffix from face names.
3819         (org-level-1-face, org-level-2-face, org-level-3-face)
3820         (org-level-4-face, org-level-5-face, org-level-6-face)
3821         (org-level-7-face, org-level-8-face, org-warning-face)
3822         (org-headline-done-face, org-deadline-announce-face)
3823         (org-scheduled-today-face, org-scheduled-previously-face)
3824         (org-link-face, org-done-face, org-table-face)
3825         (org-time-grid-face):
3826         New backward-compatibility aliases for renamed faces.
3827         (org-level-faces, org-set-font-lock-defaults, org-timeline)
3828         (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
3829         (org-agenda-get-timestamps, org-agenda-get-scheduled)
3830         (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
3832         * emulation/viper-init.el (viper-search, viper-replace-overlay)
3833         (viper-minibuffer-emacs, viper-minibuffer-insert)
3834         (viper-minibuffer-vi): Remove "-face" suffix from face names.
3835         (viper-search-face, viper-replace-overlay-face)
3836         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
3837         (viper-minibuffer-vi-face):
3838         New backward-compatibility aliases for renamed faces.
3839         (viper-search-face, viper-replace-overlay-face)
3840         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
3841         (viper-minibuffer-vi-face): Use renamed viper faces.
3843         * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
3844         Remove "-face" suffix from face names.
3845         (testcover-nohits-face, testcover-1value-face):
3846         New backward-compatibility aliases for renamed faces.
3847         (testcover-mark): Use renamed testcover faces.
3849         * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
3850         face name.
3851         (diary-button-face): New backward-compatibility alias for renamed face.
3852         (diary-entry): Use renamed diary-button face.
3854         * calendar/calendar.el (diary, calendar-today, holiday)
3855         (mark-visible-calendar-date): Remove "-face" suffix from face names.
3856         (diary-face, calendar-today-face, holiday-face):
3857         New backward-compatibility aliases for renamed faces.
3858         (eval-after-load "facemenu", diary-entry-marker)
3859         (calendar-today-marker, calendar-holiday-marker, diary-face):
3860         Use renamed calendar faces.
3862         * compare-w.el (compare-windows): Remove "-face" suffix from face name.
3863         (compare-windows-face): New backward-compatibility alias for
3864         renamed face.
3865         (compare-windows-highlight): Use renamed compare-windows face.
3867         * strokes.el (strokes-char): Remove "-face" suffix from face name.
3868         (strokes-char-face): New backward-compatibility alias for renamed face.
3869         (strokes-encode-buffer): Use renamed strokes-char face.
3871         * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
3872         (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
3873         Remove "-face" suffix from face names.
3874         (cvs-header-face, cvs-filename-face, cvs-unknown-face)
3875         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
3876         (cvs-msg-face): New backward-compatibility aliases for renamed faces.
3877         (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
3878         Use renamed pcvs faces.
3879         * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
3880         * pcvs-defs.el (cvs-mode-map): Likewise.
3881         * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
3883         * info.el (info-title-1, info-title-2, info-title-3)
3884         (info-title-4): Remove "-face" suffix from and downcase face names.
3885         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
3886         (Info-title-4-face):
3887         New backward-compatibility aliases for renamed faces.
3888         (Info-fontify-node): Use renamed info faces.
3890         * hilit-chg.el (highlight-changes, highlight-changes-delete):
3891         Remove "-face" suffix from face names.
3892         (highlight-changes-face, highlight-changes-delete-face):
3893         New backward-compatibility aliases for renamed faces.
3894         (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
3895         (hilit-chg-make-list): Use renamed highlight-changes faces.
3897         * generic-x.el (show-tabs-tab, show-tabs-space):
3898         Remove "-face" suffix from face names.
3899         (show-tabs-tab-face, show-tabs-space-face):
3900         New backward-compatibility aliases for renamed faces.
3901         (show-tabs-generic-mode-font-lock-defaults-1)
3902         (show-tabs-generic-mode-font-lock-defaults-2):
3903         Use renamed show-tabs faces.
3905         * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
3906         (smerge-markers): Remove "-face" suffix from face names.
3907         (smerge-mine-face, smerge-other-face, smerge-base-face)
3908         (smerge-markers-face):
3909         New backward-compatibility aliases for renamed faces.
3910         (smerge-mine-face, smerge-other-face, smerge-base-face)
3911         (smerge-markers-face): Use renamed smerge faces.
3913         * log-view.el (log-view-file, log-view-message): Remove "-face"
3914         suffix from face names.
3915         (log-view-file-face, log-view-message-face): New
3916         backward-compatibility aliases for renamed faces.
3917         (log-view-file-face, log-view-message-face): Use renamed log-view
3918         faces.
3920         * paren.el (show-paren-match, show-paren-mismatch):
3921         Remove "-face" suffix from face names.
3922         (show-paren-match-face, show-paren-mismatch-face):
3923         New backward-compatibility aliases for renamed faces.
3924         (show-paren-function): Use renamed show-paren faces.
3926         * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
3927         (ruler-mode-margins, ruler-mode-fringes)
3928         (ruler-mode-column-number, ruler-mode-fill-column)
3929         (ruler-mode-comment-column, ruler-mode-goal-column)
3930         (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
3931         suffix from face names.
3932         (ruler-mode-default-face, ruler-mode-pad-face)
3933         (ruler-mode-margins-face, ruler-mode-fringes-face)
3934         (ruler-mode-column-number-face, ruler-mode-fill-column-face)
3935         (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
3936         (ruler-mode-tab-stop-face, ruler-mode-current-column-face): New
3937         backward-compatibility aliases for renamed faces.
3938         (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
3939         (ruler-mode-column-number, ruler-mode-fill-column)
3940         (ruler-mode-comment-column, ruler-mode-goal-column)
3941         (ruler-mode-tab-stop, ruler-mode-current-column)
3942         (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
3943         faces.
3945         * whitespace.el (whitespace-highlight): Remove "-face" suffix from
3946         face name.
3947         (whitespace-highlight-the-space): Use renamed face.
3948         (whitespace-highlight-face): New backward-compatibility alias for
3949         renamed face.
3951         * woman.el (woman-italic, woman-bold, woman-unknown)
3952         (woman-addition, woman-symbol-face):
3953         Remove "-face" suffix from face names.
3954         (woman-italic-face, woman-bold-face, woman-unknown-face)
3955         (woman-addition-face):
3956         New backward-compatibility aliases for renamed faces.
3957         (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
3958         (woman-decode-region, woman-replace-match)
3959         (woman-display-extended-fonts, woman-special-characters)
3960         (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
3961         Use renamed woman faces.
3963         * longlines.el (longlines-visible-face): Face removed.
3965         * diff-mode.el (diff-header, diff-file-header, diff-index)
3966         (diff-hunk-header, diff-removed, diff-added, diff-changed)
3967         (diff-function, diff-context, diff-nonexistent): Remove "-face"
3968         suffix from face names.
3969         (diff-header-face, diff-file-header-face, diff-index-face)
3970         (diff-hunk-header-face, diff-removed-face, diff-added-face)
3971         (diff-changed-face, diff-function-face, diff-context-face)
3972         (diff-nonexistent-face): New backward-compatibility aliases for
3973         renamed faces.
3974         (diff-header-face, diff-file-header-face)
3975         (diff-index, diff-index-face, diff-hunk-header)
3976         (diff-hunk-header-face, diff-removed, diff-removed-face)
3977         (diff-added, diff-added-face, diff-changed-face, diff-function)
3978         (diff-function-face, diff-context-face, diff-nonexistent)
3979         (diff-nonexistent-face): Use renamed diff-mode faces.
3981         * progmodes/compile.el (compilation-warning-face)
3982         (compilation-info-face): Remove "-face" suffix from face names.
3983         (compilation-warning-face, compilation-info-face):
3984         New backward-compatibility aliases for renamed faces.
3985         (compilation-warning-face, compilation-info-face):
3986         Use renamed compilation faces.
3988         * add-log.el (change-log-date, change-log-name)
3989         (change-log-email, change-log-file, change-log-list)
3990         (change-log-conditionals, change-log-function)
3991         (change-log-acknowledgement): Remove "-face" suffix from face names.
3992         (change-log-date-face, change-log-name-face)
3993         (change-log-email-face, change-log-file-face)
3994         (change-log-list-face, change-log-conditionals-face)
3995         (change-log-function-face, change-log-acknowledgement-face):
3996         New backward-compatibility aliases for renamed faces.
3997         (change-log-font-lock-keywords): Use renamed change-log faces.
3999         * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
4000         (custom-set, custom-changed, custom-saved, custom-button)
4001         (custom-button-pressed, custom-documentation, custom-state)
4002         (custom-comment, custom-comment-tag, custom-variable-tag)
4003         (custom-variable-button, custom-face-tag, custom-group-tag-1)
4004         (custom-group-tag): Remove "-face" suffix from face names.
4005         (custom-magic-alist, custom-magic-value-create)
4006         (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
4007         (custom-invalid-face, custom-rogue-face, custom-modified-face)
4008         (custom-set-face, custom-changed-face, custom-saved-face)
4009         (custom-button-face, custom-button-pressed-face)
4010         (custom-documentation-face, custom-state-face)
4011         (custom-comment-face, custom-comment-tag-face)
4012         (custom-variable-tag-face, custom-variable-button-face)
4013         (custom-face-tag-face, custom-group-tag-face-1)
4014         (custom-group-tag-face):
4015         New backward-compatibility aliases for renamed faces.
4017         * wid-edit.el (widget-documentation, widget-button)
4018         (widget-field, widget-single-line-field, widget-inactive)
4019         (widget-button-pressed): "-face" suffix removed from face names.
4020         (widget-documentation-face, widget-button-face)
4021         (widget-field-face, widget-single-line-field-face)
4022         (widget-inactive-face, widget-button-pressed-face):
4023         New backward-compatibility aliases for renamed faces.
4024         (widget-documentation-face, widget-button-face)
4025         (widget-button-pressed-face, widget-specify-field)
4026         (widget-specify-inactive): Use renamed widget faces.
4028 2005-06-10  Kenichi Handa  <handa@m17n.org>
4030         * term/x-win.el (x-clipboard-yank): Remove condition-case
4031         wrapping.
4033 2005-06-11  Kenichi Handa  <handa@m17n.org>
4035         * add-log.el (change-log-font-lock-keywords): Make the regexp for
4036         date lines stricter.
4038 2005-06-10  Zhang Wei  <id.brep@gmail.com>  (tiny change)
4040         * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
4041         of x-get-selection.
4043 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
4045         * comint.el (comint-mode, comint-snapshot-last-prompt):
4046         * frame.el (frame-current-scroll-bars):
4047         * term.el (term-mode, term-check-proc, term-input-sender)
4048         (term-simple-send, term-extract-string, term-word)
4049         (term-match-partial-filename):
4050         * window.el (window-current-scroll-bars):
4051         * emulation/cua-base.el (cua-normal-cursor-color)
4052         (cua-read-only-cursor-color, cua-overwrite-cursor-color)
4053         (cua-global-mark-cursor-color):
4054         * mail/undigest.el (rmail-forward-separator-regex):
4055         Fix typos in docstrings.
4057         * comint.el (comint-check-proc, make-comint-in-buffer)
4058         (comint-source-default): Doc fixes.
4060         * term.el (term-send-string): Improve argument/docstring
4061         consistency.
4063 2005-06-09  Luc Teirlinck  <teirllm@auburn.edu>
4065         * comint.el (comint-send-input): Bind `inhibit-read-only' around
4066         call to `delete-region'.
4067         (comint-mode-hook): Do not enable Font Lock by default.
4069 2005-06-09  Lute Kamstra  <lute@gnu.org>
4071         * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
4072         could be void.
4074 2005-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4076         * emacs-lisp/debug.el (debugger-will-be-back): New var.
4077         (debug): Use it.
4078         (debugger-step-through, debugger-continue, debugger-jump)
4079         (debugger-return-value): Set it when needed.
4080         (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
4081         Use inhibit-read-only.
4083 2005-06-09  Juanma Barranquero  <lekktu@gmail.com>
4085         * window.el (shrink-window-if-larger-than-buffer)
4086         (window-size-fixed): Fix typo in docstring.
4088         * thumbs.el: Don't set `auto-image-file-mode'.  Do not create the
4089         thumbnails directory on loading.
4090         (thumbs-conversion-program): Use `eq' to check the system type,
4091         not `equal'.
4092         (thumbs-temp-dir): Initialize to `temporary-file-directory',
4093         not "/tmp".  Fix docstring.
4094         (thumbs-thumbsdir): New function to return the thumbnails
4095         directory, creating it if needed.
4096         (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
4097         (thumbs-temp-file): Delete variable and make it into a function.
4098         (thumbs-resize-image, thumbs-modify-image): Use it.
4099         (thumbs-kill-buffer): Simplify.
4100         (thumbs-gensym): Defalias or duplicate CL `gensym'.
4101         (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
4102         docstrings.
4104 2005-06-09  Kim F. Storm  <storm@cua.dk>
4106         * subr.el (save-match-data): Add RESEAT arg `evaporate' to
4107         set-match-data to free markers in match-data.
4109         * replace.el (replace-match-data): Pass RESEAT arg `t' to
4110         match-data to unchain markers in match-data.
4112 2005-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4114         * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
4115         the debugger immediately anyway.  Undo the 2005-06-06 change, rendered
4116         unnecessary now.
4118 2005-06-08  Richard M. Stallman  <rms@gnu.org>
4120         * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
4121         give the variable a doc string that doesn't say don't set it directly.
4123         * textmodes/ispell.el (ispell-check-version):
4124         Use match-string-no-properties.
4125         (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
4126         (ispell-buffer-local-words): Likewise.
4128         * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
4129         except on terminals with enough colors to really display it.
4130         (makefile-dependency-regex): Delete spurious `bb'.
4132         * faces.el (escape-glyph): Use blue once again in last case.
4133         (no-break-space): Redefine so that it isn't invisible on a tty.
4135 2005-06-08  Kim F. Storm  <storm@cua.dk>
4137         * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
4138         also when reading directory name.
4140 2005-06-08  Lute Kamstra  <lute@gnu.org>
4142         * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
4143         (flyspell-mode-line-string): Remove autoload cookie.
4144         (flyspell-mode): Remove defvar.
4146 2005-06-07  Lute Kamstra  <lute@gnu.org>
4148         * textmodes/org.el (org-run-mode-hooks): New function.
4149         (org-agenda-mode): Use it.
4151 2005-06-07  David McCabe  <davemccabe@gmail.com>  (tiny change)
4153         * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
4155 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4157         * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
4159 2005-06-06  Luc Teirlinck  <teirllm@auburn.edu>
4161         * font-lock.el (font-lock-add-keywords): Doc fix.
4163 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4165         * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
4166         (tex-compile-default): In the absence of any history, use the order in
4167         tex-compile-alist to choose the preferred command.
4168         (tex-compile-commands): Reorder a bit.
4170         * textmodes/flyspell.el (flyspell-auto-correct-binding)
4171         (flyspell-incorrect-face, flyspell-duplicate-face):
4172         Use (X)Emacs-agnostic code.
4173         (flyspell-mode-map): Don't overwrite at each load.  Remove code
4174         redundant with the subsequent add-minor-mode.  Merge Emacs and
4175         XEmacs code.
4176         (flyspell-word): Minor simplification.
4177         (flyspell-math-tex-command-p): Quieten the byte-compiler.
4178         (flyspell-external-point-words): Remove unused vars `size' and
4179         `start'.
4180         (flyspell-do-correct): Rename from flyspell-xemacs-correct.  Merge
4181         the corresponding Emacs code.
4182         (flyspell-correct-word, flyspell-xemacs-popup): Use
4183         flyspell-do-correct.
4185         * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
4186         a dedicated window.
4188         * international/latexenc.el (latexenc-find-file-coding-system):
4189         Undo part of last patch, to turn off a compiler warning.
4191 2005-06-06  Juri Linkov  <juri@jurta.org>
4193         * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
4194         Rename `tmm-inactive-face' to `tmm-inactive'.
4196 2005-06-06  Matt Hodges  <MPHodges@member.fsf.org>
4198         * iswitchb.el: Rename faces.
4200 2005-06-06  Kim F. Storm  <storm@cua.dk>
4202         * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
4203         (cua-global-mark): Remove -face suffix from face names.
4205         * emulation/cua-gmrk.el (cua--init-global-mark):
4206         Remove cua-global-mark face setup.
4208 2005-06-06  Richard M. Stallman  <rms@gnu.org>
4210         * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
4211         just like other allowed characters.
4212         (makefile-match-dependency): Exclude leading and training whitespace
4213         from the range of regexp subexp 1.
4214         (makefile-macroassign-regex): Don't try to match the body,
4215         just the name of the macro being defined.
4217         * info.el (Info-read-node-name-2): New function.
4218         (Info-read-node-name-1): Use that.
4219         Add a completion-base-size-function property.
4221         * simple.el (completion-setup-function): Look for
4222         completion-base-size-function property of
4223         minibuffer-completion-table.
4225         * files.el (locate-file-completion): Doc fix.
4227         * printing.el: Don't call pr-update-menus; user must do that.
4229         * emacs-lisp/debug.el (debugger-window): New variable.
4230         (debug): Use debugger-window if it is set and still alive.
4231         Record debugger-window for next entry.
4233         * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
4235 2005-06-06  Matthias F\e,Av\e(Brste  <slashdevslashnull@gmx.net>
4237         * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
4238         (hack-one-local-variable, hack-local-variables)
4239         (hack-local-variables-prop-line): Pass that arg.
4241 2005-06-06  Kim F. Storm  <storm@cua.dk>
4243         * ido.el (ido-first-match, ido-only-match, ido-subdir)
4244         (ido-indicator): Remove -face suffix from face names.
4246 2005-06-06  Juri Linkov  <juri@jurta.org>
4248         * font-lock.el (font-lock-regexp-backslash)
4249         (font-lock-regexp-backslash-construct): New faces.
4250         (lisp-font-lock-keywords-2): Use new faces.  Match `?:' only
4251         after `('.  Add `while-no-input' to control structures.
4253         * faces.el (no-break-space, shadow): New faces.
4254         (escape-glyph): Use less loud colors pink2 and red4.
4256         * diff-mode.el (diff-context-face)
4257         * dired.el (dired-ignored)
4258         * rfn-eshadow.el (file-name-shadow)
4259         * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
4261         * info.el (Info-title-1-face): Use green instead of yellow because
4262         bold yellow is not readable on light backgrounds.
4264         * progmodes/compile.el (compilation-start): Move `erase-buffer' up
4265         before selecting the desired mode to not spend time fontifying
4266         old contents.
4268 2005-06-06  Juanma Barranquero  <lekktu@gmail.com>
4270         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
4271         (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
4273         * ps-print.el (ps-default-fg, ps-default-bg):
4274         Fix typos in docstrings.
4276         * isearchb.el (isearchb): Don't pass a spurious second argument to
4277         `iswitchb-completions'.
4279 2005-06-05  Nick Roberts  <nickrob@snap.net.nz>
4281         * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
4282         to preserve point.
4283         (gdb-find-file-hook): Add doc string.
4285         * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
4286         C dereferenced pointer expression.
4287         (gud-tool-bar-map): Put it on the tool bar.  Re-order icons.
4289         * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
4291         * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
4292         * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
4293         * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
4294         * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
4295         * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
4296         Make background transparent.
4298 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
4300         * font-lock.el (font-lock-add-keywords): Doc fix.  Comment change.
4301         (font-lock-remove-keywords): Doc fix.
4302         (font-lock-mode-major-mode): Compiler defvar.
4303         (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
4305         * font-core.el (font-lock-mode-major-mode): Compiler defvar.
4306         (font-lock-mode): Update `font-lock-mode-major-mode'.
4307         (font-lock-set-defaults): Compiler defvar.
4308         (font-lock-default-function): Take `font-lock-mode-major-mode'
4309         into account.
4311         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
4312         keep track of which major mode it enabled the minor mode for.
4313         Use find-file-hook again.  Update docstring.
4315         * simple.el (eval-expression-print-level)
4316         (eval-expression-print-length, eval-expression-debug-on-error):
4317         Doc fixes.
4319 2005-06-04  Matt Hodges  <MPHodges@member.fsf.org>
4321         * iswitchb.el (iswitchb-single-match-face)
4322         (iswitchb-current-match-face, iswitchb-virtual-matches-face)
4323         (iswitchb-invalid-regexp-face): New faces.
4324         (iswitchb-completions): Use them.
4325         (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
4326         now marked as an obsolete alias.
4327         (iswitchb-read-buffer): Remove check for bound font variables.
4328         (iswitchb-invalid-regexp): New free variable.
4329         (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
4330         set iswitchb-invalid-regexp.
4331         (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
4332         invalid regexps.
4333         (iswitchb-completions): Add check for complete match when entering
4334         a regexp.
4335         (iswitchb-completions): Remove require-match argument.
4336         (iswitchb-exhibit): Fix caller.
4337         (iswitchb-common-match-inserted): New variable.
4338         (iswitchb-complete, iswitchb-completion-help): Use it.
4340 2005-06-04  David Reitter  <david.reitter@gmail.com>  (tiny change)
4342         * url-http.el (url-http-chunked-encoding-after-change-function):
4343         Use `url-http-debug' instead of `message'.
4345 2005-06-04  Thierry Emery  <thierry.emery@free.fr>  (tiny change)
4347         * url-http.el (url-http-parse-headers): Pass redirected URL as a
4348         callback argument.
4350 2005-06-04  Kim F. Storm  <storm@cua.dk>
4352         * simple.el (line-move): Only call sit-for when moving backwards.
4354         * ido.el (ido-make-merged-file-list-1): New defun split from
4355         ido-make-merged-file-list.
4356         (ido-make-merged-file-list): Bind throw-on-input around call to
4357         ido-make-merged-file-list-1.  Return input-pending-p if
4358         interrupted by more input available.
4359         (ido-read-internal): Handle input-pending-p return value from
4360         ido-make-merged-file-list.
4362 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4364         * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
4365         compatibility code.
4367         * international/latexenc.el (latexenc-find-file-coding-system):
4368         Don't inherit the EOL part of the coding-system from the
4369         tex-main buffer.  Fit within 80 columns.
4371 2005-06-03  Matt Hodges  <MPHodges@member.fsf.org>
4373         * tmm.el (tmm-inactive-face): New face.
4374         (tmm-remove-inactive-mouse-face): New function.
4375         (tmm-prompt, tmm-add-one-shortcut)
4376         (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
4377         but not selectable.
4379 2005-06-03  Juanma Barranquero  <lekktu@gmail.com>
4381         * faces.el (face-equal): Improve argument/docstring consistency.
4383 2005-06-03  Daniel Pfeiffer  <occitan@esperanto.org>
4385         * progmodes/make-mode.el (makefile-targets-face)
4386         (makefile-shell-face, makefile-makepp-perl-face): Add :version.
4387         (makefile-bsdmake-dependency-regex)
4388         (makefile-makepp-rule-action-regex)
4389         (makefile-bsdmake-rule-action-regex): New constants.
4390         (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
4392         * progmodes/compile.el (compilation-error-regexp-alist-alist):
4393         Allow (...) within `...' for makepp messages.
4395 2005-06-03  Michael Kifer  <kifer@cs.stonybrook.edu>
4397         * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
4399         * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
4400         "." files are deleted from all file lists before comparison.
4402         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
4403         (viper-ESC-key): Made them customizable.
4405         * viper.el (viper-non-hook-settings): Fix the names of defadvices.
4407 2005-06-01  Luc Teirlinck  <teirllm@auburn.edu>
4409         * autorevert.el (auto-revert-buffers): Use save-match-data.
4411 2005-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4413         * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
4414         menu items with a nil command binding.
4416 2005-06-01  Juanma Barranquero  <lekktu@gmail.com>
4418         * emacs-lisp/cl-macs.el (defsetf):
4419         Improve argument/docstring consistency.
4421         * faces.el (list-faces-display): Improve the formatting by
4422         computing the maximum length required for any face-name (reworked
4423         patch of 1999-01-11, accidentally deleted on 1999-07-21).
4424         (internal-find-face): Remove redundant info in docstring.
4426 2005-06-01  Nick Roberts  <nickrob@snap.net.nz>
4428         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
4429         (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
4430         (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
4431         (gdb-assembler-custom): Improve regexps.
4432         (def-gdb-auto-update-handler): Use window point to preserve point.
4434 2005-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4436         * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
4438 2005-05-31  Jay Belanger  <belanger@truman.edu>
4440         * calc/calc-embed.el (calc-embedded-word): Change argument passed
4441         to calc-embedded.
4442         (calc-embedded-make-info): Have plain prefix argument select
4443         entire line.
4445 2005-05-31  Juanma Barranquero  <lekktu@gmail.com>
4447         * faces.el (list-faces-display): Signal error if passed a regexp
4448         that matches no face name.
4450         * simple.el (filter-buffer-substring): Fix typo in docstring.
4452 2005-05-31  Richard M. Stallman  <rms@gnu.org>
4454         * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
4455         (vhdl-emacs-21): Doc fix.
4456         (vhdl-mode): Unconditionally set comment-padding.
4457         (vhdl-fixup-whitespace-region): Insert spaces only where
4458         there are none.
4459         (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
4461 2005-05-30  John Wiegley  <johnw@newartisans.com>
4463         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
4464         * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
4465         * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
4466         `directory-sep-char' to ?/, and all uses of `string-to-int' to
4467         `string-to-number'.
4469 2005-05-30  Jay Belanger  <belanger@truman.edu>
4471         * calc/calc.el (calc-bug-address): Fix docstring.
4472         (calc-window-hook, calc-trail-window-hook): New variables.
4473         (calc-trail-display): Restore use of calc-trail-window-hook.
4474         (calc): Restore use of calc-window-hook.
4476 2005-05-31  Masatake YAMATO  <jet@gyve.org>
4478         * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
4480         * help-fns.el (help-C-file-name): Add autoload mark for
4481         `find-function-noselect'.
4483 2005-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4485         * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
4486         (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
4488 2005-05-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
4490         * calendar/diary-lib.el (mark-included-diary-files): Only kill
4491         included diary buffer if it was not already being visited.
4492         Reported by Stephen Berman <Stephen.Berman@gmx.net>.
4494         * calendar/icalendar.el (top-level): Do not require 'appt.
4496         * mail/supercite.el (sc-select-attribution): Only use a list
4497         element from sc-attrib-selection-list if it returns a string.
4498         Reported by Davide G. M. Salvetti <salve@debian.org>.
4500 2005-05-30  Juanma Barranquero  <lekktu@gmail.com>
4502         * thumbs.el (thumbs-thumbname): The resulting thumbname now
4503         includes a hash value to improve its uniqueness, and has a ".jpg"
4504         extension.  Also, it is now a valid filename on all systems.
4505         (thumbs-make-thumb): Use `let', not `let*'.
4506         (thumbs-show-thumbs-list): Check for JPEG availability.
4508 2005-05-30  Richard M. Stallman  <rms@gnu.org>
4510         * filesets.el (filesets-menu-ensure-use-cached):
4511         Prevent warning when emacs-version>= is undefined.
4513         * printing.el (pr-interactive-n-up): Use string-to-number.
4515         * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
4517         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
4518         Warn only when name to be defined is quoted.
4520 2005-05-30  Nick Roberts  <nickrob@snap.net.nz>
4522         * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
4523         Make regexp more robust.
4524         (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
4525         Force regeneration of disassembly.
4527 2005-05-29  Jay Belanger  <belanger@truman.edu>
4529         * calc/calc.el (calc-user-invocation): Check if
4530         calc-invocation-macro is non-nil.
4532 2005-05-29  Juri Linkov  <juri@jurta.org>
4534         * add-log.el (change-log-font-lock-keywords):
4535         Add `+' to e-mail regexp to accept mail address with keywords.
4537         * man.el (Man-name-regexp): Add `:' to accept qualified names.
4539 2005-05-29  Luc Teirlinck  <teirllm@auburn.edu>
4541         * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
4543         * ielm.el (inferior-emacs-lisp-mode): Ditto.
4545 2005-05-29  Richard M. Stallman  <rms@gnu.org>
4547         * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
4548         Undo the change that moves to end of the current word.
4550 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
4552         * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
4553         Throw error when count <= 0 to ensure input is a number.
4554         (gdb-read-memory-custom): Pick up address from buffer.
4555         (gdb-memory-mode): Allow user to increment and decrement
4556         memory address from header line.
4558 2005-05-29  Richard M. Stallman  <rms@gnu.org>
4560         * flyspell.el (flyspell-version): Function deleted.
4561         (flyspell-auto-correct-previous-hook): Doc fix.
4563         * jit-lock.el (jit-lock-function, jit-lock-after-change):
4564         Do nothing if memory is full.
4566         * font-lock.el (font-lock-fontify-syntactically-region):
4567         Pass t for GREEDY to looking-back.
4569         * saveplace.el (save-place-alist-to-file): Write the file
4570         using write-region.
4572         * subr.el (looking-back): New argument GREEDY.
4574         * progmodes/compile.el (compilation-start): Set the mode
4575         before inserting the initial text.
4577         * progmodes/which-func.el (which-func-update-1): Turn the mode
4578         off in case of error by setting which-func-mode.
4580 2005-05-29  Peter Heslin  <p.j.heslin@durham.ac.uk>  (tiny change)
4582         * flyspell.el (flyspell-auto-correct-previous-word):
4583         Narrow down to what's on the screen, and recenter overlays
4584         at the end of the next word.
4586 2005-05-29  Manuel Serrano  <Manuel.Serrano@sophia.inria.fr>
4588         * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
4589         (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
4590         (flyspell-abbrev-p): Default to nil.
4591         (flyspell-use-global-abbrev-table-p): Doc fix.
4592         (flyspell-large-region): Allow nil as value.
4593         (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
4595         (mail-mode-flyspell-verify): More robust handling
4596         of `mail-header-separator'.  More efficient signature detection.
4597         Allow for regexp metacharacters in message-header-separator.
4598         Adding `To' not to be checked in mail-mode-flyspell-verify.
4600         (flyspell-prog-mode): Run flyspell-prog-mode-hook.
4601         (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
4602         Bind flyspell-auto-correct-binding.
4603         Bind C-. and C-, .
4604         (flyspell-mode-map): Likewise.
4605         (flyspell-mode): Doc fix.
4606         (flyspell-accept-buffer-local-defs): Preserve current buffer.
4607         (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
4608         (flyspell-word-cache-result): New var, always local.
4609         (flyspell-check-pre-word-p): Doc fix.
4610         (flyspell-check-changed-word-p): Handle spc like newline.
4611         (flyspell-post-command-hook): Set flyspell-word-cache-result.
4612         (flyspell-word-search-backward, flyspell-word-search-forward):
4613         New functions.
4614         (flyspell-word): Return t if nothing to check.
4615         When parsing TeX code, check for after } or \.
4616         Use flyspell-word-search-backward to find previous word.
4617         Return nil if duplicated word.
4618         For word already checked, return same value as last time.
4619         Set flyspell-word-cache-result after checking.
4620         Don't clobber the return value.
4621         (flyspell-get-word): Major rewrite.
4622         (flyspell-external-point-words): New locals pword, pcount.
4623         Fix size used in progress message.
4624         Find the proper corresponding word in flyspell-large-region-buffer.
4625         (flyspell-region): Check for flyspell-large-region = nil.
4626         (flyspell-highlight-incorrect-region): Clean up overlays in region.
4627         (flyspell-auto-correct-word): Check that WORD is a cons.
4628         (flyspell-correct-word): Likewise.
4630 2005-05-29  Daniel Pfeiffer  <occitan@esperanto.org>
4632         * progmodes/make-mode.el (makefile-rule-action-regex)
4633         (makefile-macroassign-regex, makefile-makepp-mode)
4634         (makefile-bsdmake-mode): Continuation lines may be empty.
4635         Reported by Joshua Varner.
4636         (makefile-makepp-font-lock-keywords): Add $(stem).
4638 2005-05-28  Karl Berry  <karl@gnu.org>
4640         * textmodes/tex-mode.el: Now that tex-send-command calls
4641         shell-quote-argument (2005-03-31 change), remove all calls to
4642         shell-quote-argument; they all end up invoking tex-send-command.
4643         The double quoting loses on filenames with non-safe characters,
4644         such as "@".  Reported by Frederik Fouvry.
4646 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
4648         * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
4649         about preserving point.
4651 2005-05-27  Jay Belanger  <belanger@truman.edu>
4653         * calc/calc-misc.el (calc-info-goto-node): Use info instead of
4654         Info-goto-node.
4656         * calc/calc-embed.el (calc-embed-arg): New variable.
4657         (calc-do-embedded-activate, calc-embedded-activate-formula)
4658         (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
4659         variable by new variable.
4660         (calc-embedded-make-info): Replace undeclared variable by new
4661         variable.  When selecting region with positive prefix
4662         argument, use end of previous line instead of beginning of line.
4664         * calc/calc-aent.el (calc-arg-values): Declare it.
4666         * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
4667         Declare them.
4669         * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
4671         * calc/calc.el (calc-alg-map): Declare it.
4673         * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
4675 2005-05-28  Nick Roberts  <nickrob@snap.net.nz>
4677         * progmodes/gdb-ui.el (gdb-all-registers): New variable.
4678         (gdb-registers-buffer, toggle-gdb-all-registers):
4679         Toggle display of floating point registers.
4680         (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
4682         * progmodes/gud.el (gud-goto-info): Use info.  Don't use require.
4683         (toggle-gud-tooltip-dereference):
4684         Rename from gud-toggle-tooltip-dereference.
4686 2005-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4688         * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
4690 2005-05-27  Jay Belanger  <belanger@truman.edu>
4692         * calc/calc-prog.el (calc-kbd-report): Remove.
4693         (calc-kbd-query): Rewrite.
4695 2005-05-27  Juanma Barranquero  <lekktu@gmail.com>
4697         * image.el (image-library-alist): Move to image.c.
4698         (image-type-available-p): Doc fix.
4700 2005-05-27  Lute Kamstra  <lute@gnu.org>
4702         * calc/calc.el (calc):
4703         * outline.el (outline-1, outline-2, outline-3, outline-4)
4704         (outline-5, outline-6, outline-7, outline-8):
4705         * textmodes/dns-mode.el (dns-mode):
4706         * textmodes/sgml-mode.el (sgml-namespace-face):
4707         * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
4708         (tex-verbatim-face, tex-use-reftex):
4709         * textmodes/texinfo.el (texinfo-heading-face):
4710         Specify customization group.
4712         * longlines.el: Don't require easy-mmode.
4713         (longlines-visible-face): Specify customization group.
4715 2005-05-27  Kenichi Handa  <handa@m17n.org>
4717         * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
4718         encoding table of windows-1251.
4720         * international/ucs-tables.el (ucs-set-table-for-input):
4721         If translation-table-for-input of a coding system is a symbol, get
4722         its translation-table property.
4724         * international/code-pages.el: Don't register a coding system into
4725         non-iso-charset-alist more than once.
4726         (cp-make-coding-system): Likewise.
4728 2005-05-26  John Wiegley  <johnw@newartisans.com>
4730         * eshell/esh-cmd.el (eshell-eval-command): If the return value of
4731         `eshell-resume-eval' is wrapped in a list, it indicates that the
4732         command was run asynchronously.  In that case, unwrap the value
4733         before checking the delimiter value.
4735         * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
4736         character before a space at the end of a line is \, assume the space
4737         is part of the last argument rather than a final argument separator.
4739         * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
4740         is in use, and the target is `t' or `nil' (which are the most common
4741         values), don't assume that the symbol target is a buffer.
4743 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
4745         * calendar/calendar.el (calendar-mode-line-format):
4746         Use mode-line-highlight as mouse-face.
4748         * time.el (display-time-string-forms, display-time-update):
4749         Use mode-line-highlight as mouse-face.
4751 2005-05-26  Jay Belanger  <belanger@truman.edu>
4753         * calc/calc.el (calc-language-alist): Remove extra defvar.
4755 2005-05-26  Lute Kamstra  <lute@gnu.org>
4757         * arc-mode.el (archive-mode):
4758         * bookmark.el (bookmark-read-annotation-mode)
4759         (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
4760         * bs.el (bs-mode):
4761         * calc/calc-yank.el (calc-edit-mode):
4762         * calc/calc.el (calc-mode, calc-trail-mode):
4763         * calculator.el (calculator-mode):
4764         * chistory.el (command-history-mode):
4765         * comint.el:
4766         * cus-edit.el (custom-mode):
4767         * descr-text.el (describe-text-mode):
4768         * ebuff-menu.el (Electric-buffer-menu-mode):
4769         * ediff-util.el (ediff-mode):
4770         * emacs-lisp/re-builder.el (reb-mode):
4771         * emulation/vi.el (vi-mode-setup):
4772         * emulation/ws-mode.el (wordstar-mode):
4773         * eshell/esh-mode.el (eshell-mode):
4774         * forms.el (forms-mode):
4775         * help-mode.el (help-mode):
4776         * hexl.el (hexl-mode):
4777         * ibuffer.el (ibuffer-mode):
4778         * ielm.el (inferior-emacs-lisp-mode):
4779         * info.el (Info-mode, Info-edit-mode):
4780         * international/swedish.el:
4781         * ledit.el (ledit-from-lisp-mode):
4782         * locate.el (locate-mode):
4783         * mail/rmail.el (rmail-mode):
4784         * mail/rmailedit.el (rmail-edit-mode):
4785         * mail/rmailsum.el (rmail-summary-mode):
4786         * mail/supercite.el (sc-electric-mode):
4787         * net/eudc.el (eudc-mode):
4788         * net/quickurl.el (quickurl-list-mode):
4789         * net/snmp-mode.el (snmp-mode, snmpv2-mode):
4790         * obsolete/ooutline.el (outline-mode):
4791         * obsolete/options.el (Edit-options-mode):
4792         * obsolete/rnews.el (news-mode):
4793         * obsolete/rnewspost.el (news-reply-mode):
4794         * play/5x5.el (5x5-mode):
4795         * play/decipher.el (decipher-mode, decipher-stats-mode):
4796         * play/gomoku.el (gomoku-mode):
4797         * play/snake.el (snake-mode):
4798         * play/solitaire.el (solitaire-mode):
4799         * play/tetris.el (tetris-mode):
4800         * progmodes/ada-mode.el (ada-mode):
4801         * progmodes/antlr-mode.el (antlr-mode):
4802         * progmodes/autoconf.el (autoconf-mode):
4803         * progmodes/dcl-mode.el (dcl-mode):
4804         * progmodes/delphi.el (delphi-mode):
4805         * progmodes/ebrowse.el (ebrowse-tree-mode)
4806         (ebrowse-electric-list-mode, ebrowse-member-mode)
4807         (ebrowse-electric-position-mode):
4808         * progmodes/f90.el (f90-mode):
4809         * progmodes/fortran.el (fortran-mode):
4810         * progmodes/icon.el (icon-mode):
4811         * progmodes/idlw-help.el (idlwave-help-mode):
4812         * progmodes/idlw-shell.el (idlwave-shell-mode):
4813         * progmodes/idlwave.el (idlwave-mode):
4814         * progmodes/inf-lisp.el (inferior-lisp-mode):
4815         * progmodes/m4-mode.el (m4-mode):
4816         * progmodes/meta-mode.el (metafont-mode, metapost-mode):
4817         * progmodes/modula2.el (modula-2-mode):
4818         * progmodes/octave-inf.el (inferior-octave-mode):
4819         * progmodes/octave-mod.el (octave-mode):
4820         * progmodes/pascal.el (pascal-mode):
4821         * progmodes/sh-script.el (sh-mode):
4822         * progmodes/sql.el (sql-mode, sql-interactive-mode):
4823         * progmodes/vhdl-mode.el (vhdl-mode):
4824         * progmodes/xscheme.el (scheme-interaction-mode):
4825         * replace.el (occur-mode):
4826         * ses.el (ses-mode):
4827         * simple.el (completion-list-mode):
4828         * skeleton.el:
4829         * speedbar.el (speedbar-mode):
4830         * term.el (term-mode):
4831         * terminal.el (terminal-edit-mode):
4832         * textmodes/reftex-index.el (reftex-index-mode)
4833         (reftex-index-phrases-mode):
4834         * textmodes/reftex-sel.el (reftex-select-label-mode)
4835         (reftex-select-bib-mode):
4836         * textmodes/reftex-toc.el (reftex-toc-mode):
4837         * wdired.el (wdired-change-to-wdired-mode):
4838         * wid-browse.el (widget-browse-mode):
4839         Use run-mode-hooks.
4841         * array.el (array-mode):
4842         * calendar/todo-mode.el (todo-mode):
4843         * man.el (Man-mode):
4844         * play/landmark.el (lm-mode):
4845         * play/mpuz.el (mpuz-mode):
4846         Use kill-all-local-variables and run-mode-hooks.
4848         * subr.el (delay-mode-hooks): Specify indentation.
4850 2005-05-26  Mark A. Hershberger  <mah@everybody.org>
4852         * xml.el (xml-substitute-special): Don't die for undefined xml
4853         entities.
4855 2005-05-26  Jay Belanger  <belanger@truman.edu>
4857         * calc/calc-prog.el (calc-user-define-edit): Don't find substring
4858         of nil.
4860 2005-05-27  Nick Roberts  <nickrob@snap.net.nz>
4862         * progmodes/gdb-ui.el (gdb-frame-address):
4863         Rename from gdb-current-address.
4864         (gdb-previous-frame-address): Rename from gdb-previous-address.
4865         (gdb-selected-frame): Rename from gdb-current-frame.
4866         (gdb-get-selected-frame): Rename from gdb-get-current-frame.
4867         (gdb-frame-number): Rename from gdb-current-stack-level.
4868         (gdb-ann3): Match new mode-name for disassembly buffer.
4869         Extend initialization of variables.
4870         (gdb-post-prompt): Update disassembly from gdb-frame-handler.
4871         (gdb-memory-mode): Use mouse-face in header line.
4872         (gdb-assembler-buffer-name): Call it disassembly and give frame
4873         in mode line.
4874         (gdb-source-spec-regexp, gdb-assembler-custom)
4875         (gdb-invalidate-assembler, gdb-frame-handler):
4876         Make robust to leading zeroes in address format.
4878 2005-05-26  Carsten Dominik  <dominik@science.uva.nl>
4880         * textmodes/org.el (org-mode): Use `define-derived-mode' to
4881         define `org-mode'.
4882         (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
4884 2005-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4886         * log-edit.el (log-edit-changelog-entries): Distinguish between
4887         filenames like xfns.c and fns.c.
4889 2005-05-25  Luc Teirlinck  <teirllm@auburn.edu>
4891         * buff-menu.el (Buffer-menu-revert-function): Improve handling of
4892         point after reverting.
4893         (Buffer-menu-make-sort-button): Handle the case where
4894         `Buffer-menu-use-header-line' is nil.
4896 2005-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
4898         * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
4899         New funcs.  In minibuffer-local-completion-map bind `]', `/'
4900         and `:' to them.
4902 2005-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4904         * startup.el (normal-top-level): Allow modification of load-path while
4905         we're iterating over it.
4907 2005-05-25  Juanma Barranquero  <lekktu@gmail.com>
4909         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
4910         (thumbs-cleanup-thumbsdir, thumbs-call-convert)
4911         (thumbs-resize-interactive, thumbs-insert-image)
4912         (thumbs-insert-thumb, thumbs-dired-show-marked)
4913         (thumbs-find-image-at-point, thumbs-delete-images)
4914         (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
4915         (thumbs-increment-image-size, thumbs-decrement-image-size):
4916         Fix typos in docstrings.
4918 2005-05-24  Andre Spiegel  <spiegel@gnu.org>
4920         * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
4921         (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
4922         (cperl-mode): Use them.
4924 2005-05-24  Juanma Barranquero  <lekktu@gmail.com>
4926         * window.el (quit-window, shrink-window-if-larger-than-buffer):
4927         Doc fixes.
4929 2005-05-24  Nick Roberts  <nickrob@snap.net.nz>
4931         * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
4932         Bind C-d to gdb-inferior-io-eof.
4934         * dired.el (dired-dnd-popup-notice): Use message-box.
4936 2005-05-23  Masatake YAMATO  <jet@gyve.org>
4938         * bindings.el (mode-line-major-mode-keymap):
4939         Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
4941         * faces.el (mode-line-highlight): New face.
4943         * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
4944         as mouse-face.
4946         * bindings.el (top-level, help-echo, mode-line-modified)
4947         (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
4948         as mouse-face.
4950 2005-05-23  Juanma Barranquero  <lekktu@gmail.com>
4952         * progmodes/cc-engine.el (c-guess-basic-syntax):
4953         Remove spurious call to `zerop'.
4955         * emacs-lisp/cl.el (acons, pairlis): Add docstring.
4957 2005-05-23  Martin Stjernholm  <bug-cc-mode@gnu.org>
4959         CC Mode update to 5.30.10:
4961         * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
4962         could go past the limit in decoration level 2, thereby causing
4963         errors during interactive fontification.
4965         * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
4966         the file is evaluated interactively.
4968         * cc-engine.el (c-guess-basic-syntax): Handle operator
4969         declarations somewhat better in C++.
4971         * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
4972         make use of `run-mode-hooks' which has been added in Emacs 21.1.
4973         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
4974         (awk-mode): Use it.
4975         (make-local-hook): Suppress warning about obsoleteness.
4977         * cc-engine.el, cc-align.el, cc-cmds.el
4978         (c-append-backslashes-forward, c-delete-backslashes-forward)
4979         (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
4980         Compensate for return value from `forward-line' when it has moved
4981         but not to a different line due to eob.
4983         * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
4984         `objc-method-intro' and `objc-method-args-cont'.
4986 2005-05-23  Alan Mackenzie  <bug-cc-mode@gnu.org>
4988         CC Mode update to 5.30.10:
4990         * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
4991         in the copyright statement.  Incidentally, change "along with GNU
4992         Emacs" to "along with this program" where it occurs.
4994         * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
4995         so that it is interactive, hence can be found by M-x awk-mode
4996         whilst cc-mode is yet to be loaded.  Reported by Glenn Morris
4997         <gmorris+emacs@ast.cam.ac.uk>.
4999         * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
5000         Mode's regexps.
5002 2005-05-23  Kevin Ryde  <user42@zip.com.au>
5004         * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
5005         c-parse-state, to avoid a lisp error (on bad code).
5007 2005-05-23  Lute Kamstra  <lute@gnu.org>
5009         * subr.el (font-lock-defaults): Remove defvar as it's already
5010         defined in font-core.el.
5012         * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
5014 2005-05-23  Nick Roberts  <nickrob@snap.net.nz>
5016         * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
5017         more general and work when GDB variable "print pretty" is on,
5018         as with Emacs, for example.
5020 2005-05-22  Luc Teirlinck  <teirllm@auburn.edu>
5022         * font-core.el: Update comment.
5024         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
5025         Use `after-change-major-mode-hook' instead of `find-file-hook'.
5027         * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
5029 2005-05-22  Eli Zaretskii  <eliz@gnu.org>
5031         * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
5032         and `yank-handler' in the doc strings.
5034 2005-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5036         * emacs-lisp/cl.el (eql): Remove.  It's a builtin already.
5038 2005-05-22  Richard M. Stallman  <rms@gnu.org>
5040         * help.el (describe-key): Move print-help-return-message call
5041         out of conditional.
5043         * progmodes/etags.el (list-tags): Use with-no-warnings.
5045         * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
5046         (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
5047         (starttls-extra-args, starttls-extra-arguments): Add defvars.
5049         * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
5051         * language/viet-util.el (viet-viscii-nonascii-translation-table):
5052         Add defvar.
5054         * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
5055         Use defvar, not defconst.
5057         * hexl.el (hexl-follow-line): Use with-no-warnings.
5059         * emulation/tpu-extras.el: Use write-file-functions instead of
5060         write-file-hooks.
5062         * dired.el (dired-font-lock-keywords): Fontify files with junk
5063         extensions even if marked by -F.
5065 2005-05-22  Juanma Barranquero  <lekktu@gmail.com>
5067         * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
5068         (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
5069         * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
5070         (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
5071         (concatenate, list-length, get*, getf, cl-remprop):
5072         * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
5073         (etypecase, progv, lexical-let, lexical-let*)
5074         (multiple-value-bind, multiple-value-setq, shiftf):
5075         Improve argument/docstring consistency.
5077         * subr.el (focus-frame, unfocus-frame):
5078         Revert deletion on 2005-05-01.
5080 2005-05-22  Andre Spiegel  <spiegel@gnu.org>
5082         * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
5083         doesn't exist.
5085         * vc.el (vc-trunk-p): Add autoload cookie.  The function is used in
5086         vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
5088 2005-05-22  Nick Roberts  <nickrob@snap.net.nz>
5090         * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
5091         already deleted variables: auto-fill-hook, blink-paren-hook,
5092         lisp-indent-hook, inhibit-local-variables, unread-command-event,
5093         suspend-hooks, comment-indent-hook, meta-flag,
5094         before-change-function, after-change-function,
5095         font-lock-doc-string-face.
5097 2005-05-21  Luc Teirlinck  <teirllm@auburn.edu>
5099         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
5101 2005-05-21  Eli Zaretskii  <eliz@gnu.org>
5103         * mail/rmail.el (rmail-reply): Filter the list in reply-to through
5104         rmail-dont-reply-to.
5106 2005-05-21  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
5108         * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
5109         literal blank when splitting new-header-values.
5111 2005-05-21  Matt Hodges  <MPHodges@member.fsf.org>
5113         * calendar/cal-menu.el (cal-menu-update): Add separator as a
5114         string so that tmm doesn't create a completion entry for it.
5116         * textmodes/table.el (table-disable-menu): Ditto.
5118 2005-05-21  Richard M. Stallman  <rms@gnu.org>
5120         * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
5122         * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
5124         * net/rcompile.el (remote-compile): Use compilation-start.
5126         * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
5128 2005-05-21  Daniel Pfeiffer  <occitan@esperanto.org>
5130         * files.el (auto-mode-alist): Check GNUmakefile before makefile.
5131         Default to makefile-bsdmake-mode on BSD systems.
5133         * imenu.el (imenu-generic-expression, imenu--generic-function'):
5134         REGEXP may also be a search function now.  The part of doc-string
5135         for describing the structure was 95% identical to that of
5136         `imenu--generic-function'.  Unify it there.
5138         * progmodes/make-mode.el (makefile-imenu-generic-expression):
5139         Use function to find dependencies, because regexp alone is so complex,
5140         it easily goes into an endless loop.
5141         (makefile-makepp-mode): Also add submenu for Perl functions
5142         defined in the makefile.
5143         (makefile-bsdmake-mode): Special imenu-generic-expression no
5144         longer needed, due to function call.
5145         (makefile-match-dependency): Take BOUND into account when checking
5146         if we're through.
5148 2005-05-20  Jay Belanger  <belanger@truman.edu>
5150         * calc/calc-units.el (calc-invalidate-units-table):
5151         Use inhibit-read-only.
5152         (math-build-units-table-buffer): Use view-mode.
5154 2005-05-20  David Kastrup  <dak@gnu.org>
5156         * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
5157         easy-menu-add is not a nop on Emacs; and clarify when to call it.
5159 2005-05-20  Lute Kamstra  <lute@gnu.org>
5161         * diff-mode.el (diff-header-face, diff-file-header-face)
5162         (diff-index-face, diff-hunk-header-face, diff-removed-face)
5163         (diff-added-face, diff-changed-face, diff-function-face)
5164         (diff-context-face, diff-nonexistent-face): Put them in the
5165         diff-mode customization group.
5167 2005-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5169         * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
5171         * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
5173         * font-lock.el (lisp-font-lock-keywords-2): Don't error.
5174         Minor regexp-optimization.
5176 2005-05-20  Carsten Dominik  <dominik@science.uva.nl>
5178         * textmodes/org.el (org-agenda-toggle-time-grid): New command.
5179         (org-agenda-use-time-grid, org-agenda-time-grid): New options.
5180         (org-agenda-add-time-grid-maybe): New function.
5181         (org-agenda): Call `org-agenda-add-time-grid-maybe'.
5182         (org-table-create): `dotimes' instead of `mapcar'.
5183         (org-xor): Simplify implementation.
5184         (org-agenda): `inhibit-redisplay' turned on.
5185         (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
5186         a consistent line after a state change.
5187         (org-agenda-remove-times-when-in-prefix): New option.
5188         (org-prefix-has-time): New variable.
5189         (org-parse-time-string): Optional argument NODEFAULT.
5190         (org-format-agenda-item): Parse items for time-of-day
5191         specifications and move these into the prefix if possible.
5192         (org-agenda-priority): Get current heading, not previous heading
5193         during agenda remote editing.
5195 2005-05-20  Juanma Barranquero  <lekktu@gmail.com>
5197         * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
5198         (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
5199         (remove-duplicates, delete-duplicates, substitute)
5200         (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
5201         (nsubstitute-if-not, find, find-if, find-if-not, position)
5202         (position-if, position-if-not, count, count-if, count-if-not)
5203         (mismatch, search, sort*, stable-sort, merge, member*)
5204         (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
5205         (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
5206         (intersection, nintersection, set-difference, nset-difference)
5207         (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
5208         (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
5209         (nsublis, tree-equal): Improve argument/docstring consistency.
5211         * subr.el (send-string, send-region):
5212         Remove obsolescence declaration.
5213         (window-dot, set-window-dot, read-input, show-buffer)
5214         (eval-current-buffer, string-to-int):
5215         Add release number to obsolescence declarations.
5217 2005-05-19  Kim F. Storm  <storm@cua.dk>
5219         * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
5220         (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
5222 2005-05-20  Matt Hodges  <MPHodges@member.fsf.org>
5224         * faces.el (list-faces-display): Make back button respect optional
5225         regexp arg.
5227 2005-05-19  Juanma Barranquero  <lekktu@gmail.com>
5229         * calculator.el (calculator-radix-grouping-mode)
5230         (calculator-radix-grouping-digits, calculator-displayer)
5231         (calculator-radix-grouping-separator, calculator-copy-displayer):
5232         * dabbrev.el (dabbrev-search-these-buffers-only):
5233         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
5234         (diff-advance-after-apply-hunk, diff-mode-hook)
5235         (diff-minor-mode-prefix):
5236         * imenu.el (imenu-use-popup-menu):
5237         * jit-lock.el (jit-lock-context-time):
5238         * newcomment.el (comment-fill-column, comment-column)
5239         (comment-style, comment-padding, comment-multi-line)
5240         (comment-empty-lines, comment-auto-fill-only-comments):
5241         * reveal.el (reveal-around-mark):
5242         * uniquify.el (uniquify-buffer-name-style)
5243         (uniquify-after-kill-buffer-p)
5244         (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
5245         (uniquify-min-dir-content, uniquify-separator)
5246         (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
5247         * w32-vars.el (w32-fixed-font-alist):
5248         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
5249         * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
5250         * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
5251         * progmodes/perl-mode.el (perl-indent-level)
5252         (perl-continued-statement-offset, perl-continued-brace-offset)
5253         (perl-brace-offset, perl-brace-imaginary-offset)
5254         (perl-label-offset, perl-indent-continued-arguments)
5255         (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
5256         * progmodes/tcl.el (tcl-indent-level)
5257         (tcl-continued-indent-level, tcl-auto-newline)
5258         (tcl-tab-always-indent, tcl-electric-hash-style)
5259         (tcl-help-directory-list, tcl-use-smart-word-finder)
5260         (tcl-application, tcl-command-switches, tcl-prompt-regexp)
5261         (inferior-tcl-source-command):
5262         * textmodes/fill.el (enable-kinsoku):
5263         * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
5264         * textmodes/table.el (table-yank-handler):
5265         Specify missing group (and type, if simple) in defcustom.
5267 2005-05-19  Luc Teirlinck  <teirllm@auburn.edu>
5269         * progmodes/compile.el (compilation-finish-function): Fix defvar.
5271 2005-05-19  Richard M. Stallman  <rms@gnu.org>
5273         * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
5275         * subr.el (event-basic-type): Don't get an error.
5276         (left-fringe-p): Function deleted.
5278         * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
5279         (list-buffers-noselect): Set `font-lock-face' property, not `face'.
5281         * dired-aux.el (dired-copy-file-recursive): Handle symlinks
5282         in recursive copy.
5284         * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
5286         * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
5288         * emacs-lisp/bytecomp.el
5289         (byte-compile-file-form-custom-declare-variable): Call
5290         byte-compile-nogroup-warn if appropriate.
5292         * progmodes/compile.el (compilation-finish-function): Mark obsolete.
5293         (compilation-set-window): Don't call left-fringe-p; do it directly.
5295 2005-05-19  Jay Belanger  <belanger@truman.edu>
5297         * calc/calc-graph.el (calc-graph-format-data): Make sure
5298         var-PlotRejects is bound before trying to check its value.
5300 2005-05-19  Carsten Dominik  <dominik@science.uva.nl>
5302         * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
5303         definition of this variable from reftex-global.el to reftex.el,
5304         because it is needed in the menu.
5306 2005-05-19  Lute Kamstra  <lute@gnu.org>
5308         * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
5309         years are fixed.  Don't insert a space after a dash.
5311 2005-05-19  Kim F. Storm  <storm@cua.dk>
5313         * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
5315 2005-05-19  Daniel Pfeiffer  <occitan@esperanto.org>
5317         * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
5318         strings, because (eq ... ?\\) is fairly frequent.
5320         * progmodes/make-mode.el (makefile-add-this-line-targets):
5321         Simplify and integrate into `makefile-pickup-targets'.
5322         (makefile-add-this-line-macro): Simplify and integrate into
5323         `makefile-pickup-macros.
5324         (makefile-pickup-filenames-as-targets): Simplify.
5325         (makefile-previous-dependency, makefile-match-dependency):
5326         Don't stumble over `::'.
5328 2005-05-19  Nick Roberts  <nickrob@snap.net.nz>
5330         * subr.el (post-command-idle-hook, post-command-idle-delay):
5331         Remove obsoletion of post-command-idle-hook and
5332         post-command-idle-delay.
5334         * faces.el (list-faces-display): Provide button when describe-face
5335         is called to take user back to the list of faces.
5337         * help-fns.el (describe-variable): Remove hyperlinks in a
5338         variable's value as these are quite frequently inappropriate.
5340         * follow.el (follow-submit-feedback, follow-mode):
5341         Remove references to post-command-idle-hook.
5343 2005-05-18  Daniel Pfeiffer  <occitan@esperanto.org>
5345         * progmodes/make-mode.el (makefile-previous-dependency)
5346         (makefile-match-dependency): Check for := (and in bsd mode also
5347         !=) to give a better result, even when font-lock is not on.
5349 2005-05-18  Jay Belanger  <belanger@truman.edu>
5351         * calc/calc-help.el (calc-s-prefix-help):
5352         Add `calc-copy-special-constant' to help string.
5354 2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>
5356         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
5358 2005-05-18  Jay Belanger  <belanger@truman.edu>
5360         * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
5361         in linear factors are in proper order.
5363 2005-05-18  Carsten Dominik  <dominik@science.uva.nl>
5365         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
5366         Support for jurabib.
5368         * textmodes/reftex.el (featurep): Define aliases for overlay
5369         commands, for XEmacs compatibility, and use these aliases in
5370         overlay initializations.
5371         (reftex-highlight): Use `reftex-move-overlay'.
5372         (reftex-unhighlight): Use `reftex-delete-overlay'.
5373         (reftex-uniq): Function removed.  Use `reftex-uniquify' instead.
5374         (reftex-access-search-path): Use `reftex-uniquify' instead of
5375         `reftex-uniq'
5377         * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
5378         `before-string' property modification enables for Emacs as well.
5379         (reftex-select-item): Use `reftex-delete-overlay'.
5380         (reftex-select-mark): Use `reftex-make-overlay' and
5381         `reftex-overlay-put'.
5382         (reftex-select-unmark): Use `reftex-delete-overlay' and
5383         `reftex-overlay-put'.
5385 2005-05-18  Lute Kamstra  <lute@gnu.org>
5387         * emacs-lisp/lisp.el (check-parens): Fix docstring.
5389 2005-05-18  Juanma Barranquero  <lekktu@gmail.com>
5391         * add-log.el (add-change-log-entry):
5392         * array.el (array-make-template, array-reconfigure-rows)
5393         (array-init-max-row, array-init-max-column)
5394         (array-init-columns-per-line, array-init-field-width):
5395         * replace.el (replace-match-maybe-edit, perform-replace):
5396         * textmodes/spell.el (spell-region):
5397         Replace `read-input' by `read-string'.
5399         * forms.el (forms-mode):
5400         * finder.el (finder-compile-keywords):
5401         * shadowfile.el (shadow-read-files):
5402         Replace `eval-current-buffer' by `eval-buffer'.
5404         * terminal.el (te-pass-through):
5405         * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
5406         (ange-ftp-raw-send-cmd):
5407         * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
5408         (send-process-next-char, telnet-initial-filter, telnet):
5409         Replace `send-string' by `process-send-string'.
5411         * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
5412         (prolog-consult-region): Replace `send-string' by
5413         `process-send-string'; replace `send-region' by `process-send-region'.
5415         * progmodes/delphi.el (delphi-log-msg):
5416         Replace `set-window-dot' by `set-window-point'.
5418         * subr.el (window-dot, set-window-dot, read-input, send-string)
5419         (send-region, show-buffer, eval-current-buffer):
5420         Make really obsolete, as the comment says.
5422 2005-05-17  Kim F. Storm  <storm@cua.dk>
5424         * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
5425         (cua--init-keymaps): Bind C-return instead of S-return to set
5426         rectangle mark.
5428         * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
5429         instead of S-return to toggle/clear rectangle mark.
5431 2005-05-17  Daniel Pfeiffer  <occitan@esperanto.org>
5433         * progmodes/make-mode.el (makefile-dependency-skip): New variable.
5434         (makefile-macroassign-regex, makefile-make-font-lock-keywords):
5435         Also fontify plain strings assigned to variables, mostly so that a
5436         colon has a face and is thus not taken as a dependency separator.
5437         (makefile-previous-dependency): Inline the new matcher, because it
5438         is too complex to work in both directions.
5439         (makefile-match-dependency): Eliminate `backward' arg (see above).
5440         Completely reimplemented so as to not sometimes go into an endless
5441         loop.  It should also be more efficient, because first it only
5442         searches for `:', instead of applying the very complex regexp.
5443         (makefile-mode): Cancel `font-lock-support-mode', because blocks
5444         to be fontified in one piece can be too long for JIT.
5445         Makefiles are never *that* big.
5447 2005-05-17  Reiner Steib  <Reiner.Steib@gmx.de>
5449         * dired.el (dired-mode): Simplify.
5451 2005-05-17  Lute Kamstra  <lute@gnu.org>
5453         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
5454         defcustom for the mode hook variable.
5456         * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
5457         Emacs Lisp Reference Manual.
5459 2005-05-17  Juanma Barranquero  <lekktu@gmail.com>
5461         * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
5462         (evenp, list*):
5463         * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
5464         * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
5466         * net/tramp-smb.el (tramp-smb-open-connection):
5467         Pass `tramp-chunksize' as fifth (required) argument.
5469 2005-05-16  Daniel Pfeiffer  <occitan@esperanto.org>
5471         * font-lock.el (lisp-font-lock-keywords-1):
5472         Set `font-lock-negation-char-face' for [^...] char group.
5473         (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
5475         * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
5476         a var, and refine it to mask one more level of nested vars.
5477         (makefile-rule-action-regex): Turn it into a var, and refine it so
5478         it recognizes backslashed continuation lines as belonging to the
5479         same command.
5480         (makefile-macroassign-regex): Refine it so it recognizes
5481         backslashed continuation lines as belonging to the same command.
5482         (makefile-var-use-regex): Don't look at the next char, because it
5483         might be the same one to be skipped by the initial [^$], leading
5484         to an overlooked variable use.
5485         (makefile-make-font-lock-keywords): Remove two parameters, which
5486         are now variables that some of the modes set locally.
5487         Handle dependency and rule action matching through functions, because
5488         regexps alone match too often.  Dependency matching now comes
5489         last, so it can check, whether a colon already matched something else.
5490         (makefile-mode): Inform that font-lock improves makefile parsing
5491         capabilities.
5492         (makefile-match-dependency, makefile-match-action): New functions.
5494 2005-05-16  Juanma Barranquero  <lekktu@gmail.com>
5496         * emacs-lisp/cl-extra.el (equalp): Doc fix.
5498         * align.el (align-regexp):
5499         * ansi-color.el (ansi-color-get-face):
5500         * array.el (array-reconfigure-rows, array-init-max-row)
5501         (array-init-max-column, array-init-columns-per-line)
5502         (array-init-field-width):
5503         * dired-aux.el (dired-trample-file-versions):
5504         * dired-x.el (dired-mark-sexp):
5505         * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
5506         * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
5507         * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
5508         * faces.el (face-read-integer):
5509         * files.el (backup-extract-version, insert-directory):
5510         * hexl.el (hexl-insert-decimal-char):
5511         * server.el (server-process-filter):
5512         * shell.el (shell-extract-num):
5513         * startup.el (command-line-1):
5514         * term.el (term-command-hook):
5515         * time-stamp.el (time-stamp, time-stamp-string-preprocess)
5516         (time-stamp-do-number):
5517         * time.el (display-time-update):
5518         * timezone.el (timezone-parse-date, timezone-zone-to-minute)
5519         (timezone-fix-time):
5520         * vms-patch.el (vms-suspend-resume-hook):
5521         * calendar/appt.el (appt-convert-time):
5522         * calendar/cal-bahai.el (mark-bahai-diary-entries):
5523         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
5524         * calendar/cal-islam.el (mark-islamic-diary-entries):
5525         * calendar/calendar.el (calendar-cursor-to-date)
5526         (calendar-star-date):
5527         * calendar/diary-lib.el (diary-attrtype-convert)
5528         (mark-diary-entries, diary-entry-time):
5529         * calendar/solar.el (solar-get-number):
5530         * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
5531         * emacs-lisp/re-builder.el (reb-display-subexp):
5532         * emulation/edt.el (edt-set-scroll-margins):
5533         * emulation/tpu-extras.el (tpu-set-scroll-margins):
5534         * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
5535         (vip-get-ex-count):
5536         * emulation/viper-ex.el (viper-get-ex-token)
5537         (viper-get-ex-buffer, viper-get-ex-count, ex-next):
5538         * international/fontset.el (fontset-plain-name):
5539         * mail/feedmail.el (feedmail-look-at-queue-directory):
5540         * mail/mailalias.el (mail-get-names):
5541         * mail/rmail.el (rmail-convert-to-babyl-format):
5542         * mail/rmailsum.el (rmail-make-basic-summary-line)
5543         (rmail-summary-next-same-subject, rmail-summary-rmail-update)
5544         (rmail-summary-goto-msg):
5545         * mail/smtpmail.el (smtpmail-read-response):
5546         * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
5547         (ange-ftp-vms-add-file-entry):
5548         * play/gametree.el (gametree-looking-at-ply)
5549         (gametree-current-branch-score):
5550         * progmodes/ada-xref.el (ada-prj-find-prj-file)
5551         (ada-xref-find-in-modified-ali, ada-find-in-src-path):
5552         * progmodes/cperl-mode.el (condition-case):
5553         * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
5554         (ebrowse-set-member-buffer-column-width)
5555         (ebrowse-select-1st-to-9nth):
5556         * progmodes/etags.el (etags-snarf-tag):
5557         * progmodes/flymake.el (flymake-parse-line):
5558         * progmodes/idlw-shell.el (idlwave-shell-parse-line)
5559         (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
5560         (idlwave-shell-menu-def):
5561         * progmodes/ps-mode.el (ps-run-goto-error):
5562         * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
5563         (vhdl-speedbar-contract-level):
5564         * term/mac-win.el (x-handle-numeric-switch):
5565         * term/sun-mouse.el (sun-get-frame-data):
5566         * term/w32-win.el (x-handle-numeric-switch):
5567         * term/x-win.el (x-handle-numeric-switch):
5568         * textmodes/ispell.el (ispell-parse-output):
5569         * textmodes/nroff-mode.el (nroff-outline-level):
5570         * textmodes/reftex-cite.el (reftex-bib-sort-year)
5571         (reftex-bib-sort-year-reverse, reftex-format-citation):
5572         * textmodes/reftex-parse.el (reftex-init-section-numbers)
5573         (reftex-section-number):
5574         * textmodes/texinfmt.el (texinfo-paragraphindent):
5575         Replace `string-to-int' by `string-to-number'.
5577         * international/latexenc.el: Add page marker to force the "Local
5578         Variables:" string out of the last page.
5580 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
5582         * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
5583         tooltip-change-major-mode.
5584         (gud-tooltip-print-command): Remove case where gud-minor-mode
5585         is gdb ("--fullname").
5586         (gud-tooltip-tips): Turn GUD tooltips off for this case and
5587         explain to user.
5589 2005-05-16  Jay Belanger  <belanger@truman.edu>
5591         * calc/calc-store.el (calc-copy-special-constant): New function.
5593         * calc/calc-ext.el (calc-init-extensions): Add binding for
5594         `calc-copy-special-constant'.
5596         * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
5597         for the `calc-copy-special-constant' command.
5599 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
5601         * subr.el (left-fringe-p): New function.
5603         * progmodes/compile.el (compilation-setup): Set local value of
5604         overlay-arrow-string to "" always.
5605         (compilation-set-window): Left fringe then don't scroll.
5606         No left fringe then no arrow and scroll message to top.
5607         (compilation-context-lines): Adjust doc string accordingly.
5609 2005-05-16  Kim F. Storm  <storm@cua.dk>
5611         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
5612         (ido-magic-delete-char): New commands for C-f, C-b, C-d.
5613         (ido-wide-find-dir-or-delete-dir): New command for M-d.
5614         (ido-define-mode-map): Bind them.  Add C-x prefix to fallback commands.
5615         (ido-read-file-name): Handle commands with ido property value
5616         equal to find-file as reading a file name, to allow C-d to enter dired.
5617         (ibuffer-find-file): Add ido property with value find-file.
5619 2005-05-15  Kim F. Storm  <storm@cua.dk>
5621         * subr.el (open-network-stream-nowait): Remove.
5622         (open-network-stream-server): Remove.
5624 2005-05-15  Richard M. Stallman  <rms@gnu.org>
5626         * faces.el (describe-face): Output a definition link button.
5628         * help-mode.el (help-face-def): New button type.
5630         * emacs-lisp/copyright.el (copyright-fix-years):
5631         Match properly if the first year is 2-digit.
5632         Don't mess up the whitespace after the years by filling.
5634         * dired-aux.el (dired-mark-confirm):
5635         Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
5637         * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
5638         (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
5639         (dired-mark-pop-up): Handle FILES = (t FILE) specially.
5641         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5642         Set font-lock-comment-start-skip.
5644         * font-lock.el (font-lock-comment-start-skip): New variable.
5645         (font-lock-comment-end-skip): New variable.
5646         (font-lock-fontify-syntactically-region): Use them if non-nil.
5648 2005-05-15  Jay Belanger  <belanger@truman.edu>
5650         * calc/calc-store.el (calc-store-value): Return a string rather
5651         than display it as a message.
5652         Use calc-var-name for variable name.
5653         (calc-store-into): Add the result of calc-store-value to message.
5654         (calc-copy-variable): Add a message.
5655         (calc-store-exchange): Improve error messages.
5656         (calc-store-binary, calc-store-map): Don't reset the values of
5657         special constants.
5659 2005-05-14  Luc Teirlinck  <teirllm@auburn.edu>
5661         * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
5662         manual to docstring.
5664         * files.el (hack-local-variables-confirm): Add STRING argument.
5665         Make the function handle non file visiting buffers correctly.
5666         (hack-local-variables-prop-line, hack-local-variables)
5667         (hack-one-local-variable): Use STRING arg of
5668         `hack-local-variables-confirm'.
5670 2005-05-14  Michael Albinus  <michael.albinus@gmx.de>
5672         Sync with Tramp 2.0.49.
5674         * tramp.el (tramp-handle-dired-call-process)
5675         (tramp-handle-insert-directory):`insert-buffer' cannot be used
5676         because the contents of the Tramp buffer is changed before
5677         insertion (`expand-file' and alike).
5678         (tramp-handle-insert-directory): If `localname' has an empty
5679         nondirectory name, it must not be quoted.
5680         (tramp-pre-connection): Add parameter CHUNKSIZE.  Make local
5681         variable `tramp-chunksize'.  Change callees.
5682         (tramp-open-connection-setup-interactive-shell): Check remote host
5683         for buggy `send-process-string' implementation.
5684         Set `tramp-chunksize' if found.  Reported by Michael Kifer
5685         <kifer@cs.sunysb.edu> (and a lot of other people all the years).
5686         (tramp-handle-shell-command): `insert-buffer' cannot be used
5687         because the contents of the Tramp buffer is changed before
5688         insertion (`expand-file' and alike).  Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
5689         <frederic.bothamy@free.fr>.
5690         (tramp-set-auto-save): Actions should be done for Tramp file name
5691         handler only.  Ange-FTP has its own auto-save mechanism.
5692         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
5693         (tramp-set-auto-save-file-modes): Set file modes of
5694         `buffer-auto-save-file-name' to ?\600 as fallback solution.
5695         Reported by Ferenc Wagner <wferi@tba.elte.hu>.
5696         (tramp-bug): Remove obsolete variable.
5697         (tramp-append-tramp-buffers): Rewrite partly.  More suitable check
5698         for presence of `mml-mode'.  Make it running for older Emacsen as well.
5700 2005-05-14  John Paul Wallington  <jpw@pobox.com>
5702         * ibuf-ext.el (define-ibuffer-filter filename):
5703         If `dired-directory' is a list, use its car.
5705 2005-05-14  Daniel Brockman  <daniel@brockman.se>  (tiny change)
5707         * ibuffer.el (define-ibuffer-column filename):
5708         If `dired-directory' is a list, use its car.
5710 2005-05-14  Richard M. Stallman  <rms@gnu.org>
5712         * subr.el (symbol-file): Doc fix.
5714         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
5715         (byte-compile-form): Call byte-compile-nogroup-warn.
5716         (byte-compile-warning-types): Doc fix.
5718         * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
5720         * progmodes/cc-engine.el (c-literal-faces):
5721         Add font-lock-comment-delimiter-face.
5723         * net/net-utils.el (dig): Use with-no-warnings.
5725         * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
5726         (sc-recite-frame-alist, sc-default-cite-frame)
5727         (sc-default-uncite-frame, sc-default-recite-frame)
5728         (sc-attrib-selection-list, sc-rewrite-header-list):
5729         Mark as risky-local-variable.
5731         * international/ogonek.el (ogonek-jak, ogonek-how):
5732         Don't use beginning-of-buffer.
5734         * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
5736         * calendar/solar.el (solar-data-list): Move definition up.
5738         * dnd.el (dnd-protocol-alist): Add autoload.
5740         * progmodes/sh-script.el: Many doc usage fixes.
5741         (sh-indent-after-do): Change default to match common styles.
5743 2005-05-13  Luc Teirlinck  <teirllm@auburn.edu>
5745         * files.el (interpreter-mode-alist)
5746         (auto-mode-interpreter-regexp): Doc fixes.
5748 2005-05-13  Matt Hodges  <MPHodges@member.fsf.org>
5750         * tmm.el (tmm-get-keymap): Include only active menus and menu items.
5752         * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
5754 2005-05-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5756         * dired.el (dired-mode): make-variable-buffer-local =>
5757         make-local-variable.
5759 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5761         * term/mac-win.el (mac-select-convert-to-string): Try coding
5762         systems in mac-script-code-coding-systems if specified one cannot
5763         encode string for `com.apple.traditional-mac-plain-text'.
5765 2005-05-13  Daniel Pfeiffer  <occitan@esperanto.org>
5767         * progmodes/make-mode.el (makefile-targets-face)
5768         (makefile-shell-face, makefile-makepp-perl-face): New faces.
5769         (makefile-dependency-regex): Fix it to not make the colon in
5770         $(var:a=b) special.
5771         (makefile-rule-action-regex): New regexp for highlighting embedded
5772         Shell strings.
5773         (makefile-macroassign-regex): Handle != for highlighting as
5774         embedded Shell strings.
5775         (makefile-var-use-regex): New const.
5776         (makefile-statements, makefile-automake-statements)
5777         (makefile-gmake-statements, makefile-makepp-statements)
5778         (makefile-bsdmake-statements): New consts.
5779         (makefile-make-font-lock-keywords): New function.
5780         (makefile-automake-font-lock-keywords)
5781         (makefile-gmake-font-lock-keywords)
5782         (makefile-makepp-font-lock-keywords)
5783         (makefile-bsdmake-font-lock-keywords): New consts.
5784         (makefile-mode-map): Add switchers between the various submodes.
5785         (makefile-mode): Document the availability of the variants.
5786         (makefile-automake-mode, makefile-gmake-mode)
5787         (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
5789         * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
5790         new variants of makefile-mode.
5792 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5794         * font-lock.el (font-lock-comment-delimiter-face): Fix up
5795         the inheritance.
5797 2005-05-12  Luc Teirlinck  <teirllm@auburn.edu>
5799         * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
5800         (inferior-lisp-load-hook): Convert defcustoms back to defvars.
5802         * files.el (normal-mode): Extend the scope of the
5803         `enable-local-variables' binding to include the `set-auto-mode' call.
5804         (magic-mode-alist): Doc fix.
5806 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5808         * font-lock.el (font-lock-comment-delimiter-face): Inherit from
5809         font-lock-comment-face rather than copying its setting.
5811 2005-05-12  Andreas Schwab  <schwab@suse.de>
5813         * eshell/esh-mode.el (eshell-send-input): Doc fix.
5815 2005-05-12  Lute Kamstra  <lute@gnu.org>
5817         * emacs-lisp/generic.el (define-generic-mode): Don't generate a
5818         defcustom for the mode hook variable.  Delete the last argument.
5819         * generic-x.el: Fix callers of define-generic-mode.
5820         (generic-x-modes): Delete group.
5821         (show-tabs-tab-face, show-tabs-space-face): Put them in the
5822         generic-x customization group.
5824 2005-05-12  Kim F. Storm  <storm@cua.dk>
5826         * font-lock.el (font-lock-negation-char-face): Default to "off".
5828         * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
5829         font-lock-negation-char-face to ! in !=.
5831 2005-05-12  Masatake YAMATO  <jet@gyve.org>
5833         * add-log.el (find-change-log): Fix typos in the docstring
5834         of function.
5836 2005-05-11  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
5838         * international/latexenc.el (latexenc-find-file-coding-system):
5839         Avoid `re-search-forward' when looking for input encoding because
5840         of speed and safety.  Better regular expressions for recognizing
5841         input encoding.  Limit a search for TeX-master/tex-main-file to
5842         the local variable section.
5844 2005-05-11  Dan Nicolaescu  <dann@ics.uci.edu>
5846         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
5847         syntax of $ to "'" (quote).
5849 2005-05-11  Reiner Steib  <Reiner.Steib@gmx.de>
5851         * dnd.el (dnd-protocol-alist): Improve custom type.
5853         * dired.el (dired-dnd-protocol-alist): New variable.
5854         (dired-mode): Use `dired-dnd-protocol-alist'.  Move call of
5855         `dired-mode-hook' to the end.
5857 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5859         * font-lock.el (font-lock-fontify-syntactically-region): Don't use
5860         comment-end if comment-start-skip is not set.
5861         Obey the font-lock-comment-delimiter-face variables.
5863 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5865         * files.el (executable-find): Move from executable.el.  Use
5866         locate-file.
5867         * progmodes/executable.el (executable-find): Move to files.el.
5869         * font-lock.el (font-lock-fontify-keywords-region): Use a marker
5870         when trying to ensure forward progress.
5872 2005-05-11  Chong Yidong  <cyd@stupidchicken.com>
5874         * mouse-sel.el (mouse-sel-follow-link-p): New function.
5875         (mouse-select, mouse-select-internal, mouse-extend-internal):
5876         Use it to implement mouse-1-click-follows-link functionality.
5878 2005-05-11  Richard M. Stallman  <rms@gnu.org>
5880         * font-lock.el (font-lock-fontify-syntactically-region):
5881         Use font-lock-comment-delimiter-face for comment delimiters.
5883 2005-05-10  Jay Belanger  <belanger@truman.edu>
5885         * calc/calc-help.el (calc-m-prefix-help): Add mention of
5886         preserving embedded modes.
5888 2005-05-10  Richard M. Stallman  <rms@gnu.org>
5890         * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
5892         * progmodes/ada-mode.el (ada-adjust-case-skeleton):
5893         Move from ada-stmt.el.
5894         (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
5896         * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
5897         Move to ada-mode.el.
5898         (ada-stmt-mode-hook): Delete; do the work in ada-mode.
5900         * cus-edit.el (custom-file): Call file-chase-links.
5902         * files.el (read-directory-name): Fix previous change.
5903         (hack-local-variables-confirm): New function.
5904         (hack-local-variables-prop-line, hack-local-variables)
5905         (hack-one-local-variable): Use it.
5907 2005-05-10  Lute Kamstra  <lute@gnu.org>
5909         * font-lock.el (font-lock-keywords-alist)
5910         (font-lock-removed-keywords-alist): Clarify docstrings.
5912 2005-05-10  Nick Roberts  <nickrob@snap.net.nz>
5914         * progmodes/gdb-ui.el (gdb-macro-info): New variable.
5915         (gdb-source-info): Check for preprocessor info.
5916         (gdb-tooltip-print-1): New function.  Don't print tooltip if it is
5917         a macro for a function.
5918         (gdb-info-breakpoints-custom): Try to find file again if not already
5919         found (user might have used GDB dir command).
5920         (gdb-get-location): Update gdb-location-alist correctly for change
5921         to gdb-info-breakpoints-custom.
5923         * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
5924         (gud-tooltip-print-command): Add gdbmi case.
5925         (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
5926         preprocessor info.
5928 2005-05-09  Reiner Steib  <Reiner.Steib@gmx.de>
5930         * startup.el (fancy-splash-insert): Fix typo in doc string.
5932 2005-05-09  Juanma Barranquero  <lekktu@gmail.com>
5934         * obsolete/float.el (string-to-float):
5935         * obsolete/hilit19.el (hilit-add-pattern):
5936         * obsolete/rnews.el (news-parse-range, news-select-message)
5937         (news-get-pruned-list-of-files): Replace `string-to-int' by
5938         `string-to-number'.
5940         * obsolete/uncompress.el: Set `find-file-not-found-functions', not
5941         `find-file-not-found-hooks'; use `add-hook'.
5942         (uncompress-while-visiting): Set `write-file-functions', not
5943         `write-file-hooks'; use `add-hook'.
5945 2005-05-09  Kim F. Storm  <storm@cua.dk>
5947         * emulation/cua-base.el (cua-copy-region, cua-cut-region)
5948         (cua-paste): Handle clipboard action.
5949         (cua--init-keymaps): Remap clipboard-kill-region and
5950         clipboard-kill-ring-save.
5952 2005-05-08  Eli Zaretskii  <eliz@gnu.org>
5954         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5955         Improve commentary.
5957         * simple.el (next-error-overlay-arrow-position): Revert the change
5958         made on 2005-04-30.
5960 2005-05-07  Jay Belanger  <belanger@truman.edu>
5962         * calc/calcsel2.el (calc-commute-left, calc-commute-right)
5963         (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
5964         `calc-sel-reselect'.
5966         * calc/calc-mode.el (calc-save-modes): Reset the modes list if
5967         Calc is in embedded mode.
5969 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
5971         * progmodes/compile.el (compilation-setup):
5972         Set overlay-arrow-string to an empty string on text terminals.
5974         * textmodes/ispell.el (ispell-program-name): Try looking for
5975         "aspell" along exec-path, and if found, use it as the default
5976         speller program.
5978 2005-05-07  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
5980         * international/mule.el (sgml-xml-auto-coding-function):
5981         Recognize encoding='FOO' in single quotes as well as in double quotes.
5983 2005-05-07  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
5985         * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
5986         as well as `interactive', so that defmacro* would recognize
5987         `declare' forms.
5989 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
5991         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5992         Explain more about the LIGHTER arg's usage in the doc string.
5993         Add commentary to clarify what the code does.  Fix the regexp that
5994         strips whitespace from LIGHTER.  Quote LIGHTER before using it,
5995         since it could have characters special to regular expressions.
5997 2005-05-07  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
5999         * replace.el (occur-1): Bind inhibit-read-only so that
6000         erase-buffer doesn't barf on read-only text properties (likewise
6001         for add-text-properties in occur-engine).  Mark buffer as unmodified.
6002         (occur-engine): Don't set buffer-read-only here.
6004 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6006         * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
6007         list-buffers-directory.  This caused the *cvs-commit* buffer to be
6008         sometimes mistakenly reused as a *cvs* buffer.
6010 2005-05-07  Nick Roberts  <nickrob@snap.net.nz>
6012         * tooltip.el: Move code for GUD tooltips into gud.el.
6013         (require): CL no longer needed to compile case.
6014         (tooltip-mode): Do not toggle functions for GUD tooltips.
6015         (tooltip-gud-tips-p): Remove.  Replace with minor mode
6016         gud-tooltip-mode in gud.el.
6017         (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
6018         (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
6019         tooltip-gud prefix with gud-tooltip and obsolete.
6020         (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
6021         (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
6022         (tooltip-mouse-motion): Mouse movement functions/variable.
6023         Rename in gud.el by adding gud prefix.
6024         (tooltip-gud-original-filter, tooltip-gud-dereference)
6025         (tooltip-gud-event, tooltip-toggle-gud-tips)
6026         (tooltip-gud-process-output, tooltip-gud-print-command)
6027         (tooltip-gud-tips): GUD tooltip functions/variables.  Rename in
6028         gud.el by replacing tooltip-gud prefix with gud-tooltip.
6029         (gdb-tooltip-print): Move to gdb-ui.el.
6031         * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
6032         (require): CL needed to compile case.
6033         (gud-tooltip-mode): Use to toggle GUD tooltips instead of
6034         tooltip-gud-tips-p.  Make it a minor-mode.
6035         (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
6036         (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
6037         (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
6038         (gud-tooltip-change-major-mode)
6039         (gud-tooltip-activate-mouse-motions-if-enabled)
6040         (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
6041         (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
6042         (gud-tooltip-original-filter, gud-tooltip-dereference)
6043         (gud-tooltip-event, tooltip-toggle-gud-tips)
6044         (gud-tooltip-process-output, gud-tooltip-print-command)
6045         (gud-tooltip-tips): Move from tooltip.el.
6047         * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
6048         (gdb-cpp-define-alist-flags): Doc fix.
6049         (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
6050         gud-tooltip-mode is t.
6052 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6054         * net/goto-addr.el (goto-address-fontify): Make sure the overlays
6055         evaporate if their text is deleted.
6056         (goto-address-at-point): Make it work as a mouse binding as well.
6057         (goto-address-at-mouse): Obsolete it.  Update users.
6059 2005-05-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
6061         * calendar/appt.el (top-level): No longer activate on load.
6063 2005-05-06  Juanma Barranquero  <lekktu@gmail.com>
6065         * calendar/cal-bahai.el (mark-bahai-diary-entries):
6066         * net/webjump.el (webjump):
6067         * progmodes/idlw-help.el (idlwave-do-context-help1)
6068         (idlwave-highlight-linked-completions):
6069         * textmodes/po.el (po-find-file-coding-system-guts):
6070         Replace `assoc-ignore-case' by `assoc-string'.
6072 2005-05-06  Eli Zaretskii  <eliz@gnu.org>
6074         * files.el (locate-file): Doc fix.
6076         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
6077         Remove the redundant test for ms-dos.
6079         * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
6080         look for the preprocessor with exec-suffixes.  If not found in
6081         standard places, look in exec-path.  Remove most of the tests that
6082         used system-type.
6084         * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
6086         * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
6088         * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
6089         file-name clash with jka-compr.el on 8+3 filesystems.
6091 2005-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6093         * term/mac-win.el: Don't define or bind scroll bar functions if
6094         x-toolkit-scroll-bars is t.
6095         (x-select-text, x-get-selection-value): Clear
6096         x-last-selected-text-clipboard if x-select-enable-clipboard is
6097         nil.
6098         (PRIMARY): Put mac-scrap-name property.
6099         (mac-select-convert-to-file-url): New function.
6100         (public.file-url): New selection target type.  Add to
6101         selection-converter-alist.
6102         (x-get-selection, x-selection-value): Handle it.
6103         (x-cut-buffer-or-selection-value): New alias.
6105 2005-05-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
6107         * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
6108         entry to avoid calling bibtex-find-entry with arg global
6109         being t.  Remove arg key.
6110         (bibtex-summary-function, bibtex-complete-crossref-cleanup)
6111         (bibtex-copy-summary-as-kill): Change accordingly.
6113 2005-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6115         * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
6116         (org-agenda-date-later): Use with-current-buffer.
6118 2005-05-05  Luc Teirlinck  <teirllm@auburn.edu>
6120         * emacs-lisp/byte-run.el (define-obsolete-function-alias)
6121         (define-obsolete-variable-alias): Doc Fixes.
6123 2005-05-06  Kim F. Storm  <storm@cua.dk>
6125         * simple.el (line-move-1): Fix 2005-04-26 change.  Must still use
6126         vertical-motion when selective-display is active.
6128         * ido.el (ido-setup-hook): New hook.
6129         (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
6130         (ido-input-stack): New var.
6131         (ido-define-mode-map): Bind M-b to ido-push-dir.  Move old
6132         ido-next-work-file binding to M-O.
6133         Bind M-f to ido-wide-find-file-or-pop-dir.
6134         (ido-define-mode-map): Don't run ido-define-mode-map-hook.
6135         (ido-read-internal): Run ido-setup-hook.
6136         Catch quit in read-file-name and read-string to cancel edit.
6137         Handle new push, pop, and pop-all exit codes (for M-b/M-f).
6138         Automatically pop-all when completing a directory name (RET).
6139         (ido-file-internal): Add with-no-warnings around ffap and dired code.
6140         (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
6141         (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
6142         (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
6143         New functions for M-b/M-f to move among the directory components.
6144         (ido-make-merged-file-list): Catch quit to cancel merge.
6145         (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
6146         (ido-completion-help): No warnings for ido-completion-buffer-full.
6148 2005-05-05  Daniel Pfeiffer  <occitan@esperanto.org>
6150         * font-lock.el (font-lock-negation-char-face): New face and variable.
6151         * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
6152         * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
6153         * progmodes/cperl-mode.el (cperl-init-faces): Use it.
6154         * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
6156 2005-05-05  Juanma Barranquero  <lekktu@gmail.com>
6158         * emacs-lisp/byte-run.el (define-obsolete-function-alias):
6159         Fix typo in docstring.
6161         * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
6162         (ebrowse-print-statistics-line)
6163         (ebrowse-electric-position-mode-hook): Fix typo in docstring.
6165         * term/w32-win.el (image-library-alist): Add additional name for
6166         Xpm library.
6168 2005-05-05  Nick Roberts  <nickrob@snap.net.nz>
6170         * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
6171         use gcc instead of cpp.
6173         * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
6174         (gdb-create-define-alist): Use it.
6175         (gdb-cpp-define-alist-program): Update for MS-DOS.
6177 2005-05-04  Nick Roberts  <nickrob@snap.net.nz>
6179         * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
6181 2005-05-04  Richard M. Stallman  <rms@gnu.org>
6183         * help.el (describe-key): No error when UNTRANSLATED is nil.
6185         * simple.el (line-move-1): Fix previous change to signal errors
6186         appropriately.
6188 2005-05-03  Ulf Jasper  <ulf.jasper@web.de>
6190         * calendar/icalendar.el (icalendar-version): Now at 0.12.
6191         (icalendar-duration-correction): Remove.
6192         (icalendar--get-event-properties): Split result at commas.
6193         (icalendar--decode-isoduration): New optional argument
6194         DURATION-CORRECTION.
6195         (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
6196         (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
6197         (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
6198         (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
6199         (icalendar--convert-anniversary-to-ical): New functions, extracted
6200         from icalendar-export-region, with bug fixes.
6201         (icalendar-export-region): Use the above functions.
6202         (icalendar-import-buffer): Check before saving diary file.
6203         (icalendar--convert-recurring-to-diary)
6204         (icalendar--convert-non-recurring-all-day-to-diary)
6205         (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
6206         extracted from icalendar--convert-ical-to-diary, with bug fixes.
6207         (icalendar--convert-ical-to-diary): Use the above functions.
6209 2005-05-03  Nick Roberts  <nickrob@snap.net.nz>
6211         * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
6212         Remove these recent additions.
6213         (c-mode): Restore to before 2005-04-28.
6215         * progmodes/cc-vars.el (cc-define-list-program): Remove this
6216         recent addition.
6218         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
6219         (gdb-define-alist): New variables.
6220         (gdb-create-define-alist): New function.
6221         (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
6222         (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
6223         with string-to-number.
6224         (gdb-reset): Kill gdb-define-alist.  Move assignments outside loop.
6226         * progmodes/gud.el: Replace string-to-int with string-to-number.
6227         (gud-find-file): Handle gdb-define-alist.
6229         * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
6231 2005-05-02  Jay Belanger  <belanger@truman.edu>
6233         * calc/calc-aent.el (math-read-token):
6234         * calc/calc-bin.el (calc-word-size):
6235         * calc/calc-ext.el (calc-read-number-fancy):
6236         * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
6237         (math-parse-date, math-parse-standard-date, calcFunc-tzone):
6238         * calc/calc-frac.el (calc-over-notation):
6239         * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
6240         (calc-graph-num-points, calc-graph-init):
6241         * calc/calc-prog.el (calc-read-parse-table-part)
6242         (calc-edit-macro-repeats):
6243         * calc/calc-yank.el (calc-do-grab-rectangle):
6244         * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
6245         Replace `string-to-int' by `string-to-number'.
6247 2005-05-02  Kim F. Storm  <storm@cua.dk>
6249         * kmacro.el: Use executing-kbd-macro-index variable.
6251 2005-05-02  Thien-Thi Nguyen  <ttn@gnu.org>
6253         * net/rlogin.el (rlogin-parse-words): Delete func.
6254         (rlogin): Use split-string, not rlogin-parse-words.
6255         Also, if there are option-like elements in the parsed args,
6256         take the host to be the first arg immediately following them.
6257         Suggested by Michael Mauger.
6259 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
6261         * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
6263 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
6265         * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
6266         (cc-mode-cpp-program): Rename to cc-define-list-program and
6267         move to cc-vars.el.
6269         * progmodes/cc-vars.el (cc-define-list-program):
6270         Change to "gcc -E -dM -".  Make customizable.
6272 2005-05-02  Kim F. Storm  <storm@cua.dk>
6274         * emulation/cua-base.el: Fix check for CUA-mode if no init file.
6276 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
6278         * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
6280         * international/mule-util.el (truncate-string): Remove alias and
6281         obsolete declaration.
6283         * international/mule-cmds.el (update-iso-coding-systems):
6284         Remove alias and obsolete declaration.
6286         * international/mule.el (coding-system-parent): Remove alias and
6287         obsolete declaration.
6289         * subr.el (define-function, sref): Remove aliases and obsolete
6290         declarations.
6291         (chars-in-region): Remove obsolete declaration.
6293 2005-05-01  Richard M. Stallman  <rms@gnu.org>
6295         * info.el (Info-mode): Set widen-automatically to nil, locally.
6297         * simple.el (widen-automatically): New variable.
6298         (pop-global-mark): Obey widen-automatically.
6300 2005-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
6302         * term/xterm.el (function-key-map): Call substitute-key-definition
6303         before the keymap size is increased by a lot of define-key calls.
6305 2005-05-01  Richard M. Stallman  <rms@gnu.org>
6307         * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
6308         Rename ARG to ELEMENT.  Doc fix.
6310 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
6312         * allout.el (allout-exposure): Remove macro and obsolete declaration.
6313         Remove references to allout-exposure/change to allout-new-exposure.
6315         * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
6316         bytecode symbols.
6318         * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
6319         (compiled-function-p, focus-frame, unfocus-frame):
6320         Remove aliases and obsolete declarations.
6321         Back out inadvertent changes from previous commit.
6323 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
6325         * files.el (require-final-newline): Make Custom tags consistent
6326         with mode-require-final-newline.
6327         (mode-require-final-newline): Doc fix.
6329 2005-05-01  Stefan Monnier <monnier@iro.umontreal.ca>
6331         * international/latexenc.el (latexenc-find-file-coding-system):
6332         Fix regular expressions.
6334 2005-05-01  David Kastrup <dak@gnu.org>
6336         * international/latexenc.el (latexenc-find-file-coding-system):
6337         Fix regular expressions.
6339 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
6341         * subr.el (string-to-int): Make obsolete.
6343 2005-04-30  Richard M. Stallman  <rms@gnu.org>
6345         * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
6347         * loadup.el: load jka-comp-hook.
6349         * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
6350         (jka-compr-handler): Add autoload.  `put' calls moved
6351         to jka-comp-hook.el.
6352         (compression, jka-compr): defgroups moved to jka-comp-hook.el.
6353         (jka-compr-inhibit): Autoload.
6355         * jka-comp-hook.el: New file.
6356         Enable the mode by default.
6358         * files.el (backup-buffer-copy): Use copy-file instead
6359         of write-region, and put back the 'excl.
6361 2005-04-30  Chong Yidong  <cyd@stupidchicken.com>
6363         * progmodes/flymake.el (flymake-split-string)
6364         (flymake-split-string, flymake-log, flymake-pid-to-names)
6365         (flymake-reg-names, flymake-get-source-buffer-name)
6366         (flymake-unreg-names, flymake-add-line-err-info)
6367         (flymake-add-err-info): Clarify docstrings.
6368         (flymake-popup-menu, flymake-make-emacs-menu)
6369         (flymake-make-xemacs-menu): Add docstrings.
6370         (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
6371         Set variables directly throughout.
6373 2005-04-30  Nick Roberts  <nickrob@snap.net.nz>
6375         * progmodes/cc-mode.el (cc-create-define-alist): Check that file
6376         exists.  Initialize cc-define-alist.
6377         (c-mode): Add cc-create-define-alist locally to after-save-hook.
6378         If there is no file (Macroexpansion) don't create an alist.
6380 2005-04-29  Sam Steingold  <sds@gnu.org>
6382         * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
6383         (cc-create-define-alist): Use it instead of the hard-coded string.
6385 2005-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6387         * international/mule-conf.el (file-coding-system-alist): Fix regexp
6388         for latexenc.
6390 2005-04-29  Lute Kamstra  <lute@gnu.org>
6392         * emacs-lisp/generic.el: Improve commentary section.
6393         (define-generic-mode): Improve docstring.
6395 2005-04-29  Carsten Dominik  <dominik@science.uva.nl>
6397         * textmodes/org.el (many places): Change to quiet the byte compiler.
6398         (org-prefix-format-compiled): New variable.
6399         (org-compile-prefix-format): New function.
6400         (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
6401         (org-agenda-prefix-format,org-timeline-prefix-format): New options.
6402         (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
6403         (org-get-entries-from-diary): Use `org-get-time-of-day' for
6404         consistency with entries from `org-mode' files.
6405         (org-get-time-of-day): Fix bug with partial matches early in a line.
6406         (org-non-link-chars): New constant.
6407         (org-link-regexp): Respect `org-non-link-chars'.
6408         (org-agenda-day-view): Remove command.
6409         (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
6410         (org-follow-bbdb-link, org-store-link): Search also company field.
6411         (org-highlight-overlay): New variable.
6412         (org-highlight, org-unhighlight): New functions.
6413         (org-agenda-mode): Add pre-command-hook to remove highlight.
6414         (org-evaluate-time-range): Behavior depends upon whether time stamp
6415         contains a time or not.
6416         (org-show-subtree, org-show-entry): New functions.
6417         (org-agenda-cleanup-fancy-diary): Remove empty lines.
6419 2005-04-28  Luc Teirlinck  <teirllm@auburn.edu>
6421         * comint.el (comint-output-filter-functions): Add autoload cookie.
6423 2005-04-28  Kim F. Storm  <storm@cua.dk>
6425         * ido.el (ido-everywhere): Fix last change.
6427 2005-04-28  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
6429         * international/latexenc.el: New file.
6430         * international/mule-conf.el (file-coding-system-alist): For .tex,
6431         .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
6433 2005-04-28  Lute Kamstra  <lute@gnu.org>
6435         * font-lock.el (font-lock-add-keywords)
6436         (font-lock-remove-keywords): Clarify docstring.
6437         (font-lock-keywords-alist, font-lock-removed-keywords-alist):
6438         Don't start docstrings with a `*'.
6439         (font-lock-update-removed-keyword-alist): Give it a docstring.
6441         * generic-x.el: Update commentary section.
6442         Only require font-lock when compiling.
6443         Define all modes conditionally.
6444         Place all generic modes in the generic-x-modes customization group.
6445         (generic-x-modes): New customization group.
6446         (generic-default-modes, generic-mswindows-modes)
6447         (generic-unix-modes, generic-other-modes): New constants.
6448         (generic-define-mswindows-modes, generic-define-unix-modes):
6449         Update docstrings.  Make them obsolete.
6450         (generic-extras-enable-list): New default value.  Update docstring.
6451         Improve :type.  Change :set function.
6452         (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
6453         Fix docstring.
6455         * emacs-lisp/generic.el (generic-mode-internal):
6456         Simplify font-lock-defaults.
6457         (define-generic-mode): Fix docstring.
6459 2005-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6461         * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
6462         font-lock-face property to highlight matches.
6464 2005-04-28  Nick Roberts  <nickrob@snap.net.nz>
6466         * progmodes/cc-mode.el (cc-create-define-alist): New function.
6467         (cc-define-alist): New variable.
6468         (c-mode): Make it local and initialize it.
6470         * progmodes/gdb-ui.el (gdb-active-process): New variable.
6471         (gdb-exited): New function.
6472         (gdb-annotation-rules): Use it.
6473         (gdb-starting): Set gdb-active-process to t.
6474         (gdb-stopping): Amend doc string.
6475         (gdb-reset): Set gdb-active-process to nil.
6477         * tooltip.el (tooltip-gud-tips): Show the associated #define
6478         directives when a C program under GDB is not executing.
6480 2005-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6482         * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
6483         font-lock-fontify-syntactic-keywords.
6485         * font-lock.el (font-lock-default-fontify-region): Don't force
6486         parse-sexp-lookup-properties to nil.
6488 2005-04-27  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
6490         * man.el (man-mode-syntax-table): Set up `:' to have
6491         word-constituent syntax.
6493 2005-04-27  Lute Kamstra  <lute@gnu.org>
6495         * novice.el (disable-command): Don't add spurious newlines to the
6496         init file.  Reported by Dan Jacobson <jidanni@jidanni.org>.
6498 2005-04-26  Jay Belanger  <belanger@truman.edu>
6500         * calc/calc-yank.el (calc-edit-finish): Make sure there is more
6501         than one window before deleting window.
6503 2005-04-26  Luc Teirlinck  <teirllm@auburn.edu>
6505         * shell.el (shell-prompt-pattern): Doc fix.
6506         (shell-mode): Set paragraph-separate buffer locally to "\\'".
6508         * comint.el (comint-prompt-regexp, comint-get-old-input)
6509         (comint-use-prompt-regexp)
6510         (comint-use-prompt-regexp-instead-of-fields)
6511         (comint-replace-by-expanded-history, comint-send-input)
6512         (comint-output-filter, comint-get-old-input-default)
6513         (comint-line-beginning-position, comint-bol, comint-show-output)
6514         (comint-backward-matching-input, comint-forward-matching-input)
6515         (comint-next-prompt, comint-previous-prompt):
6516         Rename `comint-use-prompt-regexp-instead-of-fields' to
6517         `comint-use-prompt-regexp'.  Keep old name as alias and declare
6518         obsolete.
6519         (comint-use-prompt-regexp): Shorten first line of doc string.
6521         * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
6522         Set paragraph-separate buffer locally to "\\'".
6524         * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
6525         Adapt to above name change.
6527         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
6528         (smbclient-prompt-regexp): Ditto.
6530         * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
6532 2005-04-27  Nick Roberts  <nickrob@snap.net.nz>
6534         * progmodes/gdb-ui.el (gdb-location-alist): Rename from
6535         gdb-location-list.
6536         Break lines that are over 80 characters wide.
6538 2005-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6540         * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
6541         New fun and var, to preserve compatibility.
6543         * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
6545 2005-04-26  Dominique de Waleffe  <ddw@missioncriticalit.com>  (tiny change)
6547         * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
6548         name to file-newer-than-file-p.
6550 2005-04-26  Richard M. Stallman  <rms@gnu.org>
6552         * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
6554         * progmodes/python.el (python-mode):
6555         Use new name eldoc-documentation-function.
6557         * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
6559         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
6560         (eldoc-documentation-function):
6561         Rename from eldoc-print-current-symbol-info-function.  Calls changed.
6563 2005-04-26  Nick Roberts  <nickrob@snap.net.nz>
6565         * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
6567 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
6569         * term/xterm.el (function-key-map): Fix strings for
6570         {C,S,A,C-S}-f[1-4].  Use substitute-key-definition to bind
6571         {C,S,A,C-S}-{f1-f12}.
6573 2005-04-26  Kenichi Handa  <handa@m17n.org>
6575         * international/mule-cmds.el (select-safe-coding-system):
6576         Fix previous change.
6578 2005-04-26  Lute Kamstra  <lute@gnu.org>
6580         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
6582         * font-lock.el (font-lock-fontify-region-function): Fix docstring.
6583         (font-lock-comment-delimiter-face): Ditto.
6585         * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
6587 2005-04-25  Jay Belanger  <belanger@truman.edu>
6589         * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
6590         to t while inserting information; use help-mode.
6592 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
6594         * term.el (ansi-term-color-vector): Use the xterm colors.
6595         (term-raw-map): Don't add mappings for \eO and \e[.  Map deletechar.
6597 2005-04-25  Lute Kamstra  <lute@gnu.org>
6599         * font-core.el (font-lock-defaults): Fix docstring.
6601         * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
6603 2005-04-25  Kenichi Handa  <handa@m17n.org>
6605         * international/mule-cmds.el (select-safe-coding-system):
6606         Don't check consistency with coding: spec, etc if raw-text or
6607         no-conversion was found to be safe.
6609 2005-04-24  Richard M. Stallman  <rms@gnu.org>
6611         * mail/sendmail.el (mail-font-lock-keywords): Match any number of
6612         citation markers at start of each line.
6614         * mail/rmail.el (rmail-font-lock-keywords): Match any number of
6615         citation markers at start of each line.
6617         * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
6619         * files.el (mode-require-final-newline): Fix previous change.
6620         (require-final-newline): Fix type label.
6622 2005-04-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
6624         * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
6625         statement in buffer (broken by 2004-11-24 change).
6627 2005-04-24  Kim F. Storm  <storm@cua.dk>
6629         * ido.el (ido-everywhere): Save and restore old read-buffer-function
6630         and read-file-name-function values.  Don't overwrite existing
6631         non-nil values if ido-mode is enabled without ido-everywhere.
6633 2005-04-24  Luc Teirlinck  <teirllm@auburn.edu>
6635         * files.el (mode-require-final-newline): Minor doc fix.
6637 2005-04-24  Eli Zaretskii  <eliz@gnu.org>
6639         * subr.el (syntax-after): Doc fix.
6640         (syntax-class): If argument is nil, return nil.  Mask off upper 16
6641         bits, not 8 bits.
6643         * files.el (mode-require-final-newline): Doc fix.
6644         (backup-buffer-copy): Fix last change.
6646 2005-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6648         * term/mac-win.el: Require select.  Set selection-coding-system to
6649         mac-system-coding-system.  Call menu-bar-enable-clipboard.
6650         (x-last-selected-text-clipboard, x-last-selected-text-primary)
6651         (x-select-enable-clipboard): New variables.
6652         (x-select-text, x-get-selection, x-selection-value)
6653         (x-get-selection-value, mac-select-convert-to-string)
6654         (mac-services-open-file, mac-services-open-selection)
6655         (mac-services-insert-text): New functions.
6656         (CLIPBOARD, FIND): Put mac-scrap-name property.
6657         (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
6658         (public.tiff): Put mac-ostype property.
6659         (selection-converter-alist): Add entries for them.
6660         (mac-application-menu-map): New keymap.
6661         (interprogram-cut-function, interprogram-paste-function): Set to
6662         x-select-text and x-get-selection-value, respectively.
6663         (split-window-keep-point): Set to t.
6665 2005-04-23  Richard M. Stallman  <rms@gnu.org>
6667         * files.el (read-directory-name): Always pass non-nil
6668         DEFAULT-FILENAME arg to read-file-name.
6669         (backup-buffer-copy, basic-save-buffer-2): Take care against
6670         writing thru an unexpected existing symlink.
6671         (revert-buffer): In indirect buffer, revert the base buffer.
6672         (magic-mode-alist): Doc fix.
6673         (buffer-stale-function): Doc fix.
6674         (minibuffer-with-setup-hook): Avoid warning.
6675         (mode-require-final-newline): Doc and custom fix.
6677         * follow.el (follow-end-of-buffer): Use with-no-warnings.
6679         * font-lock.el (font-lock-comment-face): On terminals with few colors,
6680         use the default appearance.
6681         (font-lock-comment-delimiter-face): New face, new variable.
6683         * imenu.el (imenu--generic-function): The official position of a
6684         definition is the start of the line that BEG is in.
6686         * midnight.el (midnight-timer): Move defvar up.
6688         * mouse.el (mouse-drag-region-1): Delete some debugging code.
6690         * saveplace.el (save-place-to-alist): Use with-no-warnings.
6692         * startup.el (command-line): Use with-no-warnings.
6694         * window.el (window-size-fixed): New defvar.
6696         * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
6698         * mail/rmail.el (rmail-font-lock-keywords):
6699         Use font-lock-comment-delimiter-face.
6701         * mail/sendmail.el (mail-font-lock-keywords):
6702         Use font-lock-comment-delimiter-face.
6704         * progmodes/compile.el (next-error-highlight-timer): New defvar.
6706 2005-04-23  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
6708         * progmodes/compile.el (compilation-mode-font-lock-keywords):
6709         Specify t for LAXMATCH when matching directories.
6710         Save match data around compilation-compat-error-properties form.
6712 2005-04-23  David Kastrup  <dak@gnu.org>
6714         * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
6715         Mention that the autoloaded aliases should be kept for AUCTeX.
6717 2005-04-23  Andreas Schwab  <schwab@suse.de>
6719         * isearch.el (isearch-forward): Doc fix.
6721 2005-04-23  Eli Zaretskii  <eliz@gnu.org>
6723         * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
6724         (jit-lock-stealth-nice): Change default value to 0.5.
6726 2005-04-23  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
6728         * abbrev.el (write-abbrev-file): Write table entries in
6729         alphabetical order by table name.
6731 2005-04-22  Kim F. Storm  <storm@cua.dk>
6733         * ido.el (ido-read-internal): Fix `list' completion.
6735 2005-04-22  Kenichi Handa  <handa@m17n.org>
6737         * recentf.el (recentf-save-file-coding-system): New variable.
6738         (recentf-save-list): Encode the file by
6739         recentf-save-file-coding-system and add coding: tag.
6741 2005-04-22  Nick Roberts  <nickrob@snap.net.nz>
6743         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
6745 2005-04-21  Lute Kamstra  <lute@gnu.org>
6747         * loadhist.el (unload-feature): Don't remove a function from hooks
6748         if it is about to be restored to an autoload .  Remove functions
6749         that will become unbound from auto-mode-alist.  Simplify the code.
6751         * subr.el (assq-delete-all): New implementation that is linear,
6752         not quadratic.  Suggested by David Kastrup <dak@gnu.org>.
6753         (rassq-delete-all): New function.
6755         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
6756         Add size-indication-mode.
6758 2005-04-21  Kenichi Handa  <handa@m17n.org>
6760         * international/mule-cmds.el: Add autoload for widget-value in
6761         eval-when-compile.
6763 2005-04-21  Nick Roberts  <nickrob@snap.net.nz>
6765         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
6766         Add tooltip-mode.
6768         * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
6770 2005-04-20  Luc Teirlinck  <teirllm@auburn.edu>
6772         * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
6773         (inferior-lisp-filter-regexp, inferior-lisp-program)
6774         (inferior-lisp-load-command, inferior-lisp-prompt)
6775         (inferior-lisp-mode-hook, lisp-source-modes)
6776         (inferior-lisp-load-hook): defvar->defcustom.
6777         (inferior-lisp-program, inferior-lisp-prompt)
6778         (inferior-lisp-load-hook): Doc fixes.
6779         (inferior-lisp-install-letter-bindings): Small change in
6780         introductory comment.
6782 2005-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
6784         * vc.el (vc-annotate-color-map): Change some colors so that text
6785         using them as foreground is readable on both white and black
6786         backgrounds.
6788 2005-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6790         * international/mule-conf.el (translation-table-for-input):
6791         Remove redundant declaration.
6793 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
6795         * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
6797         * tooltip.el (tooltip-gud-tips-p): Expand documentation.
6798         (tooltip-toggle-gud-tips): New function.
6800 2005-04-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6802         * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
6803         right angle brackets.
6805 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
6807         * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
6809 2005-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6811         * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
6812         Remove.  Update callers to use expand-file-name instead.
6814         * subr.el (syntax-class): New function.
6816         * simple.el (blink-matching-open): Use it.
6818         * paren.el (show-paren-function): Use it to recognize parens that are
6819         also used in 2-char comment markers.
6821 2005-04-19  Lute Kamstra  <lute@gnu.org>
6823         * loadhist.el (unload-feature): Update for new format of
6824         load-history.  Simplify the code.
6826 2005-04-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6828         * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
6829         (mac-add-charset-info): New function.  Initialize variable
6830         mac-charset-info-alist using it.
6831         (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
6832         for translation.
6833         (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
6834         (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
6835         (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
6836         New CCL programs.
6838 2005-04-19  Kim F. Storm  <storm@cua.dk>
6840         * simple.el (next-buffer, prev-buffer, next-error)
6841         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
6842         (clone-indirect-buffer-other-window): Move bindings to bindings.el.
6844         * bindings.el (next-buffer, prev-buffer, next-error)
6845         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
6846         (clone-indirect-buffer-other-window): Move bindings from simple.el.
6847         (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
6848         (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
6850 2005-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6852         * isearch.el (isearch-edit-string): Make the search-ring available for
6853         minibuffer history commands.
6854         (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
6855         the default history commands now work just as well.
6856         (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
6858 2005-04-18  Kim F. Storm  <storm@cua.dk>
6860         * emulation/cua-base.el (cua--pre-command-handler): Add more
6861         elaborate check for shift modifier on non-window systems.
6863 2005-04-18  Lars Hansen  <larsh@math.ku.dk>
6865         * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
6867 2005-04-18  Kim F. Storm  <storm@cua.dk>
6869         * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
6870         and make it optional.  Don't test tooltip-gud-echo-area here.
6871         (tooltip-gud-process-output, gdb-tooltip-print):
6872         Pass tooltip-gud-echo-area to tooltip-show.
6873         (tooltip-help-tips): Remove second optional arg to tooltip-show.
6875 2005-04-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6877         * tooltip.el (tooltip-mode): `emacs-quick-startup' and
6878         `display-graphic-p' may not be bound yet.
6880 2005-04-17  Luc Teirlinck  <teirllm@auburn.edu>
6882         * startup.el (command-line): No longer enable Xterm Mouse mode by
6883         default in terminals compatible with xterm.
6885         * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
6887 2005-04-18  Nick Roberts  <nickrob@snap.net.nz>
6889         * tooltip.el (tooltip-gud-echo-area): Rename from
6890         tooltip-use-echo-area.
6891         (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
6892         (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
6893         area independently of where help tooltips are displayed.
6895 2005-04-17  David Kastrup  <dak@gnu.org>
6897         * cus-theme.el (custom-theme-write-variables): Quote variables
6898         where necessary.
6900 2005-04-17  Richard M. Stallman  <rms@gnu.org>
6902         * simple.el (yank-excluded-properties): Add follow-link to value.
6904         * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
6906         * startup.el (fancy-splash-max-time): Just 30 seconds.
6907         (fancy-splash-delay): Just 7.
6908         (fancy-splash-screens): No time limit other than fancy-splash-max-time.
6910         * loadhist.el (unload-feature): Update for new format of load-history.
6911         Simplify the code.
6913         * mail/rmail.el (rmail-ignored-headers): Ignore more headers
6914         (rmail-font-lock-keywords): Don't fontify the text of a citation.
6916         * mail/sendmail.el (mail-font-lock-keywords):
6917         Don't fontify subject text.
6918         Don't fontify the text of a citation.
6920 2005-04-17  Mark H. Weaver  <mhw@netris.org>  (tiny change)
6922         * comint.el (comint-output-filter): Run comint-output-filter-functions
6923         with point where the user had it.
6925 2005-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6927         * international/ucs-tables.el (ucs-set-table-for-input):
6928         Disable when using unify-on-decoding.
6930 2005-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
6932         * emulation/cua-base.el (cua-global-mark-face): Add special case
6933         for displays supporting a high number of colors.
6935 2005-04-16  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
6937         * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
6939 2005-04-16  Chong Yidong  <cyd@stupidchicken.com>
6941         * filesets.el (filesets-add-buffer): If user supplies a name of a
6942         non-existing fileset, create a new fileset.
6944 2005-04-16  Carsten Dominik  <dominik@science.uva.nl>
6946         * textmodes/org.el (org-up-heading-all): Fix bug with
6947         `outline-up-heading-all'.
6949 2005-04-16  Andreas Schwab  <schwab@suse.de>
6951         * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
6952         /etc/permissions.d/* and /etc/aliases.d/*.
6954 2005-04-16  Kenichi Handa  <handa@m17n.org>
6956         * international/code-pages.el (cp-make-coding-system):
6957         Set `translation-table-for-input' property value to the symbol
6958         ucs-mule-to-mule-unicode, not to that value.
6959         (pt154): Escape guillemet by `\'.
6961 2005-04-15  Luc Teirlinck  <teirllm@auburn.edu>
6963         * loadup.el: Load tooltip if x-show-tip is fboundp.
6965         * startup.el (command-line): Add comment.
6967         * tooltip.el (tooltip-mode): Specify correct standard value for
6968         Custom in init-value.
6970 2005-04-15  Nick Roberts  <nickrob@snap.net.nz>
6972         * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
6973         possible.
6975 2005-04-15  Carsten Dominik  <dominik@science.uva.nl>
6977         * textmodes/org.el (org-agenda-date-prompt): Rename from
6978         `org-agenda-date-today'.
6979         (org-evaluate-time-range): Insert at point instead of directly
6980         after time range.
6981         (org-first-headline-recenter, org-subtree-end-visible-p)
6982         (org-optimize-window-after-visibility-change): New functions
6983         (org-agenda-post-command-hook): Don't allow point at end of line,
6984         to make sure it always hits the text properties.
6985         (org-agenda-next-date-line, org-agenda-previous-date-line):
6986         New commands.
6987         (org-set-regexps-and-options): Category may contain white space.
6988         (org-agenda-get-deadlines, org-agenda-get-scheduled):
6989         Improve marker positions.
6990         (org-agenda-new-marker): Argument POS made optional.
6991         (org-agenda-get-timestamps): Deadlines which are done are listed
6992         in org-done-face now.
6993         (org-agenda-get-todos, org-agenda-get-timestamps)
6994         (org-agenda-get-deadlines, org-agenda-get-scheduled):
6995         Set `undone-face' and `done-face' properties.
6996         (org-last-todo-state-is-todo): New variable.
6997         (org-todo): Set `org-last-todo-state-is-todo'.
6998         (org-agenda-todo): Change face according to
6999         `org-last-todo-state-is-todo'.  And change other lines referring to
7000         the same entry.
7001         (org-calendar-goto-agenda): New command.
7002         (org-calendar-to-agenda-key): New option.
7003         (org-startup-folded): New allowed value `content'.
7004         (org-set-regexps-and-options): Accept new value `content' for
7005         `org-startup-folded'.
7006         (org-get-current-options): Handle new value `content' for
7007         `org-startup-folded'.
7008         (org-insert-todo-heading): New command.
7009         (org-mode): Insert first line "*-* mode: org-mode -*-" when called
7010         interactively in empty file and option
7011         `org-insert-mode-line-in-empty-file' has been set.
7012         (org-agenda-todo,org-agenda-priority): Modify to use
7013         `org-agenda-change-all-lines'.
7014         (org-warning-face): Change color on dark background
7016 2005-04-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7018         * international/mule-cmds.el (set-locale-environment): On Mac OS,
7019         use preferences AppleLocale and AppleLanguages, and variable
7020         mac-system-locale for default locale.  On Mac OS Classic, use
7021         mac-system-coding-system for default coding systems.
7023         * term/mac-win.el: Don't set file-name-coding-system.
7024         Decode variables system-name, emacs-build-system, user-login-name, and
7025         user-full-name by mac-system-coding-system on Mac OS Classic.
7026         (mac-system-coding-system): New variable.
7028 2005-04-13  Luc Teirlinck  <teirllm@auburn.edu>
7030         * startup.el (command-line): Handle `xterm-mouse-mode' before
7031         reading init file.
7033         * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
7035 2005-04-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
7037         * progmodes/sh-script.el (sh-here-document-word): Make it a
7038         defcustom.  Doc fix.
7039         (sh-add): Bash uses $(( )) for arithmetic.
7040         (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
7041         (sh-maybe-here-document): Remove quotes and leading whitespace
7042         from heredoc word when closing.  Indent heredoc with tabs if word
7043         starts with "-".
7045 2005-04-13  Richard M. Stallman  <rms@gnu.org>
7047         * simple.el (undo): Fix previous change.
7049         * custom.el (defface): Doc fix.
7051 2005-04-13  Lute Kamstra  <lute@gnu.org>
7053         * Makefile.in (DONTCOMPILE): Remove list.
7054         (compile, compile-always): Don't use DONTCOMPILE.
7055         (update-authors): Load the library in which batch-update-authors
7056         is defined.
7057         * makefile.w32-in (DONTCOMPILE): Remove list.
7058         (compile, compile-always): Fix comments.
7059         (update-authors): Load the library in which batch-update-authors
7060         is defined.
7062         * generic-x.el (generic-mode-ini-file-find-file-hook):
7063         Rename to ini-generic-mode-find-file-hook.
7064         Keep generic-mode-ini-file-find-file-hook as an alias.
7065         (ini-generic-mode-find-file-hook): Rename from
7066         generic-mode-ini-file-find-file-hook.  Fix docstring.
7067         (ini-generic-mode): Docstring change.
7068         (bat-generic-mode-run-as-comint): Silence the byte compiler.
7070         * help.el (describe-key-briefly): UNTRANSLATED can be nil when
7071         called from lisp.
7073         * generic.el: Move to the emacs-lisp subdir.
7075 2005-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
7077         * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
7078         and C-S- function and cursor motion keys.
7080 2005-04-12  Luc Teirlinck  <teirllm@auburn.edu>
7082         * startup.el (command-line): Enable Xterm Mouse mode by default.
7083         * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
7084         for Custom.  No longer show "Mouse" in mode line when enabled.
7085         Doc fix.
7087 2005-04-12  Kim F. Storm  <storm@cua.dk>
7089         * emulation/cua-base.el (cua-rectangle-face)
7090         (cua-rectangle-noselect-face): Define face attributes here.
7092         * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
7094 2005-04-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7096         * startup.el (command-line): Turn off blinking cursor if
7097         cursorBlink in resources is off or false.
7099 2005-04-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7101         * term/mac-win.el (dnd): Require dnd.
7102         (mac-drag-n-drop): Call dnd-handle-one-url.
7103         (kTextEncodingMacRoman, kTextEncodingISOLatin1)
7104         (kTextEncodingISOLatin2): Remove constants.
7105         (mac-script-code-coding-systems): New constant.
7106         (mac-handle-language-change): New function.
7107         (special-event-map): Bind it to `language-change' event.
7108         (mac-centraleurroman, mac-cyrillic): New coding systems.
7109         (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
7110         (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
7111         and mac-cyrillic-encoder to encode-mac-centraleurroman and
7112         encode-mac-cyrillic, respectively.
7114 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
7116         * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
7117         Don't set overlay-arrow-string to "=>" as this is done
7118         globally in C now.
7120 2005-04-12  Lute Kamstra  <lute@gnu.org>
7122         * generic-x.el (rc-generic-mode, rul-generic-mode):
7123         Fix auto-mode-alist entries.
7124         (etc-fstab-generic-mode): Tweak fontification.
7126         * generic.el (generic-make-keywords-list): Fix docstring.
7127         (generic-mode-internal): Simplify generic-font-lock-keywords.
7129 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
7131         * whitespace.el (whitespace-buffer-leading)
7132         (whitespace-buffer-trailing): Revert the incorrect test inversion.
7133         However, fix the highlight area for the leading and
7134         trailing whitespaces to show space.
7136 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
7138         * whitespace.el (whitespace-version): Bump to 3.5
7140         (whitespace-buffer-leading, whitespace-buffer-trailing):
7141         Invert sense of the test to highlight the whitespace.
7143 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
7145         * progmodes/gud.el (gud-display-line): GUD uses its own
7146         overlay arrow now so don't set overlay-arrow-string.
7147         (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
7149 2005-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
7151         * term.el (term-ansi-current-bold, term-ansi-current-underline)
7152         (term-ansi-current-reverse, term-ansi-current-invisible)
7153         (term-ansi-face-already-done): Change to boolean.
7154         (term-reset-terminal, term-handle-colors-array): Handle the above
7155         vars accordingly.
7156         (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
7157         (term-emulate-terminal): Use the new name.
7159         * faces.el (secondary-selection): Use yellow1, not yellow.
7160         (trailing-whitespace): Use red1, not red.
7162 2005-04-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7164         * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
7165         (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
7166         (dired-dnd-handle-file): Call dnd-get-local-file-uri
7168         * cus-edit.el (dnd): New group.
7170         * term/w32-win.el (dnd): Require dnd
7171         (w32-drag-n-drop): Call dnd-handle-one-url.
7173         * x-dnd.el: Require dnd.
7174         (x-dnd-handle-uri-list, x-dnd-handle-file-name):
7175         Call dnd-handle-one-url.
7176         (x-dnd-types-alist, x-dnd-insert-utf8-text)
7177         (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
7178         to dnd-insert-text.
7179         (x-dnd-protocol-alist, x-dnd-open-file-other-window)
7180         (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
7181         (x-dnd-get-local-file-name, x-dnd-open-local-file)
7182         (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
7184         * dnd.el (dnd-protocol-alist): New file with generic DND functions.
7186 2005-04-11  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
7188         * wdired.el: Doc fixes.
7189         (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
7190         (wdired-use-dired-vertical-movement): Rename from
7191         wdired-always-move-to-filename-beginning.
7192         (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
7193         (wdired-change-to-wdired-mode): Change mode name.
7194         (wdired-newline): Delete.
7196 2005-04-11  Richard M. Stallman  <rms@gnu.org>
7198         * whitespace.el (whitespace-highlight-the-space):
7199         Don't call whitespace-unhighlight-the-space here.
7201         * simple.el (undo): Record t in undo-equiv-table
7202         for the redo record made by an undo-in-region.
7204 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
7206         * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
7207         (gdb-frame-inferior-io-buffer): New Functions to control
7208         display of separate IO buffer.
7209         (menu): Add them to menu-bar.
7210         (gdb-display-buffer): Check for buffer another frame.
7211         Protect GUD buffer.
7212         (gdb-setup-windows): Create IO buffer if not already there.
7213         (gdb-memory-mode): Remove purecopy noops.
7215 2005-04-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
7217         * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
7218         and pass to self-insert-command.
7220 2005-04-11  Lute Kamstra  <lute@gnu.org>
7222         * generic.el: Commentary section cleanup.
7223         (generic): Delete.
7224         (generic-use-find-file-hook, generic-lines-to-scan)
7225         (generic-find-file-regexp, generic-ignore-files-regexp)
7226         (default-generic-mode, generic-mode-find-file-hook)
7227         (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
7228         * generic-x.el (generic-x): Docstring fix.  Put it in the data group.
7229         (generic-use-find-file-hook, generic-lines-to-scan)
7230         (generic-find-file-regexp, generic-ignore-files-regexp)
7231         (default-generic-mode, generic-mode-find-file-hook)
7232         (generic-mode-ini-file-find-file-hook): Move from generic.el.
7234 2005-04-10  Karl Fogel  <kfogel@red-bean.com>
7236         * bookmark.el (bookmark-write-file): Catch errors writing file.
7237         This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
7239 2005-04-10  Richard M. Stallman  <rms@gnu.org>
7241         * startup.el (fancy-splash-tail): Update copyright year.
7242         (command-line): Split part of -Q into -D.
7243         (emacs-basic-display): New defvar.
7244         (fancy-splash-text): Correct name of menu item.
7246         * saveplace.el (save-place-alist-to-file): Catch errors writing file.
7248         * info.el (Info-fontify-node): Handle fontification of multiple * Menu
7249         lines in one node.
7251         * comint.el (comint-send-input): New arg ARTIFICIAL.
7252         Callers in this file changed.
7254         * abbrev.el (define-abbrevs): Read system abbrevs properly.
7256         * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
7258 2005-04-10  Chong Yidong  <cyd@stupidchicken.com>
7260         * url/url-ldap.el (url-ldap): Add docstring.  Fix call to
7261         `ldap-search-internal'.
7263 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7265         * files.el (set-auto-mode-1): Use line-end-position.
7267         * international/latin-1.el:
7268         * international/latin-2.el:
7269         * international/latin-3.el:
7270         * international/latin-4.el:
7271         * international/latin-5.el:
7272         * international/latin-8.el:
7273         * international/latin-9.el: Give punctuation syntax to NBSP.
7275         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
7276         (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
7277         Use char-classes to accept non-ascii letters, accepted in some recent
7278         bibtex implementations.
7280 2005-04-10  Luc Teirlinck  <teirllm@auburn.edu>
7282         * custom.el (custom-set-minor-mode): Any non-nil value for the
7283         variable should enable the mode when set through Custom.
7285 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7287         * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
7288         TAB binding so tab-always-indent is obeyed.
7289         (vhdl-minibuffer-local-map): Move initialization into declaration.
7290         (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
7291         (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
7292         (vhdl-hooked-abbrev): Avoid test for XEmacs.
7293         (vhdl-current-line): Use line-beginning-position.
7294         (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
7295         with-output-to-temp-buffer, so the current position can be recorded.
7297 2005-04-10  Masatake YAMATO  <jet@gyve.org>
7299         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7300         Add regexp for gcov.
7302 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7304         * calendar/time-date.el (time-to-seconds, seconds-to-time)
7305         (days-to-time, time-subtract, time-add): Don't use the #xhhhh
7306         syntax which Emacs 20 doesn't support.
7308 2005-04-09  Richard M. Stallman  <rms@gnu.org>
7310         * help.el (describe-key-briefly, describe-key):
7311         Replace strings as event types with "(any string)".
7313 2005-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7315         * arc-mode.el (archive-mode-map): Move initialization into
7316         the declaration.  Override *all* bindings of `undo'.
7317         (archive-lemacs): Remove, use (featurep 'xemacs) instead.
7319 2005-04-09  Jay Belanger  <belanger@truman.edu>
7321         * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
7323 2005-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
7325         * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
7326         (xterm-register-default-colors): Update color values computation
7327         to match xterm-200.
7329 2005-04-09  Kenichi Handa  <handa@m17n.org>
7331         * international/code-pages.el (iso-latin-7): Fix the map.
7333 2005-04-08  Luc Teirlinck  <teirllm@auburn.edu>
7335         * emacs-lisp/lisp.el (defun-prompt-regexp)
7336         (parens-require-spaces, buffer-end, end-of-defun)
7337         (insert-parentheses): Doc fixes.
7339 2005-04-08  Kim F. Storm  <storm@cua.dk>
7341         * comint.el (comint-highlight-prompt): Fix face spec.
7342         * hi-lock.el (hi-green): Likewise.
7344 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
7346         * cus-edit.el (custom-modified-face):
7347         * comint.el (comint-highlight-input): Fix previous changes.
7348         * term.el (term-handle-ansi-escape): Add a comment.
7350 2005-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7352         * whitespace.el (whitespace-highlight-the-space): Put the same overlay
7353         in the buffer and in whitespace-highlighted-space.
7354         (whitespace-unhighlight-the-space): Simplify.
7355         (whitespace-buffer): Simplify.
7357 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
7359         * textmodes/table.el (table-cell-face): Add special case for
7360         displays supporting a high number of colors.
7361         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
7362         (vhdl-font-lock-reserved-words-face)
7363         (vhdl-speedbar-architecture-face)
7364         (vhdl-speedbar-instantiation-face)
7365         (vhdl-speedbar-architecture-selected-face)
7366         (vhdl-speedbar-instantiation-selected-face): Likewise.
7367         * progmodes/sh-script.el (sh-heredoc-face): Likewise.
7368         * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
7369         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
7370         (ebrowse-root-class-face, ebrowse-member-attribute-face)
7371         (ebrowse-progress-face): Likewise.
7372         * progmodes/compile.el (compilation-info-face): Likewise.
7373         * progmodes/cc-fonts.el (c-invalid-face): Likewise.
7374         * emacs-lisp/re-builder.el (reb-match-3): Likewise.
7375         * calendar/calendar.el (diary-face): Likewise.
7376         * woman.el (woman-italic-face, woman-bold-face)
7377         (woman-unknown-face): Likewise.
7378         * wid-edit.el (widget-button-pressed-face): Likewise.
7379         * whitespace.el (whitespace-highlight-face): Likewise.
7380         * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
7381         * pcvs-info.el (cvs-marked-face): Likewise.
7382         * info.el (info-xref): Likewise.
7383         * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
7384         * hilit-chg.el (highlight-changes-face)
7385         (highlight-changes-delete-face): Likewise.
7386         * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
7387         (hi-red-b): Likewise.
7388         * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
7389         * font-lock.el (font-lock-keyword-face)
7390         (font-lock-function-name-face, font-lock-warning-face): Likewise.
7391         * cus-edit.el (custom-invalid-face, custom-modified-face)
7392         (custom-set-face, custom-changed-face, custom-variable-tag-face)
7393         (custom-group-tag-face-1, custom-group-tag-face): Likewise.
7394         * comint.el (comint-highlight-prompt): Likewise.
7396 2005-04-08  Lute Kamstra  <lute@gnu.org>
7398         * font-lock.el (font-lock-keywords): Docstring fixes.
7400 2005-04-08  Kenichi Handa  <handa@m17n.org>
7402         * ps-mule.el (ps-mule-show-warning): If the number of unprintable
7403         chars are more than a limit, print " and more..." at the tail.
7405 2005-04-08  Kim F. Storm  <storm@cua.dk>
7407         * emacs-lisp/authors.el (authors-aliases): Update list.
7408         (authors-ignored-files): New list.
7409         (authors-fixed-entries): Fix typo.
7410         (authors-renamed-files-alist): Update list.
7411         (authors-add): Check authors-ignored-files.
7413 2005-04-08  Carsten Dominik  <dominik@science.uva.nl>
7415         * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
7416         optional, to ensure backward compatibility.
7418 2005-04-08  Stephen Eglen  <stephen@gnu.org>
7420         * textmodes/flyspell.el (flyspell-large-region): Doc fix.
7422 2005-04-08  Kim F. Storm  <storm@cua.dk>
7424         * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
7426         * mouse.el (mouse-on-link-p): Doc fix.
7428 2005-04-07  Luc Teirlinck  <teirllm@auburn.edu>
7430         * ielm.el (ielm-prompt-read-only): Doc fix.
7432         * comint.el (comint-prompt-read-only): Doc fix.
7434 2005-04-07  Benjamin Rutt  <brutt@bloomington.in.us>
7436         * ffap.el (ffap-pass-wildcards-to-dired): New user option to
7437         ensure dired always handles wildcards passed to ffap.
7438         (find-file-at-point): Use it.
7439         (ffap-dired-wildcards): Doc fix.
7441 2005-04-07  Juri Linkov  <juri@jurta.org>
7443         * simple.el (next-error-overlay-arrow-position): New defvar.
7444         Put "=>" on its property `overlay-arrow-string'.  Add it to
7445         `overlay-arrow-variable-list'.
7447         * progmodes/compile.el (compilation-setup):
7448         Set `next-error-overlay-arrow-position' to nil.  Also set it to
7449         nil in the local hook `kill-buffer-hook'.  Make local variable
7450         `overlay-arrow-string' and set it to "=>".
7451         (compilation-goto-locus): Set BOL position to
7452         `next-error-overlay-arrow-position' instead of
7453         `overlay-arrow-position'.
7455         * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
7456         locally instead of adding it to the global hook.
7457         (Info-kill-buffer): Move up.
7459 2005-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
7461         * term/xterm.el (xterm-standard-colors): Update color values from
7462         xterm-200.
7464 2005-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7466         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
7468         * fast-lock.el:
7469         * lazy-lock.el: Move them to the obsolete subdir.
7471 2005-04-06  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
7473         * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
7474         (wdired-add-replace-advice): Remove.
7475         (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
7477 2005-04-06  Kim F. Storm  <storm@cua.dk>
7479         * startup.el (command-line): Add --bare-bones alias for -Q.
7481 2005-04-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7483         * term/mac-win.el: Use create-fontset-from-mac-roman-font to
7484         create the startup fontset if a font specification ends with
7485         `mac-roman'.
7487 2005-04-06  Lute Kamstra  <lute@gnu.org>
7489         * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
7490         change.
7492         * emacs-lisp/copyright.el (copyright-update-year): Replace the
7493         right subexpression.  Suggested by Jay Bingham <jay.bingham@hp.com>.
7495 2005-04-05  Lute Kamstra  <lute@gnu.org>
7497         * generic.el (generic-mode-internal): Fix 2005-03-31 change.
7498         (define-generic-mode): Ditto.  Fix debug declaration.
7500         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
7501         Put them in the generic-x group.
7503         * calendar/timeclock.el (timeclock): Doc fix.
7505         * generic.el (define-generic-mode): Don't use custom-current-group.
7506         Document default :group value.
7507         * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
7508         (define-global-minor-mode): Don't use custom-current-group.
7510 2005-04-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
7512         * startup.el (command-line-1): Display startup-echo-area-message
7513         when fancy splash screen is in use.
7515         * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
7516         (sh-escaped-newline): New face.
7517         (sh-font-lock-keywords) <shell>: Improve regexp for escaped
7518         newline, and use sh-escaped-newline face.
7520         * progmodes/tcl.el (tcl-escaped-newline): New face.
7521         (tcl-builtin-list): New variable.
7522         (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
7523         newlines.  Fix keywords subexpression number.
7525 2005-04-05  Carsten Dominik  <dominik@science.uva.nl>
7527         * textmodes/org.el (org-diary-default-entry): Fix call to
7528         `add-to-diary-entry'.
7530 2005-04-05  Kim F. Storm  <storm@cua.dk>
7532         * ediff-init.el: Use (featurep 'xemacs).
7534 2005-04-05  David Ponce  <david@dponce.com>
7536         * cus-edit.el (face): Derive from symbol widget.  Display sample
7537         of the current face on the fly.
7538         (widget-face-sample-face-get, widget-face-notify): New functions.
7539         (widget-face-value-create): Remove.
7541         * wid-edit.el (widget-field-end): Temporarily remove field
7542         narrowing before to call `get-char-property'.
7544 2005-04-04  Jay Belanger  <belanger@truman.edu>
7546         * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
7547         (math-read-subscripts): New variable.
7548         (math-read-preprocess-string): Process subscripts.
7550 2005-04-04  Luc Teirlinck  <teirllm@auburn.edu>
7552         * comint.el (comint-prompt-read-only): Doc fix.
7554         * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
7555         `-1'.  Doc fix.
7557 2005-04-04  Carsten Dominik  <dominik@science.uva.nl>
7559         * textmodes/org.el (org-insert-mode-line-in-empty-file):
7560         Change default value to nil.
7562 2005-04-04  Lute Kamstra  <lute@gnu.org>
7564         * autorevert.el (auto-revert-mode): Specify :group.
7565         * battery.el (display-battery-mode): Specify :group.
7566         * diff-mode.el (diff-minor-mode): Specify :group.
7567         * font-core.el (font-lock-mode): Specify :group.
7568         * hl-line.el (hl-line-mode): Specify :group.
7569         * iimage.el (iimage): New customization group.
7570         (iimage-mode): Specify :group.
7571         * longlines.el (longlines-mode): Specify :group.
7572         * master.el: Don't require easy-mmode.
7573         (master): New customization group.
7574         (master-mode): Specify :group.
7575         * msb.el (msb-mode): Specify :group.
7576         * reveal.el (reveal-mode): Specify :group.
7577         * simple.el (next-error-follow-minor-mode): Specify :group.
7578         * smerge-mode.el (smerge-mode): Specify :group.
7579         * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
7580         * emulation/cua-base.el (cua-mode): Specify :group.
7581         * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
7582         * language/thai-util.el (thai-auto-composition-mode)
7583         (thai-word-mode): Specify :group.
7584         * mail/supercite.el (sc-minor-mode): Specify :group.
7585         * progmodes/cwarn.el (cwarn-mode): Specify :group.
7586         * progmodes/flymake.el (flymake-mode): Specify :group.
7587         * progmodes/glasses.el (glasses-mode): Specify :group.
7588         * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
7589         * textmodes/enriched.el (enriched-mode): Specify :group.
7590         * textmodes/refill.el (refill-mode): Specify :group.
7592         * add-log.el (change-log-font-lock-keywords): Names in
7593         parenthesized lists can contain spaces.
7595 2005-04-04  Thien-Thi Nguyen  <ttn@gnu.org>
7597         * startup.el (fancy-splash-text): Shorten default text of
7598         "Emacs Tutorial" line.  Also, if the current language env
7599         indicates an available tutorial file other than TUTORIAL,
7600         extract its title and append it to the line in parentheses.
7601         (fancy-splash-insert): If arg is a thunk, funcall it.
7603 2005-04-04  Jay Belanger  <belanger@truman.edu>
7605         * calc.el (calc-language-alist): Add tags to customization type.
7607 2005-04-03  Luc Teirlinck  <teirllm@auburn.edu>
7609         * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
7610         Doc fix.
7612 2005-04-03  Marcelo Toledo  <marcelo@gnu.org>
7614         * add-log.el (change-log-font-lock-keywords): The manual
7615         describing a Change Log entry, says: (...) "Aside from these
7616         header lines, every line in the change log starts with a space or
7617         a tab.".  The font-lock was not highlighting lines started with
7618         spaces, added support for it.
7620 2005-04-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7622         * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
7623         (bibtex-generate-url-list): Update docstring accordingly.  Put the
7624         complex example in the docstring.
7625         (bibtex-font-lock-url): Use pop.
7627 2005-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7629         * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
7631         * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
7633 2005-04-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
7635         * filesets.el (filesets-set-default): Doc fix.
7637 2005-04-03  Lute Kamstra  <lute@gnu.org>
7639         * generic.el (define-generic-mode): Add argument to specify
7640         keywords for defcustom.
7641         (default-generic-mode): Specify :group.
7643         * generic-x.el: Specify :group for all generic modes.
7645         * desktop.el (desktop-no-desktop-file-hook)
7646         (desktop-after-read-hook): Doc fix.
7648 2005-04-02  Luc Teirlinck  <teirllm@auburn.edu>
7650         * simple.el (visible-mode): Use explicit :group keyword.
7651         This changes the group of `visible-mode-hook' from paren-blinking
7652         to editing-basics.
7654 2005-04-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)
7656         * mail/rmail.el (rmail-parse-url): Bugfix.  Parse traditional
7657         mailbox specifications as well as URLs.
7658         (rmail-insert-inbox-text): Remove unused conditional branches.
7660 2005-04-01  Jay Belanger  <belanger@truman.edu>
7662         * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
7663         (calc-gnuplot-print-command): Move definitions to calc.el.
7665         * calc/calc-embed.el (calc-embedded-announce-formula)
7666         (calc-embedded-open-formula, calc-embedded-close-formula)
7667         (calc-embedded-open-word, calc-embedded-close-word)
7668         (calc-embedded-open-plain, calc-embedded-close-plain)
7669         (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
7670         (calc-embedded-open-mode, calc-embedded-close-mode):
7671         Move definitions to calc.el.
7673         * calc/calc.el (calc-settings-file, calc-language-alist):
7674         Make customizable.
7675         (calc-embedded-announce-formula, calc-embedded-open-formula)
7676         (calc-embedded-close-formula, calc-embedded-open-word)
7677         (calc-embedded-close-word, calc-embedded-open-plain)
7678         (calc-embedded-close-plain, calc-embedded-open-new-formula)
7679         (calc-embedded-close-new-formula, calc-embedded-open-mode)
7680         (calc-embedded-close-mode, calc-gnuplot-name)
7681         (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
7682         from other files and make customizable.
7684 2005-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7686         * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
7687         Use buffer-live-p.
7688         (cvs-mode-run): Don't call cvs-update-header here.
7689         (cvs-run-process): Call cvs-update-header.
7690         Use process properties for cvs-postprocess and cvs-buffer so that
7691         the sentinel can behave better if the temp buffer is killed.
7692         Use a pipe rather than a tty, to better handle unexpected prompts.
7693         (cvs-sentinel): Rewrite.  Call cvs-update-header.
7695 2005-04-01  Andre Spiegel  <spiegel@gnu.org>
7697         * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
7698         we go via Tramp or Ange-FTP.  Suggested by Kai Grossjohann.
7700 2005-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7702         * generic.el (define-generic-mode): Add indentation rule.
7704 2005-03-31  Luc Teirlinck  <teirllm@auburn.edu>
7706         * files.el (mode-require-final-newline): Make Custom correctly
7707         report a nil value and allow to set it to nil via Custom.
7708         Doc fix.
7710 2005-04-01  Kenichi Handa  <handa@m17n.org>
7712         * international/characters.el: Enable the correct case setting for
7713         dotless-i and dotted-I.
7715 2005-04-01  Kim F. Storm  <storm@cua.dk>
7717         * ido.el (ido-file-internal): Fall back to non-ido command if
7718         initial directory is on slow ftp (or tramp) host.
7720 2005-03-31  Richard M. Stallman  <rms@gnu.org>
7722         * emacs-lisp/autoload.el (make-autoload):
7723         Handle define-global-minor-mode.
7725         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
7726         Rename from easy-mmode-define-global-mode.
7727         (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
7729         * progmodes/scheme.el (scheme-mode-syntax-table):
7730         Update syntax of | and # for two-character comment syntax.
7732 2005-03-31  Lute Kamstra  <lute@gnu.org>
7734         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
7735         (define-minor-mode): Call custom-current-group at load-time.
7737         * generic.el (define-generic-mode): Add debug declaration.
7738         Add defcustom for the mode hook.
7739         (generic-mode-internal): Use run-mode-hooks.
7741 2005-03-31  Kim F. Storm  <storm@cua.dk>
7743         * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
7744         (mouse-fixup-help-message): New defun called by show_help_echo
7745         to fixup mouse-2 prefix in help messages when applicable.
7747         * tooltip.el (tooltip-show-help-function): Don't fixup message here.
7749 2005-03-31  Kenichi Handa  <handa@m17n.org>
7751         * language/thai-word.el (thai-find-word-ends): Pay attention to
7752         the case that we reach the end of buffer.
7754         * textmodes/fill.el (fill-text-properties-at): New function.
7755         (fill-newline): Use fill-text-properties-at instead of
7756         text-properties-at.
7758 2005-03-31  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
7760         * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
7761         not comint-quote-filename.
7763 2005-03-31  Thien-Thi Nguyen  <ttn@gnu.org>
7765         * help-fns.el (help-with-tutorial): Revert last change.
7767 2005-03-31  Kim F. Storm  <storm@cua.dk>
7769         * emulation/cua-base.el (cua-scroll-down): Add CUA property.
7771 2005-03-30  Paul Eggert  <eggert@cs.ucla.edu>
7773         * calendar/cal-china.el: Update reference to "Calendrical
7774         Calculations" book; there's a new edition.
7775         * calendar/cal-coptic.el: Likewise.
7776         * calendar/cal-french.el: Likewise.
7777         * calendar/cal-hebrew.el: Likewise.
7778         * calendar/cal-islam.el: Likewise.
7779         * calendar/cal-iso.el: Likewise.
7780         * calendar/cal-julian.el: Likewise.
7781         * calendar/cal-mayan.el: Likewise.
7782         * calendar/cal-persia.el: Likewise.
7783         * calendar/calendar.el: Likewise.
7784         * calendar/holidays.el: Likewise.
7785         * calendar/lunar.el: Likewise.
7786         * calendar/solar.el: Likewise.
7788         * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
7789         white space from doc string.
7791 2005-03-30  Jay Belanger  <belanger@truman.edu>
7793         * calc/calc-help.el (calc-full-help): Remove email address.
7795 2005-03-30  Thien-Thi Nguyen  <ttn@gnu.org>
7797         * help-fns.el (help-with-tutorial): Delete title line.
7799 2005-03-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
7801         * calendar/cal-x.el (calendar-one-frame-setup)
7802         (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
7803         rather than 'symbol for set-window-dedicated-p.
7805         * calendar/appt.el (appt-buffer-name): Make it a constant.
7806         (appt-add): Doc fix.
7808         * filesets.el (filesets-menu-path, filesets-menu-before)
7809         (filesets-menu-in-menu): Doc fix.  Now valid in GNU Emacs.
7810         (filesets-menu-cache-file): Use directory ~/.emacs.d.
7811         (filesets-add-submenu): Delete and use add-submenu instead.
7813 2005-03-30  Carsten Dominik  <dominik@science.uva.nl>
7815         * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
7816         (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
7817         (org-diary-default-entry): New function.
7818         (org-get-entries-from-diary): Better parsing of diary entries.
7819         (org-agenda-check-no-diary): New function.
7820         ("diary-lib"): Advice to function `add-to-diary-list', to allow
7821         linking to diary entries.
7822         (org-agenda-execute-calendar-command): New function.
7823         (org-agenda): Improve visible section in window.
7824         Use `org-fit-agenda-window'.
7825         (org-fit-agenda-window): New option.
7826         (org-move-subtree-down): Better handling of empty lines
7827         at end of subtree.
7828         (org-cycle): Numeric prefix is interpreted now as show-subtree N
7829         levels up.
7830         (org-fontify-done-headline): New option.
7831         (org-headline-done-face): New face.
7832         (org-set-font-lock-defaults): Use `org-headline-done-face'.
7833         (org-table-copy-down): Rename from `org-table-copy-from-above'.
7834         When current field is non-empty, it is copied to next row.
7835         (org-table-copy-from-above): Fix bug which made it
7836         impossible to copy fields containing only a single non-white character.
7838 2005-03-30  Kim F. Storm  <storm@cua.dk>
7840         * kmacro.el (kmacro-end-macro): Isearch may store this command
7841         into the macro -- so ignore it when executing keyboard macro.
7843 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
7845         * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
7847 2005-03-29  Kenichi Handa  <handa@m17n.org>
7849         * language/thai.el ("Thai"): Set setup-function and exit-function
7850         for Thai language environment.
7852         * language/thai-util.el: Require thai-word.
7853         (thai-word-mode-map): New variable.
7854         (thai-word-mode): New minor mode.
7855         (setup-thai-language-environment-internal): New function.
7856         (exit-thai-language-environment-internal): New function.
7858         * language/thai-word.el (thai-word-table): Declare it by defvar,
7859         use dolist to initialize it.
7860         (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
7861         (thai-fill-find-break-point): New functions.
7863 2005-03-29  Richard M. Stallman  <rms@gnu.org>
7865         * simple.el (idle-update-delay): Move definition up.
7866         (set-mark): Doc fix.
7868 2005-03-29  Chong Yidong  <cyd@stupidchicken.com>
7870         * longlines.el: New file.
7872         * simple.el (buffer-substring-filters): New variable.
7873         (filter-buffer-substring): New function.
7874         (kill-region, copy-region-as-kill): Use it.
7876         * register.el (copy-to-register, append-to-register)
7877         (prepend-to-register): Use filter-buffer-substring.
7879 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
7881         * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
7882         (gud-filter-pending-text): Move in front of gdb.
7883         (gud-overlay-arrow-position): New variable.
7884         (gud-sentinel, gud-display-line): Use it in place of
7885         overlay-arrow-position.
7887 2005-03-29  Glenn Morris  <gmorris@ast.cam.ac.uk>
7889         * progmodes/fortran.el (fortran-if-indent): Doc fix.
7890         (fortran-font-lock-keywords-2): Add "where", "elsewhere".
7891         (fortran-font-lock-keywords-4): New variable.
7892         (fortran-blocks-re, fortran-end-block-re)
7893         (fortran-start-block-re): New constants, for hideshow.
7894         (hs-special-modes-alist): Add a Fortran entry.
7895         (fortran-mode-map): Bind fortran-end-of-block,
7896         fortran-beginning-of-block to \M-\C-n, \M-\C-p.
7897         (fortran-mode): Doc fix.  Add fortran-font-lock-keywords-4.
7898         (fortran-looking-at-if-then, fortran-end-of-block)
7899         (fortran-beginning-of-block): New functions, for hideshow.
7901         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
7902         Doc fix.  Tweak regexp.
7903         (f90-beginning-of-block): Push mark first.
7905 2005-03-29  Jay Belanger  <belanger@truman.edu>
7907         * calc/calc.el: Update copyright date.
7908         (calc-version): Increase to 2.1.
7909         (calc-version-date): Remove.
7911         * calc/calc-help.el: Update copyright date.
7912         (calc-full-help): Remove reference to calc-version-date.
7913         Update copyright date.
7915 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7917         * vc.el (vc-do-command): Use a pipe for async processes, so password
7918         prompts don't show up at places where the user can't reply.
7920 2005-03-29  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
7922         * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
7923         on the file name we pass to the inferior shell.
7925 2005-03-29  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
7927         * progmodes/which-func.el (which-function): Be robust in the face of an
7928         imenu--make-index-alist failure.
7930 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7932         * reveal.el (reveal-mode-map): Don't override C-a and C-e.
7934         * progmodes/python.el (python-preoutput-filter): Fix last change.
7936 2005-03-29  Lute Kamstra  <lute@gnu.org>
7938         * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
7939         functions and compiled macros.
7940         (debug-convert-byte-code): Handle macros too.
7941         (debug-on-entry-1): Don't signal an error when trying to clear a
7942         function that is not set to debug on entry.
7944 2005-03-29  Jay Belanger  <belanger@truman.edu>
7946         * calc/calc-lang.el: Add functions to math-function-table
7947         properties of tex and math.
7949 2005-03-29  Kenichi Handa  <handa@m17n.org>
7951         * ps-mule.el (ps-mule-plot-string): Translate characters by
7952         ps-print-translation-table.
7953         (ps-mule-begin-job): Call find-charset-region/string with
7954         ps-print-translation-table.
7955         (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
7957         * ps-print.el (ps-print-translation-table): New variable.
7958         (ps-plot-region): Translate characters by ps-print-translation-table.
7960 2005-03-29  Juri Linkov  <juri@jurta.org>
7962         * simple.el (next-error-highlight-timer): New variable.
7964         * progmodes/compile.el (compilation-goto-locus):
7965         Use `next-error-highlight-timer' instead of `sit-for'.
7967 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7969         * mail/supercite.el (sc-mail-field): Use assoc-string.
7970         (sc-get-address): Simplify regexps.
7972         * files.el (minibuffer-with-setup-hook): New macro.
7973         (find-file-read-args): Use it to avoid let-binding
7974         minibuffer-with-setup-hook (which breaks turning on/off
7975         file-name-shadow-mode while in the prompt).
7977         * complete.el (PC-read-include-file-name-internal): Use
7978         test-completion.
7980 2005-03-28  Luc Teirlinck  <teirllm@auburn.edu>
7982         * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
7984 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7986         * window.el (window-buffer-height): Use count-screen-lines.
7988         * progmodes/python.el (python-preoutput-leftover): New var.
7989         (python-preoutput-filter): Use it.
7990         (python-send-receive): Loop until all the result has been received.
7992 2005-03-28  Juri Linkov  <juri@jurta.org>
7994         * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
7996         * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
7997         "Recover Crashed Session".
7998         (menu-bar-search-menu): Add ellipsis to "Search tagged files".
7999         (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
8000         (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
8001         (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
8002         (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
8003         (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
8004         (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
8005         (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
8007         * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
8008         Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
8009         Ediff Sessions", "Toggle use of separate control buffer frame",
8010         "Use separate frame for Ediff control buffer".
8012         * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
8013         Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
8014         "Rename Bookmark", "Delete Bookmark".
8016         * info.el (Info-mode-menu): Remove ellipsis from "Index".
8017         Add ellipsis to "Lookup a String", "Lookup a string in all indices".
8018         Add `:active Info-index-alternatives' to "Next Matching Item".
8020         * wdired.el (wdired-change-to-wdired-mode):
8021         Mention `wdired-abort-changes' key in the initial message.
8023         * international/mule.el (auto-coding-alist): Associate non-ascii
8024         image filename extensions with `no-conversion'.
8026 2005-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8028         * international/iso-acc.el:
8029         * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
8031 2005-03-26  Luc Teirlinck  <teirllm@auburn.edu>
8033         * textmodes/sgml-mode.el (html-mode): Doc update.
8035         * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
8037 2005-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
8039         * term.el (term-move-columns): Fix face after extending a line.
8040         (term-insert-spaces): Likewise.
8041         (term-reset-terminal): Fix off by one error.
8043 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
8045         * international/mule.el (auto-coding-alist): Add .xpi files.
8047         * files.el (auto-mode-alist): Add .xpi files.
8049 2005-03-26  Jure Cuhalev  <gandalf@owca.info>  (tiny change)
8051         * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
8053 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
8055         * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
8057 2005-03-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
8059         * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
8060         binding.  Suggested by Stephan Stahl <stahl@eos.franken.de>.
8062         * calendar/cal-move.el (calendar-beginning-of-year): Move the
8063         cursor to Jan 1 when needed.
8064         (calendar-end-of-year): Fix -/+ typo.
8065         Reported by Chong Yidong <cyd@stupidchicken.com>.
8067 2005-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8069         * progmodes/flymake.el (flymake-mode): Add autoload cookie.
8071         * emacs-lisp/debug.el (debugger-record-expression): Add a missing
8072         format to `message'.  Inspired by Deepak Goel <deego@gnufans.org>.
8074 2005-03-25  Richard M. Stallman  <rms@gnu.org>
8076         * filesets.el (filesets-init): Add autoload.
8078         * mail/mailalias.el (mail-directory): Doc fix.
8080 2005-03-25  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
8082         * mail/mailalias.el (mail-directory-process): Do nothing if
8083         mail-directory-process is an atom.
8084         (mail-get-names): Ignore mail-directory-names if it is an atom.
8085         (mail-directory-process defvar): Doc fix.
8086         (mail-names): Doc fix.
8088 2005-03-25  Johan Bockg\e,Ae\e(Brd  <bojohan+mail@dd.chalmers.se>  (tiny change)
8090         * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
8092 2005-03-26  Kenichi Handa  <handa@m17n.org>
8094         * international/mule-util.el (detect-coding-with-priority):
8095         Call update-coding-systems-internal before detect-coding-region.
8097 2005-03-26  Nick Roberts  <nickrob@snap.net.nz>
8099         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
8100         (gdb-frames-mode-map): Add follow-link property.
8102 2005-03-25  Jay Belanger  <belanger@truman.edu>
8104         * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
8105         for variables.
8107 2005-03-25  Juri Linkov  <juri@jurta.org>
8109         * image-mode.el: Optimize image filename extension regexps in
8110         autoload cookies.  Associate .x[bp]m with `image-mode-maybe'
8111         in `auto-mode-alist'.
8112         (image-mode): Add `image-toggle-display-text' to local hook
8113         `change-major-mode-hook'.  Display the image as an image by
8114         default.  Set `cursor-type' and `truncate-lines' if the image
8115         is already displayed.  Take into account the current mode (image
8116         or text) in message.
8117         (image-minor-mode): New minor mode.
8118         (image-mode-maybe, image-toggle-display-text): New functions.
8119         (image-toggle-display): Use called-interactively-p.
8120         Let-bind `inhibit-read-only' to t.
8122         * image-mode.el (image-minor-mode): Set `cursor-type' and
8123         `truncate-lines' if the image is already displayed.  Add turning
8124         image-minor-mode off to `change-major-mode-hook'.  Add message.
8125         Call `image-toggle-display-text' after turning image-minor-mode off.
8127 2005-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8129         * international/mule-cmds.el (set-locale-environment): For Mac OS X's
8130         Terminal.app, use utf-8.
8131         (set-display-table-and-terminal-coding-system): Add coding-system arg.
8132         (set-locale-environment): Use it.
8134         * term/xterm.el: Undo last change, better done in mule-cmds.el.
8136         * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
8138         * progmodes/python.el (python-close-block-statement-p)
8139         (python-outdent-p, python-current-defun): Use symbol-end.
8141 2005-03-25  Karl Chen  <quarl@cs.berkeley.edu>  (tiny change)
8143         * files.el (save-some-buffers): Doc fix.
8145 2005-03-25  Werner Lemberg  <wl@gnu.org>
8147         * complete.el, thumbs.el: Replace `legal' with `valid'.
8148         * calendar/calendar.el: Replace `legal' with `valid'.
8149         * emacs-lisp/advice.el: Replace `legal' with `valid'.
8150         * mail/supercite.el: Replace `legal' with `valid'.
8151         * progmodes/cperl-mode.el, progmodes/idlw-shell.el
8152         * progmodes/idlwave.el, progmodes/vhdl-mode.el:
8153         Replace `legal' with `valid'.
8154         * textmodes/reftex-vars.el, textmodes/reftex.el:
8155         Replace `legal' with `valid'.
8157 2005-03-25  Werner Lemberg  <wl@gnu.org>
8159         * calc/calc-forms.el, calc/calc-sel: Replace `illegal' with `invalid'.
8160         * midnight.el, vc-cvs.el: Replace `illegal' with `invalid'.
8161         * emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'.
8162         * emulation/vip.el: Replace `illegal' with `invalid'.
8163         * eshell/esh-io.el, eshell/esh-var.el: Replace `illegal' with
8164         `invalid'.
8165         * mail/supercite.el: Replace `illegal' with `invalid'.
8166         * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
8167         * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
8168         * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
8169         * progmodes/sh-script.el, progmodes/xscheme.el:
8170         Replace `illegal' with `invalid'.
8171         * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
8172         * textmodes/reftex-index.el, textmodes/reftex-parse.el
8173         * textmodes/reftex-ref.el, textmodes/reftex-vars.el
8174         * textmodes/reftex.el, textmodes/org.el:
8175         Replace `illegal' with `invalid'.
8177 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8179         * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
8180         (flymake-find-buildfile, flymake-find-possible-master-files)
8181         (flymake-check-include, flymake-parse-line): Replace loops over the
8182         length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
8184         * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
8185         Substitute file-name-as-directory in the rest of the file.
8186         (flymake-get-common-file-prefix): Rewrite, using compare-strings.
8187         (flymake-replace-region): Remove unused arg `buffer'.
8188         (flymake-check-patch-master-file-buffer): Update calls to it.
8189         (flymake-add-err-info): Remove unused var `count'.
8190         (flymake-mode): Use define-minor-mode.
8192         * progmodes/flymake.el: Use with-current-buffer.
8193         (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
8194         flymake-replace-regexp-in-string, flymake-line-beginning-position)
8195         (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
8196         Avoid testing for `xemacs'.
8197         (flymake-nop): Move.
8198         (flymake-region-has-flymake-overlays): Return the computed value.
8199         (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
8200         Remove unused var `endline'.
8201         (flymake-get-line-count): Remove unused function.
8202         (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
8204         * emulation/vi.el:
8205         * generic.el:
8206         * hilit-chg.el (global-highlight-changes):
8207         * hi-lock.el (hi-lock-mode):
8208         * follow.el: find-file-hooks -> find-file-hook.
8210         * comint.el (comint-insert-input): Obey mouse-yank-at-point.
8212 2005-03-24  Juri Linkov  <juri@jurta.org>
8214         * dired.el (dired-mode-map): Add menu item "Compare directories"
8215         for dired-compare-directories.
8217         * dired-aux.el (dired-compare-directories): Add autoload cookie.
8218         Doc fix.  Replace `read-file-name' with `read-directory-name'.
8220 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8222         * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
8224 2005-03-24  Jay Belanger  <belanger@truman.edu>
8226         * calc/calc-embed.el (calc-embedded-mode-change): Save all
8227         relevant mode settings in calc-embedded-original-modes when modes
8228         are permanently changed.
8230 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8232         * autoinsert.el: find-file-hooks -> find-file-hook.
8234 2005-03-24  Lute Kamstra  <lute@gnu.org>
8236         * generic.el (generic-font-lock-defaults): Make it obsolete.
8237         (generic-font-lock-keywords): New variable to replace
8238         generic-font-lock-defaults.
8239         (generic-mode-set-font-lock): Delete it.
8240         (generic-mode-internal): Don't call generic-mode-set-font-lock.
8241         (generic-bracket-support): Add docstring.
8243         * generic-x.el: Rename generic-font-lock-defaults to
8244         generic-font-lock-keywords throughout.
8245         (mailagent-rules-setup-function): Delete it.
8246         (mailagent-rules-generic-mode): Use anonymous function instead.
8247         (show-tabs-generic-mode-font-lock-defaults-1)
8248         (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
8249         Quote faces.
8250         (show-tabs-tab-face, show-tabs-space-face): Specify background,
8251         not foreground.
8253         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8254         Recognize define-generic-mode.
8256 2005-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8258         * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
8259         if there's no completion table.
8261 2005-03-23  Miles Bader  <miles@gnu.org>
8263         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
8264         Remove tty-specific variants, as they're no longer needed.
8266 2005-03-23  Lute Kamstra  <lute@gnu.org>
8268         * generic-x.el: Code cleanup: make args constant whenever possible.
8269         (installshield-statement-keyword-list)
8270         (installshield-system-functions-list)
8271         (installshield-system-variables-list, installshield-types-list)
8272         (installshield-funarg-constants-list): Make them constants.
8274         * generic.el (generic-make-keywords-list): Add autoload cookie.
8276         * calendar/time-date.el: Add comment on time value formats.
8277         Don't require parse-time.
8278         (with-decoded-time-value): New macro.
8279         (encode-time-value): New function.
8280         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
8281         (days-to-time): Return a valid time value when arg is huge.
8282         (time-since): Use time-subtract.
8283         (time-to-number-of-days): Use time-to-seconds.
8285 2005-03-23  David Ponce  <david@dponce.com>
8287         * recentf.el: (recentf-keep): New option.
8288         (recentf-menu-action): Default to `find-file'.
8289         (recentf-keep-non-readable-files-flag)
8290         (recentf-keep-non-readable-files-p)
8291         (recentf-file-readable-p, recentf-find-file)
8292         (recentf-cleanup-remote): Remove.
8293         (recentf-include-p): More robust.
8294         (recentf-keep-p): New function.
8295         (recentf-remove-if-non-kept): Rename from
8296         `recentf-remove-if-non-readable'.  Use `recentf-keep-p'.
8297         All callers updated.
8298         (recentf-menu-items-for-commands): Fix help string.
8299         (recentf-track-closed-file): Update.  Doc fix.
8300         (recentf-cleanup): Update.  Count removed files.  Doc fix.
8302 2005-03-23  Kim F. Storm  <storm@cua.dk>
8304         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
8305         Don't inherit from fringe face (now happens automatically).
8307 2005-03-22  Kim F. Storm  <storm@cua.dk>
8309         * tooltip.el (tooltip-show-help-function): Ignore negative mouse
8310         position values.
8312 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8314         * menu-bar.el (showhide-date-time): Remove.
8315         (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
8316         (menu-bar-make-mm-toggle): Simplify.
8318 2005-03-22  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
8320         * progmodes/perl-mode.el (perl-font-lock-keywords-2):
8321         Accept qualified variable and function names.
8323 2005-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
8325         * bindings.el (completion-ignored-extensions):
8326         Remove ".lis" for `vax-vms'.
8328 2005-03-22  Andreas Schwab  <schwab@suse.de>
8330         * generic-x.el: Revert last change.
8331         * ldefs-boot.el: Update.
8333 2005-03-22  Jay Belanger  <belanger@truman.edu>
8335         * calc/calc-embed (calc-embedded-original-modes): New variable.
8336         (calc-embedded-save-original-modes)
8337         (calc-embedded-restore-original-modes): New functions.
8338         (calc-do-embedded): Save original modes when entering embedded mode
8339         and restore when leaving embedded mode.
8340         (calc-embedded-modes-change): Change the value of
8341         calc-embedded-original-modes to reflect permanent changes.
8343 2005-03-22  Lute Kamstra  <lute@gnu.org>
8345         * generic-x.el: Require generic again.
8347 2005-03-22  Miles Bader  <miles@gnu.org>
8349         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
8350         Tweak details to look good on both ttys and bitmap displays, light
8351         or dark background, etc.
8353 2005-03-21  Kim F. Storm  <storm@cua.dk>
8355         * tooltip.el (tooltip-show-help-function): Check car and cdr of
8356         mouse position.
8358 2005-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8360         * icomplete.el: Don't forcibly turn on the mode upon load.
8361         (icomplete-mode): Use define-minor-mode.
8362         (icomplete-eoinput): Default to nil.
8363         (icomplete-minibuffer-setup): Remove autoload.
8364         (icomplete-tidy): Simplify.
8365         (icomplete-exhibit): Use buffer-undo-list to determine if we're still
8366         in the initial state or if the user has modified the field.
8367         Fix handling of icomplete-max-delay-chars.
8368         Remove code that handles the oddball case where
8369         minibuffer-completion-table is an integer.
8370         Wrap icomplete-completions in while-no-input in case building
8371         completions takes more time than expected.
8372         (icomplete-completions): Simplify.
8374 2005-03-21  Richard M. Stallman  <rms@gnu.org>
8376         * jka-compr.el (jka-compr-really-do-compress):
8377         Make variable buffer-local.
8379         * image-mode.el: Handle .xpm files too.
8380         (image-toggle-display): Preserve modification flag.
8382         * help.el (where-is): Don't mention aliases with no key bindings.
8384 2005-03-21  Lute Kamstra  <lute@gnu.org>
8386         * generic.el: Fix commentary section.  Don't require cl for
8387         compilation.
8388         (generic-mode-list): Add autoload cookie.
8389         (generic-use-find-file-hook, generic-lines-to-scan)
8390         (generic-find-file-regexp, generic-ignore-files-regexp)
8391         (generic-mode, generic-mode-find-file-hook)
8392         (generic-mode-ini-file-find-file-hook): Fix docstrings.
8393         (define-generic-mode): Make it a defmacro.  Fix docstring.
8394         (generic-mode-internal): Code cleanup.  Add autoload cookie.
8395         (generic-mode-set-comments): Code cleanup.
8396         * generic-x.el: Don't prevent compilation.  Don't require generic.
8397         Follow coding conventions.  Minor code cleanup.
8398         (etc-fstab-generic-mode): Add some keywords.
8399         * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
8400         define-generic-mode like a function declaration.
8402 2005-03-21  Jay Belanger  <belanger@truman.edu>
8404         * calc/calc-embed.el (calc-do-embedded): Put data on stack before
8405         changing modes.
8407 2005-03-21  Sam Steingold  <sds@gnu.org>
8409         * add-log.el (add-log-current-defun): Support more C DEFUN forms.
8411 2005-03-21  Thien-Thi Nguyen  <ttn@gnu.org>
8413         * progmodes/dcl-mode.el (dcl-font-lock-keywords):
8414         Add underscore to "f$ lexicals" regexp.
8416 2005-03-20  Juri Linkov  <juri@jurta.org>
8418         * subr.el (progress-reporter-do-update): When `min-value' is equal
8419         to `max-value', set `percentage' to 0 and prevent division by zero.
8421 2005-03-20  Michael Albinus  <michael.albinus@gmx.de>
8423         Sync with Tramp 2.0.48.
8425         * tramp.el (all): Change all addresses to .gnu.org.
8426         (tramp-append-tramp-buffers): New defun.
8427         (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
8428         Catch `dont-send' signal.
8429         (tramp-set-auto-save-file-modes): Set always permissions, because
8430         there might be an old auto-saved file belonging to another
8431         original file.  This could be a security threat.  Reported by
8432         Kjetil Kjernsmo <kjetil@kjernsmo.net>.
8433         Check for Emacs 21.3.50 removed.
8435         * tramp-smb.el (all): Remove debug construct for
8436         `with-parsed-tramp-file-name'.
8437         (tramp-smb-prompt): Prompt can contain spaces inside directory names.
8438         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
8439         No error message if DIRECTORY or FILENAME doesn't exist.
8440         (tramp-smb-open-connection): Check existence of
8441         `tramp-smb-program'.
8443 2005-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8445         * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
8446         Properly handle the case where the `m' or `s' command's argument is not
8447         yet terminated.
8448         (perl-indent-new-calculate): New function.
8449         (perl-indent-line): Use it.
8451 2005-03-20  Miles Bader  <miles@gnu.org>
8453         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
8454         in text-mode too.  Change to new face names.
8455         (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
8456         Add `:weight bold' attribute.
8457         (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
8459 2005-03-19  Juri Linkov  <juri@jurta.org>
8461         * files.el (auto-mode-alist): Add comment.  Optimize jar/ear/war.
8463         * international/mule.el (auto-coding-alist): Sync with
8464         `auto-mode-alist' by adding upper case archive file extensions
8465         and adding ear/war to jar extension.
8467 2005-03-19  David Casperson  <casper@unbc.ca>  (tiny change)
8469         * textmodes/tex-mode.el (tex-view): If tex-shell process is not
8470         running, restart it.
8472 2005-03-19  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny changes)
8474         * finder.el (finder-current-item): Throw an error on an empty line.
8476         * man.el (Man-follow-manual-reference): If current-word returns
8477         nil, use "".
8479 2005-03-19  Matt Hodges  <MPHodges@member.fsf.org>
8481         * simple.el (goto-line): Doc fix.
8483 2005-03-19  Aaron Hawley  <Aaron.Hawley@uvm.edu>  (tiny change)
8485         * files.el (save-buffer): Doc fix.
8487 2005-03-19  Michael R. Mauger  <mmaug@yahoo.com>
8489         * recentf.el (recentf-cleanup-remote): New variable.
8490         (recentf-cleanup): Use it to conditionally check availability of
8491         remote files.
8493 2005-03-19  Joe Edmonds  <joe-bugs-debian-org@elem.com>  (tiny change)
8495         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
8496         function names.
8498 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
8500         * language/thai-word.el: New file.
8502 2005-03-19  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
8504         * files.el (backup-buffer): If the file's directory is not
8505         writable, use copy instead of move to backup the file.
8507 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
8509         * obsolete/keyswap.el: Moved to obsolete/ from term/.
8511 2005-03-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8513         * ps-print.el (ps-generate-string-list, ps-generate-header-line):
8514         Use functionp instead of symbolp and fboundp.  Reported by Drkm
8515         <darkman_spam@yahoo.fr>.
8516         (ps-print-version): New version 6.6.6.
8518 2005-03-18  Tak Ota  <Takaaki.Ota@am.sony.com>
8520         * textmodes/table.el (table--line-column-position): New idiom.
8521         (table--row-column-insertion-point-p): New function to test
8522         validity of row and column insertion operation at a location.
8523         (table-global-menu, table-cell-menu): Use above functions for
8524         deterministic test operation.
8525         (table--editable-cell-p): Behave in deterministic fashion.
8527 2005-03-18  Juri Linkov  <juri@jurta.org>
8529         * isearch.el (isearch-lazy-highlight-new-loop):
8530         Make arguments beg and end optional.
8531         (isearch-update): Remove optional arguments nil from
8532         isearch-lazy-highlight-new-loop.
8533         (isearch-lazy-highlight-search): Let-bind case-fold-search to
8534         isearch-lazy-highlight-case-fold-search instead of
8535         isearch-case-fold-search, and let-bind isearch-regexp to
8536         isearch-lazy-highlight-regexp.
8537         Use isearch-lazy-highlight-last-string instead of isearch-string.
8539         * replace.el (perform-replace): Remove bindings of global
8540         variables isearch-string, isearch-regexp, isearch-case-fold-search.
8541         Add three new arguments to `replace-highlight'.
8542         (replace-highlight): Add arguments string, regexp, case-fold.
8543         Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
8544         to allow isearch-lazy-highlight-new-loop to use these values
8545         to set corresponding isearch-lazy-highlight-* internal
8546         variables whose values lazy highlighting will use regardless of
8547         changes to global variables isearch-string, isearch-regexp,
8548         isearch-case-fold-search during lazy highlighting loop.
8549         (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
8550         to `lazy-highlight-cleanup'.
8552         * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
8553         (ispell-highlight-face): Set default face to `isearch' when
8554         lazy highlighting is enabled.
8555         (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
8556         priority to 1.  Add lazy highlighting.
8557         (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
8558         from `isearch-dehighlight'.
8560 2005-03-18  David Ponce  <david@dponce.com>
8562         * files.el (hack-local-variables): Do a case-insensitive search
8563         for End.
8565 2005-03-18  Juri Linkov  <juri@jurta.org>
8567         * isearch.el (lazy-highlight-cleanup) <command>: Rename from
8568         `isearch-lazy-highlight-cleanup', add alias to old name and
8569         declare obsolete.  Add release numbers to other obsolete vars.
8570         (isearch-done, isearch-lazy-highlight-new-loop):
8571         Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
8572         (lazy-highlight-cleanup) <variable>: Doc fix.
8573         (isearch-lazy-highlight-update): Rename obsolete
8574         `isearch-lazy-highlight-face' to `lazy-highlight-face'.
8576 2005-03-18  Kenichi Handa  <handa@m17n.org>
8578         * language/thai-util.el: Fix categorization of Thai characters in
8579         thai-category-table.
8580         (thai-composition-pattern): Adjust it for the above change.
8581         (thai-self-insert-command, thai-compose-syllable): New functions.
8582         (thai-compose-region): Use thai-compose-syllable.
8583         (thai-compose-string): Likewise.
8584         (thai-composition-function): Likewise.
8585         (thai-auto-composition): New function.
8586         (thai-auto-composition-mode): New minor mode.
8588         * language/thai.el: Fix patterns to be registered in
8589         composition-function-table.
8591         * international/quail.el (quail-input-method): Locally bind
8592         inhibit-modification-hooks to t.
8594 2005-03-17  Richard M. Stallman  <rms@gnu.org>
8596         * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
8597         (perl-mode): Use run-mode-hooks.
8599         * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
8600         (rmail-pop-password-required, rmail-remote-password): Doc fixes.
8601         (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
8603         * mail/sendmail.el (sendmail-send-it): Reenable the code
8604         to compute resend-to-address and use it.
8606         * tar-mode.el (tar-mode): Turn off undo unconditionally.
8608         * image-mode.el: New file.
8610         * image.el (insert-sliced-image): Add autoload cookie.
8612         * font-lock.el (font-lock-lines-before): New user option.
8613         (font-lock-after-change-function): Obey it.
8615         * bindings.el (esc-map): Make M-g a prefix.
8616         Bind M-g g and M-g M-g to goto-line.
8618         * faces.el (face-id): Doc fix.
8620 2005-03-17  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
8622         * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
8623         (rmail-show-message): Use rmail-unknown-mail-followup-to.
8624         (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
8626         * mail/sendmail.el (mail-yank-ignored-headers)
8627         (mail-font-lock-keywords, mail-mode-fill-paragraph):
8628         Add Mail-Followup-To and Mail-Reply-To headers.
8629         (mail-citation-hook): Add autoload cookie.
8630         (mail-mode): Doc fix.
8631         (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
8632         (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
8633         (mail-mode-fill-paragraph): Handle those headers.
8634         (mail-mailing-lists): New variable.
8635         (mail-mail-reply-to, mail-mail-followup-to): New functions.
8637 2005-03-17  Juri Linkov  <juri@jurta.org>
8639         * isearch.el (isearch-fallback): Check for `(car previous)'
8640         before calling `isearch-other-end-state'.
8642 2005-03-17  Kim F. Storm  <storm@cua.dk>
8644         * simple.el (move-beginning-of-line): Move to beginning of buffer
8645         line, as well as beginning of screen line.
8647 2005-03-16  Glenn Morris  <gmorris@ast.cam.ac.uk>
8649         * calendar/diary-lib.el (mark-diary-entries): Use new optional
8650         argument REDRAW rather than calendar-redrawing variable.
8651         * calendar/calendar.el (calendar-redrawing): Delete.
8652         (redraw-calendar): Do not bind calendar-redrawing.
8654 2005-03-16  Matt Hodges  <MPHodges@member.fsf.org>
8656         * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
8657         diary-file buffer.
8659 2005-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8661         * help.el (describe-mode): Allow a :minor-mode-function property to
8662         specify a different minor mode toggle function than the variable.
8663         * simple.el (auto-fill-function):
8664         * subr.el (add-minor-mode): Use it.
8666 2005-03-16  Kenichi Handa  <handa@m17n.org>
8668         * language/ethio-util.el (sera-being-called-by-w3): New variable.
8669         (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
8670         (ethio-fidel-to-sera-buffer): Likewise.
8672 2005-03-16  Juri Linkov  <juri@jurta.org>
8674         * emacs-lisp/find-func.el (find-function-regexp):
8675         Add defun-emitting macro `menu-bar-make-toggle'.
8677         * isearch.el: Put `isearch-scroll' property to
8678         `split-window-horizontally'.
8680         * info.el: Update error messages for `debug-ignored-errors'.
8681         (Info-isearch-search): Doc fix.
8682         (Info-find-node): Move up code to go into info buffer before
8683         recording the node to the history.
8684         (Info-fontify-node): Fontify titles only if the next line
8685         has two or more `*', `=', `-', `.'.
8686         Display "go to this node" for empty (match-string 3).
8688 2005-03-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8690         * term/mac-win.el: Add mouse pointer shape constants.
8692 2005-03-15  Kim F. Storm  <storm@cua.dk>
8694         * simple.el (move-beginning-of-line): Use vertical-motion.
8696 2005-03-15  Juri Linkov  <juri@jurta.org>
8698         * isearch.el (isearch-error): New variable.
8699         (isearch-invalid-regexp, isearch-within-brackets): Remove.
8700         (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
8701         (isearch-within-brackets-state): Remove.
8702         (isearch-case-fold-search-state, isearch-pop-fun-state):
8703         Decrease frame index.
8704         (isearch-mode, isearch-top-state, isearch-push-state)
8705         (isearch-edit-string, isearch-abort, isearch-search-and-update)
8706         (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
8707         (isearch-search, isearch-lazy-highlight-new-loop):
8708         Replace `isearch-invalid-regexp' with `isearch-error'.
8709         Remove `isearch-within-brackets'.
8710         (isearch-search): Add `search-failed' handler to `condition-case'.
8711         (isearch-lazy-highlight-search): Add `condition-case' to catch
8712         errors and allow `isearch-lazy-highlight-update' to try
8713         highlighting from the beginning of the window.
8714         (isearch-repeat): Move up code to set isearch-wrapped to t
8715         before calling isearch-wrap-function.
8717         * info.el (Info-isearch-initial-node): New internal variable.
8718         (Info-search): Signal an error in isearch mode when search leaves
8719         the initial node.  Signal an error when `bound' is non-nil and
8720         nothing was found in the current subfile.
8721         (Info-isearch-search): Remove `condition-case'.
8722         (Info-isearch-wrap): Don't wrap when search failed during leaving
8723         the initial node.  If `Info-isearch-search' is nil, wrap around
8724         the current node.
8725         (Info-isearch-start): New fun.
8726         (Info-mode): Add buffer-local hook `Info-isearch-start' to
8727         `isearch-mode-hook'.
8729 2005-03-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8731         * simple.el (normal-erase-is-backspace): Set default to t if
8732         running on Mac.
8734         * term/mac-win.el (function-key-map): Sync with x-win.el.
8736 2005-03-15  Kenichi Handa  <handa@m17n.org>
8738         * international/mule-cmds.el (locale-language-names): Modify the
8739         format of elements and add more entries.
8740         (locale-preferred-coding-systems): Add more entries.
8741         (set-locale-environment): Adjust for the change of
8742         locale-language-names.
8744 2005-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8746         * pcvs.el (smerge-ediff): Remove bogus autoload.
8748 2005-03-14  Lute Kamstra  <lute@gnu.org>
8750         * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
8751         Ignore a `*' at the beginning of a line.
8753         * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
8754         * emacs-lisp/byte-run.el (macro-declaration-function): Move from
8755         subr.el.
8756         (dont-compile, eval-when-compile, eval-and-compile): Use declare
8757         to specify indentation.
8759         * generic.el (define-generic-mode): Let generic-mode-list be a
8760         list of strings; test membership with equal.
8762 2005-03-14  Kim F. Storm  <storm@cua.dk>
8764         * simple.el (next-line, previous-line): Add optional try-vscroll
8765         arg to recognize interactive use.  Pass it on to line-move.
8766         (line-move): Don't perform auto-window-vscroll when defining or
8767         executing keyboard macro to ensure consistent behavior.
8769 2005-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8771         * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
8773 2005-03-13  Lute Kamstra  <lute@gnu.org>
8775         * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
8776         debugger-setup-buffer so that backtrace marks the frames set to
8777         debug-on-exit and we don't have to do it manually.  Set an extra
8778         debug-on-exit for macro's.
8779         (debugger-setup-buffer): Don't mark the top frame manually.
8781 2005-03-12  Lute Kamstra  <lute@gnu.org>
8783         * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
8784         lisp-indent-function throughout.
8785         (with-no-warnings): Set lisp-indent-function property.
8787 2005-03-12  Thien-Thi Nguyen  <ttn@gnu.org>
8789         * progmodes/dcl-mode.el (dcl-mode-syntax-table):
8790         Add entry for backslash.
8792 2005-03-12  Juri Linkov  <juri@jurta.org>
8794         * info.el (Info-search): Four fixes for backward search.
8796 2005-03-11  Jay Belanger  <belanger@truman.edu>
8798         * calc/calc.el (calc-language-alist): New variable.
8799         * calc/calc-embed.el (calc-embedded-language-alist): Remove.
8800         (calc-embedded-find-modes): Use calc-language-alist instead of
8801         calc-embedded-language-alist.
8803 2005-03-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
8805         * calendar/calendar.el (calendar-redrawing): New internal
8806         variable.
8807         (redraw-calendar): Remove bogus save-excursion from previous
8808         change.  Bind calendar-redrawing to t for mark-diary-entries.
8809         * calendar/diary-lib.el (mark-diary-entries): No need to redraw
8810         calendar if that is why we were called.
8812 2005-03-11  Kenichi Handa  <handa@m17n.org>
8814         * international/mule.el (make-coding-system): Set property
8815         coding-system-define-form to nil.
8816         (define-coding-system-alias): Likewise.
8818 2005-03-11  Kenichi Handa  <handa@m17n.org>
8820         These changes are suggested by Dave Love <fx@gnu.org>.
8822         * textmodes/fill.el: Change encoding to iso-2022-7bit and add
8823         coding: tag.
8824         (adaptive-fill-regexp): Add more bullets.
8825         (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
8826         regexps.
8828 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8830         * help.el (describe-mode): Properly handle non-trivial lighters.
8831         Don't ignore minor modes that are not listed in minor-mode-list.
8833         * tooltip.el (tooltip-mode): Don't complain that you can't turn the
8834         feature ON when the user requests to turn it OFF.
8836 2005-03-10  Lute Kamstra  <lute@gnu.org>
8838         * emacs-lisp/debug.el (debug-entry-code): Delete it.
8839         (implement-debug-on-entry): New function to replace debug-entry-code.
8840         (debug-on-entry-1): Use implement-debug-on-entry.  Delete the
8841         second argument as the 2005-03-07 change makes it obsolete.
8842         (debug-on-entry, cancel-debug-on-entry): Update call to
8843         debug-on-entry-1.
8844         (debug, debugger-setup-buffer): Comment update.
8845         (debugger-frame-number): Update to work with implement-debug-on-entry.
8847 2005-03-10  Jay Belanger  <belanger@truman.edu>
8849         * calc/calc-embed.el (math-ms-args): Declare it.
8850         (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
8851         math-ms-args.
8852         (calc-embedded-subst): Use math-multi-subst-rec to substitute
8853         variables.
8855 2005-03-10  Nick Roberts  <nickrob@snap.net.nz>
8857         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
8858         Use message-box.
8860         * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
8861         (tooltip-activate-mouse-motions-if-enabled): Use dolist.
8862         (tooltip-gud-tips): Simplify.
8863         (tooltip-gud-tips-p): Remove superfluous :set.
8864         (tooltip-gud-modes): Add fortran-mode.
8865         (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
8867         * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
8869 2005-03-09  Kim F. Storm  <storm@cua.dk>
8871         * play/animate.el (animate-place-char): Use forward-line instead
8872         of next-line to improve performance.
8874 2005-03-09  Simon Josefsson  <jas@extundo.com>
8876         * net/browse-url.el (browse-url-default-browser): Doc fix.
8878 2005-03-09  Miles Bader  <miles@gnu.org>
8880         * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
8881         (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
8883 2005-03-09  Kenichi Handa  <handa@m17n.org>
8885         * international/latin-1.el: Set case and syntax for 255 only if
8886         set-case-syntax-set-multibyte is nil.
8888         * textmodes/ispell.el (ispell-insert-word): New function.
8889         (ispell-word): Use ispell-insert-word to insert a new word.
8890         (ispell-process-line): Likewise.
8891         (ispell-complete-word): Likewise.
8893 2005-03-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
8895         * calendar/calendar.el (redraw-calendar): Preserve point.
8896         Reported by Matt Hodges <MPHodges@member.fsf.org>.
8897         (calendar-week-start-day): Move after definition of
8898         redraw-calendar.  Delete buffer test, since redraw-calendar has
8899         that now.
8901         * calendar/diary-lib.el (mark-diary-entries): Only call
8902         redraw-calendar in the first of any recursive calls.
8903         Reported by Alan Shutko <ats@acm.org>.
8905 2005-03-08  Juri Linkov  <juri@jurta.org>
8907         * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
8908         (html-horizontal-rule, html-line, html-image, html-checkboxes)
8909         (html-radio-buttons): Add a space before the trailing `/>' where
8910         sgml-xml-mode is non-nil.
8911         (sgml-delete-tag): Check if the tag ends with `/>' to not delete
8912         the subsequent tag of the empty XML tag.
8913         (html-href-anchor): Don't set initial input to "http:".
8914         (html-image): Ask for the image URL and set point inside alt="".
8915         (html-name-anchor): Duplicate the name in the `id' attribute when
8916         sgml-xml-mode is non-nil.
8917         (html-paragraph): Remove \n before <p>.
8918         (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
8919         instead of `checked' when sgml-xml-mode is non-nil.
8921         * facemenu.el (list-colors-print): Print #RRGGBB in default face.
8922         Remove 1 space before #RRGGBB to not truncate it on terminal
8923         windows w/o fringes.  Remove 1 space between bg and fg examples
8924         to get more space.
8925         (list-colors-duplicates): Replace `and' with `if' for `boundp' to
8926         avoid byte-compile warnings.
8928         * image-file.el (image-file-handler): Put `safe-magic' property to
8929         `image-file-handler'.
8931         * info.el (Info-isearch-search): Emulate word search in
8932         isearching through multiple Info nodes with Info-search.
8933         (Info-isearch-wrap): Allow isearch-word.
8935 2005-03-08  Lute Kamstra  <lute@gnu.org>
8937         * emacs-lisp/debug.el (debugger-step-through): Make sure that
8938         stepping into the debugger's code is not possible.
8939         (debugger-jumping-flag): Docstring update.
8941 2005-03-08  Jay Belanger  <belanger@truman.edu>
8943         * calc/calc-embed.el (calc-do-embedded): Reset mode line when
8944         embedded mode begins.
8945         (calc-embedded-language-alist): New variable.
8946         (calc-embedded-find-modes): Use calc-embedded-language-alist to
8947         set default language mode.
8949 2005-03-08  Kenichi Handa  <handa@m17n.org>
8951         * international/ccl.el (define-ccl-program): Fix docstring about
8952         extra 256 bytes assured for the output buffer.
8954         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
8955         Fix BUFFER_MAGNIFICATION to 2.
8956         (ccl-encode-mule-utf-16be-with-signature): Likewise.
8958 2005-03-07  Karl Chen  <quarl@cs.berkeley.edu>
8960         * align.el (align-rules-list): Added an alignment rule for CSS
8961         declarations (applies to css-mode and html-mode buffers).
8963 2005-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8965         * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
8967 2005-03-07  Kim F. Storm  <storm@cua.dk>
8969         * simple.el (move-beginning-of-line): New command.
8971         * bindings.el (global-map): Bind C-a to move-beginning-of-line.
8973         * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
8975         * emulation/cua-base.el: Put CUA move property on move-end-of-line
8976         and move-beginning-of-line.
8978         * apropos.el (apropos-print): Omit command from M-x ... RET.
8980 2005-03-07  Nick Roberts  <nickrob@snap.net.nz>
8982         * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
8983         (gdb-send, gdb-send-item): Log items sent from gdb-send too.
8985 2005-03-06  Richard M. Stallman  <rms@gnu.org>
8987         * bindings.el (esc-map): Bind M-g to goto-line.
8989         * facemenu.el (global-map): Bind M-o, not M-g.
8991 2005-03-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8993         * menu-bar.el (menu-bar-file-menu): Add the same :enable to
8994         "Open Directory" as for "Open File".
8996 2005-03-06  Chong Yidong  <cyd@stupidchicken.com>
8998         * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
8999         (push-mark-command): Run activate-mark-hook.
9001 2005-03-06  Richard M. Stallman  <rms@gnu.org>
9003         * help-mode.el (help-mode-finish): Don't alter the element
9004         in view-return-to-alist if there already is one.
9006         * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
9007         make sure the current buffer is the expected one.
9009         * novice.el (disabled-command-function): Output in *Disabled Command*.
9010         Explicitly ignore non-keyboard events, and explicitly handle C-g.
9012         * textmodes/flyspell.el (flyspell-large-region):
9013         Pass args differently for aspell.
9015         * files.el (mode-require-final-newline): Doc fix.
9017 2005-03-03  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
9019         * progmodes/which-func.el (which-function):
9020         Specify NOERROR when calling imenu--make-index-alist.
9022 2005-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9024         * simple.el (normal-erase-is-backspace): Define default value.
9026         * custom.el (custom-theme-set-variables): Remove unused var
9027         `immediate'.
9028         (custom-reevaluate-setting): Simple function to handle variables
9029         that are defined before their default value can really be
9030         computed.
9032         * startup.el (command-line): Use it for temporary-file-directory,
9033         small-emporary-file-directory, auto-save-file-name-transforms,
9034         blink-cursor-mode, and normal-erase-is-backspace.
9036         * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
9037         progress, even with buggy anchored keywords.
9039 2005-03-05  Luc Teirlinck  <teirllm@auburn.edu>
9041         * simple.el (goto-line): Remove unbalanced final parenthesis.
9043 2005-03-05  Richard M. Stallman  <rms@gnu.org>
9045         * simple.el (goto-line): Use a number at point as the default.
9046         With C-u as arg, switch buffers.
9048 2005-03-05  Juri Linkov  <juri@jurta.org>
9050         * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
9051         with `no-blinking-cursor'.
9053         * startup.el (no-blinking-cursor): New defvar.
9054         (command-line): Add `--no-blinking-cursor' to longopts.
9055         Set `no-blinking-cursor' to t for command line arguments
9056         -Q, -nbc, --no-blinking-cursor.  Replace `emacs-quick-startup'
9057         with `no-blinking-cursor' in the condition for calling
9058         `blink-cursor-mode'.
9060 2005-03-04  Luc Teirlinck  <teirllm@auburn.edu>
9062         * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
9063         (menu-bar-options-save): Add blink-cursor-mode.
9064         (menu-bar-options-menu): Add blink-cursor-mode.
9066 2005-03-04  Ulf Jasper  <ulf.jasper@web.de>
9068         * calendar/icalendar.el (icalendar-version): Increase to 0.11.
9069         (icalendar-export-file, icalendar-export-region)
9070         (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
9071         (icalendar--convert-ical-to-diary): Fix problem with DURATION.
9073 2005-03-04  Lute Kamstra  <lute@gnu.org>
9075         * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
9076         (debug-function-list): Ditto.
9078 2005-03-04  Robert J. Chassell  <bob@rattlesnake.com>
9080         * textmodes/texinfmt.el (texinfo-append-refill):
9081         Redefine the types of line to which @refill
9082         is not appended by replacing a search for `@refill\\|@bye' with
9083         `@refill\\|^[ \t]*@'.  The intent is to solve both the `@end
9084         itemize@refill' bug and the unfilled long lines bug.
9085         (texinfmt-version): Update number and date.
9087 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
9089         * international/code-pages.el (windows-1250, windows-125[2-8])
9090         (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
9092 2005-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9094         * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
9095         bound yet.
9097 2005-03-02  Romain Francoise  <romain@orebokech.com>
9099         * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
9100         buffer after removing limits.
9101         (ibuffer-pop-filter): Ditto.
9102         Update copyright.
9104 2005-03-02  Miles Bader  <miles@gnu.org>
9106         * button.el (make-text-button): If the user doesn't specify a
9107         type, use the default.  Rewrite to use `add-text-properties' and
9108         plist functions.
9110 2005-03-01  Lute Kamstra  <lute@gnu.org>
9112         * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
9113         (debugger-jumping-flag): New var.
9114         (debug-entry-code): Use it.
9115         (debugger-jump): Use debugger-jumping-flag and add
9116         debugger-reenable to post-command-hook.
9117         (debugger-reenable): Use debugger-jumping-flag and remove itself
9118         from post-command-hook.
9119         (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
9120         debugger-reenable.
9122 2005-03-01  Robert J. Chassell  <bob@rattlesnake.com>
9124         * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
9125         inclusion of "itemize\\|", which may be unnecessary, is certainly
9126         inelegant, and stops refilling in itemize lists when formatting
9127         Japanese Texinfo files to Info.
9128         Update copyright to 2005.
9130 2005-03-01  Nick Roberts  <nickrob@snap.net.nz>
9132         * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
9133         of an error if GDB can't find the source file.
9135 2005-03-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
9137         * calendar/calendar.el (redraw-calendar): Work from any buffer,
9138         not just the calendar.
9140         * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
9141         first.
9142         (diary-redraw-calendar): New function.
9143         (make-diary-entry): Add diary-redraw-calendar to local
9144         write-contents-functions.  Turn off selective display before
9145         inserting in diary.
9147 2005-03-01  Kim F. Storm  <storm@cua.dk>
9149         * emacs-lisp/copyright.el (copyright-fix-years): New command.
9151 2005-03-01  Lute Kamstra  <lute@gnu.org>
9153         * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
9154         that debug-entry-code can be safely removed from a function while
9155         this code is being evaluated.  Revert the 2005-02-27 change as the
9156         new implementation no longer requires it.  Make sure that a
9157         function body containing just a string is not mistaken for a docstring.
9158         (debug): Skip one more frame in case of debug on entry.
9159         (debugger-setup-buffer): Delete one more frame line in case of
9160         debug on entry.
9161         (debugger-frame-number): Update to use the new text introduced by
9162         the 1999-11-03 change.  Skip one more frame in case of debug on entry.
9164 2005-02-28  Kim F. Storm  <storm@cua.dk>
9166         * double.el (double-translate-key): Call force-window-update after
9167         read-event to avoid crash in redisplay.
9169 2005-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9171         * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
9172         (debug): Use it.  Move the inhibit-trace earlier.
9173         (debug-entry-code): New const.
9174         (debug-on-entry-1): Use it.
9176 2005-02-28  Chong Yidong  <cyd@stupidchicken.com>
9178         * international/utf-16.el (ccl-encode-mule-utf-16le):
9179         Fix BUFFER_MAGNIFICATION to 2.
9180         (ccl-encode-mule-utf-16be): Likewise.
9182 2005-02-28  Kenichi Handa  <handa@m17n.org>
9184         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
9185         Fix BUFFER_MAGNIFICATION to 4.
9186         (ccl-encode-mule-utf-16be-with-signature): Likewise.
9188 2005-02-28  Nick Roberts  <nickrob@snap.net.nz>
9190         * speedbar.el (speedbar-update-flag): Doc fix.
9191         (speedbar-show-info-under-mouse): Give set-mouse-position the right
9192         argument.
9194 2005-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9196         * reveal.el (reveal-post-command): Don't try to reveal overlays which
9197         have a non-nil `invisible' property but are actually visible.
9199         * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
9200         for perldoc sections.
9201         (perl-outline-regexp, perl-outline-level): New var and function.
9202         (perl-mode): Use them.
9204 2005-02-27  Glenn Morris  <gmorris@ast.cam.ac.uk>
9206         * calendar/diary-lib.el (diary-remind): Discard any mark portion
9207         from diary-entry.  Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
9209 2005-02-27  Luc Teirlinck  <teirllm@auburn.edu>
9211         * cus-edit.el: Comment change.
9212         (custom-buffer-create-internal): Slightly reword text at top of
9213         Custom buffers.  Mention there that saving an option edits the
9214         init file.  Add link to Emacs manual node on `custom-file'.
9215         (custom-magic-alist): Rewrite individual State messages to use
9216         capitalized keywords.  Doc fix.
9218 2005-02-27  Matt Hodges  <MPHodges@member.fsf.org>
9220         * calendar/calendar.el (calendar-buffer): Move above
9221         calendar-week-start-day.
9222         (calendar-week-start-day): Doc fix.  Add :set function.
9223         (calendar-minimum-window-height): New variable.
9224         (generate-calendar-window): Only resize window if selected-window
9225         is displaying the calendar buffer.  Use new variable
9226         calendar-minimum-window-height.
9227         (generate-calendar): Reword error message.
9228         (calendar-mode-map): Bind DEL to scroll-other-window-down.
9230 2005-02-27  Andreas Schwab  <schwab@suse.de>
9232         * vc.el (vc-do-command): Don't run command asynchronously when
9233         operating in a remote directory.
9235         * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
9236         change from sync with Tramp 2.0.47.
9238 2005-02-27  Richard M. Stallman  <rms@gnu.org>
9240         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
9242         * textmodes/flyspell.el (flyspell-mode-on):
9243         Call ispell-change-dictionary only if necessary.
9245         * emacs-lisp/re-builder.el (regexp-builder): New function.
9247         * register.el (describe-register-1): Explicitly handle
9248         yank-excluded-properties = t.
9250         * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
9251         (custom-magic-alist): Change the status descriptions again.
9252         (face widget-type): Total rewrite based on `restricted-sexp'
9253         to eliminate the confusing double hiding levels.
9255         * emacs-lisp/debug.el (debug-on-entry-1):
9256         If function body is empty, add nil as body form.
9258 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9260         * emacs-lisp/trace.el (inhibit-trace): New var.
9261         (trace-make-advice): Use it.
9263         * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
9265 2005-02-26  Kim F. Storm  <storm@cua.dk>
9267         * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
9268         (mouse-on-link-p, mouse-drag-region-1): Use it.
9270 2005-02-25  Lute Kamstra  <lute@gnu.org>
9272         * replace.el (query-replace-read-from): Fix 2005-02-19 change.
9274 2005-02-24  Luc Teirlinck  <teirllm@auburn.edu>
9276         * frame.el (blink-cursor-mode): Add :group keyword.
9278 2005-02-24  Ulf Jasper  <ulf.jasper@web.de>
9280         * calendar/icalendar.el (icalendar--decode-isodatetime):
9281         New optional argument DAY-SHIFT.
9282         (icalendar-export-region): Fix coding-system-for-write.
9283         (icalendar--convert-ical-to-diary): Shift end-day of all-day
9284         events by one.
9286 2005-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9288         * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
9290 2005-02-24  Kim F. Storm  <storm@cua.dk>
9292         * international/iso-acc.el (iso-accents-compose): Fix crash
9293         during redisplay.  Call force-window-update after read-event
9294         and delete-region to signal that window is not accurate.
9296 2005-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9298         * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
9299         Remove unused and inexistent var `inhibit-trace'.
9300         (debugger-mode): Use run-mode-hooks.
9301         (debugger-list-functions): Add buttons; setup xref stack.
9303 2005-02-23  Richard M. Stallman  <rms@gnu.org>
9305         * calendar/appt.el (appt-time-msg-list): 3rd elt of each
9306         appointment says it was explicitly made.
9307         (appt-add): Set the 3rd element.
9308         (appt-make-list): Preserve explicit appointments.
9310         * subr.el (find-tag-default): Catch errors in forward-sexp.
9312 2005-02-23  Juri Linkov  <juri@jurta.org>
9314         * info.el (Info-isearch-search): New defcustom.
9315         (Info-isearch-search): Call the default isearch function
9316         when Info-isearch-search is nil.
9317         (Info-isearch-wrap): Use variable Info-isearch-search.
9319 2005-02-22  Luc Teirlinck  <teirllm@auburn.edu>
9321         * cus-edit.el: Comment change.
9323 2005-02-22  Kim F. Storm  <storm@cua.dk>
9325         * progmodes/hideif.el (hide-ifdef-use-define-alist):
9326         Use completing-read.  Suggested by Juan-Leon Lahoz Garcia.
9328 2005-02-22  Simon Josefsson  <jas@extundo.com>
9330         * net/browse-url.el (browse-url-netscape-new-window-is-tab):
9331         New variable.
9332         (browse-url-netscape): Use it.  Suggested by "Johann 'Myrkraverk'
9333         Oskarsson" <myrkraverk@users.sourceforget.net>.
9335 2005-02-22  Kim F. Storm  <storm@cua.dk>
9337         * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
9338         check that window of that event is the selected window.
9339         (mouse-drag-region-1): Compare mouse event window to selected
9340         window before setting point.
9342         * tooltip.el (tooltip-show-help-function): Pass event to
9343         mouse-on-link-p so it can check selected window.
9345 2005-02-22  Kenichi Handa  <handa@m17n.org>
9347         * ps-mule.el (ps-mule-header-string-charsets): Delete it.
9348         (ps-mule-show-warning): New function.
9349         (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
9350         characters are found.
9352         * ps-print.el (ps-header-footer-string): Return a list of header
9353         and footer strings.
9355 2005-02-21  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
9357         * pcvs.el (cvs-retrieve-revision): Fix thinko.
9359 2005-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9361         * frame.el (blink-cursor-mode): Use define-minor-mode.
9363         * term/mac-win.el (function-key-map): Use char-names more consistently.
9364         (file-name-coding-system): Only set it for MacOS-9.  The other case is
9365         already handled in mule-cmds.el (where it also works when mac-win.el
9366         is not used).
9368 2005-02-21  Kenichi Handa  <handa@m17n.org>
9370         * international/mule.el (ctext-pre-write-conversion): Always use
9371         " *code-converting-work*" buffer for work.
9373         * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
9375 2005-02-20  Thien-Thi Nguyen  <ttn@gnu.org>
9377         * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
9379 2005-02-20  Jonathan Yavner  <jyavner@member.fsf.org>
9381         * ses.el (undo-more): Restore defadvice, but only the part that
9382         allows changes outside the restricted area of the buffer.
9384 2005-02-20  Kim F. Storm  <storm@cua.dk>
9386         * simple.el (line-move): Add fourth optional arg try-vscroll which
9387         must be set to perform auto-window-vscroll.
9388         When moving backwards and doing auto-window-vscroll, automatically
9389         vscroll to the last part of lines which are taller than the window.
9390         (next-line, previous-line): Set try-vscroll arg on line-move.
9392 2005-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
9394         * replace.el (query-replace, query-replace-regexp)
9395         (replace-string, replace-regexp): When operating on region, make
9396         the minibuffer prompt say so.
9398         * isearch.el (isearch-forward): Document isearch-query-replace and
9399         isearch-query-replace-regexp keybindings.
9401 2005-02-19  Jay Belanger  <belanger@truman.edu>
9403         * calc/calc-aent.el (math-read-token): Add local variable.
9405         * calc/calc-prog.el (calc-user-define-edit): Add local variable.
9406         (calc-edit-top): Move declaration to earlier in file.
9407         (calc-edit-macro-repeats): Add local variables.
9409         * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
9410         Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
9411         calcFunc-tanh.
9412         Adjust integration rule for calcFunc-tan.
9414 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
9416         * viper-cmd.el (viper-prefix-commands): Make into a defconst.
9417         (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
9418         (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
9419         (viper-skip-separators): Bug fix.
9420         (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
9421         particular major mode.
9422         (viper-del-backward-char-in-replace): Don't put deleted char on the
9423         kill ring.
9425         * viper-ex.el (viper-color-display-p): New function.
9426         (viper-has-face-support-p): Use viper-color-display-p.
9428         * viper-keym.el (viper-gnus-modifier-map): New keymap.
9430         * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
9432         * viper-util.el (viper-glob-unix-files): Fix shell status check.
9433         (viper-file-remote-p): Make equivalent to file-remote-p.
9435         * viper.el (viper-major-mode-modifier-list):
9436         Use viper-gnus-modifier-map.
9438 2005-02-19  David Kastrup  <dak@gnu.org>
9440         * subr.el (subregexp-context-p): Fix garbled doc string by adding
9441         quoting.
9443 2005-02-19  Jay Belanger  <belanger@truman.edu>
9445         * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
9446         Remove extra definitions.
9447         (calc-coth): New function.
9448         (calcFunc-cot): Fix `let'.
9450 2005-02-19  Eli Zaretskii  <eliz@gnu.org>
9452         * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
9453         the reasons we use "type pc" in these faces.
9455         * button.el (button): Ditto.
9457 2005-02-19  Michael Mauger  <mmaug@yahoo.com>
9459         * replace.el (query-replace-read-from): Set the value of
9460         query-replace-from-history-variable to handle the case of an empty
9461         string entered to accept the suggested default.
9463         * net/tramp.el (tramp-file-name-for-operation):
9464         Use dired-call-process instead of dired-call-process-command.
9466 2005-02-19  Jay Belanger  <belanger@truman.edu>
9468         * calc/calc-arith.el (math-trig-inverses, math-div-trig)
9469         (math-div-non-trig): New variables.
9470         (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
9471         (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
9472         (math-combine-prod, math-div-symb-fancy): Add simplifications for
9473         trig expressions.
9475 2005-02-19  Nick Roberts  <nickrob@snap.net.nz>
9477         * progmodes/gdb-ui.el (gdb-var-update-handler)
9478         (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
9479         for watch expressions,
9480         (gdb-var-create-handler): Don't set speedbar-update-flag.
9481         (gdb-post-prompt): Simplify test for speedbar.
9483 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
9485         * ediff.el (ediff-set-diff-overlays-in-one-buffer)
9486         (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
9487         we use the syntax table of the correct buffer.
9488         (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
9489         Felix Gatzemeier.
9491         * ediff-init.el (ediff-hide-face): Check for definedness of functions.
9492         (ediff-file-remote-p): Make synonymous with file-remote-p.
9493         In all deffaces ediff-*-face-*, use min-colors.
9495         * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
9496         ediff-recurse-to-subdirectories.
9497         (ediff-mark-if-equal): Check that the arguments are strings, use
9498         ediff-same-contents (after to Felix Gatzemeier).
9500         * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
9501         nil.
9503 2005-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9505         * log-view.el (log-view-message-re): Fix up Subversion regexp.
9507 2005-02-18  David Kastrup  <dak@gnu.org>
9509         * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
9510         use `mark-active' when defined.
9512 2005-02-18  Kenichi Handa  <handa@m17n.org>
9514         * ps-print.el (ps-font-info-database): New entry
9515         ZapfChancery-MediumItalic with correct font name.  Fix font name
9516         of the entry Zapf-Chancery-MediumItalic.
9518 2005-02-16  Luc Teirlinck  <teirllm@auburn.edu>
9520         * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
9522 2005-02-16  Kim F. Storm  <storm@cua.dk>
9524         * ido.el (ido-fallback-command): Pass user input to fallback command.
9526 2005-02-16  Nick Roberts  <nickrob@snap.net.nz>
9528         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
9529         (gdb-find-file-hook): Add server prefix.
9531 2005-02-16  Richard M. Stallman  <rms@gnu.org>
9533         * replace.el (perform-replace): Pass new args to replace-highlight.
9534         (replace-highlight): Take region args,
9535         and pass them to isearch-lazy-highlight-new-loop.
9537         * novice.el (disabled-command-hook): Autoload the defalias
9538         and the make-obsolete-variable call.
9540         * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
9542         * isearch.el (isearch-lazy-highlight-start-limit)
9543         (isearch-lazy-highlight-end-limit): New variables limit
9544         the region for highlighting.
9545         (isearch-lazy-highlight-new-loop): New args BEG and END.
9546         (isearch-lazy-highlight-search): Use the new vars.
9547         (isearch-lazy-highlight-update): Likewise.
9549         * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
9551         * cus-start.el (all): Use default-boundp.
9553 2005-02-15  David Casperson  <casper@unbc.ca>  (tiny change)
9555         * menu-bar.el (menu-bar-select-frame): Handle current frame.
9557 2005-02-15  Luc Teirlinck  <teirllm@auburn.edu>
9559         * autorevert.el (auto-revert-stop-on-user-input)
9560         (auto-revert-verbose): Doc fixes.
9562 2005-02-15  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
9564         * international/mule-cmds.el (set-locale-environment): Remove call
9565         to set-selection-coding-system on Windows.
9567 2005-02-15  Jay Belanger  <belanger@truman.edu>
9569         * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
9570         calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
9571         calcFunc-coth.
9572         (math-simplify-sqrt): Add simplifications.
9574         * calc/calc-arith.el (math-real-if-arg-functions): Add functions
9575         to list.
9577         * calc/calc-ext.el: Add functions to autoloads.
9579         * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
9580         (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
9581         (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
9582         (math-csc-raw, math-cot-raw): New functions.
9584         * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
9586         * calc/calc-undo.el (calc-handle-undo): Remove prefix from
9587         the variable name in a message.
9589         * calc/calc-units.el: Add simplification rules for calcFunc-sec,
9590         calcFunc-csc, calcFunc-cot.
9592         * calc/calcalg2.el: Add derivative and integration rules for
9593         calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
9594         calcFunc-csch, calcFunc-coth.
9595         (math-do-integral-methods): Add to checks for when to use
9596         substitutions.
9598         * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
9600 2005-02-15  Lute Kamstra  <lute@gnu.org>
9602         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9603         Add ;;;###autoload to `outline-regexp'.  Suggested by Stefan Monnier
9604         <monnier@iro.umontreal.ca>
9605         (lisp-outline-level): Improve efficiency.  Suggested by David
9606         Kastrup <dak@gnu.org>.
9608 2005-02-15  Nick Roberts  <nickrob@snap.net.nz>
9610         * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
9611         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
9612         (gdb-set-gud-minor-mode-existing-buffers): New functions.
9613         (gdb-find-file-hook): New hook.  Add it to find-file-hook.
9614         (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
9616 2005-02-14  Luc Teirlinck  <teirllm@auburn.edu>
9618         * cus-start.el (all): Comment change.
9620 2005-02-14  Lute Kamstra  <lute@gnu.org>
9622         * cus-start.el (all): Check if symbol is void.
9624 2005-02-14  Carsten Dominik  <dominik@science.uva.nl>
9626         * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
9627         optional argument to \cite.
9629 2005-02-14  Richard M. Stallman  <rms@gnu.org>
9631         * cus-edit.el (custom-buffer-create-internal): Update help message.
9632         (custom-magic-alist): Update help messages.
9634         * cus-start.el (all): Allow a var to specify a standard value.
9636 2005-02-12  Luc Teirlinck  <teirllm@auburn.edu>
9638         * custom.el (custom-theme-set-variables): Handle variable aliases.
9640         * frame.el (blink-cursor-timer): Doc fix.
9641         (blink-cursor): Make it an alias for `blink-cursor-mode' and
9642         declare obsolete.
9643         (blink-cursor-mode): Define with defcustom and use correct
9644         standard expression in that defcustom.
9645         * startup.el (command-line): Adapt to above changes in frame.el.
9647 2005-02-11  Lute Kamstra  <lute@gnu.org>
9649         * apropos.el (apropos-score-doc): Prevent division by zero.
9651 2005-02-11  Ulf Jasper  <ulf.jasper@web.de>
9653         * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
9654         (icalendar--get-event-property-attributes)
9655         (icalendar--get-event-properties)
9656         (icalendar--datetime-to-diary-date): New functions.
9657         (icalendar--split-value): Doc fix.
9658         (icalendar--datetime-to-noneuropean-date)
9659         (icalendar--datetime-to-european-date): New optional argument
9660         SEPARATOR.  Return result as a string instead of a list.
9661         (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
9662         (icalendar--convert-string-for-export): Rename arg S to STRING.
9663         (icalendar-export-region): Doc fix.  Change name of error buffer.
9664         Save output buffer.
9665         (icalendar-import-file): Add blank at end of prompt.
9666         (icalendar-import-buffer): Doc fix.  Do not switch to error
9667         buffer.  Indicate status in return value.
9668         (icalendar--convert-ical-to-diary): Doc fix.  Change name of error
9669         buffer.  Save output buffer.  Handle exception from recurrence
9670         rules (EXDATE, EXRULE).  Handle start- and end-date of recurring
9671         events.  Fix problems with weekly all-day events.
9673 2005-02-10  Richard M. Stallman  <rms@gnu.org>
9675         * simple.el (eval-expression-print-format):
9676         Avoid warning about edebug-active.
9678         * help.el (help-for-help-internal): Rename from help-for-help.
9679         (help-for-help): Define with defalias.
9681         * font-core.el (font-lock-default-function): Use with-no-warnings.
9683         * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
9685         * custom.el (defface): Doc fix.
9687 2005-02-10  Nick Roberts  <nickrob@snap.net.nz>
9689         * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
9690         width 0" to prevent word wrapping problems.
9692 2005-02-09  Kim F. Storm  <storm@cua.dk>
9694         * ido.el (ido-file-extensions-order): New defcustom.
9695         (ido-file-extension-lessp, ido-file-extension-aux)
9696         (ido-file-extension-order): New advanced file ordering.
9697         (ido-file-lessp): New simple file ordering.
9698         (ido-sort-list): Remove.
9699         (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
9700         (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
9702 2005-02-08  Dan Nicolaescu  <dann@ics.uci.edu>
9704         * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
9705         that some versions of grep produce.
9706         (grep-mode-font-lock-keywords): Likewise.
9708 2005-02-09  Nick Roberts  <nickrob@snap.net.nz>
9710         * progmodes/gdb-ui.el (gdb-location-list): New variable.
9711         (gdb-cdir): Delete.
9712         (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
9713         (gdb-source-info): Treat case when source file is in another
9714         directory properly.
9715         (gdb-get-location): New function.
9717 2005-02-07  Jay Belanger  <belanger@truman.edu>
9719         * calc/calc-prog.el (calc-write-parse-table-part)
9720         (calc-fix-token-name): Fix a check for language type.
9722         * calc/calccomp.el (math-compose-expr): Fix a check for language type.
9724 2005-02-07  Andre Spiegel  <spiegel@gnu.org>
9726         * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
9727         as directory not writable.
9729 2005-02-07  Kim F. Storm  <storm@cua.dk>
9731         * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
9732         (cua--standard-movement-commands): Remove list.
9733         Instead, set CUA property value to move for movement commands.
9734         (cua-movement-commands): Remove.  Users must set CUA prop instead.
9735         (cua--pre-command-handler): Check CUA property.
9736         (cua--init-keymaps): Don't remap undo commands.
9737         (cua-mode): Don't call cua--rectangle-on-off.
9739         * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
9740         (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
9741         (cua--rect-undo-set-point): New var.
9742         (cua--rectangle-undo-boundary): Setup undo apply entry.
9743         (cua--rect-undo-handler): New function for rectangle undo.
9744         (cua--rect-start-position, cua--rect-end-position): Add.
9745         (cua--rectangle-post-command): Call cua--rectangle-set-corners
9746         for restored rectangle.  Set point if cua--rect-undo-set-point.
9748 2005-02-06  Jay Belanger  <belanger@truman.edu>
9750         * calc/calc-lang.el (calc-tex-language): Display more information
9751         in messages.
9753         * calc/calccomp.el (math-compose-expr): Allow multiline matrices
9754         in TeX mode.
9756 2005-02-06  Richard M. Stallman  <rms@gnu.org>
9758         * emacs-lisp/lisp.el (buffer-end): Doc fix.
9760 2005-02-05  Arne_J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
9762         * net/ldap.el (ldap-search-internal): Support attributes with
9763         optional descriptions separated by a semi-colon, as in
9764         "userCertificate;binary".
9766 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9768         * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
9769         isn't a cons (i.e. the version is 0).
9771 2005-02-05  Eli Zaretskii  <eliz@gnu.org>
9773         * help.el (help-for-help): Doc fix.
9775 2005-02-05  Nick Roberts  <nickrob@snap.net.nz>
9777         * progmodes/gdb-ui.el: Update copyright.  Put GDB-Frames before
9778         GDB-Windows on the menu-bar as this works better.
9780 2005-02-04  Jay Belanger  <belanger@truman.edu>
9782         * calc/calc-embed.el (calc-embedded-update): Don't put in
9783         unnecessary newlines.  Adjust the end of formula marker.
9785         * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
9786         (math-latex-parse-two-args): New function.
9788 2005-02-03  Lute Kamstra  <lute@gnu.org>
9790         * help-fns.el (help-with-tutorial): Make sure that users cannot
9791         remove the entire text of the tutorial by means of `undo'.
9793 2005-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9795         * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
9796         in recent changes, where the ispell process was repeatedly
9797         killed & restarted.
9799         * international/mule-cmds.el (set-locale-environment): Set file-name
9800         coding system to utf-8 on Darwin systems.
9801         (set-default-coding-systems): Don't set default-file-name-coding-system
9802         on Darwin systems.
9804 2005-02-03  Richard M. Stallman  <rms@gnu.org>
9806         * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
9808 2005-02-03  Matt Hodges  <MPHodges@member.fsf.org>
9810         * faces.el (list-faces-display): Add optional argument.
9812 2005-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9814         * font-core.el (font-lock-default-function): Handle the rare case where
9815         only font-lock-keywords is set.
9817 2005-02-02  Kenichi Handa  <handa@m17n.org>
9819         * international/characters.el: Cancel previous change for
9820         I-WITH-DOT-ABOVE and DOTLESS-i.
9822         * international/latin-5.el: Cancel previous change.
9824 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
9826         * progmodes/gud.el: Correction to syntax in gud-menu-map.
9828 2005-02-02  Kenichi Handa  <handa@m17n.org>
9830         * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
9831         DOTLESS-i.
9833         * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
9834         Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
9836         * case-table.el (get-upcase-table): New function.
9837         (copy-case-table): Copy upcaes table too if non-nil.
9838         (set-case-syntax-delims): Maintain upcase table too.
9839         (set-case-syntax-pair): Likewise.
9840         (set-upcase-syntax, set-downcase-syntax): New functions.
9841         (set-case-syntax): Maintain upcase table too.
9843 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
9845         * progmodes/gdb-ui.el (gdb-goto-info): Delete.
9847         * progmodes/gud.el (gud-goto-info): New function.
9848         (gud-tool-bar-map): Use correct icon.
9850 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
9852         * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
9853         When delegating, order args in the funcall correctly.
9855 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
9857         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
9859 2005-02-01  Carsten Dominik  <dominik@science.uva.nl>
9861         * textmodes/reftex.el (reftex-access-scan-info): Error out in a
9862         buffer not visiting a file.
9864 2005-01-31  Jay Belanger  <belanger@truman.edu>
9866         * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
9867         bound on the line with the formula.
9869 2005-01-31  Kim F. Storm  <storm@cua.dk>
9871         * ses.el (ses-create-cell-variable-range)
9872         (ses-destroy-cell-variable-range, ses-reset-header-string)
9873         (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
9874         (ses-insert-row): Fix format of apply undo entries.
9876 2005-01-31  Jay Belanger  <belanger@truman.edu>
9878         * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
9879         parts.
9881         * calc/calc-embed.el (calc-embedded-open-formula)
9882         (calc-embedded-close-formula): Ignore matrix environments.
9884         * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
9885         TeX mode.
9887         * calc/calc-lang.el (math-function-table, math-oper-table)
9888         (math-variable-table): Adjust the LaTeX portions.
9890         * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
9891         (math-latex-ignore-words): New constant.
9893 2005-01-31  Richard M. Stallman  <rms@gnu.org>
9895         * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
9896         (ispell-local-dictionary): Doc fix.
9897         (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
9898         Don't reinitialize at run time.  Don't defcustom.
9899         All uses changed to append ispell-local-dictionary-alist,
9900         or check it first.
9901         (ispell-current-dictionary): New variable for dictionary in use.
9902         (ispell-dictionary): Now used only for global default.
9903         (ispell-start-process): Set ispell-current-dictionary,
9904         not ispell-dictionary.
9905         (ispell-change-dictionary): Use this only for setting
9906         user preferences.
9907         (ispell-internal-change-dictionary): New function
9908         to change the current dictionary in use.
9909         (ispell-region, ispell-process-line, ispell-buffer-local-dict):
9910         Use ispell-current-dictionary.
9911         Handle ispell-local-dictionary-overridden.
9912         (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
9914 2005-01-31  Jay Belanger  <belanger@truman.edu>
9916         * calc/calc-aent.el (math-read-token): Add support for LaTeX.
9918         * calc/calc-ext.el: Add calc-latex-language to autoloads.
9919         (calc-mode-map): Add calc-latex-language.
9921         * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
9922         (math-latex-print-frac): New functions.
9923         (math-oper-table, math-function-table, math-variable-table)
9924         (math-complex-format, math-input-filter): Add latex properties.
9925         (calc-set-language): Set math-expr-special-function-mapping.
9927         * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
9928         (calc-write-parse-table-part): Add LaTeX support.
9930         * calc/calc.el (calc-language): Adjust docstring.
9931         (calc-set-mode-line): Add LaTeX support.
9932         (math-expr-special-function-mapping): New variable.
9933         (math-tex-ignore-words): Add to list.
9935         * calc/calccomp.el (math-compose-expr, math-compose-rows):
9936         Add LaTeX support.
9937         (math-compose-expr): Add support for special functions.
9939         * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
9941 2005-01-31  Nick Roberts  <nickrob@snap.net.nz>
9943         * progmodes/gdb-ui.el (gdb-memory-address)
9944         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
9945         (gdb-memory-mode-map, gdb-memory-format-keymap)
9946         (gdb-memory-format-menu, gdb-memory-unit-keymap)
9947         (gdb-memory-unit-menu): New variables for a buffer
9948         that lets the user examine program memory.
9949         (gdb-memory-set-address, gdb-memory-set-repeat-count)
9950         (gdb-memory-format-binary, gdb-memory-format-octal)
9951         (gdb-memory-format-unsigned, gdb-memory-format-signed)
9952         (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
9953         (gdb-memory-format-menu-1, gdb-memory-unit-giant)
9954         (gdb-memory-unit-word, gdb-memory-unit-halfword)
9955         (gdb-memory-unit-byte, gdb-memory-unit-menu)
9956         (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
9957         (gdb-memory-mode, gdb-memory-buffer-name)
9958         (gdb-display-memory-buffer, gdb-frame-memory-buffer):
9959         New functions for above buffer.
9961 2005-01-30  Richard M. Stallman  <rms@gnu.org>
9963         * cus-edit.el (custom-bury-buffer): Function deleted.
9964         (custom-buffer-done-function): Option deleted.
9965         (custom-buffer-done-kill): New (replacement option.
9966         (Custom-buffer-done): Call quit-window.
9967         (custom-buffer-create-internal): Update for above changes.
9969 2005-01-29  Luc Teirlinck  <teirllm@auburn.edu>
9971         * simple.el (undo-ask-before-discard): New var.
9972         (undo-outer-limit-truncate): Implement it.
9973         (undo-extra-outer-limit): Doc update.
9975 2005-01-29  Richard M. Stallman  <rms@gnu.org>
9977         * ses.el (undo-more): Delete defadvice.
9978         (ses-begin-change): Doc fix.
9980         * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
9981         instead of rebinding C-x u and C-_.
9983         * files.el (normal-backup-enable-predicate): Return nil for files
9984         in /tmp, regardless of temporary-file-directory.
9986         * man.el (Man-getpage-in-background): Disable undo in Man buffer.
9988         * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
9989         (open-rectangle, delete-whitespace-rectangle-line)
9990         (clear-rectangle-line): If FILL, pass t instead of FILL
9991         for move-to-column's 2nd arg.
9993         * simple.el (undo): Fix the test for continuing a series of undos.
9994         (undo-more): Set pending-undo-list to t when we reach end.
9995         (pending-undo-list): Move up defvar.
9997         * wid-edit.el (widget-button-click):
9998         Shorten the range of the track-mouse binding.
10000         * comint.el (comint-insert-input): Undo previous changes;
10001         use last-input-event in interactive spec.
10003 2005-01-29  Eli Zaretskii  <eliz@gnu.org>
10005         * progmodes/compile.el (compilation-start): Bind buffer-read-only
10006         to nil before invoking call-process.  Reset buffer's modified flag
10007         after fontifying it in the no-async branch.
10009         * wid-edit.el (widget-specify-button): If mouse pointer shape
10010         cannot be changed, use mouse face instead.
10012 2005-01-29  Nick Roberts  <nickrob@snap.net.nz>
10014         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
10015         (gdb-goto-breakpoint): Make breakpoint handling work on template
10016         functions in C++.  Reported by Martin Reed <mjreed@essex.ac.uk>
10017         (gdb-assembler-custom): Update to recognize breakpoint information
10018         added on 2005-01-19.
10020 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10022         * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
10023         (dsssl-mode): Use define-derived-mode.
10024         (scheme-mode-initialize): Remove.
10025         (scheme-mode): Use run-mode-hooks.
10027         * cus-edit.el (customize-group-other-window)
10028         (custom-buffer-create-other-window): Don't override special-display-*.
10029         (custom-mode-map): Make it dense.
10031         * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
10032         sets the default value.
10034 2005-01-28  Eli Zaretskii  <eliz@gnu.org>
10036         * descr-text.el: Add more keywords.
10038 2005-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10040         * speedbar.el: Avoid unnecessary use of locate-library.
10042         * international/mule-cmds.el (standard-display-european-internal):
10043         Don't fiddle with latin-1 non-break space any more since it's now
10044         special cased in the C code.
10045         Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
10047 2005-01-26  Luc Teirlinck  <teirllm@auburn.edu>
10049         * cus-start.el (all): Add `undo-outer-limit'.
10051 2005-01-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10053         * textmodes/bibtex.el (bibtex-format-entry):
10054         Use `bibtex-empty-field-re' only on the text of fields, not on entire
10055         field lines.
10056         (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
10057         not on part of a buffer.
10059 2005-01-25  Lute Kamstra  <lute@gnu.org>
10061         * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
10062         nonempty field text strings like "{letters\\macro{}more letters}".
10063         Clarify docstring.
10064         (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
10065         (bibtex-entry-offset, bibtex-parse-association)
10066         (bibtex-parse-field-name): Fix typos in docstrings.
10067         (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
10069 2005-01-24  Carsten Dominik  <dominik@science.uva.nl>
10071         * textmodes/reftex-global.el (reftex-isearch-push-state-function)
10072         (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
10073         (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
10074         (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
10076         * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
10077         isearch minor mode.
10079 2005-01-24  Luc Teirlinck  <teirllm@auburn.edu>
10081         * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
10083 2005-01-24  Lute Kamstra  <lute@gnu.org>
10085         * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
10086         CASECHARS and NOT-CASECHARS regular expressions of the
10087         "nederlands" and "nederlands8" dictionaries to prevent a "Range
10088         striding over charsets" error.
10090 2005-01-24  Jay Belanger  <belanger@truman.edu>
10092         * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
10093         display variable name.
10095 2005-01-24  Kenichi Handa  <handa@m17n.org>
10097         * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
10098         Fix setting of the element of encoded-kbd-iso2022-invocations.
10100 2005-01-24  Nick Roberts  <nickrob@snap.net.nz>
10102         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
10103         (gdb-threads-select): Change to also accept mouse events.
10104         (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
10105         (gdb-threads-mouse-select): Delete.
10107 2005-01-23  Luc Teirlinck  <teirllm@auburn.edu>
10109         * files.el (insert-directory): Take care of empty directory,
10110         listed without -a switch.
10112 2005-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10114         * textmodes/refill.el (refill-post-command-function):
10115         Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
10116         to the list of functions that we should be careful not to undo.
10117         (refill-late-fill-paragraph-function): Remove.
10118         (refill-saved-state): New var.
10119         (refill-mode): Use it to save fill-paragraph-function.
10120         Save also the value of auto-fill-function.
10122         * term/w32-win.el: Simplify code.
10124 2005-01-23  Kim F. Storm  <storm@cua.dk>
10126         * simple.el (line-move): Adapt to new return value from
10127         pos-visible-in-window-p.
10129         * simple.el (line-move): Fix last change.  Check partial
10130         visibility at point rather than at window-start.
10132 2005-01-22  Jason Rumney  <jasonr@gnu.org>
10134         * term/w32-win.el (xw-defined-colors): Remove debug-message.
10136 2005-01-22  David Kastrup  <dak@gnu.org>
10138         * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
10140 2005-01-22  Eli Zaretskii  <eliz@gnu.org>
10142         * type-break.el (type-break-mode): Add a test for
10143         type-break-file-name being non-nil.
10145 2005-01-22  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
10147         * net/eudc.el (top level): Call (message "") via progn, so that
10148         eudc-options-file is loaded.
10150 2005-01-22  Kim F. Storm  <storm@cua.dk>
10152         * simple.el (line-move-1): Rename from line-move.
10153         (line-move): New function that adjusts vscroll for partially
10154         visible rows, and calls line-move-1 otherwise.
10156 2005-01-21  Ren\e,Ai\e(B Kyllingstad  <listmailxemacs@kyllingstad.com>
10158         * pcomplete.el: define pcomplete-read-event instead of read-event,
10159         since it's not a complete read-event implementation
10161 2005-01-20  Jay Belanger  <belanger@truman.edu>
10163         * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
10164         for called function.
10166 2005-01-20  Steven Tamm  <steventamm@mac.com>
10168         * term/mac-win.el (process-connection-type): Remove.
10169         Controlled now by s/darwin.h:PTY_ITERATION.
10171 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10173         * window.el (handle-select-window): Don't switch window when we're
10174         in the minibuffer.
10176 2005-01-10  Paul Pogonyshev  <pogonyshev@gmx.net>
10178         * subr.el (dotimes-with-progress-reporter): New macro.
10180         * ses.el (ses-dotimes-msg): Remove macro.
10181         Use `dotimes-with-progress-reporter' instead.
10183 2005-01-19  Steven Tamm  <steventamm@mac.com>
10185         * term/mac-win.el (process-connection-type): Use new
10186         operating-system-release variable to use ptys on Darwin 7 (OS X
10187         10.3) when using carbon build.
10189 2005-01-19  Jay Belanger  <belanger@truman.edu>
10191         * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
10192         flags if the last command was a tab or M-tab.
10194         * calc/calc-prog.el (calc-user-define-edit): Put original formula
10195         in formula editing buffer.
10197 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
10199         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
10200         breakpoint image symbol in margin.
10202 2005-01-19  Jay Belanger  <belanger@truman.edu>
10204         * calc/calc-prog.el (calc-execute-kbd-macro):
10205         Ignore calc-keep-arg-flag.
10207 2005-01-19  Kenichi Handa  <handa@m17n.org>
10209         * textmodes/ispell.el (ispell-looking-at): New function.
10210         (ispell-process-line): Use ispell-looking-at to compare the ispell
10211         output and the buffer contents.
10213 2005-01-18  Jay Belanger  <belanger@truman.edu>
10215         * calc/calc.el (calc-display-raw): Fix docstring.
10217 2005-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10219         * simple.el (blink-matching-open): Strip extra info from syntax.
10221         * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
10222         funny chars in the end-of-here-doc marker.
10224 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
10226         * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
10227         that enable/disabled state of breakpoints is shown correctly in
10228         fringe and on ttys.
10229         (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
10230         Add breakpoint information as text properties.
10231         (gdb-mouse-toggle-breakpoint):
10232         Rename to gdb-mouse-set-clear-breakpoint.
10233         (gdb-mouse-toggle-breakpoint): New function.  Enable/disable
10234         breakpoints in the margin.
10235         (gdb-remove-strings): Simplify.
10237 2005-01-17  Jay Belanger  <belanger@truman.edu>
10239         * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
10240         erasing buffer.
10242 2005-01-17  Richard M. Stallman  <rms@gnu.org>
10244         * progmodes/grep.el (grep-find): Copy from `grep' the condition
10245         for calling grep-compute-defaults.
10247         * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
10248         if buffer is empty.
10250         * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
10252 2005-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10254         * hilit-chg.el (highlight-changes-mode): Don't autoload.
10256         * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
10257         non-preloaded variables.
10259 2005-01-17  Steven Tamm  <steventamm@mac.com>
10261         * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
10262         tex-shell cause to force interactivity when using pipes.
10264 2005-01-17  Kim F. Storm  <storm@cua.dk>
10266         * simple.el (just-one-space): Make arg optional.
10268 2005-01-17  Nick Roberts  <nickrob@snap.net.nz>
10270         * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
10271         posn-at-x-y to t to access left-margin.
10273 2005-01-16  Michael Albinus  <michael.albinus@gmx.de>
10275         Sync with Tramp 2.0.47.
10277         * tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
10278         catching keep-date problems in cp/scp operations.
10279         (tramp-handle-copy-file): Don't call `set-file-modes'
10280         unconditionally.  Specialized functions should know better what is
10281         necessary.  This improves performance a little bit, and the
10282         functions could catch errors with `cp -p' and `scp -p'.
10283         (tramp-do-copy-or-rename-file-via-buffer)
10284         (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
10285         when appropriate.
10286         (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
10287         Call `set-file-modes' when appropriate.
10288         (tramp-action-out-of-band): Mask `scp -p' error.  Reported by Isak
10289         Johnsson <isak@hypergene.com>
10290         (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
10291         of both Tramp buffer and debug buffer.  Reported by Joakim Verona
10292         <joakim@verona.se>
10293         (tramp-file-name-for-operation): Mark `shell-command' as magic for
10294         Emacs only.
10296         * tramp-util.el (tramp-minor-mode): New minor mode.  Add it to
10297         `find-file-hooks' and `dired-mode-hook'.
10298         (tramp-minor-mode-map): Respective map.  Add remapping for
10299         `compile' and `recompile'.
10300         (tramp-remap-command, tramp-recompile): New defuns.
10301         (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
10302         in buffer "*Compilation*".  Call the commands asynchronously.
10304         * tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
10305         (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
10306         `shell-command', because it isn't magic in XEmacs.  Reported by
10307         Adrian Aichner <adrian@xemacs.org>.
10309         * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
10310         `substitute-in-file-name.
10311         (tramp-smb-handle-substitute-in-file-name): New defun.
10312         (tramp-smb-advice-PC-do-completion): Delete advice.
10314 2005-01-16  Kai Grossjohann  <kgrossjo@eu.uu.net>
10316         * tramp.el (tramp-wait-for-output): Fix typo in echo processing.
10317         Fix error in deleting region.
10319 2005-01-15  Richard M. Stallman  <rms@gnu.org>
10321         * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
10322         In non-temp buffer, switch syntax table temporarily.
10324         * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
10326         * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
10328         * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
10330         * imenu.el (imenu--split-menu): Copy menulist before sorting.
10331         (imenu--generic-function): Use START, not BEG, as pos of definition.
10333         * simple.el (just-one-space): Argument specifies number of spaces.
10335         * simple.el (eval-expression-print-format): Avoid warning
10336         about edebug-active.
10338 2005-01-15  James R. Van Zandt  <jrvz@comcast.net>  (Tiny change)
10340         * progmodes/sh-script.el: Code copied from make-mode.el
10341         with small changes,
10342         (sh-mode-map): Bind C-c C-\.
10343         (sh-backslash-column, sh-backslash-align): New variables.
10344         (sh-backslash-region, sh-append-backslash): New functions.
10346 2005-01-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
10348         * mail/rmail.el: Updated to work with movemail from GNU Mailutils
10349         (rmail-pop-password, rmail-pop-password-required): Move to
10350         rmail-obsolete group.
10351         (rmail-set-pop-password): Rename to rmail-set-remote-password.
10352         All callers updated.
10353         (rmail-get-pop-password): Rename to rmail-get-remote-password.
10354         Take an argument specifying whether it is POP or IMAP mailbox we
10355         are using.  All callers updated.
10356         (rmail-pop-password-error): Rename to
10357         rmail-remote-password-error.  Added mailutils-specific error message.
10358         (rmail-movemail-search-path)
10359         (rmail-movemail-variant-in-use): New variables.
10360         (rmail-remote-password, rmail-remote-password-required):
10361         New customization variables.
10362         (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
10363         (rmail-parse-url): New function.
10364         (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
10365         with GNU mailutils movemail.
10367 2005-01-15  Kevin Ryde  <user42@zip.com.au>
10369         * info-look.el (c-mode/symbol): Add ^` to prefix, and change
10370         suffix to space, $ or '$, to correctly position point when going
10371         to @table style constants like DBL_MAX.
10373 2005-01-15  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
10375         * type-break.el (type-break-mode, type-break-file-time)
10376         (type-break-file-keystroke-count, type-break-choose-file):
10377         Don't store data in or load data from the file if type-break-file-name
10378         is nil.
10379         (type-break-file-name): Doc update as per the above.
10381 2005-01-15  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
10383         * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
10384         lookup-key might return nil; handle that.
10386 2005-01-15  Alan Mackenzie  <acm@muc.de>
10388         * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
10389         rather than the element found, thus enabling the tree to be setcar'd.
10391 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
10393         * textmodes/org.el (org-show-following-heading): New option.
10394         (org-show-hierarchy-above): Use `org-show-following-heading'.
10395         (org-cycle): Documentation fix.
10397         * textmodes/org.el (orgtbl-optimized): New option
10398         (orgtbl-mode): New command, a minor mode.
10399         (orgtbl-mode-map): New variable.
10400         (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
10401         (orgtbl-error, orgtbl-self-insert-command)
10402         (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
10404         * textmodes/org.el (org-mode): `org-table-may-need-update' is now
10405         a local variable in each org-mode buffer.
10407         * textmodes/org.el (org-set-regexps-and-options): Rename from
10408         `org-set-regexps'.  Added checking for STARTUP keyword.
10409         (org-get-current-options): Add STARTUP options.
10410         (org-table-insert-row): Make mode intelligent about when
10411         realignment is needed.
10412         (org-self-insert-command, org-delete-backward-char, org-delete-char):
10413         New commands.
10414         (org-enable-table-editor): New default value `optimized'.
10415         (org-table-blank-field): Support blanking regions if active.
10417 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
10419         * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
10420         if the year is not given.
10422         * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
10423         Add new escapes %m and %M, fixed bug with %F by adding
10424         save-match-data.
10425         (reftex-reference): Remove ?. from list of spaces.
10426         (reftex-label-info): Add automatic label prefix recognition.
10428         * textmodes/reftex-index.el (reftex-index-next-phrase):
10429         Add slave parameter to call of `reftex-index-this-phrase'.
10430         (reftex-index-this-phrase): New optional argument.
10431         (reftex-index-region-phrases): Add slave parameter to call of
10432         `reftex-index-this-phrase'.
10433         (reftex-display-index): New argument redo.
10434         (reftex-index-rescan): Add 'redo to arguments of
10435         `reftex-display-index'.
10436         (reftex-index-Rescan, reftex-index-revert)
10437         (reftex-index-switch-index-tag): Add 'redo to arguments of
10438         `reftex-display-index'.
10439         (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
10440         indexing.  Fix bug with matching is there is a quote before or
10441         after the word.
10443         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
10444         Fix bug when collecting citation keys in lines with comments.
10445         (reftex-citation): Prefix argument no longer rescans the document,
10446         but forces prompting for optional arguments of cite macros.
10447         (reftex-do-citation): Prompting for optional arguments implemented.
10449         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
10450         Add optional arguments to most cite commands.
10451         (reftex-cite-cleanup-optional-args): New option
10452         (reftex-cite-prompt-optional-args): New option.
10453         (reftex-trust-label-prefix): New option.
10455         * textmodes/reftex-toc.el (reftex-toc-find-section):
10456         Add push-mark before changing the position in the buffer.
10458         * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
10459         (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
10461 2005-01-14  Nick Roberts  <nickrob@snap.net.nz>
10463         * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
10464         more carefully.
10466 2005-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10468         * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
10469         (sgml-mode): Use it.
10470         (sgml-get-context): Better keep track of implicitly closed tags.
10472 2005-01-13  Kenichi Handa  <handa@m17n.org>
10474         * textmodes/ispell.el: These changes are to fix misalignment error
10475         caused by equivalent characters of different Emacs charsets.
10476         (ispell-unified-chars-table): New variable.
10477         (ispell-get-decoded-string): New function.
10478         (ispell-get-casechars, ispell-get-not-casechars)
10479         (ispell-get-otherchars): Call ispell-get-decoded-string.
10481 2005-01-12  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
10483         * custom.el (custom-declare-variable): Just put symbol instead
10484         of (defvar . symbol) in `current-load-list'.
10486 2005-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
10488         * emacs-lisp/elint.el: Fixed typo in Commentary section.
10490 2005-01-12  Jay Belanger  <belanger@truman.edu>
10492         * calc/calc-help.el (calc-describe-key): Use temporary info buffer
10493         to create a Calc summary.
10495 2005-01-12  Kim F. Storm  <storm@cua.dk>
10497         * mouse.el (mouse-on-link-p): Change functionality and doc
10498         string to comply with latest description in lisp ref.
10500 2005-01-12  Nick Roberts  <nickrob@snap.net.nz>
10502         * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
10503         Enable mouse clicks on mode-line, header-line and margin.
10504         (event-type): Give mouse event symbols an 'event-kind property
10505         with value 'mouse-click.
10507 2005-01-12  Juri Linkov  <juri@jurta.org>
10509         * facemenu.el (list-colors-display): Add new arg buffer-name.
10510         Use it.  Fix docstring.  Replace code for identifying duplicate
10511         colors by the name with call to `list-colors-duplicates' which
10512         identifies duplicate colors by the value unless the color
10513         is one of special Windows colors.  Set truncate-lines to t.
10514         Print sorted duplicate color names on each line.  Indent to 22
10515         \(the longest color name in rgb.txt) instead of 20.  Optimize.
10516         (list-colors-duplicates): New function.
10517         (facemenu-color-name-equal): Delete function.
10519         * facemenu.el (list-colors-print): New function created from code
10520         in list-colors-display.  Print #RRGGBB at the window right edge.
10521         (list-colors-display): When temp-buffer-show-function is not
10522         defined, call list-colors-print from temp-buffer-show-hook
10523         to get the right value of window-width in list-colors-print
10524         after the buffer is displayed.
10526         * simple.el (pop-mark): Move deactivate-mark out of conditional
10527         part to deactivate the active mark regardless of the state of the
10528         mark ring.
10530         * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
10531         variables line in desktop files.
10533 2005-01-12  Juri Linkov  <juri@jurta.org>
10535         * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
10536         Bring together isearch highlight related options.
10537         (lazy-highlight): Replace group `replace' by `matching'.
10538         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
10539         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
10540         (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
10541         and declare them obsolete.
10542         (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
10543         (isearch-faces): Remove defgroup.
10544         (isearch-overlay, isearch-highlight, isearch-dehighlight):
10545         Move isearch highlighting code closer to lazy highlighting code.
10547         * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
10548         (query-replace-highlight, query-replace-lazy-highlight)
10549         (query-replace): Move definitions to the beginning of the file.
10551 2005-01-11  Juri Linkov  <juri@jurta.org>
10553         * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
10554         * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
10555         * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
10557         * info.el (Info-history-forward): New variable.
10558         (Info-select-node): Reset Info-history-forward to nil.
10559         (Info-last): Turn into defalias.
10560         (Info-history-back): Rename from Info-last.
10561         Add current node to Info-history-forward.
10562         (Info-history-forward): New fun.
10563         (Info-mode-map): Replace Info-last by Info-history-back.
10564         Bind Info-history-forward to "r".
10565         (Info-mode-menu): Replace Info-last by Info-history-back.
10566         Fix menu item text.  Add menu item for Info-history-forward.
10567         (info-tool-bar-map): Replace Info-last by Info-history-back.
10568         Replace its icon "undo" by "back_arrow".  Add icon "fwd_arrow"
10569         for Info-history-forward.
10570         (Info-mode): Replace Info-last by Info-history-back in docstring.
10571         Add local variable Info-history-forward.
10572         (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
10574 2005-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10576         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
10577         (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
10578         Ignore select-window events rather than fiddle with
10579         mouse-autoselect-window.
10581 2005-01-11  Matthew Mundell  <matt@mundell.ukfsn.org>
10583         * type-break.el (type-break-mode): Fix previous change.
10585 2005-01-10  Jay Belanger  <belanger@truman.edu>
10587         * calc/calc-ext.el (calc-reset): Reset when inside embedded
10588         calculator; only reset when point is inside a calculator.
10589         Don't adjust the window height if the window takes up the whole height
10590         of the frame.
10592 2005-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
10594         * ebuff-menu.el (Electric-buffer-menu-mode):
10595         Preserve value of buffer-local var header-line-format.
10597 2005-01-09  Jay Belanger  <belanger@truman.edu>
10599         * calc/calc.el (calc-mode-var-list-restore-saved-values):
10600         Make sure settings file exists before accessing it.
10602         * calc/calc-embed.el (calc-embedded-subst):
10603         Replace math-multi-subst-rec, which is only supposed to be called
10604         by math-multi-subst, by math-multi-subst.
10606 2005-01-09  Andre Spiegel  <spiegel@gnu.org>
10608         * vc.el (vc-allow-async-revert): New user option.
10609         (vc-disable-async-diff): New internal variable.
10610         (vc-revert-buffer): Use them to disable asynchronous diff.
10612         * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
10613         (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
10614         asynchronously if vc-disable-async-diff is t.
10616 2005-01-09  Jay Belanger  <belanger@truman.edu>
10618         * calc/calc.el (defcalcmodevar): New macro.
10619         (calc-mode-var-list-restore-default-values)
10620         (calc-mode-var-list-restore-saved-values): New functions.
10621         (calc-mode-var-list): Use defcalcmodevar to define it.
10622         (calc-always-load-extensions, calc-line-numbering)
10623         (calc-line-breaking, calc-display-just, calc-display-origin)
10624         (calc-number-radix, calc-leading-zeros, calc-group-digits)
10625         (calc-group-char, calc-point-char, calc-frac-format)
10626         (calc-prefer-frac, calc-hms-format, calc-date-format)
10627         (calc-float-format, calc-full-float-format, calc-complex-format)
10628         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
10629         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
10630         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
10631         (calc-matrix-brackets, calc-language, calc-language-option)
10632         (calc-left-label, calc-right-label, calc-word-size)
10633         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
10634         (calc-display-raw, calc-internal-prec, calc-angle-mode)
10635         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
10636         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
10637         (calc-window-height, calc-display-trail, calc-show-selections)
10638         (calc-use-selections, calc-assoc-selections)
10639         (calc-display-working-message, calc-auto-why, calc-timing)
10640         (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
10641         (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
10642         (calc-gnuplot-default-device, calc-gnuplot-default-output)
10643         (calc-gnuplot-print-device, calc-gnuplot-print-output)
10644         (calc-gnuplot-geometry, calc-graph-default-resolution)
10645         (calc-graph-default-resolution-3d, calc-invocation-macro)
10646         (calc-show-banner): Use defcalcmodevar to declare them and set
10647         their default values.
10649         * calc/calc-ext.el (calc-reset): Restore saved values of variables
10650         instead of default values (but restore default values if there is
10651         an argument of 0).
10653 2005-01-09  David Kastrup  <dak@gnu.org>
10655         * desktop.el (desktop-restore-eager): Fix typo in type.
10657 2005-01-08  Richard M. Stallman  <rms@gnu.org>
10659         * cus-edit.el (customize): Delete :link.
10661 2005-01-08  Jay Belanger  <belanger@truman.edu>
10663         * calc/calc.el (calc-mode): Remove the extension from the
10664         `calc-settings-file' file name when loading it.
10666 2005-01-08  Kim F. Storm  <storm@cua.dk>
10668         * info.el (Info-mode-map, Info-next-link-keymap)
10669         (Info-prev-link-keymap, Info-up-link-keymap):
10670         Map follow-link to mouse-face.
10671         (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
10673 2005-01-08  Jay Belanger  <belanger@truman.edu>
10675         * calc/calc.el (calc-settings-file): Change default value.
10676         Suggested by cgw in a comment in calc-mode.el.
10678         * calc/calc-mode.el (calc-settings-file-name):
10679         Compare calc-settings-file to user-init-file instead of ~/.emacs.
10680         Replace ~/.emacs in a prompt by calc-settings-file.
10682 2005-01-07  Lars Hansen  <larsh@math.ku.dk>
10684         * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
10685         (desktop-lazy-idle-delay): New customizable variables.
10686         (desktop-buffer-args-list): New variable.
10687         (desktop-append-buffer-args): New function.
10688         (desktop-save): Call desktop-append-buffer-args for some buffers.
10689         (desktop-lazy-create-buffer): New function.
10690         (desktop-idle-create-buffers): New function.
10691         (desktop-read): Add message about buffers to restore lazily.
10692         (desktop-lazy-abort): New command.
10693         (desktop-clear): Call desktop-lazy-abort.
10694         (desktop-lazy-complete): New command.
10696 2005-01-06  Richard M. Stallman  <rms@gnu.org>
10698         * emacs-lisp/find-func.el (find-face-definition):
10699         Rename from find-face.
10701 2005-01-06  Kim F. Storm  <storm@cua.dk>
10703         * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
10705         * man.el (Man-xref-man-page, Man-xref-header-file)
10706         (Man-xref-normal-file): Add follow-link property.
10708 2005-01-06  Jay Belanger  <belanger@truman.edu>
10710         * calc/calc-units.el: Make sure the proper macro definitions are
10711         available when compiling.
10713 2005-01-06  Juri Linkov  <juri@jurta.org>
10715         * isearch.el (isearch-lazy-highlight-update):
10716         Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
10718 2005-01-06  Miles Bader  <miles@gnu.org>
10720         * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
10721         (isearch-lazy-highlight-face): Use new name.
10723 2005-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10725         * uniquify.el (uniquify-rationalize-file-buffer-names):
10726         Re-add an interactive spec.
10727         (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
10728         to the same name.
10730         * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
10731         (isearch-update, isearch-done): Adjust calls accordingly.
10733 2005-01-05  Richard M. Stallman  <rms@gnu.org>
10735         * custom.el (custom-set-variables, custom-theme-set-variables):
10736         Clarify documentation.
10738         * emacs-lisp/find-func.el (find-variable)
10739         (find-variable-other-window, find-variable-other-frame):
10740         Fix the TYPE args to find-function-read and find-function-do-it.
10741         (find-function): Doc fix.
10742         (find-function-at-point): Replace function-at-point alias.
10744 2005-01-04  Richard M. Stallman  <rms@gnu.org>
10746         * cus-face.el (custom-declare-face):
10747         Record defface in current-load-list.
10749         * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
10751         * emacs-lisp/find-func.el: Doc fixes.
10752         (find-face-regexp): New variable.
10753         (find-function-regexp-alist): New variable.
10754         (find-function-C-source): Third arg is now TYPE.
10755         (find-function-search-for-symbol): Handle general TYPE.
10756         (find-function-read, find-function-do-it): Handle general TYPE.
10757         (find-definition-noselect, find-face): New functions.
10758         (function-at-point): Alias deleted.
10760 2005-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10762         * battery.el (display-battery-mode): Rename from display-battery.
10763         Handle the case where it gets turned off.
10765 2005-01-04  Richard M. Stallman  <rms@gnu.org>
10767         * cus-edit.el (customize): Make :link point to user doc.
10769         * man.el (Man-fontify-manpage): Turn off undo generation.
10771         * add-log.el (change-log-font-lock-keywords): Don't match just "From".
10773 2005-01-04  Andreas Schwab  <schwab@suse.de>
10775         * files.el (insert-directory): Only look for error lines in
10776         inserted text.  Don't move too far after processing --dired markers.
10778 2005-01-04  Richard M. Stallman  <rms@gnu.org>
10780         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
10781         Don't expand if the character is @, period, dash, etc.
10782         (define-mail-abbrev): Quote names that contain problem characters.
10784 2005-01-04  Thien-Thi Nguyen  <ttn@gnu.org>
10786         * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
10788 2005-01-03  Richard M. Stallman  <rms@gnu.org>
10790         * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
10791         (query-replace-highlight, query-replace-lazy-highlight)
10792         (query-replace): Definitions moved up.  Doc fix.
10794 2005-01-03  Richard M. Stallman  <rms@gnu.org>
10796         * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
10797         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
10798         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
10799         (lazy-highlight-face): Rename from isearch-lazy-...
10800         Change all references to them.
10802 2005-01-03  Luc Teirlinck  <teirllm@auburn.edu>
10804         * cus-edit.el (custom-file): Doc fix for defcustom.
10805         (custom-file): The function no longer sets the variable
10806         `custom-file' to its return value.
10808         * startup.el (command-line): No longer load `custom-file'.
10810 2005-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10812         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
10814         * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
10815         Don't confuse module-prefixed identifiers for labels.
10816         Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
10818 2005-01-02  Richard M. Stallman  <rms@gnu.org>
10820         * files.el (basic-save-buffer-1): Fix previous change.
10822         * loadhist.el (file-loadhist-lookup): New function.
10823         (file-provides, file-requires): Use it.
10825         * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
10826         instead of calculating the right size.
10828 2005-01-02  Karl Chen  <quarl@cs.berkeley.edu>  (tiny change)
10830         * vc-svn.el (vc-svn-diff): Stay local if possible.
10832 2005-01-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10834         * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
10836         * files.el (hack-local-variables): Fix last change.
10838 2005-01-02  Jay Belanger  <belanger@truman.edu>
10840         * calc/calc-yank.el (calc-edit-top): New variable.
10841         (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
10842         object.  Change header properties.
10843         (calc-edit-finish, calc-edit-finish-stack-object)
10844         (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
10845         edited object.
10846         * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
10847         for the beginning of the edited object.
10848         * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
10849         for the beginning of the edited object.
10850         * calc/calc-prog.el (calc-edit-macro-finish-edit)
10851         (calc-finish-formula-edit, calc-macro-repeats)
10852         (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
10853         (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
10854         beginning of the edited object.
10855         (calc-user-define-edit): Change the header for editing macros.
10856         Remove unnecessary variable.
10858 2005-01-01  Jay Belanger  <belanger@truman.edu>
10860         * calc/calc-yank.el (calc-edit-mode): Change default header.
10861         (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
10862         * calc/calc-store.el (calc-edit-variable): Change title to match new
10863         header.
10864         * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
10865         mode to match new header.
10866         (calc-user-define-edit): Change titles to include names of commands.
10867         (calc-finish-formula-edit): Adjust to handle new header.
10868         (calc-finish-macro-edit): Remove.
10869         (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
10870         (calc-edit-macro-command, calc-edit-macro-command-type)
10871         (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
10872         (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
10873         (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
10874         (calc-edit-macro-finish-edit): New functions.
10875         (calc-user-define-edit): Use new functions to edit named calc macros.
10877 2005-01-01  Stefan  <monnier@iro.umontreal.ca>
10879         * files.el (hack-local-variables): Cleanup prefix/suffix matching.
10881         * ses.el (copy-region-as-kill): Deactivate mark.
10883 2005-01-01  Richard M. Stallman  <rms@gnu.org>
10885         * replace.el (occur-1): If the output buffer is also an input,
10886         don't kill it, rename it.
10888         * faces.el (set-face-background, set-face-foreground): Doc fix.
10890         * cus-face.el (custom-face-attributes): Fix :help-echo strings
10891         for :foreground and :background.
10893         * dired.el (dired-view-command-alist): Variable deleted.
10894         (dired-view-file, dired-mouse-find-file-other-window):
10895         Delete the code to use it.
10897 2005-01-01  Kim F. Storm  <storm@cua.dk>
10899         * image.el (insert-sliced-image): Use t for line-height property.
10901 2004-12-31  Jay Belanger  <belanger@truman.edu>
10903         * calc/calc-store.el (calcVar-digit, calcVar-oper): Remove the need
10904         for "var-" at the beginning of the minibuffer.
10906 2004-12-31  Richard M. Stallman  <rms@gnu.org>
10908         * faces.el (read-face-name):
10909         Don't treat an attribute spec as a list of faces.
10911         * simple.el (undo): Use undo-equiv-table to detect
10912         unexpected changes since previous undo.
10913         (undo-list-saved): Variable deleted.
10914         (buffer-disable-undo): Don't alter undo-list-saved.
10916         * files.el (require-final-newline): Allow `visit' and `visit-save'.
10917         (mode-require-final-newline): New option.
10918         (after-find-file): Handle require-final-newline with new values.
10919         (basic-save-buffer): Handle new values of require-final-newline.
10921         * progmodes/sh-script.el (sh-require-final-newline):
10922         Alist value now controls whether to use mode-require-final-newline.
10923         (sh-set-shell): Implement that new meaning.
10925         * progmodes/cc-vars.el (c-require-final-newline): Fix custom type, doc.
10926         * progmodes/cc-mode.el (c-common-init): Use mode-require-final-newline.
10927         * progmodes/antlr-mode.el (antlr-mode): Use mode-require-final-newline.
10928         Delete old-Emacs compatibility code.
10929         (antlr-c-common-init): Function deleted.
10931         * net/snmp-mode.el (snmp-common-mode): Use mode-require-final-newline.
10932         * progmodes/vhdl-mode.el (vhdl-mode): Use mode-require-final-newline.
10933         * progmodes/simula.el (simula-mode): Use mode-require-final-newline.
10934         * progmodes/python.el (python-mode): Use mode-require-final-newline.
10935         * progmodes/perl-mode.el (perl-mode): Use mode-require-final-newline.
10936         * progmodes/modula2.el (modula-2-mode): Use mode-require-final-newline.
10937         * progmodes/mixal-mode.el (mixal-mode): Use mode-require-final-newline.
10938         * progmodes/idlwave.el (idlwave-mode): Use mode-require-final-newline.
10939         * progmodes/icon.el (icon-mode): Use mode-require-final-newline.
10940         * progmodes/fortran.el (fortran-mode): Use mode-require-final-newline.
10941         * progmodes/f90.el (f90-mode): Use mode-require-final-newline.
10942         * progmodes/cperl-mode.el (cperl-mode): Use mode-require-final-newline.
10943         * progmodes/cfengine.el (cfengine-mode): Use
10944         mode-require-final-newline.
10945         * progmodes/ada-mode.el (ada-mode): Use mode-require-final-newline.
10946         * textmodes/text-mode.el (text-mode): Use mode-require-final-newline.
10947         * textmodes/texinfo.el (texinfo-mode): Use mode-require-final-newline.
10949 2004-12-31  Jay Belanger  <belanger@truman.edu>
10951         * calc/calc-graph.el (calc-graph-show-dumb): Mention C-cC-c as the
10952         way to return to Calc.
10954         * calc/calc-yank.el (calc-edit-mode): Mention C-cC-c as the way to
10955         finish, C-xk as the way to cancel the edit.  Add cancel routine to
10956         kill-buffer-hook.
10958         * calc/calc.el (calc-same-interface, calc-quit): Remove obsolete
10959         MacEdit code.
10961         * calc/calc-prog.el: Remove obsolete MacEdit code.
10962         (calc-macro-edit-algebraic, calc-macro-edit-variable)
10963         (calc-macro-edit-variable-2, calc-macro-edit-quick-digit): Remove.
10965 2004-12-31  Kenichi Handa  <handa@m17n.org>
10967         * international/mule.el (buffer-file-coding-system-explicit):
10968         Rename for explicit-buffer-file-coding-system.
10969         (after-insert-file-set-coding): Adjust for the above change.
10971         * files.el (revert-buffer): Change explicit-buffer-file-coding-system
10972         to buffer-file-coding-system-explicit.
10973         (basic-save-buffer-1): Likewise.
10975 2004-12-30  Richard M. Stallman  <rms@gnu.org>
10977         * textmodes/artist.el (artist-butlast-fn): Var deleted.
10978         (artist-butlast, artist-last): Functions deleted.
10979         (artist-ellipse-mirror-quadrant): Call last and butlast directly.
10980         (artist-compute-key-compl-table): Call remq directly.
10981         (artist-remove-nulls): Function deleted.
10982         (artist-vaporize-lines, artist-flood-fill): Use push and pop directly.
10983         (artist-push, artist-pop): Macro deleted.
10985 2004-12-30  Andreas Leue  <al@sphenon.de>
10987         * textmodes/artist.el (artist-version): 1.2.6
10988         (artist-prev-next-op-alist): New variable.
10989         (artist-select-next-op-in-list): New function.
10990         (artist-select-prev-op-in-list): New function.
10991         (artist-make-prev-next-op-alist): New function.
10992         (artist-is-in-op-list-p): New function.
10993         (artist-get-first-non-nil-op): New function.
10994         (artist-get-last-non-nil-op): New function.
10995         (artist-mode-init): Call artist-get-last-non-nil-op to initialize
10996         artist-prev-next-op-alist.
10997         (artist-mode-map): Add binding for C-mouse-4 and C-mouse-5 to
10998         change drawing operation.
11000 2004-12-30  Luc Teirlinck  <teirllm@auburn.edu>
11002         * autorevert.el (auto-revert-tail-handler): Put in undo boundaries.
11004 2004-12-31  Masatake YAMATO  <jet@gyve.org>
11006         * server.el (server-process-filter): Suppress `error', too.
11008 2004-12-30  Jay Belanger  <belanger@truman.edu>
11010         * calc/calc-store.el (calc-copy-variable): Fix mistyped variable name.
11011         Change the way a variable is displayed in a message.
11013         * calc/calc-prog.el (calc-user-define-edit, calc-finish-macro-edit)
11014         (calc-user-define-permanent, calc-execute-kbd-macro):
11015         Replace old function MacEdit-parse-keys with edmacro-parse-keys.
11017 2004-12-30  Kenichi Handa  <handa@m17n.org>
11019         * files.el (basic-save-buffer-1):
11020         Set explicit-buffer-file-coding-system to last-coding-system-used.
11021         (revert-buffer): Pay attention to
11022         explicit-buffer-file-coding-system (not buffer-file-coding-system)
11023         on bind coding-system-for-read.
11025         * international/mule.el (explicit-buffer-file-coding-system):
11026         New buffer local variable.
11027         (after-insert-file-set-coding): Set it to coding-system-for-read.
11029 2004-12-29  Luc Teirlinck  <teirllm@auburn.edu>
11031         * autorevert.el (auto-revert-tail-mode): Doc fix for defvar.
11033 2004-12-29  Sanghyuk Suh  <han9kin@mac.com>
11035         * term/mac-win.el (mac-drag-n-drop): Handle drag-n-drop events
11036         that include line numbers.
11038 2004-12-29  Milan Zamazal  <pdm@zamazal.org>
11040         * files.el (hack-local-variables): If no PREFIX, set it to "^".
11041         Redundant variable PREFIXLEN removed.
11043 2004-12-28  Matt Hodges  <MPHodges@member.fsf.org>
11045         * eshell/em-hist.el (eshell-previous-matching-input):
11046         Start the deletion from the end of the output.
11048 2004-12-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11050         * term/mac-win.el: Require x-dnd.
11051         (mac-drag-n-drop): Sync with W32 version.  Use x-dnd.el functions.
11053 2004-12-29  David Kastrup  <dak@gnu.org>
11055         * international/mule.el (decode-coding-inserted-region):
11056         Don't barf if `buffer-undo-list' is already set to `t'.
11058 2004-12-29  Jay Belanger  <belanger@truman.edu>
11060         * calc/calc-prog.el (calc-user-define-formula): Put default values
11061         for function names in prompts.
11062         (calc-user-define-permanent, calc-user-define-composition)
11063         (calc-user-define-formula): Remove the need for "calcFunc-" in the
11064         default input for algebraic functions.
11066 2004-12-29  Thien-Thi Nguyen  <ttn@gnu.org>
11068         * vc-rcs.el (vc-rcs-annotate-command):
11069         Fix omission bug: Call `vc-setup-buffer'.
11071 2004-12-29  Kenichi Handa  <handa@m17n.org>
11073         * international/mule.el (recode-region): New function.
11075 2004-12-28  Richard M. Stallman  <rms@gnu.org>
11077         * simple.el (undo-extra-outer-limit): New variable.
11078         (undo-outer-limit-truncate): Test and set it.
11080         * emacs-lisp/lisp.el (mark-sexp, mark-defun): New arg ALLOW-EXTEND
11081         enables the feature to extend the existing region.
11083         * simple.el (mark-word): New arg ALLOW-EXTEND
11084         enables the feature to extend the existing region.
11086         * textmodes/paragraphs.el (mark-paragraph): New arg ALLOW-EXTEND
11087         enables the feature to extend the existing region.
11089         * startup.el (site-run-file): Don't allow setting it with Custom.
11091         * simple.el (buffer-disable-undo): Fix previous change.
11093 2004-12-27  Masatake YAMATO  <jet@gyve.org>
11095         * hexl.el (hexlify-buffer): Remove fontification here.
11096         Use font lock mechanism instead.
11097         (hexl-font-lock-keywords): New font lock kewords.
11098         (hexl-mode-old-font-lock-keywords): New variable.
11099         (hexl-mode): Store the old font lock keywords.
11100         (hexl-mode-exit): Restore the old font lock keywords.
11102 2004-12-27  Richard M. Stallman  <rms@gnu.org>
11104         * simple.el (undo): Fix previous change.
11106 2004-12-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11108         * term/mac-win.el: Sync with x-win.el.  Rearrange the contents.
11109         Call mac-clear-font-name-table if invoked on Mac OS 8/9.
11110         Call x-open-connection on Mac OS X.
11112 2004-12-27  Richard M. Stallman  <rms@gnu.org>
11114         * files.el (buffer-save-without-query): New var (buffer-local).
11115         (save-some-buffers): Save those buffers first, w/o asking.
11117         * files.el (insert-directory-ls-version): New variable.
11118         (insert-directory): When ls returns an error, test the version
11119         number to decide what the return code means.
11120         With --dired output format, detect and distinguish lines
11121         that are really error messages.
11122         (insert-directory-adj-pos): New function.
11124         * bookmark.el (bookmark-jump): Nice error if BOOKMARK is nil.
11126         * battery.el (battery-mode-line-format): Remove initial spaces.
11128         * uniquify.el (uniquify-rationalize-file-buffer-names):
11129         Delete interactive spec.
11131         * type-break.el (type-break-mode): Set buffer-save-without-query.
11132         Remove code that tried to set save-some-buffers-always.
11133         (type-break-file-keystroke-count): Bind deactivate-mark.
11135         * mouse.el (mouse-drag-region): Bind mouse-autoselect-window.
11137         * simple.el (next-error-buffer-p): New arg AVOID-CURRENT.
11138         Test that the buffer is live, and maybe reject current buffer too.
11139         Clarify.
11140         (next-error-find-buffer): Rewrite for clarity.
11142         * loadup.el: Don't use buffer-disable-undo; do it directly.
11144         * help-fns.el (describe-function-1): Call symbol-file with `defun'.
11145         (describe-variable): Call symbol-file with `defvar'.
11147         * subr.el (messages-buffer-max-lines): Alias for message-log-max.
11148         (symbol-file): Rewritten to handle new load-history format.
11149         Now takes an arg TYPE to specify looking for a particular
11150         type of definition only.
11152         * emacs-lisp/debug.el (debugger-make-xrefs):
11153         Call symbol-file with `defun'.
11155         * emacs-lisp/find-func.el (find-function-noselect):
11156         Call symbol-file with `defun'.
11157         (find-variable-noselect): Call symbol-file with `defvar'.
11159         * eshell/esh-cmd.el (eshell-find-alias-function):
11160         Call symbol-file with `defun'.
11162         * eshell/esh-test.el (eshell-test-goto-func):
11163         Call symbol-file with `defun'.
11165         * mail/rmail.el (rmail-resend):
11166         Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
11168         * net/goto-addr.el (goto-address-mail-regexp): Allow = in username.
11170         * progmodes/compile.el (compilation-find-buffer): Rename arg.
11172         * textmodes/texinfmt.el (texinfo-format-buffer-1):
11173         Call buffer-disable-undo.
11175         * simple.el (undo-list-saved): New variable (buffer-local).
11176         (undo): Set and test it.
11177         (buffer-disable-undo): Move here from buffer.c.
11178         Clear out undo-list-saved.
11180         * international/mule.el (decode-coding-inserted-region):
11181         Set buffer-undo-list in a correct and optimal way.
11183         * progmodes/cperl-mode.el (cperl-find-bad-style): Use with-no-warnings.
11184         (cperl-font-lock-unfontify-region-function): No need to save and
11185         restore info, since font-lock.el does it for us.
11187         * ansi-color.el (save-buffer-state): Definition deleted.
11188         (ansi-color-unfontify-region): Don't use save-buffer-state.
11190 2004-12-27  Dave Love  <fx@gnu.org>
11192         * wid-edit.el (function): Use restricted-sexp as parent.
11194 2004-12-27  Kevin Ryde  <user42@zip.com.au>
11196         * simple.el (next-matching-history-element): Use same
11197         `interactive' form as previous-matching-history-element.
11199         * ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars,
11200         it can appear unencoded and has been seen from yahoo.
11202 2004-12-27  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)
11204         * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
11205         in upper case.  Reported by Wojciech Polak <polak@gnu.org>.
11207 2004-12-27  Kenichi Handa  <handa@m17n.org>
11209         * international/utf-8.el (utf-translate-cjk-load-tables):
11210         Bind coding-system-for-read to nil while loading subst-*.
11212 2004-12-26  Jay Belanger  <belanger@truman.edu>
11214         * calc/calc-store.el (calc-read-var-name): Remove "var-" from
11215         default input.
11217 2004-12-26  Luc Teirlinck  <teirllm@auburn.edu>
11219         * buff-menu.el (Buffer-menu-revert-function): Clear out undo info
11220         before reverting and disable undo recording while reverting.
11222 2004-12-26  Thien-Thi Nguyen  <ttn@gnu.org>
11224         * progmodes/hideshow.el (hs-set-up-overlay): New user var.
11225         (hs-make-overlay): New function.
11226         (hs-isearch-show-temporary): Handle `display' overlay prop specially.
11227         (hs-flag-region): Delete function.
11228         (hs-hide-comment-region): No longer use `hs-flag-region'.
11229         Instead, use `hs-discard-overlays' and `hs-make-overlay'.
11230         (hs-hide-block-at-point): Likewise.
11231         (hs-hide-level-recursive): Use `hs-discard-overlays'.
11232         (hs-hide-all, hs-show-all): Likewise.
11233         (hs-show-block): Likewise.
11234         Also, use overlay prop `hs-b-offset', not `hs-ofs'.
11236 2004-12-24  Thien-Thi Nguyen  <ttn@gnu.org>
11238         * progmodes/hideshow.el: Require `cl' when compiling.
11239         Remove XEmacs and Emacs 19 compatibility.
11240         Use `dolist' and `add-to-list' for load-time actions.
11241         (hs-discard-overlays): Use `dolist'.
11242         (hs-show-block): Likewise.
11244 2004-12-23  Dan Nicolaescu  <dann@ics.uci.edu>
11246         * faces.el (mode-line, mode-line-inactive): Use min-colors.
11248 2004-12-23  Thien-Thi Nguyen  <ttn@gnu.org>
11250         * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug:
11251         When extending backwards, move outside the current comment first.
11253 2004-12-22  Kenichi Handa  <handa@m17n.org>
11255         * international/quail.el (quail-start-translation): Fix prompt
11256         string for the case if input-method-use-echo-area being non-nil.
11257         (quail-start-conversion): Likewise.
11258         (quail-show-guidance): Don't show guidance if
11259         input-method-use-echo-area is non-nil.
11261 2004-12-21  Richard M. Stallman  <rms@gnu.org>
11263         * textmodes/ispell.el (ispell-help): Bind resize-mini-windows.
11265 2004-12-21  Markus Rost  <rost@ias.edu>
11267         * calendar/diary-lib.el (mark-diary-entries):
11268         Set mark-diary-entries-in-calendar only after checking for diary-file.
11270 2004-12-21  Richard M. Stallman  <rms@gnu.org>
11272         * faces.el (escape-glyph): Use blue against light foreground.
11274         * simple.el (undo-outer-limit-truncate): New function.
11275         (undo-outer-limit-function): Use undo-outer-limit-truncate.
11277 2004-12-21  Eli Barzilay  <eli@barzilay.org>
11279         * calculator.el (calculator-radix-grouping-mode)
11280         (calculator-radix-grouping-digits)
11281         (calculator-radix-grouping-separator):
11282         New defcustoms for the new radix grouping mode functionality.
11283         (calculator-mode-hook): Now used in electric mode too,
11284         (calculator): Call it.
11285         (calculator-mode-map): Some new keys.
11286         (calculator-message): New function.  Some new calls.
11287         (calculator-op, calculator-set-register): Use it.
11288         (calculator-string-to-number): New function, mostly moved and
11289         updated code from calculator-curnum-value.
11290         (calculator-curnum-value): Use it.
11291         (calculator-paste): Use it, and update grabbing the current-kill.
11292         (calculator-rotate-displayer)
11293         (calculator-rotate-displayer-back): Toggle digit grouping when
11294         in radix mode, use calculator-message.
11295         (calculator-displayer-prev, calculator-displayer-next):
11296         Change digit group size when in radix mode.
11297         (calculator-number-to-string): Rename from
11298         calculator-num-to-string.  Now deals with digit grouping in
11299         radix mode.
11300         (calculator-update-display, calculator-put-value): Use the new name.
11301         (calculator-fact): Return a floating point number.
11302         (calculator-mode): Doc fix.
11304 2004-12-20  Glenn Morris  <gmorris@ast.cam.ac.uk>
11306         * calendar/calendar.el (view-other-diary-entries): Add autoload.
11307         * calendar/diary-lib.el (view-other-diary-entries):
11308         Use current-prefix-arg in interactive spec.
11310 2004-12-19  Jay Belanger  <belanger@truman.edu>
11312         * calc/calc-aent.el (calcAlg-blank-matching-open): Temporarily
11313         adjust the syntax of both delimiters of half-open intervals.
11315 2004-12-19  Kim F. Storm  <storm@cua.dk>
11317         * mouse.el (mouse-1-click-follows-link): Doc fix.
11319 2004-12-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11321         * term/mac-win.el (encoding-vector, mac-font-encoder-list)
11322         (ccl-encode-mac-centraleurroman-font): Use centraleurroman
11323         instead of centraleuropean as the name
11325 2004-12-17  Michael Albinus  <michael.albinus@gmx.de>
11327         Sync with Tramp 2.0.46.
11329         * net/tramp.el (tramp-maybe-send-perl-script): Change order of
11330         parameters wrt Tramp convention.
11331         (tramp-handle-file-attributes-with-perl)
11332         (tramp-handle-directory-files-and-attributes): Apply it.
11333         (tramp-do-copy-or-rename-file-out-of-band): Check for existence of
11334         `copy-program'.  Reported by Zack Weinberg
11335         <zack@codesourcery.com>.
11336         (top): Set `edebug-form-spec' property directly rather than
11337         calling `def-edebug-spec'.
11339         * net/tramp-smb.el (tramp-smb-advice-PC-do-completion): Make the
11340         advice less fragile.  Surround temporary redefinition of
11341         `substitute-in-file-name' with `unwind-protect'.  Suggested by
11342         Matt Hodges <MPHodges@member.fsf.org>.
11344 2004-12-17  Juri Linkov  <juri@jurta.org>
11346         * replace.el (occur-accumulate-lines, occur-engine):
11347         Make forcing deferred font-lock fontification jit-specific.
11349 2004-12-17  Kim F. Storm  <storm@cua.dk>
11351         * mouse.el (mouse-1-click-follows-link): New defcustom.
11352         (mouse-on-link-p): New function.
11353         (mouse-drag-region-1): Implement mouse-1-click-follows-link
11354         functionality.  Map a mouse-1 click event into a mouse-2 (or
11355         other) event when position is inside a link.
11357         * tooltip.el (tooltip-show-help-function): Replace "mouse-2"
11358         prefix in tooltip text with "mouse-1" when this is a link
11359         recognized by mouse-1-click-follows-link functionality.
11361         * help.el (describe-key): Report effective and original binding
11362         for mouse-1 when clicked on a link.
11363         (describe-mode): Add follow-link property to "minor-mode" button.
11365         * help-fns.el (describe-variable): Add follow-link property to
11366         "below" button.
11368         * help-mode.el (help-xref): Add follow-link property.
11370         * apropos.el (apropos-symbol, apropos-function, apropos-macro)
11371         (apropos-command, apropos-variable, apropos-face, apropos-group)
11372         (apropos-widget, apropos-plist): Add follow-link property.
11374         * pcvs-defs.el (cvs-mode-map): Map follow-link to a function which
11375         checks if position is in a filename, rather than some other
11376         clickable item.  Function looks for cvs-filename-face at position.
11378         * wid-edit.el (widget-specify-field, widget-specify-button):
11379         Map a :follow-link keyword into a follow-link property.
11380         (link): Add :follow-link keyword, map to RET binding.
11382         * dired.el (dired-mode-map): Map follow-link to mouse-face.
11384         * progmodes/compile.el (compilation-minor-mode-map)
11385         (compilation-button-map, compilation-mode-map): Likewise.
11387 2004-12-17  Thien-Thi Nguyen  <ttn@gnu.org>
11389         * play/zone.el (zone): Init `line-spacing' from orig buffer.
11390         (zone-replace-char): Take `count' and `del-count'
11391         instead of `direction'.  Update callers.  When `del-count' is
11392         non-nil, delete that many characters, otherwise `count' characters
11393         backwards.  Insert the newly-replaced string `count' times.
11394         (zone-fret): Handle chars w/ width greater than one.
11395         (zone-fall-through-ws): No longer take window width `ww'.
11396         Update callers.  Add handling for `char-width' greater than one.
11397         (zone-pgm-drip): Update var holding window-end position every cycle.
11399 2004-12-17  Andre Spiegel  <spiegel@gnu.org>
11401         * vc.el (vc-default-update-changelog): Use insert-file-contents,
11402         rather than insert-file.
11404 2004-12-16  Jay Belanger  <belanger@truman.edu>
11406         * calc/calc-comb.el (var-RandSeed): Don't initially bind it.
11407         (math-init-random-base, math-random-digit): Check to see if
11408         var-RandSeed is bound.
11409         (math-random-last): Declare it.
11410         (math-random-digit): Don't make math-random-last local.
11412 2004-12-16  Thien-Thi Nguyen  <ttn@gnu.org>
11414         * play/zone.el (zone): Fix omission bug: Use a self-disabling
11415         one-shot thunk for uniform (error, quit, normal) recovery.
11416         Reported by John Paul Wallington.
11417         (zone-pgm-random-life): Fix bug:
11418         Recognize empty initial field by lack of "@" chars.
11420 2004-12-16  Juri Linkov  <juri@jurta.org>
11422         * help.el (function-called-at-point):
11423         * help-fns.el (variable-at-point): As a last resort try stripping
11424         non-word prefixes and suffixes.
11426         * descr-text.el (describe-property-list): Don't treat syntax-table
11427         specially.  Use describe-text-sexp which inserts [show] button
11428         for large objects and handles printing errors.  Sort properties
11429         by names in alphabetical order instead of by value sizes.
11430         Add `mouse-face' to list of properties for `describe-face' widget.
11431         (describe-char): Mask out face-id from 19 bits of character.
11432         Print face-id separately.
11434         * replace.el (occur-accumulate-lines, occur-engine):
11435         Fontify unfontified matching lines in the source buffer
11436         before copying them.
11437         (occur-engine): Don't put mouse-face on context lines.
11438         (occur-next-error): Set point to line beginning/end
11439         before searching for prev/next property to skip multiple
11440         matches on a line (not supported by occur engine).
11441         Remove redundant prefix-numeric-value.
11443 2004-12-15  Juri Linkov  <juri@jurta.org>
11445         * replace.el (match): New face.
11446         (list-matching-lines-face): Change default from `bold' to `match'.
11448         * progmodes/grep.el (grep-match-face): New defvar.
11449         (grep-mode-font-lock-keywords): Use grep-match-face instead of
11450         compilation-column-face to highlight grep matches.
11452         * apropos.el (apropos-match-face): Change default from
11453         `secondary-selection' to `match'.
11455         * info-look.el (info-lookup-highlight-face): Change default from
11456         `highlight' to `match'.
11458 2004-12-15  Daniel Pfeiffer  <occitan@esperanto.org>
11460         * progmodes/executable.el (executable-interpret): Eliminate
11461         obsolete compile-internal, and switch to comint for interaction.
11463 2004-12-15  J.D. Smith  <jdsmith@as.arizona.edu>
11465         * progmodes/idlwave.el (idlwave-skip-multi-commands): Don't match
11466         `&&' when skipping multiple statements on a line.
11468 2004-12-15  Thien-Thi Nguyen  <ttn@gnu.org>
11470         * play/zone.el (zone): Set `truncate-lines'.
11471         Also, init `tab-width' with value from original buffer.
11472         (zone-shift-up): Rewrite for speed.
11473         (zone-shift-down, zone-shift-left, zone-shift-right): Likewise.
11474         (zone-pgm-jitter): Remove redundant entries from ops vector.
11475         (zone-exploding-remove): Reduce iteration count.
11476         (zone-cpos): Convert to defsubst.
11477         (zone-replace-char): New defsubst.
11478         (zone-park/sit-for): Likewise.
11479         (zone-fret): Take window-start arg.
11480         Update callers.  Use `zone-park/sit-for'.
11481         (zone-fill-out-screen): Rewrite.
11482         (zone-fall-through-ws): Likewise.  Update callers.
11483         (zone-pgm-drip): Use `zone-replace-char'.
11484         Move var inits before while-loop.  Use `zone-park/sit-for'.
11485         (zone-pgm-random-life): Handle empty initial field.
11486         Use `zone-replace-char' and `zone-park/sit-for'.
11488 2004-12-15  Juri Linkov  <juri@jurta.org>
11490         * isearch.el (isearch-update): Test isearch-lazy-highlight
11491         before calling isearch-lazy-highlight-new-loop.
11492         (isearch-lazy-highlight-new-loop):
11493         Don't test isearch-lazy-highlight.
11495         * replace.el (perform-replace): Add isearch-case-fold-search.
11496         Use delimited-flag for isearch-regexp.
11497         Reset isearch-lazy-highlight-last-string to force lazy
11498         highlighting when called from isearch mode.
11499         (query-replace-highlight): Revert defcustom type to boolean.
11500         (query-replace-lazy-highlight): New defcustom.
11501         (query-replace): New face.
11502         (perform-replace, replace-highlight, replace-dehighlight):
11503         Test query-replace-lazy-highlight instead of special value
11504         `isearch' of query-replace-highlight.
11505         (replace-dehighlight): Don't call isearch-dehighlight.
11506         (replace-highlight): Don't call isearch-highlight.
11507         Use face `query-replace' unconditionally.
11509 2004-12-14  Kim F. Storm  <storm@cua.dk>
11511         * simple.el (inhibit-mark-movement): Remove defvar.
11512         (beginning-of-buffer, end-of-buffer): Don't use it.
11514         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
11515         Don't use inhibit-mark-movement.
11517         * emulation/cua-base.el (cua--preserve-mark-commands): Remove.
11518         (cua--undo-push-mark): Remove.
11519         (cua--pre-command-handler, cua--post-command-handler):
11520         Don't fiddle with inhibit-mark-movement.
11522 2004-12-14  Juri Linkov  <juri@jurta.org>
11524         * buff-menu.el (list-buffers-noselect): Collect internal info
11525         for every buffer in BUFFER-LIST arg too.
11526         (Buffer-menu-switch-other-window): Bind pop-up-windows to t.
11527         (Buffer-menu-switch-other-window, Buffer-menu-2-window):
11528         Bind same-window-buffer-names and same-window-regexps to nil.
11530 2004-12-13  Juri Linkov  <juri@jurta.org>
11532         * simple.el (next-error-buffer-p, next-error-find-buffer): Doc fix.
11534         * mail/supercite.el (sc-cite-frame-alist): Doc fix.
11535         (sc-cite-region, sc-uncite-region, sc-recite-region):
11536         Fix previous change to handle not alist as a symbol, but
11537         a citation frame as a symbol that represents a variable name.
11539 2004-12-13  Richard M. Stallman  <rms@gnu.org>
11541         * filecache.el (file-cache-add-directory-using-find):
11542         Only set up file-cache-find-command-posix-flag if we will use it.
11544         * bindings.el (mode-line-buffer-identification-keymap):
11545         Don't cancel the mode-line's usual down-mouse-1 binding.
11547         * cus-edit.el (custom-face-selected): Handle `default' specs.
11548         (custom-face-edit): Increase extra-offset.
11549         (custom-display): Handle `default' specs.
11551         * xml.el (xml-name-re, xml-entity-value-re): Add defvars.
11553         * emacs-lisp/elint.el (elint-standard-variables)
11554         (elint-unknown-builtin-args): Move definitions up.
11556         * net/browse-url.el (browse-url-url-at-point): Add autoload.
11558         * info.el (info-xref-visited): Use `default' instead of t.
11559         (Info-try-follow-nearest-node): Don't explicitly load browse-url.
11561         * faces.el (header-line, mode-line-inactive, tool-bar):
11562         Use `default' instead of t for setting the defaults.
11563         (face-spec-choose): Separate `t' from `default'.
11565         * subr.el (while-no-input): New macro.
11567 2004-12-13  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>  (tiny change)
11569         * filecache.el (file-cache-add-directory-using-find):
11570         Only test file-cache-find-command-posix-flag on some systems.
11572 2004-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
11574         * vc-svn.el (vc-svn-repository-hostname): Adjust to new format.
11575         Reported by Ville Skytt\e,Ad\e(B <scop@xemacs.org>.
11576         (vc-svn-annotate-current-time, vc-svn-annotate-time-of-rev)
11577         (vc-svn-annotate-time, vc-svn-annotate-extract-revision-at-line)
11578         (vc-svn-annotate-command, vc-svn-annotate-re): Support for svn
11579         annotate.
11581 2004-12-12  Juri Linkov  <juri@jurta.org>
11583         * files.el (find-file-other-window, find-file-other-frame):
11584         Add the first buffer to the returned value to return the complete
11585         list of all visited buffers.
11586         (find-file-read-only, find-file-read-only-other-window)
11587         (find-file-read-only-other-frame): Use nil for `mustmatch' arg of
11588         `find-file-read-args'.  Signal an error about non-existent file
11589         only if file name doesn't contain wildcards.  Toggle read-only in
11590         all visited buffers.
11591         (find-alternate-file, find-alternate-file-other-window):
11592         Add optional arg `wildcards'.  Doc fix.  Set `wildcards' to t when
11593         called interactively.  Pass arg `wildcards' to other functions.
11594         (find-file-noselect): Doc fix.
11596         * ffap.el (ffap-dired-wildcards): Set default to "[*?][^/]*\\'".
11597         Doc fix.
11598         (ffap-directory-finder): New variable.
11599         (ffap-string-at-point-mode-alist): Add * and ? to `file'.
11600         (ffap-file-at-point): Add /* to immediately rejected names.
11601         Return absolute file names matching ffap-dired-wildcards.
11602         (ffap-read-file-or-url): Set default value for `completing-read'
11603         to `buffer-file-name'.
11604         (find-file-at-point): When filename matches ffap-dired-wildcards,
11605         call ffap-file-finder with t arg `wildcards', instead of dired.
11606         (ffap-other-window, ffap-other-frame): Return visited buffers.
11607         (ffap-read-only, ffap-read-only-other-window)
11608         (ffap-read-only-other-frame, ffap-alternate-file): New commands.
11609         (dired-at-point): Call ffap-directory-finder instead of dired.
11610         (ffap-dired-other-window, ffap-dired-other-frame)
11611         (ffap-list-directory): New commands.
11612         (ffap-bindings): New keybindings for new commands.
11614 2004-12-12  Juri Linkov  <juri@jurta.org>
11616         * simple.el (beginning-of-buffer, end-of-buffer):
11617         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
11618         Do not push mark when mark is active in transient-mark-mode.
11620         * simple.el (mark-word):
11621         * emacs-lisp/lisp.el (mark-sexp, mark-defun):
11622         * textmodes/paragraphs.el (mark-paragraph):
11623         Extend the region when mark is active in transient-mark-mode,
11624         regardless of the last command.  Doc fix.
11626         * simple.el (mark-word): Preserve direction when repeating.
11627         Make arg optional.  Interactive "p" -> "P".
11628         (transient-mark-mode, inhibit-mark-movement): Doc fix.
11630         * emacs-lisp/lisp.el (mark-sexp): Reverse the condition for
11631         preserving direction, to mark forward instead of backward when mark
11632         is equal to point (e.g. when C-SPC C-M-SPC is typed in t-m-m).
11634 2004-12-12  Juri Linkov  <juri@jurta.org>
11636         * isearch.el (isearch-edit-string): Set 7th arg of
11637         `read-from-minibuffer' to `t' to inherit the current input
11638         method (whose name is indicated by [IM] in the minibuffer prompt)
11639         from the current buffer to the minibuffer.
11640         (isearch-lazy-highlight-update): Put body to `with-local-quit'
11641         to allow C-g quitting for lazy highlighting looping inside the
11642         search with nested repetition operators.  Add overlay to the list
11643         before setting its face and other properties to avoid the case of
11644         code quitting after placing the new overlay but before it's
11645         recorded on the list.  Select the window where isearch was
11646         activated, to highlight matches in the right window when isearch
11647         switches the current window to the minibuffer.
11649         * international/isearch-x.el
11650         (isearch-process-search-multibyte-characters):
11651         Use `isearch-message' as initial input for `read-string' instead
11652         of adding it to the minibuffer prompt.  After reading a string
11653         remove the initial value of `isearch-message' from the string.
11655         * replace.el (replace-match-maybe-edit): Doc fix.
11656         (perform-replace): Don't call `replace-highlight' when automatic
11657         replacement is requested in literal mode, since it is intended
11658         only to highlight words during entering a new replacement string
11659         for \? in non-literal mode.
11661         * replace.el (query-replace-highlight): Add new value `isearch'
11662         that allows query replacement to use isearch highlighting.
11663         Change type from `boolean' to `choice'.  Doc fix.
11664         (replace-highlight, replace-dehighlight, perform-replace):
11665         Use isearch highlighting if query-replace-highlight eq `isearch'.
11667 2004-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
11669         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
11670         (checkdoc-message-text, checkdoc-defun): Fix format messages for
11671         `error'.
11673         * textmodes/tex-mode.el (latex-backward-sexp-1): Handle the special
11674         case of \end{verbatim}.
11676 2004-12-11  Dan Nicolaescu  <dann@ics.uci.edu>
11678         * term.el (term-termcap-format): Synchronize with terminfo.
11679         (term-emulate-terminal): Handle reset.
11680         (term-reset-terminal): New function.
11682 2004-12-11  Thien-Thi Nguyen  <ttn@gnu.org>
11684         * play/zone.el (zone-programs): Add `zone-pgm-random-life'.
11685         (zone-fill-out-screen): New func.
11686         (zone-pgm-drip): Use `zone-fill-out-screen'.
11687         Also, no longer go to point-min on every cycle.
11688         (zone-pgm-paragraph-spaz): Allow spazzing for texinfo-mode.
11689         (zone-pgm-random-life-wait): New user var.
11690         (zone-pgm-random-life): New func.
11692 2004-12-10  Thien-Thi Nguyen  <ttn@gnu.org>
11694         * files.el (auto-mode-alist): Map .com to DCL mode.
11696 2004-12-09  Richard M. Stallman  <rms@gnu.org>
11698         * isearch.el (isearch-mode-map): Treat S-SPC like SPC.
11700 2004-12-09  Nick Roberts  <nickrob@snap.net.nz>
11702         * xt-mouse.el (xterm-mouse-event): Correct cursor position in a
11703         buffer with a display margin.
11705 2004-12-08  Jay Belanger  <belanger@truman.edu>
11707         * calc/calc-keypd.el (calc-keypad-mode): Unbind unused mouse events.
11708         (calc-keypad-left-click): Set buffer to calc-keymap-buffer.
11710 2004-12-08  Richard M. Stallman  <rms@gnu.org>
11712         * faces.el: Delete code to set display table.
11713         (escape-glyph): Redefine to be less loud.  (Copy minibuffer-prompt.)
11715 2004-12-08  Jay Belanger  <belanger@truman.edu>
11717         * calc/calc.el: Add math-read-preprocess-string to autoloads.
11719         * calc/calc-ext.el (math-read-replacement-list)
11720         (math-read-superscripts, math-read-preprocess-string): Move to
11721         calc-aent.el.
11723         * calc/calc-aent.el (math-read-replacement-list)
11724         (math-read-superscripts, math-read-preprocess-string): Move from
11725         calc-ext.el.
11727 2004-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11729         * isearch.el (isearch-quote-char): Fix up typo in last change.
11731 2004-12-07  Luc Teirlinck  <teirllm@auburn.edu>
11733         * mouse.el (mouse-set-font): Handle the case where the command was
11734         not invoked using the mouse.
11736         * edmacro.el: `edit-kbd-macro' is now bound to `C-x C-k e'.
11737         (edmacro-finish-edit): Further update for keyboard macros that are
11738         lambda forms.
11739         (edmacro-sanitize-for-string): Correctly remove Meta modifier.
11741 2004-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11743         * font-lock.el (font-lock-unfontify-region): Save buffer state.
11744         (font-lock-default-unfontify-region): Don't save buffer state any more.
11746 2004-12-07  Jay Belanger  <belanger@truman.edu>
11748         * calc/calc-help.el (calc-describe-key):
11749         Set calc-summary-indentation even when Calc Summary buffer exists.
11751 2004-12-07  Glenn Morris  <gmorris@ast.cam.ac.uk>
11753         * calendar/holidays.el (holiday-easter-etc): Make arguments
11754         optional for backwards compatibility.  Doc fix.
11755         Remove un-necessary local vars mandatory, output-list.
11756         (holiday-advent): Make arguments optional for backwards
11757         compatibility.  Doc fix.
11759 2004-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11761         * paren.el (show-paren-function): Fix last change (2004-12-02).
11763         * international/mule-util.el (char-displayable-p): Return nil for
11764         unibyte mode.
11766         * subr.el (subregexp-context-p): New function.
11768         * isearch.el (isearch-quote-char): Use it.
11770         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Use it.
11771         (regexp-opt-not-groupie*-re): Remove.
11772         (regexp-opt): Properly handle inputs with duplicate entries.
11774 2004-12-06  Richard M. Stallman  <rms@gnu.org>
11776         * info-look.el (info-lookup-maybe-add-help cfengine-mode): Regexp typo.
11778         * cus-edit.el (custom-file): Doc fix.
11780         * textmodes/org.el: New file.
11782 2004-12-06  Kenichi Handa  <handa@m17n.org>
11784         * ldefs-boot.el: Update international/mule-util.el section.
11786 2004-12-05  Sam Steingold  <sds@gnu.org>
11788         * net/tramp.el (tramp-handle-file-accessible-directory-p):
11789         Fix `tramp-time-diff' comparison logic.
11791 2004-12-05  Paul Pogonyshev  <pogonyshev@gmx.net>
11793         * progmodes/which-func.el (which-function):
11794         Use `run-hook-with-args-until-success' instead of a custom loop.
11795         Fixes bug with local hooks.
11797 2004-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
11799         * textmodes/bibtex.el (bibtex-font-lock-url-regexp):
11800         Use delete-dups when calculating the initial value.
11801         (bibtex-autokey-get-title): Use <=.
11802         (bibtex-goto-line): New function.
11803         (bibtex-reposition-window): Use line numbers instead of point
11804         positions.  Use window-body-height.
11805         (bibtex-find-crossref): Use bibtex-reposition-window.
11806         (bibtex-find-entry): Use bibtex-reposition-window.  Always return
11807         position of entry if key is found or nil if not found.
11809 2004-12-05  Richard M. Stallman  <rms@gnu.org>
11811         * cus-edit.el (custom-file): Doc fix.
11813         * progmodes/sh-script.el (sh-indent-for-then): Change default.
11815 2004-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11817         * simple.el (blink-matching-open):
11818         * textmodes/tex-mode.el (tex-validate-region):
11819         Obey syntax-table text properties.
11821 2004-12-02  Per Abrahamsen  <abraham@dina.kvl.dk>
11823         * wid-edit.el (widget-specify-field): Add `real-field' property to
11824         boundary.
11825         (widget-field-at): Use it.
11827 2004-12-02  Richard M. Stallman  <rms@gnu.org>
11829         * progmodes/cc-mode.el (awk-mode autoload):
11830         Supply t meaning interactive function.
11832         * isearch.el (search-whitespace-regexp): Remove the group.  Doc fix.
11833         (isearch-mode-map): No special definition for space.
11834         (isearch-whitespace-chars): Command deleted.
11835         (isearch-forward-regexp): Doc fix.
11836         (isearch-quote-char): When a space is not inside brackets,
11837         use `[ ]' instead of just space.
11838         (isearch-lazy-highlight-search): Bind search-spaces-regexp.
11840         * imenu.el (imenu--generic-function): Delete code to exclude
11841         matches in comments.
11843         * man.el (Man-reverse-face): Change default to `highlight'.
11845         * replace.el (occur-1): Specify t for KEEP-PROPS to occur-engine.
11846         (occur-engine): Use `face' prop rather than `font-lock-face'
11847         when specifying use of `match-face'.
11848         (occur-accumulate-lines): Change arg from NO-PROPS to KEEP-PROPS.
11850         * emacs-lisp/elint.el (elint-standard-variables): Update list.
11852         * add-log.el (add-log-current-defun): Handle the case where point
11853         is in the header part of a DEFUN construct.
11855 2004-12-02  Dave Love  <fx@gnu.org>
11857         * progmodes/python.el (python-font-lock-syntactic-keywords):
11858         Fix previous change.
11860 2004-12-02  Richard G Bielawski  <Richard.G.Bielawski@wellsfargo.com>  (tiny change)
11862         * paren.el (show-paren-function): Check for matching chars
11863         specified by text props.
11865 2004-12-02  Jay Belanger  <belanger@truman.edu>
11867         * calc/calc.el (calc-read-key-sequence): Leave the old message visible
11868         when reading a new key sequence.
11870 2004-12-02  Kim F. Storm  <storm@cua.dk>
11872         * faces.el (escape-glyph): Rename from glyph.
11873         (standard-display-table): Set it here.  Add escape-glyph face to
11874         extra slot characters.
11876         * disp-table.el: Undo 2004-12-01 change.  Display table is now
11877         setup in faces.el.
11879 2004-12-02  Mark A. Hershberger  <mah@everybody.org>
11881         * xml.el (xml-parse-dtd): Don't show validity messages when
11882         xml-validating-parser is nil.
11883         (xml-substitute-special): Fix validity error messages to
11884         actually show the unexpandable entity.  Added validity error if &
11885         isn't followed by an entity.
11886         (xml-parse-tag): Concatenate any string following the a
11887         <![CDATA[]]> section to the parsed CDATA.
11888         (xml-parse-dtd): Skip parameter entity declarations and use of
11889         parameter entities.
11891 2004-12-01  Luc Teirlinck  <teirllm@auburn.edu>
11893         * kmacro.el (kmacro-default-counter-format): New var.
11894         (kmacro-set-format): Use it.  Delete `(printf format)' from prompt.
11895         (kmacro-display): Remove `nil' from `and' form.  Delete call to
11896         `format' inside `message'.
11897         (kmacro-start-macro): Use `kmacro-default-counter-format'.
11899 2004-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11901         * pcvs.el (cvs-header-msg): New function.
11902         (cvs-update-header): Use it.  Change calling convention.
11903         Correctly handle the case of having simultaneous active processes.
11904         (cvs-sentinel): Don't call cvs-update-header any more.
11905         (cvs-mode-run): Update call and add cvs-update-header to postproc.
11907 2004-12-01  Jay Belanger  <belanger@truman.edu>
11909         * calc/calc-ext.el (calc-inverse, calc-hyperbolic):
11910         Change message.
11912 2004-12-01  Juri Linkov  <juri@jurta.org>
11914         * progmodes/prolog.el (prolog-mode-variables):
11915         Fix imenu-generic-expression.
11917 2004-12-01  Daniel Pfeiffer  <occitan@esperanto.org>
11919         * faces.el (glyph): New face.
11921         * disp-table.el: Add an autoloaded table, that doesn't require
11922         this library, with glyph face.
11924         * textmodes/conf-mode.el (conf-ppd-mode-syntax-table): New var.
11925         (conf-ppd-mode): New conf-mode wrapper for printer descriptions.
11926         (conf-quote-normal): Allow normalizing only ' or ".
11927         (conf-mode): Regexp-quote constructed comment-start and don't
11928         match section {} where "name" contains braces.
11930         * files.el (auto-mode-alist): Add conf-ppd-mode, inittab and acpid
11931         files.
11933 2004-12-01  Kenichi Handa  <handa@m17n.org>
11935         * term/x-win.el (x-last-selected-text-cut-encoded): New variable.
11936         (x-select-text): Don't treat eight-bit-control/graphic chars
11937         specially.  Store the encoded text in the X cut buffer.
11938         (x-cut-buffer-or-selection-value): Compare the X cut buffer text
11939         with x-last-selected-text-cut-encoded.
11941 2004-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11943         * man.el (Man-fontify-manpage): Improve handling of ANSI escapes.
11945 2004-11-30  Markus Rost  <rost@ias.edu>
11947         * textmodes/tex-mode.el (tex-main-file): Add a compatibility with
11948         AUCTeX.
11950 2004-11-30  Jay Belanger  <belanger@truman.edu>
11952         * calc/calc-arith.el (math-possible-signs): Made stronger checks
11953         on signs of intervals.
11954         (math-pow-of-zero): Strengthen checks for positive and negative
11955         exponents.
11957         * calc/calc-aent.el, calc/calc-alg.el, calc/calc-arith.el
11958         * calc/calc-bin.el, calc/calc-comb.el, calc/calc-cplx.el
11959         * calc/calc-embed.el, calc/calc-fin.el, calc/calc-forms.el
11960         * calc/calc-frac.el, calc/calc-funcs.el, calc/calc-graph.el
11961         * calc/calc-help.el, calc/calc-incom.el, calc/calc-keypd.el
11962         * calc/calc-lang.el, calc/calc-map.el, calc/calc-math.el
11963         * calc/calc-misc.el, calc/calc-mode.el, calc/calc-mtx.el
11964         * calc/calc-poly.el, calc/calc-prog.el, calc/calc-rewr.el
11965         * calc/calc-rules.el, calc/calc-sel.el, calc/calc-stat.el
11966         * calc/calc-store.el, calc/calc-stuff.el, calc/calc-trail.el
11967         * calc/calc-undo.el, calc/calc-units.el, calc/calc-vec.el
11968         * calc/calc-yank.el, calc/calcalg2.el, calc/calcalg3.el
11969         * calc/calccomp.el, calc/calcsel2.el: Replace dummy autoloaded
11970         functions with provide statements.
11972         * calc/calc-alg.el (math-defsimplify): Move from calc-ext.el.
11974         * calc/calc-embed.el (calc-do-embedded-activate): Remove from
11975         autoloads.
11977         * calc/calc-ext.el: Remove dummy autoloading functions from autoloads.
11978         (calc-load-everything, math-defsimplify): Replace dummy autoloading
11979         functions by require statements.
11980         (math-defsimplify): Move to calc-alg.el, add to autoloads.
11982         * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
11983         (calc-gnuplot-print): Give them values.
11985         * calc/calc.el: Remove calc-Need-calc-aent and calc-Need-calc-misc from
11986         autoloads.
11987         Add calc-do-embedded-activate to autoloads.
11988         (calc-gnuplot-name, calc-gnuplot-plot-command)
11989         (calc-gnuplot-print-command): Move them to calc-graph.el.
11991 2004-11-30  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11993         * term/mac-win.el (ccl-encode-mac-roman-font)
11994         (ccl-encode-mac-cyrillic-font)
11995         (ccl-encode-mac-centraleuropean-font, encoder-list)
11996         (fontset-add-mac-fonts, create-fontset-from-mac-roman-font):
11997         Support Cyrillic, CentralEuropean, and Dingbat font display
11999 2004-11-30  Andre Spiegel  <spiegel@gnu.org>
12001         * vc-hooks.el (vc-recompute-state): Move here from vc.el.
12003         * vc-cvs.el (vc-cvs-state): Handle the case where vc-state is
12004         still nil.
12006 2004-11-29  Luc Teirlinck  <teirllm@auburn.edu>
12008         * emulation/tpu-edt.el (tpu-help-keypad-map, tpu-help-text)
12009         (tpu-word-separator-list, tpu-skip-chars): defconst->defvar.
12011 2004-11-29  Jay Belanger  <belanger@truman.edu>
12013         * calc/calc-arith.el (math-pow-of-zero): Take into account different
12014         cases of the base and exponent.
12016 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12018         * simple.el (next-error-buffer-p): Allow for inclusive and
12019         exclusive tests for finding a buffer.
12020         (next-error-find-buffer): Pass the exclusive and inclusive tests
12021         to next-error-buffer-p.
12023         * replace.el (occur-next-error): Switch to the Occur buffer when
12024         appropriate, use the exclusive filter to next-error-find-buffer to
12025         do it.  Use the absolute value of the motion amount.
12027 2004-11-29  Kenichi Handa  <handa@m17n.org>
12029         * startup.el (command-line): Decode all default-directory by
12030         locale-coding-system.
12032 2004-11-29  Jay Belanger  <belanger@truman.edu>
12034         * calc/calc-aent.el: Remove unnecessary eval-when-compile.
12035         (calc-do-quick-calc, calc-do-calc-eval, calc-alg-entry)
12036         (math-read-expr-level, calc-check-user-syntax, math-read-factor):
12037         Replace calls to calc-extensions by appropriate require, replace
12038         calc-extensions-loaded by appropriate featurep.
12040         * calc/calc-ext.el: Move require to end of file.  Remove redundant
12041         loading of calc.el.
12042         (calc-extensions-loaded): Remove unnecessary variable.
12043         (calc-extensions): Remove unnecessary function.
12044         (calc-load-everything): Replace calc-need-macros by appropriate
12045         require.
12047         * calc/calc-macs.el: Move provide to end of file.
12048         (calc-need-macros): Remove unnecessary function.
12050         * calc/calc-misc.el (calc-do-handle-whys, calc-last-args-stub)
12051         (calc-missing-key, calc-shift-Y-prefix-help, math-concat)
12052         (math-trunc, math-floor, calcFunc-inv, math-mod, math-pow):
12053         Replace calc-extensions by appropriate require.
12054         (calc-power): Replace calc-extensions-loaded by appropriate featurep.
12056         * calc/calc-prog.el (calc-user-define-formula, calc-do-defmath):
12057         Replace calc-need-macros by appropriate require.
12059         * calc/calc.el: Move require to end of file.
12060         (calc-info-filename, calc-autoload-directory, calc-extensions-loaded):
12061         Remove unnecessary variable.
12062         (calc-do-dispatch, calc-mode, calc-check-defines, calc-create-buffer)
12063         (calc, calc-keypad, full-calc-keypad, calc-do, calc-normalize)
12064         (calc-binary-op, calc-unary-op, calcDigit-start, calcDigit-key)
12065         (math-normalize, math-add, math-mul, math-div, math-format-stack-value)
12066         (math-stack-value-offset, math-format-value, math-format-flat-expr)
12067         (math-format-number, math-format-bignum, math-read-number)
12068         (calc-grab-region, calc-grab-rectangle, calc-grab-sum-down)
12069         (calc-grab-sum-across, calc-embedded, defmath): Replace calc-extensions
12070         by appropriate require.
12071         (calc-check-defines): Replace calc-need-macros by appropriate require.
12073 2004-11-29  Kim F. Storm  <storm@cua.dk>
12075         * macros.el (insert-kbd-macro): Handle kmacro functions.
12077 2004-11-28  Juri Linkov  <juri@jurta.org>
12079         * compare-w.el (compare-windows-highlight): Attach each overlay
12080         to its window to properly highlight differences while comparing
12081         two windows of the same buffer.  Fix arguments.
12082         (compare-windows-sync-default-function): Fix arguments of
12083         `compare-windows-highlight'.
12085         * emacs-lisp/edebug.el (edebug-set-global-break-condition):
12086         Use `read-expression-history'.  Set initial contents only if
12087         `edebug-global-break-condition' is non-nil.  Set histpos to 1
12088         if initial contents is equal to the last history element.
12089         (edebug-set-conditional-breakpoint): Instead of temporarily
12090         prepending the current condition to the history, set initial
12091         contents to the current condition.  Set histpos to 1 if initial
12092         contents is equal to the last history element.
12094         * info.el (Info-search-whitespace-regexp): Remove shy group.
12095         (Info-search): Forward line if search is on the header line.
12096         Use search-whitespace-regexp in two other places.
12098 2004-11-27  Luc Teirlinck  <teirllm@auburn.edu>
12100         * fringe.el (fringe-indicators): Add fake defvar to avoid compiler
12101         warning.  Delay real definition, which uses
12102         `set-fringe-indicators-1' till after the definition of that function.
12104 2004-11-28  Kim F. Storm  <storm@cua.dk>
12106         * fringe.el (fringe): New defgroup.
12107         (fringe-mode): Move to fringe group.
12108         (fringe-indicators): New defcustom.
12109         (set-fringe-indicators-1): New defun.
12111         * menu-bar.el (menu-bar-options-save): Add fringe-indicators.
12112         (menu-bar-showhide-fringe-ind-menu): New keymap.
12113         (menu-bar-showhide-fringe-ind-empty)
12114         (menu-bar-showhide-fringe-ind-mixed)
12115         (menu-bar-showhide-fringe-ind-box)
12116         (menu-bar-showhide-fringe-ind-right)
12117         (menu-bar-showhide-fringe-ind-left)
12118         (menu-bar-showhide-fringe-ind-none): New defuns.
12119         (menu-bar-showhide-fringe-menu): Add "Indicators" sub-menu.
12121 2004-11-27  Richard M. Stallman  <rms@gnu.org>
12123         * comint.el (comint-read-noecho): Add trivial compatibility definition.
12125         * generic.el (define-generic-mode): Doc fix.
12127         * menu-bar.el (menu-bar-options-save): For the options
12128         that are toggled with menu-bar-make-mm-toggle, don't check
12129         for customized-value prop.
12131 2004-11-27  Eli Zaretskii  <eliz@gnu.org>
12133         * mail/supercite.el (sc-cite-region): Handle the case where
12134         sc-cite-frame-alist is a symbol.
12135         (sc-uncite-region): Handle the case where sc-uncite-frame-alist is
12136         a symbol.
12137         (sc-recite-region): Handle the case where sc-recite-frame-alist is
12138         a symbol.
12140 2004-11-27  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
12142         * wid-edit.el (widget-narrow-to-field): New function.
12143         (widget-complete): Use it.
12145 2004-11-27  Jay Belanger  <belanger@truman.edu>
12147         * calc/calc-aent.el (calc-eval-error): Declare and initialize the
12148         variable.
12149         (calc-eval-error): Don't check if the variable calc-eval-error is
12150         bound.
12151         (calc-buffer, calc-digit-value, math-expr-data): Declare them.
12152         (math-alg-inequalities): Move declaration to earlier in the file.
12154         * calc/calc-ext.el (calc-command-flags, calc-gnuplot-buffer)
12155         (calc-gnuplot-input, math-normalize-a, math-integral-cache):
12156         Declare them.
12158         * calc/calc-lang.el (math-expr-data, math-expr-token)
12159         (math-exp-old-pos): Declare them.
12161         * calc/calc-vec.el (math-exp-pos, math-exp-str, math-exp-old-pos)
12162         (math-exp-token, math-exp-keep-spaces, math-expr-data): Declare them.
12164 2004-11-27  Kim F. Storm  <storm@cua.dk>
12166         * progmodes/flymake.el: Use (featurep 'xemacs).
12167         (flymake-makehash): Change to defsubst.  Use fboundp.
12168         (flymake-time-to-float): Remove.
12169         (flymake-float-time): Merge code from flymake-time-to-float here.
12170         (flymake-replace-regexp-in-string): Change to defsubst.
12171         (flymake-split-string-remove-empty-edges):
12172         Rename to flymake-split-string.
12173         (flymake-split-string): Remove previous defalias.
12174         (flymake-get-temp-dir): Change to defsubst.
12175         (flymake-make-xemacs-menu, flymake-xemacs-window-edges):
12176         Define for xemacs only.
12177         (flymake-master-file-count-limit): Change into compiler defvar only.
12178         (flymake-find-possible-master-files): Let-bind it dynamically while
12179         sorting files using flymake-master-file-compare.
12181 2004-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12183         * font-lock.el (font-lock-compile-keywords): Don't complain if the end
12184         of defun-prompt-regexp matches inside a comment/string but the
12185         beginning is correctly outside everything.
12187         * progmodes/tcl.el (tcl-omit-ws-regexp): Avoid the case where { or [
12188         appears within a string or a comment.
12190         * emacs-lisp/cl-macs.el (cl-parse-loop-clause, labels): Use gensym
12191         rather than make-symbol for symbols which are used in
12192         a symbol-macrolet or equivalent.
12194 2004-11-26  Jay Belanger  <belanger@truman.edu>
12196         * calc-misc.el (calc-last-why-command): Declare it.
12198         * calc-vec.el (math-grade-vec): New variable.
12199         (calcFunc-grade, calcFunc-rgrade, math-grade-beforep):
12200         Replace variable grade-vec by declared variable.
12201         (math-rb-close): New variable.
12202         (math-read-brackets, math-read-vector): Replace variable close by
12203         declared variable.
12205         * calc/calc-yank.el (calc-original-buffer, calc-return-buffer)
12206         (calc-one-window, calc-edit-handler, calc-restore-trail)
12207         (calc-allow-ret): Declare them.
12209         * calc/calc-stuff.el (calc-flush-caches): Remove unnecessary variables.
12210         (math-lud-cache, math-log2-cache, math-radix-digits-cache)
12211         (math-radix-float-cache-tag, math-random-cache)
12212         (math-max-digits-cache, math-integral-cache, math-units-table)
12213         (math-format-date-cache, math-holidays-cache-tag): Declare them.
12214         (math-moc-func): New variable.
12215         (math-map-over-constants, math-map-over-constants-rec):
12216         Replace variable func by declared variable.
12218         * calc/calc-store.el (calc-given-value, calc-store-opers):
12219         Declare them.
12220         (calc-var-name-map): Move declaration to earlier in the file.
12221         (calc-pv-pos): New variable.
12222         (calc-permanent-variable, calc-insert-permanent-variable):
12223         Replace variable pos by declared variable.
12225         * calc/calc-mtx.el (calc-det-lu): New variable.
12226         (math-det-raw, math-det-step): Replace variable lu by declared
12227         variable.
12229         * calc/calc-map.el (math-ms-temp, math-ms-args): New variables.
12230         (math-multi-subst, math-multi-subst-rec): Replace variables temp
12231         and arg by declared variables.
12232         (calcFunc-reducer): Fix incorrect variable.
12233         (math-inner-mul-func, math-inner-add-func): New variables.
12234         (calcFunc-inner, math-inner-mats): Replace variables mul-func
12235         and add-func by declared variables.
12237         * calc/calc-incom.el (calc-prev-char, calc-prev-prev-char)
12238         (calc-digit-value): Declare them.
12240         * calc/calc-help.el (Info-history): Declare it.
12241         (calc-describe-key): Make calc-summary-indentation a local variable.
12242         (calc-help-long-names): Move declaration to earlier in file.
12244         * calc/calc-embed.el (calc-original-buffer): Declare it.
12245         (calc-embed-outer-top, calc-embed-outer-bot, calc-embed-top)
12246         (calc-embed-bot): New variables.
12247         (calc-do-embedded, calc-embedded-mark-formula)
12248         (calc-embedded-find-bounds, calc-embedded-duplicate)
12249         (calc-embedded-new-formula, calc-embedded-make-info):
12250         Replace vars outer-top, outer-bot, bot and top by declared variables.
12251         (calc-embed-prev-modes): New variable.
12252         (calc-embedded-set-modes, calc-embedded-update): Replace variable
12253         prev-modes with declared variable.
12254         (calc-embed-vars-used): New variable.
12255         (calc-embedded-make-info, calc-embedded-evaluate-expr)
12256         (calc-embedded-update, calc-embedded-find-vars): Replace variable
12257         vars-used by declared variable.
12259         * calc/calc-bin.el (math-format-radix-float): Make pos a local
12260         variable.
12261         (math-format-radix-float): Remove unnecessary setq.
12262         (math-radix-float-cache): Declare it.
12264         * calc/calcsel2.el (calc-keep-selection): Declare it.
12266         * calc/calc-maint.el: Remove file.
12268 2004-11-26  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
12270         * textmodes/bibtex.el (bibtex-sort-entry-class)
12271         (bibtex-comment-start): Use defcustom.
12272         (bibtex-entry-field-alist): Use nil if initial content of the
12273         field is undefined.  Fix docstring.
12274         (bibtex-parse-keys-timeout, bibtex-autokey-additional-names)
12275         (bibtex-generate-autokey, bibtex-parse-buffers-stealthily)
12276         (bibtex-mode, bibtex-field-list, bibtex-entry-updat)
12277         (bibtex-autofill-entry, bibtex-entry-index, bibtex-next-field):
12278         Fix docstring.
12279         (bibtex-autokey-title-terminators): Use only one regexp.
12280         (bibtex-string-maybe-empty-head): New variable.
12281         (bibtex-remove-delimiters-string): New function.
12282         (bibtex-text-in-field-bounds, bibtex-text-in-string):
12283         Use bibtex-remove-delimiters-string.
12284         (bibtex-progress-message, bibtex-field-left-delimiter)
12285         (bibtex-field-right-delimiter, bibtex-entry-left-delimiter)
12286         (bibtex-entry-right-delimiter, bibtex-search-entry): Use eq.
12287         (bibtex-insert-kill): Rename from `bibtex-insert-current-kill'.
12288         Simplify.
12289         (bibtex-format-entry): Use save-excursion for inherited booktitle.
12290         Use eq and bibtex-remove-delimiters-string.  For end markers use
12291         insertion type so that marker stays after inserted text.
12292         (bibtex-autokey-get-names): Return empty string if name is missing.
12293         (bibtex-autokey-demangle-name): Call bibtex-autokey-abbrev before
12294         calling bibtex-autokey-name-case-convert.
12295         (bibtex-autokey-demangle-title):
12296         Call bibtex-autokey-titleword-case-convert.  Remove call to
12297         bibtex-autokey-titleword-case-convert from bibtex-autokey-get-title.
12298         (bibtex-global-key-alist, bibtex-read-string-key): New functions.
12299         (bibtex-read-key): New optional arg global.
12300         (bibtex-files-expand): New optional arg force.
12301         (bibtex-complete-string-cleanup): Expansion of abbrev can be absent.
12302         (bibtex-complete-crossref-cleanup): Rename from
12303         bibtex-complete-key-cleanup.  Simplify code.
12304         (bibtex-copy-summary-as-kill): Remove arg key.  Use looking-at.
12305         Operate on current entry.
12306         (bibtex-button): Add docstring.
12307         (bibtex-entry): Simplify.
12308         (bibtex-make-field): Replace optional arg called-by-yank with more
12309         specific args move and interactive.
12310         (bibtex-end-of-entry): Use forward-sexp.
12311         (bibtex-find-entry-globally): Remove.
12312         (bibtex-find-crossref): Allow for crossref key located in other buffer.
12313         Bound to C-c C-x.
12314         (bibtex-find-entry): New optional args global and display.
12315         (bibtex-find-text): Fix docstring.  Remove arg as-if-interactive.
12316         (bibtex-validate): Use arg force of bibtex-files-expand.
12317         (bibtex-clean-entry): Bugfix, clean string entries properly.
12318         Always keep point at beginning of entry.
12319         (bibtex-complete): Bugfix.  Handle string entries properly.
12320         Call cleanup functions only if needed.
12321         (bibtex-String): Use bibtex-read-string-key.
12322         (bibtex-url): Use bibtex-remove-delimiters-string.  Do not alter
12323         case of replacement text.
12325 2004-11-26  Lars Hansen  <larsh@math.ku.dk>
12327         * tramp.el (tramp-handle-directory-files-and-attributes): New function.
12328         (tramp-perl-directory-files-and-attributes): New constant.
12329         (tramp-file-name-handler-alist): Delete file-directory-files, add
12330         directory-files-and-attributes.
12331         (tramp-perl-file-attributes): Surround uid and gid by double
12332         quotes.  Change parameter id-format from nonnumeric.
12333         (tramp-convert-file-attributes): New function.
12334         (tramp-handle-file-attributes): Use it.
12335         (tramp-maybe-send-perl-script): New function.
12336         (tramp-handle-file-attributes-with-perl): Use it.  Don't convert
12337         file mode.  Change parameter id-format from nonnumeric.
12338         (tramp-handle-file-attributes-with-ls): Change parameter id-format
12339         from nonnumeric.
12340         (tramp-post-connection): Don't send tramp-perl-file-attributes
12341         script.  Reset connection property "perl-scripts".
12342         (tramp-handle-insert-directory): Run real handler when ls-lisp is
12343         in use.
12345 2004-11-26  Lars Hansen  <larsh@math.ku.dk>
12347         * desktop.el (desktop-read): Replace mapcar with mapc.
12348         (desktop-create-buffer): Replace mapcar with mapc.
12349         Remove redundant piece of code.
12351 2004-11-27  Nick Roberts  <nickrob@snap.net.nz>
12353         * progmodes/gud.el (gud-display-line): Use display-buffer
12354         for GDB-UI as for GUD.
12356         * progmodes/gdb-ui.el (gdb-view-source, gdb-selected-view):
12357         Delete variables.
12358         (gdb-ann3): Don't make GUD buffer dedicated.
12359         (gdb-goto-breakpoint, gdb-display-buffer): Don't always dedicate.
12360         (gdb-display-source-buffer): Delete function.
12361         (gdb-view-source-function, gdb-view-assembler): Delete functions.
12362         (menu): Delete menu bindings for viewing source/assembler.
12363         (gdb-setup-windows, gdb-restore-windows):
12364         Don't dedicate GUD.  No assembler now.
12365         (gdb-reset): No need to undedicate source buffers now.
12366         (gdb-source-info): No assembler now.
12368 2004-11-26  Nick Roberts  <nickrob@snap.net.nz>
12370         * progmodes/gdb-ui.el (gdb-frame-parameters): Match height and
12371         width to those for special frames.
12372         (gdb-frame-breakpoints-buffer): Use gdb-frame-parameters.
12373         Use display-buffer.
12374         (gdb-frame-stack-buffer, gdb-frame-threads-buffer)
12375         (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
12376         (gdb-frame-assembler-buffer): Rework like
12377         gdb-frame-breakpoints-buffer.
12379 2004-11-25  Richard M. Stallman  <rms@gnu.org>
12381         * progmodes/flymake.el: Reindent.
12382         (flymake-split-string): Turn into defalias.
12383         (flymake-fix-file-name): Rename from flymake-fix-path-name.
12384         (flymake-ensure-ends-with-slash): Rename arg to FILENAME.
12385         (flymake-get-common-file-prefix): Rename from ...path...  Doc fix.
12386         (flymake-build-relative-filename): Rename from ...path.
12387         Fix error message.
12389 2004-11-25  Cheng Gao  <chenggao@gmail.com>
12391         * progmodes/flymake.el: Much whitespace and capitalization change.
12392         Move `provide' to end.  Require `compile' only when compiling.
12394 2004-11-24  Jay Belanger  <belanger@truman.edu>
12396         * calc/calc-alg.el: Added comment.
12397         (math-polynomial-base): Replace variable mpb-top-expr by
12398         math-poly-base-top-expr.
12400         * calc/calc-poly.el (math-poly-base-top-expr): New variable.
12401         (math-polynomial-p1): Replace variable mpb-top-expr by declared
12402         variable.
12403         (math-poly-base-total-base): New variable.
12404         (math-total-polynomial-base, math-polynomial-p1): Replace variable
12405         mpb-total-base by declared variable.
12406         (math-factored-vars, math-to-list): Declare it.
12407         (math-fact-expr): New variable.
12408         (calcFunc-factors, calcFunc-factor, math-factor-expr)
12409         (math-factor-expr-try, math-factor-expr-part): Replace variable
12410         expr by declared variable.
12411         (math-fet-x): New variable.
12412         (math-factor-expr-try, math-factor-poly-coefs): Replace variable x
12413         by declared variable.
12414         (math-factor-poly-coefs): Make temp a local variable.
12416         * calc/calc-units.el (calc-convert-units): Make units a local
12417         variable.
12418         (calc-num-units, calc-den-units): New variables.
12419         (calc-explain-units, calc-explain-units-rec): Replace variables
12420         num-units and den-units by declared variables.
12421         (math-cu-unit-list): New variable.
12422         (math-build-units-table, math-compare-unit-names)
12423         (math-convert-units, math-convert-units-rec): Replace variable
12424         unit-list by declared variable.
12425         (math-fbu-base, math-fbu-entry): New variables.
12426         (math-find-base-units, math-find-base-units-rec): Replace variables
12427         base and entry by declared variables.
12428         (math-which-standard): New variable.
12429         (math-to-standard-units, math-to-standard-rec): Replace variable
12430         which-standard by declared variable.
12431         (math-fcu-u): New variable.
12432         (math-find-compatible-unit, math-find-compatible-unit-rec):
12433         Replace variable u by declared variable.
12434         (math-cu-new-units, math-cu-pure): New variables.
12435         (math-convert-units, math-convert-units-rec): Replace variables
12436         new-units and pure by declared variables.
12437         (math-try-cancel-units): New variable.
12438         (math-simplify-units-quotient): Replace variable try-cancel-units by
12439         declared variable.
12441 2004-11-24  Richard M. Stallman  <rms@gnu.org>
12443         * textmodes/ispell.el (ispell-check-version):
12444         If default-directory is nonexistent, use home dir.
12446         * progmodes/grep.el (grep-regexp-alist):
12447         Don't match parens around line numbers.
12449         * progmodes/cperl-mode.el (cperl-indent-region)
12450         (cperl-imenu--create-perl-index, cperl-xsub-scan):
12451         Don't print progress messages.
12453         * progmodes/compile.el (compilation-mode-map):
12454         Don't inherit from compilation-minor-mode-map;
12455         copy its bindings instead.  But the menu bar Compile
12456         entry now does inherit from compilation-menu-map.
12458         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
12459         Use with-no-warnings around compiler-macroexpand.
12461         * imenu.el: Don't always require newcomment.
12462         (imenu--generic-function): Call comment-normalize-vars
12463         if we have a comment syntax.
12464         Exit the loop if REGEXP matches the null string.
12465         Test comment-start as well as comment-start-skip
12466         when deciding whether to check for comments.
12468         * tooltip.el (tooltip-mode): Doc fix.
12470         * term.el (term-escape-char, term-mode): Doc fixes.
12472 2004-11-24  Dave Love  <fx@gnu.org>
12474         * progmodes/python.el (python-font-lock-syntactic-keywords):
12475         Check for escapes in the regexp.
12476         (python-quote-syntax): Don't do it here.
12478 2004-11-24  Nick Roberts  <nickrob@snap.net.nz>
12480         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
12481         (gdb-frames-mode-map, gdb-threads-mode-map)
12482         (gdb-registers-mode-map, gdb-locals-mode-map)
12483         (gdb-assembler-mode-map): Bind "q" to kill-this-buffer.
12484         (gdb-set-window-buffer): Rename from dedicated-switch-to-buffer.
12486         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>:
12487         (dedicated-switch-to-buffer): Rework.
12488         (gdb-var-evaluate-expression-handler, gdb-put-string):
12489         Remove unused variable bindings.
12490         (gdb-setup-windows, gdb-display-buffer):
12491         Simplify.  Use pop-to-buffer.
12492         (gdb-view-source-function): Simplify.
12493         (gdb-frame-breakpoints-buffer):
12494         Use pop-to-buffer, special-display-regexps.
12496 2004-11-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
12498         * progmodes/f90.el (f90-smart-end)
12499         (f90-previous-statement, f90-beginning-of-block): Doc fix.
12500         (f90-calculate-indent): Handle un-named PROGRAM blocks.
12501         (f90-end-of-block): Doc fix.  Make check of outermost block
12502         conditional on value of `f90-smart-end'.
12503         (f90-block-match): Hack to deal with un-named PROGRAM blocks.
12504         Handle case where END-BLOCK is nil.
12505         (f90-match-end): Handle un-named PROGRAM blocks.
12506         (f90-backslash-not-special): New function.
12508 2004-11-24  Jay Belanger  <belanger@truman.edu>
12510         * calc/calc.el (calc-embedded-active): Removed unnecessary
12511         declaration.
12512         (calc-show-banner): Removed redundant declaration.
12514         * calc/calc-graph.el (calc-gnuplot-default-device)
12515         (calc-gnuplot-default-output, calc-gnuplot-print-device)
12516         (calc-gnuplot-print-output, calc-gnuplot-geometry)
12517         (calc-graph-default-resolution, calc-graph-default-resolution-3d):
12518         Remove redundant initial values.
12520         * calc/calc-arith.el (math-scalar-functions)
12521         (math-nonscalar-functions, math-scalar-if-args-functions)
12522         (math-real-functions, math-positive-functions)
12523         (math-nonnegative-functions, math-real-scalar-functions)
12524         (math-real-if-arg-functions, math-integer-functions)
12525         (math-num-integer-functions, math-rounding-functions)
12526         (math-float-rounding-functions, math-integer-if-args-functions)
12527         (math-super-types): Move declarations to earlier in file.
12528         (math-unit-prefixes): Declared it.
12529         (math-floor-prec, math-trunc-prec): New variables.
12530         (math-trunc-fancy): Replace variable prec by declared variable.
12531         (math-floor-fancy): Replace variable prec by declared variable.
12532         (math-com-bterms): New variable.
12533         (math-commutative-equal, math-commutative-collect):
12534         Replace variable bterms by declared variable.
12536         * calc/calc-misc.el (math-trunc): Replace variable prec by
12537         math-trunc-prec.
12538         (math-floor): Replace variable prec by math-floor-prec.
12540         * calc/calc-forms.el (math-fd-date, math-fd-dt, math-fd-year)
12541         (math-fd-month, math-fd-day, math-fd-weekday, math-fd-hour)
12542         (math-fd-minute, math-fd-second, math-fd-bc-flag): New variables.
12543         (math-format-date, math-format-date-part): Replace variables
12544         date, dt, year, month, day, weekday, hour, minute, second and
12545         bc-flag by declared variables.
12546         (math-pd-str): New variable.
12547         (math-parse-date, math-parse-date-word, math-parse-standard-date):
12548         Replace variable str by declared variable.
12549         (math-daylight-savings-hook, math-tzone-names): Move definitions
12550         to earlier in the file.
12551         (var-TimeZone, math-exp-str, math-exp-pos): Declare them.
12552         (math-sh-year): New variable.
12553         (math-setup-add-holidays, math-setup-holidays)
12554         (math-setup-year-holidays): Replace variable `year' by declared
12555         variable.
12557         * calc/calc-math.el (math-nrf-n, math-nrf-nf, math-nrf-nfm1):
12558         New variables.
12559         (math-nth-root-float, math-nth-root-float-iter): Replace variables
12560         n, nf and nfm1 by declared variables.
12561         (math-nri-n): New variable.
12562         (math-nth-root-integer, math-nth-root-int-iter): Replace variable
12563         n by declared variable.
12564         (calcFunc-log): Removed misplaced condition.
12566 2004-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12568         * generic.el (generic-mode-set-comments): Accept an empty comment-end.
12570 2004-11-24  Nick Roberts  <nickrob@snap.net.nz>
12572         * progmodes/gdb-ui.el (dedicated-switch-to-buffer): New function.
12573         (gdb-ann3, gdb-setup-windows, gdb-restore-windows):
12574         Dedicate gdb-related windows.
12575         (gdb-display-buffer): Dedicate gdb-related windows.
12576         Don't grab other frames.
12577         (gdb-reset): Remove dedicated property after debugging.
12579 2004-11-24  Jay Belanger  <belanger@truman.edu>
12581         * calc/calc-sel.el: Add comment.
12583         * calc/calc.el (math-stack-value-offset): Replace variables c,
12584         wid and off with math-svo-c, math-svo-wid and math-svo-off.
12586         * calc/calccomp.el (math-comp-sel-tag): Declare it.
12587         (math-svo-c, math-svo-wid, math-svo-off): New variables.
12588         (math-stack-value-offset-fancy): Replace variables c, wid and off
12589         by declared variables.
12590         (math-comp-just, math-comp-comma-spc): New variables.
12591         (math-compose-expr, math-compose-matrix): Replace variables `just'
12592         and comma-spc by declared variable.
12593         (math-comp-vector-prec): New variable.
12594         (math-compose-expr, math-compose-matrix, math-compose-rows):
12595         Replace variable vector-prec by declared variable.
12596         (math-comp-left-bracket, math-comp-right-bracket)
12597         (math-comp-comma): New variables.
12598         (math-compose-expr, math-compose-rows): Replace variables
12599         left-bracket, right-bracket and comma by declared variables.
12600         (math-comp-full-width): New variable.
12601         (math-comp-to-string-flat, math-comp-to-string-flat-term):
12602         Replace variable full-width by declared variable.
12603         (math-comp-highlight, math-comp-word, math-comp-level)
12604         (math-comp-margin, math-comp-pos, math-comp-buf, math-comp-base)
12605         (math-comp-hgt, math-comp-tag, math-comp-hpos, math-comp-vpos):
12606         New variables.
12607         (math-comp-to-string-flat, math-comp-to-string-flat-term)
12608         (math-comp-sel-flat-term): Replace variables comp-highlight,
12609         comp-word, comp-level, comp-margin, comp-pos and comp-buf by
12610         declared variables.
12611         (math-comp-simplify, math-comp-simplify-term)
12612         (math-comp-add-string, math-comp-add-string-sel):
12613         Replace variables comp-highlight, comp-buf, comp-base,
12614         comp-height, comp-tag, comp-hpos and comp-vpos by declared variables.
12616 2004-11-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12618         * cus-start.el (all): Add x-use-old-gtk-file-dialog.
12620         * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
12621         and x-server-version may throw.
12623 2004-11-23  Kim F. Storm  <storm@cua.dk>
12625         * subr.el (substitute-key-definition-key): Optimize.
12626         Don't call indirect-function for nil defn (always signals error).
12628         * ido.el (ido-read-internal): Fix require-match check when
12629         ido-directory-too-big is set.
12631 2004-11-23  Jay Belanger  <belanger@truman.edu>
12633         * calc/calc-ext.el (math-read-replacement-list)
12634         (math-read-superscripts): New variables.
12635         (math-read-preprocess-string): New function.
12636         (math-read-expr): Filter input through math-read-preprocess-string.
12638         * calc/calc-aent.el (math-read-exprs): Filter input through
12639         math-read-preprocess-string.
12641 2004-11-23  Daniel Pfeiffer  <occitan@esperanto.org>
12643         * progmodes/compile.el (compilation-start): In cd command use
12644         substitute-env-vars -- not quite shell compatible but better than
12645         nothing.
12646         (compilation-error-regexp-alist-alist): Simplify ftnchek to only
12647         handle the newer versions messages, which are more parseable.
12649 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12651         * reveal.el (reveal-mode-map): New var.
12652         (reveal-mode): Use it.
12654 2004-11-23  Nick Roberts  <nickrob@snap.net.nz>
12656         * progmodes/gdb-ui.el (gdb-flush-pending-output): New variable.
12657         (gdb-send-item, gdb-resync, gud-gdba-marker-filter): Use it.
12659 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12661         * buff-menu.el (list-buffers-noselect): Re-add the leading space in the
12662         header-line when needed.
12663         Use fixed-pitch only in the header-line.
12664         Build the underline automatically.  Use emdash if available.
12666 2004-11-22  Richard M. Stallman  <rms@gnu.org>
12668         * dired.el (dired-recursive-copies): Move from dired-aux.el.
12669         * dired-aux.el (dired-recursive-copies): Move to dired.el.
12671 2004-11-22  Nick Roberts  <nickrob@snap.net.nz>
12673         * progmodes/gdb-ui.el (gdb-resync): New function.
12674         (gdb-pre-prompt, gdb-prompt, gdb-starting, gdb-stopping)
12675         (gdb-frame-begin, gdb-stopped, gdb-post-prompt):
12676         Use it to fail more gracefully.
12677         (gdb-variables): Delete variable.
12678         Re-order variables to reduce byte-compiler warnings.
12680 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12682         * descr-text.el (describe-char):
12683         * paren.el (show-paren-function):
12684         * subr.el (syntax-after): Undo last change.
12686         * progmodes/python.el (run-python): Don't hard code *Python*.
12687         Don't modify global process-environment.
12688         (python-send-region, python-load-file): Don't assume that
12689         python-buffer == (process-buffer (python-proc)).
12690         (python-switch-to-python): Simplify.
12692         * dired.el (dired-align-file): Don't assume line starts with spaces.
12694 2004-11-21  Jay Belanger  <belanger@truman.edu>
12696         * calc/calc-ext.el (math-read-big-expr, math-read-big-bigp):
12697         Replace variable `lines' by math-read-big-lines.
12698         (math-read-big-expr): Replace variables the-baseline, the-h2
12699         and err-msg by math-read-big-baseline, math-read-big-h2 and
12700         math-read-err-msg.
12701         (math-read-big-bigp): Replace variable h2 with math-rb-h2.
12703         * calc/calc-lang.el (math-read-big-rec): Fix typo.
12704         (math-read-big-balance): Replace unbound variable by value.
12705         (math-read-big-lines): New variable.
12706         (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
12707         (math-read-big-error, math-read-big-balance): Replace variable
12708         `lines' by declared variable.
12709         (math-read-big-baseline, math-read-big-h2): New variables.
12710         (math-read-big-rec): Replace variables the-baseline and the-h2
12711         by declared variables.
12712         (math-rb-h1, math-rb-h2, math-rb-v1, math-rb-v2): New variables.
12713         (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
12714         (math-read-big-balance): Replace variables h1, h2, v1 and v2 by
12715         declared variables.
12716         (math-read-big-err-msg): New variable.
12717         (math-read-big-error): Replace variable err-msg by declared variable.
12719 2004-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12721         * ses.el: Add coding cookie.
12722         Fix up docstrings, follow new commenting conventions.
12723         (ses-header-line-menu): Fix missing variable rename for header-row.
12724         (ses-cell-size): Remove.
12725         (ses-make-cell): New function.
12726         (ses-cell, ses-insert-row, ses-insert-column): Use it.
12727         (ses-calculate-cell): Remove unused var `symbol'.
12728         (ses-narrowed-p): New function.
12729         (ses-goto-data, undo-more, ses-reconstruct-all): Use it.
12730         (ses-initial-file-trailer): Change ;;; to ;; for local vars.
12731         (ses-load, ses-reconstruct-all): Adjust string search accordingly.
12732         (ses-setup): Use restore-buffer-modified-p.
12733         (ses-cleanup): Remove unused var `end'.
12734         (ses-header-string-left-offset): Remove.
12735         (ses-create-header-string): Adjust to new behavior of `align-to'.
12736         Truncate excessively large fields to preserve alignment.
12737         (ses-reconstruct-all): Remove unused var `refs'.
12738         (ses-read-cell-printer): Remove unused var `prompt'.
12739         (ses-delete-row): Remove unused var `pos'.
12740         (ses-delete-column): Remove unused var `new'.
12742 2004-11-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12744         * ps-print.el: Insert :version tag into all defgroup and defcustom.
12745         Use (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
12746         Eliminate eval-and-compile usage.
12747         (ps-insert-file): Use insert-file-contents instead of insert-file.
12748         (ps-setup): Code fix.
12750         * printing.el (pr-setup, lpr-setup): Code fix.
12752 2004-11-21  Jay Belanger  <belanger@truman.edu>
12754         * calc/calc-prog.el (math-integral-cache-state, calc-lang)
12755         (calc-original-buffer): Declare them.
12756         (calc-user-formula-alist): New variable.
12757         (calc-user-define-formula, calc-fix-user-formula)
12758         (calc-user-define-composition, calc-finish-formula-edit):
12759         Replace variable `alist' by declared variable.
12760         (var-q0, var-q1, var-q2, var-q3, var-q4, var-q5, var-q6)
12761         (var-q7, var-q7, var-q8, var-q9): Declare them.
12762         (calc-kbd-push): Don't check to see if var-q0 through var-q9
12763         are bound.
12764         (calcFunc-typeof): Replace undeclared variable by expression.
12765         (math-exp-env): New variable.
12766         (math-define-body, math-define-exp): Replace exp-env by declared var.
12767         (math-define-exp): Replace misplaced variable by expression.
12769         * calc/calcalg3.el (calc-curve-nvars, calc-curve-varnames)
12770         (calc-curve-model, calc-curve-coefnames): New variables.
12771         (calc-curve-fit, calc-get-fit-variables): Replace variables nvars,
12772         varnames, model and coefnames by declared variables.
12773         (math-root-widen): New variable.
12774         (math-search-root, math-find-root): Replace variable root-widen by
12775         declared variable.
12776         (var-DUMMY): Declare it.
12777         (math-root-vars, math-min-vars): Move the declarations to earlier in
12778         the file.
12779         (math-brent-min): Make d a local variable.
12780         (math-find-minimum): Replace non-existent variable.
12781         (math-ninteg-romberg): Remove unnecessary variable.
12782         (math-ninteg-temp): New variable.
12783         (math-ninteg-romberg, math-ninteg-midpoint): Replace variable
12784         integ-temp by declared variable.
12785         (math-fit-first-var, math-fit-first-coef, math-fit-new-coefs):
12786         New variables.
12787         (math-general-fit): Replace variables first-var, first-coef and
12788         new-coefs by declared variables.
12789         (calcFunc-fitvar): Replace variable first-var by declared variable.
12790         (calcFunc-fitparam): Replace variable first-coef by declared variable.
12791         (calcFunc-fitdummy): Replace variable new-coefs by declared variable.
12792         (math-all-vars-vars, math-all-vars-found): New variables.
12793         (math-all-vars-in, math-all-vars-rec): Replace variables vars and
12794         found by declared variable math-all-vars-vars.
12796 2004-11-20  Luc Teirlinck  <teirllm@auburn.edu>
12798         * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead
12799         of `defconst'.
12801 2004-11-20  Richard M. Stallman  <rms@gnu.org>
12803         * isearch.el (isearch-mode-map): Don't bind SPC.
12804         (isearch-whitespace-chars): Function deleted.
12805         (isearch-search): Bind search-spaces-regexp.
12806         (isearch-lazy-highlight-search): Likewise.
12807         (search-whitespace-regexp): Doc fix.
12808         (isearch-forward-regexp): Doc fix.
12810         * emacs-lisp/bytecomp.el (byte-compile-form):
12811         Move the calls to byte-compile-set-symbol-position,
12812         to avoid having two for the same symbol occurrence.
12814         * comint.el (comint-input-ring-size): Increase to 150.
12816         * hexl.el (hexl-mode-old-hl-line-mode, hexl-mode-old-ruler-mode):
12817         New variables.
12818         (hexl-mode): Set those variables, record ruler-mode and hl-line-mode.
12819         (hexl-mode-exit): Restore status of ruler-mode and hl-line-mode.
12821         * imenu.el (imenu--generic-function):
12822         Ensure we keep moving backward even if BEG isn't further back.
12824         * replace.el (query-replace-read-to, query-replace-read-from):
12825         Specify t for KEEP-ALL in read-from-minibuffer.
12827         * progmodes/python.el (python-switch-to-python):
12828         If Python isn't running, start it.
12829         Don't alter debug-ignored-errors.
12831         * progmodes/cperl-mode.el (cperl-indent-region):
12832         Don't mind imenu-scanning-message.
12834         * bindings.el (global-map): Bind C-e to move-end-of-line.
12836         * simple.el (line-move-finish): New arg FORWARD.
12837         Ignore invisible newlines, not intangible ones.
12838         Conditions for acceptable stopping positions depend on FORWARD.
12839         (line-move): Pass FORWARD arg to line-move-finish.
12841         * buff-menu.el (list-buffers-noselect): Eliminate space at the start
12842         of HEADER.  Compensate for this change in the code to add display
12843         properties.  Don't make the first line intangible.
12845         * info.el (Info-search): Fix previous change.
12847 2004-11-20  Thien-Thi Nguyen  <ttn@gnu.org>
12849         * Makefile.in (recompile): Revert 2004-11-19 change.
12850         (compile): Likewise.
12852 2004-11-19  Luc Teirlinck  <teirllm@auburn.edu>
12854         * Makefile.in (compile): Set `max-specpdl-size' before compiling.
12856 2004-11-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12858         * progmodes/ebnf2ps.el: Fix typos.  Insert :version tag into all
12859         defgroup and defcustom.  Eliminate eval-and-compile usage.
12861         * progmodes/ebnf-otz.el: Fix typos.
12863 2004-11-19  Jay Belanger  <belanger@truman.edu>
12865         * calc/calc-yank.el (calc-edit-disp-trail): New variable.
12866         (calc-edit-finish, calc-finish-stack-edit): Replace variable
12867         disp-trail by declared variable.
12869         * calc/calc-sel.el (calc-edit-disp-trail): Declare it.
12870         (calc-finish-selection-edit): Replace variable disp-trail by
12871         declared variable.
12872         (calc-selection-cache-entry): Move declaration to earlier in the file.
12873         (calc-selection-cache-num, calc-selection-cache-comp)
12874         (calc-selection-cache-offset, calc-selection-true-num)
12875         (calc-final-point-line, calc-final-point-column)
12876         (calc-original-buffer): Declare them.
12877         (calc-fnp-op, calc-fnp-num): New variables.
12878         (calc-find-nth-part, calc-find-nth-part-rec)
12879         (calc-select-previous): Replace op and num by declared variables.
12880         (calc-rsf-old, calc-rsf-new): New variables.
12881         (calc-replace-sub-formula, calc-replace-sub-formula-rec):
12882         Replace variables old and new by declared variables.
12883         (calc-sel-reselect): New variable.
12884         (calc-auto-selection, calc-enter-selection, calc-edit-selection)
12885         (calc-sel-evaluate, calc-sel-expand-formula, calc-sel-expand-formula)
12886         (calc-sel-mult-both-sides, calc-sel-add-both-sides): Replace variable
12887         reselect with declared variable.
12889         * calc/calc-rewr.el (math-regs, math-num-regs, math-prog-last)
12890         (math-bound-vars, math-conds, math-copy-neg, math-rhs)
12891         (math-pattern, math-remembering, math-aliased-vars, math-mt-many)
12892         (math-import-list, math-rewrite-phase): Declare them.
12893         (math-rewrite): Use let* to declare variables.
12894         (calc-rewrite-selection): Make rules a local variable.
12895         (calc-rewr-sel): New variable.
12896         (calc-rewrite-selection, calc-locate-selection-marker)
12897         (calc-rewrite): Use the declared variable calc-rewr-sel instead
12898         of sel.
12899         (math-rewrite-whole-expr): New variable.
12900         (math-rewrite, math-rewrite-phase): Replace variable expr by
12901         declared variable.
12902         (math-rewrite-heads-heads, math-rewrite-heads-skips)
12903         (math-rewrite-heads-blanks ): New variables.
12904         (math-rewrite-heads, math-rewrite-heads-rec): Replace variables
12905         heads, skips and blanks by declared variables.
12906         (math-rwcomp-subst-old, math-rwcomp-subst-new)
12907         (math-rwcomp-subst-old-func, math-rwcomp-subst-new-func):
12908         New variables.
12909         (math-rwcomp-substitute, math-rwcomp-subst-rec): Replace variables
12910         old, new, old-func and new-func by declared variables.
12911         (math-rwcomp-assoc-args, math-rwcomp-addsub-args):
12912         Remove unnecessary variable.
12913         (math-apply-rw-regs): New variable.
12914         (math-apply-rewrites, math-rwapply-replace-regs)
12915         (math-rwapply-reg-looks-negp): Replace variable regs by declared var.
12916         (math-apply-rw-ruleset): New variable.
12917         (math-apply-rewrites, math-rwapply-remember): Replace variable
12918         ruleset by declared variable.
12920 2004-11-19  Richard M. Stallman  <rms@gnu.org>
12922         * info.el (Info-search): Use search-whitespace-regexp.
12924 2004-11-19  Thien-Thi Nguyen  <ttn@gnu.org>
12926         * vc-rcs.el (vc-rcs-parse): New function.
12927         (vc-rcs-annotate-command): Likewise.
12928         (vc-rcs-annotate-current-time): Likewise.
12929         (vc-rcs-annotate-time): Likewise.
12930         (vc-rcs-annotate-extract-revision-at-line): Likewise.
12932 2004-11-19  Thien-Thi Nguyen  <ttn@gnu.org>
12934         * Makefile.in (recompile): Set `max-specpdl-size' before compiling.
12936 2004-11-18  Jay Belanger  <belanger@truman.edu>
12938         * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary vars.
12940 2004-11-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12942         * printing.el: Eliminate use of interactive-p and eval-and-compile.
12943         Use of (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
12944         Use make-temp-file to generate PostScript files in any situation.
12945         (pr-ps-temp-file): Now specify a prefix to generate temporary files.
12946         (pr-interactive-p): Eliminate var.
12947         (pr-save-interactive): Eliminate macro.
12948         (pr-interface, pr-ps-directory-preview)
12949         (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
12950         (pr-ps-directory-ps-print, pr-ps-buffer-preview)
12951         (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
12952         (pr-ps-buffer-ps-print, pr-ps-region-preview)
12953         (pr-ps-region-using-ghostscript, pr-ps-region-print)
12954         (pr-ps-region-ps-print, pr-ps-mode-preview)
12955         (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
12956         (pr-printify-directory, pr-txt-directory, pr-despool-preview)
12957         (pr-despool-using-ghostscript, pr-despool-print, pr-despool-ps-print)
12958         (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
12959         (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
12960         (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
12961         (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
12962         (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
12963         (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
12964         (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
12965         (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
12966         (pr-update-menus, pr-interface-ps-prin, pr-interface-preview):
12967         Eliminate pr-save-interactive usage.
12968         (pr-menu-lock, pr-ps-utility-args, pr-set-outfilename):
12969         Eliminate pr-interactive-p usage.
12970         (pr-toggle-file-duplex-menu, pr-toggle-file-tumble-menu)
12971         (pr-toggle-file-landscape-menu, pr-toggle-ghostscript-menu)
12972         (pr-toggle-faces-menu, pr-toggle-spool-menu, pr-toggle-duplex-menu)
12973         (pr-toggle-tumble-menu, pr-toggle-landscape-menu)
12974         (pr-toggle-upside-down-menu, pr-toggle-line-menu, pr-toggle-zebra-menu)
12975         (pr-toggle-header-menu, pr-toggle-header-frame-menu)
12976         (pr-toggle-lock-menu, pr-toggle-region-menu, pr-toggle-mode-menu):
12977         New funs.
12978         (pr-ps-file): Use make-temp-file to generate a temporary file.
12980 2004-11-17  Jay Belanger  <belanger@truman.edu>
12982         * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder
12983         a local variable.
12984         (math-eval-rules-cache, math-eval-rules-cache-other): Declare them.
12985         (math-top-only): New variable.
12986         (math-simplify, math-simplify-step): Replace variable top-only by
12987         declared variable math-top-only.
12988         (math-simplify-expr): Declare it.
12989         Replace argument expr in all calls of math-defsimplify by
12990         math-simplify-expr.
12991         (math-simplify-plus, math-simplify-times, math-simplify-divide)
12992         (math-simplify-divisor, math-simplify-one-divisor)
12993         (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)
12994         (math-simplify-pow): Replace variable expr by declared variable
12995         math-simplify-expr.
12996         (math-simplify-divisor): Remove local variables temp and op.
12997         (math-simplify-one-divisor): Make temp and op local variables.
12998         (math-simplify-divisor-nover, math-simplify-divisor-dover):
12999         New variables.
13000         (math-simplify-divisor, math-simplify-one-divisor):
13001         Replace variables nover and dover by declared variables.
13002         (math-expr-subst-new, math-expr-subst-old): New variables.
13003         (math-expr-subst, math-expr-subst-rec): Replace variables new
13004         and old by declared variables.
13005         (math-is-poly-degree, math-is-poly-loose): New variables.
13006         (math-is-polynomial, math-is-poly-rec): Replace variables degree
13007         and loose by declared variables.
13008         (math-poly-base-const-ok, math-poly-base-pred): New variables.
13009         (math-polynomial-base, math-polynomial-base-rec):
13010         Replace variables const-ok and mpb-pred by declared variables.
13012         * calc/calc-poly.el (calc-poly-div-remainder): Declare it.
13014         * calc/calc-ext.el (math-defsimplify): Change the argument in
13015         the created function to math-simplify-expr.
13017         * calc/calc-units.el (math-simplify-expr): Declare it.
13018         Replace argument expr in all calls of math-defsimplify by
13019         math-simplify-expr.
13020         (math-simplify-units-prod): Replace variable expr by declared
13021         variable math-simplify-expr.
13023 2004-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13025         * buff-menu.el (list-buffers-noselect): Massage to fit in 80 columns.
13026         Replace mapcar->dolist, format->string.
13028 2004-11-17  Miles Bader  <miles@gnu.org>
13030         * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
13031         * progmodes/idlwave.el: Remove RCS keywords.
13033 2004-11-17  J.D. Smith  <jdsmith@as.arizona.edu>
13035         * progmodes/idlwave.el, progmodes/idlw-toolbar.el
13036         * progmodes/idlw-shell.el, progmodes/idlw-rinfo.el:
13037         Update to IDLWAVE version 5.5.  Too many changes to list them here.
13038         * progmodes/idlw-help.el: New file.
13040 2004-11-16  Richard M. Stallman  <rms@gnu.org>
13042         * international/iso-cvt.el (iso-tex2iso-trans-tab):
13043         Discard spaces after \i according to TeX rules.
13045         * international/mule.el (set-buffer-file-coding-system):
13046         New arg NOMODIFY.
13047         (after-insert-file-set-coding): Pass that new arg.
13048         Prevent set-buffer-multibyte from trying to lock the file.
13050         * buff-menu.el (list-buffers-noselect): New arg BUFFER-LIST.
13052         * saveplace.el (save-place): Doc fix.
13054         * dabbrev.el (dabbrev-expand): When handling SPC M-/,
13055         temporarily widen before finding the following word to copy.
13057         * emacs-lisp/lucid.el (map-keymap): Definition deleted.
13058         (cl-map-keymap): Definition deleted.
13060         * subr.el (map-keymap-internal): New function.
13062 2004-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13064         * textmodes/flyspell.el (flyspell-mouse-map): Pop the menu
13065         when pressing rather than when releasing mouse-2.  Simplify.
13067 2004-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13069         * progmodes/compile.el (compilation-setup): Don't set buffer-read-only.
13070         (compilation-mode): Set it here instead.
13072         * emacs-lisp/cl-compat.el (pair-with-newsyms): Use make-symbol.
13074         * emacs-lisp/cl-macs.el: Use make-symbol rather than gensym.
13075         (loop, cl-parse-loop-clause, defsetf): Use backquote.
13077 2004-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13079         * progmodes/compile.el (compilation-internal-error-properties):
13080         Fix up a transposition-typo.  Check end-col before using it.
13082 2004-11-14  Frederic Han  <han@math.jussieu.fr>  (tiny change)
13084         * international/iso-cvt.el (iso-tex2iso-trans-tab):
13085         Discard whitespace after macro \i when converting it.
13087 2004-11-16  Juri Linkov  <juri@jurta.org>
13089         * emacs-lisp/find-func.el (find-function-regexp):
13090         Optimize `define-minor-mode'.  Add `defun-cvs-mode'.
13091         Add `deffoo'.  Add `f' to [^cgv] to exclude `defface'.
13092         Remove invalid `\W' from [^cgv\W].  Doc fix.
13093         (find-function-search-for-symbol): Replace "\\>" with "\\_>".
13095 2004-11-15  Luc Teirlinck  <teirllm@auburn.edu>
13097         * play/life.el: Maintainer is now FSF.
13098         (life-patterns, life-neighbor-deltas, life-window-start)
13099         (life-current-generation, life-generation-string): Use defvar
13100         instead of defconst.
13102 2004-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13104         * progmodes/compile.el (compilation-move-to-column): New fun.
13105         (compilation-internal-error-properties)
13106         (compilation-next-error-function): Use it to make sure we don't go past
13107         the end of line.
13109 2004-11-15  John Paul Wallington  <jpw@gnu.org>
13111         * autoinsert.el (auto-insert-alist): Insert the user's name in
13112         copyright notice, rather than Free Software Foundation, for the
13113         Emacs Lisp header case too.
13115 2004-11-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13117         * printing.el (pr-ps-file-print, pr-toggle-duplex): Fix typos.
13118         Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
13119         (pr-switches-string): If SWITCHES is nil, return nil.  Otherwise,
13120         return the list of string in a string.
13121         (pr-call-process): Message if calling process returns an error, that
13122         is, the exit status is different of zero.
13124 2004-11-15  Jay Belanger  <belanger@truman.edu>
13126         * calc/calcalg2.el (math-integrate-by-parts): Remove unused
13127         variable var-thing.
13128         (math-integ-depth, math-integ-level, math-integral-limit)
13129         (math-enable-subst, math-any-substs, math-integ-msg)
13130         (math-prev-parts-v, math-good-parts, math-max-integral-limit)
13131         (math-int-threshold, math-int-factors, math-double-roots)
13132         (math-solve-simplifying, var-IntegLimit, math-solve-sign)
13133         (var-GenCount): Declare these variables.
13134         (calcFunc-integ): Don't check if var-IntegLimit is bound.
13135         (math-integral-cache, math-integral-cache-state):
13136         Move declarations to earlier in the file.
13137         (math-deriv-var, math-deriv-total, math-deriv-symb)
13138         (math-cur-record, math-has-rules, math-t1, math-t2, math-t3)
13139         (math-so-far, math-integ-expr, math-expr-parts, calc-low)
13140         (calc-high, math-solve-var, math-solve-full, math-solve-vars)
13141         (math-try-solve-sign, math-solve-b, math-solve-system-vv)
13142         (math-solve-res): New variables
13143         (math-derivative, calcFunc-deriv, calcFunc-tderiv)
13144         (math-integral, math-replace-integral-parts)
13145         (math-integrate-by-parts, calc-dump-integral-cache)
13146         (math-try-integral, math-do-integral, math-do-integral)
13147         (math-do-integral-methods, math-try-solve-for)
13148         (math-try-solve-prod, math-solve-poly-funny-powers)
13149         (math-solve-crunch-poly, math-decompose-poly)
13150         (math-solve-find-root-term, math-find-root-in-prod)
13151         (math-integ-try-linear-substitutions)
13152         (math-integ-try-substitutions, math-expr-rational-in)
13153         (math-expr-rational-in-rec, calcFunc-table, math-scan-for-limits)
13154         (math-solve-prod, math-solve-quartic, math-poly-all-roots)
13155         (math-solve-for, math-solve-system, math-solve-system-rec)
13156         (math-solve-get-sign, math-solve-get-int)
13157         (math-solve-system-subst): Replace undeclared variables with newly
13158         declared variables.
13160 2004-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13162         * winner.el (winner-active-region, winner-edges, winner-window-list):
13163         Define at toplevel.
13164         (winner-mode-map): Move init inside declaration.
13166 2004-11-14  Luc Teirlinck  <teirllm@auburn.edu>
13168         * files.el (convert-standard-filename): Doc fix.
13170 2004-11-14  Daniel Pfeiffer  <occitan@esperanto.org>
13172         * files.el (auto-mode-alist): Handle .gtkrc, and under /etc
13173         passwd, group, shadow, default/* and pam.d/*.
13175 2004-11-14  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13177         * printing.el (pr-menu-spec): Adjust menu specification.
13179 2004-11-13  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13181         * printing.el: Doc fix.  Insert :version tag into all defcustom.
13182         Handle interactive-p as is recommended in Emacs Lisp Reference.
13183         Set the file permission bits for newly created files.
13184         Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
13185         The printing menu specification (in `pr-menu-spec') was merged.
13186         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
13187         (pr-version): New version number (6.8.3).
13188         (pr-file-modes): New option.
13189         (pr-interactive-p): New var.
13190         (pr-save-interactive, pr-save-file-modes): New macros.
13191         (pr-setup): Code fix.
13192         (pr-menu-spec): Menu specification merged.
13193         (pr-call-process, pr-text2ps): Set file permission bits.
13194         (pr-despool-print): Set file permission bits.  Handle interactive-p as
13195         is recommended.
13196         (pr-interface, pr-ps-directory-preview)
13197         (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
13198         (pr-ps-directory-ps-print, pr-ps-buffer-preview)
13199         (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
13200         (pr-ps-buffer-ps-print, pr-ps-region-preview)
13201         (pr-ps-region-using-ghostscript, pr-ps-region-print)
13202         (pr-ps-region-ps-print, pr-ps-mode-preview)
13203         (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
13204         (pr-printify-directory, pr-txt-directory, pr-despool-preview)
13205         (pr-despool-using-ghostscript, pr-despool-ps-print)
13206         (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
13207         (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
13208         (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
13209         (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
13210         (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
13211         (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
13212         (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
13213         (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
13214         (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
13215         (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
13216         Handle interactive-p as is recommended.
13218 2004-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13220         * emacs-lisp/byte-opt.el (byte-optimize-inline-handler): Simplify.
13221         (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
13223         * font-lock.el (font-lock-fontify-syntactically-region): Fix last fix
13224         so it doesn't forget to highlight the beginning of the region either.
13226 2004-11-13  Daniel Pfeiffer  <occitan@esperanto.org>
13228         * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
13229         (c-font-lock-init): Eliminate obsolete make-local-hook.
13230         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
13231         (awk-mode): Use run-mode-hooks.
13233         * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
13235 2004-11-13  Kim F. Storm  <storm@cua.dk>
13237         * mouse.el (mouse-drag-copy-region): Add :version.
13238         (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
13239         while dragging mode line, so mode line can be dragged downwards.
13240         (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
13241         while pressing mouse button so window doesn't scroll until we
13242         release the mouse if clicking on partially visible line.
13244 2004-11-12  Jay Belanger  <belanger@truman.edu>
13246         * calc/calc-graph.el (calc-dumb-map): Declare it.
13247         (calc-graph-show-dumb): Check if calc-dumb-map is non-nil rather
13248         than unbound.
13249         (calc-graph-name): Made `end' a local variable.
13250         (calc-graph-lookup): Made `varname' a local variable.
13251         (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
13252         Declare them.
13253         (calc-graph-format-data): Don't check if var-PlotRejects is bound.
13254         (calc-graph-plot, calc-graph-compute-3d): Remove references to
13255         the unused variable y3vec.
13256         (calc-graph-show-dumb): Remove reference to unused variable found-pt.
13257         (calc-graph-kill-hook, calc-graph-plot): Remove reference to
13258         calc-graph-prev-kill-hook.
13259         (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps)
13260         (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec)
13261         (calc-graph-xname, calc-graph-yname, calc-graph-xstep)
13262         (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine)
13263         (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow)
13264         (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp)
13265         (calc-graph-zp, calc-graph-yvector, calc-graph-resolution)
13266         (calc-graph-y3value, calc-graph-y3name)
13267         (calc-graph-y3step, calc-graph-y3step, calc-graph-zval)
13268         (calc-graph-stepcount, calc-graph-is-splot)
13269         (calc-graph-surprise-splot, calc-graph-blank)
13270         (calc-graph-non-blank, calc-graph-curve-num): New variables.
13271         (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
13272         (calc-graph-recompute-2d, calc-graph-compute-3d)
13273         (calc-graph-format-data): Replace undeclared variables with the
13274         above newly declared variables.
13276 2004-11-12  Diane Murray  <dsm@muenster.de>  (tiny change)
13278         * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
13279         `rsf-beep' and `rsf-sleep-after-message'.
13281         * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
13282         list if `message-sender' is non-nil.
13284 2004-11-12  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
13286         * desktop.el (desktop-create-buffer, desktop-save): Avoid some
13287         consing by using mapc instead of mapcar.
13289 2004-11-12  Nick Roberts  <nickrob@snap.net.nz>
13291         * tooltip.el (require): Explain why CL is needed.
13293 2004-11-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13295         * printing.el: Insert :version into defgroup (printing).  All reference
13296         to Files option in menubar were changed to File.
13297         (pr-version): New version number (6.8.2).
13298         (pr-get-symbol): Call easy-menu-intern.
13299         (pr-region-active-p): Now is a fun (it was defsubst).  To avoid
13300         compilation gripes.
13302 2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13304         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
13305         new byte-compile-function-environment binding to t.
13307         * font-lock.el (font-lock-fontify-syntactically-region):
13308         Don't forget to highlight the last char when we hit `end'.
13310         * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
13311         (mwheel-scroll): Adjust accordingly.
13313         * cvs-status.el: Reduce spurious warnings.
13314         (cvs-status-checkout): Remove.
13315         (cvs-status-mode-map): Use cvs-mode-checkout instead.
13317         * pcvs.el (cvs-mode-checkout): New command.
13319         * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
13321         * tooltip.el: Require CL.
13323         * emacs-lisp/bytecomp.el: Use push.
13324         (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
13325         (defalias): Remove the `byte-compile' property and add
13326         a `byte-hunk-handler'.
13328 2004-11-11  Juri Linkov  <juri@jurta.org>
13330         * info.el (Info-search): Save match data for isearch.
13331         Skip Tag Table node.
13333         * descr-text.el (describe-char): Replace syntax-after with code
13334         from its previous version.
13336         * files.el (magic-mode-alist): Use optimization for SGML mode too.
13337         (set-auto-mode): Doc fix.  Remove unused variable `xml'.
13339         * international/mule.el (sgml-html-meta-auto-coding-function):
13340         Remove > after <html to allow HTML attributes.
13342 2004-11-11  Jay Belanger  <belanger@truman.edu>
13344         * calc/calc-comb.el (math-prime-factors-finished): Declare it as
13345         a variable.
13346         (calcFunc-dfac): Replace unbound max by n.
13347         (math-stirling-local-cache): New variable.
13348         (math-stirling-number, math-stirling-1, math-stirling-2):
13349         Replace the variable `cache' by the declared variable
13350         math-stirling-local-cache.
13351         (var-RandSeed): Declare it as a variable.
13352         (math-init-random-base, math-random-digit): Don't check to see if
13353         var-RandSeed is bound.
13354         (math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
13355         Declare them instead of just setting them.
13356         (math-init-random-base): Made i a local variable.
13357         (math-random-digit): Made math-random-last a local variable.
13358         (math-prime-test-cache): Move declaration to before it is used.
13359         (math-prime-test-cache-k, math-prime-test-cache-q)
13360         (math-prime-test-cache-nm1, math-prime-factors-finished):
13361         Declare them as variables.
13363 2004-11-11  Jay Belanger  <belanger@truman.edu>
13365         * calc/calc-ext.el (math-defcache): Use defvar for the new
13366         variables it creates.
13368 2004-11-11  Lars Hansen  <larsh@math.ku.dk>
13370         * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook)
13371         (desktop-clear-preserve-buffers-regexp, desktop-file-name-format)
13372         (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path)
13373         (desktop-save): Add :version.
13375 2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13377         * printing.el (pr-get-symbol): Don't downcase.
13379 2004-11-10  Jay Belanger  <belanger@truman.edu>
13381         * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append
13382         string to kill-ring.
13384         * calc/calc-aent.el (calc-alg-exp, math-toks)
13385         (math-exp-pos,math-exp-old-pos, math-exp-token)
13386         (math-exp-keep-spaces, math-exp-str): New variables.
13387         (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
13388         (calcAlg-enter): Use declared variable calc-alg-exp.
13389         (math-build-parse-table, math-find-user-token): Use declared
13390         variable math-toks.
13391         (math-read-exprs, math-read-token, calc-check-user-syntax)
13392         (calc-match-user-syntax, match-factor-after, math-read-factor):
13393         Use declared variables math-exp-pos math-exp-old-pos.
13394         (math-read-exprs, math-read-token, math-read-expr-level)
13395         (calc-check-user-syntax, calc-match-user-syntax)
13396         (match-factor-after, math-read-factor): Use declared variable
13397         math-exp-token.
13398         (math-read-exprs, math-read-expr-list, math-read-token)
13399         (math-read-factor): Use declared variable math-exp-keep-spaces.
13400         (math-read-exprs, math-read-token): Use declared variable
13401         math-exp-str.
13402         (calc-match-user-syntax): Make m a local variable.
13404         * calc/calc-ext.el (math-read-expr): Use declared variables
13405         math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
13406         math-exp-keep-spaces.
13408         * calc/calc-forms.el (math-read-angle-bracket): Use declared
13409         variables math-exp-pos, math-exp-str.
13411         * calc/calc-lang.el (math-parse-tex-sum): Use declared variable
13412         math-exp-old-pos.
13413         (math-parse-fortran-vector, math-parse-fortran-vector-end)
13414         (math-parse-eqn-prime): Use declared variable math-exp-token.
13416         * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
13417         Use declared variable math-exp-pos.
13418         (math-check-for-commas): Use declared variable math-exp-str.
13419         (math-read-brackets): Use declared variables math-exp-old-pos,
13420         math-exp-keep-spaces.
13421         (math-read-brackets, math-read-vector, math-read-matrix):
13422         Use declared variable math-exp-token.
13424 2004-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13426         * emacs-lisp/easymenu.el (easy-menu-define-key): Understand the case
13427         where the keymap is a symbol.
13428         (easy-menu-add-item): Use keymap-prompt.  Simplify.
13430         * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
13432         * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
13433         (sgml-parse-tag-backward): Use it to skip spurious < or >.
13435 2004-11-10  Thien-Thi Nguyen  <ttn@gnu.org>
13437         * ebuff-menu.el: Doc fixes throughout.
13438         (electric-buffer-menu-mode-hook): New defvar.
13440 2004-11-10  Nick Roberts  <nickrob@snap.net.nz>
13442         * tooltip.el: Don't require cl, comint, gud, gdb-ui for compilation.
13443         The resulting compiler warnings appear to be harmless.
13445 2004-11-10  Daniel Pfeiffer  <occitan@esperanto.org>
13447         * textmodes/conf-mode.el: New file.
13449         * files.el (auto-mode-alist, magic-mode-alist): Use it.
13451 2004-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13453         * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace.
13455 2004-11-09  Jay Belanger  <belanger@truman.edu>
13457         * calc/calc-ext.el (calc-init-extensions): Remove old code.
13459         * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func)
13460         (calc-z-prefix-buf, calc-z-prefix-msgs): New variables.
13461         (calc-z-prefix-help, calc-user-function-list): Use declared
13462         variables calc-z-prefix-buf, calc-z-prefix-msgs.
13463         (math-map-tree, math-map-tree-rec): Use declared variables
13464         math-mt-many, math-mt-func.
13465         (math-read-expression, math-read-string): Use declared variable
13466         math-expr-data.
13468         * calc/calc-ext.el (math-normalize-nonstandard): Use declared
13469         variable math-normalize-a.
13471         * calc/calc.el (math-normalize-a): New variable.
13472         (math-normalize): Use declared variable math-normalize-a.
13474         * calc/calc-poly.el (math-expand-form): Use declared variable
13475         math-mt-many.
13477         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
13478         Use declared variable math-mt-many.
13479         (math-rewrite): Use declared variable math-mt-func.
13481         * calc/calc-vec.el (math-read-brackets, math-read-vector)
13482         (math-read-matrix): Use declared variable math-expr-data.
13484         * calc/calc-lang.el (math-parse-fortran-vector)
13485         (math-parse-fortran-vector-end, math-parse-tex-sum)
13486         (math-parse-eqn-matrix, math-parse-eqn-prime)
13487         (math-read-math-subscr): Use declared variable math-expr-data.
13489         * calc/calc-aent.el (math-read-exprs, math-read-expr-list)
13490         (math-read-expr-level, math-read-token, calc-check-user-syntax)
13491         (calc-match-user-syntax, math-read-if, math-factor-after)
13492         (math-read-factor): Use declared variable math-expr-data.
13494 2004-11-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
13496         * calendar/diary-lib.el (diary-from-outlook)
13497         (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
13498         interactive-p; but rather new optional argument NOCONFIRM.
13500 2004-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13502         * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
13503         (easy-menu-name-match): Revert correspondingly.
13505 2004-11-09  Richard M. Stallman  <rms@gnu.org>
13507         * emacs-lisp/bytecomp.el (byte-compile-defalias):
13508         Turn off warnings for the new function even if definition not constant.
13509         If the definition isn't a quoted symbol, record (FUNCTION . t).
13510         (byte-compile-function-environment): Now allow (FUNCTION . t) as elt.
13511         (byte-compile-callargs-warn): Handle (FUNCTION . t).
13512         (display-call-tree, byte-compile-arglist-warn):
13513         Handle t returned by byte-compile-fdefinition.
13515 2004-11-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13517         * Makefile.in (maintainer-clean): Depend on distclean.
13519         * help-fns.el (help-C-file-name): File name must be in build-files
13520         to be returned.
13522 2004-11-09  Jay Belanger  <belanger@truman.edu>
13524         * calc/calc.el (calc-mode-hook, calc-trail-mode-hook)
13525         (calc-start-hook, calc-end-hook, calc-load-hook): New variables.
13527         * calc/calc.el (calc, calc-trail-display, calc-mode):
13528         Remove obsolete sections.
13530         * calc/calc.el (calc-x-paste-text): Remove.
13532         * calc/calc-ext.el (calc-init-extensions): Bind calc-yank to
13533         mouse-2.
13535 2004-11-09  Nick Roberts  <nickrob@snap.net.nz>
13537         * progmodes/gdb-ui.el (gdb-current-stack-level): New variable.
13538         (gdb-info-frames-custom, gdb-frame-handler): Use it to find
13539         current frame (in case of recursive calls).
13540         (gdb-show-changed-values): Add :version keyword.
13542 2004-11-09  Kenichi Handa  <handa@m17n.org>
13544         * international/mule-cmds.el: Change coding: tag back to
13545         iso-2022-7bit.
13547 2004-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13549         * international/mule-cmds.el: Change coding-system to utf-8.
13550         (select-safe-coding-system-interactively):
13551         New function extracted from select-safe-coding-system.
13552         (select-safe-coding-system): Use it.
13554 2004-11-08  Richard M. Stallman  <rms@gnu.org>
13556         * subr.el (syntax-after): Doc fix.
13558         * paren.el (show-paren-function): Change calls to syntax-after
13559         for new way of returning the value.
13561         * menu-bar.el (menu-bar-file-menu): Make this the real name
13562         and menu-bar-files-menu the alias.  Use the former.
13563         (global-map): Use `file', not `files', as the symbol.
13565         * info.el (Info-revert-find-node): Don't use beginning-of-buffer.
13567         * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd):
13568         Don't use beginning-of-buffer.
13569         (filesets-cmd-show-result): Use with-no-warnings.
13571 2004-11-08  Juri Linkov  <juri@jurta.org>
13573         * progmodes/compile.el (compile): Don't overwrite last command in
13574         minibuffer history with default command if they are not equal.
13576 2004-11-08  Jay Belanger  <belanger@truman.edu>
13578         * calc/calcalg2.el (math-do-integral-methods): Try linear then
13579         non-linear substitutions.
13581 2004-11-08  Jay Belanger  <belanger@truman.edu>
13583         * calc/calcalg2.el (math-linear-subst-tried): New variable.
13584         (math-do-integral): Set `math-linear-subst-tried' to nil.
13585         (math-do-integral-methods): Use `math-linear-subst-tried' to
13586         determine what type of substitution to try.
13587         (math-integ-try-linear-substituion):
13588         Set `math-linear-subst-tried' to t.
13590 2004-11-08  Kim F. Storm  <storm@cua.dk>
13592         * Makefile.in (bootstrap-clean): New target for 'make bootstrap'.
13594 2004-11-07  Juri Linkov  <juri@jurta.org>
13596         * info-look.el (info-lookup): Allow reusing in the current buffer
13597         not only *info* buffer, but all (even renamed) Info buffers
13598         by checking for major-mode instead of *info* buffer name.
13599         (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
13600         (octave-mode, maxima-mode) <doc-spec>:
13601         Allow long dashes generated by Texinfo 4.7 before definitions.
13602         (texinfo-mode) <doc-spec>: Add space to suffix to find command
13603         definitions with argument separated by space.
13605 2004-11-06  Richard M. Stallman  <rms@gnu.org>
13607         * simple.el (next-error group, face): Move before first use.
13608         (next-error-highlight, next-error-highlight-no-select): Likewise.
13610         * simple.el (line-move-invisible-p): Rename from line-move-invisible.
13611         (line-move): New args NOERROR and TO-END.
13612         Return t if succeed in moving specified number of lines.
13613         (move-end-of-line): New function.
13615         * simple.el (beginning-of-buffer-other-window): Use with-no-warnings.
13616         (end-of-buffer-other-window): Likewise.
13618         * simple.el (line-move-ignore-invisible): Default to t.
13620         * subr.el (syntax-after): Return the syntax letter, not the raw code.
13622         * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer.
13624         * international/iso-cvt.el (iso-cvt-define-menu):
13625         Rename menu-bar-files-menu to menu-bar-file-menu.
13627         * net/browse-url.el (browse-url-gnome-moz-program)
13628         (browse-url-gnome-moz-arguments): Move up before first use.
13630         * net/tramp.el (tramp group): Add :version.
13632         * progmodes/ada-xref.el (ada-gdb-application):
13633         Use goto-char instead of beginning-of-buffer.
13635         * progmodes/cperl-mode.el (cperl-info-on-command):
13636         Use goto-char instead of beginning-of-buffer.
13638         * progmodes/idlw-shell.el (idlwave-shell-examine-map):
13639         Move up before first use.
13640         (idlwave-shell-temp-pro-file): Likewise.
13641         (idlwave-shell-temp-rinfo-save-file): Likewise.
13642         (idlwave-shell-temp-file): Minor doc fix.
13644         * textmodes/flyspell.el (flyspell-external-point-words):
13645         Use goto-char instead of beginning-of-buffer.
13647 2004-11-06  Kai Grossjohann  <kai.grossjohann@gmx.net>
13649         * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o
13650         /dev/stdout" before trying "uudecode -o -".  Suggested by Han Boetes.
13651         (tramp-uudecode): Mention `uudecode -o /dev/stdout'.
13653 2004-11-06  David Ponce  <david@dponce.com>
13655         * recentf.el (recentf-menu-path): Use menu item name.
13657 2004-11-06  Eli Zaretskii  <eliz@gnu.org>
13659         * progmodes/gdb-ui.el: Don't call define-fringe-bitmap if the
13660         display doesn't support images.
13662 2004-11-06  Andreas Schwab  <schwab@suse.de>
13664         * tempo.el (tempo-match-finder): Doc fix.
13666         * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
13668 2004-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13670         * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
13671         (easy-menu-lookup-name): New fun to replace it.
13672         (easy-menu-get-map): Use it to obey menu item names (rather than just
13673         keys) when looking up `path'.
13674         (easy-menu-always-true-p): Rename from easy-menu-always-true.
13675         (easy-menu-convert-item-1): Adjust to new name.
13677 2004-11-06  Peter Heslin  <pj@heslin.eclipse.co.uk>  (tiny change)
13679         * outline.el (hide-body): Don't hide lines at the top of the file
13680         that precede the first header line.
13682 2004-11-06  Paul Pogonyshev  <pogonyshev@gmx.net>
13684         * align.el (align-areas): Delete whitespace before reindenting, so
13685         that tabs are never placed after spaces.
13687 2004-11-06  Alan Shutko  <ats@acm.org>
13689         * macros.el (insert-kbd-macro): Do completions based on macros,
13690         rather than all commands.
13692 2004-11-06  David Hansen  <david.hansen@gmx.net>  (tiny change)
13694         * tempo.el (tempo-match-finder): Use [:word:] instead of "^\\b",
13695         to solve a bug whereby tags with 'b' don't match.
13697 2004-11-05  Juri Linkov  <juri@jurta.org>
13699         * info.el (Info-search): Don't search in node header lines
13700         and file headers.
13702         * emacs-lisp/edebug.el (edebug-next-token-class): Allow all
13703         symbol-constituent characters after dot, not only digits.
13705 2004-11-04  Daniel Pfeiffer  <occitan@esperanto.org>
13707         * files.el (set-auto-mode): Don't get error after setting -*-mode-*-.
13709 2004-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13711         * dired.el (dired-read-dir-and-switches): Call read-directory-name
13712         if a dialog will be used, read-file-name otherwise.
13714 2004-11-04  Richard M. Stallman  <rms@gnu.org>
13716         * textmodes/table.el (table group): Add :version.
13718         * textmodes/ispell.el (ispell-word):
13719         Don't alter args; set them only thru `interactive' spec.
13721         * textmodes/flyspell.el (flyspell-word):
13722         Don't alter FOLLOWING; set it only thru `interactive' spec.
13724         * progmodes/f90.el (f90-end-of-block): Don't use interactive-p.
13726         * net/browse-url.el (browse-url-maybe-new-window):
13727         Use called-interactively-p.
13729         * mail/supercite.el (sc-cite-region):
13730         Don't use interactive-p.  Add arg INTERACTIVE.
13731         (sc-version): Don't use interactive-p.  Rename arg to MESSAGE.
13733         * international/mule-cmds.el (set-input-method, toggle-input-method):
13734         Don't use interactive-p.  Add arg INTERACTIVE.
13736         * eshell/esh-mode.el (eshell-show-maximum-output):
13737         Don't use interactive-p.
13738         (eshell-truncate-buffer): Just message, no error, if buffer is short.
13740         * mouse.el (mouse-show-mark): Get positions to delete from mark
13741         and point, not from mouse-drag-overlay.
13743         * imenu.el (imenu-eager-completion-buffer): Add :version.
13745         * filesets.el (filesets group): Add :version.
13747 2004-11-03  Daniel Pfeiffer  <occitan@esperanto.org>
13749         * files.el (xml-based-modes): Delete var.
13750         (magic-mode-alist): New more general var.
13751         (set-auto-mode): Use it.
13753         * buff-menu.el (Buffer-menu-make-sort-button): Preserve point even
13754         when clicking from another window.
13756 2004-11-03  Thien-Thi Nguyen  <ttn@gnu.org>
13758         * vc-cvs.el (vc-cvs-local-month-numbers): Delete var.
13759         (vc-cvs-annotate-time): Incorporate value of deleted var.
13760         Remove special-case handling of beginning-of-buffer cruft.
13761         Cache ending position (point) and return value in text property
13762         `vc-cvs-annotate-time', and consult it on subsequent invocations.
13764         * vc-cvs.el (vc-cvs-annotate-command):
13765         Delete extraneous lines from beginning of buffer.
13766         * vc-mcvs.el (vc-mcvs-annotate-command): Likewise.
13768         * progmodes/grep.el (grep-default-command): Take empty string
13769         for tag if all other methods yield nil.  Shell-quote the tag.
13771         * vc.el (vc-annotate-display-autoscale): Add prefix-arg
13772         spec in `interactive' form, and mention it in the docstring.
13773         Also, make sure point is at bol after calling `annotate-time'.
13775 2004-11-02  Richard M. Stallman  <rms@gnu.org>
13777         * cus-edit.el (customize-group-other-window):
13778         Select the window that displays the custom buffer.
13779         (custom-buffer-create-other-window): Likewise.
13781         * comint.el (comint-insert-input): Fix previous change.
13783         * emacs-lisp/elp.el (elp-instrument-function):
13784         Use called-interactively-p.
13786         * emacs-lisp/easymenu.el (easy-menu-intern):
13787         Don't downcase; rather, case-flip the first letter of each word.
13789         * emacs-lisp/easy-mmode.el (define-minor-mode):
13790         Use called-interactively-p.
13792         * emacs-lisp/bytecomp.el (byte-compile-warning-types):
13793         Add interactive-only.
13794         (byte-compile-warnings): Add interactive-only as option.
13795         (byte-compile-interactive-only-functions): New variable.
13796         (byte-compile-form): Warn about calls to functions
13797         in byte-compile-interactive-only-functions.
13799         * emacs-lisp/autoload.el (update-file-autoloads):
13800         Don't use interactive-p; take new arg SAVE-AFTER.
13802         * emacs-lisp/advice.el (ad-make-advised-definition):
13803         Use called-interactively-p.
13805 2004-11-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13807         * files.el (find-file-existing): New function.
13809         * menu-bar.el (menu-bar-files-menu): Make "Open File..." call
13810         find-file-existing.  Add "New File..." that calls find-file.
13812         * diropen.pbm, diropen.xpm: New files.
13814         * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
13815         icon diropen.  New tool bar item find-file-existing uses icon open.
13817         * dired.el (dired-read-dir-and-switches): Call read-directory-name
13818         instead of read-file-name.
13820 2004-11-02  Ulf Jasper  <ulf.jasper@web.de>
13822         * calendar/icalendar.el (icalendar-version): Increase to 0.08.
13823         (icalendar--split-value): Change name of work buffer.
13824         (icalendar--get-weekday-abbrev): Return nil on error.
13825         (icalendar--date-to-isodate): New function.
13826         (icalendar-convert-diary-to-ical)
13827         (icalendar-extract-ical-from-buffer): Use only two args for
13828         make-obsolete (XEmacs compatibility).
13829         (icalendar-export-file, icalendar-import-file): Blank at end of prompt.
13830         (icalendar-export-region): Doc fix.
13831         If error, return non-nil and write errors to a buffer.
13832         Use correct weekday for weekly recurring events.
13833         Check whether date has been parsed for ordinary events.
13834         Make weekly events start in the year 2000.
13835         DTEND is non-inclusive, shift end date by one day if
13836         necessary (not for entries that have date and time).
13837         Rename local let variables: oops -> found-error, datestring ->
13838         startdatestring.
13840 2004-11-02  Kim F. Storm  <storm@cua.dk>
13842         * files.el (set-auto-mode-0): Don't rely on dynamic binding of
13843         keep-mode-if-same variable.  Add it as optional arg instead.
13844         (set-auto-mode): Call set-auto-mode-0 with keep-mode-if-same.
13846         * ehelp.el (electric-help-map): Reorder Q/q and R/r entries so
13847         substitute-command-keys will select lower-case bindings like those
13848         used in the static help texts.
13850         * descr-text.el (describe-text-properties): Don't err if called in
13851         the *Help* buffer; output to *Help-2* buffer instead.
13853         * kmacro.el (group kmacro): Add :version.
13854         (kmacro-keyboard-quit): New function to cleanup on C-g.
13855         (kmacro-start-macro): Set defining-kbd-macro to append when
13856         appending to last macro.
13858         * simple.el (keyboard-quit): Call kmacro-keyboard-quit.
13860 2004-11-02  Nick Roberts  <nickrob@snap.net.nz>
13862         * progmodes/gdb-ui.el (gdb-enable-debug-log)
13863         (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
13864         (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
13865         Add :version keyword.
13867 2004-11-02  Pavel Kobiakov  <pk_at_work@yahoo.com>
13869         * progmodes/flymake.el (flymake-err-line-patterns):
13870         Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
13871         `compilation-error-regexp-alist-alist' to internal Flymake format.
13873         * progmodes/flymake.el: Eliminate byte-compiler warnings.
13875 2004-11-01  Jay Belanger  <belanger@truman.edu>
13877         * calc/calc-frac.el (calc-over-notation): Replace `completing-read'
13878         with `interactive "s"'.
13880 2004-11-01  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13882         * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
13883         Revert change from 2004-10-16.  '*' checks the current buffer, but the
13884         mouse click may be in another buffer.
13886 2004-11-01  John Paul Wallington  <jpw@gnu.org>
13888         * files.el (large-file-warning-threshold): Add :version keyword.
13889         (kill-some-buffers): Doc fix.
13891         * thumbs.el (group thumbs): Add :version keyword.
13893         * textmodes/bibtex.el (bibtex-make-field): Fix typo.
13895 2004-11-01  Richard M. Stallman  <rms@gnu.org>
13897         * textmodes/ispell.el (ispell-word): Don't use interactive-p.
13899         * textmodes/flyspell.el (flyspell-word): Don't use interactive-p.
13901         * allout.el (allout group): Add :version.
13902         (allout-init): Don't use interactive-p.
13903         (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
13904         (allout-forward-current-level, allout-backward-current-level):
13905         Don't use interactive-p.
13907         * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
13908         (bibtex-find-text): Likewise.
13910         * progmodes/vhdl-mode.el (vhdl-fill-region)
13911         (vhdl-beginning-of-statement): Don't use interactive-p.
13913         * progmodes/idlwave.el (idlwave-update-routine-info):
13914         Don't use interactive-p.
13916         * progmodes/idlw-shell.el (idlwave-shell-send-char):
13917         Don't use interactive-p.
13919         * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
13920         Don't use interactive-p.
13922         * progmodes/ada-xref.el (ada-make-body-gnatstub):
13923         Don't use interactive-p.
13925         * play/fortune.el (fortune-to-signature): Don't use interactive-p.
13926         (fortune-in-buffer): Doc fix.
13928         * play/5x5.el (5x5-new-game): Set up the buffer even if not
13929         interactive.
13931         * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
13932         don't select the temporary buffer.
13933         (eudc-get-email): New optional arg ERROR; don't use interactive-p.
13934         (eudc-get-phone): Likewise.
13936 2004-11-01  Kim F. Storm  <storm@cua.dk>
13938         * man.el (Man-xref-normal-file): Fix help-echo.
13940 2004-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
13942         * reveal.el (reveal-last-tick): New var.
13943         (reveal-post-command): Use it to avoid closing overlays when we're
13944         appending text to them.
13946 2004-10-31  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
13948         * textmodes/bibtex.el: Require button.
13949         (bibtex-autokey-transcriptions): Translate TeX `\ ' to space.
13950         (bibtex-reference-keys): Distinguish between header keys and
13951         crossref keys.
13952         (bibtex-beginning-of-field): New function.
13953         (bibtex-url-map): Remove.
13954         (bibtex-font-lock-keywords): Use bibtex-font-lock-crossref.
13955         (bibtex-font-lock-url-regexp): Assume that field names begin at
13956         the beginning of a line.
13957         (bibtex-font-lock-url): Simplify.  Do not use bibtex-enclosing-field.
13958         Remove field delimiters.  Use bibtex-beginning-of-field.
13959         Bugfix, point can be inside a field with a url.
13960         (bibtex-font-lock-crossref, bibtex-button-action, bibtex-button):
13961         New functions.
13962         (bibtex-mark-active, bibtex-run-with-idle-timer): Remove.
13963         (bibtex-key-in-head): Simplify.
13964         (bibtex-current-line): Use bolp.
13965         (bibtex-parse-keys): Remove unused arg `add'.
13966         Use bibtex-type-in-head and bibtex-key-in-head.
13967         (bibtex-parse-entry, bibtex-autofill-entry):
13968         Use bibtex-type-in-head and bibtex-key-in-head.
13969         (bibtex-autokey-get-field): Do not alter case of replacement text.
13970         (bibtex-autokey-get-names): Do all processing of name list.
13971         (bibtex-autokey-get-year): New function.
13972         (bibtex-autokey-get-title): Do all processing of title words.
13973         (bibtex-generate-autokey): Simplify.
13974         (bibtex-string-files-init): Use default-directory.
13975         Allow for absolute file names in bibtex-string-files.
13976         (bibtex-files, bibtex-file-path): New variables.
13977         (bibtex-files-expand): New function.
13978         (bibtex-find-entry-globally): New command.
13979         (bibtex-summary-function): New variable.
13980         (bibtex-summary): Default value of bibtex-summary-function.
13981         (bibtex-find-crossref): New optional args pnt and split.
13982         (bibtex-complete-key-cleanup): Call bibtex-summary-function.
13983         (bibtex-copy-summary-as-kill): New command bound to C-cC-t.
13984         (bibtex-validate): Fix docstring.  Check only abbreviated month fields.
13985         Fix handling of required and alternative fields.
13986         Identify duplicate keys even if bibtex-maintain-sorted-entries is nil.
13987         Use cons and display-buffer.
13988         (bibtex-validate-globally): New command.
13989         (bibtex-clean-entry): Use bibtex-files-expand.  Do not call
13990         bibtex-parse-keys and bibtex-parse-strings for updating
13991         bibtex-reference-keys and bibtex-strings.
13992         (bibtex-realign): Remove blank lines past the last entry.
13993         (bibtex-reformat): Use bibtex-entry-format as default.
13994         (bibtex-choose-completion-string): Remove.
13995         (bibtex-complete): Do not use bibtex-choose-completion-string.
13996         (bibtex-url): Simplify.
13998 2004-10-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14000         * x-dnd.el (x-dnd-test-function, x-dnd-protocol-alist)
14001         (x-dnd-types-alist, x-dnd-open-file-other-window)
14002         (x-dnd-known-types): Add :version.
14004 2004-10-31  John Paul Wallington  <jpw@gnu.org>
14006         * ibuffer.el (group ibuffer): Add :version keyword.
14008 2004-10-31  Kim F. Storm  <storm@cua.dk>
14010         * ido.el (group ido): Add :version keyword.
14011         (ido-mode): Remove :version keyword.
14013         * emulation/cua-base.el (group cua): Add :version keyword.
14014         (cua-mode): Remove :version keyword.
14016 2004-10-30  Luc Teirlinck  <teirllm@auburn.edu>
14018         * autorevert.el (auto-revert-tail-mode-text): Add :version keyword.
14020         * help-at-pt.el (help-at-pt-timer): Move defvar up to avoid
14021         compiler warning.
14022         (help-at-pt-timer-delay): Add :initialize keyword.  Simplify :set
14023         function.
14024         (help-at-pt-display-when-idle): Remove autoload.
14026 2004-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14028         * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook.
14030 2004-10-30  Juri Linkov  <juri@jurta.org>
14032         * help.el (function-called-at-point):
14033         * help-fns.el (variable-at-point): Read -> intern.
14035 2004-10-30  Simon Josefsson  <jas@extundo.com>
14037         * progmodes/autoconf.el (autoconf-font-lock-keywords):
14038         Recognize AS_* too.
14040 2004-10-29  Simon Josefsson  <jas@extundo.com>
14042         * subr.el (read-passwd): Move back from password.el.
14044         * password.el: Remove, not ready yet.
14046 2004-10-29  Andreas Schwab  <schwab@suse.de>
14048         * speedbar.el (speedbar-frame-parameters): Improve customize type.
14050 2004-10-29  Sam Steingold  <sds@gnu.org>
14052         * mouse.el (mouse-show-mark): Replace the last occurrence of
14053         x-lost-selection-hooks with x-lost-selection-functions.
14055 2004-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14057         * mouse.el (mouse-show-mark): Adjust to new name and don't assume
14058         x-lost-selection-functions is bound.
14060         * mouse-sel.el (mouse-sel-mode):
14061         * emacs-lisp/lselect.el: Adjust to new names for
14062         x-(lost|sent)-selection-functions.
14064         * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
14065         New obsolete aliases of x-lost-selection-functions and
14066         x-sent-selection-functions.
14068 2004-10-28  Kim F. Storm  <storm@cua.dk>
14070         * imenu.el (imenu-scanning-message): Remove.
14071         (imenu-progress-message): Make it a no-op.
14073 2004-10-28  John Paul Wallington  <jpw@gnu.org>
14075         * files.el (set-auto-mode): Call `throw' correctly.
14077 2004-10-28  Juri Linkov  <juri@jurta.org>
14079         * info.el (Info-file-list-for-emacs): Add ("Info" . "info")
14080         to search `Info-...' commands in `info' manual.
14081         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
14082         Add 'info-file "emacs" property.
14083         (Info-find-emacs-command-nodes): Fix index line number regexp.
14084         Set real line number (instead of fake 0) in first element of the
14085         returned list.
14086         (Info-goto-emacs-command-node): Use line number of first element
14087         to set point in the first found Info node.
14089         * progmodes/grep.el (grep-regexp-alist): Move match highlighting
14090         code to `grep-mode-font-lock-keywords'.
14091         (grep-mode-font-lock-keywords): Delete grep markers instead
14092         of making them invisible.
14094 2004-10-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14096         * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
14097         and x-server-version in bug report.
14099 2004-10-28  Daniel Pfeiffer  <occitan@esperanto.org>
14101         * files.el (set-auto-mode-0): New function.
14102         (set-auto-mode): Use it to handle aliased modes and to
14103         be consistent between C-x C-f and C-x C-w.
14105 2004-10-28  Kenichi Handa  <handa@m17n.org>
14107         * international/utf-8.el (utf-translate-cjk-charsets):
14108         Add katakana-jisx0201.
14110         * international/subst-jis.el: Add data for JISX0201.
14112 2004-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14114         * obsolete/hilit19.el (hilit-mode): New function.
14115         Move all the toplevel side-effecting stuff into it, so that loading
14116         hilit19 doesn't mess everything up any more.
14118 2004-10-27  Richard M. Stallman  <rms@gnu.org>
14120         * add-log.el (add-change-log-entry): Set up mailing address
14121         and full name later, and don't alter add-log-mailing-address
14122         or add-log-full-name.
14124         * elide-head.el (elide-head): Change error to message.
14125         (elide-head-show): Likewise.
14127         * apropos.el (apropos-macrop): Doc fix.
14129         * mouse.el (mouse-show-mark): Do most processing the same
14130         regardless of transient-mark-mode.
14132         * shadowfile.el (shadow-copy-files): Use interactive-p
14133         only to control whether to print a message.
14135         * tar-mode.el (tar-mode): Use write-contents-functions,
14136         not write-contents-hooks.
14138         * eshell/em-unix.el (eshell-du-sum-directory): Don't use
14139         directory-sep-char.
14141 2004-10-27  Richard M. Stallman  <rms@gnu.org>
14143         * strokes.el (strokes-unload-hook): Fix previous change.
14145         * type-break.el (type-break-run-at-time): Always use run-at-time;
14146         forget the alternatives.
14147         (type-break-cancel-function-timers): Always use cancel-function-timers;
14148         forget the alternatives.
14150         * pcomplete.el (pcomplete-entries): Don't use directory-sep-char.
14152 2004-10-27  Kenichi Handa  <handa@m17n.org>
14154         * international/subst-jis.el: Use utf-translate-cjk-substitutable-p.
14156         * international/subst-gb2312.el: Likewise.
14158         * international/subst-big5.el: Likewise.
14160         * international/subst-ksc.el: Likewise.
14162         * international/utf-8.el (utf-translate-cjk-unicode-range-string):
14163         New variable.
14164         (utf-translate-cjk-set-unicode-range): New function.
14165         (utf-translate-cjk-unicode-range): Make it customizable.
14166         (utf-8-post-read-conversion):
14167         Use utf-translate-cjk-unicode-range-string.
14168         (ccl-decode-mule-utf-8): Check utf-subst-table-for-decode for more
14169         Unicode ranges.
14171 2004-10-26  Daniel Pfeiffer  <occitan@esperanto.org>
14173         * files.el (auto-mode-alist): Add pod, js, xbm and xpm and group
14174         trivial variants to shorten the list.
14175         (xml-based-modes): New var.
14176         (set-auto-mode): Give interpreter-mode-alist or <?xml or <!DOCTYPE
14177         declaration higher priority than auto-mode-alist.
14179         * find-file.el (cc-other-file-alist): Bring it in line with
14180         cc-mode's auto-mode-alist entries and use \' instead of $.
14182         * textmodes/sgml-mode.el (sgml-mode): Fix imenu-generic-expression
14183         and add "Id" and "Name" submenus to it.
14185         * imenu.el (imenu--generic-function): Skip matches in comments.
14187 2004-10-26  Jay Belanger  <belanger@truman.edu>
14189         * calc/calc.el (calc,full-calc, calc-quit, calc-keypad)
14190         (full-calc-keypad, calc-trail-display): Use an extra argument
14191         instead of `interactive-p'.
14193         * calc/calc-misc.el (calc-other-window): Use an extra argument
14194         instead of `interactive-p'.
14196         * calc/calc-rewr.el (calc-match): Use an extra argument instead of
14197         `interactive-p'.
14199 2004-10-26  Kim F. Storm  <storm@cua.dk>
14201         * help.el (describe-key): Describe both down-event and up-event
14202         for a mouse click.
14204 2004-10-26  Richard M. Stallman  <rms@gnu.org>
14206         * woman.el (woman): Don't call interactive-p.
14208         * pcomplete.el (pcomplete): Instead of interactive-p,
14209         use an arg set non-nil by the interactive spec.
14211         * menu-bar.el (menu-bar-make-toggle): Instead of interactive-p,
14212         use an arg set non-nil by the interactive spec.
14214         * man.el (Man-cleanup-manpage): Instead of interactive-p,
14215         use an arg set non-nil by the interactive spec.
14217 2004-10-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
14219         * progmodes/flymake.el (flymake-split-string):
14220         Use `flymake-split-string-remove-empty-edges' in any case.
14222 2004-10-26  Masatake YAMATO  <jet@gyve.org>
14224         * progmodes/flymake.el (flymake-err-line-patterns):
14225         Use `compilation-error-regexp-alist-alist' instead of
14226         `compilation-error-regexp-alist'.
14228 2004-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14230         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Fix up the spurious
14231         verbatim face on the \ of \end{verbatim}.
14233 2004-10-25  Jay Belanger  <belanger@truman.edu>
14235         * calc/calc-incom.el (calc-digit-dots): Inhibit read-only before
14236         erasing minibuffer.
14238 2004-10-25  Simon Josefsson  <jas@extundo.com>
14240         * subr.el (read-passwd): Move to net/password.el.
14242         * net/password.el (read-passwd): Add.  Autoload it.
14244 2004-10-25  Kai Grossjohann  <kai.grossjohann@gmx.net>
14246         * mouse-sel.el (mouse-sel-mode): Specify custom group.
14248         * simple.el (process-file): Fix logic.
14250 2004-10-24  Luc Teirlinck  <teirllm@auburn.edu>
14252         * indent.el (set-left-margin, set-right-margin): Delete redundant code.
14253         (increase-right-margin): Remove erroneous call to `interactive-p'.
14255 2004-10-24  Kim F. Storm  <storm@cua.dk>
14257         * help.el (describe-mode): Fix 2004-10-13 change.
14258         Copy pure "Auto Fill" string so it can be propertized later
14259         without causing a read-only error.
14261 2004-10-24  Luc Teirlinck  <teirllm@auburn.edu>
14263         * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
14264         style indexes.
14266 2004-10-24  Kai Grossjohann  <kai.grossjohann@gmx.net>
14268         * simple.el (process-file): Accept nil for INFILE.  Reported by
14269         Luc Teirlinck.
14271 2004-10-24  Masatake YAMATO  <jet@gyve.org>
14273         * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
14274         Handle periods and underscores in a function name.
14275         Remove the address fontification.
14277 2004-10-24  Masatake YAMATO  <jet@gyve.org>
14279         * progmodes/asm-mode.el (asm-font-lock-keywords):
14280         Use font-lock-variable-name-face for registers.
14282 2004-10-24  Nick Roberts  <nickrob@snap.net.nz>
14284         * progmodes/gdb-ui.el (gdb-get-create-buffer): Allow modes to run
14285         kill-all-local-variables.
14286         (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
14287         (gdb-registers-mode, gdb-locals-mode, gdb-assembler-mode):
14288         Use kill-all-local-variables and provide mode-hooks.
14289         (gdb-assembler-font-lock-keywords): New font lock keywords definition.
14290         (gdb-assembler-mode): Use 'gdb-assembler-font-lock-keywords'.
14291         Suggested by Masatake YAMATO <jet@gyve.org>.
14293 2004-10-23  Kai Grossjohann  <kai.grossjohann@gmx.net>
14295         * simple.el (process-file): New function, similar to call-process
14296         but supports file handlers.
14297         * vc.el (vc-do-command): Use it, instead of call-process.
14298         * net/tramp-vc.el (vc-do-command): Do not advise it if
14299         process-file is fboundp.
14300         * net/tramp.el (tramp-file-name-handler-alist): Add entry for
14301         process-file.
14302         (tramp-handle-process-file): New function.
14303         (tramp-file-name-for-operation): Support process-file.
14305 2004-10-23  Ulf Jasper  <ulf.jasper@web.de>
14307         * calendar/icalendar.el (icalendar--weekday-array): New constant.
14308         (icalendar-weekdayabbrev-table)
14309         (icalendar-monthnumber-table): Delete.
14310         (icalendar--get-month-number): Use calendar-month-name-array.
14311         (icalendar--get-weekday-number): New function.
14312         (icalendar--get-weekday-abbrev) Use calendar-day-name-array.
14313         (icalendar-export-region): Handle multi-line entries.
14314         (icalendar--convert-ical-to-diary): Use calendar-day-name-array.
14316 2004-10-23  John Paul Wallington  <jpw@gnu.org>
14318         * ibuffer.el (ibuffer-find-file): Remove `interactive-p' call;
14319         `wildcards' set to t in interactive spec.
14321         * ibuf-ext.el (ibuffer-jump-to-buffer): Read buffer name in
14322         interactive spec rather than use `interactive-p'.
14323         (ibuffer-kill-line): Set arg `interactive-p' in interactive spec
14324         rather than use function `interactive-p'.
14326 2004-10-22  Kenichi Handa  <handa@m17n.org>
14328         * international/mule.el (translate-region): Implement it in Lisp
14329         as a front end of translate-region-internal.
14331 2004-10-21  Jay Belanger  <belanger@truman.edu>
14333         * calc/calc-aent.el (calc-alg-ent-map, calc-alg-ent-esc-map):
14334         Declare these variables with defvar.
14336         * calc/calc-aent.el (calc-do-alg-entry): Since `calc-alg-ent-map'
14337         is bound, only check to see if it is bound.
14339 2004-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14341         * textmodes/tex-mode.el (tex-compilation-parse-errors):
14342         Don't output messages.
14344         * calc/calc-help.el (calc-describe-bindings): Fix last change.
14346 2004-10-21  John Paul Wallington  <jpw@gnu.org>
14348         * calc/calc-graph.el (calc-graph-init):
14349         Use `set-process-query-on-exit-flag'.
14351 2004-10-21  Daniel Pfeiffer  <occitan@esperanto.org>
14353         * progmodes/compile.el (compilation-start): Rely on `cd' to get
14354         dir right and also allow argumentless cd.
14356 2004-10-19  Richard M. Stallman  <rms@gnu.org>
14358         * textmodes/flyspell.el (flyspell-mode): Doc fix.
14360         * eshell/em-unix.el (eshell-grep):
14361         Don't bind compilation-process-setup-function.
14363         * comint.el (comint-insert-input): Use @ in `interactive'.
14364         (comint-input-filter-functions): Doc fix.
14365         (comint-kill-whole-line, comint-get-source): Doc fix.
14367         * progmodes/compile.el (compilation-setup):
14368         Don't set buffer-read-only if MINOR is non-nil.
14370 2004-10-19  Jay Belanger  <belanger@truman.edu>
14372         * calc/calc.el (calc-emacs-type-19, calc-emacs-type-epoch)
14373         (calc-emacs-type-gnu19): Remove.
14374         (calc-digit-map, calc-read-key-sequence, calc-read-key):
14375         Remove check for old emacs versions.
14377         * calc/calc-ext.el (calc-fancy-prefix): Remove emacs version check.
14378         (calc-init-extensions): Define `calc-alg-map' and `calc-alg-esc-map'
14379         for current Emacs.
14381         * calc/calc-aent.el (calcAlg-previous): Check to see if looking at
14382         the end of the minibuffer.
14383         (calc-do-alg-entry): Remove Emacs version check.  Use `copy-keymap' to
14384         copy `esc-map'.
14386         * calc/calc-graph.el (calc-graph-plot): Remove emacs version check.
14388         * calc/calc-mode.el (calc-total-algebraic-mode): Remove error
14389         call that would be given when the current emacs was used.
14391 2004-10-19  Ulf Jasper  <ulf.jasper@web.de>
14393         * calendar/icalendar.el: Set coding to utf-8.
14394         (icalendar-version): Increase to 0.07.
14395         (icalendar-monthnumber-table): Change March pattern.
14396         (icalendar-get-all-event-properties)
14397         (icalendar-set-event-property): Delete.
14398         (icalendar-all-events): No longer interactive.
14399         (icalendar-convert-diary-to-ical)
14400         (icalendar-extract-ical-from-buffer): Make obsolete, and alias to
14401         their replacements.
14402         (icalendar-export-file, icalendar-export-region): New functions;
14403         essentially old `icalendar-convert-diary-to-ical' but appending to
14404         target rather than overwriting.
14405         (icalendar-import-file): Append to target file rather than
14406         overwriting.  Fourth arg deleted.
14407         (icalendar-import-buffer): New name for old
14408         `icalendar-extract-ical-from-buffer'.
14409         (icalendar--convert-string-for-import): New name for
14410         old `icalendar-convert-for-import'.
14411         (include-icalendar-files): Delete.
14412         Prefix for all internal functions changed from `icalendar-'
14413         to `icalendar--'.
14415 2004-10-19  Richard M. Stallman  <rms@gnu.org>
14417         * paths.el (news-path): Fix previous change.
14419 2004-10-18  Jay Belanger  <belanger@truman.edu>
14421         * calc/calc-help.el (calc-describe-bindings):
14422         Set `buffer-read-only' to nil while working in the keybindings buffer;
14423         remove some extra information from the keybindings buffer.
14425 2004-10-18  David Ponce  <david@dponce.com>
14427         * mouse.el (mouse-drag-move-window-top): New function.
14428         (mouse-drag-mode-line-1): Use it.
14430 2004-10-18  Thien-Thi Nguyen  <ttn@gnu.org>
14432         * info.el (Info-fontify-node): For multiline refs,
14433         arrange to unfontify newline and surrounding whitespace.
14435 2004-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14437         * vc-arch.el (vc-arch-workfile-version): Don't burp if the patch-log
14438         directory is missing.
14440 2004-10-17  John Paul Wallington  <jpw@gnu.org>
14442         * ibuffer.el (ibuffer-default-display-maybe-show-predicates):
14443         New customizable variable; whether to display buffers that match
14444         `ibuffer-maybe-show-predicates' by default.
14445         (ibuffer-maybe-show-predicates): Mention it in docstring.
14446         (ibuffer-display-maybe-show-predicates): New variable.
14447         (ibuffer-update): Prefix arg now toggles whether buffers that
14448         match `ibuffer-maybe-show-predicates' should be displayed.
14449         (ibuffer-mode): Set `ibuffer-display-maybe-show-predicates'
14450         locally to heed `ibuffer-default-display-maybe-show-predicates'.
14451         (ibuffer-redisplay-engine): Rename optional second arg to `ignore'.
14453 2004-10-17  Michael Albinus  <michael.albinus@gmx.de>
14455         * net/tramp.el: Redo sync with Tramp 2.0.45.  Last commit did not
14456         work correctly.
14458 2004-10-17  Daniel Pfeiffer  <occitan@esperanto.org>
14460         * buff-menu.el (Buffer-menu-revert-function): Emulate save-excursion.
14461         (Buffer-menu-beginning): New helper function.
14462         (Buffer-menu-execute): Use it.
14463         (Buffer-menu-select): Use it.
14464         (Buffer-menu-sort): Use it and also keep markers.
14466 2004-10-17  Richard M. Stallman  <rms@gnu.org>
14468         * paths.el (news-directory): Rename from news-path.  Old name alias.
14469         (rmail-spool-directory): Use defvar.
14470         (sendmail-program): Use defcustom.
14471         (remote-shell-program): Use defcustom.
14472         (term-file-prefix): Use defvar.
14473         (abbrev-file-name): Use defvar.
14475         * term.el: Add maintainer.
14477         * subr.el (with-local-quit): Return nil if there's a quit.
14478         (read-passwd): Use with-local-quit.  Doc fix.
14480         * strokes.el (strokes-list-strokes): Don't try to delete char at eob.
14481         (strokes-unload-hook): Set as a variable with add-hook.
14483         * startup.el (fancy-splash-tail, normal-splash-screen):
14484         Update copyright year.
14486         * shadowfile.el (shadowfile-unload-hook): Set as variable w/ add-hook.
14488         * server.el (server-unload-hook): Set as a variable with add-hook.
14490         * help-at-pt.el (help-at-pt-unload-hook): Use add-hook; no defvar.
14492         * frame.el (special-display-popup-frame):
14493         Make the buffer current as its frame is created.
14495         * delsel.el (delsel-unload-hook): Set as a variable.
14497         * comint.el (comint-output-filter-functions):
14498         Add comint-watch-for-password-prompt.
14499         (comint-read-noecho): Function deleted.
14500         (send-invisible): Use read-passwd.
14502         * fringe.el (fringe-mode-initialize): New function.
14503         (fringe-mode): Use fringe-mode-initialize as :initialize.
14505 2004-10-17  Kim F. Storm  <storm@cua.dk>
14507         * language/indian.el (indian-script-language-alist): Swap value
14508         and doc.
14509         (indian-font-char-index-table): Doc fix.
14511 2004-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14513         * vc-hooks.el (vc-find-file-hook): Call vc-backend with absolute name.
14515 2004-10-16  Juri Linkov  <juri@jurta.org>
14517         * progmodes/compile.el (compilation-start): Move let-binding of
14518         `process-environment' into `with-current-buffer' body.
14519         Reported by Matt Hodges <MPHodges@member.fsf.org>.
14521 2004-10-16  Richard M. Stallman  <rms@gnu.org>
14523         * pcvs-util.el (cvs-bury-buffer):
14524         Don't call get-buffer-window for effect.
14526         * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
14528         * newcomment.el (comment-auto-fill-only-comments): Add autoload.
14530         * msb.el (msb-unload-hook): Set the variable.
14532         * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
14533         Use * to err if buffer is readonly.
14535         * subr.el (looking-back): Return only t or nil.
14537         * whitespace.el (whitespace-unload-hook): Set the variable.
14539         * view.el (view-mode-enable): Set view-page-size and
14540         view-half-page-size to nil.
14541         (view-set-half-page-size-default): view-half-page-size = nil
14542         means the default.
14543         (View-scroll-page-forward): Use view-page-size-default.
14544         (View-scroll-page-backward): Likewise.
14545         (view-page-size, view-half-page-size): Doc fixes.
14547         * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
14549         * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
14551         * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
14552         "cl" like other files.  Instead, call byte-compile-find-cl-functions.
14553         (byte-compile-log-1): Bind inhibit-read-only.
14554         (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
14555         (byte-compile-log-warning): Likewise.
14556         (byte-compile-file-form-require): Detect "cl" from the arg value.
14558         * progmodes/compile.el (compilation-start): Assume compilation-mode
14559         will make the buffer read-only.
14560         (compilation-mode): Take arg name-of-mode.
14561         (compilation-setup): Make buffer read-only.
14562         (compilation-handle-exit): Bind inhibit-read-only.
14564         * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
14565         (ispell-message): Likewise.
14566         (ispell-show-choices): Don't call get-buffer-window uselessly.
14567         (ispell-init-process): Use set-process-query-on-exit-flag.
14569 2004-10-16  Kim F. Storm  <storm@cua.dk>
14571         * fringe.el (fringe-bitmaps): Only initialize when defined.
14573         * pcvs.el (cvs-mode-view-file, cvs-mode-view-file-other-window): Add.
14574         (cvs-mode-find-file): Add optional `view' arg to enter view mode.
14576         * pcvs-defs.el (cvs-mode-map): Bind v to cvs-mode-view-file.
14578 2004-10-15  Simon Josefsson  <jas@extundo.com>
14580         * net/password.el: Add.
14582 2004-10-14  Masatake YAMATO  <jet@gyve.org>
14584         * progmodes/gud.el (gdb-script-beginning-of-defun): New function.
14585         (gdb-script-end-of-defun): New function.
14586         (gdb-script-mode): Use `gdb-script-beginning-of-defun' and
14587         `gdb-script-end-of-defun' as *-of-defun-function.
14589 2004-10-13  Daniel Pfeiffer  <occitan@esperanto.org>
14591         * button.el (button-activate): Allow a marker to display as an action.
14593         * help-fns.el (describe-variable): Use it to make "below" a hyperlink.
14595         * help.el (describe-mode): Use it to make minor mode list into
14596         hyperlinks.
14598 2004-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14600         * vc.el (vc-annotate-display-select): Fix typo.
14602         * subr.el (substitute-key-definition-key): New function.
14603         (substitute-key-definition): Use it with map-keymap.
14604         (event-modifiers): Use push.
14605         (mouse-movement-p, with-temp-buffer): Simplify.
14607 2004-10-12  Jay Belanger  <belanger@truman.edu>
14609         * calc/calc-help.el (calc-help-function-list, calc-help-variable-list):
14610         New variables.
14611         (calc-help-index-entries): New function.
14612         (calc-describe-function): Use `calc-help-function-list' instead of
14613         obarray for completion.
14614         (calc-describe-variable): Use `calc-help-variable-list' instead
14615         of obarray for completion.
14617 2004-10-12  Richard M. Stallman  <rms@gnu.org>
14619         * info-look.el (info-lookup-file): Add info-file property.
14620         (info-lookup-symbol): Likewise.
14622         * info.el (info-xref): Add underlining.
14623         (info): Add info-file property.
14624         (Info-find-emacs-command-nodes): Specify case-sensitive search.
14626 2004-10-12  Michael Albinus  <michael.albinus@gmx.de>
14628         Sync with Tramp 2.0.45.
14630         * net/tramp.el (top): Apply `def-edebug-spec' only if function is
14631         defined.  This is not the case for XEmacs without package "edebug".
14632         (tramp-set-auto-save-file-modes): Set permissions of autosaved
14633         remote files to the permissions of the original file.  This is not
14634         the case for Emacs < 21.3.50 and XEmacs < 21.5.  Add function to
14635         `auto-save-hook'.  Reported by Thomas Prokosch <thomas@nadev.net>.
14636         (tramp-perl-decode): Fix an error in Perl implementation.
14637         $pending must be cleared every loop.  Reported by Benjamin Place
14638         <benjaminplace@sprintmail.com>
14640         * net/tramp-smb.el (tramp-smb-advice-PC-do-completion):
14641         Don't activate advice during definition.  This is done later on,
14642         depending on test result of `substitute-in-file-name'.
14643         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
14645 2004-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14647         * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message.
14649         * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating.
14651 2004-10-12  David Ponce  <david@dponce.com>
14653         * recentf.el (recentf-edit-list): Update the menu when the recentf
14654         list has been modified.
14656 2004-10-12  Simon Josefsson  <jas@extundo.com>
14658         * net/tls.el (tls-certtool-program): New variable.
14659         (tls-certificate-information): New function, based on
14660         ssl-certificate-information.
14662 2004-10-12  Kenichi Handa  <handa@m17n.org>
14664         * international/mule.el (coding-system-equal): Move from mule-util.el.
14666         * international/mule-util.el (coding-system-equal): Move to mule.el.
14668 2004-10-12  Kim F. Storm  <storm@cua.dk>
14670         * kmacro.el (kmacro-insert-counter, kmacro-add-counter): Use and
14671         reset kmacro-initial-counter-value if set.
14672         (kmacro-set-counter): Only set kmacro-counter if defining or executing
14673         macro.  Set kmacro-initial-counter-value otherwise.  Never set both.
14674         (kmacro-display): Show macro counter if non-zero.
14676         * subr.el (substitute-key-definition): Mention command remapping
14677         in doc string.
14679 2004-10-11  Jay Belanger  <belanger@truman.edu>
14681         * calc/calc-misc.el (calc-info-goto-node): New function.
14682         (calc-tutorial, calc-info-summary): Go to appropriate Calc info
14683         node in one step.
14684         (calc-describe-copying, calc-describe-distribution)
14685         (calc-describe-thing, calc-describe-no-warranty, calc-describe-key):
14686         Go to appropriate info node in one step.
14688 2004-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14690         * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var.
14692         * font-lock.el (font-lock-apply-highlight): Fix last change.
14694 2004-10-11  Simon Josefsson  <jas@extundo.com>
14696         * mail/smtpmail.el (smtpmail-open-stream): Look for
14697         starttls-gnutls-program instead of starttls-program iff
14698         starttls-use-gnutls is non-nil.
14699         (smtpmail-open-stream): Don't overwrite user settings of
14700         starttls-extra-arguments and starttls-extra-args.
14702 2004-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14704         * comint.el (comint-mouse-insert-input): Remove.
14705         (comint-insert-input): Make it work for mouse bindings.
14706         (comint-mode-map): Move defs into the declaration.
14707         (comint-output-filter): Typo.
14709         * diff-mode.el (diff-current-defun): Fix 2004-06-13's change.
14711 2004-10-10  Kai Grossjohann  <kai.grossjohann@gmx.net>
14713         * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable.
14714         (ange-ftp-call-chmod): Reference remote-shell-program instead of
14715         ange-ftp-remote-shell.
14717 2004-10-10  Andreas Schwab  <schwab@suse.de>
14719         * emacs-lisp/byte-opt.el (byte-optimize-backward-word): Optimize
14720         `(backward-word)' to `(forward-word -1)', not `(forward-char -1)'.
14721         Reported by <sri@asu.edu>.
14723 2004-10-10  Benjamin Rutt  <brutt@bloomington.in.us>
14725         * vc.el (vc-annotate-mode): Remove variable.
14726         (vc-annotate-display-select): Only call vc-annotate-mode
14727         if we're not in that mode already.
14729 2004-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
14731         * imenu.el (imenu--completion-buffer): Don't return t for rescan.
14732         (imenu-choose-buffer-index): Check here for rescan instead.
14734         * font-lock.el (font-lock-apply-highlight): Explicitly check the case
14735         where the face expression evals to nil.
14737         * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun.
14738         (tex-font-lock-keywords-2): Use it.
14739         (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment.
14741         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes.
14743 2004-10-09  Kim F. Storm  <storm@cua.dk>
14745         * subr.el (progress-reporter-update): Define before first usage.
14746         (make-progress-reporter): Doc fix.
14748 2004-10-09  Luc Teirlinck  <teirllm@auburn.edu>
14750         * textmodes/paragraphs.el (sentence-end-double-space)
14751         (sentence-end-without-period, sentence-end-without-space)
14752         (sentence-end): Doc fixes.
14754 2004-10-08  Peter Seibel  <peter@javamonkey.com>  (tiny change)
14756         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
14757         Change paragraph-start regexp so we don't fill code starting with #'(.
14759 2004-10-08  Sebastien Kirche  <seki@seki.fr>  (tiny change)
14761         * mail/mail-extr.el (mail-extr-ignore-realname-equals-mailbox-name):
14762         New defcustom.
14763         (extract-address-components): Use it.
14765 2004-10-08  Paul Pogonyshev  <pogonyshev@gmx.net>
14767         * subr.el (make-progress-reporter, progress-reporter-update)
14768         (progress-reporter-force-update, progress-reporter-do-update)
14769         (progress-reporter-done): New functions.
14771         * tar-mode.el (tar-summarize-buffer): Use progress reporter.
14773         * progmodes/etags.el (etags-tags-completion-table): Use progress
14774         reporter.
14775         (etags-tags-apropos): Likewise.
14777 2004-10-08  Alan Mackenzie  <acm@muc.de>
14779         * isearch.el (isearch-yank-line): C-y yanks to next EOL, not end
14780         of current line.
14782 2004-10-08  Masatake YAMATO  <jet@gyve.org>
14784         * server.el (server-process-filter): Wrap `process-send-region'
14785         by `condition-case' to guard the case when the pipe to PROC is closed.
14787 2004-10-07  Mark A. Hershberger  <mah@everybody.org>
14789         * xml.el (xml-substitute-special): Limit handling of external entities.
14791 2004-10-06  Nick Roberts  <nickrob@snap.net.nz>
14793         * progmodes/gdb-ui.el (gdb-ann3): (Re-)initialize gdb-input-queue.
14795 2004-10-06  John Paul Wallington  <jpw@gnu.org>
14797         * xml.el (xml-parse-dtd): Fix `error' call.
14799 2004-10-05  Mark A. Hershberger  <mah@everybody.org>
14801         * xml.el (xml-substitute-special): Return a single string instead
14802         of a list of strings if an entity substitution is made.
14804 2004-10-05  Ulf Jasper  <ulf.jasper@web.de>
14806         * calendar/icalendar.el: New file.
14808 2004-10-05  Juri Linkov  <juri@jurta.org>
14810         * isearch.el (isearch-done): Set mark after running hook.
14811         Reported by Drew Adams <drew.adams@oracle.com>.
14813         * info.el (Info-history, Info-toc): Fix Info headers.
14814         (Info-toc): Narrow buffer before Info-fontify-node.
14815         (Info-build-toc): Don't check for special Info file names.
14816         Set main-file to nil if Info-find-file returns a symbol.
14818 2004-10-05  Emilio C. Lopes  <eclig@gmx.net>
14820         * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
14821         (calendar-mode-map): Add binding for `calendar-goto-iso-week'.
14822         * calendar/cal-menu.el (calendar-mode-map): Ditto.
14824 2004-10-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
14826         * calendar/cal-iso.el (calendar-iso-read-args): New function,
14827         for old interactive spec from calendar-goto-iso-date.
14828         (calendar-goto-iso-date): Use it.
14829         (calendar-goto-iso-week): New function.  Suggested by Emilio
14830         C. Lopes <eclig@gmx.net>.
14832 2004-10-04  Luc Teirlinck  <teirllm@auburn.edu>
14834         * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and
14835         `set-right-margin' bindings that follow the minor mode conventions.
14837 2004-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14839         * textmodes/tex-mode.el (tex-dvi-view-command): Use `yap' on w32.
14840         (tex-font-lock-keywords-1): Add url and nolinkurl for args with `_'.
14841         (latex-block-args-alist): Add minipage and picture.
14842         (latex-block-body-alist): Use reftex-label if enabled.
14843         (latex-insert-block): Don't insert a \n if not necessary.
14844         (tex-compile-commands): Make sure dvips doesn't send to printer.
14845         (tex-compile-default): Handle the case where no executable is found.
14846         (latex-noindent-environments): New var.
14847         (latex-find-indent): Use it.  Take an empty line as an arg-breaker.
14848         If tex-indent-allhanging is non-nil, make sure we only align for macros
14849         at beginning of line.
14851 2004-10-03  Daniel Pfeiffer  <occitan@esperanto.org>
14853         * newcomment.el (comment-beginning): Doc fix and don't choke on
14854         unset `comment-end-skip' when at beginning of comment.
14856 2004-10-02  Dan Nicolaescu  <dann@ics.uci.edu>
14858         * term.el (term-adjust-current-row-cache): Don't allow the current
14859         row to become negative.
14860         (term-emulate-terminal): Fix insert mode.  Handle tab insertion at
14861         the end of the line.  Fix scroll down.  Add comments.
14862         (term-handle-ansi-escape): Don't exceed terminal width when moving
14863         right.
14864         (term-scroll-region): Move the cursor after setting the scroll region.
14866 2004-10-01  Luc Teirlinck  <teirllm@auburn.edu>
14868         * indent.el (set-left-margin, set-right-margin): Rename `lm' arg
14869         to `width' for consistency with docstring.  Doc fix.
14871 2004-10-01  Martin Stjernholm  <bug-cc-mode@gnu.org>
14873         * progmodes/cc-langs.el: Load cl here since cc-defs doesn't do it.
14874         This is necessary for derived modes.
14876 2004-09-30  Kim F. Storm  <storm@cua.dk>
14878         * kmacro.el (kmacro-lambda-form, kmacro-extract-lambda): Add.
14879         (kmacro-bind-to-key, kmacro-name-last-macro): Use kmacro-lambda-form.
14881         * edmacro.el: Require kmacro to use the new kmacro-lambda-form and
14882         kmacro-extract-lambda functions.
14883         (edit-kbd-macro): Handle kmacro lambda forms.
14884         Include counter and counter format in edit buffer.
14885         (edmacro-finish-edit): Get counter and format from edit buffer and
14886         update kmacro bindings when found.
14888 2004-09-29  Luc Teirlinck  <teirllm@auburn.edu>
14890         * textmodes/paragraphs.el (forward-paragraph):
14891         Avoid args-out-of-range error when point winds up at the beginning of
14892         the buffer and hard newlines are enabled.
14894         * newcomment.el (comment-multi-line): Doc fix.
14896 2004-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14898         * diff-mode.el (diff-file-header-re): Tighten up regexp a tiny bit.
14899         (diff-fixup-modifs): Catch unified-diff file-headers.
14901 2004-09-29  Kim F. Storm  <storm@cua.dk>
14903         * progmodes/gdb-ui.el (breakpoint): Define as fringe bitmap.
14904         (gdb-mouse-toggle-breakpoint): Fix fringe-bitmaps-at-pos usage.
14905         (gdb-put-breakpoint-icon): Use breakpoint bitmap.
14907         * fringe.el (fringe-bitmap-p): New macro.
14908         (fringe-bitmaps): Add standard fringe bitmaps on load.
14910 2004-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14912         * dired.el (dired-view-command-alist): Use more efficient regexps.
14913         Remove dubious arguments.
14914         (dired-align-file): New function.
14915         (dired-insert-directory): Use it.
14916         (dired-move-to-end-of-filename): Make the " -> " search more specific.
14917         (dired-buffers-for-dir): Remove unused var `pattern'.
14919 2004-09-28  Matthew Mundell  <matt@mundell.ukfsn.org>
14921         * calendar/diary-lib.el (list-diary-entries): Save diary buffer
14922         from diary display excursion.  Store diary buffer's point for
14923         `simple-diary-display'.
14924         (simple-diary-display): Set window point and start when
14925         displaying buffer, to preserve point.
14927 2004-09-27  Luc Teirlinck  <teirllm@auburn.edu>
14929         * textmodes/enriched.el (enriched-translations): Replace defconst
14930         with defvar.
14932 2004-09-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
14934         * printing.el: Doc fix.
14935         (pr-version): New version number (6.8.1).
14936         (pr-ps-file-using-ghostscript): Use make-temp-file instead of
14937         make-temp-name.
14938         (pr-delete-file): Check if file exists before deleting it.
14939         Reported by Lennart Borgman <lennart.borgman.073@student.lu.se>.
14941 2004-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14943         * term.el (term-display-table): New variable.
14944         (term-mode): Use it.
14945         (term-exec-1): Set the coding system to binary.
14946         (term-emulate-terminal): Decode the string before inserting it.
14948 2004-09-26  Dan Nicolaescu  <dann@ics.uci.edu>
14950         * term.el (term-ansi-at-eval-string, term-ansi-default-fg)
14951         (term-ansi-default-bg, term-ansi-current-temp): Delete unused vars.
14952         (map): Bind S-prior, S-next and S-insert.
14953         (term-mode): Set `indent-tabs-mode' to nil.
14954         (term-paste): New function to be bound to S-insert.
14955         (term-send-del, term-send-backspace): Change the strings sent.
14956         (term-termcap-format): Synchronize with etc/e/eterm.ti.
14957         (term-handle-colors-array): Fix handling of underline and reverse.
14958         (term-handle-ansi-escape): Do not handle smcup/rmcup.  Add comments.
14959         (term-erase-in-line): Fix comparison.
14960         (term-emulate-terminal): Fix line wrap handling.
14961         (term-start-output-log): Rename from `term-set-output-log'.
14962         (term-stop-output-log): Rename from `term-stop-photo'.
14963         (term-switch-to-alternate-sub-buffer): Comment out, unused.
14965 2004-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14967         * dired.el (dired-move-to-filename): Don't output a message if
14968         raise-error is non-nil.  Fix return position and value.
14970         * files.el (insert-directory): Obey --dired even with symlinks.
14972 2004-09-25  Lars Hansen  <larsh@math.ku.dk>
14974         * ls-lisp.el (ls-lisp-format): Mark file names with property
14975         dired-filename.
14977 2004-09-25  Kim F. Storm  <storm@cua.dk>
14979         * ido.el (ido-max-directory-size): New defcustom.
14980         (ido-decorations): Add "too big" element.
14981         (ido-directory-too-big): New dynamic var.
14982         (ido-may-cache-directory): Don't cache big directories.
14983         (ido-directory-too-big-p): New defun.
14984         (ido-set-current-directory): Update ido-directory-too-big.
14985         (ido-read-internal): Make empty ido-cur-item if too-big.
14986         (ido-buffer-internal): Use ido-read-internal directly instead of
14987         ido-read-buffer.
14988         (ido-file-internal): Init ido-directory-too-big.
14989         (ido-complete): <TAB> If ido-directory-too-big is set, clear it,
14990         and redo completion with full list.
14991         (ido-toggle-ignore): <C-a> If ido-directory-too-big is set, clear
14992         it, and show completions.
14993         (ido-all-completions): Let bind ido-directory-too-big to nil.
14994         (ido-exhibit): Handle ido-directory-too-big.
14995         (ido-read-buffer): Handle fallback to read-buffer.
14996         Init ido-directory-too-big.
14997         (ido-read-file-name, ido-read-directory-name, ido-completing-read):
14998         Init ido-directory-too-big.
15000 2004-09-24  Luc Teirlinck  <teirllm@auburn.edu>
15002         * subr.el (delay-mode-hooks): Doc fix.
15004 2004-09-23  Luc Teirlinck  <teirllm@auburn.edu>
15006         * textmodes/enriched.el
15007         (enriched-default-text-properties-local-flag): New variable.
15008         (enriched-mode): Make sure that enabling and disabling the mode is
15009         a no-op.  Doc fix.
15011 2004-09-23  H\e,Ae\e(Bkon Malmedal  <hmalmedal@yahoo.no>  (tiny change)
15013         * calendar/holidays.el (holiday-advent): Report on a specified day
15014         offset from advent, not just advent.
15015         (holiday-easter-etc): Report on one specified day offset from
15016         easter, not all easter holidays.  Various Easter holidays moved to
15017         `christian-holidays' variable in calendar.el.
15018         * calendar/calendar.el (christian-holidays): Adapt for new
15019         behavior of `holiday-advent' and `holiday-easter-etc' functions.
15021 2004-09-23  Kim F. Storm  <storm@cua.dk>
15023         * image.el (insert-sliced-image): Add doc string.
15025         * ido.el (ido-choice-list): New dynamic var for `list' context.
15026         (ido-context-switch-command): New dynamic var.
15027         (ido-define-mode-map): Generalize switch between file/buffer contexts.
15028         (ido-read-internal): Handle new `list' context.
15029         Handle insert-buffer and insert-file ido-exit values.
15030         (ido-buffer-internal): New arg switch-cmd.  Use it to setup
15031         ido-context-switch-command.  Handle insert-file ido-exit value.
15032         (ido-read-buffer): Set ido-context-switch-command to 'ignore
15033         unless it is already bound by caller.
15034         (ido-file-internal): New arg switch-cmd.  Use it to setup
15035         ido-context-switch-command.  Handle insert-buffer ido-exit value.
15036         (ido-enter-insert-buffer, ido-enter-insert-file): New commands
15037         used for context switching.
15038         (ido-all-completions): Handle new `list' context.
15039         (ido-make-choice-list): Return choices for `list' context.
15040         (ido-find-file-in-dir, ido-display-file, ido-write-file)
15041         (ido-display-buffer, ido-kill-buffer): Disable context switching.
15042         (ido-insert-buffer, ido-insert-file): Setup context switching.
15043         (ido-exhibit): Handle `list' context.
15044         (ido-read-file-name): Disable context switching.  Handle fallback.
15045         (ido-read-directory-name): Disable context switching.
15046         (ido-completing-read): New defun like completing-read.  Setup and
15047         use new `list' context.
15049 2004-09-20  Jesper Harder  <harder@ifa.au.dk>
15051         * progmodes/tcl.el (inferior-tcl): Use pop-to-buffer.
15053 2004-09-21  Jay Belanger  <belanger@truman.edu>
15055         * calc/calc-graph.el (calc-graph-add-curve): Move the call to
15056         `calc-graph-set-styles' so the gnuplot buffer will appear in a
15057         separate window.
15059 2004-09-21  Luc Teirlinck  <teirllm@auburn.edu>
15061         * subr.el (after-change-major-mode-hook): Doc fix.
15063 2004-09-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15065         * printing.el: Doc fix.  Add a new tip about the use of gsprint instead
15066         of ghostscript for monochrome PostScript file in Windows.
15068 2004-09-21  Kenichi Handa  <handa@m17n.org>
15070         * descr-text.el (describe-char): Checking of quail activation fixed.
15072 2004-09-21  Jay Belanger  <belanger@truman.edu>
15074         * calc/calc.el (calc-mode-var-list): Remove unnecessary quotes.
15076 2004-09-20  Luc Teirlinck  <teirllm@auburn.edu>
15078         * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
15079         after the mode hooks instead of before.  Doc fix.
15081 2004-09-20  Jason Rumney  <jasonr@gnu.org>
15083         * startup.el (command-line) [windows-nt]: Try .emacs first, then
15084         _emacs, but revert to .emacs if neither exists in home directory.
15086 2004-09-20  John Paul Wallington  <jpw@gnu.org>
15088         * bindings.el (completion-ignored-extensions): Add .dfsl.
15090 2004-09-20  Richard M. Stallman  <rms@gnu.org>
15092         * bindings.el (scroll-left): Make it disabled.
15094         * files.el (enable-local-eval): Doc fix.
15096         * indent.el (move-to-left-margin): Special case for minibuffer.
15098         * term.el (term-emulate-terminal): Turn off undo for output.
15099         Use with-current-buffer and save-selected-window.
15101         * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
15103         * progmodes/make-mode.el (makefile-fill-paragraph):
15104         Don't insist on spaces when looking for comments.  # is enough.
15106         * files.el (hack-local-variables): Copy the variables list
15107         to another buffer, strip prefixes and suffixes there, then read.
15108         (enable-local-eval): Doc fix.
15109         (ignored-local-variables): Initialize to nil.
15110         (risky-local-variable-p): Don't check ignored-local-variables here.
15111         (hack-one-local-variable): Ignore var if in ignored-local-variables.
15113 2004-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
15115         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
15116         of = to "." (punctuation).
15118 2004-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15120         * subr.el (event-basic-type): Fix mask (extend to 22bits).
15122 2004-09-18  Luc Teirlinck  <teirllm@auburn.edu>
15124         * textmodes/enriched.el (enriched-rerun-flag): New variable.
15125         (enriched-before-change-major-mode): New function.
15126         Add it to `change-major-mode-hook'.
15127         (enriched-after-change-major-mode): New function.
15128         Add it to `after-change-major-mode-hook'.
15129         (enriched-mode): Make it work correctly if called from
15130         `after-change-major-mode-hook'.
15131         No longer set `indent-line-function'.
15133         * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
15135         * subr.el (after-change-major-mode-hook): New variable.
15136         (run-mode-hooks): Implement it.
15138 2004-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15140         * battery.el (battery-linux-proc-apm): Use string-to-number.
15141         (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
15142         Use dolist (and less indentation).  Use erase-buffer.
15143         Pre-initialize `design-capacity', `warn', and `low'.
15144         (battery-format): Use replace-regexp-in-string.
15146 2004-09-18  Ralph Schleicher  <rs@nunatak.allgaeu.org>
15148         * battery.el: Delete superfluous empty lines.
15149         (battery-linux-proc-acpi): Attempt to gather information from all
15150         battery subdirectories regardless of their file name.
15151         (battery-linux-proc-apm): Replace all occurrences of
15152         battery-hex-to-int-2 with string-to-int (base 16).
15153         (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
15154         (battery-hex-map): Delete variable.
15156 2004-09-18  John Paul Wallington  <jpw@gnu.org>
15158         * calc/calc-units.el (calc-quick-units): Fix overzealous
15159         s/or/unless/.
15161 2004-09-17  Jay Belanger  <belanger@truman.edu>
15163         * calc/calc.el (calc-mode-var-list): Fix the value of
15164         `calc-matrix-brackets'.
15166 2004-09-17  Romain Francoise  <romain@orebokech.com>
15168         * ibuf-ext.el (define-ibuffer-filter filename):
15169         Expand dired-directory since buffer-file-name is absolute.
15171 2004-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
15173         * ediff-init.el (ediff-current-diff-face-A)
15174         (ediff-current-diff-face-B, ediff-current-diff-face-C)
15175         (ediff-current-diff-face-Ancestor)
15176         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
15177         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
15178         (ediff-even-diff-face-A, ediff-even-diff-face-B)
15179         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
15180         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
15181         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
15182         Use min-colors.
15184         * term.el (term-down): Perform vertical motion if DOWN is negative.
15185         (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
15186         (term-termcap-format): Synchronize with the eterm terminfo entry
15187         in etc/e/eterm.ti.
15188         (term-handle-colors-array): If the current foreground or
15189         background are zero (i.e. unspecified), use the foreground and
15190         background of the default face for reverse video.
15191         (term-ansi-at-eval-string, term-ansi-default-fg)
15192         (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
15193         (term-mem): Delete unused function.
15194         (term-protocol-version): Increment.
15195         (term-current-face): Set to default.
15197 2004-09-15  Jay Belanger  <belanger@truman.edu>
15199         * calc/calc.el (calc-mode-var-list): Define this variable.
15200         (calc-always-load-extensions, calc-line-numbering)
15201         (calc-line-breaking, calc-display-just, calc-display-origin)
15202         (calc-number-radix, calc-leading-zeros, calc-group-digits)
15203         (calc-group-char, calc-point-char, calc-frac-format)
15204         (calc-prefer-frac, calc-hms-format, calc-date-format)
15205         (calc-float-format, calc-full-float-format, calc-complex-format)
15206         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
15207         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
15208         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
15209         (calc-matrix-brackets, calc-language, calc-language-option)
15210         (calc-left-label, calc-right-label, calc-word-size)
15211         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
15212         (calc-display-raw, calc-internal-prec, calc-angle-mode)
15213         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
15214         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
15215         (calc-window-height, calc-display-trail, calc-show-selections)
15216         (calc-use-selections, calc-assoc-selections)
15217         (calc-display-working-message, calc-auto-why, calc-timing)
15218         (calc-mode-save-mode, calc-standard-date-formats)
15219         (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
15220         (calc-user-parse-tables, calc-gnuplot-default-device)
15221         (calc-gnuplot-default-output, calc-gnuplot-print-device)
15222         (calc-gnuplot-print-output, calc-gnuplot-geometry)
15223         (calc-graph-default-resolution, calc-graph-default-resolution-3d)
15224         (calc-invocation-macro, calc-show-banner): Give these values as
15225         part of `calc-mode-var-list's initialization after the variables
15226         are declared with defvar.
15227         (calc-bug-address): Change email address to send bug reports to.
15228         Change the maintainer address at the top.
15229         (calc-mode): Compare `calc-settings-file' to `user-init-file' rather
15230         than "\\.emacs" to determine if it is the user-init-file.
15232         * calc/calc-embed.el (calc-embedded-set-modes): Use
15233         `calc-mode-var-list' correctly.
15235 2004-09-15  Thien-Thi Nguyen  <ttn@gnu.org>
15237         * vc.el (annotate-time): Document point handling.
15238         (vc-annotate-display-autoscale): Doc fix.
15240 2004-09-15  Miles Bader  <miles@gnu.org>
15242         * generic.el (generic-make-keywords-list): Use symbol rather than
15243         word anchors in regexp.
15245 2004-09-14  Sean O'Rourke  <sorourke@cs.ucsd.edu>
15247         * ibuf-ext.el (define-ibuffer-filter filename): If buffer has
15248         no file name consider `dired-directory'.
15250 2004-09-14  Kim F. Storm  <storm@cua.dk>
15252         * faces.el (cursor): Add face-no-inherit property.  Doc fix.
15254 2004-09-14  Simon Josefsson  <jas@extundo.com>
15256         * files.el (auto-mode-alist): Map .soa and .zone to dns-mode.
15258         * textmodes/dns-mode.el: Add.
15260 2004-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15262         * novice.el (disabled-command-hook): Use shorthand for obsolescence.
15263         (disabled-command-function): Make the ?\  char more obvious.
15265         * vc-arch.el (vc-arch-root, vc-arch-registered):
15266         * vc-mcvs.el (vc-mcvs-root, vc-mcvs-registered): Use vc-find-root.
15268 2004-09-13  Hovav Shacham  <hovav@sha1.stanford.edu>
15270         * windmove.el (windmove-frame-edges): Report coordinates of
15271         outside edges of frame, not inside edges.
15272         (windmove-coordinates-of-position): Convert into wrapper to new
15273         function `windmove-coordinates-of-window-position';
15274         `compute-motion' always applies to selected window.
15275         (windmove-coordinates-of-position): Update documentation to refer
15276         to Emacs 21 Lisp Reference Manual.
15277         (windmove-find-other-window): Fix off-by-one errors for max x,y.
15279 2004-09-13  Kim F. Storm  <storm@cua.dk>
15281         * isearch.el (isearch-resume-in-command-history): Rename from
15282         isearch-resume-enabled and change default to nil.
15284 2004-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15286         * vc-hooks.el (vc-ignore-dir-regexp): New var.
15287         (vc-registered): Use it.
15288         (vc-find-root): New fun.
15290         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
15291         Don't tell to use \\{...} when it's already done.
15293         * textmodes/bibtex.el (bibtex-generate-url-list): Change format.
15294         Provide a sample complex default.
15295         (bibtex-url, bibtex-font-lock-url): Adapt to new format.
15296         (bibtex-entry): Use mapc.
15298 2004-09-12  Kim F. Storm  <storm@cua.dk>
15300         * kmacro.el (kmacro-step-edit-prompt): Add "%s" format to message.
15302         * emulation/cua-rect.el (cua--rectangle-operation): Let bind
15303         inhibit-field-text-motion to t so rectangles work in comint buffers.
15305         * simple.el (choose-completion-string): Set buffer before running
15306         choose-completion-string-functions hook so it can be buffer-local.
15308 2004-09-12  Daniel Pfeiffer  <occitan@esperanto.org>
15310         * progmodes/compile.el (compilation-start): Parse command to see
15311         if it starts with a cd, and if so perform it for the *compilation*
15312         buffer.  Change the header to reflect this.
15314 2004-09-11  Kim F. Storm  <storm@cua.dk>
15316         * ido.el (ido-enable-dot-prefix): Doc fix.
15317         (ido-enable-dot-prefix): New defcustom.
15318         (ido-set-matches1): Use it.
15320 2004-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15322         * textmodes/bibtex.el (bibtex-mark-active)
15323         (bibtex-run-with-idle-timer): Move the `if' inside the defun.
15325 2004-09-10  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
15327         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore): Regexp is
15328         used in a case insensitive environment.
15329         (bibtex-mode-map): Rearrange order of menus.
15330         (bibtex-quoted-string-re): Obsolete.
15331         (bibtex-complete-key-cleanup): Variable replaced by new function.
15332         (bibtex-font-lock-keywords): Use backquotes.
15333         (bibtex-font-lock-url-regexp): New internal variable.
15334         (bibtex-name-in-field): New optional arg remove-opt-alt to remove
15335         "OPT" and "ALT".
15336         (bibtex-insert-current-kill, bibtex-make-field)
15337         (bibtex-prepare-new-entry, bibtex-yank-pop, bibtex-String): Use unless.
15338         (bibtex-parse-field-text): Simplify.
15339         (bibtex-string=): New helper function.
15340         (bibtex-member-of-regexp): Merge with bibtex-autokey-get-title.
15341         (bibtex-map-entries): Use bibtex-string=.
15342         (bibtex-search-entry): Use not.
15343         (bibtex-enclosing-field): Fix docstring.
15344         (bibtex-assoc-regexp): Obsolete.
15345         (bibtex-format-entry): Use assoc-string and bibtex-string=.
15346         (bibtex-autokey-get-names): Handle empty name field.
15347         (bibtex-parse-strings): Use assoc-string and unless.
15348         (bibtex-complete-string-cleanup): Expansion list is passed as an arg.
15349         Use assoc-string.
15350         (bibtex-pop): Simplify.
15351         (bibtex-mode): Set font-lock-extra-managed-props.
15352         (bibtex-entry-update): Use assoc-string.
15353         (bibtex-parse-entry): Remove "OPT" and "ALT" from FIELD.
15354         (bibtex-autofill-entry): Use bibtex-string=.
15355         (bibtex-print-help-message): Simplify.
15356         (bibtex-find-entry): New optional arg START.
15357         (bibtex-validate): Use bibtex-string= and assoc-string.
15358         Do not call obsolete function compilation-parse-errors.
15359         (bibtex-remove-delimiters): Only remove delimiters if present.
15360         (bibtex-copy-entry-as-kill): Add docstring.
15361         (bibtex-clean-entry): Use bibtex-string=.  Handle empty keys.
15362         Detect duplicate keys if bibtex-maintain-sorted-entries is nil.
15363         (bibtex-complete): Use bibtex-predefined-month-strings,
15364         bibtex-string=, and new function bibtex-complete-key-cleanup.
15365         (bibtex-generate-url-list): New variable.
15366         (bibtex-url): New command bound to C-c C-l and mouse-2.
15367         (bibtex-url-map): New local keymap for bibtex-url-mouse.
15368         (bibtex-font-lock-url): New function.
15370 2004-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15372         * progmodes/grep.el (grep-mode): Remove unnecessary autoload.
15374 2004-09-09  Kim F. Storm  <storm@cua.dk>
15376         * kmacro.el (kmacro-bind-to-key): Associate dedicated macro
15377         counter and format with binding.
15378         (kmacro-name-last-macro): New defun.  Like name-last-kbd-macro, but
15379         the declared macro uses own macro counter and format.  Give symbol
15380         kmacro property.
15381         (kmacro-keymap): Bind kmacro-name-last-macro to n.
15382         (kmacro-start-macro, kmacro-end-macro, kmacro-call-macro)
15383         (kmacro-end-and-call-macro): Doc fix.
15385 2004-09-09  Lars Hansen  <larsh@math.ku.dk>
15387         * desktop.el (desktop-clear-preserve-buffers):
15388         Remove make-obsolete-variable.
15390 2004-09-08  Richard M. Stallman  <rms@gnu.org>
15392         * buff-menu.el (list-buffers-noselect): Call format-mode-line
15393         with the buffer as argument.
15395 2004-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15397         * vc-arch.el (vc-arch-state): Fix parsing for `names' method.
15399 2004-09-08  Juri Linkov  <juri@jurta.org>
15401         * replace.el (perform-replace): Use `query-replace-descr'.
15403         * cus-start.el (history-delete-duplicates): Specify customization.
15405         * diff-mode.el (diff-mode-map):
15406         * progmodes/compile.el (compilation-mode-map):
15407         * progmodes/grep.el (grep-mode-map):
15408         * replace.el (occur-mode-map): Rename `next-error-follow-mode'
15409         to `next-error-follow-minor-mode'.
15411 2004-09-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15413         * isearch.el (isearch-lazy-highlight-update): Take into account
15414         the case of zero-length match at the search bound.
15416 2004-09-08  Kim F. Storm  <storm@cua.dk>
15418         * emulation/cua-rect.el (cua--highlight-rectangle): Fix last
15419         change.  Use zero width overlays when necessary.
15421 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15423         * subr.el (split-string): Docfix.
15425 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15427         * emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): Doc fix.
15428         (display-call-tree): Ensure newline after caller/calls blocks.
15430 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15432         * startup.el (command-line-1): Make option
15433         --directory/-L modify `load-path' straight away.
15435 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15437         * progmodes/grep.el (grep-mode): Use normal autoload cookie.
15439 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15441         * emacs-lisp/autoload.el (make-autoload):
15442         Handle `define-compilation-mode'.
15444         * emacs-lisp/lisp-mode.el (define-compilation-mode):
15445         Specify `doc-string-elt' property.
15447 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15449         * bs.el (bs-mode): Doc fix.
15451 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15453         * info.el (Info-insert-dir): Fix temp buffer leak bug.
15455 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
15457         * play/blackbox.el (bb-trace-ray): Avoid double tracing.
15459 2004-09-08  Kenichi Handa  <handa@m17n.org>
15461         * ps-mule.el: Fix old function calls (ps-mule-chars-in-string ->
15462         length, ps-mule-string-char -> aref, ps-mule-next-index -> 1+,
15463         ps-mule-next-point -> 1+).
15465         * composite.el (encode-composition-rule): Add autoload cookie.
15467 2004-09-07  Luc Teirlinck  <teirllm@auburn.edu>
15469         * format.el (buffer-auto-save-file-format): Make it permanent local.
15471 2004-09-07  Kim F. Storm  <storm@cua.dk>
15473         * emacs-lisp/authors.el (authors-aliases): Add more aliases.
15474         (authors-fixed-entries): Fix typo.
15475         (authors-canonical-author-name): Compact multiple spaces.
15476         Ignore trivial names (e.g. only first name).
15478         * term.el (term-window-width): Only use full window width on
15479         window system if overflow-newline-into-fringe is enabled.
15480         (term-mode): Don't disable overflow-newline-into-fringe.
15482 2004-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15484         * term/xterm.el (function-key-map): Add bindings for C- and S- cursor
15485         motion as seen on my Mac OS X xterms.
15487         * newcomment.el (uncomment-region-default, comment-region-default):
15488         New functions extracted from uncomment-region and comment-region.
15489         (comment-region, comment-region-function, uncomment-region)
15490         (uncomment-region-function): Use them.
15492         * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
15494         * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
15495         It's not crucial but can make sense at times.
15497         * vc-arch.el (vc-arch-workfile-version): Handle the special case before
15498         the first commit.
15500         * vc.el (vc-buffer-context, vc-restore-buffer-context):
15501         Disable obsolete code.
15503 2004-09-07  Juri Linkov  <juri@jurta.org>
15505         * progmodes/grep.el (grep-highlight-matches): Change default from
15506         `t' to `auto-detect', and type from `boolean' to `choice'.  Doc fix.
15507         (grep-compute-defaults): Set `grep-highlight-matches' to `t'
15508         if grep option `--color' is available, or to `nil' otherwise.
15509         (grep-process-setup): Call `grep-compute-defaults' if
15510         `grep-highlight-matches' is not computed.  Set env-vars only
15511         if `grep-highlight-matches' is `t'.
15512         (grep-use-null-device): Remove redundant type `boolean' (`choice'
15513         is already defined).
15515         * progmodes/compile.el (compilation-start): Use copy of
15516         `process-environment' created by `copy-sequence' to not
15517         modify env-vars in the global `process-environment'.
15519 2004-09-06  Eli Zaretskii  <eliz@gnu.org>
15521         * simple.el (next-error-follow-minor-mode): Fix last change.
15523 2004-09-05  Luc Teirlinck  <teirllm@auburn.edu>
15525         * textmodes/paragraphs.el (use-hard-newlines): Make it into a
15526         permanent local.
15528 2004-09-04  Richard M. Stallman  <rms@gnu.org>
15530         * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
15531         highlighting if the search string is empty.
15533 2004-09-04  Luc Teirlinck  <teirllm@auburn.edu>
15535         * facemenu.el (facemenu-active-faces): Change condition of inner
15536         `while' loop to also check the first two elements of `face-atts'
15537         and `mask-atts'.
15539 2004-09-04  John Paul Wallington  <jpw@gnu.org>
15541         * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
15542         (thumbs-view-image-mode): Make buffer read-only.
15544 2004-09-04  Christopher J. Madsen  <cjm@pobox.com>
15546         * textmodes/ispell.el (ispell-really-aspell): New defvar.
15547         (ispell-check-version): Set it.
15548         (ispell-send-replacement): New function.
15549         (ispell-process-line): Call ispell-send-replacement.
15551 2004-09-04  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
15553         * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
15554         Support choosing seconds with "s".
15556 2004-09-04  Jari Aalto  <jari.aalto@poboxes.com>
15558         * terminal.el (te-escape): Show `?' in prompt for help key.
15560 2004-09-04  Emilio C. Lopes  <eclig@gmx.net>
15562         * emacs-lisp/lisp.el (kill-backward-up-list): New function.
15564 2004-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
15566         * simple.el (next-error-follow-minor-mode)
15567         (next-error-follow-mode-post-command-hook): New functions.
15568         (next-error-follow-last-line): New defvar.
15570         * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
15571         * progmodes/compile.el (compilation-mode-map): Likewise.
15572         * progmodes/grep.el (grep-mode-map): Likewise.
15573         * replace.el (occur-mode-map): Likewise.
15575         * newcomment.el (uncomment-region): Bind comment-use-global-state
15576         to nil.
15578 2004-09-03  Luc Teirlinck  <teirllm@auburn.edu>
15580         * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
15581         locally around the call to `revert-buffer'.
15583 2004-09-03  Juri Linkov  <juri@jurta.org>
15585         * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
15586         `isearch-adjusted' to `t'.
15587         (isearch-toggle-case-fold): Set `isearch-success' to `t'.
15588         (isearch-message-prefix): Add "pending" for isearch-adjusted.
15589         (isearch-other-meta-char): Restore isearch-point unconditionally.
15590         (isearch-query-replace): Add new arg `regexp-flag' and use it.
15591         Set point to start of match if region is not active in transient
15592         mark mode (to include the current match to region boundaries).
15593         Push the search string to `query-replace-from-history-variable'.
15594         Add prompt "Query replace regexp" for isearch-regexp.
15595         Add region beginning/end as last arguments of `perform-replace.'
15596         (isearch-query-replace-regexp): Replace code by the call to
15597         `isearch-query-replace' with arg `t'.
15599 2004-09-03  Richard M. Stallman  <rms@gnu.org>
15601         * startup.el (normal-top-level): Undo previous TERM change.
15603 2004-09-03  Kim F. Storm  <storm@cua.dk>
15605         * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
15606         highlight overlays; allow using RET when cursor is over a button.
15607         (cua--highlight-rectangle): Use it.
15608         (cua--rectangle-set-corners): Don't move backwards at eol.
15609         (cua--forward-line): Don't move into void after eob.
15611         * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
15612         point is set (and displayed) inside rectangle.
15613         (cua--rectangle-operation): Fix for highlight of empty lines.
15614         (cua--highlight-rectangle): Fix highlight for tabs.
15615         Position cursor at left/right edge of rectangle using new `cursor'
15616         property on overlay strings.
15617         (cua--indent-rectangle): Don't tabify.
15618         (cua-rotate-rectangle): Ignore that point has moved.
15620 2004-09-02  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15622         * term/mac-win.el: Add ASCII equivalents for some function keys.
15623         (mode-line-frame-identification): Sync with x-win.el.
15625 2004-09-02  Juri Linkov  <juri@jurta.org>
15627         * progmodes/compile.el (compilation-buffer-name): Compare major
15628         mode with second element of compilation-arguments instead of third
15629         to reflect latest changes in compilation-arguments structure.
15630         (recompile): Use global variable `compilation-directory' to get
15631         recent compilation directory only when `recompile' is invoked NOT
15632         in the compilation buffer.  Otherwise, use `default-directory' of
15633         the compilation buffer.
15634         (compilation-error-properties): Allow to funcall col and end-col.
15635         (compilation-mode-font-lock-keywords): Check col and end-col by
15636         `integerp'.
15637         (compilation-goto-locus): If end-mk is non-nil in transient mark
15638         mode don't activate the mark (and don't display message in
15639         push-mark), but highlight overlay between mk and end-mk.
15641         * progmodes/grep.el (grep-highlight-matches): New defcustom.
15642         (grep-regexp-alist): Add rule to highlight grep matches.
15643         (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
15645         * info.el (Info-fontify-node): Don't compute other-tag
15646         if Info-hide-note-references=hide.
15648         * help.el (function-called-at-point):
15649         * help-fns.el (variable-at-point):
15650         Try `find-tag-default' when other methods failed.
15652         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
15653         Do not push mark if inhibit-mark-movement is non-nil.
15655         * textmodes/ispell.el (ispell-html-skip-alists):
15656         Fix backslashes in docstring.
15658 2004-09-01  Juri Linkov  <juri@jurta.org>
15660         * isearch.el (isearch-wrap-function)
15661         (isearch-push-state-function): New defvars.
15662         (isearch-pop-fun-state): New defsubst.
15663         (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
15664         (isearch-push-state): Set the result of calling
15665         `isearch-push-state-function' to the `isearch-pop-fun-state' field.
15666         (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
15667         restore the mode-specific starting point of terminated search.
15668         (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
15669         (isearch-repeat): Call `isearch-wrap-function' if defined.
15670         (isearch-message-prefix): Don't add prefix "over" to the message
15671         for wrapped search if `isearch-wrap-function' is defined.
15672         (isearch-search): Call function saved in `isearch-pop-fun-state' to
15673         restore the mode-specific starting point of failed search.
15675         * info.el (Info-search-whitespace-regexp): Fix backslashes.
15676         (Info-search): Add new optional arguments for the sake of isearch.
15677         Replace whitespace in Info-search-whitespace-regexp literally.
15678         Add backward search.  Don't call `Info-select-node' if regexp is
15679         found in the same Info node.  Don't add node to Info-history for
15680         wrapped isearch.
15681         (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
15682         (Info-isearch-push-state, Info-isearch-pop-state): New funs.
15683         (Info-mode): Set local variables `isearch-search-fun-function',
15684         `isearch-wrap-function', `isearch-push-state-function',
15685         `search-whitespace-regexp'.
15687         * isearch.el: Remove ancient Change Log section.
15688         (isearch-string, isearch-message-string, isearch-point)
15689         (isearch-success, isearch-forward-flag, isearch-other-end)
15690         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
15691         (isearch-barrier, isearch-within-brackets)
15692         (isearch-case-fold-search): Add suffix `-state' to state-related
15693         defsubsts to avoid name clashes with other function names.
15695         * simple.el (next-error): New defgroup and defface.
15696         (next-error-highlight, next-error-highlight-no-select):
15697         New defcustoms.
15698         (next-error-no-select): Let-bind next-error-highlight to the value
15699         of next-error-highlight-no-select before calling `next-error'.
15701         * progmodes/compile.el (compilation-goto-locus):
15702         Use `next-error' face instead of `region'.  Set 4-th argument of
15703         `move-overlay' to `current-buffer' to move overlay to different
15704         source buffers.  Use new variable `next-error-highlight'.
15706         * simple.el (next-error-find-buffer): Move the rule
15707         "if current buffer is a next-error capable buffer" after the
15708         rule "if next-error-last-buffer is set to a live buffer".
15709         Simplify to test all rules in one `or'.
15710         (next-error): Doc fix.
15711         (next-error, previous-error, first-error)
15712         (next-error-no-select, previous-error-no-select):
15713         Make arguments optional.
15715 2004-08-31  Luc Teirlinck  <teirllm@auburn.edu>
15717         * macros.el (apply-macro-to-region-lines): Make it operate on all
15718         lines that begin in the region, rather than on all complete lines
15719         in the region.
15721 2004-08-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15723         * x-dnd.el (x-dnd-protocol-alist): Document update.
15724         (x-dnd-known-types): Defcustom it.
15725         (x-dnd-handle-motif): Print message-atom in error message.
15727 2004-08-30  John Paul Wallington  <jpw@gnu.org>
15729         * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
15730         strings rather than programatically constructing message.
15732 2004-08-30  Richard M. Stallman  <rms@gnu.org>
15734         * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
15735         Don't return a string that would read as the wrong character code.
15737 2004-08-29  Kim F. Storm  <storm@cua.dk>
15739         * emulation/cua-base.el (cua-auto-expand-rectangles):
15740         Remove automatic rectangle padding feature; replace by non-destructive
15741         virtual rectangle edges feature.
15742         (cua-virtual-rectangle-edges): New defcustom.
15743         (cua-auto-tabify-rectangles): New defcustom.
15744         (cua-paste): If paste into a marked rectangle, insert rectangle at
15745         current column, even if virtual; also paste exactly as many lines
15746         as has been marked (ignore additional lines or add empty lines),
15747         but paste whole source if only one line is marked.
15748         (cua--update-indications): No longer use overwrite-cursor to
15749         indicate rectangle padding
15751         * emulation/cua-rect.el (cua--rectangle-padding): Remove.
15752         (cua--rectangle-virtual-edges): New defun.
15753         (cua--rectangle-get-corners): Remove optional PAD arg.
15754         (cua--rectangle-set-corners): Never do padding.
15755         (cua--forward-line): Remove optional PAD arg.  Simplify.
15756         (cua-resize-rectangle-right, cua-resize-rectangle-left)
15757         (cua-resize-rectangle-down, cua-resize-rectangle-up):
15758         (cua-resize-rectangle-bot, cua-resize-rectangle-top)
15759         (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
15760         (cua--rectangle-move): Never do padding.  Simplify.
15761         (cua--tabify-start): New defun.
15762         (cua--rectangle-operation): Add tabify arg.  All callers changed.
15763         (cua--pad-rectangle): Remove.
15764         (cua--delete-rectangle): Handle delete with virtual edges.
15765         (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
15766         (cua--insert-rectangle): Handle insert at virtual column.
15767         Perform auto-tabify if necessary.
15768         (cua--activate-rectangle): Remove optional FORCE arg.
15769         Never do padding.  Simplify.
15770         (cua--highlight-rectangle): Enhance for virtual edges.
15771         (cua-toggle-rectangle-padding): Remove command.
15772         (cua-toggle-rectangle-virtual-edges): New command.
15773         (cua-sequence-rectangle): Add optional TABIFY arg.  Callers changed.
15774         (cua--rectangle-post-command): Don't force rectangle padding.
15775         (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
15777 2004-08-28  Luc Teirlinck  <teirllm@auburn.edu>
15779         * indent.el (edit-tab-stops-buffer): Doc fix.
15781 2004-08-28  Richard M. Stallman  <rms@gnu.org>
15783         * progmodes/grep.el (grep-default-command): Use find-tag-default.
15784         (grep-tag-default): Function deleted.
15786         * subr.el (find-tag-default): Move from etags.el.
15788         * progmodes/etags.el (find-tag-default): Move to subr.el.
15790         * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
15791         into the basic character if it has an uppercase form.
15793 2004-08-27  Kenichi Handa  <handa@m17n.org>
15795         * international/utf-8.el (utf-8-post-read-conversion): If the
15796         buffer is unibyte, temporarily make it multibyte.
15798 2004-08-27  Masatake YAMATO  <jet@gyve.org>
15800         * calendar/time-date.el (time-to-seconds): Add autoload cookies.
15802 2004-08-25  John Paul Wallington  <jpw@gnu.org>
15804         * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
15805         0, 1, and many mismatches in message.
15806         (tex-start-shell): Use `set-process-query-on-exit-flag'.
15808         * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
15809         (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
15811 2004-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15813         * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
15814         vc-diff-switches differently.
15816 2004-08-22  Luc Teirlinck  <teirllm@auburn.edu>
15818         * speedbar.el (speedbar-file-regexp): Give it a phony defvar
15819         before and a real defvar after
15820         `speedbar-supported-extension-expressions'.  This is to silence
15821         the compiler without breaking bootstrapping.
15823 2004-08-22  Richard M. Stallman  <rms@gnu.org>
15825         * textmodes/flyspell.el (flyspell-word):
15826         Use set-process-query-on-exit-flag.
15827         (flyspell-highlight-duplicate-region): Take POSS as arg.
15828         (flyspell-word): Pass POSS as arg.
15830         * progmodes/ada-xref.el: Many doc and style fixes.
15831         (ada-find-any-references): Use compilation-start.
15832         (ada-get-ali-file-name): Improve error msg.
15833         (ada-get-ada-file-name): Likewise.
15835         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
15836         (ange-ftp-start-process): Use set-process-query-on-exit-flag.
15838         * mail/mail-extr.el (mail-extr-all-top-level-domains):
15839         Add forward defvar.
15841         * whitespace.el (global-whitespace-mode): New alias
15842         for whitespace-global-mode.
15844         * speedbar.el (speedbar-file-regexp): Move definition up.
15845         (speedbar-mode, speedbar-set-mode-line-format):
15846         Use with-no-warnings.
15847         (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
15849         * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
15850         controls whether to display the error buffer.
15852         * ps-mule.el: Delete compatibility code for old Emacsen.
15853         (ps-mule-find-wrappoint): Don't use chars-in-region.
15855         * frame.el (display-mouse-p, display-selections-p):
15856         Use with-no-warnings.
15858         * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
15860 2004-08-22  David Kastrup  <dak@gnu.org>
15862         * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
15863         information.
15865         * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
15867 2004-08-22  Andreas Schwab  <schwab@suse.de>
15869         * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
15871 2004-08-22  Masatake YAMATO  <jet@gyve.org>
15873         * cvs-status.el (cvs-status-checkout): New function.
15874         (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
15876 2004-08-21  David Kastrup  <dak@gnu.org>
15878         * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
15879         (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
15880         has been converted to use hashtables, the relation `nil=none' is
15881         no longer valid, as `nil' is not a hashtable.  This patch tries to
15882         reduce the number of resulting errors.
15884 2004-08-21  John Paul Wallington  <jpw@gnu.org>
15886         * subr.el (process-kill-without-query): Made obsolete in
15887         version 21.4, not 21.5.
15889         * log-edit.el (vc-comment-ring, vc-comment-ring-index)
15890         (vc-previous-comment, vc-next-comment)
15891         (vc-comment-search-reverse, vc-comment-search-forward)
15892         (vc-comment-to-change-log): Likewise.
15894         * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
15896 2004-08-21  Peter Seibel  <peter@javamonkey.com>  (tiny patch)
15898         * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
15899         Correct indentation of DEFMETHODS with non-standard method
15900         combinations (e.g., PROGN, MIN, MAX).
15902 2004-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15904         * startup.el (normal-top-level-add-subdirs-to-load-path):
15905         Avoid unnecessarily checking system-type.
15906         (normal-top-level): Set TERM to "dumb".  Simplify.
15908         * avoid.el (mouse-avoidance-ignore-p): New fun.
15909         Also ignore switch-frame, select-window, double, and triple clicks.
15910         (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
15911         (mouse-avoidance-fancy-hook): Use it.
15913 2004-08-20  Zoran Milojevic  <zoran@sipquest.com>  (tiny change)
15915         * avoid.el (mouse-avoidance-nudge-mouse)
15916         (mouse-avoidance-banish-destination): Stay within the current window
15917         to avoid problems with mouse-autoselect-window.
15919 2004-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15921         * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
15922         the newer format of some messages in cvs-1.12.1.
15924 2004-08-19  Masatake YAMATO  <jet@gyve.org>
15926         * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
15927         (elp-results-jump-to-definition-by-mouse)
15928         (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
15929         (elp-output-result): Use elp-output-insert-symname.
15931 2004-08-18  Kenichi Handa  <handa@m17n.org>
15933         * language/cyrillic.el: Register koi8-r in
15934         ctext-non-standard-encodings-alist.
15935         ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
15937 2004-08-17  Luc Teirlinck  <teirllm@auburn.edu>
15939         * emacs-lisp/copyright.el (copyright-update-year): Delete code
15940         that replaces 20xy with xy.
15942 2004-08-17  John Paul Wallington  <jpw@gnu.org>
15944         * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
15945         (reb-force-update): Doc fix.
15947 2004-08-16  Richard M. Stallman  <rms@gnu.org>
15949         * progmodes/which-func.el (which-func-update-1): Doc fix.
15951         * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
15952         (sh-mode-abbrev-table): New variable.
15954         * progmodes/compile.el (compilation-mode): Doc fix.
15956         * emacs-lisp/lisp-mode.el (eval-last-sexp):
15957         Don't cons a new symbol each time.
15958         (eval-last-sexp-fake-value): New variable.
15960         * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
15961         (copyright-update-year): Detect continuation of list of years.
15963         * term.el (term-default-fg-color, term-default-bg-color)
15964         (ansi-term-color-vector): Use `unspecified', not nil, as default.
15966         * imenu.el: Several doc fixes: don't say variables are buffer-local.
15968 2004-08-16  Davis Herring  <herring@lanl.gov>
15970         * isearch.el (isearch-string, isearch-message-string, isearch-point)
15971         (isearch-success, isearch-forward-flag, isearch-other-end)
15972         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
15973         (isearch-barrier, isearch-within-brackets)
15974         (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
15976 2004-08-16  Kenichi Handa  <handa@m17n.org>
15978         * ps-mule.el (ps-mule-font-info-database): Fix docstring.
15980 2004-08-15  Kenichi Handa  <handa@m17n.org>
15982         * term/x-win.el (x-selection-value): If utf8 was successful but
15983         ctext was not, use utf8 string.
15985 2004-08-14  Davis Herring  <herring@lanl.gov>
15987         * isearch.el: Remove accidental changes of March 4.  Fix backing
15988         up when a regexp isearch is made more general.  Use symbolic
15989         accessor functions for isearch stack frames to make usage clearer.
15990         (search-whitespace-regexp): Made groups in documentation shy (as
15991         is the group in the default value).
15992         (isearch-fallback): New function, addresses problems with regexps
15993         liberalized by `\|', adds support for liberalization by `\}' (the
15994         general repetition construct), and incorporates behavior for
15995         `*'/`?'.
15996         (isearch-}-char): New command, calls `isearch-fallback' with
15997         arguments appropriate to a typed `}'.
15998         (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
15999         appropriately.
16000         (isearch-mode-map): Bind `}' to `isearch-}-char'.
16001         (isearch-string, isearch-message,string, isearch-point)
16002         (isearch-success, isearch-forward-flag, isearch-other-end)
16003         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
16004         (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
16005         New inline functions to read fields of a stack frame.
16007 2004-08-14  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>  (tiny change)
16009         * battery.el (battery-linux-proc-acpi): Look into battery
16010         directories matching the literal string "CMB", too (required for
16011         Linux kernel version 2.6.7).
16013 2004-08-14  John Paul Wallington  <jpw@gnu.org>
16015         * cus-start.el (read-file-name-completion-ignore-case): Add.
16016         (blink-cursor-alist): Change version to "21.4".
16018         * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
16020 2004-08-11  Daniel Pfeiffer  <occitan@esperanto.org>
16022         * speedbar.el (speedbar-scan-subdirs): New option.
16023         (speedbar-file-lists): Don't ignore file-name case on Unix and use
16024         dolist.
16025         (speedbar-insert-files-at-point): Take an extra argument and use
16026         it to optionally find out if a subdir is empty.  Also unreadable
16027         files don't get expand buttons.
16028         (speedbar-directory): New image (unused pixmap already existed).
16029         (speedbar-expand-image-button-alist): Use it.
16031 2004-08-11  Martin Stjernholm  <bug-cc-mode@gnu.org>
16033         CC Mode update to 5.30.9:
16035         * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
16036         Move from cc-vars to cc-defs for dependency reasons.  Fix the
16037         POSIX char class test to check that it works in
16038         `skip-chars-(forward|backward)' too.
16040         * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
16041         first argument starts with a special brace list.
16043         * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
16044         when `c-opt-type-concat-key' is used (i.e. in Pike).
16046         * progmodes/cc-engine.el (c-looking-at-special-brace-list):
16047         Fix bug when the inner char pair doesn't have paren syntax,
16048         i.e. "(<>)".
16050         * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
16051         whitespace safe.
16053         * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
16054         position for `arglist-intro', `arglist-cont-nonempty' and
16055         `arglist-close' when there are two arglist open parens on the same
16056         line and there's nothing in front of the first.
16058         * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
16059         locking of qualified names in Java, which previously could fontify
16060         common indexing expressions in many cases.  The standard Java
16061         naming conventions are used to tell them apart.
16063         * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
16064         Fix inconsistency wrt opening parens on the first line inside a paren
16065         block.
16067         * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
16068         compile time for the sake of `c-major-mode-is'.
16070         (c-mode-is-new-awk-p): Made it a macro to delay expansion of
16071         `c-major-mode-is' in the event that this is used inside a
16072         `c-lang-defconst'.
16074         * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
16075         `c-lang-defconst' so that it works better with fallback languages.
16077         * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
16078         it to fail to record the base mode.
16080         * progmodes/cc-engine.el (c-syntactic-re-search-forward):
16081         Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
16082         is used.  Reorder the syntax checks to get more efficient
16083         skipping in some situations.
16085         * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
16086         continuation which might precede the newly inserted '{'.
16088         * progmodes/cc-engine.el (c-syntactic-re-search-forward):
16089         Fix cases where it could loop indefinitely.
16091         * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
16092         size specs correctly.  Only fontify identifiers in front of '('
16093         with as functions - don't accept any paren char.  Tighten up
16094         initializer skipping to stop before function and class blocks.
16096         * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
16097         the point could be left directly after an open paren when finding
16098         the beginning of the first decl in the block.
16100         * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
16101         table when filtering out legitimate open parens to be recorded.
16102         This could cause cache inconsistencies when e.g.
16103         `c++-template-syntax-table' was temporarily in use.
16105         * progmodes/cc-engine.el (c-on-identifier)
16106         (c-simple-skip-symbol-backward): Small fix for handling "-"
16107         correctly in `skip-chars-backward'.  Affected the operator lfun
16108         syntax in Pike.
16110         * progmodes/cc-engine.el (c-invalidate-sws-region-after):
16111         Fix bug that could cause an error from `after-change-functions' when
16112         the changed region is at bob.
16114 2004-08-11  Alan Mackenzie  <bug-cc-mode@gnu.org>
16116         CC Mode update to 5.30.9:
16118         * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
16119         to say that <TAB> doesn't insert WS into a CPP line.
16120         (c-indent-command, c-tab-always-indent): Amend doc strings.
16122         * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
16123         checks for user errors, thus eliminating cryptic and unhelpful
16124         Emacs error messages.  (1) Check the arg to `c-set-style' is a
16125         string.  (2) Check that settings to `c-offsets-alist' are not
16126         spuriously quoted.
16128         * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
16129         which precedes the newly inserted `{'.
16131 2004-08-10  Michael Albinus  <michael.albinus@gmx.de>
16133         Sync with Tramp 2.0.44.
16135         * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
16136         function "tramp_file_attributes".  Otherwise, file names
16137         containing spaces are misinterpreted.  Reported by Magnus Henoch
16138         <mange@freemail.hu>.
16139         (tramp-handle-file-truename): FILENAME must be expanded first.
16140         Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
16141         obscure results.  Reported by D. Goel <deego@gnufans.org>.
16142         (tramp-handle-verify-visited-file-modtime): If file does not
16143         exist, say it is not modified if and only if that agrees with the
16144         buffer's record.  Check whether a file is visiting the buffer, or
16145         the buffer has no recorded last modification time.  Return t in
16146         case the visiting file doesn't exist.  Suggested by Luc Teirlinck
16147         <teirllm@auburn.edu>.
16148         (tramp-handle-write-region): Pass modtime explicitly to
16149         `set-visited-file-modtime', because filename can be different
16150         from (buffer-file-name) if `file-precious-flag' is set.
16151         `set-visited-file-modtime' must be called always when `visit' is t
16152         or a string.  Suggested by Luc Teirlinck <teirllm@auburn.edu>.
16153         (tramp-handle-set-visited-file-modtime): If `time-list' is not
16154         nil, don't apply the whole body.  If the file doesn't exists, set
16155         modtime to '(-1 65535).  Suggested by Luc Teirlinck
16156         <teirllm@auburn.edu>.
16158 2004-08-09  Luc Teirlinck  <teirllm@auburn.edu>
16160         * help.el (describe-bindings): Doc fix.
16162         * subr.el (kbd): Doc fix.
16164 2004-08-08  John Paul Wallington  <jpw@gnu.org>
16166         * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
16167         instead of `string-to-int'.
16168         (define-ibuffer-column mode): Fix indentation.
16170 2004-08-08  Lars Hansen  <larsh@math.ku.dk>
16172         * wid-edit.el (widget-sexp-validate): Allow whitespace after
16173         expression.
16175 2004-08-08  Luc Teirlinck  <teirllm@auburn.edu>
16177         * subr.el (global-unset-key, local-unset-key): Doc fixes.
16179         * novice.el (disabled-command-function): New variable renamed from
16180         `disabled-command-hook'.
16181         (disabled-command-hook): Keep the _variable_ as alias for
16182         `disabled-command-function' and make obsolete.
16183         (disabled-command-function): Function renamed from
16184         `disabled-command-hook'.  Adapt code to name change of the variable.
16186 2004-08-07  Satyaki Das  <satyaki@theforce.stanford.edu>  (tiny change)
16188         * simple.el (completion-root-regexp): New defvar.
16189         (completion-setup-function): Use it instead of a literal string.
16191 2004-08-07  John Paul Wallington  <jpw@gnu.org>
16193         * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
16194         (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
16195         (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
16196         (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
16198 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
16200         * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
16201         (mail-extr-voodoo): Check mail-extr-disable-voodoo.
16203 2004-08-04  Kenichi Handa  <handa@m17n.org>
16205         * international/encoded-kb.el (encoded-kbd-setup-keymap):
16206         Fix previous change.
16208 2004-08-03  Kenichi Handa  <handa@m17n.org>
16210         * international/encoded-kb.el: The following changes are to
16211         utilize key-translation-map instead of minor mode map.
16212         (encoded-kbd-iso2022-non-ascii-map): Delete it.
16213         (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
16214         (encoded-kbd-last-key): New function.
16215         (encoded-kbd-iso2022-single-shift): New function.
16216         (encoded-kbd-iso2022-designation)
16217         (encoded-kbd-self-insert-iso2022-7bit)
16218         (encoded-kbd-self-insert-iso2022-8bit)
16219         (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
16220         (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
16221         key-translation-map.
16222         (encoded-kbd-setup-keymap): Setup key-translation-map.
16223         (saved-key-translation-map): New variable.
16224         (encoded-kbd-mode): Save/restore key-translation-map.
16225         Adjust for the change of encoded-kbd-setup-keymap.
16227 2004-08-02  Kim F. Storm  <storm@cua.dk>
16229         * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
16230         and call compute-motion with nil for topos and width to get proper
16231         usable width and height for both window and non-window systems.
16233         * windmove.el (windmove-coordinates-of-position): Let compute-motion
16234         calculate usable window width and height.
16236         * window.el (window-buffer-height): Call compute-motion with nil width.
16238 2004-08-01  David Kastrup  <dak@gnu.org>
16240         * replace.el (query-replace-read-from):
16241         Use `query-replace-compile-replacement'.
16242         (query-replace-compile-replacement): New function.
16243         (query-replace-read-to): Use `query-replace-compile-replacement'
16244         for repeating the last command.
16246 2004-08-01  John Paul Wallington  <jpw@gnu.org>
16248         * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
16249         (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
16250         (pr-switches): Remove period from end of error messages.
16252         * help-mode.el (help-go-back): Likewise.
16254         * abbrev.el (only-global-abbrevs): Doc fix.
16255         (edit-abbrevs-map): Define within defvar.
16256         (quietly-read-abbrev-file): Doc fix.
16258 2004-07-31  Luc Teirlinck  <teirllm@auburn.edu>
16260         * novice.el (enable-command, disable-command): Doc fixes.
16262         * subr.el (event-modifiers, event-basic-type): Doc fixes.
16264 2004-07-30  Richard M. Stallman  <rms@gnu.org>
16266         * subr.el (with-local-quit): Doc fix.
16268 2004-07-30  Luc Teirlinck  <teirllm@auburn.edu>
16270         * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
16272 2004-07-28  Luc Teirlinck  <teirllm@auburn.edu>
16274         * custom.el (defcustom): Doc fix.
16276 2004-07-28  Masatake YAMATO  <jet@gyve.org>
16278         * progmodes/etags.el (etags-tags-apropos): Show building progress.
16280 2004-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
16282         * imenu.el (imenu-prev-index-position-function)
16283         (imenu-extract-index-name-function, imenu-name-lookup-function)
16284         (imenu--index-alist): Docstring redundancy fix.
16286 2004-07-25  Lars Hansen  <larsh@math.ku.dk>
16288         * wdired.el (wdired-finish-edit): Require dired-aux before locally
16289         binding dired-backup-overwrite.
16291 2004-07-25  John Paul Wallington  <jpw@gnu.org>
16293         * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
16295 2004-07-24  Luc Teirlinck  <teirllm@auburn.edu>
16297         * term/tty-colors.el (tty-color-approximate): Doc fix.
16299         * select.el (x-get-selection, x-set-selection): Doc fixes.
16301         * frame.el (make-frame): Doc fix.
16303 2004-07-24  Richard M. Stallman  <rms@gnu.org>
16305         * mail/rmail.el (rmail-mime-charset-pattern):
16306         Don't include semicolon in the charset value.
16308         * replace.el (occur-next-error): Call set-window-point.
16309         (occur-engine): Handle negative NLINES.
16311 2004-07-23  Luc Teirlinck  <teirllm@auburn.edu>
16313         * frame.el (modify-all-frames-parameters): Minor doc fix.
16314         (set-frame-configuration): Doc fix.
16316 2004-07-23  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
16318         * simple.el (completion-setup-function): Compute the common parts
16319         and the first difference place correctly when
16320         partial-completion-mode is on.
16322 2004-07-22  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
16324         * ps-print.el: Doc fix.
16325         (ps-print-version): New version 6.6.5.
16326         (ps-printing-region): Doc fix.
16327         (ps-generate-string-list): Comment fix.
16328         (ps-message-log-max): Code fix.
16330 2004-07-22  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
16332         * ps-print.el (ps-begin-file): Improve the DSC compliance of the
16333         generated PostScript.
16335 2004-08-17  Reiner Steib  <Reiner.Steib@gmx.de>
16337         * net/tls.el (tls-process-connection-type): Fix docstring.  (Sync
16338         with Gnus v5_10 branch.)
16340 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
16342         * calendar/time-date.el (time-to-number-of-days): New function.
16343         Imported from Gnus.
16345 2004-07-22  Kim F. Storm  <storm@cua.dk>
16347         * progmodes/make-mode.el: Fix comments.
16349 2004-07-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
16351         * printing.el: Doc fix.
16353 2004-07-20  Luc Teirlinck  <teirllm@auburn.edu>
16355         * frame.el (modify-all-frames-parameters): Minor doc fix.
16357 2004-07-20  Richard M. Stallman  <rms@gnu.org>
16359         * textmodes/fill.el (fill-nobreak-p): If this break point is
16360         at the end of the line, don't consider the newline which follows
16361         as a reason to return t.
16363 2004-07-19  John Paul Wallington  <jpw@gnu.org>
16365         * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
16367 2004-07-18  Luc Teirlinck  <teirllm@auburn.edu>
16369         * dired-aux.el (dired-do-kill-lines): Expand docstring.
16370         Delete irrelevant code.
16372 2004-07-17  Kai Grossjohann  <kai.grossjohann@gmx.net>
16374         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
16375         New docstring.  From Luc Teirlinck.
16377 2004-07-17  Luc Teirlinck  <teirllm@auburn.edu>
16379         * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
16380         section.
16381         (auto-revert-handler): Do not check `auto-revert-tail-mode' for
16382         non-file buffers.  We know it is nil.
16384 2004-07-17  Kai Grossjohann  <kai.grossjohann@gmx.net>
16386         Sync with Tramp 2.0.43.
16388         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
16389         Remove outdated comment.
16390         (tramp-locked, tramp-locker): New variables for implementing a
16391         global lock.
16392         (tramp-sh-file-name-handler): Use them to implement the global lock.
16394 2004-07-13  Michael Albinus  <michael.albinus@gmx.de>
16396         * net/tramp.el (all): Code cleanup.  Change all `tramp-handle-xxx'
16397         calls to respective `xxx` calls.
16398         (tramp-process-alive-regexp): Precise doc string.
16399         (tramp-multi-action-process-alive): New defun.
16400         (tramp-multi-actions): Use it.
16401         (tramp-handle-find-backup-file-name): `copy-tree' is available
16402         since Emacs 22.1 only (XEmacs has it).  Implementation rewritten
16403         in order to avoid this function.
16404         (tramp-handle-write-region): Set current buffer.  If connection
16405         wasn't open, `file-modes' has changed it accidentally.  Reported by
16406         David Kastrup <dak@gnu.org>.
16407         (tramp-enter-password, tramp-read-passwd): New arguments USER and
16408         HOST.
16409         (tramp-action-password, tramp-multi-action-password): Apply it.
16410         (tramp-open-connection-rsh): If a port is given, the Tramp buffer
16411         name must still contain the port number.  Otherwise, we have two
16412         Tramp buffers, with all the confusion.  Reported by Myron Selby
16413         <myron@xytech.com> and Rolf Dubitzky
16414         <Dubitzky@physi.uni-heidelberg.de>.
16416         * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
16417         HOST to `tramp-enter-passwd'.
16419         * net/tramp-vc.el (all): Code cleanup.  Change all
16420         `tramp-handle-xxx' calls to respective `xxx` calls.
16422 2004-07-17  Jonathan Yavner  <jyavner@member.fsf.org>
16424         * emacs-lisp/testcover.el: New category "potentially-1valued" for
16425         functions that are not erroneous if either 1-valued or
16426         multi-valued.  Detect functions in this class.
16427         (testcover-1value-functions, testcover-compose-functions)
16428         (testcover-progn-functions) Add some additional functions to lists.
16429         (testcover-mark): Bugfix when marking up the definition for an
16430         empty function.
16432 2004-07-17  Richard M. Stallman  <rms@gnu.org>
16434         * replace.el (occur-read-primary-args): Pass default to
16435         read-from-minibuffer.
16437         * mail/footnote.el (footnote-section-tag): Use defcustom.
16439         * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
16440         Compile font-lock-keywords, not KEYWORDS.
16441         (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
16442         Add warn, check-type.  Handle cerror like error.
16444 2004-07-14  Daniel Pfeiffer  <occitan@esperanto.org>
16446         * progmodes/which-func.el (which-func-keymap): New var.
16447         (which-func-face): New face.
16448         (which-func-format): Use them.
16450 2004-07-16  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
16452         * buff-menu.el (list-buffers-noselect): Append the buffer's
16453         process status to its mode name.
16455 2004-07-16  Kim F. Storm  <storm@cua.dk>
16457         * simple.el (inhibit-mark-movement): New defvar.
16458         (beginning-of-buffer, end-of-buffer): Do not push mark if
16459         inhibit-mark-movement is non-nil or C-u prefix is given.
16461         * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
16462         Init to beginning-of-buffer and end-of-buffer.
16463         (cua--undo-push-mark): New defvar.
16464         (cua--pre-command-handler): Set inhibit-mark-movement if mark is
16465         already active and command is in cua--preserve-mark-commands.
16466         Also fix check for shift modifier on non-window systems.
16467         (cua--post-command-handler): Clear inhibit-mark-movement if set.
16469 2004-07-14  Luc Teirlinck  <teirllm@auburn.edu>
16471         * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
16472         of two integers, instead of a cons.
16474         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
16475         `visited-file-modtime' now returns a list of two integers, instead
16476         of a cons.
16478         * dired.el (dired-directory-changed-p): Ditto.
16480         * progmodes/grep.el (grep): Doc fix.
16482 2004-07-14  Daniel Pfeiffer  <occitan@esperanto.org>
16484         * autorevert.el (auto-revert-tail-mode)
16485         (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
16486         (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
16487         in both at the same time.
16488         (auto-revert-tail-mode): New command.
16489         (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
16490         (auto-revert-handler): Revert only either tail or whole file.
16492         * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
16493         add auto-revert-tail-mode.
16495 2004-07-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
16497         * printing.el: Doc fix.  Change name of some funs.
16498         (pr-dosify-file-name): New fun.  Replace ps-dosify-path.
16499         (pr-unixify-file-name): New fun.  Replace ps-unixify-path.
16500         (pr-standard-file-name): New fun.  Replace pr-standard-path.
16501         (pr-call-process): Code fix.
16503 2004-07-12  Luc Teirlinck  <teirllm@auburn.edu>
16505         * subr.el (with-selected-window): Doc fix.
16507 2004-07-11  Luc Teirlinck  <teirllm@auburn.edu>
16509         * subr.el (get-buffer-window-list): Doc fix.
16511 2004-07-10  Luc Teirlinck  <teirllm@auburn.edu>
16513         * files.el (switch-to-buffer-other-window): Doc fix.
16515         * window.el (save-selected-window, one-window-p)
16516         (split-window-keep-point, split-window-vertically)
16517         (split-window-horizontally): Doc fixes.
16519 2004-07-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
16521         * printing.el: Doc fix.  Now it uses call-process instead of
16522         shell-command for low command execution.
16523         (pr-version): New version number (6.8).
16524         (pr-shell-file-name): Option removed.
16525         (pr-shell-command): Fun removed.
16526         (pr-call-process): New fun.  Replace pr-shell-command.
16527         (pr-standard-path, pr-remove-nil-from-list): New funs.
16528         (zmacs-region-stays, current-mouse-event, current-menubar): New var.
16529         (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
16530         (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
16531         (pr-ps-utility-process, pr-txt-print): Code fix.
16533 2004-07-10  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
16535         * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
16536         boolean.
16538 2004-07-09  Lars Hansen  <larsh@math.ku.dk>
16540         * wid-edit.el (widget-field-buffer): Doc fix.
16542 2004-07-09  John Paul Wallington  <jpw@gnu.org>
16544         * emacs-lisp/re-builder.el (reb-update-overlays):
16545         Distinguish between one and several matches in message.
16547 2004-07-09  Richard M. Stallman  <rms@gnu.org>
16549         * mouse.el (mouse-set-region-1): If transient-mark-mode
16550         is `identity', change it to `only'.
16552         * simple.el (current-word): Doc fix.
16554 2004-07-09  Mark A. Hershberger  <mah@everybody.org>
16556         * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
16557         so that it is more understanding of whitespace.
16559         * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the form
16560         (("ns" . "element") (attr-list) children) instead of
16561         ((:ns . "element") (attr-list) children) in order to reduce the
16562         number of symbols used.
16563         (xml-skip-dtd): Change to use xml-parse-dtd but set
16564         xml-validating-parsing to nil.
16565         (xml-parse-dtd): Parse entity declarations in DOCTYPEs.
16566         (xml-substitute-entity): Remove in favor of new entity substitution.
16567         (xml-substitute-special): Rewrite in to substitute complex
16568         entities from DOCTYPE declarations.
16569         (xml-parse-fragment): Parse fragments from entity declarations.
16570         (xml-parse-region, xml-parse-tag, xml-parse-attlist)
16571         (xml-parse-dtd, xml-substitute-special): Make validity checks
16572         conditioned on xml-validating-parser.  Add "Not Well Formed" to
16573         error messages about well-formedness.
16575 2004-07-08  Steven Tamm  <steventamm@mac.com>
16577         * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
16578         (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
16579         Do not treat double clicks and triple clicks specially in the
16580         scroll bar (preventing strange repositioning problems)
16582 2004-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16584         * replace.el (query-replace-regexp-eval): Fix last change.
16586 2004-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16588         * replace.el (query-replace-descr): New fun.
16589         (query-replace-read-from, query-replace-read-args): Default to the
16590         previous from&to.
16591         (query-replace-read-to): Quote the `from' string when displaying it.
16592         (query-replace-regexp-eval): Immediately check read-only status.
16593         Use query-replace-read-from to get the \n checking.
16594         Quote the `from' string when displaying it.
16595         (map-query-replace-regexp, occur-read-primary-args):
16596         Quote the `from' string when displaying it.
16598         * isearch.el (isearch-query-replace): Pass the regexp-ness and
16599         delimited-ness of the search to query-replace.
16601         * replace.el (query-replace-read-from, query-replace-read-to):
16602         New funs extracted from query-replace-read-args.
16603         (query-replace-read-args): Use them.
16605         * replace.el (query-replace-interactive, query-replace-read-args):
16606         Remove the `initial' special value.
16607         (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
16608         (occur-engine): Remove unused var `matchend'.
16610         * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
16611         Use the search string without prompting.
16613 2004-07-05  Kenichi Handa  <handa@m17n.org>
16615         * international/mule.el (decode-coding-inserted-region):
16616         Set last-coding-system-used only when coding is nil.
16618 2004-07-03  Eli Zaretskii  <eliz@gnu.org>
16620         * progmodes/grep.el (grep-compute-defaults, grep-command)
16621         (grep-program, find-program, grep-find-use-xargs, grep-history)
16622         (grep-find-history, grep-tag-default, grep-find-command)
16623         (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
16624         Add autoload cookies, for unbundled packages that load `compile'
16625         and expect all grep-related symbols to become defined.
16627 2004-07-03  KOSEKI Yoshinori  <kose@meadowy.org>
16629         * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
16630         (iimage-mode-image-search-path): New user option to search the
16631         image file.
16632         (iimage-locate-file): New function.  Emacs21.3 or earlier does not
16633         have locate-file.
16634         (iimage-mode-buffer): Use it.
16636 2004-07-03  Nick Roberts  <nickrob@gnu.org>
16638         * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
16639         carefully.
16640         (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
16642 2004-07-03  Juri Linkov  <juri@jurta.org>
16644         * replace.el (query-replace-read-args): Swallow space after 'foo,
16645         not after (quote foo).  Match space only immediately after symbol,
16646         not anywhere in the whole string.
16648 2004-07-02  Richard M. Stallman  <rms@gnu.org>
16650         * replace.el (query-replace-read-args): Swallow space after
16651         symbols, not after closeparens.  But avoid error if string ends there.
16653         * progmodes/python.el (python-beginning-of-statement):
16654         Exit the loop if backward-up-list gets error.
16656         * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
16658 2004-07-02  Andre Spiegel  <spiegel@gnu.org>
16660         * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
16661         only if vc-consult-headers is non-nil.
16663 2004-07-02  Juri Linkov  <juri@jurta.org>
16665         * pcvs.el (cvs-mode-diff-repository): New command.
16667         * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
16669 2004-07-01  Juri Linkov  <juri@jurta.org>
16671         * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
16672         C-M-y to isearch-yank-char.  Bind M-% to isearch-query-replace,
16673         C-M-% to isearch-query-replace-regexp.
16674         (minibuffer-local-isearch-map): Add arrow key bindings.
16675         Bind C-f to isearch-yank-char-in-minibuffer.
16676         (isearch-forward): Doc fix.
16677         (isearch-edit-string): Doc fix.
16678         (isearch-query-replace, isearch-query-replace-regexp): New funs.
16679         (isearch-del-char): Add optional arg.  Set isearch-yank-flag to t.
16680         (isearch-yank-char): Add optional arg.
16681         (isearch-yank-char-in-minibuffer): New fun.
16683         * replace.el (query-replace-interactive): Change type from boolean
16684         to choice.  Add value `initial'.
16685         (query-replace-read-args): Handle value `initial' of
16686         query-replace-interactive.
16688 2004-06-29  Kim F. Storm  <storm@cua.dk>
16690         * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
16691         (breakpoint-disabled-bitmap-face): Add :group 'gud.
16693         * progmodes/ada-xref.el (ada-tight-gvd-integration):
16694         Add :group 'ada.
16696         * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
16698 2004-06-29  Juri Linkov  <juri@jurta.org>
16700         * replace.el (query-replace-read-args): Swallow a space after
16701         everything except )]" which in most cases means after a symbol.
16703         * emacs-lisp/pp.el (pp-buffer): Add autoload.
16705 2004-06-28  Richard M. Stallman  <rms@gnu.org>
16707         * font-lock.el (font-lock-fontify-syntactic-keywords-region):
16708         More changes to go with previous change in font-lock.el.
16710 2004-06-26  David Kastrup  <dak@gnu.org>
16712         * replace.el (perform-replace): Highlight the match even in
16713         non-query mode if there is potential replace string editing.
16715 2004-06-26  Kai Grossjohann  <kai.grossjohann@gmx.net>
16717         * net/tramp.el (tramp-handle-file-remote-p): New implementation to
16718         agree with new return value of `file-remote-p'.
16719         This syncs with Tramp 2.0.42.
16721         * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
16722         according to new documentation of `file-remote-p'.
16724         * files.el (file-remote-p): Fix doc to say that return value is
16725         identification of remote system, if not nil.
16726         (file-relative-name): Use new return value of `file-remote-p'.
16728 2004-06-26  Nick Roberts  <nickrob@gnu.org>
16730         * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
16731         (gdb-goto-breakpoint): Fix breakage.
16733 2004-06-26  Eli Zaretskii  <eliz@gnu.org>
16735         * man.el (Man-getpage-in-background): Add windows-nt to the list
16736         of systems where shell-file-name should be used instead of
16737         literal "sh".
16739 2004-06-25  Sam Steingold  <sds@gnu.org>
16741         * add-log.el (change-log-font-lock-keywords): Support Common Lisp
16742         function names `(setf symbol)'.
16744 2004-06-24  Richard M. Stallman  <rms@gnu.org>
16746         * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
16748         * font-lock.el (font-lock-keywords): Change format of compiled values.
16749         Document it.
16750         (font-lock-add-keywords): If font-lock-keywords is compiled,
16751         extract the uncompiled version, modify, then recompile.
16752         (font-lock-remove-keywords): Likewise.
16753         (font-lock-fontify-keywords-region): Handle changed format.
16754         (font-lock-compile-keywords): Handle changed format.
16755         (font-lock-set-defaults): Compile the keywords explicitly here.
16757 2004-06-24  David Kastrup  <dak@gnu.org>
16759         * replace.el (query-replace-read-args): Implement `\,' and `\#'
16760         replacements here.
16761         (query-replace-regexp): Doc string explaining this and the new
16762         `\?' replacement.  Remove `\,' and `\#' implementation here, as it
16763         is better placed in `query-replace-read-args'.
16764         (replace-regexp): Explain `\,', `\#' and `\?'.
16765         (replace-match-data): New function for thorough reuse/destruction
16766         of old match-data.
16767         (replace-match-maybe-edit): Function for implementing `\?' editing.
16768         (perform-replace): Fix maintaining of the match stack including
16769         already matched regions, implement `\?', fix various problems
16770         with regions while editing and other stuff.
16771         (replace-highlight): Simplify.
16773 2004-06-24  Daniel Pfeiffer  <occitan@esperanto.org>
16775         * progmodes/grep.el (grep-error-screen-columns): New variable.
16776         (grep-regexp-alist): Give it the full functionality of gnu style
16777         compilation messages with line and column ranges.  Ask me for the
16778         perl script I'm working on, that uses these.
16780 2004-06-23  Nick Roberts  <nickrob@gnu.org>
16782         * comint.el (comint-insert-clicked-input, comint-copy-old-input):
16783         Remove.
16784         (comint-insert-input, comint-mouse-insert-input): New functions
16785         based on comint-insert-clicked-input for two bindings but just
16786         one functionality.
16788 2004-06-23  Luc Teirlinck  <teirllm@auburn.edu>
16790         * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
16792 2004-06-23  Lars Hansen  <larsh@math.ku.dk>
16794         * files.el (write-contents-functions): Doc fix.
16796 2004-06-21  Juanma Barranquero  <lektu@terra.es>
16798         * image.el (image-library-alist): Rewrite docstring in active voice.
16800 2004-06-20  Richard M. Stallman  <rms@gnu.org>
16802         * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
16804         * isearch.el (isearch-repeat): Avoid testing old match data.
16805         (isearch-message): Display trailing space in special font
16806         when search is failing.
16807         (isearch-search-fun-function): Doc fix.
16809         * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
16811 2004-06-19  Luc Teirlinck  <teirllm@auburn.edu>
16813         * frame.el (show-trailing-whitespace): Doc fix.
16815         * cus-edit.el (custom-variable-documentation): New function.
16816         (custom-variable): Use it.
16818 2004-06-19  Nick Roberts  <nickrob@gnu.org>
16820         * man.el (Man-getpage-in-background): Revert previous change but
16821         make cygwin a special case.
16823 2004-06-18  Luc Teirlinck  <teirllm@auburn.edu>
16825         * autorevert.el (global-auto-revert-non-file-buffers):
16826         Update docstring.
16828 2004-06-19  Daniel Pfeiffer  <occitan@esperanto.org>
16830         * progmodes/compile.el (compilation-error-properties): Store one
16831         more than end-col, if present, so that transient-mark-mode will
16832         highlight last char too.
16833         * progmodes/grep.el (grep-regexp-alist): Match columns and column
16834         ranges, if present.
16836 2004-06-18  Jason Rumney  <jasonr@gnu.org>
16838         * makefile.w32-in: Double percent signs in for loops.
16840 2004-06-17  David Kastrup  <dak@gnu.org>
16842         * replace.el (query-replace-read-args): Only warn about use of \n
16843         and \t when we are doing a regexp replacement and the actual
16844         escaped character is n or t.
16845         (query-replace-regexp): Add \, and \# interpretation to
16846         interactive call and document it.
16847         (query-replace-regexp-eval, replace-match-string-symbols): Add \#
16848         as shortkey for replace-count.
16849         (replace-quote): New function for doubling backslashes.
16851 2004-06-17  Juanma Barranquero  <lektu@terra.es>
16853         * files.el (parse-colon-path, cd): Mention in docstring that the
16854         path separator is colon in GNU-like systems.
16856         * newcomment.el (comment-region-internal): Fix docstring.
16858         * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
16859         (ewoc-invalidate, ewoc-collect): Doc fixes.
16860         (ewoc--create-node, ewoc--delete-node-internal):
16861         Fix typos in docstring.
16863 2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>
16865         * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
16866         manual to docstring.
16868 2004-06-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
16870         * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
16872 2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>
16874         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
16875         Add hyperlink to emacs-xtra manual to docstring.
16877         * autorevert.el (global-auto-revert-non-file-buffers):
16878         Add hyperlink to emacs-xtra manual to docstring, as well as an
16879         info-link.
16881 2004-06-14  Juanma Barranquero  <lektu@terra.es>
16883         * image.el (image-library-alist): New variable to map image types
16884         to external libraries.  Initialized to nil, unless system-specific
16885         configs change it.
16886         (image-type-available-p): Determine whether an image type is
16887         available by calling `init-image-library'.
16889         * term/w32-win.el (image-library-alist): Initialize to a known set
16890         of probable library names.
16892 2004-06-14  Kenichi Handa  <handa@m17n.org>
16894         * international/code-pages.el (windows-1256, cp1125): Fix tables
16895         for several characters.
16897         * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
16899 2004-06-13  Richard M. Stallman  <rms@gnu.org>
16901         * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
16903         * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
16904         not "`pc-selection-mode'".
16906         * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
16908         * simple.el (previous-matching-history-element): Specify a default.
16910         * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
16912         * cus-face.el (custom-declare-face): Simplify code.
16914         * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
16916 2004-06-13  Luc Teirlinck  <teirllm@auburn.edu>
16918         * files.el (before-save-hook): Add `time-stamp' to the options.
16920         * time-stamp.el (time-stamp): Recommend adding it to
16921         `before-save-hook', rather than `write-file-functions'.
16922         Make a similar change in `Commentary' section.
16924 2004-06-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
16926         * diff-mode.el (diff-current-defun): If at start of hunk, use
16927         position of first change.
16929 2004-06-13  Lars Hansen  <larsh@math.ku.dk>
16931         * dired-x.el (dired-mark-omitted): Bind to "*O".
16933 2004-06-12  Karl Fogel  <kfogel@red-bean.com>
16935         * bookmark.el (bookmark-bmenu-relocate): New function, as
16936         suggested by David J. Biesack <David.Biesack@sas.com>.
16937         (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
16938         (bookmark-bmenu-mode): Describe binding in doc string.
16939         (bookmark-set-filename): Save the bookmark list if it's time.
16941 2004-06-13  Kenichi Handa  <handa@m17n.org>
16943         * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
16944         (ccl-untranslated-to-ucs): Fix typo.
16946 2004-06-12  Karl Chen  <quarl@hkn.eecs.berkeley.edu>  (tiny change)
16948         * progmodes/python.el (python-open-block-statement-p):
16949         Fix indentation after a block opening that contains a comment.
16951 2004-06-12  J\e,Ai\e(Br\e,At\e(Bme Marant  <jerome@marant.org>  (tiny change)
16953         * bindings.el (completion-ignored-extensions): Add file extensions
16954         of Python byte-compiled files.
16956 2004-06-12  Juri Linkov  <juri@jurta.org>
16958         * info.el (Info-goto-node): Add autoload.
16959         (Info-toc): Add substring-no-properties on Info file name.
16960         (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
16961         (Info-mode-map): Bind L to Info-history, T to Info-toc.
16963 2004-06-12  Kenichi Handa  <handa@m17n.org>
16965         * international/mule-cmds.el (set-language-environment):
16966         Load subst tables if necessary.
16968         * international/mule.el (decode-char): Load subst tables if necessary.
16969         (encode-char): Likewise.
16971         * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
16972         pair correctly.  Call ccl-mule-utf-untrans for untranslable chars.
16973         (utf-16le-decode-loop): Set r5 to -1 before loop.
16974         (utf-16be-decode-loop): Likewise.
16975         (ccl-decode-mule-utf-16le): Add EOF processing block.
16976         (ccl-decode-mule-utf-16be): Likewise.
16977         (ccl-decode-mule-utf-16le-with-signature): Likewise.
16978         (ccl-decode-mule-utf-16be-with-signature): Likewise.
16979         (ccl-decode-mule-utf-16): Likewise.  Set r5 to -1 initially.
16980         (ccl-mule-utf-16-encode-untrans): New CCL.
16981         (utf-16-decode-to-ucs): Handle pre-read character.
16982         (utf-16le-encode-loop): Handle surrogate pair.
16983         (utf-16be-encode-loop): Likewise.
16984         (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
16985         of utf-16le-encode-loop.
16986         (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
16987         of utf-16be-encode-loop.
16988         (mule-utf-16-post-read-conversion):
16989         Call utf-8-post-read-conversion at first.
16990         (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
16991         Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
16992         Add post-read-conversion and pre-write-conversion.
16994         * international/utf-8.el (utf-translate-cjk-charsets): New variable.
16995         (utf-translate-cjk-unicode-range): New variable.
16996         (utf-translate-cjk-load-tables): New function.
16997         (utf-lookup-subst-table-for-decode): New function.
16998         (utf-lookup-subst-table-for-encode): New function.
16999         (utf-translate-cjk-mode): Init-value changed to t.  Don't load
17000         tables here.  Update safe-charsets of utf-* coding systems.
17001         (ccl-mule-utf-untrans): New CCL.
17002         (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans.  Use `repeat'
17003         at end of each branch.
17004         (ccl-mule-utf-8-encode-untrans): New CCL.
17005         (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
17006         (ccl-untranslated-to-ucs): Handle 2-byte encoding.  Set r1 to the
17007         length of encoding.  Don't return r0.
17008         (utf-8-compose): New arg hash-table.  Handle 2-byte encoding.
17009         (utf-8-post-read-conversion): Narrow to region properly.
17010         If utf-translate-cjk-mode is on, load tables if necessary.
17011         Call utf-8-compose with hash-table arg if necessary.
17012         Call XXX-compose-region instead of XXX-post-read-conversion.
17013         (utf-8-pre-write-conversion): New function.
17014         (mule-utf-8): Include CJK charsets in safe-charsets if
17015         utf-translate-cjk-mode is on.  Add pre-write-conversion.
17017         * international/characters.el: Temporarily set
17018         utf-translate-cjk-mode to nil.
17020         * language/devan-util.el (devanagari-compose-region):
17021         Add autoload cookie.
17023         * international/ccl.el (ccl-dump-call): Fix printing the
17024         subroutine name.
17026 2004-06-11  Luc Teirlinck  <teirllm@auburn.edu>
17028         * dired.el (dired-revert): If buffer is marked unmodified before
17029         reverting, keep it marked unmodified.  Adapt to new conventions
17030         for commenting out code.
17031         (dired-make-relative): Adapt to new conventions for commenting out
17032         code.
17034 2004-06-10  Miles Bader  <miles@gnu.ai.mit.edu>
17036         * eshell/esh-module.el (eshell-load-defgroups):
17037         Bind `vc-handled-backends' to nil when opening files.
17039 2004-06-11  Juanma Barranquero  <lektu@terra.es>
17041         * files.el (parse-colon-path, cd): Doc fixes (refer to
17042         `path-separator', not colon).
17044 2004-06-10  Juanma Barranquero  <lektu@terra.es>
17046         * newcomment.el (comment-search-forward)
17047         (comment-search-backward): Fix typos in docstring.
17048         (comment-region): Doc fix.
17050 2004-06-10  Luc Teirlinck  <teirllm@auburn.edu>
17052         * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
17053         switch is no longer stored in `dired-switches-alist'.
17055         * dired-aux.el (dired-insert-subdir): Do not store R switch in
17056         `dired-switches-alist'.
17058 2004-06-10  Kim F. Storm  <storm@cua.dk>
17060         * pcvs.el (cvs-mode-diff-yesterday): New command.
17062         * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
17064 2004-06-10  Juri Linkov  <juri@jurta.org>
17066         * emacs-lisp/edebug.el (edebug-eval-defun):
17067         * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
17068         Fix docstring.
17070         * simple.el (eval-expression-print-format): Don't print additional
17071         information on the first call to `eval-print-last-sexp'.
17072         (next-error-find-buffer): Fix punctuation.
17073         (killing) <defgroup>: Fix punctuation.
17074         (yank-excluded-properties): Change group from editing to killing.
17076         * replace.el (perform-replace): Use `limit' to terminate the
17077         while-loop explicitly.
17079 2004-06-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
17081         * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
17082         Use lc-*.xpm as prefix instead of *-locol.xpm.
17084         * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
17085         * toolbar/lc-help.xpm, toolbar/lc-home.xpm
17086         * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
17087         * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
17088         * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
17089         * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
17090         * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
17091         * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
17092         * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
17093         * toolbar/lc-up_arrow.xpm:
17094         Rename from *-locol.xpm.
17096 2004-06-09  Rajesh Vaidheeswarran  <rv@gnu.org>
17098         * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
17099         include forms like &<str>; as valid url patterns.
17101 2004-06-08  Luc Teirlinck  <teirllm@auburn.edu>
17103         * dired.el (dired-diff, dired-backup-diff)
17104         (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
17105         (dired-do-chown, dired-do-touch, dired-do-print)
17106         (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
17107         (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
17108         (dired-create-directory, dired-do-copy, dired-do-symlink)
17109         (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
17110         (dired-do-copy-regexp, dired-do-hardlink-regexp)
17111         (dired-do-symlink-regexp, dired-upcase, dired-downcase)
17112         (dired-maybe-insert-subdir, dired-next-subdir)
17113         (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
17114         (dired-kill-subdir, dired-tree-up, dired-tree-down)
17115         (dired-hide-subdir, dired-hide-all, dired-show-file-type)
17116         (dired-run-shell-command, dired-query): Remove redundant,
17117         or incorrect, autoloads.
17119         * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
17120         does not end in a slash.  Add optional argument KILL-ROOT.
17121         Update docstring.
17122         (dired-do-touch, dired-clean-directory, dired-run-shell-command)
17123         (dired-query): Add autoloads.
17125 2004-06-08  Daniel Pfeiffer  <occitan@esperanto.org>
17127         * progmodes/compile.el (compilation-set-window-height): Rearrange
17128         the save-* functions because a buffer can have several current
17129         point in different windows.
17130         (compilation-error-regexp-alist-alist): Recognize {standard input}
17131         GNU messages (for gcc --pipe) and more kinds of Oracle messages.
17133 2004-06-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
17135         * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
17136         * toolbar/help-locol.xpm, toolbar/home-locol.xpm
17137         * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
17138         * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
17139         * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
17140         * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
17141         * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
17142         * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
17143         * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
17144         * toolbar/up_arrow-locol.xpm:
17145         New versions of icons that uses fewer colors.
17147         * toolbar/tool-bar.el (tool-bar-local-item)
17148         (tool-bar-local-item-from-menu): Try to use icons with fewer colors
17149         if display-color-cells is 256 or less.
17151 2004-06-08  Kim F. Storm  <storm@cua.dk>
17153         * wid-edit.el (widget-specify-button): Use hand pointer rather
17154         than mouse-face as visible mouse-over effect.
17156 2004-06-07  Karl Fogel  <kfogel@red-bean.com>
17158         * saveplace.el (save-place-alist-to-file): Bind `print-length'
17159         and `print-level' to nil when writing out `save-place-alist'.
17160         Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
17162 2004-06-07  Juanma Barranquero  <lektu@terra.es>
17164         * completion.el (completion-kill-region): Doc fix.
17166         * format.el (format-insert-annotations)
17167         (format-annotate-location): Doc fixes.
17168         (format-subtract-regions): Make arguments match their use in docstring.
17170         * simple.el (kill-region): Doc fix.
17172         * subr.el (insert-buffer-substring-no-properties)
17173         (insert-buffer-substring-as-yank): Doc fixes.
17175 2004-06-07  Luc Teirlinck  <teirllm@auburn.edu>
17177         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
17178         Update docstring.
17179         (dired-reset-subdir-switches): New function.
17181         * dired.el (dired-undo): Call `dired-build-subdir-alist'.
17182         Limit scope of `buffer-read-only' binding.
17184 2004-06-06  Emilio C. Lopes  <eclig@gmx.net>
17186         * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
17187         eshell-explicit-command-char.
17189 2004-06-06  Juanma Barranquero  <lektu@terra.es>
17191         * help-fns.el (help-argument-name): Inherit from italic face only
17192         if the frame supports it.
17194 2004-06-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
17196         * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
17197         * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
17198         * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
17199         * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
17200         * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
17201         * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
17202         * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
17203         New conversions from xpm files.
17205         * toolbar/README: New file.
17207 2004-06-06  Richard M. Stallman  <rms@gnu.org>
17209         * isearch.el (isearch-mode-map): Undo previous change.
17211 2004-06-05  Juri Linkov  <juri@jurta.org>
17213         * bindings.el (debug-ignored-errors): Add regexps for history
17214         related messages.  Remove $ from "No further undo information".
17215         Move Ediff's messages to ediff.el.
17217         * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
17219         * cus-edit.el (custom-display): Add `min-colors'.
17221         * custom.el (defface): Add `supports' to docstring.
17223         * help-fns.el (help-argument-name): Add :group 'help.
17225 2004-06-05  Luc Teirlinck  <teirllm@auburn.edu>
17227         * find-dired.el (find-ls-subdir-switches): New user option.
17228         (find-dired): No longer call `abbreviate-file-name' on DIR.
17229         Set `dired-subdir-switches' buffer-locally.
17231         * locate.el: Merge the two `Commentary' sections.
17232         (locate-ls-subdir-switches): New user option.
17233         (locate): Update for other changes.
17234         (locate-mode-map): Restore Dired binding for mouse-2.
17235         Bind `locate-mouse-view-file' to M-mouse-2.
17236         Bind `l' to `locate-do-redisplay'.
17237         (locate-main-listing-line-p, locate-do-redisplay): New functions.
17238         (locate-mouse-view-file, locate-tags, locate-find-directory):
17239         Print message if used outside main listing.
17240         (locate-mode): Update docstring.  Make `*Locate*' buffer read-only.
17241         Various changes to support inserted subdirectories.
17242         (locate-insert-header): Change header of *Locate* buffer.
17244         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
17245         Change interactive default switches.
17246         (dired-rename-subdir-2): Update `dired-switches-alist'.
17247         (dired-insert-subdir, dired-kill-subdir):
17248         Handle `dired-switches-alist'.  Do not mark buffer modified.
17249         (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
17250         (dired-insert-subdir-doinsert): Omit messages.
17251         Handle `dired-subdir-switches'.
17252         (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
17254         * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
17255         (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
17256         subdirs if -R switch is used for a subdir.
17257         (dired-mode): Set `dired-switches-alist'.
17258         (dired-build-subdir-alist): Only print number of directories in
17259         echo area when invoked interactively.
17261 2004-06-05  Lars Hansen  <larsh@math.ku.dk>
17263         * dired-x.el (dired-omit-mode): Rename from
17264         dired-omit-files-p.  Use define-minor-mode to define it.
17265         (dired-omit-files-p): Add as alias for dired-omit-mode.
17266         (dired-omit-toggle): Delete.  Replaced by dired-omit-mode and
17267         dired-mark-omitted.
17268         (dired-mark-omitted): Add.  Bind to M-O.
17270 2004-06-05  Kenichi Handa  <handa@m17n.org>
17272         * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
17274 2004-06-05  Juanma Barranquero  <lektu@terra.es>
17276         * help-fns.el (help-argument-name): Reintroduce face.
17277         (help-default-arg-highlight): Use it, now that
17278         `face-differs-from-default-p' can be trusted.
17280 2004-06-05  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
17282         * textmodes/table.el: Sentence commands added to Point Motion
17283         group; kill and backward-kill commands added to Extraction group.
17285 2004-06-04  Mario Lang  <mlang@delysid.org>
17287         * battery.el (battery-linux-proc-acpi): `mA' was hardcoded, but some
17288         systems appear to use mW, make the code handle this.  Fix a
17289         division-by-zero bug while at it, and handle kernels with
17290         a slightly different layout in /proc/acpi.
17292 2004-06-04  Karl Fogel  <kfogel@red-bean.com>
17294         * vc-svn.el (vc-svn-checkin): Use `nconc' instead of `list*',
17295         because the latter is a CL-ism.  This fixes the bug reported by
17296         Shawn Boyette <mdxi@collapsar.net> in
17297         http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
17299 2004-06-04  Miles Bader  <miles@gnu.org>
17301         * faces.el (display-supports-face-attributes-p): Function moved to
17302         C code.  Previously only the tty-related portion of this function
17303         was done in C; however the previous attempt to do a halfway-proper
17304         job for non-tty displays in lisp didn't work properly because of
17305         funny conditions during Emacs startup.
17306         (face-differs-from-default-p): Simplify, now that
17307         display-supports-face-attributes-p works properly on all display
17308         types.  Remove :stipple from comparison; it doesn't really work
17309         in emacs anyway.
17311 2004-06-04  Miles Bader  <miles@gnu.org>
17313         * faces.el (face-differs-from-default-p): Use a different
17314         implementation, so we can really check whether FACE displays
17315         differently or not.
17317 2004-06-04  Miles Bader  <miles@gnu.org>
17319         * faces.el (display-supports-face-attributes-p): Implement a
17320         `different from default' check for non-tty displays.
17322 2004-06-03  David Kastrup  <dak@gnu.org>
17324         * woman.el (woman-mapcan): More concise code.
17325         (woman-topic-all-completions, woman-topic-all-completions-1)
17326         (woman-topic-all-completions-merge): Replace by a simpler and
17327         much faster implementation based on O(n log n) sort/merge instead
17328         of the old O(n^2) behavior.
17330 2004-06-03  Miles Bader  <miles@gnu.org>
17332         * subr.el (read-number): Use canonical format for default in prompt.
17334         * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
17335         Add regexp for " [...]" style defaults.
17337 2004-06-02  Romain Francoise  <romain@orebokech.com>
17339         * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
17340         groups: if the user asks for a hidden buffer, open the
17341         corresponding filter group to expose it.
17343         * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
17344         `ibuffer-jump-to-buffer'.
17345         (ibuffer-jump-offer-only-visible-buffers): New user option.
17347 2004-06-02  Juanma Barranquero  <lektu@terra.es>
17349         * faces.el (frame-update-faces): Add empty docstring so the one
17350         for `ignore' doesn't show through.
17352         * subr.el (process-kill-without-query): Remove spurious "\n" on
17353         obsolescence string.
17354         (focus-frame, unfocus-frame): Add obsolescence declaration and
17355         empty docstring.
17357         * international/mule.el (register-char-codings): Make alias for
17358         `ignore'.  Move docstring to obsolescence info and remove redundancy.
17360 2004-06-02  Kim F. Storm  <storm@cua.dk>
17362         * frame.el (blink-cursor-start): Turn cursor off initially so blink
17363         starts after blink-cursor-delay rather than 2*blink-cursor-delay.
17365 2004-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17367         * comint.el (comint-replace-by-expanded-history-before-point):
17368         Obey `start' as the docstring says.
17369         (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
17370         (comint-update-fence): Prevent font-lock from running unnecessarily.
17371         (comint-dynamic-list-completions): Use with-current-buffer.
17373 2004-06-01  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
17375         * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
17376         (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
17377         (bibtex-entry-update): Handle alternatives and optional fields.
17378         (bibtex-parse-entry): Bugfix, handle empty key.
17380 2004-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
17382         * vc-arch.el (vc-arch-state): Don't assume the file exists.
17384 2004-05-31  Lars Hansen  <larsh@math.ku.dk>
17386         * desktop.el (desktop-save): Don't save minor modes without a
17387         known mode initialization function.
17389 2004-05-30  Luc Teirlinck  <teirllm@auburn.edu>
17391         * replace.el (query-replace-interactive): Convert defvar -> defcustom.
17393         * autorevert.el: Update `Commentary' section.
17395 2004-05-30  Juanma Barranquero  <lektu@terra.es>
17397         * dos-fns.el (convert-standard-filename):
17398         * files.el (convert-standard-filename):
17399         * w32-fns.el (convert-standard-filename):
17400         Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
17402 2004-05-30  Kai Grossjohann  <kai.grossjohann@gmx.net>
17404         Sync with Tramp.
17406         * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
17407         (tramp-let-maybe): Move to an earlier spot in the file.
17408         Patch by Andreas Schwab.
17410 2004-05-30  Andreas Schwab  <schwab@suse.de>
17412         * dired.el (dired-get-filename): Don't use dired-re-dot.
17414 2004-05-30  Richard M. Stallman  <rms@gnu.org>
17416         * files.el (find-file): Doc fix.
17418         * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
17420 2004-05-30  Nick Roberts  <nickrob@gnu.org>
17422         * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
17423         (gdb-locals-mode, gdb-frame-handler): Display current frame in the
17424         modeline of the locals buffer.
17425         (gdb-goto-breakpoint): Handle gdbmi.
17426         (gdb-get-frame-number): Change for gdbmi.
17428 2004-05-30  Michael Albinus  <michael.albinus@gmx.de>
17430         * files.el (file-remote-p): Apply file name handler for operation
17431         `file-remote-p'.  It isn't a property any longer.
17432         (file-relative-name): `fh' and `fd' get the required value via
17433         `find-file-name-handler' already.
17435         * ange-ftp.el (ange-ftp-file-remote-p): New defun.
17436         (top): Remove setting of `file-remote-p' property for
17437         `ange-ftp-hook-function'.  Add `ange-ftp' property to `file-remote-p'.
17439 2004-05-29  Michael Albinus  <michael.albinus@gmx.de>
17441         Version 2.0.41 of Tramp released.
17443         * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
17444         Throw away if process has died.
17445         Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
17446         (tramp-out-of-band-prompt-regexp): Rename to
17447         `tramp-process-alive-regexp', because its usage is widen.
17448         (tramp-actions-copy-out-of-band): Apply it.
17449         (tramp-actions-before-shell, tramp-multi-actions):
17450         Add `tramp-action-process-alive' action.
17451         (tramp-action-process-alive): New defun.
17452         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
17453         Add entry for `file-remote-p'.
17454         (tramp-handle-file-remote-p): New defun.
17455         (top): Remove setting of `file-remote-p'.  Don't set
17456         `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
17458         * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
17459         `file-remote-p'.
17461         * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
17462         counted for (last) line.  [They should or they shouldn't?  --Stef]
17463         Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
17465 2004-05-29  Kai Grossjohann  <kai.grossjohann@gmx.net>
17467         * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
17468         not really necessary but seems to keep the shell history smaller
17469         in some cases.  It is no substitute for setting HISTFILE and
17470         HISTSIZE from tramp-open-connection-setup-interactive-shell,
17471         though.  Suggested by Luc Teirlinck.
17472         (tramp-open-connection-setup-interactive-shell): Export variables
17473         HISTFILE and HISTSIZE, do not just set them.  From Luc Teirlinck.
17474         (tramp-set-process-query-on-exit-flag): New compat function.
17475         (tramp-open-connection-multi, tramp-open-connection-su)
17476         (tramp-open-connection-rsh, tramp-open-connection-telnet)
17477         (tramp-do-copy-or-rename-file-out-of-band): Use it.
17478         (tramp-let-maybe): New macro, let-binds a variable only if it
17479         isn't obsolete.
17480         (tramp-check-ls-commands, tramp-handle-expand-file-name)
17481         (tramp-handle-file-truename): Use it.
17482         (tramp-completion-file-name-regexp-unified): Avoid matching
17483         filenames starting with "/:" -- those are reserved for
17484         file-name-non-special.
17486         * tramp-smb.el (tramp-smb-open-connection):
17487         Use tramp-set-process-query-on-exit-flag compat function.
17489 2004-05-29  Richard M. Stallman  <rms@gnu.org>
17491         * net/browse-url.el (browse-url-interactive-arg): Doc fix.
17493         * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
17494         (eval-last-sexp-print-value): Print char equivalent regardless
17495         of standard-output value.
17497         * thumbs.el (thumbs-subst-char-in-string): Delete.
17498         (thumbs-thumbname): Use subst-char-in-string.
17499         (thumbs-resize-image): Use condition-case, not ignore-errors.
17500         (thumbs-kill-buffer): Likewise.
17502         * thumbs.el: Don't include cl.  Don't bother with old Emacs versions.
17503         (thumbs-mode): Make buffer read-only.
17504         (thumbs-make-thumb): Unconditionally accept an existing file.
17505         (thumbs-insert-thumb): Add thumb-image-file property to the image.
17506         (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
17507         (thumbs-show-thumbs-list): Error if images not supported.
17508         (thumbs-save-current-image): Improve prompt string.
17509         (thumbs-mode-map): Define u, R, x.
17510         (thumbs-unmark): New command.
17511         (thumbs-emboss-image): Minor cleanup.
17512         (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
17513         (thumbs-rename-images): New command.
17514         (thumbs-show-image-num): Rewrite.  Don't rename the buffer.
17516         * thumbs.el (thumbs-current-image): New function.
17517         (thumbs-file-list, thumbs-file-alist): New functions.
17518         (thumbs-find-image): Delete arg L.
17519         Don't set up thumbs-fileL as buffer-local global var.
17520         (thumbs-find-image-at-point): Use thumbs-current-image.
17521         (thumbs-set-image-at-point-to-root-window): Likewise.
17522         (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
17523         Record and warn about errors.  Update thumbs-markedL for deletions.
17524         (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
17525         (thumbs-redraw-buffer): Use thumbs-file-list.
17526         (thumbs-mark): Use thumbs-current-image.
17527         (thumbs-show-name): Use thumbs-current-image.
17529         * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
17530         and imenu--last-menubar-index-alist.
17532         * subr.el (with-selected-window): Undo previous change.
17534 2004-05-29  John Paul Wallington  <jpw@gnu.org>
17536         * thumbs.el (thumbs-show-name): Do nothing if no image at point.
17537         (thumbs-mouse-find-image): New command.
17538         (thumbs-mode-map): Bind it to mouse-2.
17539         (thumbs-mode): Make mode-class special.
17540         (thumbs-view-image-mode): Likewise.
17542 2004-05-29  Pavel Kobiakov  <pk_at_work@yahoo.com>
17544         * flymake.el: New file.
17546 2004-05-28  Luc Teirlinck  <teirllm@auburn.edu>
17548         * files.el (find-file-noselect-1): Do not bind
17549         `inhibit-read-only' to t during execution of
17550         `find-file-not-found-functions'.
17552 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17554         * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
17555         * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
17557 2004-05-28  Juri Linkov  <juri@jurta.org>
17559         * simple.el (eval-expression-print-format): New fun.
17561         * simple.el (eval-expression):
17562         * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
17563         * emacs-lisp/edebug.el (edebug-compute-previous-result)
17564         (edebug-eval-expression): Print additionally the value returned by
17565         `eval-expression-print-format'.
17567         * emacs-lisp/lisp.el (insert-pair-alist): New var.
17568         (insert-pair): Make arguments optional.  Find character pair
17569         from `insert-pair-alist' according to the last input event.
17570         (insert-parentheses): Make arguments optional.
17571         (raise-sexp, delete-pair): New funs.
17573         * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
17574         (emacs-lisp-mode-map, lisp-interaction-mode-map):
17575         Bind C-M-q to `indent-pp-sexp'.
17577         * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
17578         `pp-to-string' modified to be able to format text with newlines.
17579         (pp-to-string): Move the buffer-formatting part of the code to
17580         `pp-buffer'.  Call `pp-buffer'.
17582         * info.el (Info-desktop-buffer-misc-data): Don't save information
17583         about virtual files.
17584         (Info-restore-desktop-buffer): Restore Info buffers in prepared
17585         buffers with names obtained from the desktop file instead of the
17586         default *info* buffer.
17588 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17590         * subr.el (with-selected-window): Only save/restore the selected
17591         window.
17593         * progmodes/compile.el (compilation-error-regexp-alist):
17594         Use expand-file-name and data-directory.
17596         * progmodes/grep.el (grep-tree): Rework previous fix.
17598         * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
17599         after the user marked text with the mouse.
17601         * startup.el (command-line): Keep the first regexp of
17602         auto-save-file-name-transforms intact.
17604 2004-05-28  Juanma Barranquero  <lektu@terra.es>
17606         * cus-edit.el (customize-face, customize-face-other-window)
17607         (custom-face-edit-delete): Make arguments match their use in
17608         docstring.
17609         (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
17610         docstring.
17612         * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
17613         not `cvs-butlast'.
17615         * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
17616         `nbutlast' are in subr.el).
17618         * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
17619         (set-w32-system-coding-system): Doc fixes.
17621         * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
17622         (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
17623         Make arguments match their use in docstring.
17624         (artist-draw-region-trim-line-endings)
17625         (artist-mouse-choose-operation): Fix typo in docstring.
17626         (artist-key-set-point-common): Doc fix.
17628 2004-05-28  Simon Josefsson  <jas@extundo.com>
17630         * mail/smtpmail.el (smtpmail-open-stream):
17631         Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
17633 2004-05-26  Simon Josefsson  <jas@extundo.com>
17635         * starttls.el: Merge with my GNUTLS based starttls.el.
17636         (starttls-gnutls-program, starttls-use-gnutls)
17637         (starttls-extra-arguments, starttls-process-connection-type)
17638         (starttls-connect, starttls-failure, starttls-success): New variables.
17639         (starttls-program, starttls-extra-args): Doc fix.
17640         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
17641         (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
17642         and pass on to corresponding *-gnutls function if it is set.
17644 2004-05-27  Luc Teirlinck  <teirllm@auburn.edu>
17646         * autorevert.el (auto-revert-handler): Disable auto-reverting of
17647         remote files.
17649 2004-05-27  Michael Albinus  <michael.albinus@gmx.de>
17651         * files.el (file-name-non-special): There are more operations
17652         which need handling: `find-backup-file-name',
17653         `insert-file-contents', `verify-visited-file-modtime',
17654         `write-region'.  Rename t value of method to `add'.  Add new
17655         methods `quote' and `unquote-then-quote' to file-arg-indices.
17657 2004-05-25  Juri Linkov  <juri@jurta.org>
17659         * info.el (Info-toc): Call Info-mode on intermediate buffer.
17660         (Info-index-nodes): Enclose code in condition-case to catch errors.
17661         (Info-index-node): Don't search all index nodes if request is only
17662         for the current node and file is not in the cache of index nodes.
17663         (Info-mode-map): Bind Info-copy-current-node-name to `w'
17664         for consistency with dired-copy-filename-as-kill.
17665         Bind `S' to Info-search-case-sensitively.
17666         (Info-copy-current-node-name): New arg.  With zero prefix arg put
17667         the name inside a function call to `info'.  Display copied text in
17668         the echo area.
17670 2004-05-25  Sam Steingold  <sds@gnu.org>
17672         * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
17673         strip the package prefix from the symbol name, if any.
17674         Make it the `find-tag-default-function' for `lisp-mode'.
17676 2004-05-25  John Paul Wallington  <jpw@gnu.org>
17678         * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
17679         instead of obsolete `process-kill-without-query'.
17681         * textmodes/texinfmt.el (texinfo-indexvar-alist):
17682         Declare as variable, not constant.
17684 2004-05-25  Luc Teirlinck  <teirllm@auburn.edu>
17686         * files.el (find-file-noselect-1): Fix bug introduced by
17687         Revision 1.694.  As a side effect, `inhibit-read-only'
17688         is again, by default, t during execution of
17689         `find-file-not-found-functions'.
17690         (insert-directory): Check that lines were really inserted by
17691         the --dired switch, before erasing them.
17693 2004-05-24  Nick Roberts  <nickrob@gnu.org>
17695         * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
17696         (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
17697         (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
17698         (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
17699         gud-minor-mode (gdbmi).
17701 2004-05-24  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny change)
17703         * net/browse-url.el (browse-url-interactive-arg): Enable user to
17704         explicitly select the text to be taken as URL.
17706 2004-05-23  Juri Linkov  <juri@jurta.org>
17708         * info.el (Info-index-nodes): New var and fun.
17709         (Info-goto-index, Info-index, info-apropos)
17710         (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
17711         (Info-index): Fix docstring.  Store and restore Info-history-list.
17712         (Info-complete-nodes): New var.
17713         (Info-complete-menu-item): Use it.
17714         (Info-index-node): New fun.
17715         (Info-final-node, Info-forward-node, Info-backward-node)
17716         (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
17717         Use Info-index-node.
17718         (Info-extract-menu-item, Info-extract-menu-counting): Set second
17719         arg of `Info-extract-menu-node-name' to non-nil for index nodes.
17720         (Info-find-node-2): If a node with period in its name not found,
17721         try to find a node without the name part after period.
17722         (Info-select-node): Call Info-fontify-node only if
17723         Info-fontify-maximum-menu-size is not nil.
17724         (info-apropos): Set Info-fontify-maximum-menu-size to nil.
17725         (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
17726         Preserve Info-history-list.
17727         (Info-toc): Set Info-current-file.
17728         (Info-build-toc): Move point to the beginning of the buffer.
17729         Add main-file variable.
17730         (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
17731         Use backslashed representation of the control character ^_.
17733         * textmodes/texinfmt.el (texinfo-print-index): Print index line
17734         numbers in the new Texinfo 4.7 format.
17736         * add-log.el (change-log-font-lock-keywords): Remove `:' from
17737         regexps for function and variable names.
17739         * descr-text.el (describe-property-list): Add [show] button for
17740         `syntax-table' property with action to pp to a separate buffer.
17741         (describe-char): Replace search-forward by re-search-forward with
17742         whitespace regexp after "character:" to not fail in too narrow windows.
17744         * simple.el (next-error-find-buffer): Add a rule to return
17745         next-error capable buffer if one window on the selected frame
17746         displays such buffer.
17748 2004-05-23  Nick Roberts  <nickrob@gnu.org>
17750         * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
17751         (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
17752         (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
17753         (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
17754         (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
17755         Handle new value for gud-minor-mode (gdbmi).
17756         (gdb-buffer-type, gdb-input-queue, gdb-prompting)
17757         (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
17758         Change from local to global gdb variable set.
17759         (gdb-ann3): Initialize above gdb variable set.
17760         (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
17761         (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
17762         (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
17763         (gdb-stopped, gdb-post-prompt, gdb-concat-output)
17764         (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
17765         (gdb-info-locals-handler, gdb-invalidate-assembler)
17766         (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
17767         set as global variables.
17768         (gdb-get-create-buffer): Don't make gud-comint buffer-local.
17769         Handle gdbmi.
17770         (gdb-info-breakpoints-custom): Fix regexp.
17771         (def-gdb-var): Delete.
17773         * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
17774         (gud-speedbar-buttons, gud-sentinel, gud-display-line)
17775         (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
17776         a new mode.  The file (gdb-mi.el) for this mode will be included
17777         with the GDB distribution (6.2 onwards) and will use GDB/MI as its
17778         primary interface.
17780 2004-05-23  Jesper Harder  <harder@ifa.au.dk>
17782         * progmodes/grep.el (grep-tree): Ensure that DIR argument is
17783         interpreted as a directory.
17785 2004-05-22  Richard M. Stallman  <rms@gnu.org>
17787         * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
17788         as a close quote.
17790         * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
17792         * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
17793         Use assoc-string, not assoc-ignore-case.
17795         * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
17797         * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
17798         If moving back then fwd gets a defun that ends before point,
17799         try again moving fwd then back.
17801         * files.el (file-name-non-special): Allow t in file-arg-indices
17802         to mean requote the return value.  Use `identity' as an element
17803         rather than as the whole value.
17805         * gs.el (gs-options): Add -dSAFER.  Mark it risky.
17807 2004-05-22  Juanma Barranquero  <lektu@terra.es>
17809         * help-fns.el (help-add-fundoc-usage): Use %S only for output of
17810         `help-make-usage'.
17811         (help-highlight-arguments): Skip function name before searching
17812         for arguments.
17814 2004-05-21  Juanma Barranquero  <lektu@terra.es>
17816         * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
17817         Don't mention in the docstring these arguments meant for
17818         internal (recursive) use only.
17819         (allout-char-spec): Comment out (it's not implemented).
17820         (allout-old-expose-topic, allout-exposure): Fix docstring and add
17821         obsolescence declaration.
17822         (allout-flatten-exposed-to-buffer)
17823         (allout-indented-exposed-to-buffer): Fix typos in docstring.
17824         (my-mark-marker): Doc fix.
17825         (produce-allout-mode-map, allout-sibling-index)
17826         (allout-isearch-expose, allout-distinctive-bullet)
17827         (allout-open-topic, allout-reindent-body)
17828         (allout-rebullet-heading, allout-process-exposed)
17829         (allout-insert-listified, allout-latex-verb-quote)
17830         (allout-insert-latex-header, allout-insert-latex-trailer):
17831         Make arguments match their use in docstring.
17832         (allout-primary-bullet, allout-old-style-prefixes)
17833         (allout-inhibit-protection, allout-init, allout-mode)
17834         (allout-before-change-protect, allout-flag-region):
17835         Use "Emacs" instead of "emacs" in docstrings.
17837 2004-05-21  Masayuki Ataka  <ataka@milk.freemail.ne.jp>  (tiny change)
17839         * international/characters.el: Modify syntax of more characters.
17841 2004-05-21  Masatake YAMATO  <jet@gyve.org>
17843         * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
17844         (etags-tags-completion-table): Show parsing progress.
17846 2004-05-20  Luc Teirlinck  <teirllm@auburn.edu>
17848         * locate.el (locate-prompt-for-command): Shorten first line of
17849         docstring.
17850         (locate-mode): Expand docstring and include keymap summary.
17852         * files.el (find-file-noselect-1): Limit the scope of the
17853         `inhibit-read-only' binding.  Make sure that `inhibit-read-only'
17854         is, by default, nil during the execution of
17855         `find-file-not-found-functions' and `find-file-hook'.
17857 2004-05-20  Michael Mauger  <mmaug@yahoo.com>
17859         * facemenu.el (facemenu-color-name-equal): New function.
17860         (list-colors-display): Use it to compare colors instead of
17861         facemenu-color-equal.
17863 2004-05-20  Dan Nicolaescu  <dann@ics.uci.edu>
17865         * compare-w.el (compare-windows-face): Use min-colors instead of
17866         checking for tty or pc types.
17868 2004-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17870         * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
17871         (completion-setup-function): Use with-current-buffer.
17872         Properly save excursion.  Simplify.
17873         Don't assume there is necessarily a `mouse-face' property somewhere.
17875         * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
17877         * progmodes/gdb-ui.el (gdb-reset): Use unless.  Fix regexp.
17879         * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
17880         (byte-compile-log-1): Don't call (byte-goto-log-buffer).
17881         Use with-current-buffer.
17882         (byte-goto-log-buffer): Delete.
17883         (byte-compile-log-file): Call compilation-forget-errors.
17885 2004-05-19  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
17887         * net/ldap.el (ldap-search-internal): Avoid mixing standard error
17888         output messages into the search result.
17890 2004-05-19  Masatake YAMATO  <jet@gyve.org>
17892         * wid-edit.el (widget-radio-button-notify): Revert my last
17893         change.  Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17895 2004-05-19  Kenichi Handa  <handa@m17n.org>
17897         * international/characters.el: Fix syntax (open/close) of CJK chars.
17899 2004-05-18  Karl Chen  <quarl@hkn.eecs.berkeley.edu>  (tiny change)
17901         * help-mode.el (help-go-back): Don't depend on position of back button.
17903 2004-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17905         * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
17906         files don't contain an accidental additional /.
17908         * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
17909         in source buffer.
17911 2004-05-18  Masatake YAMATO  <jet@gyve.org>
17913         * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
17914         to widget-apply.  :action method assumes 2 arguments, not 3.
17916 2004-05-17  Glenn Morris  <gmorris@ast.cam.ac.uk>
17918         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
17919         New constants.
17920         (hs-special-modes-alist): Add an f90-mode entry.
17922 2004-05-17  Sam Steingold  <sds@gnu.org>
17924         * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
17925         Indent "without-" forms just like "with-" and "do-".  Use regexp-opt.
17927 2004-05-16  Kim F. Storm  <storm@cua.dk>
17929         * emacs-lisp/timer.el (timer-event-handler): Fix last change.
17931 2004-05-15  John Wiegley  <johnw@newartisans.com>
17933         * eshell/esh-io.el (eshell-get-target): Whitespace changes.
17934         (eshell-output-object-to-target): Improve output speed 20% by not
17935         calling `eshell-stringify' if something is already known to be a
17936         string.
17938 2004-05-15  Alex Ott  <ott@jet.msk.su>
17940         * textmodes/ispell.el (ispell-local-dictionary-alist):
17941         Add windows-1251 to the choice of coding systems.
17942         (ispell-dictionary-alist-6): Add support for "russianw.aff",
17943         encoded in cp1251.
17945 2004-05-15  Dan Nicolaescu  <dann@ics.uci.edu>
17947         * progmodes/compile.el (compilation-warning-face)
17948         (compilation-info-face): Use min-colors.
17950 2004-05-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
17952         * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
17953         * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
17954         * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
17955         * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
17956         * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
17957         * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
17958         * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
17959         * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
17960         * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
17961         * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
17962         * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
17963         * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
17964         * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
17965         * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
17967 2004-05-15  Kim F. Storm  <storm@cua.dk>
17969         * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
17970         Use it to set triggered-p element of timer.
17971         (timer-event-handler): Set triggered-p element non-nil while running
17972         the timer function.
17974 2004-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
17976         * descr-text.el (describe-char-unicode-data)
17977         (describe-char-unicodedata-file): Re-enable the unicode code now that
17978         the licensing issues have been cleared in the unicode-4 license.
17979         (describe-text-properties-1): Remove unused `overlay' var.
17980         (describe-char): Remove unused var `buffer'.
17982 2004-05-14  David Ponce  <david@dponce.com>
17984         * tree-widget.el: New file.
17986 2004-05-13  Marcelo Toledo  <marcelo@gnu.org>
17988         * language/european.el ("Brazilian Portuguese"): Add support for
17989         Brazilian Portuguese.
17991 2004-05-13  John Wiegley  <johnw@newartisans.com>
17993         * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
17994         `recentf-mode' if this variable has been customized to t.
17996         * eshell/esh-test.el (eshell-test): Call the function
17997         `emacs-version' rather than trying to build a custom version string.
17999 2004-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18001         * net/telnet.el (telnet-mode): Use define-derived-mode.
18002         Don't modify the global value of comint-prompt-regexp.
18004 2004-05-13  John Paul Wallington  <jpw@gnu.org>
18006         * version.el (emacs-version): Check for `gtk' feature before
18007         `x-toolkit' feature.
18009 2004-05-13  Juanma Barranquero  <lektu@terra.es>
18011         * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
18012         arguments in the docstring, they're used only in recursive calls.
18014         * help-fns.el (help-arg-highlighting-function)
18015         (help-argument-name): Delete.
18016         (help-default-arg-highlight): New function.
18017         (help-do-arg-highlighting): Use it.
18019 2004-05-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
18021         * calendar/appt.el (appt-disp-window):
18022         Use `calendar-set-mode-line' for a centered mode-line.
18024 2004-05-13  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
18026         * calendar/appt.el (appt-disp-window): Do not split window
18027         excessively when `split-height-threshold' is low.
18029 2004-05-12  Nick Roberts  <nickrob@gnu.org>
18031         * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
18032         kill-buffer-hook here and make it local.
18033         (gud-kill-buffer-hook): Use kill-process for a sure kill.
18035 2004-05-12  Daniel Pfeiffer  <occitan@esperanto.org>
18037         * progmodes/compile.el (compilation-set-window-height):
18038         Use save-excursion to protect against misplaced marker.
18040 2004-05-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
18042         * custom.el (defface): Document that type can have value gtk.
18044         * faces.el (face-spec-set-match-display): Handle type gtk in display.
18046 2004-05-12  Kenichi Handa  <handa@m17n.org>
18048         * descr-text.el: Require quail at compile time.
18049         (describe-char): If an input method is on and it supports the
18050         character, show how to input it.
18052         * international/quail.el (quail-install-decode-map): Accept a
18053         char-table whose subtype is `quail-decode-map'.
18054         (quail-store-decode-map-key, quail-gen-decode-map1)
18055         (quail-gen-decode-map, quail-find-key1, quail-find-key)
18056         (quail-show-key): New functions.
18058 2004-05-12  Juanma Barranquero  <lektu@terra.es>
18060         * generic.el (define-generic-mode): Remove redundant arglist info.
18062         * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
18063         Make arguments match their use in docstring.
18064         (help-arg-highlighting-function): New variable.
18065         (help-argument-name): Mention it in the docstring.
18066         (help-do-arg-highlight): Use it.  Expand regexp to accept also
18067         ARG-xxx and xxx-ARG references.
18069 2004-05-11  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny change)
18071         * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
18072         parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
18073         and "mailto:addr1?to=addr2" equal.
18075 2004-05-11  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
18077         * man.el (Man-getpage-in-background): Use shell-file-name
18078         and shell-command-switch variables instead of hard-coded values.
18080 2004-05-11  Eli Zaretskii  <eliz@gnu.org>
18082         * iimage.el: New file.
18084 2004-05-11  Juanma Barranquero  <lektu@terra.es>
18086         * custom.el (custom-initialize-default, defcustom):
18087         Fix typo in docstring.
18089         * files.el (set-visited-file-name, file-expand-wildcards):
18090         Fix docstring.
18092 2004-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
18094         * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
18096         * subr.el (eventp): Be more discriminating with integers.
18098 2004-05-10  Daniel Pfeiffer  <occitan@esperanto.org>
18100         * progmodes/compile.el (compile): Add universal prefix arg.
18101         (compilation-error-regexp-alist-alist): Add edg patterns.
18103 2004-05-10  Sam Steingold  <sds@gnu.org>
18105         * textmodes/ispell.el (ispell-message):
18106         Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
18108 2004-05-10  Dave Love  <fx@gnu.org>
18110         * progmodes/python.el (help-buffer): Autoload when compiling.
18111         (python-after-info-look): Don't assume Info-goto-node returns non-nil.
18112         (run-python): Prepend to any existing PYTHONPATH.
18114 2004-05-10  Nick Roberts  <nick@nick.uklinux.net>
18116         * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
18117         for pending breakpoints.
18119 2004-05-10  Richard M. Stallman  <rms@gnu.org>
18121         * mail/unrmail.el (unrmail): Mostly rewritten.  Parses the file
18122         directly without calling any functions in Rmail.
18123         (unrmail-unprune): Function deleted.
18125 2004-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
18127         * progmodes/python.el (inferior-python-mode-map): Remove erroneous
18128         C-c C-z binding.
18130 2004-05-10  Kenichi Handa  <handa@m17n.org>
18132         * descr-text.el (describe-char): Fix previous change.  Don't make
18133         a unibyte character to multibyte in the *Help* buffer.
18135 2004-05-10  Miles Bader  <miles@gnu.org>
18137         * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
18138         buffer an error if the debugger process is actually running.
18140 2004-05-10  Juanma Barranquero  <lektu@terra.es>
18142         * help-fns.el (help-argument-name): Default to italic.
18143         (help-highlight-arguments): Return always (usage . doc), even when
18144         usage is nil.
18146         * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
18147         (define-ibuffer-filter): Add usage info.
18148         (define-ibuffer-op): Add usage info (but CL-style defaults for
18149         keyword args are not shown).
18151         * subr.el (remove-overlays, read-passwd): Fix docstring.
18152         (start-process-shell-command): Fix docstring.  Put usage info in a
18153         format usable by `describe-function'.
18154         (open-network-stream, open-network-stream-nowait)
18155         (open-network-stream-server): Fix docstring.
18157 2004-05-09  Jason Rumney  <jasonr@gnu.org>
18159         * international/code-pages (cp932, cp936, cp949, c950): Remove.
18160         Only define cp125* if windows-125* is already defined.
18162         * language/korean.el (cp949): Add alias.
18164         * language/chinese.el (cp936, cp950): Add aliases.
18166         * language/japanese.el (cp932): Add alias.
18168         * term/w32-win.el: Require code-pages.
18170         * international/mule-cmds.el (set-locale-environment):
18171         On MS-Windows use ansi code-page for default coding-systems.
18172         Set up paper sizes for Windows 3 letter languages.
18174         * international/code-pages.el (cp932, cp936, cp949, cp950):
18175         Add aliases.  Also add cp125* if not already defined.
18177 2004-05-09  Juanma Barranquero  <lektu@terra.es>
18179         * help-fns.el (help-highlight-arguments): Don't try to highlight
18180         missing or autoloaded arglists.  Accept structured arguments, like
18181         the first ones of `do' and `flet'.
18183         * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
18184         (cvs-get-marked): Remove redundant arglist info.
18186         * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
18187         Don't use CL-style default args.
18189 2004-05-08  Andreas Schwab  <schwab@suse.de>
18191         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
18193         * international/subst-ksc.el: Fix references to utf-translate-cjk
18194         into utf-translate-cjk-mode.
18195         * international/subst-big5.el: Likewise.
18196         * international/subst-gb2312.el: Likewise.
18197         * international/subst-jis.el: Likewise.
18198         * international/utf-16.el: Likewise.
18199         * international/utf-8.el: Likewise.
18201 2004-05-08  John Wiegley  <johnw@newartisans.com>
18203         * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
18204         "virtual buffers" (off by default), which makes it possible to
18205         switch to the "virtual" buffers of recently visited files.  When a
18206         buffer name search fails, and this option is on, iswitchb will
18207         look at the list of recently visited files, and permit matching
18208         against those names.  When the user hits RET on a match, it will
18209         revisit that file.
18210         (iswitchb-read-buffer): Add two optional arguments, which makes
18211         isearchb.el possible.
18212         (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
18213         (iswitchb-next-match): Add support for virtual buffers.
18215         * isearchb.el: This module extends iswitchb to provide "as you
18216         type" buffer selection.
18218         * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
18219         Ignore the read-only property when flyspell highlighting is on.
18220         Not ignoring it leads to a series of confusing errors.
18221         (flyspell-highlight-duplicate-region): Ignore read-only, as above,
18222         but also make sure to call flyspell-incorrect-hook.
18223         (flyspell-maybe-correct-transposition): Perform transposition test
18224         by bit twiddling a string, rather than using a temp buffer.
18225         (flyspell-maybe-correct-doubling): Use a string rather than a temp
18226         buffer.  This is also the original version of the code, which
18227         could not be checked in before due to a previous lack of
18228         assignment papers.  This version has seen heavy usage on my system
18229         for several years now.
18231         * calendar/cal-bahai.el: New file, which adds support for the
18232         Baha'i calendar to Emacs.  This calendar is based on a solar year
18233         of 19 months of 19 days, with 4 intercalary days.  Each year
18234         begins on March 21, with the calendar starting in 1844.
18236         * calendar/cal-menu.el, calendar/calendar.el
18237         * calendar/diary-lib.el, calendar/holidays.el:
18238         Added support for using cal-bahai.el.
18240         * eshell/em-glob.el (eshell-glob-initialize): Move initialization
18241         of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
18242         function can be used outside of eshell buffers.
18243         (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
18245 2004-05-08  Juanma Barranquero  <lektu@terra.es>
18247         * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
18248         word constituent so FOO-ARG is not recognized as an arg.
18249         (help-highlight-arguments): Don't skip lists in mandatory arguments.
18251         * simple.el (next-error): Fix typo in docstring.
18252         (open-line): Make argument names match their use in docstring.
18253         (split-line): Fix docstring.
18255         * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
18256         usable by `describe-function'.
18257         (gensym, gentemp, typep, ignore-errors): Make argument names match
18258         their use in docstring.
18260         * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
18261         argument to `help-setup-xref'.
18263 2004-05-07  Kai Grossjohann  <kai@emptydomain.de>
18265         Version 2.0.40 of Tramp released.
18267         * net/tramp.el (tramp-completion-mode, tramp-md5-function):
18268         Use symbol-function to invoke functions only known on some Emacs
18269         flavors.  This avoids byte-compiler warnings.  Reported by Kevin
18270         Scaldeferri <kevin@scaldeferri.com>.
18271         (tramp-do-copy-or-rename-file-via-buffer): Rename from
18272         tramp-do-copy-or-rename-via-buffer (without `file'), to make it
18273         consistent with the other tramp-do-* functions.
18274         (tramp-do-copy-or-rename-file): Calls adjusted.
18275         (tramp-process-initial-commands): Avoid liveness check on shell --
18276         we know that it must be alive since we're opening a connection at
18277         this moment.
18278         (tramp-last-cmd): New internal variable.
18279         (tramp-process-echoes): New tunable.
18280         (tramp-send-command): Set tramp-last-cmd.
18281         (tramp-wait-for-output): Delete echo, if applicable.
18282         (tramp-read-passwd): Construct the key for the password cache in a
18283         way that works for multi methods, too.
18284         (tramp-bug): Add backup-directory-alist and
18285         bkup-backup-directory-info to bug reports, with Tramp counterparts.
18287 2004-05-07  Michael Albinus  <michael.albinus@gmx.de>
18289         * net/tramp*.el: Suppress byte-compiler warnings where possible.
18291         * net/tramp.el (tramp-out-of-band-prompt-regexp)
18292         (tramp-actions-copy-out-of-band): New defcustoms.
18293         (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
18294         used instead of a synchronous one.  Allows password entering.
18295         (tramp-action-out-of-band): New defun.
18296         (tramp-open-connection-rsh, tramp-method-out-of-band-p):
18297         Remove restriction with password from doc string.
18298         (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
18299         `tramp-out-of-band-prompt-regexp',
18300         `tramp-actions-copy-out-of-band', `password-cache' and
18301         `password-cache-expiry'.
18302         (toplevel): Remove todo item wrt ssh-agent.  Obsolete due to
18303         password caching.
18304         (tramp-touch): FILE can be a local file, too.
18305         (TODO): Remove items done.
18306         (tramp-handle-insert-directory): Properly quote file name also if
18307         not full-directory-p.  Handle wildcard case.  Reported by Andreas
18308         Schwab <schwab@suse.de>.
18309         (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
18310         new file.
18311         (tramp-handle-file-local-copy, tramp-handle-write-region):
18312         The permissions of the temporary file are set if filename exists.
18313         Reported by Ted Stern <stern@cray.com>.
18314         (tramp-backup-directory-alist)
18315         (tramp-bkup-backup-directory-info): New defcustoms.
18316         (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
18317         (tramp-handle-find-backup-file-name): New function.
18318         Implements Tramp's find-backup-file-name.
18320         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
18321         for `find-backup-file-name'.
18323         * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
18324         ("file" -> "filename").  Reported by Kim F. Storm <storm@cua.dk>.
18326 2004-05-07  Lars Hansen  <larsh@math.ku.dk>
18328         * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
18330 2004-05-07  Juanma Barranquero  <lektu@terra.es>
18332         * subr.el (lambda): Add arglist description to docstring.
18333         (declare): Fix typo in docstring.
18334         (open-network-stream): Fix docstring.
18335         (process-kill-without-query): Fix docstring and add obsolescence info.
18336         (last, butlast, nbutlast): Make arguments match their use in docstring.
18337         (insert-buffer-substring-no-properties): Likewise.
18338         (insert-buffer-substring-as-yank): Likewise.
18339         (split-string): Fix docstring.
18341         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18342         Make argument names match their use in docstring.
18344         * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
18346 2004-05-06  Nick Roberts  <nickrob@gnu.org>
18348         * progmodes/gdb-ui.el: Improve/extend documentation strings.
18349         Fit first sentence on one line for apropos-command.
18351 2004-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
18353         Changes largely merged in from Dave Love's code.
18354         * progmodes/python.el: Doc fixes.
18355         (python-mode-map): Add python-complete-symbol.
18356         (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
18357         (python-comment-indent, python-complete-symbol)
18358         (python-symbol-completions, python-partial-symbol)
18359         (python-try-complete): New.
18360         (python-indent-line): Remove optional arg.  Use python-block-end-p.
18361         (python-check): Bind compilation-error-regexp-alist.
18362         (inferior-python-mode): Use rx.  Move keybindings to top level.
18363         Set comint-input-filter.
18364         (python-preoutput-filter): Use rx.
18365         (python-input-filter): Re-introduce.
18366         (python-proc): Start new process if necessary.
18367         Check python-buffer non-nil.
18368         (view-return-to-alist): Defvar.
18369         (python-send-receive): New.
18370         (python-eldoc-function): Use it.
18371         (python-mode-running): Don't defvar.
18372         (python-mode): Set comment-indent-function.
18373         Maybe update hippie-expand-try-functions-list.
18374         (python-indentation-levels): Initialize differently.
18375         (python-block-end-p): New.
18376         (python-indent-line): Use it.
18377         (python-compilation-regexp-alist): Augment.
18378         (run-python): Import `emacs' module to Python rather than loading
18379         code directly.  Set python-buffer differently.
18380         (python-send-region): Use emacs.eexecfile.  Fix orig-start calculation.
18381         Use python-proc.
18382         (python-send-command): Go to end of comint buffer.
18383         (python-load-file): Use python-proc, emacs.eimport.
18384         (python-describe-symbol): Simplify interactive form.
18385         Use emacs.help.  Do use temp-buffer-show-hook.
18386         Call print-help-return-message.
18387         (hippie-exp): Require when compiling.
18388         (python-preoutput-continuation): Use rx.
18390         * diff-mode.el (diff-make-unified): Fix regexp.
18392 2004-05-06  Romain Francoise  <romain@orebokech.com>  (tiny change)
18394         * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
18395         filter groups from the buffer when rebuilding the Ibuffer buffer
18396         and `ibuffer-show-empty-filter-groups' is nil.
18398 2004-05-06  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
18400         * ps-print.el (ps-print-quote): Call ps-value-string.
18401         (ps-setup): Call ps-comment-string.
18402         (ps-value-string, ps-comment-string): New funs.
18404 2004-05-06  Juanma Barranquero  <lektu@terra.es>
18406         * ehelp.el (electric-help-command-loop): Check whether the last
18407         character is visible, not (point-max).
18409         * help-fns.el (help-argument-name): Default to bold; don't inherit
18410         from font-lock-variable-name-face.
18411         (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
18413 2004-05-05  Kenichi Handa  <handa@m17n.org>
18415         * descr-text.el (describe-char): Copy the character with text
18416         properties and overlays into the first line, and call
18417         describe-text-properties on it.
18419 2004-05-05  Stephen Eglen  <stephen@anc.ed.ac.uk>
18421         * iswitchb.el (iswitchb-global-map): Fix typo.
18422         Remove unwanted ###autoloads from source file.
18424 2004-05-05  Lars Hansen  <larsh@math.ku.dk>
18426         * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
18427         in run-hooks.  Use substitute-command-keys in message.
18428         (wdired-abort-changes): Add message.
18430 2004-05-03  Michael Mauger  <mmaug@yahoo.com>
18432         * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
18433         (sql-emacs20-p): Remove.
18434         (sql-mode-syntax-table): Use shared GNU Emacs/XEmacs syntax.
18435         (sql-builtin-face, sql-doc-face): Remove.
18436         (sql-mode-ansi-font-lock-keywords)
18437         (sql-mode-oracle-font-lock-keywords)
18438         (sql-mode-postgres-font-lock-keywords)
18439         (sql-mode-linter-font-lock-keywords)
18440         (sql-mode-ms-font-lock-keywords)
18441         (sql-mode-mysql-font-lock-keywords): Use standard fonts.
18442         (sql-product-font-lock): Fix font-lock reset when font rules change.
18443         (sql-highlight-product): Remove incorrect font-lock reset logic.
18445 2004-05-04  Jonathan Yavner  <jyavner@member.fsf.org>
18447         * ses.el (ses-set-parameter): Fix typo.
18449 2004-05-04  Kim F. Storm  <storm@cua.dk>
18451         * ido.el (ido-read-internal): Fix call to read-file-name for edit.
18452         Must expand directory for completion to work; and don't mess with
18453         process-environment.
18454         (ido-read-file-name): If command has ido property, don't use ido
18455         if value is ignore, or read as directory if value is dir.
18456         Set ido ignore property for dired-do-rename command.
18458 2004-05-04  Juanma Barranquero  <lektu@terra.es>
18460         * ehelp.el (electric-help-command-loop, electric-help-undefined)
18461         (electric-help-help): Check against unmapped commands.
18463         * help-fns.el (help-argument-name): New face, inheriting from
18464         font-lock-variable-name-face, to highlight function arguments in
18465         `describe-function' and `describe-key'.
18466         (help-do-arg-highlight): Auxiliary function to highlight a given
18467         list of arguments in a string.
18468         (help-highlight-arguments): Highlight the function arguments and
18469         all uses of them in the docstring.
18470         (describe-function-1): Use it.  Do docstring output via `insert',
18471         not 'princ', so text attributes are preserved.
18473         * winner.el (winner-mode-map): Move `winner-undo' and
18474         `winner-redo' to C-c <left> and C-c <right>, respectively (the
18475         previous bindings conflict with `prev-buffer', `next-buffer').
18477 2004-05-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
18479         * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
18480         (bibtex-entry-update): New command bound to C-c C-u.
18481         (bibtex-text-in-string): Fix regexp.
18482         (bibtex-assoc-of-regexp): Remove.
18483         (bibtex-progress-message): Fix docstring.
18484         (bibtex-inside-field): Use if.
18485         (bibtex-assoc-regexp): New function.
18486         (bibtex-format-entry): Make code more robust so that it formats
18487         also old entries.
18488         (bibtex-autokey-demangle-title): Merge with obsolete function
18489         bibtex-assoc-of-regexp.
18490         (bibtex-field-list): New function.
18491         (bibtex-entry): Use bibtex-field-list.
18492         (bibtex-parse-entry): Fix docstring.
18493         (bibtex-print-help-message): Use bibtex-field-list.
18494         (bibtex-make-field): Use bibtex-field-list.
18495         (bibtex-entry-index): Bugfix.  Return crossref key if required.
18496         (bibtex-lessp): Fix docstring.
18498 2004-05-03  Luc Teirlinck  <teirllm@auburn.edu>
18500         * select.el (xselect-convert-to-string): Move comment to intended line.
18502 2004-05-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
18504         * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
18505         cut/copy/paste in case menu-bar-enable-clipboard is in effect.
18507 2004-05-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
18509         * term/x-win.el (x-clipboard-yank): Don't exit on error from
18510         x-get-selection.
18512 2004-05-03  Jason Rumney  <jasonr@gnu.org>
18514         * makefile.nt: Remove.
18516 2004-05-03  Kim F. Storm  <storm@cua.dk>
18518         * emulation/cua-base.el (cua--update-indications): Fix last change.
18519         (cua-mode): Deactivate mark when cua-mode is enabled.
18521 2004-05-02  Luc Teirlinck  <teirllm@auburn.edu>
18523         * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
18525 2004-05-03  Nick Roberts  <nickrob@gnu.org>
18527         * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
18528         (gdb-display-source-buffer, gdb-put-breakpoint-icon)
18529         (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
18530         window over visible frames.
18531         (gdb-goto-breakpoint): Make buffer display file at breakpoint.
18533 2004-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18535         * progmodes/compile.el (compilation-gcpro): New var.
18536         (compilation-fake-loc): Use it.
18537         (compilation-forget-errors): Reset it.
18539 2004-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
18541         * diff-mode.el (diff-header-face, diff-file-header-face):
18542         Use min-colors.
18544 2004-05-02  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
18546         * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
18547         (bibtex-clean-entry): Disentangle code.
18548         (bibtex-realign): New function.
18549         (bibtex-reformat): Use mapcar and bibtex-realign.  Do not use
18550         bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
18551         Remove undocumented optional arg called-by-convert-alien.
18552         (bibtex-convert-alien): Use bibtex-realign.  Use bibtex-reformat
18553         for sorting instead of bibtex-sort-buffer.
18555 2004-05-02  Eli Zaretskii  <eliz@gnu.org>
18557         * progmodes/compile.el (compilation-start): In the
18558         no-async-subprocesses branch, call sit-for to give redisplay a
18559         chance to show the updated process status in the mode line, and
18560         fontify the buffer explicitly after the process exits.
18562 2004-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18564         * progmodes/python.el (python-compilation-line-number): Remove.
18565         (python-compilation-regexp-alist): Don't use it any more.
18566         (python-orig-start, python-input-filter): Remove.
18567         (inferior-python-mode): Don't set up comint-input-filter-functions.
18568         (python-send-region): Use compilation-fake-loc.
18570         * progmodes/compile.el (compilation-messages-start): New var.
18571         (compilation-mode): Don't setup next-error-function here.
18572         (compilation-setup): Set it up here instead (for minor modes as well).
18573         Make compilation-messages-start buffer local.
18574         (compilation-next-error-function): Use it.
18575         (compilation-forget-errors): Set compilation-messages-start.
18577 2004-05-01  Luc Teirlinck  <teirllm@auburn.edu>
18579         * ielm.el (ielm-prompt-read-only): Update docstring.
18581         * comint.el (comint-prompt-read-only): Update docstring.
18582         (comint-update-fence, comint-kill-whole-line)
18583         (comint-kill-region): New functions.
18585         * simple.el (kill-whole-line): Use "p" instead of "P" in
18586         interactive form.
18588 2004-05-01  Juanma Barranquero  <lektu@terra.es>
18590         * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
18591         format arglist so default values in CL-style argument lists are
18592         correctly shown.
18594 2004-05-01  Jason Rumney  <jasonr@gnu.org>
18596         * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
18598 2004-05-01  Kenichi Handa  <handa@m17n.org>
18600         * international/titdic-cnv.el (miscdic-convert): Don't generate a
18601         quail file if it is up to date.
18603 2004-04-30  Juri Linkov  <juri@jurta.org>
18605         * cus-edit.el (custom-mode-map):
18606         Add key binding `C-x C-s' to `Custom-save'.
18608         * outline.el (outline-blank-line): New var.
18609         (outline-next-preface, outline-show-heading)
18610         (outline-end-of-subtree): Use it.
18612         * dired-aux.el (dired-touch-initial): New fun.
18613         (dired-do-chxxx): Call it for op-symbol `touch'.
18614         (dired-diff): Use `dired-dwim-target-directory'
18615         if current dired buffer has no buffer mark.
18617         * bindings.el (propertized-buffer-identification):
18618         Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
18619         Add C-M-arrow keys for consistency.
18621         * files.el (confirm-kill-emacs):
18622         Change group from top-level `emacs' to `convenience'.
18624         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
18625         Push mark on the first call of successive command calls.
18626         (insert-pair): New fun created from `insert-parentheses' with
18627         `open' and `close' arguments added.  Enclose active regions
18628         in paired characters.  Compare adjacent characters syntax with
18629         inserted characters syntax before inserting a space.
18630         (insert-parentheses): Call `insert-pair' with ?\( ?\).
18632         * delsel.el: Don't put `delete-selection' property
18633         on `insert-parentheses' symbol to take advantage of
18634         region handling in `insert-pair' function.
18635         Suggested by Stephan Stahl <stahl@eos.franken.de>.
18637 2004-04-30  Kim F. Storm  <storm@cua.dk>
18639         * emulation/cua-base.el: Add support for changing cursor types;
18640         based on patch from Michael Mauger.
18641         (cua-normal-cursor-color, cua-read-only-cursor-color)
18642         (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
18643         Customization cursor type and/or cursor color.
18644         (cua--update-indications): Handle cursor type changes.
18645         (cua-mode): Update cursor indications if enabled.
18647         * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
18649         * mouse.el (mouse-drag-copy-region): New defcustom.
18650         (mouse-set-region, mouse-drag-region-1): Use it.
18652         * simple.el (kill-ring-save): If region face background color is
18653         unspecified (if no highlighting), show extent of fully visible
18654         region even if transient-mark-mode is enabled.
18656         * emulation/cua-base.el (cua--standard-movement-commands):
18657         Add cua-scroll-up and cua-scroll-down.
18658         (cua-scroll-up, cua-scroll-down): New commands.
18659         (cua--init-keymaps): Remap scroll-up and scroll-down.
18661         * emulation/cua-rect.el (cua--convert-rectangle-as):
18662         New defmacro.
18663         (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
18664         (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
18665         New commands (suggested by Jordan Breeding).
18667 2004-04-30  Juanma Barranquero  <lektu@terra.es>
18669         * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
18671 2004-04-30  Mario Lang  <mlang@delysid.org>
18673         * diff.el (diff-switches): Fix typo in docstring.
18675 2004-04-30  Alex Schroeder  <alex@gnu.org>
18677         * xml.el (xml-debug-print-internal): Don't add newline and
18678         indentation to text nodes and write empty elements as empty tags
18679         instead of opening and closing tags.
18680         (xml-debug-print): Take optional indent-string argument.
18681         (xml-print): Alias for xml-debug-print.
18683 2004-04-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
18685         * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
18686         than duplicate call to `line-beginning-position'.
18688         * progmodes/f90.el (f90-get-present-comment-type):
18689         Return whitespace, as well as comment chars, for consistent filling
18690         of comment blocks.  Use `match-string-no-properties'.
18691         (f90-break-line): Trim trailing whitespace when filling comments.
18693 2004-04-30  Dave Love  <fx@gnu.org>
18695         * calendar/diary-lib.el (diary-outlook-formats): New variable.
18696         (diary-from-outlook-internal, diary-from-outlook)
18697         (diary-from-outlook-gnus, diary-from-outlook-rmail):
18698         New functions to import diary entries from Outlook-format
18699         appointments in mail messages.
18701 2004-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
18703         * progmodes/python.el (python-send-command): New fun.
18704         (python-send-region, python-load-file): Use it.
18706         * progmodes/compile.el (compilation-last-buffer): Add var alias.
18708         * help-fns.el (help-C-file-name): Use new subr-name.
18709         Prepend `src/' to the file name.
18710         (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
18711         (describe-function-1, describe-variable): Only find a C source file
18712         name if DOC is already loaded.
18714         * help-mode.el (help-function-def, help-variable-def):
18715         Use the new find-function-search-for-symbol functionality.
18716         Allow FILE to be `C-source'.
18718         * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
18719         (find-function-C-source): New fun.
18720         (find-function-search-for-symbol): Use it.
18722 2004-03-29  Michael Mauger  <mmaug@yahoo.com>
18724         * progmodes/sql.el (sql-product-alist): Rename variable
18725         `sql-product-support'.  Add Postgres login parameters.
18726         (sql-set-product, sql-product-feature): Update with renamed variable.
18727         (sql-connect-postgres): Add username prompt.
18728         (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
18729         Make patterns less product specific.
18730         (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
18731         (sql-mode-abbrev-table): Modify initialization.
18732         (sql-builtin-face): Add variable.
18733         (sql-keywords-re): Add macro.
18734         (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
18735         (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
18736         (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
18737         (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
18738         (sql-mode-linter-font-lock-keywords)
18739         (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
18740         (sql-mode-sybase-font-lock-keywords)
18741         (sql-mode-informix-font-lock-keywords)
18742         (sql-mode-interbase-font-lock-keywords)
18743         (sql-mode-ingres-font-lock-keywords)
18744         (sql-mode-solid-font-lock-keywords)
18745         (sql-mode-sqlite-font-lock-keywords)
18746         (sql-mode-db2-font-lock-keywords): Default to nil.
18747         (sql-product-font-lock): Always highlight ANSI keywords.
18748         (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
18749         (sql-send-string): Add function.
18751 2004-04-29  Dave Love  <fx@gnu.org>
18753         * progmodes/cfengine.el (cfengine-beginning-of-defun)
18754         (cfengine-end-of-defun): Ensure progress through buffer.
18756         * info-look.el (cfengine-mode): Accept a terminal ().
18758 2004-04-29  Juri Linkov  <juri@jurta.org>
18760         * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
18761         instead of isearch-yank-word-or-char.  Add new key bindings for
18762         isearch-yank-char to \C-f, and isearch-del-char to \C-b.
18763         (isearch-del-char): New fun.
18764         (isearch-forward, isearch-edit-string): Update docstring.
18765         (isearch-yank-char): Doc fix.
18766         (isearch-other-meta-char): Restore point after scrolling.
18768         * progmodes/compile.el (compilation-context-lines): Add nil option
18769         to disable compilation output window scrolling.
18770         (compilation-set-window): Use it.
18772         * outline.el (outline-next-preface, outline-show-heading):
18773         Don't leave unhidden blank line before heading.
18774         (outline-end-of-subtree): Include last newline into subtree.
18775         (hide-entry): Leave point at beginning of heading instead of end.
18776         (outline-up-heading): Push mark for the first call of successive
18777         command calls.
18779 2004-04-28  Luc Teirlinck  <teirllm@auburn.edu>
18781         * comint.el (comint-prompt-read-only): New variable.
18782         (comint-output-filter): Implement it.
18784         * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
18785         (ielm-prompt-internal): New variable.
18786         (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
18787         (ielm-send-input): Delete unused variable `buf'.
18788         (ielm-eval-input): Use `ielm-prompt-internal'.
18789         (inferior-emacs-lisp-mode): Use new variables
18790         `comint-prompt-read-only' and `ielm-prompt-internal'.
18791         Get rid of obsolete variable `directory-sep-char'.
18792         (ielm): Use `zerop'.
18794 2004-04-29  John Paul Wallington  <jpw@gnu.org>
18796         * thumbs.el (toplevel): Require cl at compile time.
18797         Remove conditional definitions of `ignore-errors' and `caddar'
18798         because they occur at run time.
18800 2004-04-28  Nick Roberts  <nickrob@gnu.org>
18802         * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
18803         (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
18804         (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
18805         (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
18807         * progmodes/gud.el (gud-common-init): Throw an error if program is
18808         already running under gdb.
18810 2004-04-28  John Paul Wallington  <jpw@gnu.org>
18812         * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
18813         (thumbs-show-image-num): Move assignment of
18814         `thumbs-current-image-filename' within scope of `i'.
18815         (thumbs-emboss-image): Don't use `evenp'.
18817 2004-04-28  Richard M. Stallman  <rms@gnu.org>
18819         * progmodes/compile.el (compilation-context-lines): Default now 0.
18821 2004-04-28  Juanma Barranquero  <lektu@terra.es>
18823         Use `time-less-p' from calendar/time-date.el instead of defining
18824         custom versions of it.
18826         * pcomplete.el (pcomplete-time-less-p): Remove.
18828         * thumbs.el (time-less-p): Remove.
18830         * calendar/timeclock.el (timeclock-time-less-p): Remove.
18831         (timeclock-generate-report): Use `time-less-p'.
18833         * emacs-lisp/autoload.el (autoload-before-p): Remove.
18834         (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
18836 2004-04-28  Masatake YAMATO  <jet@gyve.org>
18838         * subr.el (remove-overlays): Make arguments optional.
18840         * wid-edit.el (widget-specify-button): Put evaporate to the
18841         overlay for sample.
18842         (widget-specify-sample): Put evaporate to the overlay for sample.
18843         (widget-specify-doc): Put evaporate to the overlay for documentation.
18845 2004-04-27  Jesper Harder  <harder@ifa.au.dk>
18847         * info.el (info-apropos): Make it an index node.  Align node names
18848         like makeinfo.
18850 2004-04-27  Eli Zaretskii  <eliz@gnu.org>
18852         * net/browse-url.el (browse-url-netscape-sentinel)
18853         (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
18854         (browse-url-epiphany-sentinel, browse-url-mosaic):
18855         Use browse-url-*-program instead of a literal program name.
18857 2004-04-27  Kevin Ryde  <user42@zip.com.au>
18859         * eshell/em-alias.el:
18860         * eshell/em-dirs.el:
18861         * eshell/em-hist.el:
18862         * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
18863         features when M-x customize-group loads modules before the main
18864         eshell.el.
18866 2004-04-27  Matthew Mundell  <matt@mundell.ukfsn.org>
18868         * subr.el (momentary-string-display): Support EXIT-CHAR that is
18869         either a character representation of an event or an event
18870         description list.
18872         * type-break.el: Capitalize Emacs and Lisp.
18873         (type-break-good-break-interval, type-break-demo-boring-stats)
18874         (type-break-terse-messages, type-break-file-name): New defcustoms.
18875         (type-break-post-command-hook)
18876         (type-break-warning-countdown-string): Quote variable names in doc.
18877         (type-break-interval-start, type-break-auto-save-file-name): New vars.
18878         (type-break-mode): Document type-break-good-break-interval and the
18879         "session" file.  Schedule break according to the session file.
18880         Kill session file buffer on exit.  Organize for save-some-buffers
18881         to always save the session file.
18882         (type-break-mode-line-message-mode, type-break-query-mode):
18883         Uppercase arguments.
18884         (type-break-file-time, type-break-file-keystroke-count, timep)
18885         (type-break-choose-file, type-break-get-previous-time)
18886         (type-break-get-previous-count): New defuns.
18887         (type-break): Avoid break querying after a completed break in the
18888         case where the query was initiated during user invocation of the
18889         break.  Optional terse messages.
18890         Use type-break-good-break-interval if type-break-good-rest-interval is
18891         nil.  File the break time.
18892         (type-break-schedule): New optional args for overriding the use of
18893         the current time.
18894         (type-break-cancel-time-warning-schedule): Avoid leftover warnings
18895         after a break.
18896         (type-break-check): File the keystroke count.
18897         (type-break-do-query): Prevent a second query when the break is
18898         interrupted.  Optional terse message.
18899         (type-break-keystroke-reset): Record the start of a typing interval.
18900         (type-break-demo-boring): Optional terse messages.  Display word
18901         per minute and keystroke counts according to
18902         type-break-demo-boring-stats.
18904 2004-04-27  Daniel M Coffman  <coffmand@us.ibm.com>  (tiny change)
18906         * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
18907         directories, make sure they exist under archive-tmpdir.
18909 2004-04-27  Juri Linkov  <juri@jurta.org>
18911         * help.el (view-emacs-news): With argument, display info for the
18912         selected version by finding it among different NEWS files, and
18913         narrowing the buffer to the selected version.
18915         * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
18916         same-window-buffer-names.
18917         (info): New arg `buffer'.  Use it.  Doc fix.  Read file name for
18918         non-numeric prefix argument, append the number to the buffer name
18919         for numeric prefix argument.
18920         (info-other-window): Bind same-window-regexps to nil.
18921         (Info-reference-name): Rename to Info-point-loc.
18922         (Info-find-node-2): Call forward-line for numeric Info-point-loc,
18923         and Info-find-index-name for stringy Info-point-loc.
18924         (Info-extract-menu-node-name): New arg `index-node'.  Use regexp
18925         without middle `.', but with final `.' and optional line number
18926         for it.  Set Info-point-loc for index nodes.
18927         (Info-index): Remove middle `.' from index entry regexp.
18928         Modify line number regexp.
18929         (Info-index-next): Decrement line number.
18930         (info-apropos): Remove middle `.' from index entry regexp.
18931         Add optional line number regexp at the end.  Add matched value
18932         for line number to the result list and insert it to the buffer.
18933         Replace match-string by match-string-no-properties.
18934         Reorder result list.
18935         (Info-fontify-node): Hide index line numbers.
18936         (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
18937         empty matches.
18938         (Info-follow-reference): Use `str' instead of
18939         Info-following-node-name-re.
18940         (Info-toc): Use full file names.  Set Info-current-node to "Top".
18941         (Info-fontify-node): Compare file names without directory name.
18942         (Info-try-follow-nearest-node): Don't set Info-reference-name.
18943         Set second arg of Info-extract-menu-node-name for index nodes.
18944         (info-xref-visited): Use magenta3 instead of magenta4.
18945         (Info-mode): Add info-apropos to docstring.
18947         * log-view.el (log-view-diff): Replace interactive code "r"
18948         by a list to allow to call it even if region is not active.
18950         * paren.el (show-paren-highlight-openparen): New var.
18951         (show-paren-function): Turn on openparen highlighting when
18952         matching forward if show-paren-highlight-openparen is non-nil.
18954         * simple.el (kill-ring-save): Use blink-matching-delay instead of
18955         the constant value 1.
18956         (completions-common-part): Expand docstring.
18958         * textmodes/picture.el (picture-mode-map): Add arrow keys.
18960 2004-04-27  Kim F. Storm  <storm@cua.dk>
18962         * image.el (insert-sliced-image): Use line-height instead of
18963         line-spacing property on newline.
18965 2004-04-26  Lars Hansen  <larsh@math.ku.dk>
18967         * desktop.el (desktop-buffer-misc-data-function): Rename to
18968         desktop-save-buffer and change docstring.
18969         (desktop-buffer-modes-to-save): Delete.
18970         (desktop-save-buffer-p): Use desktop-save-buffer instead of
18971         desktop-buffer-modes-to-save.
18972         (desktop-save): Rename desktop-buffer-misc-data-function to
18973         desktop-save-buffer and allow non-function value.
18974         (desktop-missing-file-warning): Correct docstring.
18976         * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
18977         to desktop-save-buffer.
18979         * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
18980         desktop-save-buffer.
18982         * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
18984         * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
18986 2004-04-26  Eli Zaretskii  <eliz@gnu.org>
18988         * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
18990 2004-04-25  Luc Teirlinck  <teirllm@auburn.edu>
18992         * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
18993         (ielm): Only go to the end of the buffer when starting a new process.
18995 2004-04-25  Juanma Barranquero  <lektu@terra.es>
18997         * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
18998         mode line.  Bind `inhibit-read-only' to t before modifying
18999         properties of text in the buffer.
19000         (ielm): Force point to the end of buffer, even when running ielm
19001         from inside itself.
19003 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
19005         * info.el (info-apropos): Reset Info-complete-cache.
19007 2004-04-25  Daniel Pfeiffer  <occitan@esperanto.org>
19009         * progmodes/compile.el (compilation-error-regexp-alist-alist):
19010         Also recognize severe Irix et al. messages.
19011         (compilation-normalize-filename, compile-abbreviate-directory):
19012         Delete functions.
19013         (compilation-get-file-structure): New function inherits
19014         functionality of the two preceding ones.
19015         (compilation-internal-error-properties, compilation-fake-loc):
19016         Use it so that different paths to the same file share the same
19017         markers.  Also optimize finding adjacent marker slightly.
19019 2004-04-25  Kim F. Storm  <storm@cua.dk>
19021         * image.el (insert-sliced-image): Add line-spacing t property
19022         to newlines separating image lines.
19024 2004-04-24  Luc Teirlinck  <teirllm@auburn.edu>
19026         * comint.el (comint-delete-output): Bind inhibit-read-only to t.
19028         * ielm.el (ielm-prompt-read-only): New user option.
19029         (ielm-prompt): Expand docstring to describe new behavior.
19030         (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
19031         mention it in the docstring.
19033 2004-04-24  Andreas Schwab  <schwab@suse.de>
19035         * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
19037         * diff.el (diff): Set default-directory in diff buffer.
19039 2004-04-24  Eli Zaretskii  <eliz@gnu.org>
19041         * mail/sendmail.el (mail-bury): Don't delete the frame where the
19042         mail was being composed if the terminal cannot display more than
19043         one frame; instead, switch to previous frame.
19045         * mail/rmail.el (rmail-mail-new-frame): Doc fix.
19046         (rmail-start-mail): Support rmail-mail-new-frame even on
19047         terminals that can display only one frame at a time.
19049 2004-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19051         * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
19052         (checkdoc-output-font-lock-keywords): Remove error regexp.
19053         (checkdoc-output-mode-map): Remove.
19054         (checkdoc-output-mode): Derive from compilation-mode.
19055         (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
19057         * dired.el (dired-mode-map): Add a menu entry for wdired.
19059         * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
19060         (rx-bracket, rx-check-any, rx-any): Clean up name space.
19062         * wdired.el (wdired-mode-map): Move init into declaration.
19063         Fix `return' binding.
19064         (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
19065         Use force-mode-line-update.
19066         (wdired-get-filename): Use `unless'.
19067         (wdired-preprocess-files): Don't assume names have no \n and use / for
19068         dir separator.
19069         (wdired-normalize-filename): Use replace-regexp-in-string.
19070         (wdired-load-hooks): Remove.
19071         (wdired-mode-hooks): Rename to wdired-mode-hook.
19073         * info-look.el: Add support for cfengine-mode.
19074         (info-lookup-setup-mode): Use dolist.
19076 2004-04-23  Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba  <juan-leon.lahoz@tecsidel.es>
19078         * wdired.el: New file.
19080 2004-04-23  Juanma Barranquero  <lektu@terra.es>
19082         * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
19084         * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
19085         (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
19086         (pcomplete--help, pcomplete--here): Doc fixes.
19088 2004-04-23  Andre Spiegel  <spiegel@gnu.org>
19090         * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
19091         handles wrong-number-of-arguments in backend call.
19093         * vc.el (vc-print-log): Likewise.
19095 2004-04-20  Dave Love  <fx@gnu.org>
19097         * emacs-lisp/rx.el: Doc fixes.
19098         (rx-constituents): Add/extend many forms.
19099         (rx-check): Check form is a list.
19100         (bracket): Defvar.
19101         (rx-check-any, rx-any, rx-check-not): Modify.
19102         (rx-not): Simplify.
19103         (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
19104         (rx-kleene): Use rx-trans-forms.
19105         (rx-quote-for-set): Delete.
19106         (rx): Allow multiple args.
19108 2004-04-23  Kenichi Handa  <handa@m17n.org>
19110         * international/mule-util.el (char-displayable-p): Simplify by
19111         using internal-char-font.
19113 2004-04-23  Juanma Barranquero  <lektu@terra.es>
19115         * makefile.w32-in: Add "-*- makefile -*-" mode tag.
19117 2004-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
19119         * diff-mode.el (diff-next-error): New fun.
19120         (diff-mode): Use it.
19122         * simple.el (next-error): Change arg name.
19123         Add support for the documented C-u C-x ` usage.
19125         * frame.el (special-display-popup-frame, next-multiframe-window)
19126         (previous-multiframe-window): Only consider frames on same display.
19128 2004-04-22  Lars Hansen  <larsh@math.ku.dk>
19130         * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
19131         * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
19133 2004-04-22  Kim F. Storm  <storm@cua.dk>
19135         * net/telnet.el (telnet): Add optional port arg.
19137 2004-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19139         * progmodes/compile.el (compilation-mode-font-lock-keywords):
19140         Minor sanity check on the `hyperlink' slot.
19142         * Makefile.in (recompile): Compile new files.
19144         * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
19145         Add byte-recompile-directory's optional `arg'.
19147         * cvs-status.el (cvs-tree-use-charset): New var.
19148         (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
19149         (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
19150         (cvs-status-cvstrees): Use it.
19152         * emacs-lisp/checkdoc.el (checkdoc-output-mode):
19153         Make it a normal major mode.
19154         (checkdoc-buffer-label): Make sure the file name is meaningful.
19155         (checkdoc-output-to-error-buffer): Remove.
19156         (checkdoc-error, checkdoc-start-section): Rewrite.
19158         * info.el (info-node, info-menu-5, info-xref, info-header-node)
19159         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
19160         (Info-title-4-face): Use new syntax.
19161         (info-xref-visited): Inherit from info-xref.
19163         * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
19165 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
19167         * simple.el (next-error-last-buffer, next-error-function):
19168         New variables for the next-error framework.
19169         (next-error-buffer-p): New function.
19170         (next-error-find-buffer): Generalize compilation-find-buffer.
19171         (next-error, previous-error, first-error, next-error-no-select)
19172         (previous-error-no-select): Move from compile.el.
19174         * replace.el (occur-next-error, occur-1): Hook into the next-error
19175         framework.
19177         * progmodes/compile.el (compilation-start):
19178         Set next-error-last-buffer so next-error knows where to jump.
19179         (compilation-setup): Set the buffer-local variable
19180         next-error-function to 'compilation-next-error-function.
19181         (compilation-buffer-p, compilation-buffer-internal-p): Use an
19182         alternate way to find if a buffer is a compilation buffer, for
19183         next-error convenience.
19184         (next-error-no-select, previous-error-no-select, next-error)
19185         (previous-error, first-error): Move to simple.el.
19186         (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
19187         (compilation-last-buffer): Remove.
19188         (compilation-start, compilation-next-error, compilation-setup)
19189         (compilation-next-error-function, compilation-find-buffer):
19190         Remove compilation-last-buffer use.
19192 2004-04-21  Juanma Barranquero  <lektu@terra.es>
19194         * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
19195         (font-lock-warning-face): Fix spacing.
19197         * makefile.w32-in (WINS): Add url/ directory.
19199 2004-04-21  Lars Hansen  <larsh@math.ku.dk>
19201         * desktop.el (desktop-buffer-mode-handlers): New variable.
19202         Alist of major mode specific functions to restore a desktop buffer.
19203         (desktop-buffer-handlers): Make variable obsolete.
19204         (desktop-create-buffer): Use desktop-buffer-mode-handlers.
19205         Catch errors signaled in handlers.  Update buffer count.
19206         Evaluate desktop-buffer-point.
19207         (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
19208         move to dired.el.
19209         (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
19210         move to info.el.
19211         (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
19212         move to mail/rmail.el.
19213         (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
19214         to mh-e/mh-e.el.
19215         (desktop-buffer-file): Rename to desktop-restore-file-buffer.
19216         On fail, print message (to message buffer) even if
19217         desktop-missing-file-warning is nil.
19218         (desktop-buffer-misc-data-function): New buffer local variable.
19219         Function returning major mode specific data.
19220         (desktop-buffer-misc-functions): Make variable obsolete.
19221         (desktop-save): Use desktop-buffer-misc-data-function.
19222         (desktop-buffer-dired-misc-data): Rename to
19223         dired-desktop-buffer-misc-data and move to dired.el.
19224         (desktop-buffer-info-misc-data): Rename to
19225         Info-desktop-buffer-misc-data and move to info.el.
19226         (desktop-read): Add message about number of buffers restored/failed.
19228         * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
19229         Add parameters.  Pause to display error only when
19230         desktop-missing-file-warning is non-nil.
19231         (dired-desktop-buffer-misc-data): Move from desktop.el.  Add parameter.
19232         (dired-mode): Bind desktop-buffer-misc-data-function.
19234         * info.el (Info-restore-desktop-buffer): Move from desktop.el.
19235         Add Parameters.
19236         (Info-desktop-buffer-misc-data): Move from desktop.el.  Add parameter.
19237         (Info-mode): Bind desktop-buffer-misc-data-function.
19239         * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
19240         Add Parameters.
19242         * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
19243         Add Parameters.
19245 2003-04-21  Paul Pogonyshev  <pogonyshev@gmx.net>
19247         * dabbrev.el (dabbrev--substitute-expansion): Don't lose
19248         the case of letters in case-insensitive expansions when the
19249         abbrev is preceded by characters with letter syntax.
19251 2004-04-21  Richard M. Stallman  <rms@gnu.org>
19253         * progmodes/cperl-mode.el (cperl-putback-char):
19254         Delete Emacs 18 definition.
19256         * international/mule.el (ctext-post-read-conversion):
19257         Use assoc-string, not assoc-ignore-case.
19259         * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
19261         * emacs-lisp/easymenu.el (easy-menu-add):
19262         Do call x-popup-menu, but only if it's defined.
19264         * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
19266         * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
19267         Handle multiple args: compile like progn.
19269         * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
19270         take all args as &rest arg.
19272         * autoinsert.el (auto-insert-alist): Insert the user's name in
19273         copyright notice, rather than Free Software Foundation.
19275 2004-04-21  Kenichi Handa  <handa@m17n.org>
19277         * descr-text.el (describe-char): Make it work on *Help* buffer.
19279 2004-04-21  Kim F. Storm  <storm@cua.dk>
19281         * image.el (insert-image): Add optional SLICE arg.
19282         (insert-sliced-image): New defun.
19284 2004-04-20  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
19286         * subr.el (read-number): Check whether `default' is nil.
19288 2004-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19290         * progmodes/compile.el (compilation-error-properties): Split into
19291         two.
19292         (compilation-internal-error-properties): New one.
19293         (compilation-compat-error-properties): Use it.  Fix the non-marker
19294         case.
19296 2004-04-20  Richard M. Stallman  <rms@gnu.org>
19298         * window.el (split-window-save-restore-data):
19299         Don't update the data if OLD-INFO is nil.
19301         * view.el (view-return-to-alist): Mark it permanent local.
19303         * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
19305         * recentf.el (recentf-save-list): Catch and warn about errors.
19307         * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
19308         so "Buffers" won't be pure.
19310         * help-mode.el (help-mode-finish): Set help-return-alist first
19311         thing, setting only the entry for the selected window.
19313         * help-fns.el (describe-function-1): If many non-control non-meta
19314         keys run the command, don't list all of them.
19316 2004-04-20  Juanma Barranquero  <lektu@terra.es>
19318         * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
19319         arg.  Copied from Andre Spiegel's patch of 2004-03-21.
19321         * calendar/time-date.el (time-to-day-in-year): Fix docstring.
19323 2004-04-20  Kenichi Handa  <handa@m17n.org>
19325         * international/quail.el (quail-lookup-key): New optional arg
19326         NOT-RESET-INDICES.
19327         (quail-get-translations): Call quail-lookup-key with
19328         NOT-RESET-INDICES t.
19329         (quail-completion): Likewise.
19330         (quail-lookup-map-and-concat): Likewise.
19332 2004-04-20  Kenichi Handa  <handa@m17n.org>
19334         * international/quail.el (quail-update-translation): Don't insert
19335         such an unsupported multibyte char in a unibyte buffer.
19337 2004-04-20  Nick Roberts  <nick@nick.uklinux.net>
19339         * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
19340         (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
19341         (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
19342         (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
19343         (gdb-frame-assembler-buffer): Improve behavior with
19344         multiple frames.
19345         (gdb-display-buffer): Extend search to all visible frames.
19347 2004-04-19  Eli Zaretskii  <eliz@gnu.org>
19349         * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
19350         characters left after base64 decoding.
19351         (rmail-decode-region): Use -dos variety of `coding', to remove any
19352         ^M characters left after qp or base64 decoding.
19354 2004-04-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
19356         * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
19357         messages.
19359 2004-04-19  Stephen Eglen  <stephen@gnu.org>
19361         * add-log.el (add-change-log-entry): Update doc string to mention
19362         add-log-full-name and add-log-mailing-address.
19364 2004-04-18  Juri Linkov  <juri@jurta.org>
19366         * info.el (Info-find-file, Info-find-node-2): Add history and toc.
19367         (Info-find-node-2): Simplify error message.
19368         (Info-insert-dir): Use Info-following-node-name.
19369         (Info-goto-node): Remove *info-history* and *info-toc*.
19370         (Info-history): Create a node of the virtual history file.
19371         (Info-toc): Create a node of the virtual toc file.
19372         (Info-insert-toc): New arg `curr-file' for reference file names.
19373         (info-apropos): Remove redundant var binding for temp-file.
19374         (Info-index, Info-index-next, Info-mode): Doc fix.
19375         (Info-goto-emacs-command-node): Don't jump to *info* from
19376         non-*info* Info buffers.
19377         (Info-fontify-node): Don't show the file name of external
19378         references if `Info-hide-note-references' is `hide'.  Don't hide
19379         newlines at the end of paragraphs.
19381         * international/mule-diag.el (list-input-methods):
19382         Fix args to help-xref-button.
19384         * help-fns.el (help-with-tutorial): Call `hack-local-variables'
19385         to put into effect local variables from TUTORIAL files.
19387         * textmodes/paragraphs.el (sentence-end) <function>: New fun
19388         with default value taken from the variable `sentence-end'.
19389         (sentence-end) <defcustom>: Set default to nil.  Doc fix.
19390         Add nil const to :type.
19391         (sentence-end-without-period, sentence-end-double-space)
19392         (sentence-end-without-space): Doc fix.
19394         * textmodes/paragraphs.el (forward-sentence):
19395         * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
19396         (fill-delete-newlines):
19397         * progmodes/cc-cmds.el (c-beginning-of-statement):
19398         Use function `sentence-end' instead of variable `sentence-end'.
19400 2004-04-18  Andreas Schwab  <schwab@suse.de>
19402         * progmodes/compile.el (compilation-start): Set window start to
19403         point-min if compilation-scroll-output is nil.
19405 2004-04-18  John Wiegley  <johnw@newartisans.com>
19407         * iswitchb.el (iswitchb-completions): Remove dependency on cl.
19409 2004-04-18  Nick Roberts  <nick@nick.uklinux.net>
19411         * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
19412         (gdb-info-breakpoints-custom): Revert previous change.
19413         (gdb-view-assembler): Update assembler if necessary.
19414         (gdb-frame-handler): Parse correctly for gdb-current-frame.
19415         (gdb-display-source-buffer): Update properly when both source and
19416         assembler are visible.
19418 2004-04-17  John Wiegley  <johnw@newartisans.com>
19420         * iswitchb.el (iswitchb-max-to-show): Add a new config variable
19421         which limits the number of names shown in the minibuffer.  Off by
19422         default.
19423         (iswitchb-completions): Use `iswitchb-max-to-show'.  This speeds
19424         up iswitchb for users with a multitude of open buffers by showing
19425         only the first and last N/2 buffers in the completion list (which
19426         is enough to aid C-s/C-r, and to know that more characters are
19427         needed to refine the completion list).
19429 2004-04-17  Richard M. Stallman  <rms@gnu.org>
19431         * files.el (locate-file-completion): Handle nil in path-and-suffixes.
19432         (file-truename): Expand all ~ constructs directly.
19433         (insert-directory): Delete any error msg output by the
19434         `insert-directory-program'.
19436         * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
19437         (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
19438         (allout-prior-bindings, allout-added-bindings): Defvars deleted.
19439         (allout-init): Use find-file-hook, not find-file-hooks.
19440         (allout-mode): Eliminate Emacs 18 support.
19441         Use write-contents-functions, not local-write-file-hooks.
19443 2004-04-17  Daniel Pfeiffer  <occitan@esperanto.org>
19445         * progmodes/compile.el (compilation-error-properties): Fix for
19446         adding messages when there are already markers for their file.
19447         (compilation-fake-loc): New function.
19449 2004-04-16  Dave Love  <fx@gnu.org>
19451         * progmodes/python.el (python-compilation-line-number): Fix
19452         braindamage.
19453         (python-load-file): Fix python-orig-start setting.
19455         * progmodes/compile.el: Doc fixes.
19456         (compilation-error-regexp-alist-alist)
19457         (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
19458         (compilation-assq): Wrap in eval-when-compile.
19459         (compilation-mode-font-lock-keywords): Don't use list*.
19460         (compilation-start): Avoid warning.
19461         (compilation-compat-error-properties)
19462         (compilation-directory-properties): Add keymap property.
19463         (compilation-parsing-end): Make it a marker for better compatibility.
19465         * progmodes/python.el (python-after-info-look): Use with-no-warnings.
19467 2004-04-16  Mark A. Hershberger  <mah@everybody.org>
19469         * xml.el: Doc fixes.
19470         (xml-get-children): Only looks at sub-tags and ignore strings.
19472         * xml.el (xml-parse-tag): Avoid overwriting node-name.
19474 2004-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19476         * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
19478 2004-04-16  Andre Spiegel  <spiegel@gnu.org>
19480         * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
19482         * vc.el (vc-print-log): Likewise.
19484 2004-04-16  Masatake YAMATO  <jet@gyve.org>
19486         * simple.el (completion-setup-function): Set an initial value to
19487         `element-common-end' before entering loop.  Set a value to
19488         `element-common-end' at the end of loop.  The bug is reported by
19489         Juri Linkov <juri@jurta.org> in emacs-devel list.
19490         (completions-common-part): Rename from completion-de-emphasis.
19491         (completions-first-difference): Rename from completion-emphasis.
19492         Suggested by RMS.
19494 2004-04-16  Juanma Barranquero  <lektu@terra.es>
19496         * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
19497         (bookmark-edit-annotation-mode): Add mode name.
19499 2004-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19501         * smerge-mode.el (smerge-match-conflict): Try to do something sensible
19502         for nested conflict markers.
19503         (smerge-find-conflict): Better handle errors in smerge-match-conflict.
19505 2004-04-15  Nick Roberts  <nick@nick.uklinux.net>
19507         * progmodes/gdb-ui.el (gdb-goto-info): New function.
19509         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
19511 2004-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
19513         * emacs-lisp/bytecomp.el (batch-byte-compile-file):
19514         Give a backtrace if requested.
19516         * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
19518         * progmodes/python.el (python-mouse-2-command, python-RET-command):
19519         Remove unused functions.
19520         (python-orig-start-line, python-orig-file): Remove.
19521         (python-orig-start): New var.
19522         (python-input-filter, python-compilation-line-number)
19523         (python-send-region, python-load-file): Use it.
19525         * info.el (info): Always jump to *info*.
19527         * subr.el (posn-set-point): New function.
19529         * mouse.el (mouse-set-point): Use it.
19531         * progmodes/compile.el (compile-goto-error): Use it.
19532         (compilation-button-map): New keymap.
19533         (compilation-error-properties): Use it.
19534         (compilation-shell-minor-mode-map): Don't bind mouse-2.
19536         * smerge-mode.el (smerge-popup-context-menu): Use it.
19538         * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
19539         (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
19540         mouse and non-mouse case.
19542         * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
19543         (diff-mouse-goto-source): Make it an alias of diff-goto-source.
19545         * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
19546         Make it work for non-mouse events.
19548         * pcvs-info.el (cvs-status-map): Update binding name.
19550 2004-04-14  Mark A. Hershberger  <mah@everybody.org>
19552         * xml.el (xml-maybe-do-ns): New function to handle namespace
19553         parsing of both attribute and element names.
19554         (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
19555         (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
19556         (xml-parse-tag): Update assumed namespaces.  Clean up namespace
19557         parsing.
19558         (xml-parse-attlist): Make it do its own namespace parsing.
19560 2004-04-14  Dave Love  <fx@gnu.org>
19562         * progmodes/python.el (run-python): Fix use of \n.
19563         (python-load-file): Remove `try' from Python fragment.
19564         (python-describe-symbol): Fix message.
19566         * comint.el: Doc fixes.
19567         (comint-last-input-start, comint-last-input-end)
19568         (comint-last-output-start): Give them values.
19569         (comint-arguments): Avoid warning.
19570         (comint-skip-prompt): Use line-end-position.
19571         (comint-backward-matching-input): Rename arg to agree with doc.
19572         (comint-extract-string): Use syntax-ppss.
19573         (comint-dynamic-simple-complete): Delete useless list construction.
19574         (comint-redirect-subvert-readonly): New.
19575         (comint-redirect-preoutput-filter): Use it.
19577         * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
19578         Correctly handle negative arguments when calling hook functions.
19580 2004-04-14  Jesper Harder  <harder@ifa.au.dk>
19582         * info.el (info-apropos): Don't clobber Info-history-list.
19584 2004-04-14  Daniel Pfeiffer  <occitan@esperanto.org>
19586         * progmodes/compile.el (compilation-setup):
19587         Localize overlay-arrow-position.
19588         (compilation-sentinel): Restructure code equivalently.
19589         (compilation-next-error): Find message on same line after point if
19590         not found before point.
19591         (compile-mouse-goto-error): Restore function so that compilation
19592         buffer need not be current and use compile-goto-error.
19593         (compile-goto-error): Restore function.
19594         (next-error): Set overlay-arrow-position.
19595         (compilation-forget-errors): Don't localize already local
19596         compilation-locs and remove FIXME about refontifying.
19598 2004-04-14  Kim F. Storm  <storm@cua.dk>
19600         * startup.el (emacs-quick-startup): New defvar (set by -Q).
19601         (command-line): New option -Q.  Like -q --no-site-file, but in
19602         addition it also disables menu-bar, tool-bar, scroll-bars,
19603         tool-tips, and the blinking cursor.
19604         (command-line-1): Skip startup screen if -Q.
19605         (fancy-splash-head): Use ":align-to center" prop to center splash
19606         image.
19608         * emulation/cua-base.el (cua-read-only-cursor-color)
19609         (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
19611 2004-04-13  Dave Love  <fx@gnu.org>
19613         * progmodes/python.el: Doc fixes.  Changes for compiler warnings.
19614         (syntax): Don't require.
19615         (python) <defgroup>: Add :version.
19616         (python-quote-syntax): Re-written.
19617         (inferior-python-mode): Move stuff here from run-python and add
19618         some more.
19619         (python-preoutput-continuation, python-preoutput-result)
19620         (python-dotty-syntax-table): New.
19621         (python-describe-symbol): Use them.
19622         (run-python): Move stuff to inferior-python-mode.  Modify code
19623         loaded into Python.
19624         (python-send-region): Use python-proc, python-send-string.
19625         (python-send-string): Send newlines too.  Callers changed.
19626         (python-load-file): Re-written.
19627         (python-eldoc-function): New.
19628         (info-look): Don't require.
19629         (python-after-info-look): New.  A modified version of former
19630         top-level code for use with eval-after-load.
19631         (python-maybe-jython, python-guess-indent): Use widened buffer.
19632         (python-fill-paragraph): Re-written.
19633         (python-mode): Fix outline-regexp.  Set outline-heading-end-regexp,
19634         eldoc-print-current-symbol-info-function.  Add to eldoc-mode-hook.
19636 2004-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
19638         * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
19639         Set compilation-error-regexp-alist earlier.
19641         * progmodes/compile.el (compilation-minor-mode-map)
19642         (compilation-shell-minor-mode-map, compile-mouse-goto-error)
19643         (compile-goto-error): Re-merge the mouse and non-mouse commands.
19645 2004-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19647         * progmodes/compile.el (compile-goto-error): Select the buffer/window
19648         corresponding to the event.
19650 2004-04-12  Joe Buehler  <jbuehler@hekiman.com>
19652         * loadup.el: Add cygwin to system-type list, for unexec() support.
19654 2004-04-12  John Paul Wallington  <jpw@gnu.org>
19656         * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
19657         (ibuffer-restore-window-config-on-quit): New variable to replace
19658         `ibuffer-delete-window-on-quit'.  Update all references.
19659         (ibuffer-prev-window-config): New variable.
19660         (ibuffer-quit): Restore previous window configuration instead of
19661         deleting window.
19662         (ibuffer): Save window configuration before showing Ibuffer buffer.
19664         * help.el (describe-mode): Doc fix.
19666 2004-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19668         * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
19669         not to treat nil as a function.
19671         * vc-arch.el (vc-arch-root): Be a bit more careful.
19672         (vc-arch-register): Save the buffer if we modified it.
19673         (vc-arch-delete-rej-if-obsolete): Save excursion.
19674         (vc-arch-find-file-hook): Use the simpler after-save-hook.
19675         (vc-arch-responsible-p, vc-arch-init-version): New functions.
19677         * net/ldap.el (ldap-search): Use list*.
19679 2004-04-12  Juri Linkov  <juri@jurta.org>
19681         * info.el (Info-follow-reference): Allow multiline reference name.
19683 2004-04-11  Dave Love  <fx@gnu.org>
19685         * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
19687         * progmodes/python.el: New file.
19689 2004-04-11  Andre Spiegel  <spiegel@gnu.org>
19691         * vc-hooks.el (vc-arg-list): Function removed.
19692         (vc-default-workfile-unchanged-p): Use condition-case to check for
19693         backward compatibility.
19695         * vc.el (vc-print-log): Use condition-case to check for backward
19696         compatibility.
19698 2004-04-11  Juri Linkov  <juri@jurta.org>
19700         * dired.el (dired-faces): New defgroup.
19701         (dired-header, dired-mark, dired-marked, dired-flagged)
19702         (dired-warning, dired-directory, dired-symlink, dired-ignored):
19703         New faces.
19704         (dired-header-face, dired-mark-face, dired-marked-face)
19705         (dired-flagged-face, dired-warning-face, dired-directory-face)
19706         (dired-symlink-face, dired-ignored-face): New face variables.
19707         (dired-font-lock-keywords): Use them instead of font-lock faces.
19708         Split the rule for dired marks into 3 separate rules: for marks,
19709         marked file names and flagged file names.
19711         * help-mode.el (help-make-xrefs): Add a final newline to the
19712         *Help* buffer.
19714 2004-04-11  John Paul Wallington  <jpw@gnu.org>
19716         * replace.el (occur-engine): Distinguish between one and several
19717         matches in the matches per buffer heading.
19719 2004-04-11  Kim F. Storm  <storm@cua.dk>
19721         * ido.el (ido-confirm-unique-completion): New defcustom.
19722         (ido-complete): Use it.
19723         (ido-write-file): Set it to t unconditionally.
19725 2004-04-10  Miles Bader  <miles@gnu.org>
19727         RCS keyword removal (only non-comment changes are enumerated here):
19729         * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
19730         (byte-compile-insert-header): Don't use `byte-compile-version'.
19731         * forms.el (forms-version): Variable removed.
19732         (forms-mode): Don't use `forms-version'.
19733         * recentf.el (recentf-version): Variable removed.
19734         * progmodes/delphi.el (delphi-version): Variable removed.
19735         * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
19737 2004-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
19739         * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
19741 2004-04-09  Jesper Harder  <harder@ifa.au.dk>
19743         * info.el (info-apropos): Improve menu item regexp.
19745 2004-04-09  Simon Josefsson  <jas@extundo.com>
19747         * mail/smtpmail.el: Add comment, based on report by
19748         kdc@rcn.com (Kevin D. Clark).
19750 2004-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
19752         * progmodes/compile.el (compilation-mode-font-lock-keywords):
19753         Redo one more thing that I didn't notice Daniel had undone.
19755 2004-04-08  Nick Roberts  <nick@nick.uklinux.net>
19757         * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
19758         (gdb-goto-breakpoint, gdb-display-buffer)
19759         (gdb-display-source-buffer, gdb-view-source-function)
19760         (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
19761         (gdb-source-info, gdb-frame-handler): Don't specify a window
19762         for display.
19763         (gdb-info-breakpoints-custom): Remove superfluous update of
19764         assembler buffer.
19765         (gdb-many-windows): Make settable outside gdb.
19767 2004-04-08  Glenn Morris  <gmorris@ast.cam.ac.uk>
19769         * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
19770         Derive from fundamental-mode rather than text-mode.
19772 2004-04-08  Juri Linkov  <juri@jurta.org>
19774         * info.el (Info-history): Doc fix.
19775         (Info-history-list): New var.
19776         (info-xref): Change magenta4 to blue, remove bold for dark and
19777         light backgrounds, change bold to underline for non-color classes.
19778         (info-xref-visited): New face.
19779         (Info-fontify-visited-nodes): New custom.
19780         (Info-hide-note-references): Add new value `hide'.  Doc fix.
19781         (Info-reference-name): New var.
19782         (Info-selection-hook): New custom.
19783         (Info-edit-mode-hook): New var.
19784         (Info-find-file): New fun.
19785         (Info-find-node): Move part of code to Info-find-file.
19786         (Info-find-node-2): Add anchors to Info-history-list.  Move point
19787         to the place with the reference name if name is defined.
19788         (Info-select-node): Add current node to Info-history-list.
19789         (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
19790         (Info-search-whitespace-regexp): New custom.
19791         (Info-search-case-fold): New var.
19792         (Info-search): Add "case-sensitively" to the prompt.
19793         Use Info-search-whitespace-regexp.  Set Info-search-case-fold.
19794         (Info-search-case-sensitively, Info-search-next): New fun.
19795         (Info-up): Move point to the menu item of the current node.
19796         (Info-history): New fun.  Add *info-history* to
19797         same-window-buffer-names.
19798         (Info-toc): New fun.  Add *info-toc* to same-window-buffer-names.
19799         (Info-insert-toc): New fun.
19800         (Info-build-toc): New fun.
19801         (Info-follow-reference): Add new arg `fork'.  Doc fix.
19802         Replace [ \n\t]* by [ \n\t]+ in the *Note regexp.  For references
19803         with the same name prefer the reference closest to point.
19804         (Info-next-reference): Replace * by + in the *Note regexp.
19805         Add regexp for http:// and ftp://.  Skip the *Note prefix.
19806         (Info-prev-reference): Replace * by + in the *Note regexp.
19807         Add regexp for http:// and ftp://.  Skip the *Note prefix.
19808         (Info-follow-nearest-node): Add new arg `fork'.
19809         (Info-try-follow-nearest-node): Add new arg `fork'.
19810         Call browse-url for http:// and ftp:// references.
19811         Set Info-reference-name for index entries.
19812         (Info-mode-menu): Add menu items for Info-search-case-sensitively,
19813         Info-search-next, Info-history, Info-toc, clone-buffer.
19814         (Info-menu-update): Replace * by + in the *Note regexp.
19815         (Info-mode): Add documentation for Info-history, Info-toc,
19816         Info-search-case-sensitively, Info-search-next, clone-buffer.
19817         (Info-fontify-menu-headers): Remove fun.  Move code to
19818         Info-fontify-node.
19819         (Info-fontify-node): Add docstring.  Add local vars
19820         fontify-visited-p and not-fontified-p.  If not-fontified-p is t
19821         then fontify header line, titles, menu headers, http and ftp
19822         references, refill paragraphs.  If not-fontified-p is t or
19823         fontify-visited-p is t then fontify cross references, menu items.
19824         Fontify menu headers.  Fontify http and ftp references.
19825         Change regexp for cross references to require whitespace after *Note,
19826         add matching groups for file and node names.  Remove hack for quote.
19827         Use display property for Info-hide-note-references=t.  Use fifth
19828         or fourth match for help-echo.  Display visited nodes in a
19829         different face.  Unhide file names of external references.
19830         Unhide newlines.  Display visited menu items in a different face.
19832 2004-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19834         * progmodes/compile.el: Require CL.
19835         (compilation-mode-font-lock-keywords): Re-install the "line as
19836         function" patch.
19838         * help-fns.el (help-C-source-directory): New var.
19839         (help-subr-name, help-C-file-name, help-find-C-source): New funs.
19840         (describe-function-1, describe-variable): Use them.
19842         * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
19843         to C source files specially.
19845 2004-04-07  Jan Nieuwenhuizen  <janneke@gnu.org>
19847         * info.el (Info-hide-cookies-node): New function.
19848         (Info-select-node): Use it.
19849         (Info-display-images-node): Remove message with image file name.
19851 2004-04-07  Daniel Pfeiffer  <occitan@esperanto.org>
19853         * progmodes/compile.el (compilation-warning-face)
19854         (compilation-info-face, compilation-skip-threshold)
19855         (compilation-skip-visited, compilation-context-lines):
19856         Declare :version when added to Emacs.
19857         (compilation-error-regexp-alist-alist): Extend caml and irix.
19858         (compilation-setup): Fix if font-locked w/o font-lock-defaults.
19859         (compilation-mode-font-lock-keywords): Temporarily undo line as
19860         function patch, which wasn't ready.
19862 2004-04-07  Kenichi Handa  <handa@m17n.org>
19864         * international/latin1-disp.el (latin1-display-setup): Check each
19865         character is displayable or not instead of calling
19866         latin1-display-check-font.
19868 2004-04-06  Kenichi Handa  <handa@m17n.org>
19870         * language/ethio-util.el (ethio-sera-being-called-by-w3):
19871         New variable.
19872         (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
19873         instead of sera-being-called-by-w3.
19874         (ethio-fidel-to-sera-buffer): Likewise.
19875         (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
19876         instead of sera-being-called-by-w3.
19877         (ethio-write-file): Likewise.
19879 2004-04-05  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
19881         * printing.el: Doc fix.
19883 2004-04-05  Nick Roberts  <nick@nick.uklinux.net>
19885         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
19886         (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
19887         (gdb-setup-windows): Only use separate IO buffer if required.
19889 2004-04-06  Kim F. Storm  <storm@cua.dk>
19891         * term.el (term-is-xemacs): Remove.
19892         (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
19893         (term-window-width): New function.
19894         (term-mode, term-check-size): Use it.
19895         (term-mode): Disable overflow-newline-into-fringe in term buffer.
19897 2004-04-05  Per Abrahamsen  <abraham@dina.kvl.dk>
19899         * cus-edit.el (custom-add-parent-links): Change unbound variable
19900         `symbol' to `name'.
19902 2004-04-05  Jesper Harder  <harder@ifa.au.dk>
19903         * info.el (info-apropos): New function.
19904         (Info-mode-menu): Add it.
19905         (Info-find-node, Info-find-node-2): Grok apropos virtual file.
19907         * help-mode.el (help-make-xrefs): Recognize aliased variable with
19908         inherited docstring.
19910         * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
19912 2004-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19914         * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
19916         * progmodes/compile.el (font-lock): Don't require any more.
19917         (compilation-error-properties, compilation-start, compilation-sentinel)
19918         (compilation-filter, next-error): Use with-current-buffer.
19919         (compilation-skip-to-next-location, compilation-skip-threshold)
19920         (compilation-skip-visited): Move to silence the byte-compiler.
19921         (compilation-setup): Simplify.
19922         (compilation-next-error): Use line-(beginning|end)-position.
19923         Make sure `pt' is non-nil before using compilation-loop.
19924         (compile-goto-error): Add optional event arg.  Use it.
19925         (compile-mouse-goto-error): Make it an alias of compile-goto-error.
19926         (compilation-minor-mode-map, compilation-shell-minor-mode-map):
19927         Update the binding for mouse-2.
19928         (first-error): Set compilation-current-error to nil rather than bob.
19929         (compilation-parsing-end, compilation-parse-errors-function)
19930         (compilation-error-list, compilation-old-error-list):
19931         "New" compatibility variables.
19932         (compile-buffer-substring, compilation-compat-error-properties)
19933         (compilation-compat-parse-errors, compilation-forget-errors):
19934         New compatibility functions.
19935         (compilation-mode-font-lock-keywords): Use them.
19937 2004-04-04  Luc Teirlinck  <teirllm@auburn.edu>
19939         * autorevert.el (auto-revert-handler): If point (or a window
19940         point) is at the end of the buffer, keep it there after
19941         reverting.  This allows to tail a file.
19942         Mention this in the `Commentary'.
19944         * format.el (format-write-file): Add optional argument CONFIRM
19945         and make it behave like the analogous argument to `write-file'.
19947 2004-04-04  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
19949         * progmodes/ebnf2ps.el: Doc fix.
19950         (ebnf-version): New version number (4.2).
19951         (ebnf-syntax): Customization and docstring fix.
19952         (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
19953         Put autoloaded funs before first use.
19954         (ebnf-style-database): Add dtd entry.
19955         (ebnf-syntax-alist): Add dtd initialization.
19956         (ebnf-token-sequence): New fun.
19957         (ebnf-comment-table): Add new comment action character.
19958         (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
19960         * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
19961         Type Definition for XML).
19963         * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
19964         * progmodes/ebnf-bnf.el (ebnf-sequence):
19965         * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
19966         * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
19967         * progmodes/ebnf-yac.el (ebnf-yac-sequence):
19968         Code simplification: call ebnf-token-sequence.
19970 2004-04-04  Eli Zaretskii  <eliz@gnu.org>
19972         * calendar/timeclock.el (timeclock-relative)
19973         (timeclock-get-project-function, timeclock-get-workday-function)
19974         (timeclock-query-out, timeclock-when-to-leave)
19975         (timeclock-when-to-leave-string, timeclock-log-data)
19976         (timeclock-generate-report, timeclock-in): Doc fixes.
19978 2004-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19980         * url/: New dir.  Import the URL package from its repository.
19982 2004-04-03  Andreas Schwab  <schwab@suse.de>
19984         * diff-mode.el (diff-mode): Fix missing quote.
19986 2004-04-03  Juri Linkov  <juri@jurta.org>
19988         * descr-text.el (describe-property-list): Add `font-lock-face'.
19990         * dired.el (dired-font-lock-keywords): Fix permission regexps.
19992 2004-04-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
19994         * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
19995         Use utf-16le on little endian machines and utf-16be otherwise.
19997 2004-04-02  David Kastrup  <dak@gnu.org>
19999         * net/browse-url.el (browse-url-generic): Use call-process
20000         instead of start-process to allow browsers that fork and detach.
20002 2004-04-01  Daniel Pfeiffer  <occitan@esperanto.org>
20004         * compile.el (compilation-current-error): New var.
20005         (compilation-setup, compile-mouse-goto-error)
20006         (compile-goto-error, next-error): Use it.
20007         (compilation-skip-to-next-location): Default to t, which gives
20008         contiguous skipping like old compile (where this was redundant).
20009         (compilation-next-error): Prevent previous-* commands from moving
20010         back to message at or just before point.
20012 2004-04-01  Nick Roberts  <nick@nick.uklinux.net>
20014         * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
20015         (gdb-source-info): Don't display source at startup, if required.
20016         (gdb-show-main): New option.
20017         (gdba): Update documentation.
20018         (gdb-source): Cover case of auto-display output.
20020 2004-03-31  Luc Teirlinck  <teirllm@auburn.edu>
20022         * autorevert.el: Delete obsolete autoloads and defvars.
20023         (auto-revert-check-vc-info): New user option.
20024         (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
20025         (auto-revert-handler-vc): Delete.
20026         (auto-revert-handler): Treat return value `fast' of
20027         buffer-stale-function specially.  Check `auto-revert-check-vc-info'.
20029         * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
20030         return `fast'.
20032         * files.el (buffer-stale-function): Doc change.
20034 2004-03-31  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20036         * printing.el: New tip on Tips section.
20037         (pr-version): New version number (6.7.4).
20038         (pr-shell-file-name): Initialization fix.
20040 2004-03-31  Juri Linkov  <juri@jurta.org>
20042         * dired.el: Add autoload for `dired-do-touch'.
20043         (dired-touch-program): New var.
20044         (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
20045         (dired-no-confirm): Add `touch' to docstring.
20047         * dired-aux.el (dired-do-touch): New fun.
20048         (dired-do-chxxx): Add argument -t for touch operation.
20050         * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
20051         `dired-move-to-filename-regexp'.
20053 2004-03-31  H\e,Ae\e(Bkan Granath  <hakan.granath@kau.se>  (tiny change)
20055         * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
20057 2004-03-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20059         * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
20060         and only if the buffer was modified.
20062 2004-03-30  Kenichi Handa  <handa@m17n.org>
20064         * international/characters.el: Delete pairs for U+2308..U+230B.
20066 2004-03-29  Nick Roberts  <nick@nick.uklinux.net>
20068         * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
20069         to detect the beginning of a level 2 or 3 annotation.
20071 2004-03-29  Kenichi Handa  <handa@m17n.org>
20073         * international/ucs-tables.el (ucs-insert): Fix the error message.
20075 2004-03-29  Kenichi Handa  <handa@m17n.org>
20077         * international/mule-util.el (char-displayable-p): Fix generation
20078         of XLFD file name.
20080         * Makefile.in (setwins, setwins_almost): Change directory to $wd
20081         before finding directories by `find'.
20083 2004-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20085         * subr.el (interactive-form): Delete.  Now implemented in C.
20087         * pcvs.el (cvs-parse-process): Workaround for Darwin.
20089         * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
20090         (vc-diff-label): New fun.
20091         (vc-diff-internal): Use it.
20093         * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
20095 2004-03-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20097         * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
20099         * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
20100         specify XML (EBNFX).
20102         * progmodes/ebnf2ps.el: Doc fix.
20103         (ebnf-version): New version number (4.1).
20104         (ebnf-syntax): Adjust customization.
20105         (ebnf-style-database): Add ebnfx entry.
20106         (ebnf-syntax-alist): Add ebnfx initialization.
20107         (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
20109         * printing.el: Doc fix.
20110         (pr-version): New version number (6.7.3).
20111         (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
20112         returns nil for mouse position.  Reported by Drew Adams
20113         <drew.adams@oracle.com>.
20114         (pr-update-menus): Modify interactive declaration.  Reported by Drew
20115         Adams <drew.adams@oracle.com>.
20117 2004-03-28  Nick Roberts  <nick@nick.uklinux.net>
20119         * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
20120         (gud-gdba-marker-filter): Log the process input and output, if
20121         required.  From Stefan Monnier.
20122         (gdb-debug-log, gdb-enable-debug-log): New variables.
20123         (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
20125 2004-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20127         * vc-hooks.el (vc-file-not-found-hook): Fix typo.
20128         From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
20130 2004-03-27  Luc Teirlinck  <teirllm@auburn.edu>
20132         * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
20133         Call vc-find-file-hook here instead of in auto-revert-buffers.
20134         (auto-revert-buffers): Delete call to vc-find-file-hook.
20135         (auto-revert-verbose, global-auto-revert-non-file-buffers)
20136         (global-auto-revert-mode, auto-revert-set-timer)
20137         (auto-revert-handler, auto-revert-buffers): Doc fixes.
20139 2004-03-27  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
20141         * woman.el (woman-change-fonts): Rename local variable
20142         woman-font-alist to font-alist to avoid a compiler warning.
20144 2004-03-27  Dave Love  <fx@gnu.org>
20146         * emacs-lisp/rx.el (rx): Doc fix.
20147         Fix copyright years.
20149         * strokes.el (strokes-global-set-stroke-string): New function.
20150         (strokes-list-strokes): Cope with strings, not just commands.
20151         Set foreground color of image.
20152         (strokes-global-set-stroke): Doc fix.
20154 2004-03-26  Luc Teirlinck  <teirllm@auburn.edu>
20156         * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
20157         Auto Revert mode.
20158         (Buffer-menu-files-only): New variable.
20159         (Buffer-menu-toggle-files-only): New function.
20160         (Buffer-menu-mode-map): Bind it to `T'.
20161         (Buffer-menu-mode): Mention `T' in docstring.
20162         Set buffer-stale-function.
20163         (list-buffers-noselect): Mark buffer non-modified and set
20164         Buffer-menu-files-only.
20166         * dired.el (buffer-stale-function): Remove no longer needed defvar.
20168         * autorevert.el (auto-revert-handler): Print revert message
20169         before, rather than after, reverting.
20170         (buffer-stale-function): Move to files.el.
20172         * files.el (buffer-stale-function): Move here from autorevert.el.
20174 2004-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
20176         * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
20178         * calc/calc.el (calc-mode-map): Use mapc.
20180         * apropos.el (apropos-mode): Don't autoload.
20181         (apropos-symbols-internal): New fun.  Extracted from `apropos'.
20182         (apropos): Use it.
20183         (apropos-print): Add optional `text' argument.
20184         (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
20185         Don't assume point-min == 1.
20187         * bs.el (bs-buffer-list): Use buffer-local-value.
20188         (bs--set-toggle-to-show): Use with-current-buffer.
20190         * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
20191         New funs.
20192         (list-buffers-noselect): Use them.  Adjust :align-to to new style.
20194         * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
20196         * dabbrev.el (dabbrev-expand): Fix regexp construction.
20197         (dabbrev--find-expansion): Use pop.
20198         (dabbrev--search): Use match-string-no-properties.
20200         * dired.el (dired-mode): Use run-mode-hooks.
20201         (dired-move-to-end-of-filename): Use match-string.
20203         * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
20204         is bound before using it.
20205         (ediff-verbose-p): Make it into a var since it's not constant.
20207         * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
20209         * faces.el (read-face-font): Don't cons up unnecessarily.
20210         (header-line, tool-bar): Share common parts.
20212         * files.el (file-relative-name): Use compare-strings.
20214         * finder.el (finder-mode): Follow coding convention.
20216         * subr.el (read-number): New function.
20218         * ses.el (ses-read-number): Move to subr.el.
20219         (ses-set-header-row): Use read-number.
20221 2004-03-26  Andre Spiegel  <spiegel@gnu.org>
20223         * vc-hooks.el (vc-arg-list): New function, which handles both
20224         compiled and uncompiled code.
20225         (vc-default-workfile-unchanged-p): Use it.
20227         * vc.el (vc-print-log): Undo prev change, use new function
20228         vc-arg-list from vc-hooks.el.
20230 2004-03-26  Masatake YAMATO  <jet@gyve.org>
20232         * simple.el (completion-setup-function): Emphasize the
20233         first uncommon characters in the completions; and de-emphasize
20234         the common prefix substrings.
20235         (completion-emphasis): New face.
20236         (completion-de-emphasis): New face.
20238 2004-03-25  Juanma Barranquero  <lektu@terra.es>
20240         * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
20241         Comment out (it's unused and unfinished code).
20243 2004-03-25  Sam Steingold  <sds@gnu.org>
20245         * vc.el (vc-print-log): Fix a bug in the last patch:
20246         backend-function may be a byte-compiled object, not a lambda.
20248 2004-03-25  Juri Linkov  <juri@jurta.org>
20250         * descr-text.el (describe-property-list): Add a button
20251         for `face' property that calls `describe-face'.
20252         Suggested by Luis Fernandes <elf@ee.ryerson.ca>
20254         * international/mule.el (keyboard-coding-system):
20255         * kmacro.el (kmacro-call-macro): Fix docstring.
20257         * dired.el: Fix comments.
20259         * textmodes/fill.el (fill): Fix Info link.
20261         * font-lock.el (fast-lock, lazy-lock):
20262         * jit-lock.el (jit-lock): Remove links to removed Support Modes
20263         Info node.
20265         * eshell/eshell.el (eshell): Fix broken info-link.
20267         * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
20268         * eshell/em-banner.el (eshell-banner):
20269         * eshell/em-smart.el (eshell-smart):
20270         * eshell/esh-cmd.el (eshell-cmd):
20271         Comment out broken info-links to incomplete Info manual.
20273         * info-xref.el: Fix commentary.
20275 2004-03-25  Kevin Ryde  <user42@zip.com.au>
20277         * info-xref.el (info-xref-check-buffer): Report empty filename parts.
20278         Remove spurious node duplicate suppression, doesn't work, not wanted.
20279         (info-xref-output): Take format style args, add "sit-for 0" to let
20280         user see the results as they progress.
20281         (info-xref-check-all-custom): New function.
20283 2004-03-25  Nick Roberts  <nick@nick.uklinux.net>
20285         * gdb-ui.el: Moved to progmodes.
20287 2004-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20289         * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
20291 2004-03-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
20293         * calendar/appt.el (appt-check): Remove superfluous progn.
20294         When finished with diary buffer: if it was not being displayed
20295         before, kill it; otherwise restore its original state.
20296         Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
20298         * calendar/calendar.el (calendar-set-mode-line): Use total
20299         available mode-line width, rather than frame-width.
20301         * calendar/diary-lib.el (fancy-diary-display): Set mode-line
20302         after mode change so effect not lost.
20304 2004-03-23  Dave Love  <fx@gnu.org>
20306         * dired.el (dired) <defgroup>: Add link to manual.
20307         (dired-font-lock-keywords): Add highlighting on unusual permissions.
20308         (dired-revert): Use dolist.
20309         (dired-mode-map): Add U binding.
20310         (dired-mode): Add font-lock-beginning-of-syntax-function.
20311         (dired-garbage-files-regexp): Make it a defcustom.
20313 2004-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20315         * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
20316         is equivalent to nil.
20317         (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
20318         (vc-arch-mode-line-string): Accept `added' state.
20319         (vc-arch-state): Use inode-sigs if available.
20320         (vc-arch-add-tagline): Rename from vc-arch-add-tag.
20321         Copy&delete existing id file if any.  Fallback if uuidgen is absent.
20322         (vc-arch-tagline-re): New var.
20323         (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
20324         New functions.
20325         (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
20326         (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
20328         * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
20329         (vc-file-not-found-hook): Use it.
20331         * diff-mode.el (diff-default-read-only): Change default.
20332         (diff-mode-hook): Make it a defcustom.  Add some options.
20333         (diff-mode-map): Bind diff-refine-hook.
20334         (diff-yank-handler): New var.
20335         (diff-yank-function): New fun.
20336         (diff-font-lock-keywords): Use them.
20337         (diff-end-of-file): Handle case where file-header looks like diff text.
20338         (diff-hunk-kill): Adjust to "new" hunk-next behavior.
20339         (diff-file-kill): Delete a subsequent empty line, if applicable.
20340         (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
20341         (diff-find-file-name): Use it.
20342         (diff-tell-file-name): New command.
20343         (diff-mode): Be careful with view-mode.
20344         (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
20345         New functions, for use in diff-mode-hook.
20346         (diff-find-source-location): Catch "regex too large" errors.
20347         (diff-apply-hunk, diff-test-hunk): Go to old or new file.
20348         (diff-refine-hunk): New command.
20350         * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
20351         (smerge-context-menu-map): Remove unused var.
20352         (smerge-keep-all): Preserve markers.
20353         (smerge-keep-n): New fun.
20354         (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
20355         (smerge-keep-current, smerge-ediff): Use it.
20356         (smerge-kill-current): Use it.  Make it work on some 3-part conflicts.
20357         (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
20358         (smerge-resolve): Resolve trivial 3-part conflicts.
20360 2004-03-23  Juri Linkov  <juri@jurta.org>
20362         * man.el (Man-width): New var.
20363         (Man-getpage-in-background): Use it.
20364         (Man-support-local-filenames): New var and fun.
20365         (Man-build-man-command): Don't add a second %s.
20366         (Man-fontify-manpage): Clean up message.
20367         (Man-mode): Set outline-regexp, outline-level,
20368         imenu-generic-expression.
20370         * woman.el (woman-fill-frame): Doc fix.
20371         (woman-decode-region): Use window-width instead of frame-width.
20373         * abbrevlist.el (list-one-abbrev-table):
20374         * descr-text.el (describe-char):
20375         * international/mule-diag.el (describe-current-coding-system):
20376         * international/quail.el (quail-insert-decode-map):
20377         Use window-width instead of frame-width.
20379         * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
20380         (jka-compr-mode-alist-additions): Add tbz.
20381         (jka-compr-write-region, jka-compr-insert-file-contents):
20382         Add message for undefined compress-program.
20383         (jka-compr-write-region): Remove redundant var bindings.
20385         * dired-x.el (dired-guess-shell-alist-default): Add choices for
20386         extracting files into subdirectory.  Add tbz and dz.  Fix regexps.
20387         Add extensions .[0-9] for man and nroff, and .pod for perldoc.
20388         (dired-man): Use dired-guess-shell-command.
20389         (dired-guess-shell-case-fold-search): Change defvar to defcustom.
20390         Change default nil to t.
20392         * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
20393         (dired-compare-directories): Add default value for empty input.
20395         * help-at-pt.el: Move suggestions for key bindings to Commentary.
20397         * time.el (display-time-string-forms): Fix help-echo date format.
20399 2004-03-22  Luc Teirlinck  <teirllm@auburn.edu>
20401         * autorevert.el (global-auto-revert-non-file-buffers): Expand
20402         docstring.
20403         (buffer-stale-function): New variable.
20404         (auto-revert-list-diff, auto-revert-dired-file-list)
20405         (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
20406         (auto-revert-handler): Take over some functionality of deleted
20407         functions.
20408         (auto-revert-buffers): Delete call to auto-revert-buffer-p.
20410         * dired.el (dired-directory-changed-p): New fun, extracted from
20411         dired-internal-noselect.
20412         (dired-buffer-stale-p): New fun.
20413         (dired-internal-noselect): Use dired-directory-changed-p.
20414         Eliminate revert messages.
20415         (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
20417 2004-03-23  Kenichi Handa  <handa@m17n.org>
20419         * international/characters.el: Setup syntaxes for more parentheses
20420         Unicode characters.
20422         * international/mule-cmds.el (select-safe-coding-system):
20423         Merge coding-system and auto-cs before comparing them.
20425 2004-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
20427         * emacs-lisp/pp.el (pp-eval-expression): Simplify.
20429         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
20430         normal-auto-fill-function and comment-indent-function.
20431         The default values now work just as well.
20432         Don't set font-lock-beginning-of-syntax-function since we already set
20433         syntax-begin-function.
20434         (lisp-outline-level): Put ;;;###autoload at same level as (.
20435         (prin1-char): Quote special chars.
20437         * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
20438         than with-no-warnings.
20440         * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
20441         if the source location can't be found.
20442         (edebug-compute-previous-result): Use prin1-char.
20444         * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
20445         (debug-ignored-errors): Add an entry.
20447         * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
20448         (byte-compile-file): Output warning when deleting a file.
20450         * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
20451         (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
20453         * emacs-lisp/byte-opt.el (byte-compile-log-lap)
20454         (byte-compile-inline-expand): Use backquote.
20455         (byte-optimize-pure-func): Rename from byte-optimize-concat.
20456         (symbol-name, regexp-opt, regexp-quote): Mark as pure.
20458         * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
20460         * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
20462 2004-03-22  Juri Linkov  <juri@jurta.org>
20464         * finder.el (finder-known-keywords): Fix data, tex, unix.
20466         * play/landmark.el: Fix keywords.
20468         * language/ethio-util.el (ethio-find-file): Doc fix.
20470         * emacs-lisp/warnings.el: Doc fix.
20472         * textmodes/ispell.el (ispell-help): Doc fix.
20474 2004-03-21  Luc Teirlinck  <teirllm@auburn.edu>
20476         * format.el (format-insert-file): Always return a list of two
20477         elements, like insert-file-contents does.
20479 2004-03-21  Andre Spiegel  <spiegel@gnu.org>
20481         * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
20482         and vc-BACKEND-diff.
20483         (vc-print-log): If the print-log implementation supports it, use
20484         the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
20485         (vc-version-diff, vc-diff-internal): Doc fixes.
20487         * vc-hooks.el (vc-default-workfile-unchanged-p): If the
20488         implementation supports it, let diff output go to *vc*,
20489         not *vc-diff*, since this is an internal call.
20491         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
20493         * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
20495         * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
20497 2004-03-21  Dave Love  <fx@gnu.org>
20499         * progmodes/cfengine.el (cfengine-mode):
20500         Set parse-sexp-ignore-comments.
20502         * emacs-lisp/rx.el (rx): Work at compile time, not run time.
20504 2004-03-21  Juanma Barranquero  <lektu@terra.es>
20506         * allout.el (allout-mode): Fix docstring.
20508 2004-03-20  Luc Teirlinck  <teirllm@auburn.edu>
20510         * files.el (insert-directory): Fix bug if SWITCHES is a list.
20512         * autorevert.el (auto-revert-interval): Make new value take
20513         effect immediately when set through Custom.
20514         (auto-revert-set-timer): Add interactive declaration.
20516 2004-03-19  David Ponce  <david@dponce.com>
20518         * ruler-mode.el (ruler-mode-header-line-format-old):
20519         Don't `make-variable-buffer-local'.
20520         (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
20521         (ruler-mode-header-line-format): Simply funcall the above.
20522         (ruler-mode): Use `make-local-variable' and `kill-local-variable'
20523         to save/restore a previous header line format.
20524         (ruler-mode-space): Don't depend on a numeric WIDTH value.
20525         (ruler-mode-ruler): Use symbolic display elements for scrollbar,
20526         fringes and margins width.
20527         (ruler-mode-ruler-function): Default to ruler-mode-ruler.
20529 2004-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
20531         * log-edit.el (log-edit-font-lock-keywords): Typo.
20533         * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
20534         (tex-send-tex-command): Rather than here.
20535         (tex-compilation-parse-errors): Simplify.
20537         * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
20539         * time.el (display-time-string-forms): Add help-echo with date on time.
20541         * composite.el (compose-region): Use restore-buffer-modified-p.
20543         * disp-table.el (standard-display-8bit): Simplify.
20545         * server.el (server-process-filter): Delete temp frame.
20547         * add-log.el (add-change-log-entry): Simplify.
20549 2004-03-19  Kim F. Storm  <storm@cua.dk>
20551         * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
20552         (hexl-follow-line): Don't require 'fringe.
20554         * progmodes/compile.el (compilation-start): Always set
20555         compilation-last-buffer and return it.
20557 2004-03-17  Luc Teirlinck  <teirllm@auburn.edu>
20559         * simple.el (clone-buffer): Doc fix.
20561 2004-03-18  Juanma Barranquero  <lektu@terra.es>
20563         * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
20565 2004-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20567         * log-edit.el (log-edit-font-lock-keywords): New var.
20568         (log-edit-mode): Use it.
20570 2004-03-17  Nick Roberts  <nick@nick.uklinux.net>
20572         * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
20573         properly for watching in speedbar.
20575 2004-03-17  Masatake YAMATO  <jet@gyve.org>
20577         * smerge-mode.el (smerge-popup-context-menu):
20578         Put `unwind-protect' around `overlay-put' and `popup-menu'.
20580 2004-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
20582         * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
20583         (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
20584         Take sealed revisions into account.
20585         (vc-arch-checkin): Extract a summary line from the message.
20587 2004-03-16  Masatake YAMATO  <jet@gyve.org>
20589         * register.el (register): Provide `register' feature.
20591 2004-03-15  Masatake YAMATO  <jet@gyve.org>
20593         Added context menu support in smerge mode.
20594         Most of the part is written by Stefan Monnier.
20596         * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
20597         New keymap and menu.
20598         (smerge-text-properties): New function.
20599         (smerge-remove-props): New function.
20600         (smerge-popup-context-menu): New function.
20601         (smerge-resolve): Call `smerge-remove-props'.
20602         (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
20603         (smerge-keep-current): Ditto.
20604         (smerge-kill-current): New function.
20605         (smerge-match-conflict): Put text properties.
20606         Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
20608 2004-03-15  David Ponce  <david@dponce.com>
20610         * ruler-mode.el (ruler-mode-left-fringe-cols)
20611         (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
20612         (ruler-mode-right-scroll-bar-cols): Remove.
20613         (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
20614         (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
20615         Use fringe-columns and scroll-bar-columns.
20617 2004-03-15  Masatake YAMATO  <jet@gyve.org>
20619         * hl-line.el (hl-line-range-function): New variable.
20620         (hl-line-move): New function.
20621         (global-hl-line-highlight): Use `hl-line-move'.
20622         (hl-line-highlight): Ditto.
20624         * scroll-bar.el (scroll-bar-columns):
20625         * fringe.el (fringe-columns): New function derived from ruler-mode.el.
20627         * ruler-mode.el (top-level): Require scroll-bar and fringe.
20628         (ruler-mode-left-fringe-cols)
20629         (ruler-mode-right-fringe-cols): Use `fringe-columns'.
20630         (ruler-mode-right-scroll-bar-cols)
20631         (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
20632         (ruler-mode-ruler-function): New variable.
20633         (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
20634         if the value for `ruler-mode-ruler-function' is given.
20636         * hexl.el (hexl-mode-hook): Make the hook customizable.
20637         (hexl-address-area, hexl-ascii-area): New customize variables.
20638         (hexlify-buffer): Put font-lock-faces on the address area and
20639         the ascii area.
20640         (hexl-activate-ruler): New function.
20641         (hexl-follow-line): New function.
20642         (hexl-highlight-line-range): New function.
20643         (hexl-mode-ruler): New function.
20645 2004-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
20647         * vc-hooks.el (vc-handled-backends): Add Arch.  Move MCVS down.
20648         (vc-default-find-file-hook): New fun.
20649         (vc-find-file-hook): Call new find-file-hook operation.
20651         * vc-arch.el: New file.
20653 2004-03-12  Jesper Harder  <harder@ifa.au.dk>
20655         * info-look.el (info-lookup): Reuse an existing Info window.
20657 2004-03-12  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
20659         * woman.el (woman-preserve-ascii): Default value changed to t and
20660         doc string revised.
20662 2004-03-12  Richard M. Stallman  <rms@gnu.org>
20664         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
20665         Fix minor bug.
20667         * replace.el (occur-engine): Change message for count of matches.
20669         * emacs-lisp/bytecomp.el (byte-compile-get-constant):
20670         For strings, do compare text properties.
20672 2004-03-11  Daniel Pfeiffer  <occitan@esperanto.org>
20674         * progmodes/compile.el (compile-auto-highlight)
20675         (compilation-error-list, compilation-old-error-list)
20676         (compilation-parse-errors-function, compilation-parsing-end)
20677         (compilation-error-message, compilation-directory-stack)
20678         (compilation-enter-directory-regexp-alist)
20679         (compilation-leave-directory-regexp-alist)
20680         (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
20681         (compilation-current-file, compilation-regexps): Remove vars.
20683         (compile-error-at-point, compilation-error-filedata)
20684         (compilation-error-filedata-file-name, compile-reinitialize-errors)
20685         (compilation-next-error-locus, compilation-forget-errors)
20686         (count-regexp-groupings, compilation-parse-errors)
20687         (compile-collect-regexps, compile-buffer-substring): Remove funs.
20689         (compile-internal): Make obsolete.
20691         (compilation-first-column, compilation-error)
20692         (compilation-directory-matcher, compilation-page-delimiter)
20693         (compilation-mode-font-lock-keywords, compilation-debug)
20694         (compilation-error-face, compilation-warning-face)
20695         (compilation-info-face, compilation-line-face)
20696         (compilation-column-face, compilation-enter-directory-face)
20697         (compilation-leave-directory-face, compilation-skip-threshold)
20698         (compilation-skip-visited, compilation-context-lines): New vars.
20700         (compilation-warning-face, compilation-info-face)
20701         (compilation-message-face): New faces.
20703         (compilation-error-regexp-alist-alist): New constant.
20705         (compilation-face, compilation-directory-properties)
20706         (compilation-assq, compilation-error-properties, compilation-start)
20707         (define-compilation-mode, compilation-loop)
20708         (compilation-set-window): New functions.
20710         (compile): Additional argument for interactive compiles like TeX.
20712         * progmodes/grep.el (kill-grep): Move here from compile.el
20713         (grep-error, grep-hit-face, grep-error-face)
20714         (grep-mode-font-lock-keywords): New variables.
20715         (grep-regexp-alist): Simplify regexp and add `binary' case.
20716         (grep-mode): New mode.
20717         (grep-process-setup): Simplify.
20719 2004-03-11  Jason Rumney  <jasonr@gnu.org>
20721         * net/ldap.el (ldap-search-internal): Handle file URLs with drive
20722         letters on DOS/Windows.
20724 2004-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
20726         * server.el (server-name): New var.
20727         (server-socket-dir): New var to replace server-socket-name.
20728         (server-start): Use them.
20730 2004-03-11  Simon Josefsson  <jas@extundo.com>
20732         * mail/smtpmail.el (smtpmail-read-response): Abort if process has
20733         died to avoid infloop.  Reported by Jonathan Glauner
20734         <jglauner@sbum.org>.
20736 2004-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20738         * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
20739         (smerge-mode-menu): Use it to deactivate menu entries.
20740         (smerge-keep-current): New fun.
20741         (smerge-keep-current): Use it.
20743 2004-03-10  John Paul Wallington  <jpw@gnu.org>
20745         * foldout.el (foldout-fold-list, foldout-modeline-string):
20746         Declare them as variables, not constants.
20748 2004-03-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20750         * ps-print.el: Modification to print *Messages* buffer.
20751         (ps-print-version): New version 6.6.4.
20752         (ps-message-log-max): New fun.
20753         (ps-spool-without-faces, ps-spool-with-faces)
20754         (ps-count-lines-preprint): Code fix.
20756         * printing.el: New tips in Tips section.
20758 2004-03-09  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20760         * delim-col.el: Doc fix.
20762         * printing.el: Doc fix.  New doc section (Tips).
20764 2004-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
20766         * type-break.el (type-break-emacs-variant): Remove.
20767         (type-break-run-at-time, type-break-cancel-function-timers):
20768         Use fboundp rather than version name and number.
20770 2004-03-09  Masatake YAMATO  <jet@gyve.org>
20772         * hexl.el (hexl-mode): Use `make-local-variable' instead of
20773         `make-variable-buffer-local'.
20775 2004-03-08  Michael Albinus  <Michael.Albinus@alcatel.de>
20777         * find-dired.el (find-dired): Call `shell-command' instead of
20778         `start-process-shell-command'.  By this, Tramp takes over
20779         handling of remote directories.
20781 2004-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
20783         * newcomment.el (comment-use-global-state): New var.
20784         (comment-search-forward): Use it.
20786         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
20788         * cus-edit.el (fill) <defgroup>: Move to fill.el.
20790         * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
20791         (enable-kinsoku): Make it a defcustom.
20792         (fill-comment-paragraph): Don't rely on fill-prefix to bound the
20793         paragraph to same-comment-start-marker.
20795 2004-03-07  Dave Love  <fx@gnu.org>
20797         * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
20798         (browse-url-mail): Use it.
20800         * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
20801         (rfc2368-unhexify-string): Use replace-regexp-in-string.
20803 2004-03-07  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
20805         * woman.el (woman-man.conf-path): Doc fix.
20806         (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
20808 2004-03-07  Eli Zaretskii  <eliz@gnu.org>
20810         * sort.el (sort-columns): Remove ms-dos from the list of systems
20811         where the external `sort' command is not used.
20813 2004-03-07  Kim F. Storm  <storm@cua.dk>
20815         * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
20816         (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
20817         from overlay-arrow-variable-list.
20818         (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
20820 2004-03-06  Nick Roberts  <nick@nick.uklinux.net>
20822         * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
20823         overlay arrow string properly for the assembler buffer.
20825 2004-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20827         * mail/sendmail.el (mail-mode): Fix last change.
20829 2004-03-05  Nick Roberts  <nick@nick.uklinux.net>
20831         * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
20832         for the assembler buffer.
20833         (gdb-assembler-custom): Position the overlay arrow.
20834         (gdb-put-arrow, gdb-remove-arrow): Delete functions.
20836 2004-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20838         * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
20840         * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
20841         regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
20843         * mail/sendmail.el (mail-mode): Set comment-start-skip.
20845         * newcomment.el (uncomment-region): Allow non-terminated comment.
20846         (comment-normalize-vars): Check the user-specified comstart marker.
20848 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
20850         * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
20851         Otherwise, do use it if the region only contains font-lock text
20852         properties.
20854 2004-03-04  Masatake YAMATO  <jet@gyve.org>
20856         * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
20857         as the callback function for eldoc.
20858         (hexl-print-current-point-info): New function.
20859         (hexl-current-address): Print the address in both decimal
20860         and hexadecimal format.
20862 2004-03-04  Richard M. Stallman  <rms@gnu.org>
20864         * mail/rmail.el (rmail-convert-to-babyl-format):
20865         Specify t for UNIBYTE when calling mail-unquote-printable-region.
20867         * mail/mail-utils.el (mail-unquote-printable-region):
20868         New arg UNIBYTE.
20870         * startup.el (command-switch-alist): Doc fix.
20872         * simple.el (undo): Temporarily set this-command to `undo-start',
20873         then set it to `undo' once undo-start returns without error.
20875         * simple.el (minibuffer-history-sexp-flag): Doc fix.
20877         * simple.el (kill-line): Don't disregard trailing whitespace
20878         in eol condition, if show-trailing-whitespace is set.
20880         * mouse-sel.el (mouse-sel-has-been-enabled): New var.
20881         (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
20882         When disabling, restore old values only if mouse-sel-has-been-enabled.
20884         * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
20885         (isearch-{-char): New function.
20886         (isearch-mode-map): Bind { to isearch-{-char.
20888         * font-lock.el (lisp-font-lock-keywords-2):
20889         Turn off the CL with-... and do-... general patterns.
20890         Instead, recognize several specific with... and do... constructs.
20892         * files.el (switch-to-buffer-other-window):
20893         Bind same-window-buffer-names and same-window-regexps to nil.
20894         (switch-to-buffer-other-frame): Likewise.
20896 2004-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20898         * textmodes/fill.el (fill-comment-paragraph): Be more careful when
20899         recognizing leading comment on code line.
20901 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
20903         * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
20904         hidden files/directories.
20906 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
20908         * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
20909         only comment-start (in case the mode hasn't set it).
20911         * Makefile.in (AUTOGENEL): New var.
20912         (bootstrap-prepare): Rename from bootstrap-clean.
20913         Don't remove elc files.
20914         (maintainer-clean): New target.
20916         * xml.el (xml-get-attribute-or-nil): Simplify.
20918 2004-03-02  Juri Linkov  <juri@jurta.org>
20920         * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
20921         (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
20922         URL to prevent their substitution with the environment variable
20923         values by browsers.
20925 2004-03-03  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20927         * ps-print.el: Doc fix.
20928         (ps-print-version): New version number (6.6.3).
20929         (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
20930         Docstring fix.
20931         (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
20932         before printing.
20933         (ps-time-stamp-yyyy-mm-dd): New fun.
20934         (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
20936 2004-03-02  Kim F. Storm  <storm@cua.dk>
20938         * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
20940 2004-03-01  Juanma Barranquero  <lektu@terra.es>
20942         * allout.el (allout-rebullet-heading): Fix typo in docstring.
20944         * desktop.el (desktop-file-version)
20945         (desktop-after-read-hook): Fix typos.
20946         (desktop-clear-preserve-buffers): Remove redundant info in
20947         docstring already shown by the obsolescence message.
20948         (desktop-truncate, desktop-internal-v2s)
20949         (desktop-value-to-string): Change argument name to match docstring.
20951         * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
20953         * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
20954         docstring.
20956 2004-02-29  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20958         * printing.el: Replace "As Is..." in PostScript file print/preview by
20959         "No Preprocessing...".  Suggested by Colin Marquardt
20960         <_marquardt_@zmd.de>.
20961         (pr-insert-section-4): Adjust buffer interface.
20963 2004-02-29  Kai Grossjohann  <kai.grossjohann@gmx.net>
20965         Version 2.0.39 of Tramp released.
20967         * net/tramp.el (tramp-handle-file-local-copy)
20968         (tramp-handle-write-region, tramp-open-connection-rsh):
20969         Variable name typo.  Small change.  From Patrick Tullmann
20970         <tullmann@flux.utah.edu>.
20971         (tramp-process-connection-type): New variable.
20972         (tramp-maybe-open-connection): Use it.
20973         (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
20974         (tramp-touch): Set last-modified time of a remote file.
20975         (tramp-handle-write-region): Say which function is used when encoding.
20977 2004-02-29  Michael Albinus  <Michael.Albinus@alcatel.de>
20979         * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
20980         case of non-existing filename, too.  Reported by Christoph Bauer
20981         <c_bauer@informatik.uni-kl.de>.
20982         (tramp-smb-get-file-entries): The directory in question should
20983         have permissions "drwxrwxrwx".  Just virtual, because we don't
20984         know the real permissions.  Don't we know?
20985         (tramp-smb-prompt): Add virtual prompt from listing shares, too.
20986         (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
20987         (tramp-smb-wait-for-output): Optimize algorithm getting pending
20988         output.  If it was received chunkwise, there have been problems.
20989         Remove the "prompt not found" error message; it is obvious.
20990         Simplify algorithm.
20991         (tramp-smb-process-running): Remove.  Since we acknowledge the
20992         virtual prompt for shares, there's no need for distinction of
20993         reading shares (process ends afterwards) and interactive mode of
20994         smblient.
20995         (tramp-smb-open-connection): Setting process sentinel removed.
20996         (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
20997         "NT_STATUS_NETWORK_ACCESS_DENIED".
20998         (tramp-smb-maybe-open-connection): Set `process-connection-type'
20999         to 'pty.  Suggested by Piet van Oostrum <piet@cs.uu.nl>.
21000         (top-level): Setting default value in `tramp-default-method-alist'
21001         corrected.  Order of USER and HOST have been wrong.
21002         Nobody complained for months ...
21003         (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
21004         (tramp-smb-open-connection): Clear password cache if login has failed.
21006         * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
21007         `tramp-unified-filenames'.
21008         (tramp-completion-mode): Make test for XEmacs explicitly.
21009         `event-to-character' can exists in Emacs packages too.
21010         Reported by Matt Swift <swift@alum.mit.edu>.
21011         (tramp-buffer-name): Buffer name must contain the user if exists.
21012         Reported by Adrian Phillips <a.phillips@met.no>.
21013         (tramp-do-copy-or-rename-file): Handle out-of-band methods.
21014         Call `tramp-do-copy-or-rename-file-out-of-band' this case.
21015         (tramp-do-copy-or-rename-file-out-of-band): Rename from
21016         `tramp-do-copy-or-rename-file-one-local', because it handles also
21017         the case both files use the same out-of-band method.
21018         Implementation added.
21019         (tramp-handle-file-local-copy, tramp-handle-write-region):
21020         Out-of-band handling removed.  `copy-file' called instead, which
21021         calls `tramp-do-copy-or-rename-file-out-of-band'.
21022         (tramp-action-password): Check for out-of-band method removed.
21023         This function is used for 'login-program.
21024         (tramp-post-connection): Use `tramp-method-out-of-band-p' when
21025         appropriate.
21026         (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
21027         and `tramp-parse-sknownhosts'.
21028         (tramp-completion-function-alist): It's a defvar now, because we
21029         want to apply the optimized `tramp-set-completion-function'
21030         instead of a static list.
21031         (tramp-set-completion-function): Implementation tuned.
21032         Avoid double entries, and entries where the function or the
21033         file/directory doesn't exist.
21034         (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
21035         for SSH2.
21036         (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
21037         (tramp-handle-dired-compress-file): New function.
21038         (tramp-async-proc): New variable.
21039         (tramp-handle-shell-command): Adding asynchronous processes.
21040         They are far from being perfect, but it works at least for
21041         `find-grep-dired' and `find-name-dired' in Emacs 22.1.
21042         (top-level): Require password.el if visible.  Should be mandatory
21043         once No Gnus has found its way into (X)Emacs.
21044         (tramp-read-passwd): Invoke `password-read' if available,
21045         `read-passwd' otherwise.  `ange-ftp-read-passwd' isn't used as
21046         fallback any longer.
21047         (tramp-clear-passwd): New function.
21048         (tramp-process-actions, tramp-process-multi-actions):
21049         Clear password cache if login has failed.
21051         * net/tramp-ftp.el (Commentary): Remove pointer to EFS.  It has
21052         its own module.
21053         (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
21054         `ange-ftp-ftp-name-res'.  There could be incorrect values from
21055         previous calls in case the "ftp" method is used in the Tramp file
21056         name.  Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
21058 2004-02-28  Richard M. Stallman  <rms@gnu.org>
21060         * term.el (term-mouse-paste): Call mouse-set-point.
21062         * thumbs.el: New file.
21064 2004-02-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21066         * progmodes/ebnf-abn.el: Doc fix.
21068         * progmodes/ebnf-bnf.el: Doc fix.
21069         (ebnf-repeat): Code fix.
21071         * progmodes/ebnf2ps.el: Doc fix.
21072         (ebnf-syntax-directory, ebnf-syntax-file): New funs.
21074 2004-02-28  Juri Linkov  <juri@jurta.org>
21076         * ffap.el (dired-at-point): Additional writability test for
21077         relative directory names.
21078         (dired-at-point-prompter): Treat directories as a directory, get
21079         the directory component from files.
21080         (ffap-string-at-point): Return string from region if region is active.
21081         (ffap-file-at-point): Remove redundant code.
21083 2004-02-28  Kim F. Storm  <storm@cua.dk>
21085         * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
21086         Initialize margin area images to nil.
21087         (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
21088         (breakpoint-enabled-bitmap-face)
21089         (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
21090         (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
21091         (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
21092         (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
21093         (gdb-reset): Use gdb-remove-breakpoint-icons.
21094         (gdb-put-string): Add dprop arg to specify alternative display
21095         property (for setting fringe bitmap).
21096         (gdb-remove-strings): Doc fix.
21097         (gdb-put-breakpoint-icon): New defun which displays a breakpoint
21098         icon in fringe (if available), or else as icon or text in display
21099         margin.  Creates necessary icons in breakpoint-bitmap,
21100         breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
21101         Also make left window margin if required.
21102         (gdb-remove-breakpoint-icons): New defun to remove breakpoint
21103         icons inserted by gdb-put-breakpoint-icon.  Remove left margin if
21104         no longer needed.
21105         (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
21106         gdb-put-breakpoint-icon.
21107         (gdb-assembler-mode): Don't set left-margin-width here.
21109 2004-02-27  Kevin Ryde  <user42@zip.com.au>
21111         * info-look.el: In scheme-mode symbol regexp, disallow backquote and
21112         comma, so that it DTRT in macros.
21114 2004-02-27  Markus Rost  <rost@mathematik.uni-bielefeld.de>
21116         * progmodes/sh-script.el (sh-shell-arg)
21117         (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
21118         (sh-leading-keywords, sh-other-keywords): Fix custom type.
21120 2004-02-27  Dan Nicolaescu  <dann@ics.uci.edu>
21122         * faces.el (face-spec-set-match-display): Add a new attribute,
21123         `min-colors'.
21124         (region, highlight, secondary-selection): Use `min-colors'.
21126         * custom.el (defface): Add documentation for `min-colors'.
21128         * font-lock.el (font-lock-comment-face, font-lock-string-face)
21129         (font-lock-keyword-face, font-lock-function-name-face)
21130         (font-lock-variable-name-face, font-lock-constant-face):
21131         Use `min-colors'.
21133         * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
21135 2004-02-25  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21137         * progmodes/ebnf2ps.el: Doc fix.  For compatibility with Emacs 20,
21138         define assq-delete-all if it's not defined.
21139         (ebnf-generate-region): Code fix.
21141         * printing.el: Doc fix.
21142         (pr-version): New version number (6.7.2).
21143         (pr-command): Return empty string if command is an empty string.
21145 2004-02-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21147         * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
21149         * progmodes/ebnf2ps.el: Doc fix.  Accept ABNF (Augmented BNF).  New
21150         arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
21151         semi-down-full.  Fix a bug on productions like test = {"test"}* | (
21152         "tt" ["test"] ).  Reported by Markus Dreyer
21153         <mdreyer@ix.urz.uni-heidelberg.de>.
21154         (ebnf-version): New version number (4.0).
21155         (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
21156         (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
21157         (ebnf-delete-style): New commands.
21158         (ebnf-directory, ebnf-file): New funs.
21159         (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
21160         (ebnf-production-name-p, ebnf-stop-on-error): New options.
21161         (ebnf-syntax-alist): New var.
21162         (ebnf-element-width): New fun replacing ebnf-list-width.
21163         (ebnf-arrow-shape, ebnf-syntax): Custom fix.
21164         (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
21165         (ebnf-prologue): Adjust vars.
21166         (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
21167         (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
21168         (ebnf-check-style-values, ebnf-generate-production)
21169         (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
21170         (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
21171         (ebnf-token-repeat): Code fix.
21173         * progmodes/ebnf-yac.el: Doc fix.  Handle Bison pragmas %nonassoc,
21174         %right, %left and %prec.  Suggested by Matthew K. Junker
21175         <junker@alum.mit.edu>.
21176         (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
21178         * progmodes/ebnf-iso.el: Doc fix.
21179         (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
21180         (ebnf-iso-lex): Code fix.
21182         * progmodes/ebnf-bnf.el: Doc fix.
21183         (ebnf-bnf-lex): Code fix.
21185         * progmodes/ebnf-otz.el: Doc fix.
21187 2004-02-23  Luc Teirlinck  <teirllm@auburn.edu>
21189         * abbrev.el (write-abbrev-file): Make argument optional.  Doc fix.
21190         (abbrev-prefix-mark): Doc fix.
21192 2004-02-23  Nick Roberts  <nick@nick.uklinux.net>
21194         * gdb-ui.el (gud-watch): Load tooltip, if necessary.
21195         (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
21196         (gdb-var-delete): Make interactive (really).
21197         (gdb-edit-value): Make non-interactive.
21199         * progmodes/gud.el (gud-speedbar-menu-items):
21200         Add gdb-var-delete and, indirectly, gdb-edit-value.
21201         (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
21202         (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
21203         (gud-gdb-marker-filter): Add comment for annotations.
21205 2004-02-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
21207         * calendar/calendar.el (generate-calendar)
21208         (calendar-read-date): Prevent display of BC calendars once more -
21209         reverts 2003-10-01 change.
21210         (generate-calendar-month): Doc fix.
21212 2004-02-03  Matthew Mundell  <matt@mundell.ukfsn.org>  (tiny change)
21214         * calendar/diary-lib.el (fancy-diary-display): Don't rely on
21215         return value of increment-calendar-month.
21217 2004-02-21  Stephen Compall  <s11@member.fsf.org>
21219         * saveplace.el (save-place-forget-unreadable-files)
21220         (save-place-save-skipped, save-place-skip-check-regexp): New vars.
21221         (save-place-forget-unreadable-files): New function.
21222         (save-place-alist-to-file): Use it to filter out files that are
21223         no longer readable.
21225         * textmodes/texinfo.el (texinfo-insert-@item): Look for the
21226         current Texinfo environment, using the same method as in
21227         `texinfo-insert-@end', and insert a space rather than a newline if
21228         point in a @table environment.
21230 2004-02-21  Juri Linkov  <juri@jurta.org>
21232         * ffap.el (ffap-file-at-point): Try parent directories.
21234 2004-02-21  Klaus Zeitler  <kzeitler@lucent.com>
21236         * vcursor.el (vcursor-modifiers): New defcustom.
21237         (vcursor-cs-binding): Use vcursor-modifiers instead of a
21238         hard-coded list.
21240 2004-02-21  Masatake YAMATO  <jet@gyve.org>
21242         * play/animate.el (animate-birthday-present): Accept names other
21243         than `Sarah', too.
21245 2004-02-21  Juri Linkov  <juri@jurta.org>
21247         * startup.el: Remove table of command line arguments from the
21248         Commentary section.
21250 2004-02-20  John Wiegley  <johnw@newartisans.com>
21252         * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
21253         again" modifier from 'e' to 'E', since 'e' is also used by the
21254         "file extension" modifier.
21256 2004-02-19  Luc Teirlinck  <teirllm@auburn.edu>
21258         * help-fns.el (describe-categories): Doc fix.
21260 2003-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
21262         * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
21263         temporary file for buffer already visiting one.  This change makes
21264         output likely to be directly usable by patch program.
21265         Suggested by Adrian Aichner  <adrian@xemacs.org>
21267 2004-02-20  Nick Roberts  <nick@nick.uklinux.net>
21269         * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
21270         case of variables defined in compound statements.
21271         (gdb-setup-windows, gdb-source-info, gdb-source-info):
21272         Simplify constructions using switch-to-buffer.
21274 2004-02-19  Simon Josefsson  <jas@extundo.com>
21276         * play/morse.el: Fix typo.
21277         (morse-code): Add @.
21279 2004-02-19  Glenn Morris  <gmorris@ast.cam.ac.uk>
21281         * calendar/appt.el (appt-display-format): Change default to
21282         'ignore, for backwards compatibility.
21283         (appt-display-message): If appt-display-format is 'ignore,
21284         respect old vars appt-msg-window and appt-visible.
21285         (appt-activate): Don't depend on return value of cancel-timer.
21287         * calendar/calendar.el (calendar-holidays): Doc fix.
21289         * calendar/cal-coptic.el (coptic-prompt-for-date):
21290         Use assoc-string instead of assoc-ignore-case.
21291         * calendar/cal-french.el (calendar-goto-french-date): Ditto.
21292         * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
21293         (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
21294         * calendar/cal-islam.el (calendar-goto-islamic-date)
21295         (mark-islamic-diary-entries): Ditto.
21296         * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
21297         * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
21298         (calendar-read-mayan-tzolkin-date): Ditto.
21299         * calendar/calendar.el (calendar-read-date): Ditto.
21300         * calendar/diary-lib.el (mark-diary-entries): Ditto.
21302 2004-02-18  Markus Rost  <rost@mathematik.uni-bielefeld.de>
21304         * progmodes/executable.el (executable-command-find-posix-p):
21305         Fix choice of the directory.
21307 2004-02-17  Luc Teirlinck  <teirllm@auburn.edu>
21309         * simple.el (interprogram-cut-function)
21310         (interprogram-paste-function, kill-new, kill-append):
21311         Doc fixes.
21312         (kill-region): Make it return nil.  Doc fix.
21313         (yank-pop): Make its argument optional.
21314         (yank): Make ARG `-' equivalent to `-1'.
21316 2004-02-17  Eli Zaretskii  <eliz@gnu.org>
21318         * mail/rmail.el (rmail-get-new-mail): Don't reference
21319         rmail-use-spam-filter if rmail-spam-filter is not loaded.
21321 2004-02-16  Luc Teirlinck  <teirllm@auburn.edu>
21323         * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
21324         if one of global-auto-revert-non-file-buffers or autorevert-mode
21325         is non-nil.
21327 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
21329         * subr.el (delete-dups): A better implementation from Karl Heuer
21330         <kwzh@gnu.org>.
21332 2004-02-16  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
21334         * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
21335         correct place.
21336         * progmodes/icon.el (icon-indent-command): Ditto.
21337         * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
21339 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
21341         * progmodes/grep.el (grep-compute-defaults): Undo change from
21342         2004-01-29: don't use executable-command-find-posix-p.
21344 2004-02-16  Richard Sharman  <rsharman@pobox.com>
21346         * hilit-chg.el: Use require instead of eval-and-compile.
21347         (highlight-compare-buffers): New function.
21349 2004-02-16  John Basrai  <jbasrai@comcast.net>  (tiny change)
21351         * man.el (Man-fontify-manpage): Render section headings in
21352         `Man-overstrike-face' even when overstrike was not used by man
21353         formatter for section headings.
21355 2004-02-16  Eli Tziperman  <eli@deas.harvard.edu>
21357         * rmail-spam-filter.el (vm-use-spam-filter)
21358         (rsf-min-region-length-added-to-spam-list): New variables.
21359         (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
21360         rmail-bbdb-auto-delete-spam-entries.  Add cc: to recipients for
21361         spam testing.  Don't delete spam message if automatic deletion
21362         after output via variable rmail-delete-after-output is turned on.
21363         (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
21364         rsf-bbdb-dont-create-entries-for-spam.
21365         (check-field): New function, extracted from code in
21366         rmail-spam-filter to ease addition of header fields like content-type.
21367         (message-content-type): New variable to check the content-type:
21368         field added, also in defcustom of rsf-definitions-alist.
21369         (rmail-spam-filter): Replace repeated test code for header fields
21370         by calls to check-field; change the call to
21371         rmail-output-to-rmail-file such that rmail-current-message stays
21372         the same to avoid wrong deletion of unseen flags.
21373         (rsf-add-contents-type): New function to convert old format
21374         of rmail-spam-definitions-alist into new one.
21375         Change prefixes of all variables and functions from
21376         rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
21378 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
21380         * loadhist.el (unload-hook-features-list): New defvar.
21382 2004-02-16  Dave Love  <fx@gnu.org>
21384         * loadhist.el (unload-feature): Doc fix.  Rename flist to
21385         unload-hook-features-list.
21387 2004-02-16  Jay Belanger  <belanger@truman.edu>  (tiny change)
21389         * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
21390         cookie.  Don't check if we are looking-at open-formula.
21392 2004-02-16  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
21394         * subr.el (match-string-no-properties): Use substring-no-properties.
21396 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
21398         * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
21399         (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
21400         Use lower-case "rx" in all error message.
21402 2004-02-16  Dave Love  <fx@gnu.org>
21404         * emacs-lisp/rx.el (rx-or): Put group around result.
21405         (rx-constituents): Add backref.
21406         (rx-syntax): Add string-delimiter, comment-delimiter.
21407         (rx-categories): Add combining-diacritic.
21408         (rx-check-not, rx-greedy, rx): Doc fix.
21409         (rx-backref, rx-check-backref): New.
21411 2004-02-16  Jesper Harder  <harder@ifa.au.dk>
21413         * newcomment.el (uncomment-region): Allow eob as comment end.
21415 2004-02-16  Jari Aalto  <jari.aalto@poboxes.com>
21417         * filecache.el: All message and error commands now use prefix
21418         "Filecache:" to make it easy to read *Messages* buffer.
21420 2004-02-16  Jari Aalto  <jari.aalto@poboxes.com>
21422         * autorevert.el: Add support to detect changed dired and VC buffers.
21423         (auto-revert-active-p, auto-revert-list-diff)
21424         (auto-revert-dired-file-list, auto-revert-dired-changed-p)
21425         (auto-revert-handler, auto-revert-active-p): New functions.
21426         (auto-revert-buffers): Move revert logic to `auto-revert-handler'
21427         and `auto-revert-active-p'.
21428         (eval-when-compile): Defvar dired-directory and vc-mode.
21429         (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
21430         (auto-revert-handler-vc): New functions.
21432 2004-02-16  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
21434         * progmodes/compile.el (compilation-directory): New defvar.
21435         (compile): Save current directory in compilation-directory.
21436         (recompile): Bind default-directory to compilation-directory if
21437         that is non-nil.
21439 2004-02-16  Dave Love  <fx@gnu.org>
21441         * newcomment.el (comment-insert-comment-function)
21442         (comment-region-function, uncomment-region-function): New.
21443         (comment-indent): Use comment-insert-comment-function.
21444         (uncomment-region): Use uncomment-region-function.
21445         (comment-region): Use comment-region-function.
21447         * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
21449 2004-02-16  Richard Stallman  <rms@gnu.org>
21451         * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
21452         loaddefs* and ldefs-boot*.
21454 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
21456         * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
21457         and email address at the beginning and end of the address.
21459         * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
21460         anchored at the beginning of the email address.
21462 2004-02-16  TAKAI Kousuke  <tak@kmc.gr.jp>  (tiny change)
21464         * international/ccl.el (ccl-compile-write): Pass `left' to
21465         ccl-embed-code to generate correct code of write-expr-register.
21467 2004-02-15  Dan Nicolaescu  <dann@ics.uci.edu>  (tiny change)
21469         * progmodes/grep.el (grep-compute-defaults): Fix typos.
21471 2004-02-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
21473         * x-dnd.el: Mention support for Motif in commentary.
21474         (x-dnd-handle-drag-n-drop-event): Ditto.
21476 2004-02-14  Jonathan Yavner  <jyavner@member.fsf.org>
21478         * ses.el: Use "ses--" prefixes for buffer-local variables.
21479         Use (point-min) instead of 1, even when we know the buffer
21480         is unnarrowed.
21481         (ses-build-load-map): Delete.  Distribute its content to defconsts for
21482         the three maps.
21483         (ses-menu, ses-header-line-menu): New menus.
21484         (ses-mode-map): Use them.
21485         (ses-read-number) New fun.  Duplicates code from interactive "N" spec.
21487 2004-02-14  Martin Stjernholm  <bug-cc-mode@gnu.org>
21489         * Makefile.in: Fix the CC Mode recompile kludge so it works
21490         when building in a different directory.
21492 2004-02-13  Luc Teirlinck  <teirllm@auburn.edu>
21494         * simple.el (kill-new): Put yank-handler property on the entire string.
21496 2004-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
21498         * diff.el: Don't use compile any more, use diff-mode instead.
21499         (diff-regexp-alist, diff-old-file, diff-new-file)
21500         (diff-parse-differences, diff-process-setup): Remove.
21501         (diff-sentinel): New fun.
21502         (diff): Use it.  Run the process ourselves.
21503         Use diff-mode for the rest of the processing.
21505         * diff.el (diff): Simplify code handling `switch'.
21507 2004-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
21509         * pcvs-defs.el (cvs-menu): Add `tag'.
21511 2004-02-11  Luc Teirlinck  <teirllm@auburn.edu>
21513         * simple.el (kill-append): Doc fix.
21515         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21516         Adapt outline-regexp to the new conventions for commenting out code.
21518 2004-02-11  John Paul Wallington  <jpw@gnu.org>
21520         * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
21522 2004-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21524         * diff.el (diff-switches): New fun.
21525         (diff, diff-backup): Use it.
21526         (diff): Clean up the args construction.  Use backquote.
21527         Use listp instead of consp to avoid putting a nil arg.
21528         (diff): Add a revert-buffer function.
21530 2004-02-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
21532         * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
21533         handled by x-dnd-handle-file-name.
21534         (x-dnd-known-types): Add COMPOUND_TEXT.
21535         (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
21536         (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
21537         x-dnd-empty-state.
21538         (x-dnd-forget-drop): Ditto.
21539         (x-dnd-save-state): Add optional parameter extra-data (for Motif).
21540         (x-dnd-handle-one-url): Return private when inserting text.
21541         (x-dnd-insert-ctext): New function.
21542         (x-dnd-handle-file-name): New function for FILE_NAME.
21543         (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
21544         (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
21545         (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
21547 2004-02-10  Kenichi Handa  <handa@m17n.org>
21549         * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
21550         instead of while loop.
21552 2004-02-10  Miles Bader  <miles@gnu.org>
21554         * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
21556 2004-02-09  Kenichi Handa  <handa@m17n.org>
21558         * tar-mode.el (tar-extract): Fix for the case that a file doesn't
21559         have end-of-line.
21561 2004-02-09  Martin Stjernholm  <bug-cc-mode@gnu.org>
21563         * Makefile.in: Added extra dependencies in the recompile target
21564         needed to cope with the compile time macro expansions in CC Mode.
21566 2004-02-09  Kim F. Storm  <storm@cua.dk>
21568         * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
21569         (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
21570         (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
21571         (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
21572         (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
21573         (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
21574         (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
21575         (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
21576         (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
21577         (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
21578         (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
21580 2004-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
21582         * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
21583         Don't allow shrink if there's a window on our right.
21585         * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
21586         (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
21587         Bring together declaration and initialization.
21588         (prolog-mode-variables): Don't set the syntax table.
21589         Don't set paragraph-start and comment-indent-function.
21590         Add /*..*/ to the comment regexps.
21591         (prolog-mode-commands): Remove.  Do it during init of prolog-mode-map.
21592         (prolog-mode-map): Don't bind TAB.
21593         (prolog-mode): Set the syntax table.
21594         (prolog-comment-indent): Remove.
21595         (inferior-prolog-mode-map): Initialize in the declaration.
21596         (inferior-prolog-mode-syntax-table)
21597         (inferior-prolog-mode-abbrev-table): New vars.
21598         (inferior-prolog-mode): Derive from comint-mode.
21599         (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
21600         minibuffer windows.
21602         * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
21603         in file names, as long as it is unambiguous.
21605 2004-02-08  Andreas Schwab  <schwab@suse.de>
21607         * textmodes/reftex-toc.el
21608         (reftex-toc-load-all-files-for-promotion): Remove useless use of
21609         format.  Doc fix.
21611         * textmodes/refer.el (refer-find-entry-internal): Remove extra
21612         format string arguments.
21614         * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
21615         string argument.
21617         * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
21619         * play/zone.el (zone-call): Fix format string.
21621         * net/webjump.el (webjump-builtin): Add missing format string argument.
21623         * midnight.el (midnight-delay-set): Remove extra format string
21624         argument.
21626         * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
21628         * hexl.el (hexl-insert-char): Add missing format string argument.
21630         * format.el (format-decode): Fix format string.
21632         * emulation/vi.el (vi-mode): Remove extra format string argument.
21633         (vi-repeat-last-search): Likewise.
21634         (vi-reverse-last-search): Likewise.
21635         (vi-goto-mark): Likewise.
21636         (vi-reverse-last-find-char): Likewise.
21637         (vi-repeat-last-find-char): Likewise.
21638         (vi-locate-def): Likewise.
21640         * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
21642         * ediff-util.el (ediff-toggle-read-only): Remove extra format
21643         string argument.
21644         (ediff-toggle-regexp-match): Likewise.
21646         * dired-aux.el (dired-do-query-replace-regexp): Add missing
21647         format string argument.
21649         * calc/calc-map.el (calc-get-operator): Remove extra format
21650         string argument.
21652         * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
21654         * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
21655         string argument.
21657         * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
21659         * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
21661         * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
21663         * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
21664         (cl-struct-setf-expander): Likewise.
21666         * vc.el (with-vc-file): Fix unsafe uses of error.
21667         (vc-cancel-version): Likewise.
21669 2004-02-08  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>  (tiny change)
21671         * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
21672         thousands separator; fixes <class>:<line-number> regexp for
21673         non-english locales.
21675 2004-02-08  Andreas Schwab  <schwab@suse.de>
21677         * view.el (view-mode-enable): Revert previous change.
21679 2004-02-07  Kim F. Storm  <storm@cua.dk>
21681         * simple.el (line-number-at-pos): Rename from line-at-pos.
21682         Uses changed (what-line and vc-annotate-warp-version).
21684 2004-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
21686         * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
21687         (diff-mode): Remove aborted attempt at support for compile.el.
21688         (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
21690 2004-02-06  Andreas Schwab  <schwab@suse.de>
21692         * view.el (view-mode-enable): Add view-mode-map to
21693         minor-mode-overriding-map-alist.
21695 2004-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
21697         * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
21699 2004-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
21701         * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
21702         with point inside rather than after the paragraph.
21704 2004-02-04  Sam Steingold  <sds@gnu.org>
21706         * mail/smtpmail.el (smtpmail-try-auth-methods):
21707         Do not try authentication when no mechanism is available.
21708         Pass port-name as defaultport to `netrc-machine'.
21710 2004-02-04  Stephen Eglen  <stephen@gnu.org>
21712         * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
21713         to show how minibuffer height can be constrained.
21715 2004-02-04  John Paul Wallington  <jpw@gnu.org>
21717         * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
21719 2004-02-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
21721         * x-dnd.el: New file for drag and drop.
21723         * term/x-win.el: require x-dnd, set after-make-frame-functions
21724         to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
21725         drag-n-drop event.
21727         * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
21728         (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
21729         (dired-dnd-handle-file): New functions for drag and drop support.
21730         (dired-mode): Initialize drag and drop if x-dnd present.
21732 2004-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
21734         * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
21735         (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
21736         (cperl-mode): Set fill-paragraph-function.
21737         (cperl-fill-paragraph): Make it non-interactive.
21739 2004-02-02  Benjamin Rutt  <brutt@bloomington.in.us>
21741         * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
21743 2004-02-02  David Kastrup  <dak@gnu.org>
21745         * replace.el (perform-replace): Allow 'literal argument in
21746         regexp-flag to indicate literal replacement.
21747         (query-replace-regexp-eval): Use it.
21749 2004-02-01  Andreas Schwab  <schwab@suse.de>
21751         * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
21753 2004-02-01  Stephen Eglen  <stephen@gnu.org>
21755         * info-look.el: Add support for maxima-mode.  Update commentary
21756         because info-lookup-symbol is now bound to C-h S.
21758 2004-01-31  Luc Teirlinck  <teirllm@auburn.edu>
21760         * simple.el (edit-and-eval-command): Bind print-level and
21761         minibuffer-history-sexp-flag around call to read-from-minibuffer.
21762         Correct initial position in command-history.
21764 2004-01-30  Luc Teirlinck  <teirllm@auburn.edu>
21766         * files.el (read-directory-name): Adapt the docstring to recent
21767         change in Fread_file_name.
21769 2004-01-30  Jonathan Yavner  <jyavner@member.fsf.org>
21771         * ses.el (ses-print-cell): If print format too wide for column
21772         width, truncate decimal places if that helps to avoid "#####" fill.
21773         * ses.el (ses-initial-column-width): Revert previous change.
21775 2004-01-29  Stefan Monnier  <monnier@iro.umontreal.ca>
21777         * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
21778         (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
21779         Add edebug info.
21780         (jit-lock-mode): Setup/cancel the new timer.
21781         (jit-lock-context-fontify): New fun.  Extracted from
21782         context fontification code of jit-lock-stealth-fontify.
21783         (jit-lock-stealth-fontify): Don't do context fontification any more.
21785         * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
21786         (jit-lock-fontify-now): Handle the `quit' case.
21787         (jit-lock-contextually): Rename from jit-lock-defer-contextually.
21789 2004-01-29  Jari Aalto  <jari.aalto@poboxes.com>
21791         * progmodes/executable.el (executable-command-find-posix-p):
21792         New.  Check if find handles arguments Posix-style.
21794         * progmodes/grep.el (grep-compute-defaults):
21795         Use executable-command-find-posix-p.
21796         (grep-find): Check `grep-find-command'.
21798         * filecache.el (file-cache-find-posix-p): Delete.
21799         (file-cache-add-directory-using-find):
21800         Use `executable-command-find-posix-p'.
21802 2004-01-29  Dave Love  <fx@gnu.org>
21804         * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
21805         Iterate the hook function if arg is given.
21806         (mark-defun, narrow-to-defun): Change order of finding the limits.
21808         * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
21809         (byte-compile-format-warn): New.
21810         (byte-compile-callargs-warn): Use it.
21811         (Format, message, error): Add byte-compile-format-like property.
21812         (byte-compile-maybe-guarded): New.
21813         (byte-compile-if, byte-compile-cond): Use it.
21814         (byte-compile-lambda): Compile interactive forms,
21815         just to make warnings about them.
21817 2004-01-29  Jonathan Yavner  <jyavner@member.fsf.org>
21819         * ses.el (ses-initial-column-width): Increase to 14, so it will
21820         work well with the default printer of "%.7g" for extreme values
21821         like "-1.234567e+07".
21823 2004-01-29  Kenichi Handa  <handa@m17n.org>
21825         * term/x-win.el (x-selection-value): Optimize for ASCII only case.
21827 2004-01-28  Peter 'Luna' Runestig  <peter@runestig.com>
21829         * dos-w32.el: Added support for the `default-printer-name' function.
21831 2004-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21833         * server.el (server-socket-name): Don't use the hostname in the
21834         socket name since /tmp is local to the host anyway.
21836         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
21837         robust check of widening and fix var-naming.
21839 2004-01-27  Eli Tziperman  <eli@deas.harvard.edu>
21841         * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
21842         or rmail-spam- to rsf- in all function and variable names.
21843         (rsf-min-region-to-spam-list): New variable.
21844         (rsf-bbdb-auto-delete-spam-entries): Rename from
21845         rmail-bbdb-auto-delete-spam-bbdb-entries.  The cc: field is
21846         scanned together with the recipients field for spam testing; Don't
21847         delete spam message if rmail-delete-after-output is non-nil;
21848         (rsf-check-field): New function, extracted from code in
21849         rmail-spam-filter to ease addition of header fields like
21850         content-type:;
21851         (message-content-type): New variable.  The content-type: field was
21852         added also in defcustom of rsf-definitions-alist;
21853         (rmail-spam-filter): Replace repeated test code for header fields
21854         by calls to check-field; change the call to
21855         rmail-output-to-rmail-file such that rmail-current-message stays
21856         the same to avoid wrong deletion of unseen flags.
21857         (rmail-use-spam-filter): Add autoload cookie.
21859 2004-01-27  Jari Aalto  <jari.aalto@poboxes.com>
21861         * filecache.el (file-cache-find-posix-p): New function.  Detect Cygwin.
21862         (file-cache-add-directory-using-find): Add Cygwin support.
21863         (file-cache-find-command-posix-flag): New user variable.
21865         * filecache.el (file-cache-add-directory): Check for
21866         directories an remove them from dir-files.
21868 2004-01-27  Richard M. Stallman  <rms@gnu.org>
21870         * man.el (Man-fontify-manpage): Clean up message.
21872 2004-01-27  Kenichi Handa  <handa@m17n.org>
21874         * textmodes/paragraphs.el (sentence-end-without-space): New variable.
21875         (sentence-end): Define using sentence-end-without-space.
21877         * textmodes/fill.el (fill-delete-newlines): Don't add a space if
21878         a sentence ends with one of a character in sentence-end-without-space.
21880 2004-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21882         * font-lock.el (font-lock): Add jit-lock as explicit group member.
21883         (jit-lock): Group declaration moved to jit-lock.el.
21884         (toplevel): Don't explicitly require jit-lock, since it's autoloaded
21885         when necessary.
21887         * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
21888         (jit-lock-context-unfontify-pos): Rename from
21889         jit-lock-first-unfontify-pos.
21890         (jit-lock-defer-buffers): Rename from jit-lock-buffers.
21892 2004-01-25  Glenn Morris  <gmorris@ast.cam.ac.uk>
21894         * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
21895         (fortran-break-delimiters-re, fortran-no-break-re): New consts.
21896         (fortran-fill): When filling a string, adjust re-search-backward
21897         argument for special case of string just on fill-column.
21898         When filling non-string, allow one extra char if
21899         fortran-break-before-delimiters is non-nil.
21900         Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
21901         Use fortran-break-delimiters-re and fortran-no-break-re to
21902         correctly handle cases such as "**".
21904         * progmodes/f90.el (f90-break-delimiters): Doc fix.
21905         (f90-no-break-re): Add some extra tokens.  Doc fix.
21907 2004-01-24  Thien-Thi Nguyen  <ttn@gnu.org>
21909         * mail/rmail-spam-filter.el:
21910         Use two semicolons as Commentary line prefix.
21911         Add ";;; Code:" stylized comment.
21912         Delete end-of-line whitespace.
21913         Wrap (require 'cl) with `eval-when-compile'.
21915 2004-01-23  Benjamin Rutt  <brutt@bloomington.in.us>
21917         * vc.el (vc-annotate): Fix improper use of `make-local-variable'
21918         at the top level of vc.el.
21920 2004-01-23  Andre Spiegel  <spiegel@gnu.org>
21922         * vc.el (vc-current-line): Function removed.  This is now done by
21923         the new function line-at-pos in simple.el.
21924         (vc-annotate-warp-version): Use line-at-pos instead of
21925         vc-current-line.
21927 2004-01-22  Kim F. Storm  <storm@cua.dk>
21929         * simple.el (line-at-pos): New defun.
21930         (what-line): Use it.  Optimize by only counting lines in narrowed
21931         region once.
21933 2004-01-22  Kenichi Handa  <handa@m17n.org>
21935         * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
21936         point (register r1) only for charset mule-unicode-0100-24ff.
21938 2004-01-21  Markus Rost  <rost@mathematik.uni-bielefeld.de>
21940         * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
21941         trailing white space and ensure a final newline.
21943         * mail/rmail-spam-filter.el (rmail-use-spam-filter):
21944         Add autoload cookie.
21946 2004-01-21  Benjamin Rutt  <brutt@bloomington.in.us>
21948         * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
21949         activate view-mode explicitly.
21951 2004-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
21953         * term/x-win.el (x-clipboard-yank, menu-bar-edit-menu): Call
21954         menu-bar-enable-clipboard and make Paste use clipboard first.
21956 2004-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21958         * vc-mcvs.el (vc-mcvs-mode-line-string): Remove.  Does not work.
21959         (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
21960         (vc-mcvs-cvs): Remove.
21961         (vc-mcvs-command): Remove use of assert.
21963         * outline.el (outline-insert-heading): Tighten up match.
21964         (outline-demote, outline-move-subtree-down): Don't assume anything
21965         about outline-regexp.
21967         * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
21968         (texinfo-show-structure): Explicitly add ^, and simplify.
21970 2004-01-20  Glenn Morris  <gmorris@ast.cam.ac.uk>
21972         * calendar/appt.el (appt-check): Restore usage of
21973         appt-issue-message deleted in previous change.
21974         (top-level): Activate package when loaded (needed for backwards
21975         compatibility).
21977 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
21979         * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
21980         following previous change to smtpmail-send-data.
21982 2004-01-20  Benjamin Rutt  <brutt@bloomington.in.us>
21984         * vc.el (vc-default-previous-version): Doc enhancement.
21985         (vc-default-next-version): New function.
21986         (vc-print-log): New arg FOCUS-REV.
21987         (vc-annotate-mode): Derive from view-mode.
21988         (vc-annotate): New args REVISION, DISPLAY-MODE.
21989         (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
21990         (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
21991         (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
21992         (vc-annotate-show-diff-revision-at-line, vc-current-line)
21993         (vc-annotate-prev-version, vc-annotate-next-version): New functions.
21995         * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
21997 2004-01-19  Karl Berry  <karl@gnu.org>
21999         * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
22000         or "TexInfo".
22002 2004-01-19  Luc Teirlinck  <teirllm@auburn.edu>
22004         * subr.el (delete-dups): New function.
22006 2004-01-19  Karl Berry  <karl@gnu.org>
22008         * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
22009         with ^, since that's what texinfo-show-structure
22010         documentation says (plus it works much better in texinfo.txi).
22012 2004-01-18  Jesper Harder  <harder@ifa.au.dk>
22014         * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
22016 2004-01-18  David Ponce  <david@dponce.com>  (tiny change)
22018         * progmodes/which-func.el (which-function-mode): Don't cancel
22019         which-func-update-timer if not set.
22021 2004-01-17  Thien-Thi Nguyen  <ttn@gnu.org>
22023         * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
22024         Remove spurious left square bracket in XX:XXam regexp.
22026 2004-01-16  Luc Teirlinck  <teirllm@auburn.edu>
22028         * progmodes/cc-defs.el: Do not require cl at run time.
22030 2004-01-16  Richard M. Stallman  <rms@gnu.org>
22032         * emacs-lisp/cl.el (cl-cannot-unload): New function.
22033         (cl-unload-hook): Defvar this to run cl-cannot-unload.
22035         * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
22036         Call rmail-spam-filter.  Delete and expunge spam.
22037         Print number of spam messages deleted.
22038         Save and restore the deletion status of old messages when reading
22039         new mail with spam filter, so that expunging spam does not expunge
22040         msgs deleted by the user.
22041         (rmail-only-expunge): Add an optional argument dont-show to
22042         prevent showing message after expunge.
22044 2004-01-15  Luc Teirlinck  <teirllm@auburn.edu>
22046         * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
22047         * subr.el (declare): New macro.
22049 2004-01-15  Thien-Thi Nguyen  <ttn@gnu.org>
22051         * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
22053 2004-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
22055         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
22056         Test window-system rather than system-type (for X11/Mac).
22058 2004-01-12  Luc Teirlinck  <teirllm@auburn.edu>
22060         * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
22062 2004-01-12  Richard M. Stallman  <rms@gnu.org>
22064         * mail/rmail.el (rmail-convert-to-babyl-format):
22065         Use mail-unquote-printable-region.
22066         (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
22067         (rmail-hex-char-to-integer): Functions deleted.
22069         * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
22070         (mail-unquote-printable-region): New arg NOERROR.
22071         For invalid encoding, either signal an error to just return nil.
22073 2004-01-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
22075         * calendar/appt.el: Update copyright and commentary.
22076         (appt-issue-message): Make obsolete.
22077         (appt-visible, appt-msg-window): Make obsolete, in favor of
22078         appt-display-format.
22079         (appt-display-mode-line, appt-display-duration)
22080         (appt-display-diary, appt-time-msg-list, appt-mode-string)
22081         (appt-prev-comp-time, appt-display-count, appt-timer)
22082         (appt-convert-time): Doc change.
22083         (appt-disp-window-function, appt-delete-window-function):
22084         Use defcustom rather than defvar.
22085         (appt-display-format): New variable.
22086         (appt-display-message): New function with display code from appt-check.
22087         (appt-check): Add optional FORCE argument.  Doc change.
22088         Add appt-make-list to diary-hook if displaying diary.
22089         Remove checking of view-diary-entries-initially.
22090         Message display section removed to new function appt-display-message.
22091         (appt-display-window): Doc change.  Remove unused internal var
22092         this-buffer.  Do not beep, since appt-display-message does that.
22093         (appt-make-list): Doc change.  Use caar.
22094         (appt-sort-list): Simplify by using builtin sort function.
22095         (appt-update-list): New function for updating appts when diary is
22096         saved.
22097         (appt-activate): New autoloaded function to toggle package
22098         functionality.
22100         * calendar/cal-x.el: (calendar-one-frame-setup)
22101         (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
22103         * calendar/calendar.el: Update copyright.
22104         (view-diary-entries-initially, european-calendar-style): Doc change.
22105         (calendar-setup): Make defcustom rather than defvar.
22106         (mark-visible-calendar-date): Initialize temp-face and faceinfo
22107         in let binding so local to function.
22109         * calendar/diary-lib.el: Update copyright.
22110         (diary, diary-entry-time): Doc change.
22111         (list-diary-entries): Doc change.  Trivial logic change.
22112         (fancy-diary-display): Restore make-face command mistakenly
22113         deleted 2003-05-08.
22114         (show-all-diary-entries): Allow to pop-up frame if needed.
22116 2004-01-09  John Paul Wallington  <jpw@gnu.org>
22118         * bindings.el (mode-line-change-eol): Add EVENT parameter.
22119         Temporarily select EVENT's window for changing eol type.
22121 2004-01-09  Deepak Goel  <deego@gnufans.org>
22123         * calendar/diary-lib.el (diary-entry-time):
22124         Also accept time in the form XX[.XX][am/pm/AM/PM].
22125         (fancy-diary-font-lock-keywords): Likewise.
22126         (diary-font-lock-keywords): Likewise.
22127         * calendar/appt.el (appt-add): Likewise.
22128         (appt-make-list): Likewise.
22129         (appt-convert-time): Likewise.
22131 2004-01-08  Nick Roberts  <nick@nick.uklinux.net>
22133         * gdb-ui.el (gdb-ann3): Revert previous change.
22134         (gdb-source-info): Allow for case of where compilation directory
22135         is not recorded.
22137 2004-01-08  John Paul Wallington  <jpw@gnu.org>
22139         * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
22141 2004-01-07  Nick Roberts  <nick@nick.uklinux.net>
22143         * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
22145         * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
22146         (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
22147         problems.
22148         (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
22150 2004-01-07  Luc Teirlinck  <teirllm@auburn.edu>
22152         * files.el (write-file-functions, write-contents-functions):
22153         Clarify docstrings.
22155 2004-01-07  Kenichi Handa  <handa@m17n.org>
22157         * international/mule.el (set-auto-coding): Fix for the case that
22158         end-of-line is only CR.
22160 2004-01-07  Kim F. Storm  <storm@cua.dk>
22162         * subr.el (event-start, event-end): Doc fix.
22163         (posn-string, posn-image): New defuns.
22164         (posn-object): Return either image or string object.
22165         (posn-object-x-y): Return 8th element of position.
22166         (posn-object-width-height): New defun.
22168 2004-01-06  Andreas Schwab  <schwab@suse.de>
22170         * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
22171         output.
22173 2004-01-05  Karl Berry  <karl@gnu.org>
22175         * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
22176         / and *, too.
22178 2003-12-31  Simon Josefsson  <jas@extundo.com>
22180         * files.el (before-save-hook): Add.
22181         (basic-save-buffer): Use before-save-hook.
22183         * emacs-lisp/copyright.el: Fix comment to recommend
22184         before-save-hook instead of write-file-functions.
22186 2004-01-05  Richard M. Stallman  <rms@gnu.org>
22188         * finder.el (finder-commentary): Call delete-other-windows.
22190         * net/ange-ftp.el (ange-ftp-file-attributes):
22191         Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
22193 2004-01-04  Karl Berry  <karl@gnu.org>
22195         * emacs-lisp/copyright.el (copyright-regexp): Allow the common
22196         comment characters % and # in the copyright year notice,
22197         as well as ;.
22199 2004-01-04  Per Abrahamsen  <abraham@dina.kvl.dk>
22201         * wid-edit.el (default): Define dummy :value-delete.
22202         Reported by Jesper Harder <harder@ifa.au.dk>.
22204 2004-01-03  Richard M. Stallman  <rms@gnu.org>
22206         * progmodes/compile.el (compile-internal): Use point, not point-min,
22207         for set-window-point.
22209         * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
22211         * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
22213         * progmodes/grep.el (grep-mode-map):
22214         Don't remap next-line, previous-line.
22216 2004-01-03  Eric M. Ludlam  <eric@siege-engine.com>
22218         * speedbar.el (speedbar-edit-line): Change regexp to position
22219         the cursor on the first character of this line's button.
22221 2004-01-03  Luc Teirlinck  <teirllm@auburn.edu>
22223         * subr.el (functionp): Doc fix.
22225 2004-01-03  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
22227         * progmodes/idlwave.el (idlwave-make-tags):
22228         * textmodes/flyspell.el (flyspell-large-region):.
22229         * progmodes/make-mode.el (makefile-query-by-make-minus-q):
22230         * emulation/viper-util.el (viper-glob-unix-files):
22231         * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
22232         * man.el (Man-init-defvars):
22233         * jka-compr.el (jka-compr-call-process):
22234         * files.el (get-free-disk-space,insert-directory):
22235         * ediff-ptch.el (ediff-test-patch-utility):
22236         * ediff-diff.el (ediff-test-utility):
22237         * dired-aux.el (dired-check-process):
22238         * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
22239         test the return value of call-process, because it can be a string.
22241 2003-12-31  John Paul Wallington  <jpw@gnu.org>
22243         * bindings.el (completion-ignored-extensions): Add .pfsl.
22245 2003-12-31  Kim F. Storm  <storm@cua.dk>
22247         * ido.el (ido-nonreadable-directory-p): New defun to check for
22248         nonreadable directory without activating tramp (to avoid problems
22249         with checking incomplete tramp paths).
22250         (ido-set-current-directory, ido-file-internal)
22251         (ido-file-name-all-completions1): Use it.
22253 2003-12-30  Luc Teirlinck  <teirllm@auburn.edu>
22255         * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
22256         documentation if the anchor (or node) name is preceded by `info
22257         anchor' or `Info anchor' in addition to earlier `info node' and
22258         `Info node'.
22259         (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
22261 2003-12-30  Eli Zaretskii  <eliz@gnu.org>
22263         * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
22264         error in arguments to base64-decode-region.  Remove ^M characters
22265         after decoding base64.
22267 2003-12-30  Simon Josefsson  <jas@extundo.com>
22269         * textmodes/texinfo.el: Change maintainer to FSF.  Suggested by
22270         karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
22271         have only been distributed with Emacs for some years.
22272         (texinfo-mode-hook): Customize.
22274 2003-12-30  Eli Zaretskii  <eliz@gnu.org>
22276         * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
22277         cleaner (suggested by Richard Stallman).
22279         * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
22280         for gud-next, gud-nexti, gud-step and gud-stepi to prevent
22281         file-name clashes on 8+3 DOS filesystems.
22283         * toolbar/gud-next.pbm, toolbar/gud-next.xpm
22284         * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
22285         * toolbar/gud-step.pbm, toolbar/gud-step.xpm
22286         * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
22287         gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
22288         file-name clashes on 8+3 filesystems.
22290         * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
22291         Renamed from testcover-unsafep.el and testcover-ses.el to avoid
22292         file-name clashes on 8+3 DOS filesystems.
22294 2003-12-29  Richard M. Stallman  <rms@gnu.org>
22296         * mail/mail-utils.el (mail-unquote-printable-hexdigit):
22297         Upcase the character.
22299         * textmodes/flyspell.el (mail-mode-flyspell-verify):
22300         Search for header separator alone on a line, literally,
22301         and search for it backward, not forward.
22302         (flyspell-abbrev-table): Always use global-abbrev-table
22303         if there is no local one.
22305         * progmodes/sh-script.el (sh-get-indent-info):
22306         Don't move point back if at bob.
22308         * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
22310         * play/handwrite.el (handwrite): Make the handwrite credit message
22311         a comment rather than an output command.
22313         * obsolete/sc.el: Display message that this file is obsolete.
22315         * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
22317         * mail/rfc822.el (rfc822-address-start): Declare variable.
22318         Renamed from address-start.  All uses changed.
22320         * term.el (term-exec): Set up sentinel.
22321         (term-sentinel): New function.
22322         (term-handle-exit): New function.
22324         * subr.el (assoc-ignore-case, assoc-ignore-representation):
22325         Use assoc-string, and mark them obsolete.
22326         (delay-mode-hooks): Mark as permanent local.
22328         * simple.el (sendmail-user-agent-compose): Use assoc-string.
22330         * register.el (copy-rectangle-to-register): Doc fix.
22332         * info.el (Info-insert-dir): Use assoc-string.
22334         * info-look.el (info-lookup): Use assoc-string.
22336         * frame.el (pop-up-frame-function): Use quote, not `function'.
22337         (frame-notice-user-settings): Calculate ADJUSTED-TOP
22338         copying with lists as coordinate values.
22340         * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
22342         * find-dired.el (kill-find): New command.
22343         (find-dired): Make buffer read-only.
22344         Set up a keymap with C-c C-k running kill-find.
22345         (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
22347         * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
22349         * filecache.el (file-cache-ignore-case): New variable.
22350         (file-cache-assoc-function): Var deleted.  Use assoc-string instead.
22352         * comint.el (comint-arguments): Set COUNT after ARGS is complete.
22353         (comint-dynamic-complete-as-filename): Rename local vars.
22354         (comint-dynamic-list-filename-completions): Likewise.
22356         * comint.el (comint-dynamic-list-completions-config): New var.
22357         (comint-dynamic-list-completions): Handle both SPC and TAB right.
22359         * comint.el (comint-file-name-chars): Add [].
22360         (comint-word): Use skip-chars-backward, not search.
22362         * shell.el (shell-file-name-chars): Add [].
22364         * shell.el (shell-dynamic-complete-as-command): Rename local vars.
22366         * bookmark.el (bookmark-get-bookmark): Use assoc-string.
22368         * generic.el (define-generic-mode): Doc fix.
22370 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
22372         * files.el (kill-some-buffers): Doc fix.
22374 2003-12-29  David Herring  <sdh6@ra.msstate.edu>  (tiny change)
22376         * comint.el (comint-watch-for-password-prompt): Pass `string' as
22377         arg to send-invisible
22378         (send-invisible): Doc fix.  The argument is now a prompt, not the
22379         string to send.
22380         (comint-read-noecho): Doc fix.
22382 2003-12-29  Michael R. Wolf  <MichaelRWolf@att.net>  (tiny change)
22384         * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
22385         "@", as required by some ISP hosting service.  Fix defcustom
22386         argument syntax errors that prevented use of customization.
22388 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
22390         * xml.el (xml-get-attribute-or-nil): Doc fix.
22392 2003-12-29  Peter 'Luna' Runestig  <peter@runestig.com>
22394         * net/zone-mode.el (zone-mode): Use write-file-functions, not
22395         write-file-hooks.
22397 2003-12-29  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
22399         * autorevert.el (auto-revert-interval): Doc fix.
22401 2003-12-29  Mark A. Hershberger  <mah@everybody.org>
22403         * xml.el (xml-get-attribute-or-nil): New function, like
22404         xml-get-attribute, but returns nil if the attribute was not found.
22405         (xml-get-attribute): Convert to defsubst, uses
22406         xml-get-attribute-or-nil.
22408 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
22410         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
22412 2003-12-29  Alex Schroeder  <alex@emacswiki.org>  (tiny change)
22414         * custom.el (custom-declare-theme): Use `value' when putting
22415         properties on `theme'.
22417 2003-12-29  Takaaki Ota  <Takaaki.Ota@am.sony.com>
22419         * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
22420         for each yank-handler segment.
22421         (insert-for-yank-1): New function, with the body of the previous
22422         insert-for-yank.
22424         * textmodes/table.el (table-yank-handler): New defcustom.
22425         (table--put-cell-indicator-property): Put yank-handler property
22426         that indicates the yank handler for the table cell.
22428 2003-12-29  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
22430         * generic-x.el (etc-modules-conf-generic-mode): A more complete
22431         set of keywords.
22433 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
22435         * international/mule-cmds.el (reset-language-environment)
22436         (set-language-environment): Don't invoke fontset-related functions
22437         if fontset-list is not fboundp.
22439 2003-12-29  Kenichi Handa  <handa@m17n.org>
22441         * international/mule-cmds.el (reset-language-environment):
22442         Call set-overriding-fontspec-internal with nil.
22443         (set-language-environment): Call set-overriding-fontspec-internal
22444         if the language environment specify `overriding-fontspec'.
22445         (language-info-alist): Doc added.
22447         * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
22448         characters of mule-unicode-0100-24ff.
22449         (ccl-encode-windows-1251-font): New CCL program.
22450         ("Bulgarian"): Specify overriding-fontspec.
22451         ("Belarusian"): Likewise.
22453 2003-12-28  Sam Steingold  <sds@gnu.org>
22455         * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
22456         parameter ID-FORMAT to conform with the 2003-11-30 patch.
22458 2003-12-28  Nick Roberts  <nick@nick.uklinux.net>
22460         * progmodes/gud.el (gud-gdb-command-name): Set default to
22461         "gdb --annotate=3".
22462         (gud-gdb-marker-filter): Look out for annotations.
22463         (gdb-first-pre-prompt): New variable.
22464         Remove trailing white space.
22466         * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
22467         if necessary.
22468         (gdb-ann3): New function.  Initialize M-x gdb as for M-x gdba if
22469         annotations are detected.
22470         (gud-gdba-marker-filter): Use global variable gud-marker-acc
22471         instead of a local one to allow transition from
22472         gud-gdb-marker-filter.
22473         Remove trailing white space.
22475 2003-12-27  Kim F. Storm  <storm@cua.dk>
22477         * ido.el: Handle non-readable directories.
22478         (ido-decorations): Add 9th element for non-readable directory.
22479         (ido-directory-nonreadable): New dynamic var.
22480         (ido-set-current-directory): Set it.
22481         (ido-read-buffer, ido-file-internal):
22482         (ido-read-file-name, ido-read-directory-name): Let-bind it.
22483         (ido-file-name-all-completions1): Return empty list for
22484         non-readable directory.
22485         (ido-exhibit): Print [Not readable] if directory is not readable.
22486         (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
22487         (ido-read-file-name, ido-file-internal, ido-read-directory-name):
22488         Use it.
22490 2003-12-27  Lars Hansen  <larsh@math.ku.dk>
22492         * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
22493         calls to directory-files-and-attributes and file-attributes.
22494         (ls-lisp-format): Remove system dependent handling of user and
22495         group id's.
22497 2003-12-25  Luc Teirlinck  <teirllm@auburn.edu>
22499         * ffap.el (ffap-read-file-or-url): Revert previous change.
22501 2003-12-25  Robert J. Chassell  <bob@rattlesnake.com>
22503         * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
22504         new list of included files called `files-with-node-lines', that
22505         only have node lines.  This way @include commands can include any
22506         file, such as version and update files without node lines, not
22507         just files that are chapters.
22509 2003-12-25  Andreas Schwab  <schwab@suse.de>
22511         * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
22512         file not found.
22514 2003-12-08  Miles Bader  <miles@gnu.org>
22516         * dired.el (dired-between-files): Always use dired-move-to-filename,
22517         which is more robust in non-english locales.
22519 2003-12-25  Markus Rost  <rost@mathematik.uni-bielefeld.de>
22521         * vc.el (vc-dired-purge): Avoid error from `kill-line'.
22523 2003-12-24  Andreas Schwab  <schwab@suse.de>
22525         * shell.el (shell-file-name-quote-list): Add backslash.
22527         * comint.el (comint-quote-filename): Correctly handle backslash
22528         in comint-file-name-quote-list.
22530 2003-12-24  Kenichi Handa  <handa@m17n.org>
22532         * international/mule-cmds.el (set-default-coding-systems):
22533         Call ucs-set-table-for-input for all buffers that don't have local
22534         value of buffer-file-coding-system.
22536         * international/ucs-tables.el (ucs-set-table-for-input):
22537         If translation-table-for-encode is a symbol, get its
22538         translation-table property.
22540 2003-12-23  Luc Teirlinck  <teirllm@auburn.edu>
22542         * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
22543         to `completing-read' on a recently fixed bug.
22545         * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
22546         instead of SPACE, to get the list of possible fringe modes.
22547         SPACE only works if both `partial-completion-mode' and
22548         `completion-auto-help' are nil.
22550         * complete.el (PC-is-complete-p): Delete.
22551         (PC-do-completion): Replace all calls to `PC-is-complete-p' with
22552         calls to `test-completion'.
22554 2003-12-23  Nick Roberts  <nick@nick.uklinux.net>
22556         * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
22557         to edit values when there are no children.
22559         * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
22560         a mode called "Assembler" already exists.
22561         (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
22562         (gud-watch): Use format option.  Remove font properties from string.
22563         (gdb-var-create-handler, gdb-var-list-children-handler):
22564         Don't bother about properties as there are none.
22565         (gdb-var-create-handler, gdb-var-list-children-handler)
22566         (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
22567         with two arguments.
22568         (gdb-var-evaluate-expression-handler, gdb-post-prompt):
22569         Let speedbar show value changes with a different font.
22570         (gdb-edit-value): New defun.
22571         (gdb-clear-partial-output, gdb-clear-inferior-io)
22572         (def-gdb-auto-update-handler): Use erase-buffer.
22573         (gdb-frame-handler): Display watch expressions in
22574         FUNCTION::VARIABLE format if required.
22576 2003-12-23  John Paul Wallington  <jpw@gnu.org>
22578         * info.el (Info-unescape-quotes, Info-split-parameter-string)
22579         (Info-goto-emacs-command-node): Doc fixes.
22581 2003-12-12  Jesper Harder  <harder@ifa.au.dk>
22583         * cus-edit.el (custom-add-parent-links): Define "many".
22585 2003-12-08  Per Abrahamsen  <abraham@dina.kvl.dk>
22587         * wid-edit.el (widget-child-value-get, widget-child-value-inline)
22588         (widget-child-validate, widget-type-value-create)
22589         (widget-type-default-get, widget-type-match): New functions.
22590         (lazy): New widget.
22591         (menu-choice, checklist, radio-button-choice, editable-list)
22592         (group, documentation-string): Remove redundant (per 2003-10-25
22593         change) calls to `widget-children-value-delete'.
22594         (widget-choice-value-get, widget-choice-value-inline): Remove.
22595         (menu-choice): Update widget.
22597 2003-12-03  Kenichi Handa  <handa@m17n.org>
22599         * language/cyrillic.el: Register "microsoft-cp1251" in
22600         ctext-non-standard-encodings-alist.
22601         ("Bulgarian"): Add ctext-non-standard-encodings.
22602         ("Belarusian"): Likewise.
22604         * international/mule-conf.el (compound-text-with-extensions):
22605         Change the type to 2 (iso-2022 base).
22607         * international/mule.el (ctext-non-standard-encodings-alist):
22608         Change the format.
22609         (ctext-non-standard-encodings): New variable.
22610         (ctext-post-read-conversion): Fully re-written.
22611         (ctext-non-standard-designations-alist): Delete it.
22612         (ctext-non-standard-encodings-table): New function.
22613         (ctext-pre-write-conversion): Fully re-written.
22615 2003-11-30  Per Abrahamsen  <abraham@dina.kvl.dk>
22617         * cus-edit.el (custom-add-parent-links): Add documentation links
22618         for parent, if the item has none of its own.
22620 2003-11-30  Richard M. Stallman  <rms@gnu.org>
22622         * dired-aux.el (dired-do-query-replace-regexp):
22623         Report files visited read-only.
22625 2003-11-30  Juri Linkov  <juri@jurta.org>
22627         * dired-aux.el (dired-compare-directories): New command.
22628         (dired-file-set-difference, dired-files-attributes): New functions.
22630 2003-11-30  Kai Grossjohann  <kai.grossjohann@gmx.net>
22631         Version 2.0.38 of Tramp released.
22633         * net/tramp.el (tramp-chunksize): Extend docstring.  Suggested by
22634         Charles Curley <charlescurley@charlescurley.com>.
22635         (tramp-multi-connection-function-alist): Add ssht entry which adds
22636         "-e none -t -t" to the list of ssh args.  Suggested by Adrian
22637         Aichner.
22638         (tramp-get-method-parameter): New function to retrieve a method
22639         parameter.  This allows for omission of method parameters.
22640         Callers adjusted.
22642 2003-11-30  Michael Albinus  <Michael.Albinus@alcatel.de>
22644         * net/tramp.el: Add new optional parameter ID-FORMAT to
22645         `file-attributes'.  Calls of `file-attributes' won't use this
22646         parameter for backward compatibility reasons.
22647         (tramp-perl-file-attributes): Add a new parameter to Perl script
22648         in order to handle uid/gid as strings, if desired.
22649         (tramp-handle-file-truename, tramp-handle-file-symlink-p):
22650         Apply `file-attributes' instead of `tramp-handle-file-attributes' in
22651         order to make the function more general.
22652         (tramp-handle-file-attributes): Replace proprietary optional
22653         parameter NONNUMERIC by the recently (Emacs 22.1) introduced ID-FORMAT.
22654         (tramp-handle-file-attributes-with-perl): Handle parameter
22655         NONNUMERIC if set.  This wasn't done in the past.
22656         (tramp-post-connection): Apply second parameter "$2" if
22657         `tramp-remote-perl' is called.
22659         * net/tramp-smb.el (tramp-smb-handle-delete-file):
22660         Correct cut'n'waste error (`filename' instead of `directory').
22661         (tramp-smb-handle-directory-files-and-attributes)
22662         (tramp-smb-handle-file-attributes): Add recently (Emacs 22.1)
22663         introduced parameter ID-FORMAT.
22664         (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
22665         error (`directory' instead of `ldir').
22667         * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
22668         `file-attributes' has a second parameter.  If yes, apply it with
22669         value "'integer".  Otherwise, don't use that parameter (default is
22670         integer format).
22672 2003-11-30  Luc Teirlinck  <teirllm@auburn.edu>
22674         * help.el (help-map): Bind `display-local-help' to `C-h .'.
22675         (help-for-help): Add `C-h .' to the listed Help options.
22676         Remove trailing whitespace.
22678         * help-at-pt.el: New file.
22680 2003-11-30  Jonathan Yavner  <jyavner@member.fsf.org>
22682         * subr.el (noreturn, 1value): New macros for test coverage.
22683         See `testcover.el'.
22685         * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and
22686         `1value'.
22688         * emacs-lisp/testcover.el (testcover-reinstrument): Special case
22689         for macro `1value'.
22690         (testcover-1value): New function.  Checks that a 1value form
22691         actually returns only one value.  Requested by RMS.
22693 2003-11-29  Nick Roberts  <nick@nick.uklinux.net>
22695         * gdb-ui.el (gud-watch, gdb-var-create-handler)
22696         (gdb-var-list-children, gdb-var-list-children-handler)
22697         (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
22698         gdb commands that use mi to keep them out of the command history.
22700 2003-11-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
22702         * cus-start.el (all): Add use-file-dialog.
22704 2003-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
22706         * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
22708 2003-11-27  Kim F. Storm  <storm@cua.dk>
22710         * subr.el (posn-object-x-y): New defun.
22712 2003-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
22714         * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
22715         Don't use `space' for \\\n.
22716         Be more selective as to which # are comment-starters.
22718 2003-11-26  Luc Teirlinck  <teirllm@auburn.edu>
22720         * subr.el (number-sequence): Improve handling of floating point
22721         arguments (suggested by Kim Storm).  Allow negative arguments.
22723 2003-11-26  Kenichi Handa  <handa@m17n.org>
22725         * international/mule-cmds.el (standard-display-european-internal):
22726         Cancel the standard-display-table setting for ` and '.
22728 2003-11-26  Kim F. Storm  <storm@cua.dk>
22730         * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
22731         New defcustoms to add ffap-like functionality to ido.
22732         (ido-saved-vc-hb): Rename from ido-saved-vc-mt.  Uses changed.
22733         (ido-no-final-slash): New defun.
22734         (ido-make-prompt, ido-file-internal, ido-toggle-vc)
22735         (ido-read-file-name): ): Toggle VC checking via
22736         vc-handled-backends instead of vc-master-templates.
22737         (ido-file-internal): Handle ido-use-url-at-point and
22738         ido-use-filename-at-point via code borrowed from ffap-guesser.
22739         Handle new ido-exit code ffap.
22740         (ido-sort-list): Ignore final slash when sorting file names.
22742 2003-11-25  Kim F. Storm  <storm@cua.dk>
22744         * emulation/cua-base.el (cua--standard-movement-commands):
22745         Add forward-sentence and backward-sentence.
22747 2003-11-25  Stephen Eglen  <stephen@gnu.org>
22749         * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
22750         iswitchb-exit is set to 'usefirst when user selects buffer at head
22751         of list using RET.  (Selecting buffers at the head of the list was
22752         broken if the substring was also a complete buffername.)
22754 2003-11-23  Kim F. Storm  <storm@cua.dk>
22756         * progmodes/compile.el (grep-command, grep-use-null-device)
22757         (grep-find-command, grep-tree-command, grep-tree-files-aliases)
22758         (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
22759         (grep-regexp-alist, grep-program, find-program)
22760         (grep-find-use-xargs, grep-history, grep-find-history)
22761         (grep-process-setup, grep-compute-defaults)
22762         (grep-default-command, grep, grep-tag-default, grep-find)
22763         (grep-expand-command-macros, grep-tree-last-regexp)
22764         (grep-tree-last-files, grep-tree): Move grep variables, functions
22765         and commands to new file grep.el.
22766         (compilation-mode-map): Remove grep commands from Compile sub-menu.
22767         (compilation-process-setup-function): Doc fix.
22768         (compilation-highlight-regexp, compilation-highlight-overlay): New
22769         defvars used for highlighting current compile error in source buffer.
22770         (compile-internal): New optional args HIGHLIGHT-REGEXP and
22771         LOCAL-MAP which overrides compilation-highlight-regexp and
22772         compilation-mode-map for this compilation.
22773         Delay calling compilation-set-window-height until after running
22774         compilation-process-setup-function so it can buffer-local override
22775         compilation-window-height.
22776         Check buffer-local value of compilation-scroll-output.
22777         (compilation-set-window-height): Use buffer-local value of
22778         compilation-window-height.
22779         (compilation-revert-buffer): Don't pass (undefined)
22780         preserve-modes arg to revert-buffer.
22781         (next-error-no-select, previous-error-no-select): New commands.
22782         (compilation-goto-locus): Temporarily highlight current match in
22783         source buffer using compilation-highlight-regexp.
22785         * progmodes/grep.el: New file with grep code from compile.el.
22786         (grep): New defcustom group.
22787         (grep-window-height): New defcustom, like compilation-window-height.
22788         (grep-auto-highlight): New defcustom, like compile-auto-highlight.
22789         (grep-scroll-output): New defcustom, like compilation-scroll-output.
22790         (grep-command, grep-use-null-device, grep-find-command)
22791         (grep-tree-files-aliases, grep-tree-ignore-case)
22792         (grep-tree-ignore-CVS-directories): Move to grep custom group.
22793         (grep-setup-hook): New hook variable.
22794         (grep-mode-map): New keymap for grep commands.  Add Grep menu.
22795         (grep-last-buffer): New defvar, override compilation-last-buffer.
22796         (grep): Add optional arg HIGHLIGHT-REGEXP.  Doc fix.
22797         Call compile-internal with args highlight-regexp and grep-mode-map.
22799 2003-11-23  Kim F. Storm  <storm@cua.dk>
22801         * subr.el (event-start, event-end): Doc fix.
22802         (posn-window, posn-x-y, posn-timestamp): Simplify doc.
22803         (posn-area, posn-actual-col-row, posn-object): New defuns.
22804         (posn-col-row): Simplify doc.  Rewrite to use cond.
22805         (posn-point): Also return buffer position for events outside text
22806         area (that info is now present in the event position).
22808         * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
22809         mouse-set-point so that hscroll still works now that clicks on
22810         fringes generate specific mouse events.
22811         (mouse-set-point): Note that it now works in fringes and margins
22812         too due to new semantics of posn-point in fringes and margins.
22814         * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
22815         (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
22817 2003-11-20  Kim F. Storm  <storm@cua.dk>
22819         * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
22820         (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
22821         (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
22822         to 100 for icons to avoid increasing line height when shown.
22824 2003-11-17  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
22826         * newcomment.el (comment-normalize-vars): Initialize properly if
22827         comment-start was nil.
22829 2003-11-19  Andreas Schwab  <schwab@suse.de>
22831         * simple.el (set-variable): Fix indentation.
22833 2003-11-17  Kenichi Handa  <handa@m17n.org>
22835         * international/latin1-disp.el (latin1-display-ucs-per-lynx):
22836         Fix docstring.
22838 2003-11-17  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
22840         * international/latin1-disp.el (latin1-display): Fix docstring.
22842 2003-11-16  John Wiegley  <johnw@newartisans.com>
22844         * eshell/em-ls.el (eshell-ls-file): There are times with
22845         size-width is nil and uncomputed (when directories are created in
22846         dired, for example); in this case, 4 is reasonable default value,
22847         although it may caused skewed new entries (which could be avoided
22848         by returning the original value of 8 in all cases, but 99% of the
22849         time this is a waste of whitespace).
22851 2003-11-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
22853         * cc-engine.el (c-guess-continued-construct)
22854         (c-guess-basic-syntax): Check a little more carefully if it's a
22855         function declaration when an unknown construct followed by a block
22856         is found inside a statement context.  This avoids macros followed
22857         by blocks to be taken as function declarations.
22859         (c-guess-continued-construct): Change the analysis of a statement
22860         continuation with a brace open to `substatement-block', for
22861         consistency with recognized statements.
22863         (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
22864         start is in a position so that `c-beginning-of-statement-1' jumped
22865         to the beginning of the same statement.
22867         * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
22868         Don't accept binary operators in the arglist if we're in a function
22869         call context, i.e. if `c-restricted-<>-arglists' is set.  That avoids
22870         template recognition in cases like "if (a < b || c > d)".
22872         (c-restricted-<>-arglists): New more appropriate name for
22873         `c-disallow-comma-in-<>-arglists'.
22875         Accessing functions updated for the variable name change.
22877         * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
22878         match data could get clobbered if NOT-INSIDE-TOKEN is used.
22880         * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
22881         labels.
22883         (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
22884         instead of duplicating parts of it.  This fixes bogus label
22885         recognition.
22887         * cc-align.el (c-gnu-impose-minimum): Revert to the old method
22888         of checking the context in which to apply the minimum indentation,
22889         so that it isn't enforced in e.g. namespace blocks.
22891         * cc-vars.el (c-inside-block-syms): New constant used by
22892         `c-gnu-impose-minimum'.  It's defined close to `c-offsets-alist'
22893         to somewhat reduce the risk of becoming stale.
22895         * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
22896         cc-cmds to cc-engine to allow use from cc-align.
22898         * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
22899         qualified identifiers containing "::".
22901         * cc-defs.el (c-make-keywords-re): Add kludge for bug in
22902         `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
22904         * cc-vars.el (c-emacs-features): Use a space in front of the name
22905         of the temporary buffer.  That also avoids dumping problems in
22906         XEmacs due to undo info being left around after the buffer is killed.
22908         * cc-engine.el (c-in-knr-argdecl): Look closer at the function
22909         arglist to see if it's a K&R style declaration.
22911         (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
22912         before returning `knr-argdecl-intro'.
22914 2003-11-16  John Wiegley  <johnw@newartisans.com>
22916         * eshell/em-ls.el (eshell-ls-file): Instead of making the size
22917         field in a long-listing always 8 characters, use `size-width',
22918         which has already been computed.
22920 2003-11-15  Thien-Thi Nguyen  <ttn@gnu.org>
22922         * subr.el (minor-mode-list): Add `hs-minor-mode'.
22924 2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
22926         * diff-mode.el (diff-hunk-prev, diff-hunk-next):
22927         Support operation while narrowed, with `diff-restrict-view'.
22929 2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
22931         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
22932         Take additional optional arg NARROWFUN.  For the generated functions:
22933         Add local var `was-narrowed-p'.  Also, if NARROWFUN is specified,
22934         include frags that arrange to check for and save narrowing state before
22935         the move and then conditionally call NARROWFUN after the move.
22937 2003-11-14  John Wiegley  <johnw@newartisans.com>
22939         * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
22940         that was optional, but obviously missing based on surrounding code.
22942         * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
22943         string arguments to numbers unless the whole argument was seen as
22944         a number.
22946 2003-11-14  Kenichi Handa  <handa@m17n.org>
22948         * international/mule.el (ctext-non-standard-encodings-alist):
22949         Fix coding systems.
22951 2003-11-10  Kenichi Handa  <handa@m17n.org>
22953         * language/kannada.el ("Kannada"): Add sample-text.
22955         * language/knd-util.el (kannada-compose-region)
22956         (kannada-compose-string, kannada-post-read-conversion):
22957         Add autoload cookie.
22959         * international/quail.el (quail-completion): Change the message
22960         "corresponding translations" to "corresponding characters".
22962 2003-11-09  Markus Rost  <rost@mathematik.uni-bielefeld.de>
22964         * descr-text.el (describe-char): Fix typo.
22966 2003-11-08  Kailash C. Chowksey  <klchxbec@m-net.arbornet.org>
22968         These changes are to support Kannada language/script.
22970         * Makefile.in (DONTCOMPILE): Add kannada.el.
22972         * makefile.w32-in (DONTCOMPILE): Add kannada.el.
22974         * loadup.el: Preload kannada.el.
22976         * language/ind-util.el (ucs-kannada-to-is13194-alist)
22977         (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
22978         New variables.
22980         * language/kannada.el: New file.
22982         * language/knd-util.el: New file.
22984 2003-11-07  Andreas Schwab  <schwab@suse.de>
22986         * progmodes/autoconf.el (autoconf-font-lock-keywords):
22987         Also highlight AH_*.
22989         * xml.el (xml-parse-dtd): Fix misplaced paren.
22991 2003-11-07  Kenichi Handa  <handa@m17n.org>
22993         * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
22995 2003-11-05  Juri Linkov  <juri@jurta.org>
22997         * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
22998         (desktop-buffer-file): Use saved buffer-file-coding-system
22999         for file reading.  Set auto-insert to nil to prevent automatic
23000         insertion into restored empty files.
23002 2003-11-04  Luc Teirlinck  <teirllm@auburn.edu>
23004         * files.el (risky-local-variable-p): Make second argument optional.
23006 2003-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
23008         * subr.el (add-hook): Fix last change.
23010 2003-11-03  Eli Zaretskii  <eliz@gnu.org>
23012         * mail/rmail.el (rmail-convert-to-babyl-format):
23013         If base64-decode-region signals an error, catch it and silently
23014         ignore it.
23016 2003-11-01  Mark A. Hershberger  <mah@everybody.org>
23018         * xml.el (xml-parse-region): Allow comments to appear after the
23019         topmost element has closed.
23020         (xml-ns-parse-ns-attrs, xml-ns-expand-el)
23021         (xml-ns-expand-attr): New functions to do namespace handling.
23022         (xml-intern-attrlist): Back-compatible handling of attribute names.
23023         (xml-parse-tag): Move namespace handling to separate functions.
23024         Now produces elements in the form ((:ns . "element") (attr-list)
23025         children) instead of ('ns:element (attr-list) children).
23026         (xml-parse-attlist): Fix attribute parsing.
23027         (xml-parse-dtd): Change parsing so that it produces strings
23028         instead of interned symbols.
23030 2003-11-01  era@iki.fi  <era@iki.fi>  (tiny change)
23032         * dired.el (dired-ls-sorting-switches): Doc fix.
23034 2003-11-01  Oliver Scholz  <epameinondas@gmx.de>
23036         * emacs-lisp/rx.el (rx-or): Fix the case of
23037         "(rx (and ?a (or ?b ?c) ?d))".
23039 2003-11-01  Christoph Wedler  <wedler@users.sourceforge.net>  (tiny change)
23041         * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
23042         (texinfo-format-region): Use it.
23043         (texinfo-format-buffer-1): Ditto.
23045 2003-11-01  Alan Mackenzie  <acm@muc.de>
23047         Changes to allow scrolling whilst in isearch mode:
23048         * isearch.el (isearch-unread-key-sequence): New function,
23049         extracted from isearch-other-meta-char.
23050         (top level): (put 'foo 'isearch-scroll) on all Emacs's
23051         "scrollable" standard functions.
23052         (isearch-allow-scroll): New customizable variable.
23053         (isearch-string-out-of-window, isearch-back-into-window)
23054         (isearch-reread-key-sequence-naturally)
23055         (isearch-lookup-scroll-key): New functions.
23056         (isearch-other-meta-char): Doc string and functionality enhanced.
23057         Now accepts a prefix argument.
23058         (isearch-lazy-highlight-window-end): New variable.
23059         (isearch-lazy-highlight-new-loop): Pay attention to the window's
23060         end (thru isearch-lazy-highlight-window-end), not only its start.
23062         * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
23063         (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
23064         (universal-argument, universal-argument-more, negative-argument)
23065         (digit-argument, universal-argument-other-key): Minor changes.
23067 2003-11-01  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
23069         * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
23070         recursively if the last message is deleted, thus avoiding an
23071         infinite loop.
23073 2003-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23075         * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
23076         (tex-main-file): Don't add .tex if the extension is already present.
23077         (tex-uptodate-p): Don't recurse indefinitely with symlinks.
23079 2003-10-29  Lute Kamstra  <lute@gnu.org>
23081         * progmodes/octave-inf.el (inferior-octave-prompt):
23082         Recognize version number in prompt.
23084 2003-10-28  Dave Love  <fx@gnu.org>
23086         * international/characters.el: Fix some Unicode ranges.
23088 2003-10-28  Kenichi Handa  <handa@m17n.org>
23090         * disp-table.el (standard-display-8bit)
23091         (standard-display-default, standard-display-ascii)
23092         (standard-display-g1, standard-display-graphic)
23093         (standard-display-underline): Assure that standard-display-table
23094         is a display table.
23096 2003-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
23098         * simple.el (reindent-then-newline-and-indent): Delete space *after*
23099         reindenting the first line.
23101 2003-10-25  Per Abrahamsen  <abraham@dina.kvl.dk>
23103         * wid-edit.el (widget-default-delete): Always delete child widgets.
23105 2003-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
23107         * newcomment.el (comment-indent): Don't call indent-according-to-mode
23108         if the line has code.
23109         Don't try to line up with something that's too far left.
23111         * progmodes/octave-mod.el (octave-comment-start): Simplify.
23112         (octave-mode-syntax-table): Add % as a comment starter.
23113         (octave-point): Remove.
23114         (octave-in-comment-p, octave-in-string-p)
23115         (octave-not-in-string-or-comment-p, calculate-octave-indent)
23116         (octave-blink-matching-block-open, octave-auto-fill):
23117         Use line-(beginning|end)-position instead.
23119 2003-10-23  Francesco Potort\e,Al\e(B  <pot@gnu.org>
23121         * emacs-lisp/authors.el (authors-aliases): Add correct realname
23122         for Francesco Potort\e,Al\e(B.
23124 2003-10-23  Dave Love  <fx@gnu.org>
23126         * international/mule-cmds.el (locale-charset-to-coding-system):
23127         Don't rely on nil being a coding system.
23129         * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
23130         (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
23131         (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
23133 2003-10-21  Nick Roberts  <nick@nick.uklinux.net>
23135         * gdb-ui.el (gdb-current-language): New variable.
23136         (gdb-update-flag): Remove variable.
23137         (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
23138         (gdb-take-last-elt): Remove function.
23139         (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
23140         (gdb-post-prompt): Check for variable object changes here.
23142         * progmodes/gud.el (gud-speedbar-buttons): Check for variable
23143         object changes in gdb-ui.el.
23145 2003-10-21  Richard M. Stallman  <rms@gnu.org>
23147         * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
23149         * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
23150         Don't check for foo*/ wildcard form here.
23151         (insert-directory): Recognize foo*/ as a wildcard.
23152         Separate wildcard-regexp variable from the arg, wildcard.
23154         * subr.el (add-hook): Correctly detect when make-local-hook was used.
23155         (remove-hook): Correctly handle strange cases about local hooks.
23157 2003-10-21  David Ponce  <david@dponce.com>
23159         * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
23160         argument REAL, to return a real number instead of a rounded
23161         integer value.  Define as inline function.
23162         (ruler-mode-right-fringe-cols): Likewise.
23163         (ruler-mode-scroll-bar-cols): New function.
23164         (ruler-mode-left-scroll-bar-cols): Use it.  Define as macro.
23165         (ruler-mode-right-scroll-bar-cols): Likewise.
23166         (ruler-mode-space): New function.
23167         (ruler-mode-ruler): Use it.  Handle variations of fringe style,
23168         scroll bar mode and margins in a more robust way.
23170 2003-10-21  Christoph Wedler  <Christoph.Wedler@sap.com>
23172         * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
23173         (antlr-c-init-language-vars): New function.
23174         (antlr-mode): Use it with cc-mode before v5.29.
23175         (antlr-c-common-init): Don't set some local vars here.
23176         (antlr-mode): Set them here.
23177         (antlr-c-forward-sws): New function alias.
23178         (antlr-mode): Redefine with cc-mode before v5.30.
23179         (antlr-skip-sexps): Use it.
23180         (antlr-skip-exception-part): Ditto.
23181         (antlr-skip-file-prelude): Ditto.
23182         (antlr-outside-rule-p): Ditto.
23183         (antlr-end-of-body): Ditto.
23184         (antlr-option-kind): Ditto.
23185         (antlr-insert-option-area): Ditto.
23186         (antlr-file-dependencies): Ditto.
23188 2003-10-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
23190         * textmodes/bibtex.el (bibtex-move-outside-of-entry):
23191         Move backward only if point was not inside an entry.
23193 2003-10-21  Richard M. Stallman  <rms@gnu.org>
23195         * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
23197 2003-10-21  Juri Linkov  <juri@jurta.org>
23199         * compare-w.el: Automatically skip non-matching text to resync.
23200         (compare-windows-whitespace): Doc fix.
23201         (compare-windows-sync, compare-windows-sync-string-size)
23202         (compare-windows-recenter, compare-ignore-whitespace)
23203         (compare-windows-highlight, compare-windows-face): New variables.
23204         (compare-windows): Use compare-windows-sync.
23205         (compare-windows-highlight, compare-windows-dehighlight)
23206         (compare-windows-sync-regexp)
23207         (compare-windows-sync-default-function): New functions.
23209 2003-10-21  Juri Linkov  <juri@jurta.org>
23211         * diff.el (diff-parse-differences): Don't visit the files now;
23212         instead, just record the error locus.
23214 2003-10-21  Dave Love  <fx@gnu.org>
23216         * progmodes/cfengine.el: New file.
23218 2003-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
23220         * complete.el (PC-do-completion): Do not forget to use `pred' as the
23221         default-directory when completing file names.
23223 2003-10-20  Luc Teirlinck  <teirllm@auburn.edu>
23225         * help-mode.el (help-make-xrefs): Make sure that if a symbol is
23226         followed by the word `face', it gets treated as a face, even if
23227         it is also defined as a variable or a function.
23229 2003-10-20  Dave Love  <fx@gnu.org>
23231         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
23232         Avoid incf in macro expansion.
23234 2003-10-20  John Paul Wallington  <jpw@gnu.org>
23236         * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
23237         `evenp' so we don't implicitly require cl library at runtime.
23239 2003-10-18  Luc Teirlinck  <teirllm@auburn.edu>
23241         * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
23242         (help-make-xrefs): Only make cross-references for faces if
23243         preceded or followed by the word `face'.  Do not make a
23244         cross-reference for variables without variable documentation,
23245         unless preceded by the word `variable' or `option'.  Update doc
23246         string accordingly.
23248 2003-10-18  Thien-Thi Nguyen  <ttn@gnu.org>
23250         * progmodes/hideshow.el: Rewrite one-armed `if'
23251         constructs using either `when' or `unless'.
23252         (hs-grok-mode-type): Elide superfluous `progn'; nfc.
23254 2003-10-16  Nick Roberts  <nick@nick.uklinux.net>
23256         * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
23257         (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
23258         instead of 12x12.
23260 2003-10-16  Eli Zaretskii  <eliz@gnu.org>
23262         * mail/rmail.el (rmail-convert-to-babyl-format): Display a
23263         message while converting to Babyl.
23265 2003-10-16  Vadim Nasardinov  <vadimn@redhat.com>  (tiny change)
23267         * allout.el (allout-mode): Doc fix.
23269 2003-10-16  Lute Kamstra  <lute@gnu.org>
23271         * subr.el (force-mode-line-update): Fix docstring.
23273 2003-10-14  Dave Love  <fx@gnu.org>
23275         * international/mule-cmds.el (find-multibyte-characters): Doc fix.
23276         (default-input-method): Add :link, improve :type.
23277         (locale-charset-language-names): Fix utf-8 pattern.
23278         (locale-charset-match-p, locale-charset-alist)
23279         (locale-charset-to-coding-system): New.
23280         (set-locale-environment): Deal with codeset part of locale specs.
23282 2003-10-14  Lute Kamstra  <lute@gnu.org>
23284         * fringe.el (fringe-mode): Use active voice in docstring.
23285         (set-fringe-style): Ditto.
23287 2003-10-13  Lute Kamstra  <lute@gnu.org>
23289         * fringe.el (fringe-mode): Fix docstring.
23290         (set-fringe-style): Ditto.
23292 2003-10-12  Michael Kifer  <kifer@cs.stonybrook.edu>
23294         * ediff-mult.el (ediff-filegroup-action):
23295         Use ediff-default-filtering-regexp.
23297         * ediff-util.el (ediff-recenter): Don't call
23298         ediff-restore-highlighting twice.
23299         (ediff-select-difference): Set current difference.
23300         (ediff-unselect-and-select-difference): Add comment.
23302         * ediff.el (ediff-directories,ediff-directory-revisions)
23303         (ediff-directories3,ediff-merge-directories)
23304         (ediff-merge-directories-with-ancestor)
23305         (ediff-merge-directory-revisions)
23306         (ediff-merge-directory-revisions-with-ancestor):
23307         Use ediff-default-filtering-regexp.
23309 2003-10-12  Andreas Schwab  <schwab@suse.de>
23311         * international/mule-cmds.el (locale-charset-language-names):
23312         Simplify regex by removing unused grouping.
23314 2003-10-10  Dave Love  <fx@gnu.org>
23316         * bindings.el: Don't bind stop.
23318 2003-10-08  Miles Bader  <miles@gnu.org>
23320         * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
23321         face instead of attempting to emulate it.
23323 2003-10-07  Kenichi Handa  <handa@m17n.org>
23325         * international/mule-diag.el (list-coding-systems-1): List coding
23326         systems that are loaded automatically.
23328         * international/code-pages.el (iso-8859-11): Add autoload cookie.
23330         * international/mule.el (autoload-coding-system): New function.
23332 2003-10-07  Andreas Schwab  <schwab@suse.de>
23334         * log-edit.el (log-edit-changelog-entries): Prefer local value of
23335         change-log-default-name in the buffer visiting the file.
23337 2003-10-06  Dave Love  <fx@gnu.org>
23339         * files.el (find-file-hook): Customize.
23340         (auto-mode-alist): Add .stk, .ss, .sch, .orig.
23342         * bindings.el (completion-ignored-extensions): Remove .log.
23343         (global-map): Add again, open, stop keys.
23345 2003-10-05  Richard M. Stallman  <rms@gnu.org>
23347         * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
23348         (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
23349         Use sh-modify directly.
23350         (sh-select): Use sh-append, not eval.
23352         * mail/emacsbug.el (report-emacs-bug): Fix previous change.
23354         * info.el (Info-following-node-name): New function.
23356         * loadhist.el (unload-feature-special-hooks):
23357         Rename from loadhist-hook-functions.
23358         (loadhist-hook-functions): Now an alias.
23360 2003-10-04  Eli Zaretskii  <eliz@gnu.org>
23362         * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
23363         file-name clashes on 8+3 filesystems.
23365         * Makefile.in (DONTCOMPILE, bootstrap-clean):
23366         Rename loaddefs-boot.el to ldefs-boot.el
23368         * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
23369         (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
23371 2003-10-03  Lute Kamstra  <lute@gnu.org>
23373         * info.el (Info-mode): Revert previous change.
23374         (Info-escape-percent): New function.
23375         (Info-fontify-node): Use it.
23377 2003-10-02  Andreas Schwab  <schwab@suse.de>
23379         * loaddefs-boot.el: Regenerated.
23381 2003-10-01  Rajesh Vaidheeswarran  <rv@gnu.org>
23383         * ffap.el: Remove defadvice related code from CVS since `complete'
23384         provides a `PC-completion-as-file-name-predicate' variable that
23385         ffap can override.
23387 2003-10-02  Kenichi Handa  <handa@m17n.org>
23389         * international/utf-8.el (ccl-decode-mule-utf-8):
23390         Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
23392         * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
23393         * international/subst-big5.el: Likewise.
23394         * international/subst-gb2312.el: Likewise.
23395         * international/subst-ksc.el: Likewise.
23397 2003-10-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
23399         * calendar/calendar.el (increment-calendar-month)
23400         (calendar-leap-year-p, calendar-absolute-from-gregorian)
23401         (generate-calendar, calendar-read-date, calendar-interval)
23402         (calendar-day-of-week): Handle years BC.
23403         (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
23405 2003-10-01  Dave Love  <fx@gnu.org>
23407         * language/cyrillic.el (cp1251): Alias for windows-1251.
23409         * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
23410         bootstrap.
23412 2003-10-01  Lute Kamstra  <lute@gnu.org>
23414         * files.el: Fix typo.
23415         * imenu.el (imenu--generic-function): Docstring fix.
23417 2003-09-30  Richard M. Stallman  <rms@gnu.org>
23419         * dired.el (dired-mode): Handle dired-directory as a list.
23421 2003-09-30  Nick Roberts  <nick@nick.uklinux.net>
23423         * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
23425         * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
23427         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
23428         Replace gud-display with gud-watch.
23429         (gud-speedbar-buttons): Add stuff for watching expressions
23430         in the speedbar when using M-x gdba.  Use dolist on old part
23431         of this function.
23433         * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
23434         (gdb-update-flag): New variables.
23435         (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
23436         (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
23437         (gud-watch, gdb-var-create-handler) : New functions.
23438         (gdb-var-list-children, gdb-var-list-children-handler)
23439         (gdb-var-create-regexp, gdb-var-update-regexp)
23440         (gdb-var-list-children-regexp): New constants.
23441         (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
23442         (gdb-annotation-rules): Reduce annotation set (level 3).
23443         (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
23444         (gdb-post-prompt): Don't update GDB buffers every time speedbar
23445         updates.
23446         (gdb-window-height, gdb-window-width, gdb-display-in-progress)
23447         (gdb-expression-buffer-name, gdb-display-number, gdb-point)
23448         (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
23449         (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
23450         (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
23451         (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
23452         (gdb-expressions-mode-menu, gdb-dive): Remove variables.
23453         (gud-display, gud-display1)
23454         (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
23455         (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
23456         (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
23457         (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
23458         (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
23459         (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
23460         (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
23461         (gdb-display-display-buffer, gdb-toggle-display)
23462         (gdb-delete-display, gdb-expressions-popup-menu)
23463         (gdb-expressions-mode, gdb-array-visualise): Remove functions.
23464         (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
23465         to display buffer.
23467 2003-09-30  Richard M. Stallman  <rms@gnu.org>
23469         * progmodes/ada-mode.el (ada-mode): Don't use advice.
23470         Instead, set which-func-functions.
23472         * progmodes/which-func.el (which-func-modes): Add ada-mode.
23473         (which-func-functions): New variable.
23474         (which-function): Use that.
23476         * info.el (Info-mode): Double each `%' in header line.
23478         * emacs-lisp/lisp-mnt.el (lm-with-file):
23479         When FILE is nil, run BODY in current buffer.
23481         * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
23483         * help.el (describe-mode): Start with a brief list of minor modes.
23484         Find them thru minor-mode-list so as to find them all.
23485         Show them in alphabetical order.
23487         * mail/sendmail.el (mail-aliases): Doc fix.
23489         * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
23491 2003-09-30  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
23493         * mail/rmailsum.el (rmail-make-summary-line-1):
23494         Change comma after last label to a space.
23495         (rmail-summary-font-lock-keywords): Adapt to that change.
23497 2003-09-30  Thien-Thi Nguyen  <ttn@gnu.org>
23499         * progmodes/scheme.el (scheme-mode-variables): When setting
23500         `font-lock-defaults', also specify that "#" should
23501         be interpreted with `word' syntax.
23502         (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
23504 2003-09-30  Lars Hansen  <larsh@math.ku.dk>
23506         * desktop.el: A lot of comments updated.
23507         (desktop-save-mode): Minor mode introduced.
23508         (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
23509         (desktop-load-default): Function made obsolete.
23510         (desktop-locals-to-save): Variable made customizable.
23511         (desktop-read): Optional parameter `dirname' added.
23512         (desktop-change-dir, desktop-revert): Parameter `dirname' in
23513         `desktop-read' used.
23514         (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
23516 2003-09-29  Rajesh Vaidheeswarran  <rv@gnu.org>
23518         * whitespace.el (whitespace-clean-msg): Add user customizable message
23519         for displaying ``clean'' output.
23520         (whitespace-buffer): Use `whitespace-clean-msg'.
23521         (whitespace-global-mode): Fix typo.
23523 2003-09-29  Thien-Thi Nguyen  <ttn@gnu.org>
23525         * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
23527 2003-09-29  Lute Kamstra  <lute@gnu.org>
23529         * bindings.el (mode-line-modes): Remove superfluous :propertize
23530         construct in initialization.
23531         (mode-line-position): Change cons cell into proper list in
23532         initialization.
23534 2003-09-29  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
23536         * international/mule.el (decode-coding-inserted-region): Use car
23537         of the return value of find-operation-coding-system.
23539 2003-09-29  Kenichi Handa  <handa@m17n.org>
23541         * descr-text.el (describe-char): Fix previous change.
23543 2003-09-28  Kenichi Handa  <handa@m17n.org>
23545         * descr-text.el (describe-char-display): New function.
23546         (describe-char): Pay attention to display table on describing how
23547         a character is displayed.
23549         * international/mule-cmds.el (encoded-string-description):
23550         Prepend "0x" to each encoded byte.
23552 2003-09-28  Andreas Schwab  <schwab@suse.de>
23554         * find-file.el (ff-special-constructs): Add autoload cookie.
23556 2003-09-28  Kevin Ryde  <user42@zip.com.au>
23558         * info.el (Info-find-index-name): Remove any "<n>" suffixes which
23559         makeinfo appends to duplicate index entries.
23561 2003-09-28  Eli Zaretskii  <eliz@gnu.org>
23563         * dired-x.el (dired-clean-tex): Doc fix.
23565         * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
23566         using a Chinese tutorial.
23568 2003-09-28  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
23570         * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
23571         between "MAIL FROM:" and "RCPT TO:" and the following address.
23573 2003-09-28  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
23575         * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
23577 2003-09-28  David Ponce  <david@dponce.com>
23579         * recentf.el (recentf-initialize-file-name-history): New defcustom.
23580         (recentf-load-list): When `recentf-initialize-file-name-history'
23581         is non-nil, initialize an empty `file-name-history' with the
23582         recent list.
23584 2003-09-28  Evgeni Dobrev  <evgeni_dobrev@developer.bg>  (tiny change)
23586         * man.el (Man-default-man-entry): Remove the leading `*' from the
23587         word at point.
23589 2003-09-26  Lute Kamstra  <lute@gnu.org>
23591         * bindings.el (mode-line-position): Mention size indication in
23592         docstring.
23594 2003-09-26  Andre Spiegel  <spiegel@gnu.org>
23596         * calendar/parse-time.el (parse-time-string): Add autoload cookie.
23598         * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
23599         because it's autoloaded now.
23601 2003-09-25  Glenn Morris  <gmorris@ast.cam.ac.uk>
23603         * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
23604         (sh-font-lock-keywords, sh-feature): Fix previous change of
23605         sh-feature to avoid infloop with sh-font-lock-keywords.
23607 2003-09-25  Kim F. Storm  <storm@cua.dk>
23609         * frame.el (frame-current-scroll-bars): New defun.
23611         * window.el (window-current-scroll-bars): New defun.
23613 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
23615         * progmodes/cc-engine.el (c-parse-state): Fix bug that could
23616         cause errors when the state cache contains info on parts that have
23617         been narrowed out.
23619 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
23621         * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
23622         `c-setup-paragraph-variables' has to be used when this variable is
23623         changed; it doesn't work to reinitialize the mode since that
23624         typically clobbers the variable.
23626         * progmodes/cc-styles.el (c-setup-paragraph-variables):
23627         Make it interactive.
23629 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
23631         * progmodes/cc-fonts.el (c-font-lock-declarations):
23632         Fix recognition of constructors and destructors for classes whose
23633         names are matched by `*-font-lock-extra-types'.
23635         * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
23636         followed by an identifier in C++ then it's a type.
23638 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
23640         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
23641         problem that primarily affected XEmacs.  Don't use faces to find
23642         unterminated strings since Emacs and XEmacs fontify strings
23643         differently - this function should now work better in XEmacs.
23645 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
23647         * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
23648         `expand-abbrev' workaround which caused braces to misbehave inside
23649         macros.
23651         * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
23652         handling.  This bug could cause interactive font locking to bail out.
23654 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
23656         * progmodes/cc-engine.el (c-just-after-func-arglist-p):
23657         Handle paren-style types in Pike.  Also fixed some cases of
23658         insufficient handling of unbalanced parens.
23660 2003-09-24  Rajesh Vaidheeswarran  <rv@gnu.org>
23662         * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
23663         common shell prompts that are not common filename or URL characters.
23664         (ffap-file-at-point): Use the new regexp to strip the prompts from
23665         the file names.  This is an issue mostly for user prompts that
23666         don't have a trailing space and find-file-at-point is invoked from
23667         within a shell inside Emacs.
23669 2003-09-24  Andre Spiegel  <spiegel@gnu.org>
23671         * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
23672         stamps numerically, rather than textually.
23674 2003-09-24  Kenichi Handa  <handa@m17n.org>
23676         * language/devan-util.el (devanagari-post-read-conversion):
23677         * language/mlm-util.el (malayalam-post-read-conversion):
23678         * language/tml-util.el (tamil-post-read-conversion):
23679         Add autoload cookie.
23681         * international/utf-8.el (utf-8-post-read-conversion):
23682         Call post-read-conversion functions for Devanagari, Malayalam,
23683         and Tamil.
23685 2003-09-23  Dave Love  <fx@gnu.org>
23687         * Makefile.in (bootstrap-clean): Fix misplaced `!'.
23689 2003-09-22  Nick Roberts  <nick@nick.uklinux.net>
23691         * progmodes/gud.el (perldb): Add gud-until to list of commands.
23692         Update gud-remove.
23694 2003-09-22  Richard M. Stallman  <rms@gnu.org>
23696         * progmodes/sh-script.el (sh-mode-default-syntax-table):
23697         Rename from sh-mode-syntax-table.  Call sh-mode-syntax-table directly.
23698         (sh-mode-syntax-table-input): New variable.
23699         (sh-require-final-newline): Don't use eval.
23700         (sh-builtins, sh-leading-keywords, sh-other-keywords)
23701         (sh-variables, sh-font-lock-keywords): Don't use eval.
23702         (sh-set-shell): When setting require-final-newline,
23703         treat value = `require-final-newline' as don't change it.
23704         Set sh-mode-syntax-table locally based on
23705         sh-mode-syntax-table-input and sh-mode-default-syntax-table.
23707         * progmodes/compile.el (compile-internal):
23708         Call compilation-set-window-height before setting window start.
23710 2003-09-22  Greg Hill  <ghill@synergymicro.com>  (tiny change)
23712         * emacs-lisp/bytecomp.el (byte-compile-log-file):
23713         Clear out byte-compile-last-warned-form.
23715 2003-09-22  Richard M. Stallman  <rms@gnu.org>
23717         * woman.el (woman-file-name, woman-follow-word):
23718         If current-word returns nil, use "".
23720         * simple.el (eval-expression): Bind standard-output in to-buffer case.
23722 2003-09-22  Richard M. Stallman  <rms@gnu.org>
23724         * emacs-lisp/lisp-mnt.el (lm-with-file):
23725         Don't visit the file, just use insert-file-contents in temp buffer.
23727 2003-09-22  Jari Aalto  <jari.aalto@poboxes.com>
23729         * emacs-lisp/lisp-mnt.el (lm-get-header-re):
23730         Add surrounding \\( and \\) around the header, as in
23731         for lm-history-header 'Change Log\\|History'.
23733 2003-09-22  John Paul Wallington  <jpw@gnu.org>
23735         * progmodes/ld-script.el: Add Commentary section,
23736         minor cleanup of file header.
23737         (ld-script-font-lock-keywords): Doc fix.
23738         (toplevel): Provide `ld-script' feature.
23740 2003-09-21  Kim F. Storm  <storm@cua.dk>
23742         * scroll-bar.el (set-scroll-bar-mode): Initialize to
23743         new built-in variable default-frame-scroll-bars.
23744         (scroll-bar-mode): Use default-frame-scroll-bars when enabling
23745         scroll-bar-mode; notably, use it instead of t when we toggle
23746         scroll-bars on.
23747         (toggle-scroll-bar): Use default-frame-scroll-bars.
23749 2003-09-19  Masatake YAMATO  <jet@gyve.org>
23751         * pcvs.el (cvs-do-removal): Change the prompt depending on
23752         `filter' value.
23754 2003-09-19  Glenn Morris  <gmorris@ast.cam.ac.uk>
23756         * startup.el (command-line-1): Stop startup-echo-area-message
23757         being hidden by "Loading image..." message.
23758         (use-fancy-splash-screens-p, display-splash-screen):
23759         Move display-graphic-p test from latter to former.
23761         * progmodes/sh-script.el (sh-font-lock-keywords):
23762         Highlight escaped EOLs differently from other backslash constructs.
23764 2003-09-19  Richard M. Stallman  <rms@gnu.org>
23766         * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
23767         New functions.
23768         (edebug-enter, edebug-outside-excursion): Use them.
23770         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
23771         Fix the condition for whether to print "In WHERE".
23773 2003-09-19  Jari Aalto  <jari.aalto@poboxes.com>
23775         * finder.el (finder-mode-hook): New variable.
23776         (finder-mode): Run hook finder-mode-hook
23778 2003-09-18  Masatake YAMATO  <jet@gyve.org>
23780         * progmodes/ebrowse.el: Fix broken magic autoload comments.
23782 2003-09-17  Mario Lang  <mlang@delysid.org>
23784         * progmodes/gud.el (perldb): Change gud-print from just "%e" to
23785         "p %e" to actually print the value in the GUD buffer.
23787 2003-09-16  Miles Bader  <miles@gnu.ai.mit.edu>
23789         From David Ponce <david.ponce@wanadoo.fr>:
23790         * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
23791         (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
23792         from loaddefs-boot.el if necessary.
23794 2003-09-15  Zoltan Kemenczy  <kemenczy@rogers.com>
23796         * progmodes/gud.el (gud-find-class): Make jdb work again since
23797         cc-mode changed the syntactic information.
23799 2003-09-15  David Ponce  <david@dponce.com>
23801         * recentf.el: (recentf-exclude): Accept predicates too.
23802         (recentf-file-readable-p): New function.
23803         (recentf-include-p): Handle predicates in recentf-exclude.
23804         (recentf-add-file): Doc fix.  Use recentf-file-readable-p.
23805         (recentf-cleanup): Likewise.
23806         (recentf-save-list): Use write-file to handle backup of
23807         recentf-save-file.
23809 2003-09-15  Miles Bader  <miles@gnu.ai.mit.edu>
23811         * loaddefs-boot.el: Renamed from `loaddefs.el'
23812         * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
23813         (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
23814         necessary.
23816 2003-09-13  Thien-Thi Nguyen  <ttn@gnu.org>
23818         * electric.el (Electric-pop-up-window): For the `one-window' case,
23819         no longer disconcertingly move point in the original buffer.
23821 2003-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23823         * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
23825 2003-09-12  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
23827         * dired.el (dired-mode-map): Fix typo.
23829 2003-09-11  Richard M. Stallman  <rms@gnu.org>
23831         * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
23833 2003-09-11  Paul Pogonyshev  <pogonyshev@gmx.net>  (tiny change)
23835         * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
23836         the function is less noisy.  Now only `kill-buffer' can ask questions.
23838 2003-09-10  Mario Lang  <mlang@delysid.org>
23840         * battery.el: Update Commentary and Copyright.
23841         (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
23842         appear due to wrong ordering of the expressions in `or'.
23844 2003-09-09  Lute Kamstra  <lute@gnu.org>
23846         * misc.el (upcase-char): Fix docstring.
23847         (zap-up-to-char): New command.
23849 2003-09-08  David Ponce  <david@dponce.com>
23851         Ensure that recentf correctly updates the menu bar.
23852         * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
23853         (recentf-menu-bar): New function.
23854         (recentf-clear-data): Use it
23855         (recentf-update-menu): Likewise.  Use easy-menu-add-item instead
23856         of easy-menu-change.
23858 2003-09-08  Lute Kamstra  <lute@gnu.org>
23860         * simple.el (size-indication-mode): New.
23861         * bindings.el (mode-line-position): Add buffer size indicator.
23863 2003-09-04  Mario Lang  <mlang@delysid.org>
23865         * battery.el (battery-linux-proc-acpi): New function.
23866         (battery-status-function): Modify default value calculation to also
23867         check for availability of ACPI.
23868         (battery-echo-area-format): Ditto.
23869         (battery-mode-line-format): Ditto.
23871 2003-09-06  Dave Love  <fx@gnu.org>
23873         * ielm.el (ielm-mode-hook): Add :options.
23875         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
23876         (eldoc-print-current-symbol-info): Use it.
23878 2003-09-04  Nick Roberts  <nick@nick.uklinux.net>
23880         * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
23881         being displayed in GUD buffer.
23882         (gdb-idle-input-queue): Remove var.  Use just one queue.
23883         (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
23884         Remove functions.  Use just one queue.
23885         (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
23886         (gdb-invalidate-assembler, gdb-get-current-frame):
23887         Modify functions.  Use just one queue.
23889 2003-09-04  Dave Love  <fx@gnu.org>
23891         * cus-start.el: Add blink-cursor-alist.
23893         * ruler-mode.el (ruler-mode-fill-column-char)
23894         (ruler-mode-current-column-char): Use char-displayable-p,
23895         not window-system.
23897         * international/codepage.el ("mule-diag"): Add eval-after-load clause.
23899         * language/european.el (windows-1252): Move from code-pages.
23901         * language/cyrillic.el ("Windows-1251"): Delete.
23902         ("Bulgarian", "Belarusian"): Remove `features'.
23903         (windows-1251): Move from code-pages.
23905         * international/mule-diag.el (non-iso-charset-alist):
23906         Remove `codepage' stuff.
23907         (print-designation, list-coding-systems-1): Output fixes.
23909         * international/code-pages.el (cp-make-translation-table)
23910         (cp-valid-codes): Made defsubsts.
23911         (cp-fix-safe-chars): Delete.
23912         (mule-diag): Don't require.
23913         (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
23914         (top-level): Check for defined coding system when defining
23915         cp... aliases.  Change w32-add-charset-info test to avoid warning.
23916         (non-iso-charset-alist): Defvar when compiling.
23917         (cp-make-coding-system): Doc fix.
23919 2003-09-02  Jason Rumney  <jasonr@gnu.org>
23921         * international/titdic-cnv.el (tsang-quick-converter): Fix broken
23922         line-ends from CVS before doing conversion.
23924 2003-09-02  Glenn Morris  <gmorris@ast.cam.ac.uk>
23926         * calendar/diary-lib.el (diary-header-line-flag)
23927         (diary-header-line-format): New variables.
23928         (list-diary-entries): Use them to set header line in simple diary.
23930         * progmodes/sh-script.el (sh-font-lock-keywords): Use something
23931         other than font-lock-string-face to highlight backslashes.
23933 2003-09-01  Jason Rumney  <jasonr@gnu.org>
23935         * international/titdic-cnv.el (tit-read-key-value): Include \r in
23936         regexp.
23938 2003-09-01  Dave Love  <fx@gnu.org>
23940         * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
23942         * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
23943         and :help; also line and column numbers labels.
23945         * international/mule-util.el (char-displayable-p): Move from
23946         latin1-disp, rename and autoload.
23948         * international/latin1-disp.el (latin1-char-displayable-p):
23949         Now obsolete alias.  Replace uses with char-displayable-p.
23950         (latin1-display-ucs-per-lynx): Fix last change.
23952         * international/mule-cmds.el (standard-display-european-internal):
23953         Don't use char code for Latin-1 NBSP.
23954         <XFree86 4>: Unfrob NBSP display table.  Set display table to use
23955         U+2018, U+2019 for `'.
23956         (select-safe-coding-system): Message fix.
23958 2003-09-01  Kenichi Handa  <handa@m17n.org>
23960         * international/fontset.el (setup-default-fontset): For Thai
23961         font, specify "*" family.
23963 2003-09-01  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
23965         * progmodes/compile.el (previous-error): Accept a prefix
23966         argument, similarly to next-error.
23968 2003-08-31  Masatake YAMATO  <jet@gyve.org>
23970         * pcvs.el (cvs-do-removal): Use = instead of eq to check
23971         the number of files.  Bind the number of files to a local
23972         variable.  Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
23974 2003-08-30  Eli Zaretskii  <eliz@gnu.org>
23976         * vc-hooks.el (vc-make-version-backup): Fix the change made on
23977         2003-07-26: msdos-long-file-names is a function, not a variable.
23979 2003-08-29  Richard M. Stallman  <rms@gnu.org>
23981         * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
23982         Do nothing with mail-personal-alias-file if it is nil.
23984         * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
23985         Do nothing if mail-personal-alias-file is nil.
23987         * term.el (term-exec-1): Bind coding-system-for-read.
23989         * dired.el (dired-mouse-find-file-other-window):
23990         Use dired-view-command-alist here, as in dired-view-file.
23991         (dired-view-command-alist): Use %s to substitute file name.
23992         Handle .ps_pages, .eps, .jpg, .gif, .png.
23994 2003-08-29  Paul Pogonyshev  <pogonyshev@gmx.net>  (tiny change)
23996         * info.el (Info-mode-map): Bind S-tab and <backtab> to
23997         `Info-prev-reference', instead of M-tab.
23999 2003-08-29  Martin Stjernholm  <mast@lysator.liu.se>
24001         * simple.el (blink-matching-open): Work correctly on chars that
24002         are designated as parens through the syntax-table text property.
24004 2003-08-29  Thierry Emery  <thierry.emery@club-internet.fr>  (tiny change)
24006         * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
24007         line break position in the middle of a non-kinsoku (e.g. latin)
24008         word, making it skip until either a space or a character with
24009         category "|".
24010         (kinsoku-longer): Test for end of buffer.
24012 2003-08-28  Eli Zaretskii  <eliz@gnu.org>
24014         * mail/rmail.el (rmail-convert-to-babyl-format):
24015         Detect quoted-printable- and base64-encoded messages and decode them
24016         automatically.  Set the message's encoding from the charset=
24017         header, if any.  Decode base64-encoded messages in Mail format as well.
24019 2003-08-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
24021         * mail/smtpmail.el: Fix previous change.
24022         (smtpmail-send-queued-mail): Set smtpmail-mail-address before
24023         calling smtpmail-via-smtp.
24024         (smtpmail-via-smtp): Add fall-back values for envelope-from.
24026 2003-08-26  John Paul Wallington  <jpw@gnu.org>
24028         * image.el (image-jpeg-p): Don't search beyond length of data.
24030 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
24032         * progmodes/cc-cmds.el (c-electric-brace): Work around for a
24033         misfeature in `expand-abbrev' which caused electric keywords like
24034         "else" to disappear if an open brace was typed directly afterwards.
24036 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
24038         * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
24039         mandatory in `define-widget'.
24041         * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
24042         Don't align the operators "!=", "<=" and ">=" as assignment operators.
24044         (c-assignment-operators): New language constant that only contains
24045         the assignment operators.
24047         (c-assignment-op-regexp): New language var used by `c-lineup-math'.
24049 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
24051         * progmodes/cc-engine.el (c-just-after-func-arglist-p):
24052         Safeguard against unbalanced sexps.
24054 2003-08-26  Terje Rosten  <terjeros@phys.ntnu.no>
24056         * version.el (emacs-version): Check for gtk.  Include gtk version info.
24058 2003-08-25  John Paul Wallington  <jpw@gnu.org>
24060         * man.el (Man-default-man-entry): Don't whizz past the section
24061         number before looking for it.
24063 2003-08-24  Nick Roberts  <nick@nick.uklinux.net>
24065         * progmodes/gud.el (gud-display-line): Don't set window-point if
24066         source buffer is not visible.  (Only happens with M-x gdba.)
24068         * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
24069         documentation.
24070         (gdb-source, gdb-source-info): Update to assembler unnecessary
24071         as its done after each GDB command anyway.
24072         (gdb-pre-prompt): Use with-current-buffer.
24073         (gdb-insert-field): Add help-echo text.
24074         (gdb-invalidate-assembler): Re-display of assembler now done in
24075         gdb-info-breakpoints-custom.
24076         (gdb-info-breakpoints-custom): Force re-display of assembler to
24077         happen *after* update of breakpoints buffer.
24078         (gdb-display-source-buffer): Don't choke if gdb-source-window
24079         isn't visible.
24080         (gdb-put-string, gdb-put-arrow): Remove free variables.
24082 2003-08-24  John Paul Wallington  <jpw@gnu.org>
24084         * ibuffer.el (ibuffer-formats): Make name and size columns wider.
24086         * man.el (Man-default-man-entry): Strip text properties when
24087         snarfing parts of entry because `format' preserves properties.
24089 2003-08-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
24091         * files.el (file-newest-backup): Use `expand-file-name'.
24093         * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
24094         Allow the diary to pop up a new frame, if needed.
24096         * mail/sendmail.el (mail-specify-envelope-from): Doc change.
24097         * mail/smtpmail.el (smtpmail-mail-address): Doc change.
24098         (smtpmail-send-it): Make treatment of envelope-from consistent with
24099         sendmail.el.
24101         * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
24102         (sh-leading-keywords): Add the bash `time' reserved word.
24103         (sh-variables): Add some bash variables.
24104         (sh-add-completer): Fix nil branch of case statement.
24106 2003-08-24  Masatake YAMATO  <jet@gyve.org>
24108         * progmodes/ld-script.el: New file.
24110 2003-08-23  Markus Rost  <rost@math.ohio-state.edu>
24112         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
24114 2003-08-23  Andre Spiegel  <spiegel@gnu.org>
24116         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
24117         Better explain obsolescence, and what to use instead.
24119 2003-08-23  Masatake YAMATO  <jet@gyve.org>
24121         * pcvs.el (cvs-do-removal): Show the deleted file name
24122         on the prompt.
24124 2003-08-20  Dave Love  <fx@gnu.org>
24126         * international/mule.el (make-coding-system)
24127         (set-buffer-file-coding-system): Doc fix.
24129         * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
24131         * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
24133         * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
24135         * international/utf-16.el: Add mime-text-unsuitable coding system
24136         properties.
24138         * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
24140         * cus-edit.el: Add some :links.
24141         (bib): Remove.
24143         * textmodes/bib-mode.el (bib): Add :group external.
24145 2003-08-18  Luc Teirlinck  <teirllm@mail.auburn.edu>
24147         * wid-edit.el (widget-echo-help): Make it handle expressions that
24148         evaluate to strings.
24150 2003-08-18  Michael Mauger  <mmaug@yahoo.com>
24152         Version 1.8.0 of sql-mode.  (Patch submitted 2003-06-21)
24154         Simplify selection of SQL products to define highlighting and
24155         interactive mode.  Includes detailed instructions on adding
24156         support for new products.
24158         * progmodes/sql.el (sql-product): New variable.  Identifies SQL
24159         product for use in highlighting and interactive mode.
24160         (sql-interactive-product): New variable.  SQL product for
24161         sql-interactive-mode.
24162         (sql-product-support): New variable.  Specifies product-specific
24163         parameters to drive highlighting and interactive mode.
24164         (sql-imenu-generic-expression): Add more object types.
24165         (sql-sqlite-options): Correct comment.
24166         (sql-ms-program): Use "osql" rather than "isql".
24167         (sql-prompt-regexp, sql-prompt-length): Update comment.
24168         (sql-mode-menu): Add "Start SQLi session" entry.
24169         Replace Highlighting submenu with Product menu.  Fix Send Region entry.
24170         (sql-mode-abbrev-table): Add abbreviations.  Support of
24171         SYSTEM-FLAG on define-abbrev.  Support was removed with last
24172         check-in; it now handles older Emacsen without the SYSTEM-FLAG.
24173         (sql-mode-font-lock-object-name): Add font-lock pattern for object
24174         names.
24175         (sql-mode-ansi-font-lock-keywords): Set as default value.
24176         (sql-mode-oracle-font-lock-keywords): Set as default value.
24177         Support Oracle 9i keywords.
24178         (sql-mode-postgres-font-lock-keywords): Set as default value.
24179         (sql-mode-linter-font-lock-keywords): Set as default value.
24180         (sql-mode-ms-font-lock-keywords): New variable.  Support Microsoft
24181         SQLServer 2000.
24182         (sql-mode-sybase-font-lock-keywords)
24183         (sql-mode-interbase-font-lock-keywords)
24184         (sql-mode-sqlite-font-lock-keywords)
24185         (sql-mode-strong-font-lock-keywords)
24186         (sql-mode-mysql-font-lock-keywords)
24187         (sql-mode-db2-font-lock-keywords): New variables.  Default to ANSI
24188         keywords.
24189         (sql-mode-font-lock-defaults): Update comment.
24190         (sql-product-feature): New function.  Returns feature associated
24191         with a product from `sql-product-support' alist.
24192         (sql-product-font-lock): New function.  Set font-lock support
24193         based on `sql-product'.
24194         (sql-add-product-keywords): New function.  Add font-lock rules to
24195         product-specific keyword variables.
24196         (sql-set-product): New function.  Set `sql-product' and apply
24197         appropriate font-lock highlighting.
24198         (sql-highlight-product): New function.  Set font-lock support
24199         based on a product.  Also set mode name to include product name.
24200         (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
24201         (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
24202         Use `sql-set-product'.
24203         (sql-highlight-ms-keywords)
24204         (sql-highlight-sybase-keywords)
24205         (sql-highlight-interbase-keywords)
24206         (sql-highlight-strong-keywords)
24207         (sql-highlight-mysql-keywords)
24208         (sql-highlight-sqlite-keywords)
24209         (sql-highlight-db2-keywords): New functions.  Use `sql-set-product'.
24210         (sql-get-login): Prompt in the same order as the tokens.
24211         (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
24212         (sql-product-interactive): New function.  Common portions of
24213         product-specific interactive mode wrappers.
24214         (sql-interactive-mode): Rewritten to use product features.
24215         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
24216         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
24217         (sql-db2, sql-linter): Use `sql-product-interactive'.
24218         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
24219         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
24220         (sql-connect-ingres, sql-connect-postgres)
24221         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
24222         New functions.  Format command line parameters and invoke comint on
24223         the appropriate interpreter.  Code was in the corresponding
24224         `sql-xyz' function before.
24225         (sql-connect-ms): New function.  Support -E argument to use
24226         operating system credentials for authentication.
24228 2003-08-18  Kenichi Handa  <handa@m17n.org>
24230         * international/mule.el (encode-char): Fix for the ASCII case.
24232 2003-08-15  Kenichi Handa  <handa@m17n.org>
24234         * international/fontset.el (setup-default-fontset): Change "*" to
24235         nil in the specifications of font family.
24237 2003-08-18  Kim F. Storm  <storm@cua.dk>
24239         * kmacro.el (kmacro-keymap): Group related bindings in
24240         initialization for clarity.  Bind C-s to start macro.
24241         Remove C-r binding.
24242         (kmacro-initial-counter-value): New defvar to hold initial counter
24243         value in case we set the value before defining a macro.
24244         (kmacro-insert-counter): Clear kmacro-initial-counter-value..
24245         (kmacro-set-counter): Set kmacro-initial-counter-value if we are
24246         not defining or executing macro.  Doc fix.
24247         (kmacro-add-counter): Clear kmacro-initial-counter-value.
24248         (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
24249         temporarily view older elements on the macro ring without cycling
24250         the ring.
24251         (kmacro-display): Doc fix.
24252         (kmacro-exec-ring-item): New helper function.
24253         (kmacro-call-ring-2nd): Use it.
24254         (kmacro-call-ring-2nd-repeat): Doc fix.
24255         (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
24256         (kmacro-end-or-call-macro): Execute last viewed macro (using
24257         kmacro-exec-ring-item) from ring if this follows
24258         kmacro-view-macro.  This allows us to find a macro on the ring
24259         with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
24260         the ring to bring it to the head of the ring.
24261         (kmacro-bind-to-key): Doc fix (describe reserved bindings).
24262         Allow binding to reserved keys without specifying C-x C-k prefix.
24263         Ask for confirmation if entered key sequence is already bound to
24264         a non-macro command.
24265         (kmacro-view-macro): Repeating command will show older elements
24266         on the macro ring; C-k will execute the last viewed macro.
24267         (kmacro-view-macro-repeat): Doc fix.  Change its kmacro-repeat
24268         property from 'ring to 'head.
24270 2003-08-17  Alan Shutko  <ats@acm.org>
24272         * calendar/calendar.el (calendar-make-alist): Correct off-by-one
24273         keeping December out of the alist.
24275 2003-08-17  Edward M. Reingold  <reingold@emr.cs.iit.edu>
24277         * calendar/cal-move.el (calendar-goto-day-of-year): New function.
24278         * calendar/calendar.el (calendar-mode-map): Bind it to key.
24279         * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
24280         (calendar-flatten): New function.
24281         (calendar-mouse-view-other-diary-entries)
24282         (calendar-mouse-view-diary-entries): Rewritten to put any holidays
24283         in the menu title and to show multi-line diary entries correctly
24284         in the menu.
24286 2003-08-17  Luc Teirlinck  <teirllm@mail.auburn.edu>
24288         * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
24289         defcustom, because the default was recently changed.
24291 2003-08-16  Richard M. Stallman  <rms@gnu.org>
24293         * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
24295         * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
24296         New subroutine, broken out of eval-last-sexp-1.
24297         (eval-last-sexp-1): Use eval-last-sexp-print-value.
24299         * custom.el (custom-load-symbol): Load cus-load and cus-start first.
24301         * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
24303         * simple.el (eval-expression): Use eval-last-sexp-print-value.
24305 2003-08-14  Jari Aalto  <jari.aalto@poboxes.com>
24307         * progmodes/compile.el (compilation-error-regexp-alist):
24308         Add Java ANt error detection as described in document
24309         http://ant.apache.org/faq.html
24311 2003-08-12  Juri Linkov  <juri@jurta.org>  (tiny change)
24313         * simple.el (backward-word, forward-to-indentation)
24314         (backward-to-indentation): Argument changed to optional.
24315         (next-line, previous-line): Use `or' instead of `unless'.
24317 2003-08-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24319         * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
24320         instead of a constant.
24322 2003-08-12  Markus Rost  <rost@math.ohio-state.edu>
24324         * shell.el (shell): With prefix-arg, suggest a new buffer name.
24326 2003-08-12  Andre Spiegel  <spiegel@gnu.org>
24328         * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
24329         (vc-sccs-workfile-version): Search the entire delta table, rather
24330         than just the first entry, because that might be a deleted version.
24332 2003-08-11  Karl Fogel  <kfogel@red-bean.com>
24334         * menu-bar.el (menu-bar-options-menu): Supply a body for the
24335         [save-place] binding in the Options menu.  Have it require
24336         'saveplace' and then toggle the variable manually, to avoid an
24337         unbound variable error.  Thanks to <Sebastien.Kirche@sage.com>
24338         for the bug report.
24340 2003-08-11  Nick Roberts  <nick@nick.uklinux.net>
24342         * gdb-ui.el (gdb-insert-field, gdb-array-format1)
24343         (gdb-info-breakpoints-custom, gdb-info-frames-custom)
24344         (gdb-info-threads-custom): Add help-echo text.
24345         (gdb-display-back): Don't use purecopy.
24346         (gdb-info-breakpoints-custom, gdb-reset)
24347         (gdb-assembler-custom): Use display-images-p to test if breakpoint
24348         icons can be displayed.
24350 2003-08-11  Markus Rost  <rost@math.ohio-state.edu>
24352         * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
24354 2003-08-11  Stefan Monnier  <monnier@cs.yale.edu>
24356         * bookmark.el (bookmark-completing-read):
24357         Return a string, instead of a list of one string.
24358         Use a popup menu if activated from the mouse.
24359         (bookmark-edit-annotation): Remove unused vars.
24360         (bookmark-jump, bookmark-relocate, bookmark-insert-location)
24361         (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
24362         to bookmark-completing-read.
24363         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
24364         (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
24365         (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
24366         and erase-buffer.
24367         (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
24368         (bookmark-menu-jump, bookmark-menu-insert)
24369         (bookmark-popup-menu-and-apply-function)
24370         (bookmark-menu-popup-paned-bookmark-menu): Remove.
24371         (bookmark-menu-build-paned-menu): Remove by folding it into
24372         bookmark-menu-popup-paned-menu.
24373         (menu-bar-bookmark-map): Move the define-key statements here.
24374         Use the "non-menu" commands since they now pop up a menu if needed.
24375         (bookmark-exit-hook-internal): Simplify.
24377 2003-08-11  Carsten Dominik  <dominik@sand.science.uva.nl>
24379         * reftex-toc.el (reftex-toc-rename-label): New function.
24380         (reftex-toc-check-docstruct): New function.
24382         * reftex.el (reftex-region-active-p): New function.
24384         * reftex-parse.el (reftex-locate-bibliography-files): Improved the
24385         regexp to find the \bibliography macro.
24387         * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
24388         which does not exist in LaTeX.
24389         (reftex-cite-format-builtin): Added amsrefs support.
24390         (reftex-toc-confirm-promotion): New option
24392         * reftex-toc.el
24393         (reftex-toc): Use `reftex-toc-split-windows-fraction'.
24394         (reftex-toc-demote, reftex-toc-promote)
24395         (reftex-toc-do-promote, reftex-toc-promote-prepare)
24396         (reftex-toc-promote-action, reftex-toc-extract-section-number)
24397         (reftex-toc-newhead-from-alist)
24398         (reftex-toc-load-all-files-for-promotion): New functions.
24399         (reftex-toc-help): Added description of new keys.
24400         (reftex-toc-split-windows-fraction): New option.
24401         (reftex-recenter-toc-when-idle): Search *toc* window on all
24402         visible frames.
24403         (reftex-toc): Additional parameter REUSE
24404         (reftex-toc-recenter): Remember current frame.  Call `reftex-toc'
24405         with REUSE argument.
24406         (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
24407         the call of `reftex-toc'.
24408         (reftex-make-separate-toc-frame): New function .
24409         (reftex-toc-recenter): When called with triple prefix arg, call
24410         `reftex-make-separate-toc-frame' first.
24411         (reftex-toc-toggle-dedicated-frame): New command.
24412         (reftex-toc-quit): Adapted to delete frame when called in
24413         dedicated frame.
24415         * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
24416         all enclosing macros.
24419 2003-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24421         * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
24422         first use.
24424 2003-08-07  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24426         * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
24428 2003-08-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
24430         * calendar/calendar.el (list-diary-entries-hook)
24431         (diary-display-hook, nongregorian-diary-listing-hook)
24432         (mark-diary-entries-hook, nongregorian-diary-marking-hook):
24433         Add some customize options for these hooks.
24434         (calendar-abbrev-construct): Don't try to take a substring longer
24435         than the original string.
24437 2003-08-05  Richard M. Stallman  <rms@gnu.org>
24439         * emacs-lisp/testcover.el (noreturn): Report error if does return.
24440         (testcover-reinstrument-clauses): Doc fix.
24442         * emacs-lisp/warnings.el: Doc fixes, args renamed.
24443         (warning-type-format): Rename from warning-group-format.
24445         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
24446         (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
24447         (byte-compile-defvar): Bind byte-compile-not-obsolete-var
24448         to prevent warnings about defvar for an obsolete variable.
24450         * emacs-lisp/bytecomp.el (byte-compile-log-warning):
24451         warning-group-format renamed to warning-type-format.
24453         * subr.el (read-passwd): Use clear-string instead of fillarray.
24455         * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
24456         Use vconcat instead of concat.
24457         (edmacro-sanitize-for-string): New function.
24459 2003-08-05  Dave Love  <fx@gnu.org>
24461         * cus-start.el: Add open-paren-in-column-0-is-defun-start,
24462         line-number-display-limit-width.
24464         * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
24466 2003-08-05  Kenichi Handa  <handa@m17n.org>
24468         * international/code-pages.el: Don't require mule-diag.
24470         * international/mule-diag.el (non-iso-charset-alist):
24471         Add autoload cookie.
24473         * language/devan-util.el (dev-glyph-order): Add an entry for the
24474         glyph code #xC4.
24476 2003-08-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
24478         * calendar/calendar.el (diary-file, diary-file-name-prefix)
24479         (european-calendar-style, diary-date-forms)
24480         (calendar-day-name-array, calendar-month-name-array): Doc change.
24481         (generate-calendar-month): Adapt for new behavior of
24482         `calendar-day-name' function.
24483         (calendar-abbrev-length, calendar-day-abbrev-array)
24484         (calendar-month-abbrev-array): New variables.
24485         (calendar-abbrev-construct): New function.
24486         (calendar-day-name, calendar-month-name): Use new abbrev arrays,
24487         rather than fixing abbrevs at some width.  Calling syntax change.
24488         (calendar-make-alist): Use abbrev arrays.  Calling syntax change.
24489         (calendar-date-string): Adapt for new behaviors of
24490         `calendar-day-name' and `calendar-month-name' functions.
24492         * calendar/diary-lib.el (list-diary-entries): Adapt for new
24493         behavior of `calendar-day-name' and `calendar-month-name' functions.
24494         (diary-name-pattern): Use abbrev arrays, rather than fixing
24495         abbrevs at three chars.  Calling syntax change.
24496         (mark-diary-entries): Adapt for new behaviors of
24497         `diary-name-pattern' and `calendar-make-alist' functions.
24498         (fancy-diary-font-lock-keywords): Adapt for new behavior of
24499         `diary-name-pattern' function.
24500         (font-lock-diary-date-forms): Use abbrev arrays, rather than
24501         fixing abbrevs at three chars.  Calling syntax change.
24502         (cal-hebrew, cal-islam): Require when compiling.
24503         (diary-font-lock-keywords): Adapt for new behavior of
24504         `font-lock-diary-date-forms' function.
24506         * calendar/cal-hebrew.el: Reposition some code so defined before used.
24507         (calendar-hebrew-month-name-array-common-year)
24508         (calendar-hebrew-month-name-array-leap-year): Add doc strings.
24509         (list-hebrew-diary-entries): Adapt for new behaviors of
24510         `calendar-day-name' and `add-to-diary-list' functions.
24511         (mark-hebrew-diary-entries): Adapt for new behaviors of
24512         `diary-name-pattern' and `calendar-make-alist' functions.
24514         * calendar/cal-islam.el (calendar-islamic-month-name-array):
24515         Add doc string.
24516         (list-islamic-diary-entries): Adapt for new behaviors of
24517         `calendar-day-name' and `add-to-diary-list' functions.
24518         (mark-islamic-diary-entries): Adapt for new behaviors of
24519         `diary-name-pattern' and `calendar-make-alist' functions.
24521         * calendar/cal-menu.el (cal-menu-update): Adapt for new behavior of
24522         `calendar-month-name' function.
24524         * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
24526         * calendar/solar.el (solar-seasons-data): Move definition before use.
24528         * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
24529         (cal-tex-LaTeX-hourbox): Move definition before use.
24531         * calendar/cal-china.el, cal-hebrew.el, cal-islam.el
24532         * cal-julian.el, cal-menu.el, cal-move.el, holidays.el
24533         * lunar.el, solar.el (displayed-month, displayed-year):
24534         Define for compiler.
24536 2003-08-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
24538         * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
24539         MODE.  Renamed from c-init-c-language-vars'.
24540         (c-initialize-cc-mode): Change accordingly.
24541         (c-common-init): Ditto.
24542         (c-mode): Ditto.
24543         (c++-mode): Use `c-init-language-vars-for'.
24544         (objc-mode): Ditto.
24545         (java-mode): Ditto.
24546         (idl-mode): Ditto.
24547         (pike-mode): Ditto.
24548         (awk-mode): Ditto.
24550 2003-08-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
24552         * progmodes/cc-engine.el (c-end-of-current-token): Return whether
24553         or not the point moved.
24555         (c-search-decl-header-end): Don't trip up on operator identifiers
24556         in C++ and operators like == in all languages.
24558         * progmodes/cc-engine.el (c-backward-to-decl-anchor):
24559         Detect leading labels correctly.
24561 2003-08-02  Andreas Schwab  <schwab@suse.de>
24563         * textmodes/ispell.el: Don't redo key bindings on loading, put
24564         them only in loaddefs.el.
24565         * bookmark.el: Likewise.
24566         * dabbrev.el: Likewise.
24567         * emerge.el: Likewise.
24569         * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
24570         has more than one member.
24572         * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
24574 2003-08-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24576         * lpr.el (printify-region): It was ending conversion before the
24577         expected position.  Reported by Keiichi Suzuki <keiichi@nanap.org>.
24579 2003-07-31  John Paul Wallington  <jpw@gnu.org>
24581         * net/browse-url.el (browse-url-epiphany): Doc fix.
24583 2003-07-30  Kenichi Handa  <handa@m17n.org>
24585         * international/fontset.el (setup-default-fontset):
24586         Change registry names of Akurti fonts.
24588 2003-07-29  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
24590         * comint.el (comint-read-noecho): Use `clear-string' instead of
24591         `fillarray'.
24593 2003-07-29  Thomas W Murphy  <twm@andrew.cmu.edu>  (tiny change)
24595         * outline.el (outline-mode-hook): Add defvar.
24597 2003-07-28  Nick Roberts  <nick@nick.uklinux.net>
24599         * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
24600         Restore assembler in source window if that is what has been selected.
24601         (menu): Add gdb-restore-windows to menu.  Make gdba
24602         specific menus only visible from gdba.
24604 2003-07-28  Tak Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
24606         * progmodes/compile.el (compilation-environment): New user variable.
24607         (compile-internal): Respect it.
24609 2003-07-23  Masatake YAMATO  <jet@gyve.org>
24611         * progmodes/gud.el (gdb-script-font-lock-keywords):
24612         Put `font-lock-function-name-face' on a symbol which includes
24613         `-' like `hook-run'.  Put font-lock-variable-name-face
24614         on a symbol starting with $.
24616 2003-07-27  Markus Rost  <rost@math.ohio-state.edu>
24618         * files.el (set-visited-file-name): Use truename for buffer-file-name.
24620 2003-07-26  Markus Rost  <rost@math.ohio-state.edu>
24622         * vc-hooks.el (vc-file-not-found-hook): Doc fix.
24624 2003-07-26  Andre Spiegel  <spiegel@gnu.org>
24626         * vc-hooks.el (vc-default-registered, vc-make-version-backup):
24627         Use with-no-warnings.
24628         (vc-file-not-found-hook): Add this to find-file-not-found-functions,
24629         rather than to find-file-not-found-hook, which doesn't exist.
24631 2003-07-26  Markus Rost  <rost@math.ohio-state.edu>
24633         * international/quail.el (quail-translate-key): Fix previous change.
24635 2003-07-25  John Paul Wallington  <jpw@gnu.org>
24637         * server.el (server-start): Check `server-process' is non-nil
24638         before killing it to avoid killing current buffer's process.
24640         * simple.el (choose-completion-string): Use `minibufferp';
24641         test `completion-reference-buffer' if `buffer' arg is nil.
24642         (push-mark): Use `when' and `unless'.
24643         (pop-mark): Use `when'.
24645         * mouse-sel.el (mouse-sel-get-selection-function):
24646         Check `x-last-selected-text-primary'.  Don't barf if it or
24647         `x-last-selected-text' aren't bound.
24649 2003-07-25  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
24651         * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
24653 2003-07-23  Stefan Monnier  <monnier@cs.yale.edu>
24655         * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
24657 2003-07-23  John Paul Wallington  <jpw@gnu.org>
24659         * tooltip.el (defface tooltip): Inherit from variable-pitch.
24661 2003-07-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
24663         * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
24664         string.  Defvar the derived hook.
24666         * macros.el (insert-kbd-macro): Escape double quote character.
24667         From Thomas W Murphy <twm@andrew.cmu.edu>.
24669 2003-07-22  Stefan Monnier  <monnier@cs.yale.edu>
24671         * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
24672         to match the specific mark rather than reusing comment-start-skip.
24674 2003-07-22  Thien-Thi Nguyen  <ttn@gnu.org>
24676         * progmodes/hideshow.el (hs-special-modes-alist):
24677         Clarify MDATA-SELECTOR doc; nfc.  Thanks to Michael Ernst.
24679 2003-07-21  Markus Rost  <rost@math.ohio-state.edu>
24681         * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
24682         value using ?\s.
24684 2003-07-21  John Paul Wallington  <jpw@gnu.org>
24686         * subr.el (with-selected-window): Add closing paren.
24688 2003-07-21  Richard M. Stallman  <rms@gnu.org>
24690         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
24691         (lisp-mode): Likewise.
24693         * subr.el (with-selected-window): Copy code form save-selected-window
24694         so as to call select-window with norecord arg.
24695         (dynamic-completion-table): Doc fix.
24696         (lazy-completion-table): Doc fix.
24698         * international/mule-cmds.el (set-locale-environment):
24699         langinfo renamed to locale-info.
24701         * international/mule.el (auto-coding-functions): Doc fix.
24703 2003-07-21  Kenichi Handa  <handa@m17n.org>
24705         * international/quail.el (quail-translate-key):
24706         Update quail-current-str correctly.
24708 2003-07-21  Andreas Schwab  <schwab@suse.de>
24710         * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
24711         ?, to "_".
24713 2003-07-20  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
24714         Version 2.0.36 of Tramp released.
24716         * net/tramp.el (tramp-default-password-end-of-line): Rename from
24717         tramp-password-end-of-line.
24718         (tramp-password-end-of-line): New method parameter.
24719         (tramp-get-password-end-of-line): Function to access method
24720         parameter `tramp-password-end-of-line', or variable
24721         `tramp-default-password-end-of-line' (default value).
24722         (tramp-methods): Add entries for new parameter
24723         tramp-password-end-of-line.
24724         (tramp-enter-password): Use new function
24725         `tramp-get-password-end-of-line'.
24726         (tramp-handle-insert-file-contents): Do not
24727         unconditionally inhibit the file operation file-local-copy, only
24728         do that when the inhibit-file-name-operation is currently
24729         insert-file-contents.  This fixes finding remote CVS-controlled
24730         files.  (It would barf on inserting the CVS/Entries file
24731         literally, because the file-local-copy handler wasn't called.)
24732         (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
24733         (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
24734         (tramp-initial-commands): New variable.
24735         (tramp-process-initial-commands): New function, using the variable.
24736         (tramp-open-connection-setup-interactive-shell): Call the new function.
24737         (tramp-buffer-name, tramp-debug-buffer-name): Always put the
24738         method into the buffer name, never use nil.  Reported by Hanak
24739         David <dhanak@inf.bme.hu>.
24740         (tramp-open-connection-setup-interactive-shell): Erase buffer
24741         before sending "stty -onlcr".
24743         * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
24745 2003-07-19  Markus Rost  <rost@math.ohio-state.edu>
24747         * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
24749 2003-07-19  John Paul Wallington  <jpw@gnu.org>
24751         * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
24752         (artist-draw-rect, artist-draw-square): Doc fixes.
24754         * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
24756         * textmodes/two-column.el (2C-mode-line-format): Doc fix.
24758 2003-07-19  Kenichi Handa  <handa@m17n.org>
24760         * international/kkc.el (kkc-show-conversion-list-update):
24761         Highlight the correct candidate in the message.
24763 2003-07-18  John Paul Wallington  <jpw@gnu.org>
24765         * simple.el (current-word): Don't include punctuation char when
24766         `really-word' arg is non-nil.
24768 2003-07-17  Martin Stjernholm  <bug-cc-mode@gnu.org>
24770         * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
24771         moved to the directory obsolete.
24773 2003-07-16  Stefan Monnier  <monnier@cs.yale.edu>
24775         * info.el (Info-menu-entry-name-re): Allow newlines in
24776         menu entry names.
24778         * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
24779         syntax-ppss-after-change-function.
24780         (syntax-ppss-after-change-function): New alias.  Update uses.
24781         (syntax-ppss): Catch the case where the buffer is narrowed.
24783 2003-07-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
24785         * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
24786         (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
24788 2003-07-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
24790         * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
24791         since it might be modified.
24793         * progmodes/cc-langs.el (c++-make-template-syntax-table)
24794         (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
24795         names to these language constants.
24797 2003-07-15  Kim F. Storm  <storm@cua.dk>
24799         * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
24800         All uses changed.
24802 2003-07-14  Mark A. Hershberger  <mah@everybody.org>
24804         * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
24805         Namespace support.
24807 2003-07-13  Juanma Barranquero  <lektu@terra.es>
24809         * frame.el (modify-all-frames-parameters): Reinstall (copyright
24810         papers received).
24812 2003-07-13  Karl Eichwalder  <ke@suse.de>
24814         * textmodes/po.el (po-find-charset): White space at the start of the
24815         Content-Type field body is non-mandatory.
24817 2003-07-13  Masayuki Ataka  <ataka@milk.freemail.ne.jp>  (tiny change)
24819         * textmodes/texinfo.el (texinfo-section-list):
24820         Append appendixsection; a synonym for appendixsec.
24822 2003-07-13  Jari Aalto  <jari.aalto@poboxes.com>
24824         * man.el (Man-translate-cleanup): New.
24825         (Man-translate-references): Call `Man-translate-cleanup' to clean
24826         leading, trailing and middle spaces.
24828 2003-07-13  Lars Hansen  <larsh@math.ku.dk>
24830         * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
24831         Handle `dired-directory' being a list.
24833 2003-07-13  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
24835         * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
24836         it doesn't exist.
24838 2003-07-12  Richard M. Stallman  <rms@gnu.org>
24840         * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
24842         * progmodes/cc-defs.el (c-make-keywords-re):
24843         Don't use delete-duplicates.
24844         (c-lang-const): Don't use mapcan.
24846         * apropos.el (apropos-show-scores): Make it customizable.
24847         Document new meaning.
24848         (apropos): Compute scores from symbols.
24849         (apropos-print): Don't sort by scores if apropos-show-scores is nil.
24851 2003-07-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24853         * ps-bdf.el: Fix copyright line.
24854         (bdf-directory-list): Fix initialization code.
24856 2003-07-11  John Paul Wallington  <jpw@gnu.org>
24858         * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
24859         (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
24860         (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
24862 2003-07-11  NAKAJIMA Mikio  <minakaji@namazu.org>  (tiny change)
24864         * emacs-lisp/ring.el (ring-elements): Doc fix.
24866 2003-07-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
24868         * calendar/timeclock.el (timeclock-relative)
24869         (timeclock-ask-before-exiting, timeclock-use-display-time):
24870         Doc changes.
24871         (timeclock-modeline-display): Give a message if
24872         `timeclock-use-display-time' is non-nil but `display-time-mode'
24873         is not active.
24875 2003-07-11  Kenichi Handa  <handa@m17n.org>
24877         * international/mule-cmds.el (set-language-environment):
24878         Set current-language-environment to the correct string.
24880 2003-07-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24882         * ps-print.el: Print line number correctly in a region.  Reported by
24883         Tim Allen <timallen@ls83.fsnet.co.uk>.
24884         (ps-print-version): New version number (6.6.2).
24885         (ps-printing-region): Code fix.
24887 2003-07-10  John Paul Wallington  <jpw@gnu.org>
24889         * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
24890         this function can be called from `add-completions-from-tags-table'.
24892 2003-07-10  Glenn Morris  <gmorris@ast.cam.ac.uk>
24894         * calendar/timeclock.el (timeclock-use-display-time)
24895         (timeclock-day-over-hook, timeclock-workday-remaining)
24896         (timeclock-status-string, timeclock-when-to-leave)
24897         (timeclock-when-to-leave-string, timeclock-log-data)
24898         (timeclock-find-discrep, timeclock-day-base)
24899         (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
24900         (timeclock-modeline-display): Set the variable
24901         `timeclock-modeline-display'.
24902         (timeclock-update-modeline): Doc fix.  Respect value of
24903         `timeclock-relative'.
24905 2003-07-09  Richard M. Stallman  <rms@gnu.org>
24907         * textmodes/reftex-parse.el (reftex-all-document-files):
24908         Add autoload cookie.
24910         * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
24911         (reftex-scanning-info-available-p): Add autoload cookie.
24913         * international/mule-cmds.el
24914         (set-display-table-and-terminal-coding-system): Delete duplicate
24915         aset on standard-display-table.
24917         * view.el (view-file): If existing buffer's major mode is special,
24918         don't go into view mode.
24920         * dired.el (dired-move-to-filename-regexp): Allow quote in months.
24922 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
24924         * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
24925         buffer changes; there's third party code that calls this function
24926         directly.
24928 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
24930         * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
24931         (autodoc-font-lock-keywords): Don't byte compile on font lock
24932         initialization when running from byte compiled files.
24934 2003-07-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
24936         * progmodes/cc-engine.el: Fix AWK mode indentation when previous
24937         statement ends with auto-increment "++".
24939 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
24941         * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
24942         (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
24943         these are changed, so declare them as variables and not constants.
24945 2003-07-08  Markus Rost  <rost@math.ohio-state.edu>
24947         * subr.el (dolist, dotimes): Doc fix.
24949 2003-07-08  Kim F. Storm  <storm@cua.dk>
24951         * international/mule-cmds.el
24952         (set-display-table-and-terminal-coding-system): Don't break
24953         bootstrap if standard-display-table isn't setup yet.
24955 2003-07-07  Richard M. Stallman  <rms@gnu.org>
24957         * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
24958         Give it a doc string, and autoload it.
24960         * desktop.el (desktop-buffer-info, desktop-buffer-mh):
24961         Use with-no-warnings.
24963         * info.el (Info-search): If find invisible text, search again.
24965         * isearch.el (search-whitespace-regexp): Add a shy group around it.
24967         * man.el (Man-name-regexp): Match + as part of name.
24969         * simple.el (visible-mode): Rename from vis-mode.
24970         (vis-mode-saved-buffer-invisibility-spec): Doc fix.
24972         * simple.el (current-word): New arg REALLY-WORD specifies
24973         don't include punctuation chars.
24975         * emacs-lisp/debug.el (debug, debugger-env-macro):
24976         Use with-no-warnings while accessing and binding unread-command-char.
24978         * international/mule-cmds.el
24979         (set-display-table-and-terminal-coding-system): Use explicit loop
24980         instead of calling standard-display-default.
24982         * net/ange-ftp.el (ange-ftp-file-symlink-p):
24983         Use condition-case to catch error in ange-ftp-get-files.
24985         * net/browse-url.el (browse-url-browser-function):
24986         Add alternative for Epiphany.
24987         (browse-url-epiphany-program, browse-url-epiphany-arguments)
24988         (browse-url-epiphany-startup-arguments)
24989         (browse-url-epiphany-new-window-is-tab): New variables.
24990         (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
24992         * progmodes/compile.el (compile-auto-highlight): Default now t.
24993         (compile): Doc fix.
24994         (compilation-next-error): Fix previous change.
24996         * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
24998         * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
25000 2003-07-07  Nick Roberts  <nick@nick.uklinux.net>
25002         * gdb-ui.el (gdb-source-info): Display current frame when
25003         attaching to an existing process.
25004         (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
25005         while laying out windows when attaching to an existing process.
25007 2003-07-07  Stefan Monnier  <monnier@cs.yale.edu>
25009         * info.el (Info-menu): Use Info-menu-entry-name-re.
25011 2003-07-06  Stefan Monnier  <monnier@cs.yale.edu>
25013         * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
25014         * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
25016         * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
25017         to match the same text.
25019 2003-07-06  John Paul Wallington  <jpw@gnu.org>
25021         * vc.el (vc-annotate-offset): Move defvar up.
25023 2003-07-06  Kim F. Storm  <storm@cua.dk>
25025         * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
25026         This should fix the infinite loop when extracting menu names.
25028 2003-07-05  Martin Stjernholm  <bug-cc-mode@gnu.org>
25030         * files.el (auto-mode-alist, interpreter-mode-alist):
25031         Remove entries to CC Mode modes to avoid duplicates; they are now added
25032         with autoload directives in cc-mode.el.
25034 2003-07-05  Martin Stjernholm  <bug-cc-mode@gnu.org>
25036         * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
25037         (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
25038         these are changed, so declare them as variables and not constants.
25040         * progmodes/cc-mode.el: Fix some autoload problems: Try to
25041         ensure that the entry for ".c" extension comes before the one for
25042         ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
25043         Fix incorrect entries that were added to `interpreter-mode-alist'.
25044         Move the autoload directives for AWK to the top level since they
25045         aren't recognized anywhere else.  Do not use the new AWK mode doc
25046         in the autoload form for the old AWK mode.
25048 2003-06-30  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
25050         * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
25051         (bibtex-sort-ignore-string-entries): Default value t.
25052         (bibtex-entry-kill-ring-max): Reintroduce as it was removed
25053         erroneously in previous version.
25054         (bibtex-string-files): Docstring reflects new parsing scheme.
25055         (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
25056         docstring, add # as one of the chars to crush
25057         (bibtex-autokey-prefix-string, bibtex-autokey-names)
25058         (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
25059         (bibtex-autokey-name-change-strings)
25060         (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
25061         (bibtex-autokey-name-separator, bibtex-autokey-year-length)
25062         (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
25063         (bibtex-autokey-title-terminators)
25064         (bibtex-autokey-titlewords-stretch)
25065         (bibtex-autokey-titleword-ignore)
25066         (bibtex-autokey-titleword-case-convert)
25067         (bibtex-autokey-titleword-abbrevs)
25068         (bibtex-autokey-titleword-abbrevs)
25069         (bibtex-autokey-titleword-change-strings)
25070         (bibtex-autokey-titleword-length)
25071         (bibtex-autokey-titleword-separator)
25072         (bibtex-autokey-name-year-separator)
25073         (bibtex-autokey-year-title-separator)
25074         (bibtex-autokey-before-presentation-function)
25075         (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
25076         Fix docstring.
25077         (bibtex-strings, bibtex-reference-keys):
25078         Use lazy-completion-table and make-variable-buffer-local.
25079         (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
25080         (bibtex-braced-string-syntax-table)
25081         (bibtex-quoted-string-syntax-table): New variables.
25082         (bibtex-parse-nested-braces): Remove.
25083         (bibtex-parse-field-string): Use syntax table and forward-sexp.
25084         (bibtex-parse-association): Simplify.
25085         (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
25086         (bibtex-parse-field-text): Simplify.
25087         (bibtex-search-forward-field, bibtex-search-backward-field):
25088         argument BOUND can take value t.
25089         (bibtex-start-of-field, bibtex-start-of-name-in-field)
25090         (bibtex-end-of-name-in-field, bibtex-end-of-field)
25091         (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
25092         (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
25093         (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
25094         (bibtex-skip-to-valid-entry): Return buffer position of beginning
25095         and ending of entry.  Update for changes of bibtex-search-entry.
25096         Simplify.
25097         (bibtex-map-entries): FUN is called with three arguments.
25098         (bibtex-search-entry): Return a cons pair with buffer positions of
25099         beginning and end of entry.
25100         (bibtex-enclosing-field): Simplify.
25101         (bibtex-format-entry): Use booktitle to set a missing title.
25102         (bibtex-autokey-get-names): Fiddle with regexps.
25103         (bibtex-generate-autokey): Use identity.
25104         (bibtex-parse-keys): Use simplified parsing algorithm if
25105         bibtex-parse-keys-fast is non-nil.  Simplify.  Change order of
25106         arguments.  Return alist of keys.
25107         (bibtex-parse-strings): Simplify.  Return alist of strings.
25108         (bibtex-complete-string-cleanup): Fix docstring.
25109         (bibtex-read-key): New function.
25110         (bibtex-mode): Fix docstring.  Do not parse for keys and
25111         strings when the mode is entered.  Set fill-paragraph-function to
25112         bibtex-fill-field.  Setup font-lock-mark-block-function the way
25113         font-lock intended.
25114         (bibtex-entry): Use bibtex-read-key.  Obey bibtex-autofill-types.
25115         (bibtex-parse-entry, bibtex-autofill-entry): New functions.
25116         (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
25117         (bibtex-Preamble): Avoid hard coded constants.
25118         (bibtex-make-field): Fix docstring.  Simplify.
25119         (bibtex-beginning-of-entry): Always return new position of point.
25120         (bibtex-end-of-entry): Rearrange cond clauses.
25121         (bibtex-count-entries, bibtex-validate, bibtex-reformat):
25122         Update for changes of bibtex-map-entries.
25123         (bibtex-ispell-abstract): Do not move point.
25124         (bibtex-entry-index): Use downcase.  Simplify.
25125         (bibtex-lessp): Handle catch-all.
25126         (bibtex-find-crossref): Turn into a command.
25127         (bibtex-find-entry): Simplify.  Use bibtex-read-key.  Fix regexp.
25128         (bibtex-clean-entry): Use bibtex-read-key.  Handle string and
25129         preamble entries.
25130         (bibtex-fill-field-bounds): New function.
25131         (bibtex-fill-field): New command.  Bound to fill-paragraph-function.
25132         (bibtex-fill-entry): Use bibtex-fill-field-bounds
25133         (bibtex-String): Use bibtex-strings.  Always obey
25134         bibtex-sort-ignore-string-entries.
25136 2003-07-05  John Paul Wallington  <jpw@gnu.org>
25138         * cus-theme.el (customize-create-theme):
25139         Call `customize-create-theme' in Reset widget's notify function.
25141         * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
25142         (ibuffer-mark-interactive): Use `or' instead of `unless'.
25143         (define-ibuffer-column name): Add summarizer.
25144         (define-ibuffer-column size): Likewise.
25145         (define-ibuffer-column filename): Likewise.
25146         (define-ibuffer-column process): Likewise.  Change BODY's output too.
25147         (define-ibuffer-column filename-and-process): Likewise, likewise.
25148         (ibuffer): Remove local vars `already-in' and `need-update'.
25150         * ibuf-ext.el: Don't require `derived' at compile-time.
25152 2003-07-05  Kim F. Storm  <storm@cua.dk>
25154         * info.el: Disable paragraph refilling.
25155         (Info-refill-paragraphs): New defcustom.
25156         (Info-fontify-node): Use it.
25158 2003-07-04  Stefan Monnier  <monnier@cs.yale.edu>
25160         * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
25161         thingies from constructors created by defstruct.
25163         * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
25164         the default value of the variable.
25165         (byte-code-meter): Move declaration to top level.
25167         * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
25169         * info.el (Info-following-node-name-re): New fun.
25170         (Info-following-node-name): Remove.
25171         (Info-insert-dir): Use the new fun.
25172         (Info-extract-pointer): Don't save restriction; use new fun.
25173         (Info-menu-entry-name-re): New const.
25174         (Info-menu-entry-name-re): Use it along with new fun.
25175         (Info-node-spec-re): Use new fun.
25176         (Info-complete-menu-item, Info-fontify-node): Use new const.
25177         (Info-goto-node, Info-follow-reference, Info-menu-update):
25178         Use match-string.
25179         (Info-follow-reference): Use assoc-string.
25180         Use a list of strings for the completion table.
25181         (Info-fontify-node): Use match-string, line-end-position.
25182         Limit the search for `node:' to the first line.
25184         * newcomment.el (uncomment-region): Remove padding coming from
25185         comment-start rather than just from comment-padding.
25187         * vc-cvs.el (vc-cvs-repository-hostname): New operation.
25188         (vc-cvs-stay-local-p): Use vc-stay-local-p.
25189         (vc-cvs-rename-file): Remove (use the default).
25190         (vc-cvs-register): Register parent dir if needed.
25191         (vc-cvs-could-register): Return non-nil if parent can be registered.
25192         (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
25193         (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
25195         * vc-svn.el (vc-svn-use-edit): Make it into a const.
25196         (vc-svn-update): Fix the arguments to `svn'.
25197         (vc-svn-diff-tree): Just use `vc-svn-diff'.
25198         (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
25199         Simple implementations, assuming `name' is a URL.
25201         * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
25202         set of chars allowed unquoted in a case pattern.
25204         * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
25206         * font-lock.el (font-lock-extra-types-widget)
25207         (c-font-lock-extra-types, c++-font-lock-extra-types)
25208         (objc-font-lock-extra-types, java-font-lock-extra-types)
25209         (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
25210         (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
25211         (font-lock-match-c++-style-declaration-item-and-skip-to-next)
25212         (font-lock-match-c++-structor-declaration)
25213         (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
25214         (c++-font-lock-keywords-3, c++-font-lock-keywords)
25215         (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
25216         (objc-font-lock-keywords-3, objc-font-lock-keywords)
25217         (java-font-lock-keywords-1, java-font-lock-keywords-2)
25218         (java-font-lock-keywords-3, java-font-lock-keywords)
25219         (java-font-lock-syntactic-face-function): Remove obsolete code
25220         and constants.  It's all in cc-fonts.el now.
25222 2003-07-04  Glenn Morris  <gmorris@ast.cam.ac.uk>
25224         * mail/sendmail.el (mail-specify-envelope-from)
25225         (mail-envelope-from): Doc fix.
25227 2003-07-04  Martin Stjernholm  <mast@lysator.liu.se>
25229         * generic-x.el: Do away with the dependency on `c-emacs-features'
25230         when populating `rul-generic-mode-syntax-table'; we already know
25231         this isn't XEmacs.
25233 See ChangeLog.10 for earlier changes.
25235 ;; Local Variables:
25236 ;; coding: iso-2022-7bit
25237 ;; End:
25239     Copyright (C) 2001, 02, 04  Free Software Foundation, Inc.
25240   Copying and distribution of this file, with or without modification,
25241   are permitted provided the copyright notice and this notice are preserved.
25243 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1