(define-generic-mode): Let generic-mode-list be a list of strings;
[emacs.git] / lisp / ChangeLog
blob3b27d4c83b00af46f0253ef4e95f0bb005a4e988
1 2005-03-14  Lute Kamstra  <lute@gnu.org>
3         * generic.el (define-generic-mode): Let generic-mode-list be a
4         list of strings; test membership with equal.
6 2005-03-14  Kim F. Storm  <storm@cua.dk>
8         * simple.el (next-line, previous-line): Add optional try-vscroll
9         arg to recognize interactive use.  Pass it on to line-move.
10         (line-move): Don't perform auto-window-vscroll when defining or
11         executing keyboard macro to ensure consistent behaviour.
13 2005-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15         * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
17 2005-03-13  Lute Kamstra  <lute@gnu.org>
19         * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
20         debugger-setup-buffer so that backtrace marks the frames set to
21         debug-on-exit and we don't have to do it manually.  Set an extra
22         debug-on-exit for macro's.
23         (debugger-setup-buffer): Don't mark the top frame manually.
25 2005-03-12  Lute Kamstra  <lute@gnu.org>
27         * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
28         lisp-indent-function throughout.
29         (with-no-warnings): Set lisp-indent-function property.
31 2005-03-12  Thien-Thi Nguyen  <ttn@gnu.org>
33         * progmodes/dcl-mode.el (dcl-mode-syntax-table):
34         Add entry for backslash.
36 2005-03-12  Juri Linkov  <juri@jurta.org>
38         * info.el (Info-search): Four fixes for backward search.
40 2005-03-11  Jay Belanger  <belanger@truman.edu>
42         * calc/calc.el (calc-language-alist): New variable.
43         * calc/calc-embed.el (calc-embedded-language-alist): Remove.
44         (calc-embedded-find-modes): Use calc-language-alist instead of
45         calc-embedded-language-alist.
47 2005-03-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
49         * calendar/calendar.el (calendar-redrawing): New internal
50         variable.
51         (redraw-calendar): Remove bogus save-excursion from previous
52         change.  Bind calendar-redrawing to t for mark-diary-entries.
53         * calendar/diary-lib.el (mark-diary-entries): No need to redraw
54         calendar if that is why we were called.
56 2005-03-11  Kenichi Handa  <handa@m17n.org>
58         * international/mule.el (make-coding-system): Set property
59         'coding-system-define-form to nil.
60         (define-coding-system-alias): Likewise.
62 2005-03-11  Kenichi Handa  <handa@m17n.org>
64         These changes are suggested by Dave Love <fx@gnu.org>.
66         * textmodes/fill.el: Change encoding to iso-2022-7bit and add
67         coding: tag.
68         (adaptive-fill-regexp): Add more bullets.
69         (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
70         regexps.
72 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
74         * help.el (describe-mode): Properly handle non-trivial lighters.
75         Don't ignore minor modes that are not listed in minor-mode-list.
77         * tooltip.el (tooltip-mode): Don't complain that you can't turn the
78         feature ON when the user requests to turn it OFF.
80 2005-03-10  Lute Kamstra  <lute@gnu.org>
82         * emacs-lisp/debug.el (debug-entry-code): Delete it.
83         (implement-debug-on-entry): New function to replace debug-entry-code.
84         (debug-on-entry-1): Use implement-debug-on-entry.  Delete the
85         second argument as the 2005-03-07 change makes it obsolete.
86         (debug-on-entry, cancel-debug-on-entry): Update call to
87         debug-on-entry-1.
88         (debug, debugger-setup-buffer): Comment update.
89         (debugger-frame-number): Update to work with implement-debug-on-entry.
91 2005-03-10  Jay Belanger  <belanger@truman.edu>
93         * calc/calc-embed.el (math-ms-args): Declare it.
94         (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
95         math-ms-args.
96         (calc-embedded-subst): Use math-multi-subst-rec to substitute
97         variables.
99 2005-03-10  Nick Roberts  <nickrob@snap.net.nz>
101         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
102         Use message-box.
104         * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
105         (tooltip-activate-mouse-motions-if-enabled): Use dolist.
106         (tooltip-gud-tips): Simplify.
107         (tooltip-gud-tips-p): Remove superflouous :set.
108         (tooltip-gud-modes): Add fortran-mode.
109         (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
111         * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
113 2005-03-09  Kim F. Storm  <storm@cua.dk>
115         * play/animate.el (animate-place-char): Use forward-line instead
116         of next-line to improve performance.
118 2005-03-09  Simon Josefsson  <jas@extundo.com>
120         * net/browse-url.el (browse-url-default-browser): Doc fix.
122 2005-03-09  Miles Bader  <miles@gnu.org>
124         * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
125         (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
127 2005-03-09  Kenichi Handa  <handa@m17n.org>
129         * international/latin-1.el: Set case and syntax for 255 only if
130         set-case-syntax-set-multibyte is nil.
132         * textmodes/ispell.el (ispell-insert-word): New function.
133         (ispell-word): Use ispell-insert-word to insert a new word.
134         (ispell-process-line): Likewise.
135         (ispell-complete-word): Likewise.
137 2005-03-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
139         * calendar/calendar.el (redraw-calendar): Preserve point.
140         Reported by Matt Hodges <MPHodges@member.fsf.org>.
141         (calendar-week-start-day): Move after definition of
142         redraw-calendar.  Delete buffer test, since redraw-calendar has
143         that now.
145         * calendar/diary-lib.el (mark-diary-entries): Only call
146         redraw-calendar in the first of any recursive calls.
147         Reported by Alan Shutko <ats@acm.org>.
149 2005-03-08  Juri Linkov  <juri@jurta.org>
151         * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
152         (html-horizontal-rule, html-line, html-image, html-checkboxes)
153         (html-radio-buttons): Add a space before the trailing `/>' where
154         sgml-xml-mode is non-nil.
155         (sgml-delete-tag): Check if the tag ends with `/>' to not delete
156         the subsequent tag of the empty XML tag.
157         (html-href-anchor): Don't set initial input to "http:".
158         (html-image): Ask for the image URL and set point inside alt="".
159         (html-name-anchor): Duplicate the name in the `id' attribute when
160         sgml-xml-mode is non-nil.
161         (html-paragraph): Remove \n before <p>.
162         (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
163         instead of `checked' when sgml-xml-mode is non-nil.
165         * facemenu.el (list-colors-print): Print #RRGGBB in default face.
166         Remove 1 space before #RRGGBB to not truncate it on terminal
167         windows w/o fringes.  Remove 1 space between bg and fg examples
168         to get more space.
169         (list-colors-duplicates): Replace `and' with `if' for `boundp' to
170         avoid byte-compile warnings.
172         * image-file.el (image-file-handler): Put `safe-magic' property to
173         `image-file-handler'.
175         * info.el (Info-isearch-search): Emulate word search in
176         isearching through multiple Info nodes with Info-search.
177         (Info-isearch-wrap): Allow isearch-word.
179 2005-03-08  Lute Kamstra  <lute@gnu.org>
181         * emacs-lisp/debug.el (debugger-step-through): Make sure that
182         stepping into the debugger's code is not possible.
183         (debugger-jumping-flag): Docstring update.
185 2005-03-08  Jay Belanger  <belanger@truman.edu>
187         * calc/calc-embed.el (calc-do-embedded): Reset mode line when
188         embedded mode begins.
189         (calc-embedded-language-alist): New variable.
190         (calc-embedded-find-modes): Use calc-embedded-language-alist to
191         set default language mode.
193 2005-03-08  Kenichi Handa  <handa@m17n.org>
195         * international/ccl.el (define-ccl-program): Fix docstring about
196         extra 256 bytes assured for the output buffer.
198         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
199         Fix BUFFER_MAGNIFICATION to 2.
200         (ccl-encode-mule-utf-16be-with-signature): Likewise.
202 2005-03-07  Karl Chen  <quarl@cs.berkeley.edu>
204         * align.el (align-rules-list): Added an alignment rule for CSS
205         declarations (applies to css-mode and html-mode buffers).
207 2005-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
209         * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
211 2005-03-07  Kim F. Storm  <storm@cua.dk>
213         * simple.el (move-beginning-of-line): New command.
215         * bindings.el (global-map): Bind C-a to move-beginning-of-line.
217         * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
219         * emulation/cua-base.el: Put CUA move property on move-end-of-line
220         and move-beginning-of-line.
222         * apropos.el (apropos-print): Omit command from M-x ... RET.
224 2005-03-07  Nick Roberts  <nickrob@snap.net.nz>
226         * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
227         (gdb-send, gdb-send-item): Log items sent from gdb-send too.
229 2005-03-06  Richard M. Stallman  <rms@gnu.org>
231         * bindings.el (esc-map): Bind M-g to goto-line.
233         * facemenu.el (global-map): Bind M-o, not M-g.
235 2005-03-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
237         * menu-bar.el (menu-bar-file-menu): Add the same :enable to
238         "Open Directory" as for "Open File".
240 2005-03-06  Chong Yidong  <cyd@stupidchicken.com>
242         * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
243         (push-mark-command): Run activate-mark-hook.
245 2005-03-06  Richard M. Stallman  <rms@gnu.org>
247         * help-mode.el (help-mode-finish): Don't alter the element
248         in view-return-to-alist if there already is one.
250         * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
251         make sure the current buffer is the expected one.
253         * novice.el (disabled-command-function): Output in *Disabled Command*.
254         Explicitly ignore non-keyboard events, and explicitly handle C-g.
256         * textmodes/flyspell.el (flyspell-large-region):
257         Pass args differently for aspell.
259         * files.el (mode-require-final-newline): Doc fix.
261 2005-03-03  Stephan Stahl  <stahl@eos.franken.de> (tiny change)
263         * progmodes/which-func.el (which-function):
264         Specify NOERROR when calling imenu--make-index-alist.
266 2005-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
268         * simple.el (normal-erase-is-backspace): Define default value.
270         * custom.el (custom-theme-set-variables): Remove unused var `immediate'.
271         (custom-reevaluate-setting): Simple function to handle
272         variables that are defined before their default value can really
273         be computed.
275         * startup.el (command-line): Use it for temporary-file-directory,
276         small-emporary-file-directory, auto-save-file-name-transforms,
277         blink-cursor-mode, and normal-erase-is-backspace.
279         * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
280         progress, even with buggy anchored keywords.
282 2005-03-05  Luc Teirlinck  <teirllm@auburn.edu>
284         * simple.el (goto-line): Remove unbalanced final parenthesis.
286 2005-03-05  Richard M. Stallman  <rms@gnu.org>
288         * simple.el (goto-line): Use a number at point as the default.
289         With C-u as arg, switch buffers.
291 2005-03-05  Juri Linkov  <juri@jurta.org>
293         * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
294         with `no-blinking-cursor'.
296         * startup.el (no-blinking-cursor): New defvar.
297         (command-line): Add `--no-blinking-cursor' to longopts.
298         Set `no-blinking-cursor' to t for command line arguments
299         -Q, -nbc, --no-blinking-cursor.  Replace `emacs-quick-startup'
300         with `no-blinking-cursor' in the condition for calling
301         `blink-cursor-mode'.
303 2005-03-04  Luc Teirlinck  <teirllm@auburn.edu>
305         * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
306         (menu-bar-options-save): Add blink-cursor-mode.
307         (menu-bar-options-menu): Add blink-cursor-mode.
309 2005-03-04  Ulf Jasper  <ulf.jasper@web.de>
311         * calendar/icalendar.el (icalendar-version): Increase to 0.11.
312         (icalendar-export-file, icalendar-export-region)
313         (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
314         (icalendar--convert-ical-to-diary): Fix problem with DURATION.
316 2005-03-04  Lute Kamstra  <lute@gnu.org>
318         * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
319         (debug-function-list): Ditto.
321 2005-03-04  Robert J. Chassell  <bob@rattlesnake.com>
323         * textmodes/texinfmt.el (texinfo-append-refill):
324         Redefine the types of line to which @refill
325         is not appended by replacing a search for `@refill\\|@bye' with
326         `@refill\\|^[ \t]*@'.  The intent is to solve both the `@end
327         itemize@refill' bug and the unfilled long lines bug.
328         (texinfmt-version): Update number and date.
330 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
332         * international/code-pages.el (windows-1250, windows-125[2-8])
333         (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
335 2005-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
337         * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
338         bound yet.
340 2005-03-02  Romain Francoise  <romain@orebokech.com>
342         * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
343         buffer after removing limits.
344         (ibuffer-pop-filter): Ditto.
345         Update copyright.
347 2005-03-02  Miles Bader  <miles@gnu.org>
349         * button.el (make-text-button): If the user doesn't specify a
350         type, use the default.  Rewrite to use `add-text-properties' and
351         plist functions.
353 2005-03-01  Lute Kamstra  <lute@gnu.org>
355         * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
356         (debugger-jumping-flag): New var.
357         (debug-entry-code): Use it.
358         (debugger-jump): Use debugger-jumping-flag and add
359         debugger-reenable to post-command-hook.
360         (debugger-reenable): Use debugger-jumping-flag and remove itself
361         from post-command-hook.
362         (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
363         debugger-reenable.
365 2005-03-01  Robert J. Chassell  <bob@rattlesnake.com>
367         * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
368         inclusion of "itemize\\|", which may be unnecessary, is certainly
369         inelegant, and stops refilling in itemize lists when formatting
370         Japanese Texinfo files to Info.
371         Update copyright to 2005.
373 2005-03-01  Nick Roberts  <nickrob@snap.net.nz>
375         * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
376         of an error if GDB can't find the source file.
378 2005-03-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
380         * calendar/calendar.el (redraw-calendar): Work from any buffer,
381         not just the calendar.
383         * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
384         first.
385         (diary-redraw-calendar): New function.
386         (make-diary-entry): Add diary-redraw-calendar to local
387         write-contents-functions.  Turn off selective display before
388         inserting in diary.
390 2005-03-01  Kim F. Storm  <storm@cua.dk>
392         * emacs-lisp/copyright.el (copyright-fix-years): New command.
394 2005-03-01  Lute Kamstra  <lute@gnu.org>
396         * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
397         that debug-entry-code can be safely removed from a function while
398         this code is being evaluated.  Revert the 2005-02-27 change as the
399         new implementation no longer requires it.  Make sure that a
400         function body containing just a string is not mistaken for a docstring.
401         (debug): Skip one more frame in case of debug on entry.
402         (debugger-setup-buffer): Delete one more frame line in case of
403         debug on entry.
404         (debugger-frame-number): Update to use the new text introduced by
405         the 1999-11-03 change.  Skip one more frame in case of debug on entry.
407 2005-02-28  Kim F. Storm  <storm@cua.dk>
409         * double.el (double-translate-key): Call force-window-update after
410         read-event to avoid crash in redisplay.
412 2005-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
414         * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
415         (debug): Use it.  Move the inhibit-trace earlier.
416         (debug-entry-code): New const.
417         (debug-on-entry-1): Use it.
419 2005-02-28  Chong Yidong" <cyd@stupidchicken.com> (tiny change)
421         * international/utf-16.el (ccl-encode-mule-utf-16le):
422         Fix BUFFER_MAGNIFICATION to 2.
423         (ccl-encode-mule-utf-16be): Likewise.
425 2005-02-28  Kenichi Handa  <handa@m17n.org>
427         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
428         Fix BUFFER_MAGNIFICATION to 4.
429         (ccl-encode-mule-utf-16be-with-signature): Likewise.
431 2005-02-28  Nick Roberts  <nickrob@snap.net.nz>
433         * speedbar.el (speedbar-update-flag): Doc fix.
434         (speedbar-show-info-under-mouse): Give set-mouse-position the right
435         argument.
437 2005-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
439         * reveal.el (reveal-post-command): Don't try to reveal overlays which
440         have a non-nil `invisible' property but are actually visible.
442         * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
443         for perldoc sections.
444         (perl-outline-regexp, perl-outline-level): New var and function.
445         (perl-mode): Use them.
447 2005-02-27  Glenn Morris  <gmorris@ast.cam.ac.uk>
449         * calendar/diary-lib.el (diary-remind): Discard any mark portion
450         from diary-entry.  Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
452 2005-02-27  Luc Teirlinck  <teirllm@auburn.edu>
454         * cus-edit.el: Comment change.
455         (custom-buffer-create-internal): Slightly reword text at top of
456         Custom buffers.  Mention there that saving an option edits the
457         init file.  Add link to Emacs manual node on `custom-file'.
458         (custom-magic-alist): Rewrite individual State messages to use
459         capitalized keywords.  Doc fix.
461 2005-02-27  Matt Hodges  <MPHodges@member.fsf.org>
463         * calendar/calendar.el (calendar-buffer): Move above
464         calendar-week-start-day.
465         (calendar-week-start-day): Doc fix.  Add :set function.
466         (calendar-minimum-window-height): New variable.
467         (generate-calendar-window): Only resize window if selected-window
468         is displaying the calendar buffer.  Use new variable
469         calendar-minimum-window-height.
470         (generate-calendar): Reword error message.
471         (calendar-mode-map): Bind DEL to scroll-other-window-down.
473 2005-02-27  Andreas Schwab  <schwab@suse.de>
475         * vc.el (vc-do-command): Don't run command asynchronously when
476         operating in a remote directory.
478         * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
479         change from sync with Tramp 2.0.47.
481 2005-02-27  Richard M. Stallman  <rms@gnu.org>
483         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
485         * textmodes/flyspell.el (flyspell-mode-on):
486         Call ispell-change-dictionary only if necessary.
488         * emacs-lisp/re-builder.el (regexp-builder): New function.
490         * register.el (describe-register-1): Explicitly handle
491         yank-excluded-properties = t.
493         * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
494         (custom-magic-alist): Change the status descriptions again.
495         (face widget-type): Total rewrite based on `restricted-sexp'
496         to eliminate the confusing double hiding levels.
498         * emacs-lisp/debug.el (debug-on-entry-1):
499         If function body is empty, add nil as body form.
501 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
503         * emacs-lisp/trace.el (inhibit-trace): New var.
504         (trace-make-advice): Use it.
506         * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
508 2005-02-26  Kim F. Storm  <storm@cua.dk>
510         * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
511         (mouse-on-link-p, mouse-drag-region-1): Use it.
513 2005-02-25  Lute Kamstra  <lute@gnu.org>
515         * replace.el (query-replace-read-from): Fix 2005-02-19 change.
517 2005-02-24  Luc Teirlinck  <teirllm@auburn.edu>
519         * frame.el (blink-cursor-mode): Add :group keyword.
521 2005-02-24  Ulf Jasper  <ulf.jasper@web.de>
523         * calendar/icalendar.el (icalendar--decode-isodatetime):
524         New optional argument DAY-SHIFT.
525         (icalendar-export-region): Fix coding-system-for-write.
526         (icalendar--convert-ical-to-diary): Shift end-day of all-day
527         events by one.
529 2005-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
531         * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
533 2005-02-24  Kim F. Storm  <storm@cua.dk>
535         * international/iso-acc.el (iso-accents-compose): Fix crash
536         during redisplay.  Call force-window-update after read-event
537         and delete-region to signal that window is not accurate.
539 2005-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
541         * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
542         Remove unused and inexistent var `inhibit-trace'.
543         (debugger-mode): Use run-mode-hooks.
544         (debugger-list-functions): Add buttons; setup xref stack.
546 2005-02-23  Richard M. Stallman  <rms@gnu.org>
548         * calendar/appt.el (appt-time-msg-list): 3rd elt of each
549         appointment says it was explicitly made.
550         (appt-add): Set the 3rd element.
551         (appt-make-list): Preserve explicit appointments.
553         * subr.el (find-tag-default): Catch errors in forward-sexp.
555 2005-02-23  Juri Linkov  <juri@jurta.org>
557         * info.el (Info-isearch-search): New defcustom.
558         (Info-isearch-search): Call the default isearch function
559         when Info-isearch-search is nil.
560         (Info-isearch-wrap): Use variable Info-isearch-search.
562 2005-02-22  Luc Teirlinck  <teirllm@auburn.edu>
564         * cus-edit.el: Comment change.
566 2005-02-22  Kim F. Storm  <storm@cua.dk>
568         * progmodes/hideif.el (hide-ifdef-use-define-alist):
569         Use completing-read.  Suggested by Juan-Leon Lahoz Garcia.
571 2005-02-22  Simon Josefsson  <jas@extundo.com>
573         * net/browse-url.el (browse-url-netscape-new-window-is-tab):
574         New variable.
575         (browse-url-netscape): Use it.  Suggested by "Johann 'Myrkraverk'
576         Oskarsson" <myrkraverk@users.sourceforget.net>.
578 2005-02-22  Kim F. Storm  <storm@cua.dk>
580         * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
581         check that window of that event is the selected window.
582         (mouse-drag-region-1): Compare mouse event window to selected
583         window before setting point.
585         * tooltip.el (tooltip-show-help-function): Pass event to
586         mouse-on-link-p so it can check selected window.
588 2005-02-22  Kenichi Handa  <handa@m17n.org>
590         * ps-mule.el (ps-mule-header-string-charsets): Delete it.
591         (ps-mule-show-warning): New function.
592         (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
593         characters are found.
595         * ps-print.el (ps-header-footer-string): Return a list of header
596         and footer strings.
598 2005-02-21  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
600         * pcvs.el (cvs-retrieve-revision): Fix thinko.
602 2005-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
604         * frame.el (blink-cursor-mode): Use define-minor-mode.
606         * term/mac-win.el (function-key-map): Use char-names more consistently.
607         (file-name-coding-system): Only set it for MacOS-9.  The other case is
608         already handled in mule-cmds.el (where it also works when mac-win.el
609         is not used).
611 2005-02-21  Kenichi Handa  <handa@m17n.org>
613         * international/mule.el (ctext-pre-write-conversion): Always use
614         " *code-converting-work*" buffer for work.
616         * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
618 2005-02-20  Thien-Thi Nguyen  <ttn@gnu.org>
620         * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
622 2005-02-20  Jonathan Yavner  <jyavner@member.fsf.org>
624         * ses.el (undo-more): Restore defadvice, but only the part that
625         allows changes outside the restricted area of the buffer.
627 2005-02-20  Kim F. Storm  <storm@cua.dk>
629         * simple.el (line-move): Add fourth optional arg try-vscroll which
630         must be set to perform auto-window-vscroll.
631         When moving backwards and doing auto-window-vscroll, automatically
632         vscroll to the last part of lines which are taller than the window.
633         (next-line, previous-line): Set try-vscroll arg on line-move.
635 2005-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
637         * replace.el (query-replace, query-replace-regexp)
638         (replace-string, replace-regexp): When operating on region, make
639         the minibuffer prompt say so.
641         * isearch.el (isearch-forward): Document isearch-query-replace and
642         isearch-query-replace-regexp keybindings.
644 2005-02-19  Jay Belanger  <belanger@truman.edu>
646         * calc/calc-aent.el (math-read-token): Add local variable.
648         * calc/calc-prog.el (calc-user-define-edit): Add local variable.
649         (calc-edit-top): Move declaration to earlier in file.
650         (calc-edit-macro-repeats): Add local variables.
652         * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
653         Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
654         calcFunc-tanh.
655         Adjust integration rule for calcFunc-tan.
657 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
659         * viper-cmd.el (viper-prefix-commands): Make into a defconst.
660         (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
661         (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
662         (viper-skip-separators): Bug fix.
663         (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
664         particular major mode.
665         (viper-del-backward-char-in-replace): Don't put deleted char on the
666         kill ring.
668         * viper-ex.el (viper-color-display-p): New function.
669         (viper-has-face-support-p): Use viper-color-display-p.
671         * viper-keym.el (viper-gnus-modifier-map): New keymap.
673         * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
675         * viper-util.el (viper-glob-unix-files): Fix shell status check.
676         (viper-file-remote-p): Make equivalent to file-remote-p.
678         * viper.el (viper-major-mode-modifier-list):
679         Use viper-gnus-modifier-map.
681 2005-02-19  David Kastrup  <dak@gnu.org>
683         * subr.el (subregexp-context-p): Fix garbled doc string by adding
684         quoting.
686 2005-02-19  Jay Belanger  <belanger@truman.edu>
688         * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
689         Remove extra definitions.
690         (calc-coth): New function.
691         (calcFunc-cot): Fix `let'.
693 2005-02-19  Eli Zaretskii  <eliz@gnu.org>
695         * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
696         the reasons we use "type pc" in these faces.
698         * button.el (button): Ditto.
700 2005-02-19  Michael Mauger  <mmaug@yahoo.com>
702         * replace.el (query-replace-read-from): Set the value of
703         query-replace-from-history-variable to handle the case of an empty
704         string entered to accept the suggested default.
706         * net/tramp.el (tramp-file-name-for-operation):
707         Use dired-call-process instead of dired-call-process-command.
709 2005-02-19  Jay Belanger  <belanger@truman.edu>
711         * calc/calc-arith.el (math-trig-inverses, math-div-trig)
712         (math-div-non-trig): New variables.
713         (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
714         (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
715         (math-combine-prod, math-div-symb-fancy): Add simplifications for
716         trig expressions.
718 2005-02-19  Nick Roberts  <nickrob@snap.net.nz>
720         * progmodes/gdb-ui.el (gdb-var-update-handler)
721         (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
722         for watch expressions,
723         (gdb-var-create-handler): Don't set speedbar-update-flag.
724         (gdb-post-prompt): Simplify test for speedbar.
726 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
728         * ediff.el (ediff-set-diff-overlays-in-one-buffer)
729         (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
730         we use the syntax table of the correct buffer.
731         (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
732         Felix Gatzemeier.
734         * ediff-init.el (ediff-hide-face): Check for definedness of functions.
735         (ediff-file-remote-p): Make synonymous with file-remote-p.
736         In all deffaces ediff-*-face-*, use min-colors.
738         * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
739         ediff-recurse-to-subdirectories.
740         (ediff-mark-if-equal): Check that the arguments are strings, use
741         ediff-same-contents (after to Felix Gatzemeier).
743         * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
744         nil.
746 2005-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
748         * log-view.el (log-view-message-re): Fix up Subversion regexp.
750 2005-02-18  David Kastrup  <dak@gnu.org>
752         * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
753         use `mark-active' when defined.
755 2005-02-18  Kenichi Handa  <handa@m17n.org>
757         * ps-print.el (ps-font-info-database): New entry
758         ZapfChancery-MediumItalic with correct font name.  Fix font name
759         of the entry Zapf-Chancery-MediumItalic.
761 2005-02-16  Luc Teirlinck  <teirllm@auburn.edu>
763         * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
765 2005-02-16  Kim F. Storm  <storm@cua.dk>
767         * ido.el (ido-fallback-command): Pass user input to fallback command.
769 2005-02-16  Nick Roberts  <nickrob@snap.net.nz>
771         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
772         (gdb-find-file-hook): Add server prefix.
774 2005-02-16  Richard M. Stallman  <rms@gnu.org>
776         * replace.el (perform-replace): Pass new args to replace-highlight.
777         (replace-highlight): Take region args,
778         and pass them to isearch-lazy-highlight-new-loop.
780         * novice.el (disabled-command-hook): Autoload the defalias
781         and the make-obsolete-variable call.
783         * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
785         * isearch.el (isearch-lazy-highlight-start-limit)
786         (isearch-lazy-highlight-end-limit): New variables limit
787         the region for highlighting.
788         (isearch-lazy-highlight-new-loop): New args BEG and END.
789         (isearch-lazy-highlight-search): Use the new vars.
790         (isearch-lazy-highlight-update): Likewise.
792         * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
794         * cus-start.el (all): Use default-boundp.
796 2005-02-15  David Casperson  <casper@unbc.ca>  (tiny change)
798         * menu-bar.el (menu-bar-select-frame): Handle current frame.
800 2005-02-15  Luc Teirlinck  <teirllm@auburn.edu>
802         * autorevert.el (auto-revert-stop-on-user-input)
803         (auto-revert-verbose): Doc fixes.
805 2005-02-15  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
807         * international/mule-cmds.el (set-locale-environment): Remove call
808         to set-selection-coding-system on Windows.
810 2005-02-15  Jay Belanger  <belanger@truman.edu>
812         * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
813         calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
814         calcFunc-coth.
815         (math-simplify-sqrt): Add simplifications.
817         * calc/calc-arith.el (math-real-if-arg-functions): Add functions
818         to list.
820         * calc/calc-ext.el: Add functions to autoloads.
822         * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
823         (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
824         (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
825         (math-csc-raw, math-cot-raw): New functions.
827         * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
829         * calc/calc-undo.el (calc-handle-undo): Remove prefix from
830         the variable name in a message.
832         * calc/calc-units.el: Add simplification rules for calcFunc-sec,
833         calcFunc-csc, calcFunc-cot.
835         * calc/calcalg2.el: Add derivative and integration rules for
836         calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
837         calcFunc-csch, calcFunc-coth.
838         (math-do-integral-methods): Add to checks for when to use
839         substitutions.
841         * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
843 2005-02-15  Lute Kamstra  <lute@gnu.org>
845         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
846         Add ;;;###autoload to `outline-regexp'.  Suggested by Stefan Monnier
847         <monnier@iro.umontreal.ca>
848         (lisp-outline-level): Improve efficiency.  Suggested by David
849         Kastrup <dak@gnu.org>.
851 2005-02-15  Nick Roberts  <nickrob@snap.net.nz>
853         * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
854         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
855         (gdb-set-gud-minor-mode-existing-buffers): New functions.
856         (gdb-find-file-hook): New hook. Add it to find-file-hook.
857         (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
859 2005-02-14  Luc Teirlinck  <teirllm@auburn.edu>
861         * cus-start.el (all): Comment change.
863 2005-02-14  Lute Kamstra  <lute@gnu.org>
865         * cus-start.el (all): Check if symbol is void.
867 2005-02-14  Carsten Dominik  <dominik@science.uva.nl>
869         * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
870         optional argument to \cite.
872 2005-02-14  Richard M. Stallman  <rms@gnu.org>
874         * cus-edit.el (custom-buffer-create-internal): Update help message.
875         (custom-magic-alist): Update help messages.
877         * cus-start.el (all): Allow a var to specify a standard value.
879 2005-02-12  Luc Teirlinck  <teirllm@auburn.edu>
881         * custom.el (custom-theme-set-variables): Handle variable aliases.
883         * frame.el (blink-cursor-timer): Doc fix.
884         (blink-cursor): Make it an alias for `blink-cursor-mode' and
885         declare obsolete.
886         (blink-cursor-mode): Define with defcustom and use correct
887         standard expression in that defcustom.
888         * startup.el (command-line): Adapt to above changes in frame.el.
890 2005-02-11  Lute Kamstra  <lute@gnu.org>
892         * apropos.el (apropos-score-doc): Prevent division by zero.
894 2005-02-11  Ulf Jasper  <ulf.jasper@web.de>
896         * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
897         (icalendar--get-event-property-attributes)
898         (icalendar--get-event-properties)
899         (icalendar--datetime-to-diary-date): New functions.
900         (icalendar--split-value): Doc fix.
901         (icalendar--datetime-to-noneuropean-date)
902         (icalendar--datetime-to-european-date): New optional argument
903         SEPARATOR.  Return result as a string instead of a list.
904         (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
905         (icalendar--convert-string-for-export): Rename arg S to STRING.
906         (icalendar-export-region): Doc fix.  Change name of error buffer.
907         Save output buffer.
908         (icalendar-import-file): Add blank at end of prompt.
909         (icalendar-import-buffer): Doc fix.  Do not switch to error
910         buffer.  Indicate status in return value.
911         (icalendar--convert-ical-to-diary): Doc fix.  Change name of error
912         buffer.  Save output buffer.  Handle exception from recurrence
913         rules (EXDATE, EXRULE).  Handle start- and end-date of recurring
914         events.  Fix problems with weekly all-day events.
916 2005-02-10  Richard M. Stallman  <rms@gnu.org>
918         * simple.el (eval-expression-print-format):
919         Avoid warning about edebug-active.
921         * help.el (help-for-help-internal): Rename from help-for-help.
922         (help-for-help): Define with defalias.
924         * font-core.el (font-lock-default-function): Use with-no-warnings.
926         * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
928         * custom.el (defface): Doc fix.
930 2005-02-10  Nick Roberts  <nickrob@snap.net.nz>
932         * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
933         width 0" to prevent word wrapping problems.
935 2005-02-09  Kim F. Storm  <storm@cua.dk>
937         * ido.el (ido-file-extensions-order): New defcustom.
938         (ido-file-extension-lessp, ido-file-extension-aux)
939         (ido-file-extension-order): New advanced file ordering.
940         (ido-file-lessp): New simple file ordering.
941         (ido-sort-list): Remove.
942         (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
943         (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
945 2005-02-08  Dan Nicolaescu  <dann@ics.uci.edu>
947         * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
948         that some versions of grep produce.
949         (grep-mode-font-lock-keywords): Likewise.
951 2005-02-09  Nick Roberts  <nickrob@snap.net.nz>
953         * progmodes/gdb-ui.el (gdb-location-list): New variable.
954         (gdb-cdir): Delete.
955         (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
956         (gdb-source-info): Treat case when source file is in another
957         directory properly.
958         (gdb-get-location): New function.
960 2005-02-07  Jay Belanger  <belanger@truman.edu>
962         * calc/calc-prog.el (calc-write-parse-table-part)
963         (calc-fix-token-name): Fix a check for language type.
965         * calc/calccomp.el (math-compose-expr): Fix a check for language type.
967 2005-02-07  Andre Spiegel  <spiegel@gnu.org>
969         * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
970         as directory not writable.
972 2005-02-07  Kim F. Storm  <storm@cua.dk>
974         * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
975         (cua--standard-movement-commands): Remove list.
976         Instead, set CUA property value to move for movement commands.
977         (cua-movement-commands): Remove.  Users must set CUA prop instead.
978         (cua--pre-command-handler): Check CUA property.
979         (cua--init-keymaps): Don't remap undo commands.
980         (cua-mode): Don't call cua--rectangle-on-off.
982         * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
983         (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
984         (cua--rect-undo-set-point): New var.
985         (cua--rectangle-undo-boundary): Setup undo apply entry.
986         (cua--rect-undo-handler): New function for rectangle undo.
987         (cua--rect-start-position, cua--rect-end-position): Add.
988         (cua--rectangle-post-command): Call cua--rectangle-set-corners
989         for restored rectangle.  Set point if cua--rect-undo-set-point.
991 2005-02-06  Jay Belanger  <belanger@truman.edu>
993         * calc/calc-lang.el (calc-tex-language): Display more information
994         in messages.
996         * calc/calccomp.el (math-compose-expr): Allow multiline matrices
997         in TeX mode.
999 2005-02-06  Richard M. Stallman  <rms@gnu.org>
1001         * emacs-lisp/lisp.el (buffer-end): Doc fix.
1003 2005-02-05  Arne_J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
1005         * net/ldap.el (ldap-search-internal): Support attributes with
1006         optional descriptions separated by a semi-colon, as in
1007         "userCertificate;binary".
1009 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1011         * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
1012         isn't a cons (i.e. the version is 0).
1014 2005-02-05  Eli Zaretskii  <eliz@gnu.org>
1016         * help.el (help-for-help): Doc fix.
1018 2005-02-05  Nick Roberts  <nickrob@snap.net.nz>
1020         * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
1021         GDB-Windows on the menu-bar as this works better.
1023 2005-02-04  Jay Belanger  <belanger@truman.edu>
1025         * calc/calc-embed.el (calc-embedded-update): Don't put in
1026         unnecessary newlines. Adjust the end of formula marker.
1028         * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
1029         (math-latex-parse-two-args): New function.
1031 2005-02-03  Lute Kamstra  <lute@gnu.org>
1033         * help-fns.el (help-with-tutorial): Make sure that users cannot
1034         remove the entire text of the tutorial by means of `undo'.
1036 2005-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1038         * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
1039         in recent changes, where the ispell process was repeatedly
1040         killed & restarted.
1042         * international/mule-cmds.el (set-locale-environment): Set file-name
1043         coding system to utf-8 on Darwin systems.
1044         (set-default-coding-systems): Don't set default-file-name-coding-system
1045         on Darwin systems.
1047 2005-02-03  Richard M. Stallman  <rms@gnu.org>
1049         * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
1051 2005-02-03  Matt Hodges  <MPHodges@member.fsf.org>
1053         * faces.el (list-faces-display): Add optional argument.
1055 2005-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1057         * font-core.el (font-lock-default-function): Handle the rare case where
1058         only font-lock-keywords is set.
1060 2005-02-02  Kenichi Handa  <handa@m17n.org>
1062         * international/characters.el: Cancel previous change for
1063         I-WITH-DOT-ABOVE and DOTLESS-i.
1065         * international/latin-5.el: Cancel previous change.
1067 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
1069         * progmodes/gud.el: Correction to syntax in gud-menu-map.
1071 2005-02-02  Kenichi Handa  <handa@m17n.org>
1073         * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
1074         DOTLESS-i.
1076         * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
1077         Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
1079         * case-table.el (get-upcase-table): New function.
1080         (copy-case-table): Copy upcaes table too if non-nil.
1081         (set-case-syntax-delims): Maintain upcase table too.
1082         (set-case-syntax-pair): Likewise.
1083         (set-upcase-syntax, set-downcase-syntax): New functions.
1084         (set-case-syntax): Maintain upcase table too.
1086 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
1088         * progmodes/gdb-ui.el: (gdb-goto-info): Delete.
1090         * progmodes/gud.el (gud-goto-info): New function.
1091         (gud-tool-bar-map): Use correct icon.
1093 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
1095         * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
1096         When delegating, order args in the funcall correctly.
1098 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
1100         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
1102 2005-02-01  Carsten Dominik  <dominik@science.uva.nl>
1104         * textmodes/reftex.el (reftex-access-scan-info): Error out in a
1105         buffer not visiting a file.
1107 2005-01-31  Jay Belanger  <belanger@truman.edu>
1109         * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
1110         bound on the line with the formula.
1112 2005-01-31  Kim F. Storm  <storm@cua.dk>
1114         * ses.el (ses-create-cell-variable-range)
1115         (ses-destroy-cell-variable-range, ses-reset-header-string)
1116         (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
1117         (ses-insert-row): Fix format of apply undo entries.
1119 2005-01-31  Jay Belanger  <belanger@truman.edu>
1121         * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
1122         parts.
1124         * calc/calc-embed.el (calc-embedded-open-formula)
1125         (calc-embedded-close-formula): Ignore matrix environments.
1127         * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
1128         TeX mode.
1130         * calc/calc-lang.el (math-function-table, math-oper-table)
1131         (math-variable-table): Adjust the LaTeX portions.
1133         * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
1134         (math-latex-ignore-words): New constant.
1136 2005-01-31  Richard M. Stallman  <rms@gnu.org>
1138         * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
1139         (ispell-local-dictionary): Doc fix.
1140         (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
1141         Don't reinitialize at run time.  Don't defcustom.
1142         All uses changed to append ispell-local-dictionary-alist,
1143         or check it first.
1144         (ispell-current-dictionary): New variable for dictionary in use.
1145         (ispell-dictionary): Now used only for global default.
1146         (ispell-start-process): Set ispell-current-dictionary,
1147         not ispell-dictionary.
1148         (ispell-change-dictionary): Use this only for setting
1149         user preferences.
1150         (ispell-internal-change-dictionary): New function
1151         to change the current dictionary in use.
1152         (ispell-region, ispell-process-line, ispell-buffer-local-dict):
1153         Use ispell-current-dictionary.
1154         Handle ispell-local-dictionary-overridden.
1155         (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
1157 2005-01-31  Jay Belanger  <belanger@truman.edu>
1159         * calc/calc-aent.el (math-read-token): Add support for LaTeX.
1161         * calc/calc-ext.el: Add calc-latex-language to autoloads.
1162         (calc-mode-map): Add calc-latex-language.
1164         * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
1165         (math-latex-print-frac): New functions.
1166         (math-oper-table, math-function-table, math-variable-table)
1167         (math-complex-format, math-input-filter): Add latex properties.
1168         (calc-set-language): Set math-expr-special-function-mapping.
1170         * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
1171         (calc-write-parse-table-part):  Add LaTeX support.
1173         * calc/calc.el (calc-language): Adjust docstring.
1174         (calc-set-mode-line): Add LaTeX support.
1175         (math-expr-special-function-mapping): New variable.
1176         (math-tex-ignore-words): Add to list.
1178         * calc/calccomp.el (math-compose-expr, math-compose-rows):
1179         Add LaTeX support.
1180         (math-compose-expr): Add support for special functions.
1182         * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
1184 2005-01-31  Nick Roberts  <nickrob@snap.net.nz>
1186         * progmodes/gdb-ui.el (gdb-memory-address)
1187         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
1188         (gdb-memory-mode-map, gdb-memory-format-keymap)
1189         (gdb-memory-format-menu, gdb-memory-unit-keymap)
1190         (gdb-memory-unit-menu): New variables for a buffer
1191         that lets the user examine program memory.
1192         (gdb-memory-set-address, gdb-memory-set-repeat-count)
1193         (gdb-memory-format-binary, gdb-memory-format-octal)
1194         (gdb-memory-format-unsigned, gdb-memory-format-signed)
1195         (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
1196         (gdb-memory-format-menu-1, gdb-memory-unit-giant)
1197         (gdb-memory-unit-word, gdb-memory-unit-halfword)
1198         (gdb-memory-unit-byte, gdb-memory-unit-menu)
1199         (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
1200         (gdb-memory-mode, gdb-memory-buffer-name)
1201         (gdb-display-memory-buffer, gdb-frame-memory-buffer):
1202         New functions for above buffer.
1204 2005-01-30  Richard M. Stallman  <rms@gnu.org>
1206         * cus-edit.el (custom-bury-buffer): Function deleted.
1207         (custom-buffer-done-function): Option deleted.
1208         (custom-buffer-done-kill): New (replacement option.
1209         (Custom-buffer-done): Call quit-window.
1210         (custom-buffer-create-internal): Update for above changes.
1212 2005-01-29  Luc Teirlinck  <teirllm@auburn.edu>
1214         * simple.el (undo-ask-before-discard): New var.
1215         (undo-outer-limit-truncate): Implement it.
1216         (undo-extra-outer-limit): Doc update.
1218 2005-01-29  Richard M. Stallman  <rms@gnu.org>
1220         * ses.el (undo-more): Delete defadvice.
1221         (ses-begin-change): Doc fix.
1223         * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
1224         instead of rebinding C-x u and C-_.
1226         * files.el (normal-backup-enable-predicate): Return nil for files
1227         in /tmp, regardless of temporary-file-directory.
1229         * man.el (Man-getpage-in-background): Disable undo in Man buffer.
1231         * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
1232         (open-rectangle, delete-whitespace-rectangle-line)
1233         (clear-rectangle-line): If FILL, pass t instead of FILL
1234         for move-to-column's 2nd arg.
1236         * simple.el (undo): Fix the test for continuing a series of undos.
1237         (undo-more): Set pending-undo-list to t when we reach end.
1238         (pending-undo-list): Move up defvar.
1240         * wid-edit.el (widget-button-click):
1241         Shorten the range of the track-mouse binding.
1243         * comint.el (comint-insert-input): Undo previous changes;
1244         use last-input-event in interactive spec.
1246 2005-01-29  Eli Zaretskii  <eliz@gnu.org>
1248         * progmodes/compile.el (compilation-start): Bind buffer-read-only
1249         to nil before invoking call-process.  Reset buffer's modified flag
1250         after fontifying it in the no-async branch.
1252         * wid-edit.el (widget-specify-button): If mouse pointer shape
1253         cannot be changed, use mouse face instead.
1255 2005-01-29  Nick Roberts  <nickrob@snap.net.nz>
1257         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
1258         (gdb-goto-breakpoint): Make breakpoint handling work on template
1259         functions in C++.  Reported by Martin Reed <mjreed@essex.ac.uk>
1260         (gdb-assembler-custom): Update to recognise breakpoint information
1261         added on 2005-01-19.
1263 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1265         * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
1266         (dsssl-mode): Use define-derived-mode.
1267         (scheme-mode-initialize): Remove.
1268         (scheme-mode): Use run-mode-hooks.
1270         * cus-edit.el (customize-group-other-window)
1271         (custom-buffer-create-other-window): Don't override special-display-*.
1272         (custom-mode-map): Make it dense.
1274         * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
1275         sets the default value.
1277 2005-01-28  Eli Zaretskii  <eliz@gnu.org>
1279         * descr-text.el: Add more keywords.
1281 2005-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1283         * speedbar.el: Avoid unnecessary use of locate-library.
1285         * international/mule-cmds.el (standard-display-european-internal):
1286         Don't fiddle with latin-1 non-break space any more since it's now
1287         special cased in the C code.
1288         Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
1290 2005-01-26  Luc Teirlinck  <teirllm@auburn.edu>
1292         * cus-start.el (all): Add `undo-outer-limit'.
1294 2005-01-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1296         * textmodes/bibtex.el (bibtex-format-entry):
1297         Use `bibtex-empty-field-re' only on the text of fields, not on entire
1298         field lines.
1299         (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
1300         not on part of a buffer.
1302 2005-01-25  Lute Kamstra  <lute@gnu.org>
1304         * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
1305         nonempty field text strings like "{letters\\macro{}more letters}".
1306         Clarify docstring.
1307         (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
1308         (bibtex-entry-offset, bibtex-parse-association)
1309         (bibtex-parse-field-name): Fix typos in docstrings.
1310         (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
1312 2005-01-24  Carsten Dominik <dominik@science.uva.nl>
1314         * textmodes/reftex-global.el (reftex-isearch-push-state-function)
1315         (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
1316         (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
1317         (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
1319         * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
1320         isearch minor mode.
1322 2005-01-24  Luc Teirlinck  <teirllm@auburn.edu>
1324         * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
1326 2005-01-24  Lute Kamstra  <lute@gnu.org>
1328         * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
1329         CASECHARS and NOT-CASECHARS regular expressions of the
1330         "nederlands" and "nederlands8" dictionaries to prevent a "Range
1331         striding over charsets" error.
1333 2005-01-24  Jay Belanger  <belanger@truman.edu>
1335         * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
1336         display variable name.
1338 2005-01-24  Kenichi Handa  <handa@m17n.org>
1340         * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
1341         Fix setting of the element of encoded-kbd-iso2022-invocations.
1343 2005-01-24  Nick Roberts  <nickrob@snap.net.nz>
1345         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
1346         (gdb-threads-select): Change to also accept mouse events.
1347         (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
1348         (gdb-threads-mouse-select): Delete.
1350 2005-01-23  Luc Teirlinck  <teirllm@auburn.edu>
1352         * files.el (insert-directory): Take care of empty directory,
1353         listed without -a switch.
1355 2005-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1357         * textmodes/refill.el (refill-post-command-function):
1358         Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
1359         to the list of functions that we should be careful not to undo.
1360         (refill-late-fill-paragraph-function): Remove.
1361         (refill-saved-state): New var.
1362         (refill-mode): Use it to save fill-paragraph-function.
1363         Save also the value of auto-fill-function.
1365         * term/w32-win.el: Simplify code.
1367 2005-01-23  Kim F. Storm  <storm@cua.dk>
1369         * simple.el (line-move): Adapt to new return value from
1370         pos-visible-in-window-p.
1372         * simple.el (line-move): Fix last change.  Check partial
1373         visibility at point rather than at window-start.
1375 2005-01-22  Jason Rumney  <jasonr@gnu.org>
1377         * term/w32-win.el (xw-defined-colors): Remove debug-message.
1379 2005-01-22  David Kastrup  <dak@gnu.org>
1381         * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
1383 2005-01-22  Eli Zaretskii  <eliz@gnu.org>
1385         * type-break.el (type-break-mode): Add a test for
1386         type-break-file-name being non-nil.
1388 2005-01-22  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
1390         * net/eudc.el (top level): Call (message "") via progn, so that
1391         eudc-options-file is loaded.
1393 2005-01-22  Kim F. Storm  <storm@cua.dk>
1395         * simple.el (line-move-1): Rename from line-move.
1396         (line-move): New function that adjusts vscroll for partially
1397         visible rows, and calls line-move-1 otherwise.
1399 2005-01-21  Ren\e,Ai\e(B Kyllingstad  <listmailxemacs@kyllingstad.com>
1401         * pcomplete.el: define pcomplete-read-event instead of read-event,
1402         since it's not a complete read-event implementation
1404 2005-01-20  Jay Belanger  <belanger@truman.edu>
1406         * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
1407         for called function.
1409 2005-01-20  Steven Tamm  <steventamm@mac.com>
1411         * term/mac-win.el (process-connection-type): Remove.
1412         Controlled now by s/darwin.h:PTY_ITERATION.
1414 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1416         * window.el (handle-select-window): Don't switch window when we're
1417         in the minibuffer.
1419 2005-01-10  Paul Pogonyshev  <pogonyshev@gmx.net>
1421         * subr.el (dotimes-with-progress-reporter): New macro.
1423         * ses.el (ses-dotimes-msg): Remove macro.
1424         Use `dotimes-with-progress-reporter' instead.
1426 2005-01-19  Steven Tamm  <steventamm@mac.com>
1428         * term/mac-win.el (process-connection-type): Use new
1429         operating-system-release variable to use ptys on Darwin 7 (OSX
1430         10.3) when using carbon build.
1432 2005-01-19  Jay Belanger  <belanger@truman.edu>
1434         * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
1435         flags if the last command was a tab or M-tab.
1437         * calc/calc-prog.el (calc-user-define-edit): Put original formula
1438         in formula editing buffer.
1440 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
1442         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
1443         breakpoint image symbol in margin.
1445 2005-01-19  Jay Belanger  <belanger@truman.edu>
1447         * calc/calc-prog.el (calc-execute-kbd-macro):
1448         Ignore calc-keep-arg-flag.
1450 2005-01-19  Kenichi Handa  <handa@m17n.org>
1452         * textmodes/ispell.el (ispell-looking-at): New function.
1453         (ispell-process-line): Use ispell-looking-at to compare the ispell
1454         output and the buffer contents.
1456 2005-01-18  Jay Belanger  <belanger@truman.edu>
1458         * calc/calc.el (calc-display-raw): Fix docstring.
1460 2005-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1462         * simple.el (blink-matching-open): Strip extra info from syntax.
1464         * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
1465         funny chars in the end-of-here-doc marker.
1467 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
1469         * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
1470         that enable/disabled state of breakpoints is shown correctly in
1471         fringe and on ttys.
1472         (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
1473         Add breakpoint information as text properties.
1474         (gdb-mouse-toggle-breakpoint):
1475         Rename to gdb-mouse-set-clear-breakpoint.
1476         (gdb-mouse-toggle-breakpoint): New function.  Enable/disable
1477         breakpoints in the margin.
1478         (gdb-remove-strings): Simplify.
1480 2005-01-17  Jay Belanger  <belanger@truman.edu>
1482         * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
1483         erasing buffer.
1485 2005-01-17  Richard M. Stallman  <rms@gnu.org>
1487         * progmodes/grep.el (grep-find): Copy from `grep' the condition
1488         for calling grep-compute-defaults.
1490         * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
1491         if buffer is empty.
1493         * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
1495 2005-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1497         * hilit-chg.el (highlight-changes-mode): Don't autoload.
1499         * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
1500         non-preloaded variables.
1502 2005-01-17  Steven Tamm  <steventamm@mac.com>
1504         * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
1505         tex-shell cause to force interactivity when using pipes.
1507 2005-01-17  Kim F. Storm  <storm@cua.dk>
1509         * simple.el (just-one-space): Make arg optional.
1511 2005-01-17  Nick Roberts  <nickrob@snap.net.nz>
1513         * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
1514         posn-at-x-y to t to access left-margin.
1516 2005-01-16  Michael Albinus  <michael.albinus@gmx.de>
1518         Sync with Tramp 2.0.47.
1520         * tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
1521         catching keep-date problems in cp/scp operations.
1522         (tramp-handle-copy-file): Don't call `set-file-modes'
1523         unconditionally.  Specialized functions should know better what is
1524         necessary.  This improves performance a little bit, and the
1525         functions could catch errors with `cp -p' and `scp -p'.
1526         (tramp-do-copy-or-rename-file-via-buffer)
1527         (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
1528         when appropriate.
1529         (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
1530         Call `set-file-modes' when appropriate.
1531         (tramp-action-out-of-band): Mask `scp -p' error.  Reported by Isak
1532         Johnsson <isak@hypergene.com>
1533         (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
1534         of both Tramp buffer and debug buffer.  Reported by Joakim Verona
1535         <joakim@verona.se>
1536         (tramp-file-name-for-operation): Mark `shell-command' as magic for
1537         Emacs only.
1539         * tramp-util.el (tramp-minor-mode): New minor mode.  Add it to
1540         `find-file-hooks' and `dired-mode-hook'.
1541         (tramp-minor-mode-map): Respective map.  Add remapping for
1542         `compile' and `recompile'.
1543         (tramp-remap-command, tramp-recompile): New defuns.
1544         (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
1545         in buffer "*Compilation*".  Call the commands asynchronously.
1547         * tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
1548         (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
1549         `shell-command', because it isn't magic in XEmacs.  Reported by
1550         Adrian Aichner <adrian@xemacs.org>.
1552         * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
1553         `substitute-in-file-name.
1554         (tramp-smb-handle-substitute-in-file-name): New defun.
1555         (tramp-smb-advice-PC-do-completion): Delete advice.
1557 2005-01-16  Kai Grossjohann  <kgrossjo@eu.uu.net>
1559         * tramp.el (tramp-wait-for-output): Fix typo in echo processing.
1560         Fix error in deleting region.
1562 2005-01-15  Richard M. Stallman  <rms@gnu.org>
1564         * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
1565         In non-temp buffer, switch syntax table temporarily.
1567         * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
1569         * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
1571         * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
1573         * imenu.el (imenu--split-menu): Copy menulist before sorting.
1574         (imenu--generic-function): Use START, not BEG, as pos of definition.
1576         * simple.el (just-one-space): Argument specifies number of spaces.
1578         * simple.el (eval-expression-print-format): Avoid warning
1579         about edebug-active.
1581 2005-01-15  "James R. Van Zandt"  <jrvz@comcast.net>  (Tiny change)
1583         * progmodes/sh-script.el: Code copied from make-mode.el
1584         with small changes,
1585         (sh-mode-map): Bind C-c C-\.
1586         (sh-backslash-column, sh-backslash-align): New variables.
1587         (sh-backslash-region, sh-append-backslash): New functions.
1589 2005-01-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
1591         * mail/rmail.el: Updated to work with movemail from GNU Mailutils
1592         (rmail-pop-password, rmail-pop-password-required): Move to
1593         rmail-obsolete group.
1594         (rmail-set-pop-password): Rename to rmail-set-remote-password.
1595         All callers updated.
1596         (rmail-get-pop-password): Rename to rmail-get-remote-password.
1597         Take an argument specifying whether it is POP or IMAP mailbox we
1598         are using.  All callers updated.
1599         (rmail-pop-password-error): Rename to
1600         rmail-remote-password-error.  Added mailutils-specific error message.
1601         (rmail-movemail-search-path)
1602         (rmail-movemail-variant-in-use): New variables.
1603         (rmail-remote-password, rmail-remote-password-required):
1604         New customization variables.
1605         (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
1606         (rmail-parse-url): New function.
1607         (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
1608         with GNU mailutils movemail.
1610 2005-01-15  Kevin Ryde  <user42@zip.com.au>
1612         * info-look.el (c-mode/symbol): Add ^` to prefix, and change
1613         suffix to space, $ or '$, to correctly position point when going
1614         to @table style constants like DBL_MAX.
1616 2005-01-15  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
1618         * type-break.el (type-break-mode, type-break-file-time)
1619         (type-break-file-keystroke-count, type-break-choose-file):
1620         Don't store data in or load data from the file if type-break-file-name
1621         is nil.
1622         (type-break-file-name): Doc update as per the above.
1624 2005-01-15  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
1626         * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
1627         lookup-key might return nil; handle that.
1629 2005-01-15  Alan Mackenzie  <acm@muc.de>
1631         * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
1632         rather than the element found, thus enabling the tree to be setcar'd.
1634 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
1636         * textmodes/org.el (org-show-following-heading): New option.
1637         (org-show-hierarchy-above): Use `org-show-following-heading'.
1638         (org-cycle): Documentation fix.
1640         * textmodes/org.el (orgtbl-optimized): New option
1641         (orgtbl-mode): New command, a minor mode.
1642         (orgtbl-mode-map): New variable.
1643         (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
1644         (orgtbl-error, orgtbl-self-insert-command)
1645         (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
1647         * textmodes/org.el (org-mode): `org-table-may-need-update' is now
1648         a local variable in each org-mode buffer.
1650         * textmodes/org.el (org-set-regexps-and-options): Rename from
1651         `org-set-regexps'.  Added checking for STARTUP keyword.
1652         (org-get-current-options): Add STARTUP options.
1653         (org-table-insert-row): Mode mode intelligent about when
1654         realignment is needed.
1655         (org-self-insert-command, org-delete-backward-char, org-delete-char):
1656         New commands.
1657         (org-enable-table-editor): New default value `optimized'.
1658         (org-table-blank-field): Support blanking regions if active.
1660 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
1662         * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
1663         if the year is not given.
1665         * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
1666         Add new escapes %m and %M, fixed bug with %F by adding
1667         save-match-data.
1668         (reftex-reference): Remove ?. from list of spaces.
1669         (reftex-label-info): Add automatic label prefix recognition.
1671         * textmodes/reftex-index.el (reftex-index-next-phrase):
1672         Add slave parameter to call of `reftex-index-this-phrase'.
1673         (reftex-index-this-phrase): New optional argument.
1674         (reftex-index-region-phrases): Add slave parameter to call of
1675         `reftex-index-this-phrase'.
1676         (reftex-display-index): New argument redo.
1677         (reftex-index-rescan): Add 'redo to arguments of
1678         `reftex-display-index'.
1679         (reftex-index-Rescan, reftex-index-revert)
1680         (reftex-index-switch-index-tag): Add 'redo to arguments of
1681         `reftex-display-index'.
1682         (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
1683         indexing.  Fix bug with matching is there is a quote before or
1684         after the word.
1686         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
1687         Fix bug when collecting citation keys in lines with comments.
1688         (reftex-citation): Prefix argument no longer rescans the document,
1689         but forces prompting for optional arguments of cite macros.
1690         (reftex-do-citation): Prompting for optional arguments implemented.
1692         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
1693         Add optional arguments to most cite commands.
1694         (reftex-cite-cleanup-optional-args): New option
1695         (reftex-cite-prompt-optional-args): New option.
1696         (reftex-trust-label-prefix): New option.
1698         * textmodes/reftex-toc.el (reftex-toc-find-section):
1699         Add push-mark before changing the position in the buffer.
1701         * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
1702         (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
1704 2005-01-14  Nick Roberts  <nickrob@snap.net.nz>
1706         * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
1707         more carefully.
1709 2005-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1711         * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
1712         (sgml-mode): Use it.
1713         (sgml-get-context): Better keep track of implicitly closed tags.
1715 2005-01-13  Kenichi Handa  <handa@m17n.org>
1717         * textmodes/ispell.el: These changes are to fix misalignment error
1718         caused by equivalent characters of different Emacs charsets.
1719         (ispell-unified-chars-table): New variable.
1720         (ispell-get-decoded-string): New function.
1721         (ispell-get-casechars, ispell-get-not-casechars)
1722         (ispell-get-otherchars): Call ispell-get-decoded-string.
1724 2005-01-12  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
1726         * custom.el (custom-declare-variable): Just put symbol instead
1727         of (defvar . symbol) in `current-load-list'.
1729 2005-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
1731         * emacs-lisp/elint.el: Fixed typo in Commentary section.
1733 2005-01-12  Jay Belanger  <belanger@truman.edu>
1735         * calc/calc-help.el (calc-describe-key): Use temporary info buffer
1736         to create a Calc summary.
1738 2005-01-12  Kim F. Storm  <storm@cua.dk>
1740         * mouse.el (mouse-on-link-p): Change functionality and doc
1741         string to comply with latest description in lisp ref.
1743 2005-01-12  Nick Roberts  <nickrob@snap.net.nz>
1745         * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
1746         Enable mouse clicks on mode-line, header-line and margin.
1747         (event-type): Give mouse event symbols an 'event-kind property
1748         with value 'mouse-click.
1750 2005-01-12  Juri Linkov  <juri@jurta.org>
1752         * facemenu.el (list-colors-display): Add new arg buffer-name.
1753         Use it.  Fix docstring.  Replace code for identifying duplicate
1754         colors by the name with call to `list-colors-duplicates' which
1755         identifies duplicate colors by the value unless the color
1756         is one of special Windows colors.  Set truncate-lines to t.
1757         Print sorted duplicate color names on each line.  Indent to 22
1758         \(the longest color name in rgb.txt) instead of 20.  Optimize.
1759         (list-colors-duplicates): New function.
1760         (facemenu-color-name-equal): Delete function.
1762         * facemenu.el (list-colors-print): New function created from code
1763         in list-colors-display.  Print #RRGGBB at the window right edge.
1764         (list-colors-display): When temp-buffer-show-function is not
1765         defined, call list-colors-print from temp-buffer-show-hook
1766         to get the right value of window-width in list-colors-print
1767         after the buffer is displayed.
1769         * simple.el (pop-mark): Move deactivate-mark out of conditional
1770         part to deactivate the active mark regardless of the state of the
1771         mark ring.
1773         * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
1774         variables line in desktop files.
1776 2005-01-12  Juri Linkov  <juri@jurta.org>
1778         * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
1779         Bring together isearch highlight related options.
1780         (lazy-highlight): Replace group `replace' by `matching'.
1781         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
1782         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
1783         (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
1784         and declare them obsolete.
1785         (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
1786         (isearch-faces): Remove defgroup.
1787         (isearch-overlay, isearch-highlight, isearch-dehighlight):
1788         Move isearch highlighting code closer to lazy highlighting code.
1790         * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
1791         (query-replace-highlight, query-replace-lazy-highlight)
1792         (query-replace): Move definitions to the beginning of the file.
1794 2005-01-11  Juri Linkov  <juri@jurta.org>
1796         * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm,
1797         * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm,
1798         * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
1800         * info.el (Info-history-forward): New variable.
1801         (Info-select-node): Reset Info-history-forward to nil.
1802         (Info-last): Turn into defalias.
1803         (Info-history-back): Rename from Info-last.
1804         Add current node to Info-history-forward.
1805         (Info-history-forward): New fun.
1806         (Info-mode-map): Replace Info-last by Info-history-back.
1807         Bind Info-history-forward to "r".
1808         (Info-mode-menu): Replace Info-last by Info-history-back.
1809         Fix menu item text.  Add menu item for Info-history-forward.
1810         (info-tool-bar-map): Replace Info-last by Info-history-back.
1811         Replace its icon "undo" by "back_arrow".  Add icon "fwd_arrow"
1812         for Info-history-forward.
1813         (Info-mode): Replace Info-last by Info-history-back in docstring.
1814         Add local variable Info-history-forward.
1815         (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
1817 2005-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1819         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
1820         (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
1821         Ignore select-window events rather than fiddle with
1822         mouse-autoselect-window.
1824 2005-01-11  Matthew Mundell  <matt@mundell.ukfsn.org>
1826         * type-break.el (type-break-mode): Fix previous change.
1828 2005-01-10  Jay Belanger  <belanger@truman.edu>
1830         * calc/calc-ext.el (calc-reset): Reset when inside embedded
1831         calculator; only reset when point is inside a calculator.
1832         Don't adjust the window height if the window takes up the whole height
1833         of the frame.
1835 2005-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
1837         * ebuff-menu.el (Electric-buffer-menu-mode):
1838         Preserve value of buffer-local var header-line-format.
1840 2005-01-09  Jay Belanger  <belanger@truman.edu>
1842         * calc/calc.el (calc-mode-var-list-restore-saved-values):
1843         Make sure settings file exists before accessing it.
1845         * calc/calc-embed.el (calc-embedded-subst):
1846         Replace math-multi-subst-rec, which is only supposed to be called
1847         by math-multi-subst, by math-multi-subst.
1849 2005-01-09  Andre Spiegel  <spiegel@gnu.org>
1851         * vc.el (vc-allow-async-revert): New user option.
1852         (vc-disable-async-diff): New internal variable.
1853         (vc-revert-buffer): Use them to disable asynchronous diff.
1855         * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
1856         (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
1857         asynchronously if vc-disable-async-diff is t.
1859 2005-01-09  Jay Belanger  <belanger@truman.edu>
1861         * calc/calc.el (defcalcmodevar): New macro.
1862         (calc-mode-var-list-restore-default-values)
1863         (calc-mode-var-list-restore-saved-values): New functions.
1864         (calc-mode-var-list): Use defcalcmodevar to define it.
1865         (calc-always-load-extensions, calc-line-numbering)
1866         (calc-line-breaking, calc-display-just, calc-display-origin)
1867         (calc-number-radix, calc-leading-zeros, calc-group-digits)
1868         (calc-group-char, calc-point-char, calc-frac-format)
1869         (calc-prefer-frac, calc-hms-format, calc-date-format)
1870         (calc-float-format, calc-full-float-format, calc-complex-format)
1871         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
1872         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
1873         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
1874         (calc-matrix-brackets, calc-language, calc-language-option)
1875         (calc-left-label, calc-right-label, calc-word-size)
1876         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
1877         (calc-display-raw, calc-internal-prec, calc-angle-mode)
1878         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
1879         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
1880         (calc-window-height, calc-display-trail, calc-show-selections)
1881         (calc-use-selections, calc-assoc-selections)
1882         (calc-display-working-message, calc-auto-why, calc-timing)
1883         (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
1884         (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
1885         (calc-gnuplot-default-device, calc-gnuplot-default-output)
1886         (calc-gnuplot-print-device, calc-gnuplot-print-output)
1887         (calc-gnuplot-geometry, calc-graph-default-resolution)
1888         (calc-graph-default-resolution-3d, calc-invocation-macro)
1889         (calc-show-banner): Use defcalcmodevar to declare them and set
1890         their default values.
1892         * calc/calc-ext.el (calc-reset): Restore saved values of variables
1893         instead of default values (but restore default values if there is
1894         an argument of 0).
1896 2005-01-09  David Kastrup  <dak@gnu.org>
1898         * desktop.el (desktop-restore-eager): Fix typo in type.
1900 2005-01-08  Richard M. Stallman  <rms@gnu.org>
1902         * cus-edit.el (customize): Delete :link.
1904 2005-01-08  Jay Belanger  <belanger@truman.edu>
1906         * calc/calc.el (calc-mode): Remove the extension from the
1907         `calc-settings-file' file name when loading it.
1909 2005-01-08  Kim F. Storm  <storm@cua.dk>
1911         * info.el (Info-mode-map, Info-next-link-keymap)
1912         (Info-prev-link-keymap, Info-up-link-keymap):
1913         Map follow-link to mouse-face.
1914         (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
1916 2005-01-08  Jay Belanger  <belanger@truman.edu>
1918         * calc/calc.el (calc-settings-file): Change default value.
1919         Suggested by cgw in a comment in calc-mode.el.
1921         * calc/calc-mode.el (calc-settings-file-name):
1922         Compare calc-settings-file to user-init-file instead of ~/.emacs.
1923         Replace ~/.emacs in a prompt by calc-settings-file.
1925 2005-01-07  Lars Hansen  <larsh@math.ku.dk>
1927         * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
1928         (desktop-lazy-idle-delay): New customizable variables.
1929         (desktop-buffer-args-list): New variable.
1930         (desktop-append-buffer-args): New function.
1931         (desktop-save): Call desktop-append-buffer-args for some buffers.
1932         (desktop-lazy-create-buffer): New function.
1933         (desktop-idle-create-buffers): New function.
1934         (desktop-read): Add message about buffers to restore lazily.
1935         (desktop-lazy-abort): New command.
1936         (desktop-clear): Call desktop-lazy-abort.
1937         (desktop-lazy-complete): New command.
1939 2005-01-06  Richard M. Stallman  <rms@gnu.org>
1941         * emacs-lisp/find-func.el (find-face-definition):
1942         Rename from find-face.
1944 2005-01-06  Kim F. Storm  <storm@cua.dk>
1946         * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
1948         * man.el (Man-xref-man-page, Man-xref-header-file)
1949         (Man-xref-normal-file): Add follow-link property.
1951 2005-01-06  Jay Belanger  <belanger@truman.edu>
1953         * calc/calc-units.el: Make sure the proper macro definitions are
1954         available when compiling.
1956 2005-01-06  Juri Linkov  <juri@jurta.org>
1958         * isearch.el (isearch-lazy-highlight-update):
1959         Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
1961 2005-01-06  Miles Bader  <miles@gnu.org>
1963         * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
1964         (isearch-lazy-highlight-face): Use new name.
1966 2005-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1968         * uniquify.el (uniquify-rationalize-file-buffer-names):
1969         Re-add an interactive spec.
1970         (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
1971         to the same name.
1973         * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
1974         (isearch-update, isearch-done): Adjust calls accordingly.
1976 2005-01-05  Richard M. Stallman  <rms@gnu.org>
1978         * custom.el (custom-set-variables, custom-theme-set-variables):
1979         Clarify documentation.
1981         * emacs-lisp/find-func.el (find-variable)
1982         (find-variable-other-window, find-variable-other-frame):
1983         Fix the TYPE args to find-function-read and find-function-do-it.
1984         (find-function): Doc fix.
1985         (find-function-at-point): Replace function-at-point alias.
1987 2005-01-04  Richard M. Stallman  <rms@gnu.org>
1989         * cus-face.el (custom-declare-face):
1990         Record defface in current-load-list.
1992         * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
1994         * emacs-lisp/find-func.el: Doc fixes.
1995         (find-face-regexp): New variable.
1996         (find-function-regexp-alist): New variable.
1997         (find-function-C-source): Third arg is now TYPE.
1998         (find-function-search-for-symbol): Handle general TYPE.
1999         (find-function-read, find-function-do-it): Handle general TYPE.
2000         (find-definition-noselect, find-face): New functions.
2001         (function-at-point): Alias deleted.
2003 2005-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2005         * battery.el (display-battery-mode): Rename from display-battery.
2006         Handle the case where it gets turned off.
2008 2005-01-04  Richard M. Stallman  <rms@gnu.org>
2010         * cus-edit.el (customize): Make :link point to user doc.
2012         * man.el (Man-fontify-manpage): Turn off undo generation.
2014         * add-log.el (change-log-font-lock-keywords): Don't match just "From".
2016 2005-01-04  Andreas Schwab  <schwab@suse.de>
2018         * files.el (insert-directory): Only look for error lines in
2019         inserted text.  Don't move too far after processing --dired markers.
2021 2005-01-04  Richard M. Stallman  <rms@gnu.org>
2023         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
2024         Don't expand if the character is @, period, dash, etc.
2025         (define-mail-abbrev): Quote names that contain problem characters.
2027 2005-01-04  Thien-Thi Nguyen  <ttn@gnu.org>
2029         * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
2031 2005-01-03  Richard M. Stallman  <rms@gnu.org>
2033         * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
2034         (query-replace-highlight, query-replace-lazy-highlight)
2035         (query-replace): Definitions moved up.  Doc fix.
2037 2005-01-03  Richard M. Stallman  <rms@gnu.org>
2039         * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
2040         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
2041         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
2042         (lazy-highlight-face): Rename from isearch-lazy-...
2043         Change all references to them.
2045 2005-01-03  Luc Teirlinck  <teirllm@auburn.edu>
2047         * cus-edit.el (custom-file): Doc fix for defcustom.
2048         (custom-file): The function no longer sets the variable
2049         `custom-file' to its return value.
2051         * startup.el (command-line): No longer load `custom-file'.
2053 2005-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2055         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
2057         * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
2058         Don't confuse module-prefixed identifiers for labels.
2059         Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
2061 2005-01-02  Richard M. Stallman  <rms@gnu.org>
2063         * files.el (basic-save-buffer-1): Fix previous change.
2065         * loadhist.el (file-loadhist-lookup): New function.
2066         (file-provides, file-requires): Use it.
2068         * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
2069         instead of calculating the right size.
2071 2005-01-02  Karl Chen  <quarl@cs.berkeley.edu>  (tiny change)
2073         * vc-svn.el (vc-svn-diff): Stay local if possible.
2075 2005-01-02  Stefan  <monnier@iro.umontreal.ca>
2077         * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
2079         * files.el (hack-local-variables): Fix last change.
2081 2005-01-02  Jay Belanger  <belanger@truman.edu>
2083         * calc/calc-yank.el (calc-edit-top): New variable.
2084         (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
2085         object.  Change header properties.
2086         (calc-edit-finish, calc-edit-finish-stack-object)
2087         (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
2088         edited object.
2089         * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
2090         for the beginning of the edited object.
2091         * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
2092         for the beginning of the edited object.
2093         * calc/calc-prog.el (calc-edit-macro-finish-edit)
2094         (calc-finish-formula-edit, calc-macro-repeats)
2095         (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
2096         (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
2097         beginning of the edited object.
2098         (calc-user-define-edit): Change the header for editing macros.
2099         Remove unnecessary variable.
2101 2005-01-01  Jay Belanger  <belanger@truman.edu>
2103         * calc/calc-yank.el (calc-edit-mode): Change default header.
2104         (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
2105         * calc/calc-store.el (calc-edit-variable): Change title to match new
2106         header.
2107         * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
2108         mode to match new header.
2109         (calc-user-define-edit): Change titles to include names of commands.
2110         (calc-finish-formula-edit): Adjust to handle new header.
2111         (calc-finish-macro-edit): Remove.
2112         (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
2113         (calc-edit-macro-command, calc-edit-macro-command-type)
2114         (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
2115         (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
2116         (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
2117         (calc-edit-macro-finish-edit): New functions.
2118         (calc-user-define-edit): Use new functions to edit named calc macros.
2120 2005-01-01  Stefan  <monnier@iro.umontreal.ca>
2122         * files.el (hack-local-variables): Cleanup prefix/suffix matching.
2124         * ses.el (copy-region-as-kill): Deactivate mark.
2126 2005-01-01  Richard M. Stallman  <rms@gnu.org>
2128         * replace.el (occur-1): If the output buffer is also an input,
2129         don't kill it, rename it.
2131         * faces.el (set-face-background, set-face-foreground): Doc fix.
2133         * cus-face.el (custom-face-attributes): Fix :help-echo strings
2134         for :foreground and :background.
2136         * dired.el (dired-view-command-alist): Variable deleted.
2137         (dired-view-file, dired-mouse-find-file-other-window):
2138         Delete the code to use it.
2140 2005-01-01  Kim F. Storm  <storm@cua.dk>
2142         * image.el (insert-sliced-image): Use t for line-height property.
2144 2004-12-31  Jay Belanger  <belanger@truman.edu>
2146         * calc/calc-store.el (calcVar-digit, calcVar-oper):  Remove the need
2147         for "var-" at the beginning of the minibuffer.
2149 2004-12-31  Richard M. Stallman  <rms@gnu.org>
2151         * faces.el (read-face-name):
2152         Don't treat an attribute spec as a list of faces.
2154         * simple.el (undo): Use undo-equiv-table to detect
2155         unexpected changes since previous undo.
2156         (undo-list-saved): Variable deleted.
2157         (buffer-disable-undo): Don't alter undo-list-saved.
2159         * files.el (require-final-newline): Allow `visit' and `visit-save'.
2160         (mode-require-final-newline): New option.
2161         (after-find-file): Handle require-final-newline with new values.
2162         (basic-save-buffer): Handle new values of require-final-newline.
2164         * progmodes/sh-script.el (sh-require-final-newline):
2165         Alist value now controls whether to use mode-require-final-newline.
2166         (sh-set-shell): Implement that new meaning.
2168         * progmodes/cc-vars.el (c-require-final-newline): Fix custom type, doc.
2169         * progmodes/cc-mode.el (c-common-init): Use mode-require-final-newline.
2170         * progmodes/antlr-mode.el (antlr-mode): Use mode-require-final-newline.
2171         Delete old-Emacs compatibility code.
2172         (antlr-c-common-init): Function deleted.
2174         * net/snmp-mode.el (snmp-common-mode): Use mode-require-final-newline.
2175         * progmodes/vhdl-mode.el (vhdl-mode): Use mode-require-final-newline.
2176         * progmodes/simula.el (simula-mode): Use mode-require-final-newline.
2177         * progmodes/python.el (python-mode): Use mode-require-final-newline.
2178         * progmodes/perl-mode.el (perl-mode): Use mode-require-final-newline.
2179         * progmodes/modula2.el (modula-2-mode): Use mode-require-final-newline.
2180         * progmodes/mixal-mode.el (mixal-mode): Use mode-require-final-newline.
2181         * progmodes/idlwave.el (idlwave-mode): Use mode-require-final-newline.
2182         * progmodes/icon.el (icon-mode): Use mode-require-final-newline.
2183         * progmodes/fortran.el (fortran-mode): Use mode-require-final-newline.
2184         * progmodes/f90.el (f90-mode): Use mode-require-final-newline.
2185         * progmodes/cperl-mode.el (cperl-mode): Use mode-require-final-newline.
2186         * progmodes/cfengine.el (cfengine-mode): Use mode-require-final-newline.
2187         * progmodes/ada-mode.el (ada-mode): Use mode-require-final-newline.
2188         * textmodes/text-mode.el (text-mode): Use mode-require-final-newline.
2189         * textmodes/texinfo.el (texinfo-mode): Use mode-require-final-newline.
2191 2004-12-31  Jay Belanger  <belanger@truman.edu>
2193         * calc/calc-graph.el (calc-graph-show-dumb): Mention C-cC-c as the
2194         way to return to Calc.
2196         * calc/calc-yank.el (calc-edit-mode): Mention C-cC-c as the way to
2197         finish, C-xk as the way to cancel the edit.  Add cancel routine to
2198         kill-buffer-hook.
2200         * calc/calc.el (calc-same-interface, calc-quit): Remove obsolete
2201         MacEdit code.
2203         * calc/calc-prog.el: Remove obsolete MacEdit code.
2204         (calc-macro-edit-algebraic, calc-macro-edit-variable)
2205         (calc-macro-edit-variable-2, calc-macro-edit-quick-digit): Remove.
2207 2004-12-31  Kenichi Handa  <handa@m17n.org>
2209         * international/mule.el (buffer-file-coding-system-explicit):
2210         Rename for explicit-buffer-file-coding-system.
2211         (after-insert-file-set-coding): Adjust for the above change.
2213         * files.el (revert-buffer): Change explicit-buffer-file-coding-system
2214         to buffer-file-coding-system-explicit.
2215         (basic-save-buffer-1): Likewise.
2217 2004-12-30  Richard M. Stallman  <rms@gnu.org>
2219         * textmodes/artist.el (artist-butlast-fn): Var deleted.
2220         (artist-butlast, artist-last): Functions deleted.
2221         (artist-ellipse-mirror-quadrant): Call last and butlast directly.
2222         (artist-compute-key-compl-table): Call remq directly.
2223         (artist-remove-nulls): Function deleted.
2224         (artist-vaporize-lines, artist-flood-fill): Use push and pop directly.
2225         (artist-push, artist-pop): Macro deleted.
2227 2004-12-30  Andreas Leue  <al@sphenon.de>
2229         * textmodes/artist.el (artist-version): 1.2.6
2230         (artist-prev-next-op-alist): New variable.
2231         (artist-select-next-op-in-list): New function.
2232         (artist-select-prev-op-in-list): New function.
2233         (artist-make-prev-next-op-alist): New function.
2234         (artist-is-in-op-list-p): New function.
2235         (artist-get-first-non-nil-op): New function.
2236         (artist-get-last-non-nil-op): New function.
2237         (artist-mode-init): Call artist-get-last-non-nil-op to initialize
2238         artist-prev-next-op-alist.
2239         (artist-mode-map): Add binding for C-mouse-4 and C-mouse-5 to
2240         change drawing operation.
2242 2004-12-30  Luc Teirlinck  <teirllm@auburn.edu>
2244         * autorevert.el (auto-revert-tail-handler): Put in undo boundaries.
2246 2004-12-31  Masatake YAMATO  <jet@gyve.org>
2248         * server.el (server-process-filter): Suppress `error', too.
2250 2004-12-30  Jay Belanger  <belanger@truman.edu>
2252         * calc/calc-store.el (calc-copy-variable): Fix mistyped variable name.
2253         Change the way a variable is displayed in a message.
2255         * calc/calc-prog.el (calc-user-define-edit, calc-finish-macro-edit)
2256         (calc-user-define-permanent, calc-execute-kbd-macro):
2257         Replace old function MacEdit-parse-keys with edmacro-parse-keys.
2259 2004-12-30  Kenichi Handa  <handa@m17n.org>
2261         * files.el (basic-save-buffer-1):
2262         Set explicit-buffer-file-coding-system to last-coding-system-used.
2263         (revert-buffer): Pay attention to
2264         explicit-buffer-file-coding-system (not buffer-file-coding-system)
2265         on bind coding-system-for-read.
2267         * international/mule.el (explicit-buffer-file-coding-system):
2268         New buffer local variable.
2269         (after-insert-file-set-coding): Set it to coding-system-for-read.
2271 2004-12-29  Luc Teirlinck  <teirllm@auburn.edu>
2273         * autorevert.el (auto-revert-tail-mode): Doc fix for defvar.
2275 2004-12-29  Sanghyuk Suh  <han9kin@mac.com>
2277         * term/mac-win.el (mac-drag-n-drop): Handle drag-n-drop events
2278         that include line numbers.
2280 2004-12-29  Milan Zamazal  <pdm@zamazal.org>
2282         * files.el (hack-local-variables): If no PREFIX, set it to "^".
2283         Redundant variable PREFIXLEN removed.
2285 2004-12-28  Matt Hodges  <MPHodges@member.fsf.org>
2287         * eshell/em-hist.el (eshell-previous-matching-input):
2288         Start the deletion from the end of the output.
2290 2004-12-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2292         * term/mac-win.el: Require x-dnd.
2293         (mac-drag-n-drop): Sync with W32 version.  Use x-dnd.el functions.
2295 2004-12-29  David Kastrup  <dak@gnu.org>
2297         * international/mule.el (decode-coding-inserted-region):
2298         Don't barf if `buffer-undo-list' is already set to `t'.
2300 2004-12-29  Jay Belanger  <belanger@truman.edu>
2302         * calc/calc-prog.el (calc-user-define-formula): Put default values
2303         for function names in prompts.
2304         (calc-user-define-permanent, calc-user-define-composition)
2305         (calc-user-define-formula): Remove the need for "calcFunc-" in the
2306         default input for algebraic functions.
2308 2004-12-29  Thien-Thi Nguyen  <ttn@gnu.org>
2310         * vc-rcs.el (vc-rcs-annotate-command):
2311         Fix omission bug: Call `vc-setup-buffer'.
2313 2004-12-29  Kenichi Handa  <handa@m17n.org>
2315         * international/mule.el (recode-region): New function.
2317 2004-12-28  Richard M. Stallman  <rms@gnu.org>
2319         * simple.el (undo-extra-outer-limit): New variable.
2320         (undo-outer-limit-truncate): Test and set it.
2322         * emacs-lisp/lisp.el (mark-sexp, mark-defun): New arg ALLOW-EXTEND
2323         enables the feature to extend the existing region.
2325         * simple.el (mark-word): New arg ALLOW-EXTEND
2326         enables the feature to extend the existing region.
2328         * textmodes/paragraphs.el (mark-paragraph): New arg ALLOW-EXTEND
2329         enables the feature to extend the existing region.
2331         * startup.el (site-run-file): Don't allow setting it with Custom.
2333         * simple.el (buffer-disable-undo): Fix previous change.
2335 2004-12-27  Masatake YAMATO  <jet@gyve.org>
2337         * hexl.el (hexlify-buffer): Remove fontification here.
2338         Use font lock mechanism instead.
2339         (hexl-font-lock-keywords): New font lock kewords.
2340         (hexl-mode-old-font-lock-keywords): New variable.
2341         (hexl-mode): Store the old font lock keywords.
2342         (hexl-mode-exit): Restore the old font lock keywords.
2344 2004-12-27  Richard M. Stallman  <rms@gnu.org>
2346         * simple.el (undo): Fix previous change.
2348 2004-12-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2350         * term/mac-win.el: Sync with x-win.el.  Rearrange the contents.
2351         Call mac-clear-font-name-table if invoked on Mac OS 8/9.
2352         Call x-open-connection on Mac OS X.
2354 2004-12-27  Richard M. Stallman  <rms@gnu.org>
2356         * files.el (buffer-save-without-query): New var (buffer-local).
2357         (save-some-buffers): Save those buffers first, w/o asking.
2359         * files.el (insert-directory-ls-version): New variable.
2360         (insert-directory): When ls returns an error, test the version
2361         number to decide what the return code means.
2362         With --dired output format, detect and distinguish lines
2363         that are really error messages.
2364         (insert-directory-adj-pos): New function.
2366         * bookmark.el (bookmark-jump): Nice error if BOOKMARK is nil.
2368         * battery.el (battery-mode-line-format): Remove initial spaces.
2370         * uniquify.el (uniquify-rationalize-file-buffer-names):
2371         Delete interactive spec.
2373         * type-break.el (type-break-mode): Set buffer-save-without-query.
2374         Remove code that tried to set save-some-buffers-always.
2375         (type-break-file-keystroke-count): Bind deactivate-mark.
2377         * mouse.el (mouse-drag-region): Bind mouse-autoselect-window.
2379         * simple.el (next-error-buffer-p): New arg AVOID-CURRENT.
2380         Test that the buffer is live, and maybe reject current buffer too.
2381         Clarify.
2382         (next-error-find-buffer): Rewrite for clarity.
2384         * loadup.el: Don't use buffer-disable-undo; do it directly.
2386         * help-fns.el (describe-function-1): Call symbol-file with `defun'.
2387         (describe-variable): Call symbol-file with `defvar'.
2389         * subr.el (messages-buffer-max-lines): Alias for message-log-max.
2390         (symbol-file): Rewritten to handle new load-history format.
2391         Now takes an arg TYPE to specify looking for a particular
2392         type of definition only.
2394         * emacs-lisp/debug.el (debugger-make-xrefs):
2395         Call symbol-file with `defun'.
2397         * emacs-lisp/find-func.el (find-function-noselect):
2398         Call symbol-file with `defun'.
2399         (find-variable-noselect): Call symbol-file with `defvar'.
2401         * eshell/esh-cmd.el (eshell-find-alias-function):
2402         Call symbol-file with `defun'.
2404         * eshell/esh-test.el (eshell-test-goto-func):
2405         Call symbol-file with `defun'.
2407         * mail/rmail.el (rmail-resend):
2408         Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
2410         * net/goto-addr.el (goto-address-mail-regexp): Allow = in username.
2412         * progmodes/compile.el (compilation-find-buffer): Rename arg.
2414         * textmodes/texinfmt.el (texinfo-format-buffer-1):
2415         Call buffer-disable-undo.
2417         * simple.el (undo-list-saved): New variable (buffer-local).
2418         (undo): Set and test it.
2419         (buffer-disable-undo): Move here from buffer.c.
2420         Clear out undo-list-saved.
2422         * international/mule.el (decode-coding-inserted-region):
2423         Set buffer-undo-list in a correct and optimal way.
2425         * progmodes/cperl-mode.el (cperl-find-bad-style): Use with-no-warnings.
2426         (cperl-font-lock-unfontify-region-function): No need to save and
2427         restore info, since font-lock.el does it for us.
2429         * ansi-color.el (save-buffer-state): Definition deleted.
2430         (ansi-color-unfontify-region): Don't use save-buffer-state.
2432 2004-12-27  Dave Love  <fx@gnu.org>
2434         * wid-edit.el (function): Use restricted-sexp as parent.
2436 2004-12-27  Kevin Ryde  <user42@zip.com.au>
2438         * simple.el (next-matching-history-element): Use same
2439         `interactive' form as previous-matching-history-element.
2441         * ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars,
2442         it can appear unencoded and has been seen from yahoo.
2444 2004-12-27  Sergey Poznyakoff <gray@Mirddin.farlep.net>  (tiny change)
2446         * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
2447         in upper case.  Reported by Wojciech Polak <polak@gnu.org>.
2449 2004-12-27  Kenichi Handa  <handa@m17n.org>
2451         * international/utf-8.el (utf-translate-cjk-load-tables):
2452         Bind coding-system-for-read to nil while loading subst-*.
2454 2004-12-26  Jay Belanger  <belanger@truman.edu>
2456         * calc/calc-store.el (calc-read-var-name): Remove "var-" from
2457         default input.
2459 2004-12-26  Luc Teirlinck  <teirllm@auburn.edu>
2461         * buff-menu.el (Buffer-menu-revert-function): Clear out undo info
2462         before reverting and disable undo recording while reverting.
2464 2004-12-26  Thien-Thi Nguyen  <ttn@gnu.org>
2466         * progmodes/hideshow.el (hs-set-up-overlay): New user var.
2467         (hs-make-overlay): New function.
2468         (hs-isearch-show-temporary): Handle `display' overlay prop specially.
2469         (hs-flag-region): Delete function.
2470         (hs-hide-comment-region): No longer use `hs-flag-region'.
2471         Instead, use `hs-discard-overlays' and `hs-make-overlay'.
2472         (hs-hide-block-at-point): Likewise.
2473         (hs-hide-level-recursive): Use `hs-discard-overlays'.
2474         (hs-hide-all, hs-show-all): Likewise.
2475         (hs-show-block): Likewise.
2476         Also, use overlay prop `hs-b-offset', not `hs-ofs'.
2478 2004-12-24  Thien-Thi Nguyen  <ttn@gnu.org>
2480         * progmodes/hideshow.el: Require `cl' when compiling.
2481         Remove XEmacs and Emacs 19 compatibility.
2482         Use `dolist' and `add-to-list' for load-time actions.
2483         (hs-discard-overlays): Use `dolist'.
2484         (hs-show-block): Likewise.
2486 2004-12-23  Dan Nicolaescu  <dann@ics.uci.edu>
2488         * faces.el (mode-line, mode-line-inactive): Use min-colors.
2490 2004-12-23  Thien-Thi Nguyen  <ttn@gnu.org>
2492         * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug:
2493         When extending backwards, move outside the current comment first.
2495 2004-12-22  Kenichi Handa  <handa@m17n.org>
2497         * international/quail.el (quail-start-translation): Fix prompt
2498         string for the case if input-method-use-echo-area being non-nil.
2499         (quail-start-conversion): Likewise.
2500         (quail-show-guidance): Don't show guidance if
2501         input-method-use-echo-area is non-nil.
2503 2004-12-21  Richard M. Stallman  <rms@gnu.org>
2505         * textmodes/ispell.el (ispell-help): Bind resize-mini-windows.
2507 2004-12-21  Markus Rost  <rost@ias.edu>
2509         * calendar/diary-lib.el (mark-diary-entries):
2510         Set mark-diary-entries-in-calendar only after checking for diary-file.
2512 2004-12-21  Richard M. Stallman  <rms@gnu.org>
2514         * faces.el (escape-glyph): Use blue against light foreground.
2516         * simple.el (undo-outer-limit-truncate): New function.
2517         (undo-outer-limit-function): Use undo-outer-limit-truncate.
2519 2004-12-21  Eli Barzilay  <eli@barzilay.org>
2521         * calculator.el: (calculator-radix-grouping-mode)
2522         (calculator-radix-grouping-digits)
2523         (calculator-radix-grouping-separator):
2524         New defcustoms for the new radix grouping mode functionality.
2525         (calculator-mode-hook): Now used in electric mode too,
2526         (calculator): Call it.
2527         (calculator-mode-map): Some new keys.
2528         (calculator-message): New function.  Some new calls.
2529         (calculator-op, calculator-set-register): Use it.
2530         (calculator-string-to-number): New function, mostly moved and
2531         updated code from calculator-curnum-value.
2532         (calculator-curnum-value): Use it.
2533         (calculator-paste): Use it, and update grabbing the current-kill.
2534         (calculator-rotate-displayer)
2535         (calculator-rotate-displayer-back): Toggle digit grouping when
2536         in radix mode, use calculator-message.
2537         (calculator-displayer-prev, calculator-displayer-next):
2538         Change digit group size when in radix mode.
2539         (calculator-number-to-string): Rename from
2540         calculator-num-to-string.  Now deals with digit grouping in
2541         radix mode.
2542         (calculator-update-display, calculator-put-value): Use the new name.
2543         (calculator-fact): Return a floating point number.
2544         (calculator-mode): Doc fix.
2546 2004-12-20  Glenn Morris  <gmorris@ast.cam.ac.uk>
2548         * calendar/calendar.el (view-other-diary-entries): Add autoload.
2549         * calendar/diary-lib.el (view-other-diary-entries):
2550         Use current-prefix-arg in interactive spec.
2552 2004-12-19  Jay Belanger  <belanger@truman.edu>
2554         * calc/calc-aent.el (calcAlg-blank-matching-open):
2555         Temporarily adjust the syntax of both delimiters of half-open intervals.
2557 2004-12-19  Kim F. Storm  <storm@cua.dk>
2559         * mouse.el (mouse-1-click-follows-link): Doc fix.
2561 2004-12-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2563         * term/mac-win.el (encoding-vector, mac-font-encoder-list)
2564         (ccl-encode-mac-centraleurroman-font): Use centraleurroman
2565         instead of centraleuropean as the name
2567 2004-12-17  Michael Albinus  <michael.albinus@gmx.de>
2569         Sync with Tramp 2.0.46.
2571         * net/tramp.el (tramp-maybe-send-perl-script): Change order of
2572         parameters wrt Tramp convention.
2573         (tramp-handle-file-attributes-with-perl)
2574         (tramp-handle-directory-files-and-attributes): Apply it.
2575         (tramp-do-copy-or-rename-file-out-of-band): Check for existence of
2576         `copy-program'.  Reported by Zack Weinberg
2577         <zack@codesourcery.com>.
2578         (top): Set `edebug-form-spec' property directly rather than
2579         calling `def-edebug-spec'.
2581         * net/tramp-smb.el (tramp-smb-advice-PC-do-completion): Make the
2582         advice less fragile.  Surround temporary redefinition of
2583         `substitute-in-file-name' with `unwind-protect'.  Suggested by
2584         Matt Hodges <MPHodges@member.fsf.org>.
2586 2004-12-17  Juri Linkov  <juri@jurta.org>
2588         * replace.el (occur-accumulate-lines, occur-engine):
2589         Make forcing deferred font-lock fontification jit-specific.
2591 2004-12-17  Kim F. Storm  <storm@cua.dk>
2593         * mouse.el (mouse-1-click-follows-link): New defcustom.
2594         (mouse-on-link-p): New function.
2595         (mouse-drag-region-1): Implement mouse-1-click-follows-link
2596         functionality.  Map a mouse-1 click event into a mouse-2 (or
2597         other) event when position is inside a link.
2599         * tooltip.el (tooltip-show-help-function): Replace "mouse-2"
2600         prefix in tooltip text with "mouse-1" when this is a link
2601         recognized by mouse-1-click-follows-link functionality.
2603         * help.el (describe-key): Report effective and original binding
2604         for mouse-1 when clicked on a link.
2605         (describe-mode): Add follow-link property to "minor-mode" button.
2607         * help-fns.el (describe-variable): Add follow-link property to
2608         "below" button.
2610         * help-mode.el (help-xref): Add follow-link property.
2612         * apropos.el (apropos-symbol, apropos-function, apropos-macro)
2613         (apropos-command, apropos-variable, apropos-face, apropos-group)
2614         (apropos-widget, apropos-plist): Add follow-link property.
2616         * pcvs-defs.el (cvs-mode-map): Map follow-link to a function which
2617         checks if position is in a filename, rather than some other
2618         clickable item.  Function looks for cvs-filename-face at position.
2620         * wid-edit.el (widget-specify-field, widget-specify-button):
2621         Map a :follow-link keyword into a follow-link property.
2622         (link): Add :follow-link keyword, map to RET binding.
2624         * dired.el (dired-mode-map): Map follow-link to mouse-face.
2626         * progmodes/compile.el (compilation-minor-mode-map)
2627         (compilation-button-map, compilation-mode-map): Likewise.
2629 2004-12-17  Thien-Thi Nguyen  <ttn@gnu.org>
2631         * play/zone.el (zone): Init `line-spacing' from orig buffer.
2632         (zone-replace-char): Take `count' and `del-count'
2633         instead of `direction'.  Update callers.  When `del-count' is
2634         non-nil, delete that many characters, otherwise `count' characters
2635         backwards.  Insert the newly-replaced string `count' times.
2636         (zone-fret): Handle chars w/ width greater than one.
2637         (zone-fall-through-ws): No longer take window width `ww'.
2638         Update callers.  Add handling for `char-width' greater than one.
2639         (zone-pgm-drip): Update var holding window-end position every cycle.
2641 2004-12-17  Andre Spiegel  <spiegel@gnu.org>
2643         * vc.el (vc-default-update-changelog): Use insert-file-contents,
2644         rather than insert-file.
2646 2004-12-16  Jay Belanger  <belanger@truman.edu>
2648         * calc/calc-comb.el (var-RandSeed): Don't initially bind it.
2649         (math-init-random-base, math-random-digit): Check to see if
2650         var-RandSeed is bound.
2651         (math-random-last): Declare it.
2652         (math-random-digit): Don't make math-random-last local.
2654 2004-12-16  Thien-Thi Nguyen  <ttn@gnu.org>
2656         * play/zone.el (zone): Fix omission bug: Use a self-disabling
2657         one-shot thunk for uniform (error, quit, normal) recovery.
2658         Reported by John Paul Wallington.
2659         (zone-pgm-random-life): Fix bug:
2660         Recognize empty initial field by lack of "@" chars.
2662 2004-12-16  Juri Linkov  <juri@jurta.org>
2664         * help.el (function-called-at-point):
2665         * help-fns.el (variable-at-point): As a last resort try stripping
2666         non-word prefixes and suffixes.
2668         * descr-text.el (describe-property-list): Don't treat syntax-table
2669         specially.  Use describe-text-sexp which inserts [show] button
2670         for large objects and handles printing errors.  Sort properties
2671         by names in alphabetical order instead of by value sizes.
2672         Add `mouse-face' to list of properties for `describe-face' widget.
2673         (describe-char): Mask out face-id from 19 bits of character.
2674         Print face-id separately.
2676         * replace.el (occur-accumulate-lines, occur-engine):
2677         Fontify unfontified matching lines in the source buffer
2678         before copying them.
2679         (occur-engine): Don't put mouse-face on context lines.
2680         (occur-next-error): Set point to line beginning/end
2681         before searching for prev/next property to skip multiple
2682         matches on a line (not supported by occur engine).
2683         Remove redundant prefix-numeric-value.
2685 2004-12-15  Juri Linkov  <juri@jurta.org>
2687         * replace.el (match): New face.
2688         (list-matching-lines-face): Change default from `bold' to `match'.
2690         * progmodes/grep.el (grep-match-face): New defvar.
2691         (grep-mode-font-lock-keywords): Use grep-match-face instead of
2692         compilation-column-face to highlight grep matches.
2694         * apropos.el (apropos-match-face): Change default from
2695         `secondary-selection' to `match'.
2697         * info-look.el (info-lookup-highlight-face): Change default from
2698         `highlight' to `match'.
2700 2004-12-15  Daniel Pfeiffer  <occitan@esperanto.org>
2702         * progmodes/executable.el (executable-interpret): Eliminate
2703         obsolete compile-internal, and switch to comint for interaction.
2705 2004-12-15  J.D. Smith  <jdsmith@as.arizona.edu>
2707         * progmodes/idlwave.el (idlwave-skip-multi-commands): Don't match
2708         `&&' when skipping multiple statements on a line.
2710 2004-12-15  Thien-Thi Nguyen  <ttn@gnu.org>
2712         * play/zone.el (zone): Set `truncate-lines'.
2713         Also, init `tab-width' with value from original buffer.
2714         (zone-shift-up): Rewrite for speed.
2715         (zone-shift-down, zone-shift-left, zone-shift-right): Likewise.
2716         (zone-pgm-jitter): Remove redundant entries from ops vector.
2717         (zone-exploding-remove): Reduce iteration count.
2718         (zone-cpos): Convert to defsubst.
2719         (zone-replace-char): New defsubst.
2720         (zone-park/sit-for): Likewise.
2721         (zone-fret): Take window-start arg.
2722         Update callers. Use `zone-park/sit-for'.
2723         (zone-fill-out-screen): Rewrite.
2724         (zone-fall-through-ws): Likewise. Update callers.
2725         (zone-pgm-drip): Use `zone-replace-char'.
2726         Move var inits before while-loop. Use `zone-park/sit-for'.
2727         (zone-pgm-random-life): Handle empty initial field.
2728         Use `zone-replace-char' and `zone-park/sit-for'.
2730 2004-12-15  Juri Linkov  <juri@jurta.org>
2732         * isearch.el (isearch-update): Test isearch-lazy-highlight
2733         before calling isearch-lazy-highlight-new-loop.
2734         (isearch-lazy-highlight-new-loop):
2735         Don't test isearch-lazy-highlight.
2737         * replace.el (perform-replace): Add isearch-case-fold-search.
2738         Use delimited-flag for isearch-regexp.
2739         Reset isearch-lazy-highlight-last-string to force lazy
2740         highlighting when called from isearch mode.
2741         (query-replace-highlight): Revert defcustom type to boolean.
2742         (query-replace-lazy-highlight): New defcustom.
2743         (query-replace): New face.
2744         (perform-replace, replace-highlight, replace-dehighlight):
2745         Test query-replace-lazy-highlight instead of special value
2746         `isearch' of query-replace-highlight.
2747         (replace-dehighlight): Don't call isearch-dehighlight.
2748         (replace-highlight): Don't call isearch-highlight.
2749         Use face `query-replace' unconditionally.
2751 2004-12-14  Kim F. Storm  <storm@cua.dk>
2753         * simple.el (inhibit-mark-movement): Remove defvar.
2754         (beginning-of-buffer, end-of-buffer): Don't use it.
2756         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2757         Don't use inhibit-mark-movement.
2759         * emulation/cua-base.el (cua--preserve-mark-commands): Remove.
2760         (cua--undo-push-mark): Remove.
2761         (cua--pre-command-handler, cua--post-command-handler):
2762         Don't fiddle with inhibit-mark-movement.
2764 2004-12-14  Juri Linkov  <juri@jurta.org>
2766         * buff-menu.el (list-buffers-noselect): Collect internal info
2767         for every buffer in BUFFER-LIST arg too.
2768         (Buffer-menu-switch-other-window): Bind pop-up-windows to t.
2769         (Buffer-menu-switch-other-window, Buffer-menu-2-window):
2770         Bind same-window-buffer-names and same-window-regexps to nil.
2772 2004-12-13  Juri Linkov  <juri@jurta.org>
2774         * simple.el (next-error-buffer-p, next-error-find-buffer): Doc fix.
2776         * mail/supercite.el (sc-cite-frame-alist): Doc fix.
2777         (sc-cite-region, sc-uncite-region, sc-recite-region):
2778         Fix previous change to handle not alist as a symbol, but
2779         a citation frame as a symbol that represents a variable name.
2781 2004-12-13  Richard M. Stallman  <rms@gnu.org>
2783         * filecache.el (file-cache-add-directory-using-find):
2784         Only set up file-cache-find-command-posix-flag if we will use it.
2786         * bindings.el (mode-line-buffer-identification-keymap):
2787         Don't cancel the mode-line's usual down-mouse-1 binding.
2789         * cus-edit.el (custom-face-selected): Handle `default' specs.
2790         (custom-face-edit): Increase extra-offset.
2791         (custom-display): Handle `default' specs.
2793         * xml.el (xml-name-re, xml-entity-value-re): Add defvars.
2795         * emacs-lisp/elint.el (elint-standard-variables)
2796         (elint-unknown-builtin-args): Move definitions up.
2798         * net/browse-url.el (browse-url-url-at-point): Add autoload.
2800         * info.el (info-xref-visited): Use `default' instead of t.
2801         (Info-try-follow-nearest-node): Don't explicitly load browse-url.
2803         * faces.el (header-line, mode-line-inactive, tool-bar):
2804         Use `default' instead of t for setting the defaults.
2805         (face-spec-choose): Separate `t' from `default'.
2807         * subr.el (while-no-input): New macro.
2809 2004-12-13  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>  (tiny change)
2811         * filecache.el (file-cache-add-directory-using-find):
2812         Only test file-cache-find-command-posix-flag on some systems.
2814 2004-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2816         * vc-svn.el (vc-svn-repository-hostname): Adjust to new format.
2817         Reported by Ville Skytt\e,Ad\e(B <scop@xemacs.org>.
2818         (vc-svn-annotate-current-time, vc-svn-annotate-time-of-rev)
2819         (vc-svn-annotate-time, vc-svn-annotate-extract-revision-at-line)
2820         (vc-svn-annotate-command, vc-svn-annotate-re): Support for svn annotate.
2822 2004-12-12  Juri Linkov  <juri@jurta.org>
2824         * files.el (find-file-other-window, find-file-other-frame):
2825         Add the first buffer to the returned value to return the complete
2826         list of all visited buffers.
2827         (find-file-read-only, find-file-read-only-other-window)
2828         (find-file-read-only-other-frame): Use nil for `mustmatch' arg of
2829         `find-file-read-args'.  Signal an error about non-existent file
2830         only if file name doesn't contain wildcards.  Toggle read-only in
2831         all visited buffers.
2832         (find-alternate-file, find-alternate-file-other-window):
2833         Add optional arg `wildcards'.  Doc fix.  Set `wildcards' to t when
2834         called interactively.  Pass arg `wildcards' to other functions.
2835         (find-file-noselect): Doc fix.
2837         * ffap.el (ffap-dired-wildcards): Set default to "[*?][^/]*\\'".
2838         Doc fix.
2839         (ffap-directory-finder): New variable.
2840         (ffap-string-at-point-mode-alist): Add * and ? to `file'.
2841         (ffap-file-at-point): Add /* to immediately rejected names.
2842         Return absolute file names matching ffap-dired-wildcards.
2843         (ffap-read-file-or-url): Set default value for `completing-read'
2844         to `buffer-file-name'.
2845         (find-file-at-point): When filename matches ffap-dired-wildcards,
2846         call ffap-file-finder with t arg `wildcards', instead of dired.
2847         (ffap-other-window, ffap-other-frame): Return visited buffers.
2848         (ffap-read-only, ffap-read-only-other-window)
2849         (ffap-read-only-other-frame, ffap-alternate-file): New commands.
2850         (dired-at-point): Call ffap-directory-finder instead of dired.
2851         (ffap-dired-other-window, ffap-dired-other-frame)
2852         (ffap-list-directory): New commands.
2853         (ffap-bindings): New keybindings for new commands.
2855 2004-12-12  Juri Linkov  <juri@jurta.org>
2857         * simple.el (beginning-of-buffer, end-of-buffer):
2858         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
2859         Do not push mark when mark is active in transient-mark-mode.
2861         * simple.el (mark-word):
2862         * emacs-lisp/lisp.el (mark-sexp, mark-defun):
2863         * textmodes/paragraphs.el (mark-paragraph):
2864         Extend the region when mark is active in transient-mark-mode,
2865         regardless of the last command.  Doc fix.
2867         * simple.el (mark-word): Preserve direction when repeating.
2868         Make arg optional.  Interactive "p" -> "P".
2869         (transient-mark-mode, inhibit-mark-movement): Doc fix.
2871         * emacs-lisp/lisp.el (mark-sexp): Reverse the condition for
2872         preserving direction, to mark forward instead of backward when mark
2873         is equal to point (e.g. when C-SPC C-M-SPC is typed in t-m-m).
2875 2004-12-12  Juri Linkov  <juri@jurta.org>
2877         * isearch.el (isearch-edit-string): Set 7th arg of
2878         `read-from-minibuffer' to `t' to inherit the current input
2879         method (whose name is indicated by [IM] in the minibuffer prompt)
2880         from the current buffer to the minibuffer.
2881         (isearch-lazy-highlight-update): Put body to `with-local-quit'
2882         to allow C-g quitting for lazy highlighting looping inside the
2883         search with nested repetition operators.  Add overlay to the list
2884         before setting its face and other properties to avoid the case of
2885         code quitting after placing the new overlay but before it's
2886         recorded on the list.  Select the window where isearch was
2887         activated, to highlight matches in the right window when isearch
2888         switches the current window to the minibuffer.
2890         * international/isearch-x.el
2891         (isearch-process-search-multibyte-characters):
2892         Use `isearch-message' as initial input for `read-string' instead
2893         of adding it to the minibuffer prompt.  After reading a string
2894         remove the initial value of `isearch-message' from the string.
2896         * replace.el (replace-match-maybe-edit): Doc fix.
2897         (perform-replace): Don't call `replace-highlight' when automatic
2898         replacement is requested in literal mode, since it is intended
2899         only to highlight words during entering a new replacement string
2900         for \? in non-literal mode.
2902         * replace.el (query-replace-highlight): Add new value `isearch'
2903         that allows query replacement to use isearch highlighting.
2904         Change type from `boolean' to `choice'.  Doc fix.
2905         (replace-highlight, replace-dehighlight, perform-replace):
2906         Use isearch highlighting if query-replace-highlight eq `isearch'.
2908 2004-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2910         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
2911         (checkdoc-message-text, checkdoc-defun): Fix format messages for `error'.
2913         * textmodes/tex-mode.el (latex-backward-sexp-1): Handle the special
2914         case of \end{verbatim}.
2916 2004-12-11  Dan Nicolaescu  <dann@ics.uci.edu>
2918         * term.el (term-termcap-format): Synchronyze with terminfo.
2919         (term-emulate-terminal): Handle reset.
2920         (term-reset-terminal): New function.
2922 2004-12-11  Thien-Thi Nguyen  <ttn@gnu.org>
2924         * play/zone.el (zone-programs): Add `zone-pgm-random-life'.
2925         (zone-fill-out-screen): New func.
2926         (zone-pgm-drip): Use `zone-fill-out-screen'.
2927         Also, no longer go to point-min on every cycle.
2928         (zone-pgm-paragraph-spaz): Allow spazzing for texinfo-mode.
2929         (zone-pgm-random-life-wait): New user var.
2930         (zone-pgm-random-life): New func.
2932 2004-12-10  Thien-Thi Nguyen  <ttn@gnu.org>
2934         * files.el (auto-mode-alist): Map .com to DCL mode.
2936 2004-12-09  Richard M. Stallman  <rms@gnu.org>
2938         * isearch.el (isearch-mode-map): Treat S-SPC like SPC.
2940 2004-12-09  Nick Roberts  <nickrob@snap.net.nz>
2942         * xt-mouse.el (xterm-mouse-event): Correct cursor position in a
2943         buffer with a display margin.
2945 2004-12-08  Jay Belanger  <belanger@truman.edu>
2947         * calc/calc-keypd.el (calc-keypad-mode): Unbind unused mouse events.
2948         (calc-keypad-left-click): Set buffer to calc-keymap-buffer.
2950 2004-12-08  Richard M. Stallman  <rms@gnu.org>
2952         * faces.el: Delete code to set display table.
2953         (escape-glyph): Redefine to be less loud.  (Copy minibuffer-prompt.)
2955 2004-12-08  Jay Belanger  <belanger@truman.edu>
2957         * calc/calc.el: Add math-read-preprocess-string to autoloads.
2959         * calc/calc-ext.el (math-read-replacement-list)
2960         (math-read-superscripts, math-read-preprocess-string): Move to
2961         calc-aent.el.
2963         * calc/calc-aent.el (math-read-replacement-list)
2964         (math-read-superscripts, math-read-preprocess-string): Move from
2965         calc-ext.el.
2967 2004-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2969         * isearch.el (isearch-quote-char): Fix up typo in last change.
2971 2004-12-07  Luc Teirlinck  <teirllm@auburn.edu>
2973         * mouse.el (mouse-set-font): Handle the case where the command was
2974         not invoked using the mouse.
2976         * edmacro.el: `edit-kbd-macro' is now bound to `C-x C-k e'.
2977         (edmacro-finish-edit): Further update for keyboard macros that are
2978         lambda forms.
2979         (edmacro-sanitize-for-string): Correctly remove Meta modifier.
2981 2004-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2983         * font-lock.el (font-lock-unfontify-region): Save buffer state.
2984         (font-lock-default-unfontify-region): Don't save buffer state any more.
2986 2004-12-07  Jay Belanger  <belanger@truman.edu>
2988         * calc/calc-help.el (calc-describe-key):
2989         Set calc-summary-indentation even when Calc Summary buffer exists.
2991 2004-12-07  Glenn Morris  <gmorris@ast.cam.ac.uk>
2993         * calendar/holidays.el (holiday-easter-etc): Make arguments
2994         optional for backwards compatibility.  Doc fix.
2995         Remove un-necessary local vars mandatory, output-list.
2996         (holiday-advent):  Make arguments optional for backwards
2997         compatibility.  Doc fix.
2999 2004-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3001         * paren.el (show-paren-function): Fix last change (2004-12-02).
3003         * international/mule-util.el (char-displayable-p): Return nil for
3004         unibyte mode.
3006         * subr.el (subregexp-context-p): New function.
3008         * isearch.el (isearch-quote-char): Use it.
3010         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Use it.
3011         (regexp-opt-not-groupie*-re): Remove.
3012         (regexp-opt): Properly handle inputs with duplicate entries.
3014 2004-12-06  Richard M. Stallman  <rms@gnu.org>
3016         * info-look.el (info-lookup-maybe-add-help cfengine-mode): Regexp typo.
3018         * cus-edit.el (custom-file): Doc fix.
3020         * textmodes/org.el: New file.
3022 2004-12-06  Kenichi Handa  <handa@m17n.org>
3024         * ldefs-boot.el: Update international/mule-util.el section.
3026 2004-12-05  Sam Steingold  <sds@gnu.org>
3028         * net/tramp.el (tramp-handle-file-accessible-directory-p):
3029         Fix `tramp-time-diff' comparison logic.
3031 2004-12-05  Paul Pogonyshev  <pogonyshev@gmx.net>
3033         * progmodes/which-func.el (which-function):
3034         Use `run-hook-with-args-until-success' instead of a custom loop.
3035         Fixes bug with local hooks.
3037 2004-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3039         * textmodes/bibtex.el (bibtex-font-lock-url-regexp):
3040         Use delete-dups when calculating the initial value.
3041         (bibtex-autokey-get-title): Use <=.
3042         (bibtex-goto-line): New function.
3043         (bibtex-reposition-window): Use line numbers instead of point
3044         positions.  Use window-body-height.
3045         (bibtex-find-crossref): Use bibtex-reposition-window.
3046         (bibtex-find-entry): Use bibtex-reposition-window.  Always return
3047         position of entry if key is found or nil if not found.
3049 2004-12-05  Richard M. Stallman  <rms@gnu.org>
3051         * cus-edit.el (custom-file): Doc fix.
3053         * progmodes/sh-script.el (sh-indent-for-then): Change default.
3055 2004-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3057         * simple.el (blink-matching-open):
3058         * textmodes/tex-mode.el (tex-validate-region):
3059         Obey syntax-table text properties.
3061 2004-12-02  Per Abrahamsen  <abraham@dina.kvl.dk>
3063         * wid-edit.el (widget-specify-field): Add `real-field' property to
3064         boundary.
3065         (widget-field-at): Use it.
3067 2004-12-02  Richard M. Stallman  <rms@gnu.org>
3069         * progmodes/cc-mode.el (awk-mode autoload):
3070         Supply t meaning interactive function.
3072         * isearch.el (search-whitespace-regexp): Remove the group.  Doc fix.
3073         (isearch-mode-map): No special definition for space.
3074         (isearch-whitespace-chars): Command deleted.
3075         (isearch-forward-regexp): Doc fix.
3076         (isearch-quote-char): When a space is not inside brackets,
3077         use `[ ]' instead of just space.
3078         (isearch-lazy-highlight-search): Bind search-spaces-regexp.
3080         * imenu.el (imenu--generic-function): Delete code to exclude
3081         matches in comments.
3083         * man.el (Man-reverse-face): Change default to `highlight'.
3085         * replace.el (occur-1): Specify t for KEEP-PROPS to occur-engine.
3086         (occur-engine): Use `face' prop rather than `font-lock-face'
3087         when specifying use of `match-face'.
3088         (occur-accumulate-lines): Change arg from NO-PROPS to KEEP-PROPS.
3090         * emacs-lisp/elint.el (elint-standard-variables): Update list.
3092         * add-log.el (add-log-current-defun): Handle the case where point
3093         is in the header part of a DEFUN construct.
3095 2004-12-02  Dave Love  <fx@gnu.org>
3097         * progmodes/python.el (python-font-lock-syntactic-keywords):
3098         Fix previous change.
3100 2004-12-02  Richard G Bielawski  <Richard.G.Bielawski@wellsfargo.com>  (tiny change)
3102         * paren.el (show-paren-function): Check for matching chars
3103         specified by text props.
3105 2004-12-02  Jay Belanger  <belanger@truman.edu>
3107         * calc/calc.el (calc-read-key-sequence): Leave the old message visible
3108         when reading a new key sequence.
3110 2004-12-02  Kim F. Storm  <storm@cua.dk>
3112         * faces.el (escape-glyph): Rename from glyph.
3113         (standard-display-table): Set it here.  Add escape-glyph face to
3114         extra slot characters.
3116         * disp-table.el: Undo 2004-12-01 change.  Display table is now
3117         setup in faces.el.
3119 2004-12-02  Mark A. Hershberger  <mah@everybody.org>
3121         * xml.el (xml-parse-dtd): Don't show validity messages when
3122         xml-validating-parser is nil.
3123         (xml-substitute-special): Fix validity error messages to
3124         actually show the unexpandable entity.  Added validity error if &
3125         isn't followed by an entity.
3126         (xml-parse-tag): Concatenate any string following the a
3127         <![CDATA[]]> section to the parsed CDATA.
3128         (xml-parse-dtd): Skip parameter entity declarations and use of
3129         parameter entities.
3131 2004-12-01  Luc Teirlinck  <teirllm@auburn.edu>
3133         * kmacro.el (kmacro-default-counter-format): New var.
3134         (kmacro-set-format): Use it.  Delete `(printf format)' from prompt.
3135         (kmacro-display): Remove `nil' from `and' form.  Delete call to
3136         `format' inside `message'.
3137         (kmacro-start-macro): Use `kmacro-default-counter-format'.
3139 2004-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3141         * pcvs.el (cvs-header-msg): New function.
3142         (cvs-update-header): Use it.  Change calling convention.
3143         Correctly handle the case of having simultaneous active processes.
3144         (cvs-sentinel): Don't call cvs-update-header any more.
3145         (cvs-mode-run): Update call and add cvs-update-header to postproc.
3147 2004-12-01  Jay Belanger  <belanger@truman.edu>
3149         * calc/calc-ext.el (calc-inverse, calc-hyperbolic):
3150         Change message.
3152 2004-12-01  Juri Linkov  <juri@jurta.org>
3154         * progmodes/prolog.el (prolog-mode-variables):
3155         Fix imenu-generic-expression.
3157 2004-12-01  Daniel Pfeiffer  <occitan@esperanto.org>
3159         * faces.el (glyph): New face.
3161         * disp-table.el: Add an autoloaded table, that doesn't require
3162         this library, with glyph face.
3164         * textmodes/conf-mode.el (conf-ppd-mode-syntax-table): New var.
3165         (conf-ppd-mode): New conf-mode wrapper for printer descriptions.
3166         (conf-quote-normal): Allow normalizing only ' or ".
3167         (conf-mode): Regexp-quote constructed comment-start and don't
3168         match section {} where "name" contains braces.
3170         * files.el (auto-mode-alist): Add conf-ppd-mode, inittab and acpid
3171         files.
3173 2004-12-01  Kenichi Handa  <handa@m17n.org>
3175         * term/x-win.el (x-last-selected-text-cut-encoded): New variable.
3176         (x-select-text): Don't treat eight-bit-control/graphic chars
3177         specially.  Store the encoded text in the X cut buffer.
3178         (x-cut-buffer-or-selection-value): Compare the X cut buffer text
3179         with x-last-selected-text-cut-encoded.
3181 2004-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3183         * man.el (Man-fontify-manpage): Improve handling of ANSI escapes.
3185 2004-11-30  Markus Rost  <rost@ias.edu>
3187         * textmodes/tex-mode.el (tex-main-file): Add a compatibility with
3188         AUCTeX.
3190 2004-11-30  Jay Belanger  <belanger@truman.edu>
3192         * calc/calc-arith.el (math-possible-signs): Made stronger checks
3193         on signs of intervals.
3194         (math-pow-of-zero): Strengthen checks for positive and negative
3195         exponents.
3197         * calc/calc-aent.el, calc/calc-alg.el, calc/calc-arith.el
3198         * calc/calc-bin.el, calc/calc-comb.el, calc/calc-cplx.el
3199         * calc/calc-embed.el, calc/calc-fin.el, calc/calc-forms.el
3200         * calc/calc-frac.el, calc/calc-funcs.el, calc/calc-graph.el
3201         * calc/calc-help.el, calc/calc-incom.el, calc/calc-keypd.el
3202         * calc/calc-lang.el, calc/calc-map.el, calc/calc-math.el
3203         * calc/calc-misc.el, calc/calc-mode.el, calc/calc-mtx.el
3204         * calc/calc-poly.el, calc/calc-prog.el, calc/calc-rewr.el
3205         * calc/calc-rules.el, calc/calc-sel.el, calc/calc-stat.el
3206         * calc/calc-store.el, calc/calc-stuff.el, calc/calc-trail.el
3207         * calc/calc-undo.el, calc/calc-units.el, calc/calc-vec.el
3208         * calc/calc-yank.el, calc/calcalg2.el, calc/calcalg3.el
3209         * calc/calccomp.el, calc/calcsel2.el: Replace dummy autoloaded functions
3210         with provide statements.
3212         * calc/calc-alg.el (math-defsimplify): Move from calc-ext.el.
3214         * calc/calc-embed.el (calc-do-embedded-activate): Remove from autoloads.
3216         * calc/calc-ext.el: Remove dummy autoloading functions from autoloads.
3217         (calc-load-everything, math-defsimplify): Replace dummy autoloading
3218         functions by require statements.
3219         (math-defsimplify): Move to calc-alg.el, add to autoloads.
3221         * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
3222         (calc-gnuplot-print): Give them values.
3224         * calc/calc.el: Remove calc-Need-calc-aent and calc-Need-calc-misc from
3225         autoloads.
3226         Add calc-do-embedded-activate to autoloads.
3227         (calc-gnuplot-name, calc-gnuplot-plot-command)
3228         (calc-gnuplot-print-command): Move them to calc-graph.el.
3230 2004-11-30  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3232         * term/mac-win.el (ccl-encode-mac-roman-font)
3233         (ccl-encode-mac-cyrillic-font)
3234         (ccl-encode-mac-centraleuropean-font, encoder-list)
3235         (fontset-add-mac-fonts, create-fontset-from-mac-roman-font):
3236         Support Cyrillic, CentralEuropean, and Dingbat font display
3238 2004-11-30  Andre Spiegel  <spiegel@gnu.org>
3240         * vc-hooks.el (vc-recompute-state): Move here from vc.el.
3242         * vc-cvs.el (vc-cvs-state): Handle the case where vc-state is
3243         still nil.
3245 2004-11-29  Luc Teirlinck  <teirllm@auburn.edu>
3247         * emulation/tpu-edt.el (tpu-help-keypad-map, tpu-help-text)
3248         (tpu-word-separator-list, tpu-skip-chars): defconst->defvar.
3250 2004-11-29  Jay Belanger  <belanger@truman.edu>
3252         * calc/calc-arith.el (math-pow-of-zero): Take into account different
3253         cases of the base and exponent.
3255 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
3257         * simple.el (next-error-buffer-p): Allow for inclusive and
3258         exclusive tests for finding a buffer.
3259         (next-error-find-buffer): Pass the exclusive and inclusive tests
3260         to next-error-buffer-p.
3262         * replace.el (occur-next-error): Switch to the Occur buffer when
3263         appropriate, use the exclusive filter to next-error-find-buffer to
3264         do it.  Use the absolute value of the motion amount.
3266 2004-11-29  Kenichi Handa  <handa@m17n.org>
3268         * startup.el (command-line): Decode all default-directory by
3269         locale-coding-system.
3271 2004-11-29  Jay Belanger  <belanger@truman.edu>
3273         * calc/calc-aent.el: Remove unnecessary eval-when-compile.
3274         (calc-do-quick-calc, calc-do-calc-eval, calc-alg-entry)
3275         (math-read-expr-level, calc-check-user-syntax, math-read-factor):
3276         Replace calls to calc-extensions by appropriate require, replace
3277         calc-extensions-loaded by appropriate featurep.
3279         * calc/calc-ext.el: Move require to end of file.
3280         Remove redundant loading of calc.el.
3281         (calc-extensions-loaded): Remove unnecessary variable.
3282         (calc-extensions): Remove unnecessary function.
3283         (calc-load-everything): Replace calc-need-macros by appropriate require.
3285         * calc/calc-macs.el: Move provide to end of file.
3286         (calc-need-macros): Remove unnecessary function.
3288         * calc/calc-misc.el (calc-do-handle-whys, calc-last-args-stub)
3289         (calc-missing-key, calc-shift-Y-prefix-help, math-concat)
3290         (math-trunc, math-floor, calcFunc-inv, math-mod, math-pow):
3291         Replace calc-extensions by appropriate require.
3292         (calc-power): Replace calc-extensions-loaded by appropriate featurep.
3294         * calc/calc-prog.el (calc-user-define-formula, calc-do-defmath):
3295         Replace calc-need-macros by appropriate require.
3297         * calc/calc.el: Move require to end of file.
3298         (calc-info-filename, calc-autoload-directory, calc-extensions-loaded):
3299         Remove unnecessary variable.
3300         (calc-do-dispatch, calc-mode, calc-check-defines, calc-create-buffer)
3301         (calc, calc-keypad, full-calc-keypad, calc-do, calc-normalize)
3302         (calc-binary-op, calc-unary-op, calcDigit-start, calcDigit-key)
3303         (math-normalize, math-add, math-mul, math-div, math-format-stack-value)
3304         (math-stack-value-offset, math-format-value, math-format-flat-expr)
3305         (math-format-number, math-format-bignum, math-read-number)
3306         (calc-grab-region, calc-grab-rectangle, calc-grab-sum-down)
3307         (calc-grab-sum-across, calc-embedded, defmath): Replace calc-extensions
3308         by appropriate require.
3309         (calc-check-defines): Replace calc-need-macros by appropriate require.
3311 2004-11-29  Kim F. Storm  <storm@cua.dk>
3313         * macros.el (insert-kbd-macro): Handle kmacro functions.
3315 2004-11-28  Juri Linkov  <juri@jurta.org>
3317         * compare-w.el (compare-windows-highlight): Attach each overlay
3318         to its window to properly highlight differences while comparing
3319         two windows of the same buffer.  Fix arguments.
3320         (compare-windows-sync-default-function): Fix arguments of
3321         `compare-windows-highlight'.
3323         * emacs-lisp/edebug.el (edebug-set-global-break-condition):
3324         Use `read-expression-history'.  Set initial contents only if
3325         `edebug-global-break-condition' is non-nil.  Set histpos to 1
3326         if initial contents is equal to the last history element.
3327         (edebug-set-conditional-breakpoint): Instead of temporarily
3328         prepending the current condition to the history, set initial
3329         contents to the current condition.  Set histpos to 1 if initial
3330         contents is equal to the last history element.
3332         * info.el (Info-search-whitespace-regexp): Remove shy group.
3333         (Info-search): Forward line if search is on the header line.
3334         Use search-whitespace-regexp in two other places.
3336 2004-11-27  Luc Teirlinck  <teirllm@auburn.edu>
3338         * fringe.el (fringe-indicators): Add fake defvar to avoid compiler
3339         warning.  Delay real definition, which uses
3340         `set-fringe-indicators-1' till after the definition of that function.
3342 2004-11-28  Kim F. Storm  <storm@cua.dk>
3344         * fringe.el (fringe): New defgroup.
3345         (fringe-mode): Move to fringe group.
3346         (fringe-indicators): New defcustom.
3347         (set-fringe-indicators-1): New defun.
3349         * menu-bar.el (menu-bar-options-save): Add fringe-indicators.
3350         (menu-bar-showhide-fringe-ind-menu): New keymap.
3351         (menu-bar-showhide-fringe-ind-empty)
3352         (menu-bar-showhide-fringe-ind-mixed)
3353         (menu-bar-showhide-fringe-ind-box)
3354         (menu-bar-showhide-fringe-ind-right)
3355         (menu-bar-showhide-fringe-ind-left)
3356         (menu-bar-showhide-fringe-ind-none): New defuns.
3357         (menu-bar-showhide-fringe-menu): Add "Indicators" sub-menu.
3359 2004-11-27  Richard M. Stallman  <rms@gnu.org>
3361         * comint.el (comint-read-noecho): Add trivial compatibility definition.
3363         * generic.el (define-generic-mode): Doc fix.
3365         * menu-bar.el (menu-bar-options-save): For the options
3366         that are toggled with menu-bar-make-mm-toggle, don't check
3367         for customized-value prop.
3369 2004-11-27  Eli Zaretskii  <eliz@gnu.org>
3371         * mail/supercite.el (sc-cite-region): Handle the case where
3372         sc-cite-frame-alist is a symbol.
3373         (sc-uncite-region): Handle the case where sc-uncite-frame-alist is
3374         a symbol.
3375         (sc-recite-region): Handle the case where sc-recite-frame-alist is
3376         a symbol.
3378 2004-11-27  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
3380         * wid-edit.el (widget-narrow-to-field): New function.
3381         (widget-complete): Use it.
3383 2004-11-27  Jay Belanger  <belanger@truman.edu>
3385         * calc/calc-aent.el (calc-eval-error): Declare and initialize the
3386         variable.
3387         (calc-eval-error): Don't check if the variable calc-eval-error is bound.
3388         (calc-buffer, calc-digit-value, math-expr-data): Declare them.
3389         (math-alg-inequalities): Move declaration to earlier in the file.
3391         * calc/calc-ext.el (calc-command-flags, calc-gnuplot-buffer)
3392         (calc-gnuplot-input, math-normalize-a, math-integral-cache):
3393         Declare them.
3395         * calc/calc-lang.el (math-expr-data, math-expr-token)
3396         (math-exp-old-pos): Declare them.
3398         * calc/calc-vec.el (math-exp-pos, math-exp-str, math-exp-old-pos)
3399         (math-exp-token, math-exp-keep-spaces, math-expr-data): Declare them.
3401 2004-11-27  Kim F. Storm  <storm@cua.dk>
3403         * progmodes/flymake.el: Use (featurep 'xemacs).
3404         (flymake-makehash): Change to defsubst.  Use fboundp.
3405         (flymake-time-to-float): Remove.
3406         (flymake-float-time): Merge code from flymake-time-to-float here.
3407         (flymake-replace-regexp-in-string): Change to defsubst.
3408         (flymake-split-string-remove-empty-edges):
3409         Rename to flymake-split-string.
3410         (flymake-split-string): Remove previous defalias.
3411         (flymake-get-temp-dir): Change to defsubst.
3412         (flymake-make-xemacs-menu, flymake-xemacs-window-edges):
3413         Define for xemacs only.
3414         (flymake-master-file-count-limit): Change into compiler defvar only.
3415         (flymake-find-possible-master-files): Let-bind it dynamically while
3416         sorting files using flymake-master-file-compare.
3418 2004-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3420         * font-lock.el (font-lock-compile-keywords): Don't complain if the end
3421         of defun-prompt-regexp matches inside a comment/string but the
3422         beginning is correctly outside everything.
3424         * progmodes/tcl.el (tcl-omit-ws-regexp): Avoid the case where { or [
3425         appears within a string or a comment.
3427         * emacs-lisp/cl-macs.el (cl-parse-loop-clause, labels): Use gensym
3428         rather than make-symbol for symbols which are used in
3429         a symbol-macrolet or equivalent.
3431 2004-11-26  Jay Belanger  <belanger@truman.edu>
3433         * calc-misc.el (calc-last-why-command): Declare it.
3435         * calc-vec.el (math-grade-vec): New variable.
3436         (calcFunc-grade, calcFunc-rgrade, math-grade-beforep):
3437         Replace variable grade-vec by declared variable.
3438         (math-rb-close): New variable.
3439         (math-read-brackets, math-read-vector): Replace variable close by
3440         declared variable.
3442         * calc/calc-yank.el (calc-original-buffer, calc-return-buffer)
3443         (calc-one-window, calc-edit-handler, calc-restore-trail)
3444         (calc-allow-ret): Declare them.
3446         * calc/calc-stuff.el (calc-flush-caches): Remove unnecessary variables.
3447         (math-lud-cache, math-log2-cache, math-radix-digits-cache)
3448         (math-radix-float-cache-tag, math-random-cache)
3449         (math-max-digits-cache, math-integral-cache, math-units-table)
3450         (math-format-date-cache, math-holidays-cache-tag): Declare them.
3451         (math-moc-func): New variable.
3452         (math-map-over-constants, math-map-over-constants-rec):
3453         Replace variable func by declared variable.
3455         * calc/calc-store.el (calc-given-value, calc-store-opers):
3456         Declare them.
3457         (calc-var-name-map): Move declaration to earlier in the file.
3458         (calc-pv-pos): New variable.
3459         (calc-permanent-variable, calc-insert-permanent-variable):
3460         Replace variable pos by declared variable.
3462         * calc/calc-mtx.el (calc-det-lu): New variable.
3463         (math-det-raw, math-det-step): Replace variable lu by declared variable.
3465         * calc/calc-map.el (math-ms-temp, math-ms-args): New variables.
3466         (math-multi-subst, math-multi-subst-rec): Replace variables temp
3467         and arg by declared variables.
3468         (calcFunc-reducer): Fix incorrect variable.
3469         (math-inner-mul-func, math-inner-add-func): New variables.
3470         (calcFunc-inner, math-inner-mats): Replace variables mul-func
3471         and add-func by declared variables.
3473         * calc/calc-incom.el (calc-prev-char, calc-prev-prev-char)
3474         (calc-digit-value): Declare them.
3476         * calc/calc-help.el (Info-history): Declare it.
3477         (calc-describe-key): Make calc-summary-indentation a local variable.
3478         (calc-help-long-names): Move declaration to earlier in file.
3480         * calc/calc-embed.el (calc-original-buffer): Declare it.
3481         (calc-embed-outer-top, calc-embed-outer-bot, calc-embed-top)
3482         (calc-embed-bot): New variables.
3483         (calc-do-embedded, calc-embedded-mark-formula)
3484         (calc-embedded-find-bounds, calc-embedded-duplicate)
3485         (calc-embedded-new-formula, calc-embedded-make-info):
3486         Replace vars outer-top, outer-bot, bot and top by declared variables.
3487         (calc-embed-prev-modes): New variable.
3488         (calc-embedded-set-modes, calc-embedded-update): Replace variable
3489         prev-modes with declared variable.
3490         (calc-embed-vars-used): New variable.
3491         (calc-embedded-make-info, calc-embedded-evaluate-expr)
3492         (calc-embedded-update, calc-embedded-find-vars): Replace variable
3493         vars-used by declared variable.
3495         * calc/calc-bin.el (math-format-radix-float): Make pos a local variable.
3496         (math-format-radix-float): Remove unnecessary setq.
3497         (math-radix-float-cache): Declare it.
3499         * calc/calcsel2.el (calc-keep-selection): Declare it.
3501         * calc/calc-maint.el: Remove file.
3503 2004-11-26  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3505         * textmodes/bibtex.el (bibtex-sort-entry-class)
3506         (bibtex-comment-start): Use defcustom.
3507         (bibtex-entry-field-alist): Use nil if initial content of the
3508         field is undefined.  Fix docstring.
3509         (bibtex-parse-keys-timeout, bibtex-autokey-additional-names)
3510         (bibtex-generate-autokey, bibtex-parse-buffers-stealthily)
3511         (bibtex-mode, bibtex-field-list, bibtex-entry-updat)
3512         (bibtex-autofill-entry, bibtex-entry-index, bibtex-next-field):
3513         Fix docstring.
3514         (bibtex-autokey-title-terminators): Use only one regexp.
3515         (bibtex-string-maybe-empty-head): New variable.
3516         (bibtex-remove-delimiters-string): New function.
3517         (bibtex-text-in-field-bounds, bibtex-text-in-string):
3518         Use bibtex-remove-delimiters-string.
3519         (bibtex-progress-message, bibtex-field-left-delimiter)
3520         (bibtex-field-right-delimiter, bibtex-entry-left-delimiter)
3521         (bibtex-entry-right-delimiter, bibtex-search-entry): Use eq.
3522         (bibtex-insert-kill): Rename from `bibtex-insert-current-kill'.
3523         Simplify.
3524         (bibtex-format-entry): Use save-excursion for inherited booktitle.
3525         Use eq and bibtex-remove-delimiters-string.  For end markers use
3526         insertion type so that marker stays after inserted text.
3527         (bibtex-autokey-get-names): Return empty string if name is missing.
3528         (bibtex-autokey-demangle-name): Call bibtex-autokey-abbrev before
3529         calling bibtex-autokey-name-case-convert.
3530         (bibtex-autokey-demangle-title):
3531         Call bibtex-autokey-titleword-case-convert.  Remove call to
3532         bibtex-autokey-titleword-case-convert from bibtex-autokey-get-title.
3533         (bibtex-global-key-alist, bibtex-read-string-key): New functions.
3534         (bibtex-read-key): New optional arg global.
3535         (bibtex-files-expand): New optional arg force.
3536         (bibtex-complete-string-cleanup): Expansion of abbrev can be absent.
3537         (bibtex-complete-crossref-cleanup): Rename from
3538         bibtex-complete-key-cleanup.  Simplify code.
3539         (bibtex-copy-summary-as-kill): Remove arg key.  Use looking-at.
3540         Operate on current entry.
3541         (bibtex-button): Add docstring.
3542         (bibtex-entry): Simplify.
3543         (bibtex-make-field): Replace optional arg called-by-yank with more
3544         specific args move and interactive.
3545         (bibtex-end-of-entry): Use forward-sexp.
3546         (bibtex-find-entry-globally): Remove.
3547         (bibtex-find-crossref): Allow for crossref key located in other buffer.
3548         Bound to C-c C-x.
3549         (bibtex-find-entry): New optional args global and display.
3550         (bibtex-find-text): Fix docstring.  Remove arg as-if-interactive.
3551         (bibtex-validate): Use arg force of bibtex-files-expand.
3552         (bibtex-clean-entry): Bugfix, clean string entries properly.
3553         Always keep point at beginning of entry.
3554         (bibtex-complete): Bugfix.  Handle string entries properly.
3555         Call cleanup functions only if needed.
3556         (bibtex-String): Use bibtex-read-string-key.
3557         (bibtex-url): Use bibtex-remove-delimiters-string.  Do not alter
3558         case of replacement text.
3560 2004-11-26  Lars Hansen  <larsh@math.ku.dk>
3562         * tramp.el (tramp-handle-directory-files-and-attributes): New function.
3563         (tramp-perl-directory-files-and-attributes): New constant.
3564         (tramp-file-name-handler-alist): Delete file-directory-files, add
3565         directory-files-and-attributes.
3566         (tramp-perl-file-attributes): Surround uid and gid by double
3567         quotes. Change parameter id-format from nonnumeric.
3568         (tramp-convert-file-attributes): New function.
3569         (tramp-handle-file-attributes): Use it.
3570         (tramp-maybe-send-perl-script): New function.
3571         (tramp-handle-file-attributes-with-perl): Use it. Don't convert
3572         file mode. Change parameter id-format from nonnumeric.
3573         (tramp-handle-file-attributes-with-ls): Change parameter id-format
3574         from nonnumeric.
3575         (tramp-post-connection): Don't send tramp-perl-file-attributes
3576         script. Reset connection property "perl-scripts".
3577         (tramp-handle-insert-directory): Run real handler when ls-lisp is
3578         in use.
3580 2004-11-26  Lars Hansen  <larsh@math.ku.dk>
3582         * desktop.el (desktop-read): Replace mapcar with mapc.
3583         (desktop-create-buffer): Replace mapcar with mapc.
3584         Remove redundant piece of code.
3586 2004-11-27  Nick Roberts  <nickrob@snap.net.nz>
3588         * progmodes/gud.el (gud-display-line): Use display-buffer
3589         for GDB-UI as for GUD.
3591         * progmodes/gdb-ui.el (gdb-view-source, gdb-selected-view):
3592         Delete variables.
3593         (gdb-ann3): Don't make GUD buffer dedicated.
3594         (gdb-goto-breakpoint, gdb-display-buffer): Don't always dedicate.
3595         (gdb-display-source-buffer): Delete function.
3596         (gdb-view-source-function, gdb-view-assembler): Delete functions.
3597         (menu): Delete menu bindings for viewing source/assembler.
3598         (gdb-setup-windows, gdb-restore-windows):
3599         Don't dedicate GUD. No assembler now.
3600         (gdb-reset): No need to undedicate source buffers now.
3601         (gdb-source-info): No assembler now.
3603 2004-11-26  Nick Roberts  <nickrob@snap.net.nz>
3605         * progmodes/gdb-ui.el (gdb-frame-parameters): Match height and
3606         width to those for special frames.
3607         (gdb-frame-breakpoints-buffer): Use gdb-frame-parameters.
3608         Use display-buffer.
3609         (gdb-frame-stack-buffer, gdb-frame-threads-buffer)
3610         (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
3611         (gdb-frame-assembler-buffer): Rework like
3612         gdb-frame-breakpoints-buffer.
3614 2004-11-25  Richard M. Stallman  <rms@gnu.org>
3616         * progmodes/flymake.el: Reindent.
3617         (flymake-split-string): Turn into defalias.
3618         (flymake-fix-file-name): Rename from flymake-fix-path-name.
3619         (flymake-ensure-ends-with-slash): Rename arg to FILENAME.
3620         (flymake-get-common-file-prefix): Rename from ...path...  Doc fix.
3621         (flymake-build-relative-filename): Rename from ...path.
3622         Fix error message.
3624 2004-11-25  Cheng Gao  <chenggao@gmail.com>
3626         * progmodes/flymake.el: Much whitespace and capitalization change.
3627         Move `provide' to end.  Require `compile' only when compiling.
3629 2004-11-24  Jay Belanger  <belanger@truman.edu>
3631         * calc/calc-alg.el: Added comment.
3632         (math-polynomial-base): Replace variable mpb-top-expr by
3633         math-poly-base-top-expr.
3635         * calc/calc-poly.el (math-poly-base-top-expr): New variable.
3636         (math-polynomial-p1): Replace variable mpb-top-expr by declared
3637         variable.
3638         (math-poly-base-total-base): New variable.
3639         (math-total-polynomial-base, math-polynomial-p1): Replace variable
3640         mpb-total-base by declared variable.
3641         (math-factored-vars, math-to-list): Declare it.
3642         (math-fact-expr): New variable.
3643         (calcFunc-factors, calcFunc-factor, math-factor-expr)
3644         (math-factor-expr-try, math-factor-expr-part): Replace variable
3645         expr by declared variable.
3646         (math-fet-x): New variable.
3647         (math-factor-expr-try, math-factor-poly-coefs): Replace variable x
3648         by declared variable.
3649         (math-factor-poly-coefs): Make temp a local variable.
3651         * calc/calc-units.el (calc-convert-units): Make units a local
3652         variable.
3653         (calc-num-units, calc-den-units): New variables.
3654         (calc-explain-units, calc-explain-units-rec): Replace variables
3655         num-units and den-units by declared variables.
3656         (math-cu-unit-list): New variable.
3657         (math-build-units-table, math-compare-unit-names)
3658         (math-convert-units, math-convert-units-rec): Replace variable
3659         unit-list by declared variable.
3660         (math-fbu-base, math-fbu-entry): New variables.
3661         (math-find-base-units, math-find-base-units-rec): Replace variables
3662         base and entry by declared variables.
3663         (math-which-standard): New variable.
3664         (math-to-standard-units, math-to-standard-rec): Replace variable
3665         which-standard by declared variable.
3666         (math-fcu-u): New variable.
3667         (math-find-compatible-unit, math-find-compatible-unit-rec):
3668         Replace variable u by declared variable.
3669         (math-cu-new-units, math-cu-pure): New variables.
3670         (math-convert-units, math-convert-units-rec): Replace variables
3671         new-units and pure by declared variables.
3672         (math-try-cancel-units): New variable.
3673         (math-simplify-units-quotient): Replace variable try-cancel-units by
3674         declared variable.
3676 2004-11-24  Richard M. Stallman  <rms@gnu.org>
3678         * textmodes/ispell.el (ispell-check-version):
3679         If default-directory is nonexistent, use home dir.
3681         * progmodes/grep.el (grep-regexp-alist):
3682         Don't match parens around line numbers.
3684         * progmodes/cperl-mode.el (cperl-indent-region)
3685         (cperl-imenu--create-perl-index, cperl-xsub-scan):
3686         Don't print progress messages.
3688         * progmodes/compile.el (compilation-mode-map):
3689         Don't inherit from compilation-minor-mode-map;
3690         copy its bindings instead.  But the menu bar Compile
3691         entry now does inherit from compilation-menu-map.
3693         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
3694         Use with-no-warnings around compiler-macroexpand.
3696         * imenu.el: Don't always require newcomment.
3697         (imenu--generic-function): Call comment-normalize-vars
3698         if we have a comment syntax.
3699         Exit the loop if REGEXP matches the null string.
3700         Test comment-start as well as comment-start-skip
3701         when deciding whether to check for comments.
3703         * tooltip.el (tooltip-mode): Doc fix.
3705         * term.el (term-escape-char, term-mode): Doc fixes.
3707 2004-11-24  Dave Love  <fx@gnu.org>
3709         * progmodes/python.el (python-font-lock-syntactic-keywords):
3710         Check for escapes in the regexp.
3711         (python-quote-syntax): Don't do it here.
3713 2004-11-24  Nick Roberts  <nickrob@snap.net.nz>
3715         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
3716         (gdb-frames-mode-map, gdb-threads-mode-map)
3717         (gdb-registers-mode-map, gdb-locals-mode-map)
3718         (gdb-assembler-mode-map): Bind "q" to kill-this-buffer.
3719         (gdb-set-window-buffer): Rename from dedicated-switch-to-buffer.
3721         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>:
3722         (dedicated-switch-to-buffer): Rework.
3723         (gdb-var-evaluate-expression-handler, gdb-put-string):
3724         Remove unused variable bindings.
3725         (gdb-setup-windows, gdb-display-buffer):
3726         Simplify. Use pop-to-buffer.
3727         (gdb-view-source-function): Simplify.
3728         (gdb-frame-breakpoints-buffer):
3729         Use pop-to-buffer, special-display-regexps.
3731 2004-11-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
3733         * progmodes/f90.el (f90-smart-end)
3734         (f90-previous-statement, f90-beginning-of-block): Doc fix.
3735         (f90-calculate-indent): Handle un-named PROGRAM blocks.
3736         (f90-end-of-block): Doc fix.  Make check of outermost block
3737         conditional on value of `f90-smart-end'.
3738         (f90-block-match): Hack to deal with un-named PROGRAM blocks.
3739         Handle case where END-BLOCK is nil.
3740         (f90-match-end): Handle un-named PROGRAM blocks.
3741         (f90-backslash-not-special): New function.
3743 2004-11-24  Jay Belanger  <belanger@truman.edu>
3745         * calc/calc.el (calc-embedded-active): Removed unnecessary
3746         declaration.
3747         (calc-show-banner): Removed redundant declaration.
3749         * calc/calc-graph.el (calc-gnuplot-default-device)
3750         (calc-gnuplot-default-output, calc-gnuplot-print-device)
3751         (calc-gnuplot-print-output, calc-gnuplot-geometry)
3752         (calc-graph-default-resolution, calc-graph-default-resolution-3d):
3753         Remove redundant initial values.
3755         * calc/calc-arith.el (math-scalar-functions)
3756         (math-nonscalar-functions, math-scalar-if-args-functions)
3757         (math-real-functions, math-positive-functions)
3758         (math-nonnegative-functions, math-real-scalar-functions)
3759         (math-real-if-arg-functions, math-integer-functions)
3760         (math-num-integer-functions, math-rounding-functions)
3761         (math-float-rounding-functions, math-integer-if-args-functions)
3762         (math-super-types): Move declarations to earlier in file.
3763         (math-unit-prefixes): Declared it.
3764         (math-floor-prec, math-trunc-prec): New variables.
3765         (math-trunc-fancy): Replace variable prec by declared variable.
3766         (math-floor-fancy): Replace variable prec by declared variable.
3767         (math-com-bterms): New variable.
3768         (math-commutative-equal, math-commutative-collect):
3769         Replace variable bterms by declared variable.
3771         * calc/calc-misc.el (math-trunc): Replace variable prec by
3772         math-trunc-prec.
3773         (math-floor): Replace variable prec by math-floor-prec.
3775         * calc/calc-forms.el (math-fd-date, math-fd-dt, math-fd-year)
3776         (math-fd-month, math-fd-day, math-fd-weekday, math-fd-hour)
3777         (math-fd-minute, math-fd-second, math-fd-bc-flag): New variables.
3778         (math-format-date, math-format-date-part): Replace variables
3779         date, dt, year, month, day, weekday, hour, minute, second and
3780         bc-flag by declared variables.
3781         (math-pd-str): New variable.
3782         (math-parse-date, math-parse-date-word, math-parse-standard-date):
3783         Replace variable str by declared variable.
3784         (math-daylight-savings-hook, math-tzone-names): Move definitions
3785         to earlier in the file.
3786         (var-TimeZone, math-exp-str, math-exp-pos): Declare them.
3787         (math-sh-year): New variable.
3788         (math-setup-add-holidays, math-setup-holidays)
3789         (math-setup-year-holidays): Replace variable `year' by declared
3790         variable.
3792         * calc/calc-math.el (math-nrf-n, math-nrf-nf, math-nrf-nfm1):
3793         New variables.
3794         (math-nth-root-float, math-nth-root-float-iter): Replace variables
3795         n, nf and nfm1 by declared variables.
3796         (math-nri-n): New variable.
3797         (math-nth-root-integer, math-nth-root-int-iter): Replace variable
3798         n by declared variable.
3799         (calcFunc-log): Removed misplaced condition.
3801 2004-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3803         * generic.el (generic-mode-set-comments): Accept an empty comment-end.
3805 2004-11-24  Nick Roberts  <nickrob@snap.net.nz>
3807         * progmodes/gdb-ui.el (dedicated-switch-to-buffer): New function.
3808         (gdb-ann3, gdb-setup-windows, gdb-restore-windows):
3809         Dedicate gdb-related windows.
3810         (gdb-display-buffer): Dedicate gdb-related windows. Don't grab
3811         other frames.
3812         (gdb-reset): Remove dedicated property after debugging.
3814 2004-11-24  Jay Belanger <belanger@truman.edu>
3816         * calc/calc-sel.el: Add comment.
3818         * calc/calc.el (math-stack-value-offset): Replace variables c,
3819         wid and off with math-svo-c, math-svo-wid and math-svo-off.
3821         * calc/calccomp.el (math-comp-sel-tag): Declare it.
3822         (math-svo-c, math-svo-wid, math-svo-off): New variables.
3823         (math-stack-value-offset-fancy): Replace variables c, wid and off
3824         by declared variables.
3825         (math-comp-just, math-comp-comma-spc): New variables.
3826         (math-compose-expr, math-compose-matrix): Replace variables `just'
3827         and comma-spc by declared variable.
3828         (math-comp-vector-prec): New variable.
3829         (math-compose-expr, math-compose-matrix, math-compose-rows):
3830         Replace variable vector-prec by declared variable.
3831         (math-comp-left-bracket, math-comp-right-bracket)
3832         (math-comp-comma): New variables.
3833         (math-compose-expr, math-compose-rows): Replace variables
3834         left-bracket, right-bracket and comma by declared variables.
3835         (math-comp-full-width): New variable.
3836         (math-comp-to-string-flat, math-comp-to-string-flat-term):
3837         Replace variable full-width by declared variable.
3838         (math-comp-highlight, math-comp-word, math-comp-level)
3839         (math-comp-margin, math-comp-pos, math-comp-buf, math-comp-base)
3840         (math-comp-hgt, math-comp-tag, math-comp-hpos, math-comp-vpos):
3841         New variables.
3842         (math-comp-to-string-flat, math-comp-to-string-flat-term)
3843         (math-comp-sel-flat-term): Replace variables comp-highlight,
3844         comp-word, comp-level, comp-margin, comp-pos and comp-buf by
3845         declared variables.
3846         (math-comp-simplify, math-comp-simplify-term)
3847         (math-comp-add-string, math-comp-add-string-sel):
3848         Replace variables comp-highlight, comp-buf, comp-base,
3849         comp-height, comp-tag, comp-hpos and comp-vpos by declared variables.
3851 2004-11-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3853         * cus-start.el (all): Add x-use-old-gtk-file-dialog.
3855         * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
3856         and x-server-version may throw.
3858 2004-11-23  Kim F. Storm  <storm@cua.dk>
3860         * subr.el (substitute-key-definition-key): Optimize.
3861         Don't call indirect-function for nil defn (always signals error).
3863         * ido.el (ido-read-internal): Fix require-match check when
3864         ido-directory-too-big is set.
3866 2004-11-23  Jay Belanger  <belanger@truman.edu>
3868         * calc/calc-ext.el (math-read-replacement-list)
3869         (math-read-superscripts): New variables.
3870         (math-read-preprocess-string): New function.
3871         (math-read-expr): Filter input through math-read-preprocess-string.
3873         * calc/calc-aent.el (math-read-exprs): Filter input through
3874         math-read-preprocess-string.
3876 2004-11-23  Daniel Pfeiffer  <occitan@esperanto.org>
3878         * progmodes/compile.el (compilation-start): In cd command use
3879         substitute-env-vars -- not quite shell compatible but better than
3880         nothing.
3881         (compilation-error-regexp-alist-alist): Simplify ftnchek to only
3882         handle the newer versions messages, which are more parseable.
3884 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3886         * reveal.el (reveal-mode-map): New var.
3887         (reveal-mode): Use it.
3889 2004-11-23  Nick Roberts  <nickrob@snap.net.nz>
3891         * progmodes/gdb-ui.el (gdb-flush-pending-output): New variable.
3892         (gdb-send-item, gdb-resync, gud-gdba-marker-filter): Use it.
3894 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3896         * buff-menu.el (list-buffers-noselect): Re-add the leading space in the
3897         header-line when needed.
3898         Use fixed-pitch only in the header-line.
3899         Build the underline automatically.  Use emdash if available.
3901 2004-11-22  Richard M. Stallman  <rms@gnu.org>
3903         * dired.el (dired-recursive-copies): Move from dired-aux.el.
3904         * dired-aux.el (dired-recursive-copies): Move to dired.el.
3906 2004-11-22  Nick Roberts  <nickrob@snap.net.nz>
3908         * progmodes/gdb-ui.el (gdb-resync): New function.
3909         (gdb-pre-prompt, gdb-prompt, gdb-starting, gdb-stopping)
3910         (gdb-frame-begin, gdb-stopped, gdb-post-prompt):
3911         Use it to fail more gracefully.
3912         (gdb-variables): Delete variable.
3913         Re-order variables to reduce byte-compiler warnings.
3915 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3917         * descr-text.el (describe-char):
3918         * paren.el (show-paren-function):
3919         * subr.el (syntax-after): Undo last change.
3921         * progmodes/python.el (run-python): Don't hard code *Python*.
3922         Don't modify global process-environment.
3923         (python-send-region, python-load-file): Don't assume that
3924         python-buffer == (process-buffer (python-proc)).
3925         (python-switch-to-python): Simplify.
3927         * dired.el (dired-align-file): Don't assume line starts with spaces.
3929 2004-11-21  Jay Belanger  <belanger@truman.edu>
3931         * calc/calc-ext.el (math-read-big-expr, math-read-big-bigp):
3932         Replace variable `lines' by math-read-big-lines.
3933         (math-read-big-expr): Replace variables the-baseline, the-h2
3934         and err-msg by math-read-big-baseline, math-read-big-h2 and
3935         math-read-err-msg.
3936         (math-read-big-bigp): Replace variable h2 with math-rb-h2.
3938         * calc/calc-lang.el (math-read-big-rec): Fix typo.
3939         (math-read-big-balance): Replace unbound variable by value.
3940         (math-read-big-lines): New variable.
3941         (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
3942         (math-read-big-error, math-read-big-balance): Replace variable
3943         `lines' by declared variable.
3944         (math-read-big-baseline, math-read-big-h2): New variables.
3945         (math-read-big-rec): Replace variables the-baseline and the-h2
3946         by declared variables.
3947         (math-rb-h1, math-rb-h2, math-rb-v1, math-rb-v2): New variables.
3948         (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
3949         (math-read-big-balance): Replace variables h1, h2, v1 and v2 by
3950         declared variables.
3951         (math-read-big-err-msg): New variable.
3952         (math-read-big-error): Replace variable err-msg by declared variable.
3954 2004-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3956         * ses.el: Add coding cookie.
3957         Fix up docstrings, follow new commenting conventions.
3958         (ses-header-line-menu): Fix missing variable rename for header-row.
3959         (ses-cell-size): Remove.
3960         (ses-make-cell): New function.
3961         (ses-cell, ses-insert-row, ses-insert-column): Use it.
3962         (ses-calculate-cell): Remove unused var `symbol'.
3963         (ses-narrowed-p): New function.
3964         (ses-goto-data, undo-more, ses-reconstruct-all): Use it.
3965         (ses-initial-file-trailer): Change ;;; to ;; for local vars.
3966         (ses-load, ses-reconstruct-all): Adjust string search accordingly.
3967         (ses-setup): Use restore-buffer-modified-p.
3968         (ses-cleanup): Remove unused var `end'.
3969         (ses-header-string-left-offset): Remove.
3970         (ses-create-header-string): Adjust to new behavior of `align-to'.
3971         Truncate excessively large fields to preserve alignment.
3972         (ses-reconstruct-all): Remove unused var `refs'.
3973         (ses-read-cell-printer): Remove unused var `prompt'.
3974         (ses-delete-row): Remove unused var `pos'.
3975         (ses-delete-column): Remove unused var `new'.
3977 2004-11-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3979         * ps-print.el: Insert :version tag into all defgroup and defcustom.
3980         Use (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
3981         Eliminate eval-and-compile usage.
3982         (ps-insert-file): Use insert-file-contents instead of insert-file.
3983         (ps-setup): Code fix.
3985         * printing.el (pr-setup, lpr-setup): Code fix.
3987 2004-11-21  Jay Belanger  <belanger@truman.edu>
3989         * calc/calc-prog.el (math-integral-cache-state, calc-lang)
3990         (calc-original-buffer): Declare them.
3991         (calc-user-formula-alist): New variable.
3992         (calc-user-define-formula, calc-fix-user-formula)
3993         (calc-user-define-composition, calc-finish-formula-edit):
3994         Replace variable `alist' by declared variable.
3995         (var-q0, var-q1, var-q2, var-q3, var-q4, var-q5, var-q6)
3996         (var-q7, var-q7, var-q8, var-q9): Declare them.
3997         (calc-kbd-push): Don't check to see if var-q0 through var-q9
3998         are bound.
3999         (calcFunc-typeof): Replace undeclared variable by expression.
4000         (math-exp-env): New variable.
4001         (math-define-body, math-define-exp): Replace exp-env by declared var.
4002         (math-define-exp): Replace misplaced variable by expression.
4004         * calc/calcalg3.el (calc-curve-nvars, calc-curve-varnames)
4005         (calc-curve-model, calc-curve-coefnames): New variables.
4006         (calc-curve-fit, calc-get-fit-variables): Replace variables nvars,
4007         varnames, model and coefnames by declared variables.
4008         (math-root-widen): New variable.
4009         (math-search-root, math-find-root): Replace variable root-widen by
4010         declared variable.
4011         (var-DUMMY): Declare it.
4012         (math-root-vars, math-min-vars): Move the declarations to earlier in
4013         the file.
4014         (math-brent-min): Make d a local variable.
4015         (math-find-minimum): Replace non-existent variable.
4016         (math-ninteg-romberg): Remove unnecessary variable.
4017         (math-ninteg-temp): New variable.
4018         (math-ninteg-romberg, math-ninteg-midpoint): Replace variable
4019         integ-temp by declared variable.
4020         (math-fit-first-var, math-fit-first-coef, math-fit-new-coefs):
4021         New variables.
4022         (math-general-fit): Replace variables first-var, first-coef and
4023         new-coefs by declared variables.
4024         (calcFunc-fitvar): Replace variable first-var by declared variable.
4025         (calcFunc-fitparam): Replace variable first-coef by declared variable.
4026         (calcFunc-fitdummy): Replace variable new-coefs by declared variable.
4027         (math-all-vars-vars, math-all-vars-found): New variables.
4028         (math-all-vars-in, math-all-vars-rec): Replace variables vars and
4029         found by declared variable math-all-vars-vars.
4031 2004-11-20  Luc Teirlinck  <teirllm@auburn.edu>
4033         * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead
4034         of `defconst'.
4036 2004-11-20  Richard M. Stallman  <rms@gnu.org>
4038         * isearch.el (isearch-mode-map): Don't bind SPC.
4039         (isearch-whitespace-chars): Function deleted.
4040         (isearch-search): Bind search-spaces-regexp.
4041         (isearch-lazy-highlight-search): Likewise.
4042         (search-whitespace-regexp): Doc fix.
4043         (isearch-forward-regexp): Doc fix.
4045         * emacs-lisp/bytecomp.el (byte-compile-form):
4046         Move the calls to byte-compile-set-symbol-position,
4047         to avoid having two for the same symbol occurrence.
4049         * comint.el (comint-input-ring-size): Increase to 150.
4051         * hexl.el (hexl-mode-old-hl-line-mode, hexl-mode-old-ruler-mode):
4052         New variables.
4053         (hexl-mode): Set those variables, record ruler-mode and hl-line-mode.
4054         (hexl-mode-exit): Restore status of ruler-mode and hl-line-mode.
4056         * imenu.el (imenu--generic-function):
4057         Ensure we keep moving backward even if BEG isn't further back.
4059         * replace.el (query-replace-read-to, query-replace-read-from):
4060         Specify t for KEEP-ALL in read-from-minibuffer.
4062         * progmodes/python.el (python-switch-to-python):
4063         If Python isn't running, start it.
4064         Don't alter debug-ignored-errors.
4066         * progmodes/cperl-mode.el (cperl-indent-region):
4067         Don't mind imenu-scanning-message.
4069         * bindings.el (global-map): Bind C-e to move-end-of-line.
4071         * simple.el (line-move-finish): New arg FORWARD.
4072         Ignore invisible newlines, not intangible ones.
4073         Conditions for acceptable stopping positions depend on FORWARD.
4074         (line-move): Pass FORWARD arg to line-move-finish.
4076         * buff-menu.el (list-buffers-noselect): Eliminate space at the start
4077         of HEADER.  Compensate for this change in the code to add display
4078         properties.  Don't make the first line intangible.
4080         * info.el (Info-search): Fix previous change.
4082 2004-11-20  Thien-Thi Nguyen  <ttn@gnu.org>
4084         * Makefile.in (recompile): Revert 2004-11-19 change.
4085         (compile): Likewise.
4087 2004-11-19  Luc Teirlinck  <teirllm@auburn.edu>
4089         * Makefile.in (compile): Set `max-specpdl-size' before compiling.
4091 2004-11-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4093         * progmodes/ebnf2ps.el: Fix typos.  Insert :version tag into all
4094         defgroup and defcustom.  Eliminate eval-and-compile usage.
4096         * progmodes/ebnf-otz.el: Fix typos.
4098 2004-11-19  Jay Belanger  <belanger@truman.edu>
4100         * calc/calc-yank.el (calc-edit-disp-trail): New variable.
4101         (calc-edit-finish, calc-finish-stack-edit): Replace variable
4102         disp-trail by declared variable.
4104         * calc/calc-sel.el (calc-edit-disp-trail): Declare it.
4105         (calc-finish-selection-edit):  Replace variable disp-trail by
4106         declared variable.
4107         (calc-selection-cache-entry): Move declaration to earlier in the file.
4108         (calc-selection-cache-num, calc-selection-cache-comp)
4109         (calc-selection-cache-offset, calc-selection-true-num)
4110         (calc-final-point-line, calc-final-point-column)
4111         (calc-original-buffer): Declare them.
4112         (calc-fnp-op, calc-fnp-num): New variables.
4113         (calc-find-nth-part, calc-find-nth-part-rec)
4114         (calc-select-previous): Replace op and num by declared variables.
4115         (calc-rsf-old, calc-rsf-new): New variables.
4116         (calc-replace-sub-formula, calc-replace-sub-formula-rec):
4117         Replace variables old and new by declared variables.
4118         (calc-sel-reselect): New variable.
4119         (calc-auto-selection, calc-enter-selection, calc-edit-selection)
4120         (calc-sel-evaluate, calc-sel-expand-formula, calc-sel-expand-formula)
4121         (calc-sel-mult-both-sides, calc-sel-add-both-sides):  Replace variable
4122         reselect with declared variable.
4124         * calc/calc-rewr.el (math-regs, math-num-regs, math-prog-last)
4125         (math-bound-vars, math-conds, math-copy-neg, math-rhs)
4126         (math-pattern, math-remembering, math-aliased-vars, math-mt-many)
4127         (math-import-list, math-rewrite-phase): Declare them.
4128         (math-rewrite):  Use let* to declare variables.
4129         (calc-rewrite-selection): Make rules a local variable.
4130         (calc-rewr-sel): New variable.
4131         (calc-rewrite-selection, calc-locate-selection-marker)
4132         (calc-rewrite): Use the declared variable calc-rewr-sel instead
4133         of sel.
4134         (math-rewrite-whole-expr): New variable.
4135         (math-rewrite, math-rewrite-phase): Replace variable expr by
4136         declared variable.
4137         (math-rewrite-heads-heads, math-rewrite-heads-skips)
4138         (math-rewrite-heads-blanks ): New variables.
4139         (math-rewrite-heads, math-rewrite-heads-rec): Replace variables
4140         heads, skips and blanks by declared variables.
4141         (math-rwcomp-subst-old, math-rwcomp-subst-new)
4142         (math-rwcomp-subst-old-func, math-rwcomp-subst-new-func):
4143         New variables.
4144         (math-rwcomp-substitute, math-rwcomp-subst-rec): Replace variables
4145         old, new, old-func and new-func by declared variables.
4146         (math-rwcomp-assoc-args, math-rwcomp-addsub-args):
4147         Remove unnecessary variable.
4148         (math-apply-rw-regs): New variable.
4149         (math-apply-rewrites, math-rwapply-replace-regs)
4150         (math-rwapply-reg-looks-negp): Replace variable regs by declared var.
4151         (math-apply-rw-ruleset): New variable.
4152         (math-apply-rewrites, math-rwapply-remember): Replace variable
4153         ruleset by declared variable.
4155 2004-11-19  Richard M. Stallman  <rms@gnu.org>
4157         * info.el (Info-search): Use search-whitespace-regexp.
4159 2004-11-19  Thien-Thi Nguyen  <ttn@gnu.org>
4161         * vc-rcs.el (vc-rcs-parse): New function.
4162         (vc-rcs-annotate-command): Likewise.
4163         (vc-rcs-annotate-current-time): Likewise.
4164         (vc-rcs-annotate-time): Likewise.
4165         (vc-rcs-annotate-extract-revision-at-line): Likewise.
4167 2004-11-19  Thien-Thi Nguyen  <ttn@gnu.org>
4169         * Makefile.in (recompile): Set `max-specpdl-size' before compiling.
4171 2004-11-18  Jay Belanger  <belanger@truman.edu>
4173         * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary vars.
4175 2004-11-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4177         * printing.el: Eliminate use of interactive-p and eval-and-compile.
4178         Use of (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
4179         Use make-temp-file to generate PostScript files in any situation.
4180         (pr-ps-temp-file): Now specify a prefix to generate temporary files.
4181         (pr-interactive-p): Eliminate var.
4182         (pr-save-interactive): Eliminate macro.
4183         (pr-interface, pr-ps-directory-preview)
4184         (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
4185         (pr-ps-directory-ps-print, pr-ps-buffer-preview)
4186         (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
4187         (pr-ps-buffer-ps-print, pr-ps-region-preview)
4188         (pr-ps-region-using-ghostscript, pr-ps-region-print)
4189         (pr-ps-region-ps-print, pr-ps-mode-preview)
4190         (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
4191         (pr-printify-directory, pr-txt-directory, pr-despool-preview)
4192         (pr-despool-using-ghostscript, pr-despool-print, pr-despool-ps-print)
4193         (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
4194         (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
4195         (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
4196         (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
4197         (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
4198         (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
4199         (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
4200         (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
4201         (pr-update-menus, pr-interface-ps-prin, pr-interface-preview):
4202         Eliminate pr-save-interactive usage.
4203         (pr-menu-lock, pr-ps-utility-args, pr-set-outfilename):
4204         Eliminate pr-interactive-p usage.
4205         (pr-toggle-file-duplex-menu, pr-toggle-file-tumble-menu)
4206         (pr-toggle-file-landscape-menu, pr-toggle-ghostscript-menu)
4207         (pr-toggle-faces-menu, pr-toggle-spool-menu, pr-toggle-duplex-menu)
4208         (pr-toggle-tumble-menu, pr-toggle-landscape-menu)
4209         (pr-toggle-upside-down-menu, pr-toggle-line-menu, pr-toggle-zebra-menu)
4210         (pr-toggle-header-menu, pr-toggle-header-frame-menu)
4211         (pr-toggle-lock-menu, pr-toggle-region-menu, pr-toggle-mode-menu):
4212         New funs.
4213         (pr-ps-file): Use make-temp-file to generate a temporary file.
4215 2004-11-17  Jay Belanger  <belanger@truman.edu>
4217         * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder
4218         a local variable.
4219         (math-eval-rules-cache, math-eval-rules-cache-other): Declare them.
4220         (math-top-only): New variable.
4221         (math-simplify, math-simplify-step): Replace variable top-only by
4222         declared variable math-top-only.
4223         (math-simplify-expr): Declare it.
4224         Replace argument expr in all calls of math-defsimplify by
4225         math-simplify-expr.
4226         (math-simplify-plus, math-simplify-times, math-simplify-divide)
4227         (math-simplify-divisor, math-simplify-one-divisor)
4228         (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)
4229         (math-simplify-pow): Replace variable expr by declared variable
4230         math-simplify-expr.
4231         (math-simplify-divisor): Remove local variables temp and op.
4232         (math-simplify-one-divisor): Make temp and op local variables.
4233         (math-simplify-divisor-nover, math-simplify-divisor-dover):
4234         New variables.
4235         (math-simplify-divisor, math-simplify-one-divisor):
4236         Replace variables nover and dover by declared variables.
4237         (math-expr-subst-new, math-expr-subst-old): New variables.
4238         (math-expr-subst, math-expr-subst-rec): Replace variables new
4239         and old by declared variables.
4240         (math-is-poly-degree, math-is-poly-loose): New variables.
4241         (math-is-polynomial, math-is-poly-rec): Replace variables degree
4242         and loose by declared variables.
4243         (math-poly-base-const-ok, math-poly-base-pred): New variables.
4244         (math-polynomial-base, math-polynomial-base-rec):
4245         Replace variables const-ok and mpb-pred by declared variables.
4247         * calc/calc-poly.el (calc-poly-div-remainder): Declare it.
4249         * calc/calc-ext.el (math-defsimplify): Change the argument in
4250         the created function to math-simplify-expr.
4252         * calc/calc-units.el (math-simplify-expr): Declare it.
4253         Replace argument expr in all calls of math-defsimplify by
4254         math-simplify-expr.
4255         (math-simplify-units-prod): Replace variable expr by declared
4256         variable math-simplify-expr.
4258 2004-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4260         * buff-menu.el (list-buffers-noselect): Massage to fit in 80 columns.
4261         Replace mapcar->dolist, format->string.
4263 2004-11-17  Miles Bader  <miles@gnu.org>
4265         * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
4266         * progmodes/idlwave.el: Remove RCS keywords.
4268 2004-11-17  J.D. Smith  <jdsmith@as.arizona.edu>
4270         * progmodes/idlwave.el, progmodes/idlw-toolbar.el
4271         * progmodes/idlw-shell.el, progmodes/idlw-rinfo.el:
4272         Update to IDLWAVE version 5.5.  Too many changes to list them here.
4273         * progmodes/idlw-help.el: New file.
4275 2004-11-16  Richard M. Stallman  <rms@gnu.org>
4277         * international/iso-cvt.el (iso-tex2iso-trans-tab):
4278         Discard spaces after \i according to TeX rules.
4280         * international/mule.el (set-buffer-file-coding-system):
4281         New arg NOMODIFY.
4282         (after-insert-file-set-coding): Pass that new arg.
4283         Prevent set-buffer-multibyte from trying to lock the file.
4285         * buff-menu.el (list-buffers-noselect): New arg BUFFER-LIST.
4287         * saveplace.el (save-place): Doc fix.
4289         * dabbrev.el (dabbrev-expand): When handling SPC M-/,
4290         temporarily widen before finding the following word to copy.
4292         * emacs-lisp/lucid.el (map-keymap): Definition deleted.
4293         (cl-map-keymap): Definition deleted.
4295         * subr.el (map-keymap-internal): New function.
4297 2004-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4299         * textmodes/flyspell.el (flyspell-mouse-map): Pop the menu
4300         when pressing rather than when releasing mouse-2.  Simplify.
4302 2004-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4304         * progmodes/compile.el (compilation-setup): Don't set buffer-read-only.
4305         (compilation-mode): Set it here instead.
4307         * emacs-lisp/cl-compat.el (pair-with-newsyms): Use make-symbol.
4309         * emacs-lisp/cl-macs.el: Use make-symbol rather than gensym.
4310         (loop, cl-parse-loop-clause, defsetf): Use backquote.
4312 2004-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4314         * progmodes/compile.el (compilation-internal-error-properties):
4315         Fix up a transposition-typo.  Check end-col before using it.
4317 2004-11-14  Frederic Han  <han@math.jussieu.fr>  (tiny change)
4319         * international/iso-cvt.el (iso-tex2iso-trans-tab):
4320         Discard whitespace after macro \i when converting it.
4322 2004-11-16  Juri Linkov  <juri@jurta.org>
4324         * emacs-lisp/find-func.el (find-function-regexp):
4325         Optimize `define-minor-mode'.  Add `defun-cvs-mode'.
4326         Add `deffoo'.  Add `f' to [^cgv] to exclude `defface'.
4327         Remove invalid `\W' from [^cgv\W].  Doc fix.
4328         (find-function-search-for-symbol): Replace "\\>" with "\\_>".
4330 2004-11-15  Luc Teirlinck  <teirllm@auburn.edu>
4332         * play/life.el: Maintainer is now FSF.
4333         (life-patterns, life-neighbor-deltas, life-window-start)
4334         (life-current-generation, life-generation-string): Use defvar
4335         instead of defconst.
4337 2004-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4339         * progmodes/compile.el (compilation-move-to-column): New fun.
4340         (compilation-internal-error-properties)
4341         (compilation-next-error-function): Use it to make sure we don't go past
4342         the end of line.
4344 2004-11-15  John Paul Wallington  <jpw@gnu.org>
4346         * autoinsert.el (auto-insert-alist): Insert the user's name in
4347         copyright notice, rather than Free Software Foundation, for the
4348         Emacs Lisp header case too.
4350 2004-11-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4352         * printing.el (pr-ps-file-print, pr-toggle-duplex): Fix typos.
4353         Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
4354         (pr-switches-string): If SWITCHES is nil, return nil.  Otherwise,
4355         return the list of string in a string.
4356         (pr-call-process): Message if calling process returns an error, that
4357         is, the exit status is different of zero.
4359 2004-11-15  Jay Belanger  <belanger@truman.edu>
4361         * calc/calcalg2.el (math-integrate-by-parts):  Remove unused
4362         variable var-thing.
4363         (math-integ-depth, math-integ-level, math-integral-limit)
4364         (math-enable-subst, math-any-substs, math-integ-msg)
4365         (math-prev-parts-v, math-good-parts, math-max-integral-limit)
4366         (math-int-threshold, math-int-factors, math-double-roots)
4367         (math-solve-simplifying, var-IntegLimit, math-solve-sign)
4368         (var-GenCount):  Declare these variables.
4369         (calcFunc-integ):  Don't check if var-IntegLimit is bound.
4370         (math-integral-cache, math-integral-cache-state):
4371         Move declarations to earlier in the file.
4372         (math-deriv-var, math-deriv-total, math-deriv-symb)
4373         (math-cur-record, math-has-rules, math-t1, math-t2, math-t3)
4374         (math-so-far, math-integ-expr, math-expr-parts, calc-low)
4375         (calc-high, math-solve-var, math-solve-full, math-solve-vars)
4376         (math-try-solve-sign, math-solve-b, math-solve-system-vv)
4377         (math-solve-res):  New variables
4378         (math-derivative, calcFunc-deriv, calcFunc-tderiv)
4379         (math-integral, math-replace-integral-parts)
4380         (math-integrate-by-parts, calc-dump-integral-cache)
4381         (math-try-integral, math-do-integral, math-do-integral)
4382         (math-do-integral-methods, math-try-solve-for)
4383         (math-try-solve-prod, math-solve-poly-funny-powers)
4384         (math-solve-crunch-poly, math-decompose-poly)
4385         (math-solve-find-root-term, math-find-root-in-prod)
4386         (math-integ-try-linear-substitutions)
4387         (math-integ-try-substitutions, math-expr-rational-in)
4388         (math-expr-rational-in-rec, calcFunc-table, math-scan-for-limits)
4389         (math-solve-prod, math-solve-quartic, math-poly-all-roots)
4390         (math-solve-for, math-solve-system, math-solve-system-rec)
4391         (math-solve-get-sign, math-solve-get-int)
4392         (math-solve-system-subst): Replace undeclared variables with newly
4393         declared variables.
4395 2004-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4397         * winner.el (winner-active-region, winner-edges, winner-window-list):
4398         Define at toplevel.
4399         (winner-mode-map): Move init inside declaration.
4401 2004-11-14  Luc Teirlinck  <teirllm@auburn.edu>
4403         * files.el (convert-standard-filename): Doc fix.
4405 2004-11-14  Daniel Pfeiffer  <occitan@esperanto.org>
4407         * files.el (auto-mode-alist): Handle .gtkrc, and under /etc
4408         passwd, group, shadow, default/* and pam.d/*.
4410 2004-11-14  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4412         * printing.el (pr-menu-spec): Adjust menu specification.
4414 2004-11-13  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4416         * printing.el: Doc fix.  Insert :version tag into all defcustom.
4417         Handle interactive-p as is recommended in Emacs Lisp Reference.
4418         Set the file permission bits for newly created files.
4419         Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
4420         The printing menu specification (in `pr-menu-spec') was merged.
4421         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
4422         (pr-version): New version number (6.8.3).
4423         (pr-file-modes): New option.
4424         (pr-interactive-p): New var.
4425         (pr-save-interactive, pr-save-file-modes): New macros.
4426         (pr-setup): Code fix.
4427         (pr-menu-spec): Menu specification merged.
4428         (pr-call-process, pr-text2ps): Set file permission bits.
4429         (pr-despool-print): Set file permission bits.  Handle interactive-p as
4430         is recommended.
4431         (pr-interface, pr-ps-directory-preview)
4432         (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
4433         (pr-ps-directory-ps-print, pr-ps-buffer-preview)
4434         (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
4435         (pr-ps-buffer-ps-print, pr-ps-region-preview)
4436         (pr-ps-region-using-ghostscript, pr-ps-region-print)
4437         (pr-ps-region-ps-print, pr-ps-mode-preview)
4438         (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
4439         (pr-printify-directory, pr-txt-directory, pr-despool-preview)
4440         (pr-despool-using-ghostscript, pr-despool-ps-print)
4441         (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
4442         (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
4443         (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
4444         (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
4445         (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
4446         (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
4447         (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
4448         (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
4449         (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
4450         (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
4451         Handle interactive-p as is recommended.
4453 2004-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4455         * emacs-lisp/byte-opt.el (byte-optimize-inline-handler): Simplify.
4456         (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
4458         * font-lock.el (font-lock-fontify-syntactically-region): Fix last fix
4459         so it doesn't forget to highlight the beginning of the region either.
4461 2004-11-13  Daniel Pfeiffer  <occitan@esperanto.org>
4463         * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
4464         (c-font-lock-init): Eliminate obsolete make-local-hook.
4465         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
4466         (awk-mode): Use run-mode-hooks.
4468         * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
4470 2004-11-13  Kim F. Storm  <storm@cua.dk>
4472         * mouse.el (mouse-drag-copy-region): Add :version.
4473         (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
4474         while dragging mode line, so mode line can be dragged downwards.
4475         (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
4476         while pressing mouse button so window doesn't scroll until we
4477         release the mouse if clicking on partially visible line.
4479 2004-11-12  Jay Belanger  <belanger@truman.edu>
4481         * calc/calc-graph.el (calc-dumb-map):  Declare it.
4482         (calc-graph-show-dumb):  Check if calc-dumb-map is non-nil rather
4483         than unbound.
4484         (calc-graph-name):  Made `end' a local variable.
4485         (calc-graph-lookup):  Made `varname' a local variable.
4486         (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
4487         Declare them.
4488         (calc-graph-format-data):  Don't check if var-PlotRejects is bound.
4489         (calc-graph-plot, calc-graph-compute-3d):  Remove references to
4490         the unused variable y3vec.
4491         (calc-graph-show-dumb):  Remove reference to unused variable found-pt.
4492         (calc-graph-kill-hook, calc-graph-plot):  Remove reference to
4493         calc-graph-prev-kill-hook.
4494         (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps)
4495         (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec)
4496         (calc-graph-xname, calc-graph-yname, calc-graph-xstep)
4497         (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine)
4498         (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow)
4499         (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp)
4500         (calc-graph-zp, calc-graph-yvector, calc-graph-resolution)
4501         (calc-graph-y3value, calc-graph-y3name)
4502         (calc-graph-y3step, calc-graph-y3step, calc-graph-zval)
4503         (calc-graph-stepcount, calc-graph-is-splot)
4504         (calc-graph-surprise-splot, calc-graph-blank)
4505         (calc-graph-non-blank, calc-graph-curve-num):  New variables.
4506         (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
4507         (calc-graph-recompute-2d, calc-graph-compute-3d)
4508         (calc-graph-format-data): Replace undeclared variables with the
4509         above newly declared variables.
4511 2004-11-12  Diane Murray  <dsm@muenster.de>  (tiny change)
4513         * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
4514         `rsf-beep' and `rsf-sleep-after-message'.
4516         * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
4517         list if `message-sender' is non-nil.
4519 2004-11-12  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
4521         * desktop.el (desktop-create-buffer, desktop-save): Avoid some
4522         consing by using mapc instead of mapcar.
4524 2004-11-12  Nick Roberts  <nickrob@snap.net.nz>
4526         * tooltip.el (require): Explain why CL is needed.
4528 2004-11-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4530         * printing.el: Insert :version into defgroup (printing).  All reference
4531         to Files option in menubar were changed to File.
4532         (pr-version): New version number (6.8.2).
4533         (pr-get-symbol): Call easy-menu-intern.
4534         (pr-region-active-p): Now is a fun (it was defsubst).  To avoid
4535         compilation gripes.
4537 2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4539         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
4540         new byte-compile-function-environment binding to t.
4542         * font-lock.el (font-lock-fontify-syntactically-region):
4543         Don't forget to highlight the last char when we hit `end'.
4545         * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
4546         (mwheel-scroll): Adjust accordingly.
4548         * cvs-status.el: Reduce spurious warnings.
4549         (cvs-status-checkout): Remove.
4550         (cvs-status-mode-map): Use cvs-mode-checkout instead.
4552         * pcvs.el (cvs-mode-checkout): New command.
4554         * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
4556         * tooltip.el: Require CL.
4558         * emacs-lisp/bytecomp.el: Use push.
4559         (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
4560         (defalias): Remove the `byte-compile' property and add
4561         a `byte-hunk-handler'.
4563 2004-11-11  Juri Linkov  <juri@jurta.org>
4565         * info.el (Info-search): Save match data for isearch.
4566         Skip Tag Table node.
4568         * descr-text.el (describe-char): Replace syntax-after with code
4569         from its previous version.
4571         * files.el (magic-mode-alist): Use optimization for SGML mode too.
4572         (set-auto-mode): Doc fix.  Remove unused variable `xml'.
4574         * international/mule.el (sgml-html-meta-auto-coding-function):
4575         Remove > after <html to allow HTML attributes.
4577 2004-11-11  Jay Belanger  <belanger@truman.edu>
4579         * calc/calc-comb.el (math-prime-factors-finished):  Declare it as
4580         a variable.
4581         (calcFunc-dfac):  Replace unbound max by n.
4582         (math-stirling-local-cache):  New variable.
4583         (math-stirling-number, math-stirling-1, math-stirling-2):
4584         Replace the variable `cache' by the declared variable
4585         math-stirling-local-cache.
4586         (var-RandSeed):  Declare it as a variable.
4587         (math-init-random-base, math-random-digit):  Don't check to see if
4588         var-RandSeed is bound.
4589         (math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
4590         Declare them instead of just setting them.
4591         (math-init-random-base):  Made i a local variable.
4592         (math-random-digit):  Made math-random-last a local variable.
4593         (math-prime-test-cache):  Move declaration to before it is used.
4594         (math-prime-test-cache-k, math-prime-test-cache-q)
4595         (math-prime-test-cache-nm1, math-prime-factors-finished):
4596         Declare them as variables.
4598 2004-11-11  Jay Belanger  <belanger@truman.edu>
4600         * calc/calc-ext.el (math-defcache):  Use defvar for the new
4601         variables it creates.
4603 2004-11-11  Lars Hansen  <larsh@math.ku.dk>
4605         * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook)
4606         (desktop-clear-preserve-buffers-regexp, desktop-file-name-format)
4607         (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path)
4608         (desktop-save): Add :version.
4610 2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4612         * printing.el (pr-get-symbol): Don't downcase.
4614 2004-11-10  Jay Belanger  <belanger@truman.edu>
4616         * calc/calc-aent.el (calc-do-quick-calc):  Use kill-new to append
4617         string to kill-ring.
4619         * calc/calc-aent.el (calc-alg-exp, math-toks)
4620         (math-exp-pos,math-exp-old-pos, math-exp-token)
4621         (math-exp-keep-spaces, math-exp-str):  New variables.
4622         (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
4623         (calcAlg-enter):  Use declared variable calc-alg-exp.
4624         (math-build-parse-table, math-find-user-token):  Use declared
4625         variable math-toks.
4626         (math-read-exprs, math-read-token, calc-check-user-syntax)
4627         (calc-match-user-syntax, match-factor-after, math-read-factor):
4628         Use declared variables math-exp-pos math-exp-old-pos.
4629         (math-read-exprs, math-read-token, math-read-expr-level)
4630         (calc-check-user-syntax, calc-match-user-syntax)
4631         (match-factor-after, math-read-factor):  Use declared variable
4632         math-exp-token.
4633         (math-read-exprs, math-read-expr-list, math-read-token)
4634         (math-read-factor):  Use declared variable math-exp-keep-spaces.
4635         (math-read-exprs, math-read-token):  Use declared variable
4636         math-exp-str.
4637         (calc-match-user-syntax):  Make m a local variable.
4639         * calc/calc-ext.el (math-read-expr):  Use declared variables
4640         math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
4641         math-exp-keep-spaces.
4643         * calc/calc-forms.el (math-read-angle-bracket):  Use declared
4644         variables math-exp-pos, math-exp-str.
4646         * calc/calc-lang.el (math-parse-tex-sum):  Use declared variable
4647         math-exp-old-pos.
4648         (math-parse-fortran-vector, math-parse-fortran-vector-end)
4649         (math-parse-eqn-prime):  Use declared variable math-exp-token.
4651         * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
4652         Use declared variable math-exp-pos.
4653         (math-check-for-commas):  Use declared variable math-exp-str.
4654         (math-read-brackets):  Use declared variables math-exp-old-pos,
4655         math-exp-keep-spaces.
4656         (math-read-brackets, math-read-vector, math-read-matrix):
4657         Use declared variable math-exp-token.
4659 2004-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4661         * emacs-lisp/easymenu.el (easy-menu-define-key): Understand the case
4662         where the keymap is a symbol.
4663         (easy-menu-add-item): Use keymap-prompt.  Simplify.
4665         * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
4667         * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
4668         (sgml-parse-tag-backward): Use it to skip spurious < or >.
4670 2004-11-10  Thien-Thi Nguyen  <ttn@gnu.org>
4672         * ebuff-menu.el: Doc fixes throughout.
4673         (electric-buffer-menu-mode-hook): New defvar.
4675 2004-11-10  Nick Roberts  <nickrob@snap.net.nz>
4677         * tooltip.el: Don't require cl, comint, gud, gdb-ui for
4678         compilation. The resulting compiler warnings appear to be harmless.
4680 2004-11-10  Daniel Pfeiffer  <occitan@esperanto.org>
4682         * textmodes/conf-mode.el: New file.
4684         * files.el (auto-mode-alist, magic-mode-alist): Use it.
4686 2004-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4688         * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace.
4690 2004-11-09  Jay Belanger  <belanger@truman.edu>
4692         * calc/calc-ext.el (calc-init-extensions):  Remove old code.
4694         * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func)
4695         (calc-z-prefix-buf, calc-z-prefix-msgs):  New variables.
4696         (calc-z-prefix-help, calc-user-function-list):  Use declared
4697         variables calc-z-prefix-buf, calc-z-prefix-msgs.
4698         (math-map-tree, math-map-tree-rec):  Use declared variables
4699         math-mt-many, math-mt-func.
4700         (math-read-expression, math-read-string):  Use declared variable
4701         math-expr-data.
4703         * calc/calc-ext.el (math-normalize-nonstandard):  Use declared
4704         variable math-normalize-a.
4706         * calc/calc.el (math-normalize-a):  New variable.
4707         (math-normalize):  Use declared variable math-normalize-a.
4709         * calc/calc-poly.el (math-expand-form):  Use declared variable
4710         math-mt-many.
4712         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
4713         Use declared variable math-mt-many.
4714         (math-rewrite):  Use declared variable math-mt-func.
4716         * calc/calc-vec.el (math-read-brackets, math-read-vector)
4717         (math-read-matrix):  Use declared variable math-expr-data.
4719         * calc/calc-lang.el (math-parse-fortran-vector)
4720         (math-parse-fortran-vector-end, math-parse-tex-sum)
4721         (math-parse-eqn-matrix, math-parse-eqn-prime)
4722         (math-read-math-subscr):  Use declared variable math-expr-data.
4724         * calc/calc-aent.el (math-read-exprs, math-read-expr-list)
4725         (math-read-expr-level, math-read-token, calc-check-user-syntax)
4726         (calc-match-user-syntax, math-read-if, math-factor-after)
4727         (math-read-factor):  Use declared variable math-expr-data.
4729 2004-11-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
4731         * calendar/diary-lib.el (diary-from-outlook)
4732         (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
4733         interactive-p; but rather new optional argument NOCONFIRM.
4735 2004-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4737         * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
4738         (easy-menu-name-match): Revert correspondingly.
4740 2004-11-09  Richard M. Stallman  <rms@gnu.org>
4742         * emacs-lisp/bytecomp.el (byte-compile-defalias):
4743         Turn off warnings for the new function even if definition not constant.
4744         If the definition isn't a quoted symbol, record (FUNCTION . t).
4745         (byte-compile-function-environment): Now allow (FUNCTION . t) as elt.
4746         (byte-compile-callargs-warn): Handle (FUNCTION . t).
4747         (display-call-tree, byte-compile-arglist-warn):
4748         Handle t returned by byte-compile-fdefinition.
4750 2004-11-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4752         * Makefile.in (maintainer-clean): Depend on distclean.
4754         * help-fns.el (help-C-file-name): File name must be in build-files
4755         to be returned.
4757 2004-11-09  Jay Belanger  <belanger@truman.edu>
4759         * calc/calc.el (calc-mode-hook, calc-trail-mode-hook)
4760         (calc-start-hook, calc-end-hook, calc-load-hook):  New variables.
4762         * calc/calc.el (calc, calc-trail-display, calc-mode):
4763         Remove obsolete sections.
4765         * calc/calc.el (calc-x-paste-text):  Remove.
4767         * calc/calc-ext.el (calc-init-extensions):  Bind calc-yank to
4768         mouse-2.
4770 2004-11-09  Nick Roberts  <nickrob@snap.net.nz>
4772         * progmodes/gdb-ui.el (gdb-current-stack-level): New variable.
4773         (gdb-info-frames-custom, gdb-frame-handler): Use it to find
4774         current frame (in case of recursive calls).
4775         (gdb-show-changed-values): Add :version keyword.
4777 2004-11-09  Kenichi Handa  <handa@m17n.org>
4779         * international/mule-cmds.el: Change coding: tag back to
4780         iso-2022-7bit.
4782 2004-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4784         * international/mule-cmds.el: Change coding-system to utf-8.
4785         (select-safe-coding-system-interactively):
4786         New function extracted from select-safe-coding-system.
4787         (select-safe-coding-system): Use it.
4789 2004-11-08  Richard M. Stallman  <rms@gnu.org>
4791         * subr.el (syntax-after): Doc fix.
4793         * paren.el (show-paren-function): Change calls to syntax-after
4794         for new way of returning the value.
4796         * menu-bar.el (menu-bar-file-menu): Make this the real name
4797         and menu-bar-files-menu the alias.  Use the former.
4798         (global-map): Use `file', not `files', as the symbol.
4800         * info.el (Info-revert-find-node): Don't use beginning-of-buffer.
4802         * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd):
4803         Don't use beginning-of-buffer.
4804         (filesets-cmd-show-result): Use with-no-warnings.
4806 2004-11-08  Juri Linkov  <juri@jurta.org>
4808         * progmodes/compile.el (compile): Don't overwrite last command in
4809         minibuffer history with default command if they are not equal.
4811 2004-11-08  Jay Belanger  <belanger@truman.edu>
4813         * calc/calcalg2.el (math-do-integral-methods):  Try linear then
4814         non-linear substitutions.
4816 2004-11-08  Jay Belanger  <belanger@truman.edu>
4818         * calc/calcalg2.el (math-linear-subst-tried): New variable.
4819         (math-do-integral):  Set `math-linear-subst-tried' to nil.
4820         (math-do-integral-methods):  Use `math-linear-subst-tried' to
4821         determine what type of substitution to try.
4822         (math-integ-try-linear-substituion):
4823         Set `math-linear-subst-tried' to t.
4825 2004-11-08  Kim F. Storm  <storm@cua.dk>
4827         * Makefile.in (bootstrap-clean): New target for 'make bootstrap'.
4829 2004-11-07  Juri Linkov  <juri@jurta.org>
4831         * info-look.el (info-lookup): Allow reusing in the current buffer
4832         not only *info* buffer, but all (even renamed) Info buffers
4833         by checking for major-mode instead of *info* buffer name.
4834         (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
4835         (octave-mode, maxima-mode) <doc-spec>:
4836         Allow long dashes generated by Texinfo 4.7 before definitions.
4837         (texinfo-mode) <doc-spec>: Add space to suffix to find command
4838         definitions with argument separated by space.
4840 2004-11-06  Richard M. Stallman  <rms@gnu.org>
4842         * simple.el (next-error group, face): Move before first use.
4843         (next-error-highlight, next-error-highlight-no-select): Likewise.
4845         * simple.el (line-move-invisible-p): Rename from line-move-invisible.
4846         (line-move): New args NOERROR and TO-END.
4847         Return t if if succeed in moving specified number of lines.
4848         (move-end-of-line): New function.
4850         * simple.el (beginning-of-buffer-other-window): Use with-no-warnings.
4851         (end-of-buffer-other-window): Likewise.
4853         * simple.el (line-move-ignore-invisible): Default to t.
4855         * subr.el (syntax-after): Return the syntax letter, not the raw code.
4857         * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer.
4859         * international/iso-cvt.el (iso-cvt-define-menu):
4860         Rename menu-bar-files-menu to menu-bar-file-menu.
4862         * net/browse-url.el (browse-url-gnome-moz-program)
4863         (browse-url-gnome-moz-arguments): Move up before first use.
4865         * net/tramp.el (tramp group): Add :version.
4867         * progmodes/ada-xref.el (ada-gdb-application):
4868         Use goto-char instead of beginning-of-buffer.
4870         * progmodes/cperl-mode.el (cperl-info-on-command):
4871         Use goto-char instead of beginning-of-buffer.
4873         * progmodes/idlw-shell.el (idlwave-shell-examine-map):
4874         Move up before first use.
4875         (idlwave-shell-temp-pro-file): Likewise.
4876         (idlwave-shell-temp-rinfo-save-file): Likewise.
4877         (idlwave-shell-temp-file): Minor doc fix.
4879         * textmodes/flyspell.el (flyspell-external-point-words):
4880         Use goto-char instead of beginning-of-buffer.
4882 2004-11-06  Kai Grossjohann  <kai.grossjohann@gmx.net>
4884         * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o
4885         /dev/stdout" before trying "uudecode -o -".  Suggested by Han Boetes.
4886         (tramp-uudecode): Mention `uudecode -o /dev/stdout'.
4888 2004-11-06  David Ponce  <david@dponce.com>
4890         * recentf.el (recentf-menu-path): Use menu item name.
4892 2004-11-06  Eli Zaretskii  <eliz@gnu.org>
4894         * progmodes/gdb-ui.el: Don't call define-fringe-bitmap if the
4895         display doesn't support images.
4897 2004-11-06  Andreas Schwab  <schwab@suse.de>
4899         * tempo.el (tempo-match-finder): Doc fix.
4901         * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
4903 2004-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4905         * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
4906         (easy-menu-lookup-name): New fun to replace it.
4907         (easy-menu-get-map): Use it to obey menu item names (rather than just
4908         keys) when looking up `path'.
4909         (easy-menu-always-true-p): Rename from easy-menu-always-true.
4910         (easy-menu-convert-item-1): Adjust to new name.
4912 2004-11-06  Peter Heslin  <pj@heslin.eclipse.co.uk>  (tiny change)
4914         * outline.el (hide-body): Don't hide lines at the top of the file
4915         that precede the first header line.
4917 2004-11-06  Paul Pogonyshev  <pogonyshev@gmx.net>
4919         * align.el (align-areas): Delete whitespace before reindenting, so
4920         that tabs are never placed after spaces.
4922 2004-11-06  Alan Shutko  <ats@acm.org>
4924         * macros.el (insert-kbd-macro): Do completions based on macros,
4925         rather than all commands.
4927 2004-11-06  David Hansen  <david.hansen@gmx.net>  (tiny change)
4929         * tempo.el (tempo-match-finder): Use [:word:] instead of "^\\b",
4930         to solve a bug whereby tags with 'b' don't match.
4932 2004-11-05  Juri Linkov  <juri@jurta.org>
4934         * info.el (Info-search): Don't search in node header lines
4935         and file headers.
4937         * emacs-lisp/edebug.el (edebug-next-token-class): Allow all
4938         symbol-constituent characters after dot, not only digits.
4940 2004-11-04  Daniel Pfeiffer  <occitan@esperanto.org>
4942         * files.el (set-auto-mode): Don't get error after setting -*-mode-*-.
4944 2004-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4946         * dired.el (dired-read-dir-and-switches): Call read-directory-name
4947         if a dialog will be used, read-file-name otherwise.
4949 2004-11-04  Richard M. Stallman  <rms@gnu.org>
4951         * textmodes/table.el (table group): Add :version.
4953         * textmodes/ispell.el (ispell-word):
4954         Don't alter args; set them only thru `interactive' spec.
4956         * textmodes/flyspell.el (flyspell-word):
4957         Don't alter FOLLOWING; set it only thru `interactive' spec.
4959         * progmodes/f90.el (f90-end-of-block): Don't use interactive-p.
4961         * net/browse-url.el (browse-url-maybe-new-window):
4962         Use called-interactively-p.
4964         * mail/supercite.el (sc-cite-region):
4965         Don't use interactive-p.  Add arg INTERACTIVE.
4966         (sc-version): Don't use interactive-p.  Rename arg to MESSAGE.
4968         * international/mule-cmds.el (set-input-method, toggle-input-method):
4969         Don't use interactive-p.  Add arg INTERACTIVE.
4971         * eshell/esh-mode.el (eshell-show-maximum-output):
4972         Don't use interactive-p.
4973         (eshell-truncate-buffer): Just message, no error, if buffer is short.
4975         * mouse.el (mouse-show-mark): Get positions to delete from mark
4976         and point, not from mouse-drag-overlay.
4978         * imenu.el (imenu-eager-completion-buffer): Add :version.
4980         * filesets.el (filesets group): Add :version.
4982 2004-11-03  Daniel Pfeiffer  <occitan@esperanto.org>
4984         * files.el (xml-based-modes): Delete var.
4985         (magic-mode-alist): New more general var.
4986         (set-auto-mode): Use it.
4988         * buff-menu.el (Buffer-menu-make-sort-button): Preserve point even
4989         when clicking from another window.
4991 2004-11-03  Thien-Thi Nguyen  <ttn@gnu.org>
4993         * vc-cvs.el (vc-cvs-local-month-numbers): Delete var.
4994         (vc-cvs-annotate-time): Incorporate value of deleted var.
4995         Remove special-case handling of beginning-of-buffer cruft.
4996         Cache ending position (point) and return value in text property
4997         `vc-cvs-annotate-time', and consult it on subsequent invocations.
4999         * vc-cvs.el (vc-cvs-annotate-command):
5000         Delete extraneous lines from beginning of buffer.
5001         * vc-mcvs.el (vc-mcvs-annotate-command): Likewise.
5003         * progmodes/grep.el (grep-default-command): Take empty string
5004         for tag if all other methods yield nil.  Shell-quote the tag.
5006         * vc.el (vc-annotate-display-autoscale): Add prefix-arg
5007         spec in `interactive' form, and mention it in the docstring.
5008         Also, make sure point is at bol after calling `annotate-time'.
5010 2004-11-02  Richard M. Stallman  <rms@gnu.org>
5012         * cus-edit.el (customize-group-other-window):
5013         Select the window that displays the custom buffer.
5014         (custom-buffer-create-other-window): Likewise.
5016         * comint.el (comint-insert-input): Fix previous change.
5018         * emacs-lisp/elp.el (elp-instrument-function):
5019         Use called-interactively-p.
5021         * emacs-lisp/easymenu.el (easy-menu-intern):
5022         Don't downcase; rather, case-flip the first letter of each word.
5024         * emacs-lisp/easy-mmode.el (define-minor-mode):
5025         Use called-interactively-p.
5027         * emacs-lisp/bytecomp.el (byte-compile-warning-types):
5028         Add interactive-only.
5029         (byte-compile-warnings): Add interactive-only as option.
5030         (byte-compile-interactive-only-functions): New variable.
5031         (byte-compile-form): Warn about calls to functions
5032         in byte-compile-interactive-only-functions.
5034         * emacs-lisp/autoload.el (update-file-autoloads):
5035         Don't use interactive-p; take new arg SAVE-AFTER.
5037         * emacs-lisp/advice.el (ad-make-advised-definition):
5038         Use called-interactively-p.
5040 2004-11-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5042         * files.el (find-file-existing): New function.
5044         * menu-bar.el (menu-bar-files-menu): Make "Open File..." call
5045         find-file-existing.  Add "New File..." that calls find-file.
5047         * diropen.pbm, diropen.xpm: New files.
5049         * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
5050         icon diropen.  New tool bar item find-file-existing uses icon open.
5052         * dired.el (dired-read-dir-and-switches): Call read-driectory-name
5053         instead of read-file-name.
5055 2004-11-02  Ulf Jasper  <ulf.jasper@web.de>
5057         * calendar/icalendar.el (icalendar-version): Increase to 0.08.
5058         (icalendar--split-value): Change name of work buffer.
5059         (icalendar--get-weekday-abbrev): Return nil on error.
5060         (icalendar--date-to-isodate): New function.
5061         (icalendar-convert-diary-to-ical)
5062         (icalendar-extract-ical-from-buffer): Use only two args for
5063         make-obsolete (XEmacs compatibility).
5064         (icalendar-export-file, icalendar-import-file): Blank at end of prompt.
5065         (icalendar-export-region): Doc fix.
5066         If error, return non-nil and write errors to a buffer.
5067         Use correct weekday for weekly recurring events.
5068         Check whether date has been parsed for ordinary events.
5069         Make weekly events start in the year 2000.
5070         DTEND is non-inclusive, shift end date by one day if
5071         necessary (not for entries that have date and time).
5072         Rename local let variables: oops -> found-error, datestring ->
5073         startdatestring.
5075 2004-11-02  Kim F. Storm  <storm@cua.dk>
5077         * files.el (set-auto-mode-0): Don't rely on dynamic binding of
5078         keep-mode-if-same variable.  Add it as optional arg instead.
5079         (set-auto-mode): Call set-auto-mode-0 with keep-mode-if-same.
5081         * ehelp.el (electric-help-map): Reorder Q/q and R/r entries so
5082         substitute-command-keys will select lower-case bindings like those
5083         used in the static help texts.
5085         * descr-text.el (describe-text-properties): Don't err if called in
5086         the *Help* buffer; output to *Help-2* buffer instead.
5088         * kmacro.el (group kmacro): Add :version.
5089         (kmacro-keyboard-quit): New function to cleanup on C-g.
5090         (kmacro-start-macro): Set defining-kbd-macro to append when
5091         appending to last macro.
5093         * simple.el (keyboard-quit): Call kmacro-keyboard-quit.
5095 2004-11-02  Nick Roberts  <nickrob@snap.net.nz>
5097         * progmodes/gdb-ui.el (gdb-enable-debug-log)
5098         (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
5099         (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
5100         Add :version keyword.
5102 2004-11-02  Pavel Kobiakov <pk_at_work@yahoo.com>
5104         * progmodes/flymake.el (flymake-err-line-patterns):
5105         Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
5106         `compilation-error-regexp-alist-alist' to internal Flymake format.
5108         * progmodes/flymake.el: Eliminate byte-compiler warnings.
5110 2004-11-01  Jay Belanger  <belanger@truman.edu>
5112         * calc/calc-frac.el (calc-over-notation): Replace `completing-read'
5113         with `interactive "s"'.
5115 2004-11-01  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5117         * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
5118         Revert change from 2004-10-16.  '*' checks the current buffer, but the
5119         mouse click may be in another buffer.
5121 2004-11-01  John Paul Wallington  <jpw@gnu.org>
5123         * files.el (large-file-warning-threshold): Add :version keyword.
5124         (kill-some-buffers): Doc fix.
5126         * thumbs.el (group thumbs): Add :version keyword.
5128         * textmodes/bibtex.el (bibtex-make-field): Fix typo.
5130 2004-11-01  Richard M. Stallman  <rms@gnu.org>
5132         * textmodes/ispell.el (ispell-word): Don't use interactive-p.
5134         * textmodes/flyspell.el (flyspell-word): Don't use interactive-p.
5136         * allout.el (allout group): Add :version.
5137         (allout-init): Don't use interactive-p.
5138         (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
5139         (allout-forward-current-level, allout-backward-current-level):
5140         Don't use interactive-p.
5142         * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
5143         (bibtex-find-text): Likewise.
5145         * progmodes/vhdl-mode.el (vhdl-fill-region)
5146         (vhdl-beginning-of-statement): Don't use interactive-p.
5148         * progmodes/idlwave.el (idlwave-update-routine-info):
5149         Don't use interactive-p.
5151         * progmodes/idlw-shell.el (idlwave-shell-send-char):
5152         Don't use interactive-p.
5154         * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
5155         Don't use interactive-p.
5157         * progmodes/ada-xref.el (ada-make-body-gnatstub):
5158         Don't use interactive-p.
5160         * play/fortune.el (fortune-to-signature): Don't use interactive-p.
5161         (fortune-in-buffer): Doc fix.
5163         * play/5x5.el (5x5-new-game): Set up the buffer even if not interactive.
5165         * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
5166         don't select the temporary buffer.
5167         (eudc-get-email): New optional arg ERROR; don't use interactive-p.
5168         (eudc-get-phone): Likewise.
5170 2004-11-01  Kim F. Storm  <storm@cua.dk>
5172         * man.el (Man-xref-normal-file): Fix help-echo.
5174 2004-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5176         * reveal.el (reveal-last-tick): New var.
5177         (reveal-post-command): Use it to avoid closing overlays when we're
5178         appending text to them.
5180 2004-10-31  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
5182         * textmodes/bibtex.el: Require button.
5183         (bibtex-autokey-transcriptions): Translate TeX `\ ' to space.
5184         (bibtex-reference-keys): Distinguish between header keys and
5185         crossref keys.
5186         (bibtex-beginning-of-field): New function.
5187         (bibtex-url-map): Remove.
5188         (bibtex-font-lock-keywords): Use bibtex-font-lock-crossref.
5189         (bibtex-font-lock-url-regexp): Assume that field names begin at
5190         the beginning of a line.
5191         (bibtex-font-lock-url): Simplify.  Do not use bibtex-enclosing-field.
5192         Remove field delimiters.  Use bibtex-beginning-of-field.
5193         Bugfix, point can be inside a field with a url.
5194         (bibtex-font-lock-crossref, bibtex-button-action, bibtex-button):
5195         New functions.
5196         (bibtex-mark-active, bibtex-run-with-idle-timer): Remove.
5197         (bibtex-key-in-head): Simplify.
5198         (bibtex-current-line): Use bolp.
5199         (bibtex-parse-keys): Remove unused arg `add'.
5200         Use bibtex-type-in-head and bibtex-key-in-head.
5201         (bibtex-parse-entry, bibtex-autofill-entry):
5202         Use bibtex-type-in-head and bibtex-key-in-head.
5203         (bibtex-autokey-get-field): Do not alter case of replacement text.
5204         (bibtex-autokey-get-names): Do all processing of name list.
5205         (bibtex-autokey-get-year): New function.
5206         (bibtex-autokey-get-title): Do all processing of title words.
5207         (bibtex-generate-autokey): Simplify.
5208         (bibtex-string-files-init): Use default-directory.
5209         Allow for absolute file names in bibtex-string-files.
5210         (bibtex-files, bibtex-file-path): New variables.
5211         (bibtex-files-expand): New function.
5212         (bibtex-find-entry-globally): New command.
5213         (bibtex-summary-function): New variable.
5214         (bibtex-summary): Default value of bibtex-summary-function.
5215         (bibtex-find-crossref): New optional args pnt and split.
5216         (bibtex-complete-key-cleanup): Call bibtex-summary-function.
5217         (bibtex-copy-summary-as-kill): New command bound to C-cC-t.
5218         (bibtex-validate): Fix docstring.  Check only abbreviated month fields.
5219         Fix handling of required and alternative fields.
5220         Identify duplicate keys even if bibtex-maintain-sorted-entries is nil.
5221         Use cons and display-buffer.
5222         (bibtex-validate-globally): New command.
5223         (bibtex-clean-entry): Use bibtex-files-expand.  Do not call
5224         bibtex-parse-keys and bibtex-parse-strings for updating
5225         bibtex-reference-keys and bibtex-strings.
5226         (bibtex-realign): Remove blank lines past the last entry.
5227         (bibtex-reformat): Use bibtex-entry-format as default.
5228         (bibtex-choose-completion-string): Remove.
5229         (bibtex-complete): Do not use bibtex-choose-completion-string.
5230         (bibtex-url): Simplify.
5232 2004-10-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5234         * x-dnd.el (x-dnd-test-function, x-dnd-protocol-alist)
5235         (x-dnd-types-alist, x-dnd-open-file-other-window)
5236         (x-dnd-known-types): Add :version.
5238 2004-10-31  John Paul Wallington  <jpw@gnu.org>
5240         * ibuffer.el (group ibuffer): Add :version keyword.
5242 2004-10-31  Kim F. Storm  <storm@cua.dk>
5244         * ido.el (group ido): Add :version keyword.
5245         (ido-mode): Remove :version keyword.
5247         * emulation/cua-base.el (group cua): Add :version keyword.
5248         (cua-mode): Remove :version keyword.
5250 2004-10-30  Luc Teirlinck  <teirllm@auburn.edu>
5252         * autorevert.el (auto-revert-tail-mode-text): Add :version keyword.
5254         * help-at-pt.el (help-at-pt-timer): Move defvar up to avoid
5255         compiler warning.
5256         (help-at-pt-timer-delay): Add :initialize keyword.  Simplify :set
5257         function.
5258         (help-at-pt-display-when-idle): Remove autoload.
5260 2004-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5262         * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook.
5264 2004-10-30  Juri Linkov  <juri@jurta.org>
5266         * help.el (function-called-at-point):
5267         * help-fns.el (variable-at-point): Read -> intern.
5269 2004-10-30  Simon Josefsson  <jas@extundo.com>
5271         * progmodes/autoconf.el (autoconf-font-lock-keywords):
5272         Recognize AS_* too.
5274 2004-10-29  Simon Josefsson  <jas@extundo.com>
5276         * subr.el (read-passwd): Move back from password.el.
5278         * password.el: Remove, not ready yet.
5280 2004-10-29  Andreas Schwab  <schwab@suse.de>
5282         * speedbar.el (speedbar-frame-parameters): Improve customize type.
5284 2004-10-29  Sam Steingold  <sds@gnu.org>
5286         * mouse.el (mouse-show-mark): Replace the last occurrence of
5287         x-lost-selection-hooks with x-lost-selection-functions.
5289 2004-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5291         * mouse.el (mouse-show-mark): Adjust to new name and don't assume
5292         x-lost-selection-functions is bound.
5294         * mouse-sel.el (mouse-sel-mode):
5295         * emacs-lisp/lselect.el: Adjust to new names for
5296         x-(lost|sent)-selection-functions.
5298         * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
5299         New obsolete aliases of x-lost-selection-functions and
5300         x-sent-selection-functions.
5302 2004-10-28  Kim F. Storm  <storm@cua.dk>
5304         * imenu.el (imenu-scanning-message): Remove.
5305         (imenu-progress-message): Make it a no-op.
5307 2004-10-28  John Paul Wallington  <jpw@gnu.org>
5309         * files.el (set-auto-mode): Call `throw' correctly.
5311 2004-10-28  Juri Linkov  <juri@jurta.org>
5313         * info.el (Info-file-list-for-emacs): Add ("Info" . "info")
5314         to search `Info-...' commands in `info' manual.
5315         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
5316         Add 'info-file "emacs" property.
5317         (Info-find-emacs-command-nodes): Fix index line number regexp.
5318         Set real line number (instead of fake 0) in first element of the
5319         returned list.
5320         (Info-goto-emacs-command-node): Use line number of first element
5321         to set point in the first found Info node.
5323         * progmodes/grep.el (grep-regexp-alist): Move match highlighting
5324         code to `grep-mode-font-lock-keywords'.
5325         (grep-mode-font-lock-keywords): Delete grep markers instead
5326         of making them invisible.
5328 2004-10-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5330         * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
5331         and x-server-version in bug report.
5333 2004-10-28  Daniel Pfeiffer  <occitan@esperanto.org>
5335         * files.el (set-auto-mode-0): New function.
5336         (set-auto-mode): Use it to handle aliased modes and to
5337         be consistent between C-x C-f and C-x C-w.
5339 2004-10-28  Kenichi Handa  <handa@m17n.org>
5341         * international/utf-8.el (utf-translate-cjk-charsets):
5342         Add katakana-jisx0201.
5344         * international/subst-jis.el: Add data for JISX0201.
5346 2004-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5348         * obsolete/hilit19.el (hilit-mode): New function.
5349         Move all the toplevel side-effecting stuff into it, so that loading
5350         hilit19 doesn't mess everything up any more.
5352 2004-10-27  Richard M. Stallman  <rms@gnu.org>
5354         * add-log.el (add-change-log-entry): Set up mailing address
5355         and full name later, and don't alter add-log-mailing-address
5356         or add-log-full-name.
5358         * elide-head.el (elide-head): Change error to message.
5359         (elide-head-show): Likewise.
5361         * apropos.el (apropos-macrop): Doc fix.
5363         * mouse.el (mouse-show-mark): Do most processing the same
5364         regardless of transient-mark-mode.
5366         * shadowfile.el (shadow-copy-files): Use interactive-p
5367         only to control whether to print a message.
5369         * tar-mode.el (tar-mode): Use write-contents-functions,
5370         not write-contents-hooks.
5372         * eshell/em-unix.el (eshell-du-sum-directory): Don't use
5373         directory-sep-char.
5375 2004-10-27  Richard M. Stallman  <rms@gnu.org>
5377         * strokes.el (strokes-unload-hook): Fix previous change.
5379         * type-break.el (type-break-run-at-time): Always use run-at-time;
5380         forget the alternatives.
5381         (type-break-cancel-function-timers): Always use cancel-function-timers;
5382         forget the alternatives.
5384         * pcomplete.el (pcomplete-entries): Don't use directory-sep-char.
5386 2004-10-27  Kenichi Handa  <handa@m17n.org>
5388         * international/subst-jis.el: Use utf-translate-cjk-substitutable-p.
5390         * international/subst-gb2312.el: Likewise.
5392         * international/subst-big5.el: Likewise.
5394         * international/subst-ksc.el: Likewise.
5396         * international/utf-8.el (utf-translate-cjk-unicode-range-string):
5397         New variable.
5398         (utf-translate-cjk-set-unicode-range): New function.
5399         (utf-translate-cjk-unicode-range): Make it customizable.
5400         (utf-8-post-read-conversion):
5401         Use utf-translate-cjk-unicode-range-string.
5402         (ccl-decode-mule-utf-8): Check utf-subst-table-for-decode for more
5403         Unicode ranges.
5405 2004-10-26  Daniel Pfeiffer  <occitan@esperanto.org>
5407         * files.el (auto-mode-alist): Add pod, js, xbm and xpm and group
5408         trivial variants to shorten the list.
5409         (xml-based-modes): New var.
5410         (set-auto-mode): Give interpreter-mode-alist or <?xml or <!DOCTYPE
5411         declaration higher priority than auto-mode-alist.
5413         * find-file.el (cc-other-file-alist): Bring it in line with
5414         cc-mode's auto-mode-alist entries and use \' instead of $.
5416         * textmodes/sgml-mode.el (sgml-mode): Fix imenu-generic-expression
5417         and add "Id" and "Name" submenus to it.
5419         * imenu.el (imenu--generic-function): Skip matches in comments.
5421 2004-10-26  Jay Belanger  <belanger@truman.edu>
5423         * calc/calc.el (calc,full-calc, calc-quit, calc-keypad)
5424         (full-calc-keypad, calc-trail-display):  Use an extra argument
5425         instead of `interactive-p'.
5427         * calc/calc-misc.el (calc-other-window): Use an extra argument
5428         instead of `interactive-p'.
5430         * calc/calc-rewr.el (calc-match): Use an extra argument instead of
5431         `interactive-p'.
5433 2004-10-26  Kim F. Storm  <storm@cua.dk>
5435         * help.el (describe-key): Describe both down-event and up-event
5436         for a mouse click.
5438 2004-10-26  Richard M. Stallman  <rms@gnu.org>
5440         * woman.el (woman): Don't call interactive-p.
5442         * pcomplete.el (pcomplete): Instead of interactive-p,
5443         use an arg set non-nil by the interactive spec.
5445         * menu-bar.el (menu-bar-make-toggle): Instead of interactive-p,
5446         use an arg set non-nil by the interactive spec.
5448         * man.el (Man-cleanup-manpage): Instead of interactive-p,
5449         use an arg set non-nil by the interactive spec.
5451 2004-10-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
5453         * progmodes/flymake.el (flymake-split-string):
5454         Use `flymake-split-string-remove-empty-edges' in any case.
5456 2004-10-26  Masatake YAMATO  <jet@gyve.org>
5458         * progmodes/flymake.el (flymake-err-line-patterns):
5459         Use `compilation-error-regexp-alist-alist' instead of
5460         `compilation-error-regexp-alist'.
5462 2004-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5464         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Fix up the spurious
5465         verbatim face on the \ of \end{verbatim}.
5467 2004-10-25  Jay Belanger  <belanger@truman.edu>
5469         * calc/calc-incom.el (calc-digit-dots):  Inhibit read-only before
5470         erasing minibuffer.
5472 2004-10-25  Simon Josefsson  <jas@extundo.com>
5474         * subr.el (read-passwd): Move to net/password.el.
5476         * net/password.el (read-passwd): Add.  Autoload it.
5478 2004-10-25  Kai Grossjohann  <kai.grossjohann@gmx.net>
5480         * mouse-sel.el (mouse-sel-mode): Specify custom group.
5482         * simple.el (process-file): Fix logic.
5484 2004-10-24  Luc Teirlinck  <teirllm@auburn.edu>
5486         * indent.el (set-left-margin, set-right-margin): Delete redundant code.
5487         (increase-right-margin): Remove erroneous call to `interactive-p'.
5489 2004-10-24  Kim F. Storm  <storm@cua.dk>
5491         * help.el (describe-mode): Fix 2004-10-13 change.
5492         Copy pure "Auto Fill" string so it can be propertized later
5493         without causing a read-only error.
5495 2004-10-24  Luc Teirlinck  <teirllm@auburn.edu>
5497         * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
5498         style indexes.
5500 2004-10-24  Kai Grossjohann  <kai.grossjohann@gmx.net>
5502         * simple.el (process-file): Accept nil for INFILE.  Reported by
5503         Luc Teirlinck.
5505 2004-10-24  Masatake YAMATO  <jet@gyve.org>
5507         * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
5508         Handle periods and underscores in a function name.
5509         Remove the address fontification.
5511 2004-10-24 Masatake YAMATO <jet@gyve.org>
5513         * progmodes/asm-mode.el (asm-font-lock-keywords):
5514         Use font-lock-variable-name-face for registers.
5516 2004-10-24  Nick Roberts  <nickrob@snap.net.nz>
5518         * progmodes/gdb-ui.el (gdb-get-create-buffer): Allow modes to run
5519         kill-all-local-variables.
5520         (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
5521         (gdb-registers-mode, gdb-locals-mode, gdb-assembler-mode):
5522         Use kill-all-local-variables and provide mode-hooks.
5523         (gdb-assembler-font-lock-keywords): New font lock keywords definition.
5524         (gdb-assembler-mode): Use 'gdb-assembler-font-lock-keywords'.
5525         Suggested by Masatake YAMATO <jet@gyve.org>.
5527 2004-10-23  Kai Grossjohann  <kai.grossjohann@gmx.net>
5529         * simple.el (process-file): New function, similar to call-process
5530         but supports file handlers.
5531         * vc.el (vc-do-command): Use it, instead of call-process.
5532         * net/tramp-vc.el (vc-do-command): Do not advise it if
5533         process-file is fboundp.
5534         * net/tramp.el (tramp-file-name-handler-alist): Add entry for
5535         process-file.
5536         (tramp-handle-process-file): New function.
5537         (tramp-file-name-for-operation): Support process-file.
5539 2004-10-23  Ulf Jasper  <ulf.jasper@web.de>
5541         * calendar/icalendar.el (icalendar--weekday-array): New constant.
5542         (icalendar-weekdayabbrev-table)
5543         (icalendar-monthnumber-table): Delete.
5544         (icalendar--get-month-number): Use calendar-month-name-array.
5545         (icalendar--get-weekday-number): New function.
5546         (icalendar--get-weekday-abbrev) Use calendar-day-name-array.
5547         (icalendar-export-region): Handle multi-line entries.
5548         (icalendar--convert-ical-to-diary): Use calendar-day-name-array.
5550 2004-10-23  John Paul Wallington  <jpw@gnu.org>
5552         * ibuffer.el (ibuffer-find-file): Remove `interactive-p' call;
5553         `wildcards' set to t in interactive spec.
5555         * ibuf-ext.el (ibuffer-jump-to-buffer): Read buffer name in
5556         interactive spec rather than use `interactive-p'.
5557         (ibuffer-kill-line): Set arg `interactive-p' in interactive spec
5558         rather than use function `interactive-p'.
5560 2004-10-22  Kenichi Handa  <handa@m17n.org>
5562         * international/mule.el (translate-region): Implement it in Lisp
5563         as a front end of translate-region-internal.
5565 2004-10-21  Jay Belanger  <belanger@truman.edu>
5567         * calc/calc-aent.el (calc-alg-ent-map, calc-alg-ent-esc-map):
5568         Declare these variables with defvar.
5570         * calc/calc-aent.el (calc-do-alg-entry): Since `calc-alg-ent-map'
5571         is bound, only check to see if it is bound.
5573 2004-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5575         * textmodes/tex-mode.el (tex-compilation-parse-errors):
5576         Don't output messages.
5578         * calc/calc-help.el (calc-describe-bindings): Fix last change.
5580 2004-10-21  John Paul Wallington  <jpw@gnu.org>
5582         * calc/calc-graph.el (calc-graph-init):
5583         Use `set-process-query-on-exit-flag'.
5585 2004-10-21  Daniel Pfeiffer  <occitan@esperanto.org>
5587         * progmodes/compile.el (compilation-start): Rely on `cd' to get
5588         dir right and also allow argumentless cd.
5590 2004-10-19  Richard M. Stallman  <rms@gnu.org>
5592         * textmodes/flyspell.el (flyspell-mode): Doc fix.
5594         * eshell/em-unix.el (eshell-grep):
5595         Don't bind compilation-process-setup-function.
5597         * comint.el (comint-insert-input): Use @ in `interactive'.
5598         (comint-input-filter-functions): Doc fix.
5599         (comint-kill-whole-line, comint-get-source): Doc fix.
5601         * progmodes/compile.el (compilation-setup):
5602         Don't set buffer-read-only if MINOR is non-nil.
5604 2004-10-19  Jay Belanger  <belanger@truman.edu>
5606         * calc/calc.el (calc-emacs-type-19, calc-emacs-type-epoch)
5607         (calc-emacs-type-gnu19): Remove.
5608         (calc-digit-map, calc-read-key-sequence, calc-read-key):
5609         Remove check for old emacs versions.
5611         * calc/calc-ext.el (calc-fancy-prefix): Remove emacs version check.
5612         (calc-init-extensions): Define `calc-alg-map' and `calc-alg-esc-map'
5613         for current Emacs.
5615         * calc/calc-aent.el (calcAlg-previous): Check to see if looking at
5616         the end of the minibuffer.
5617         (calc-do-alg-entry): Remove Emacs version check.  Use `copy-keymap' to
5618         copy `esc-map'.
5620         * calc/calc-graph.el (calc-graph-plot): Remove emacs version check.
5622         * calc/calc-mode.el (calc-total-algebraic-mode): Remove error
5623         call that would be given when the current emacs was used.
5625 2004-10-19  Ulf Jasper  <ulf.jasper@web.de>
5627         * calendar/icalendar.el: Set coding to utf-8.
5628         (icalendar-version): Increase to 0.07.
5629         (icalendar-monthnumber-table): Change March pattern.
5630         (icalendar-get-all-event-properties)
5631         (icalendar-set-event-property): Delete.
5632         (icalendar-all-events): No longer interactive.
5633         (icalendar-convert-diary-to-ical)
5634         (icalendar-extract-ical-from-buffer): Make obsolete, and alias to
5635         their replacements.
5636         (icalendar-export-file, icalendar-export-region): New functions;
5637         essentially old `icalendar-convert-diary-to-ical' but appending to
5638         target rather than overwriting.
5639         (icalendar-import-file): Append to target file rather than
5640         overwriting.  Fourth arg deleted.
5641         (icalendar-import-buffer): New name for old
5642         `icalendar-extract-ical-from-buffer'.
5643         (icalendar--convert-string-for-import): New name for
5644         old `icalendar-convert-for-import'.
5645         (include-icalendar-files): Delete.
5646         Prefix for all internal functions changed from `icalendar-'
5647         to `icalendar--'.
5649 2004-10-19  Richard M. Stallman  <rms@gnu.org>
5651         * paths.el (news-path): Fix previous change.
5653 2004-10-18 Jay Belanger  <belanger@truman.edu>
5655         * calc/calc-help.el (calc-describe-bindings):
5656         Set `buffer-read-only' to nil while working in the keybindings buffer;
5657         remove some extra information from the keybindings buffer.
5659 2004-10-18  David Ponce  <david@dponce.com>
5661         * mouse.el (mouse-drag-move-window-top): New function.
5662         (mouse-drag-mode-line-1): Use it.
5664 2004-10-18  Thien-Thi Nguyen  <ttn@gnu.org>
5666         * info.el (Info-fontify-node): For multiline refs,
5667         arrange to unfontify newline and surrounding whitespace.
5669 2004-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5671         * vc-arch.el (vc-arch-workfile-version): Don't burp if the patch-log
5672         directory is missing.
5674 2004-10-17  John Paul Wallington  <jpw@gnu.org>
5676         * ibuffer.el (ibuffer-default-display-maybe-show-predicates):
5677         New customizable variable; whether to display buffers that match
5678         `ibuffer-maybe-show-predicates' by default.
5679         (ibuffer-maybe-show-predicates): Mention it in docstring.
5680         (ibuffer-display-maybe-show-predicates): New variable.
5681         (ibuffer-update): Prefix arg now toggles whether buffers that
5682         match `ibuffer-maybe-show-predicates' should be displayed.
5683         (ibuffer-mode): Set `ibuffer-display-maybe-show-predicates'
5684         locally to heed `ibuffer-default-display-maybe-show-predicates'.
5685         (ibuffer-redisplay-engine): Rename optional second arg to `ignore'.
5687 2004-10-17  Michael Albinus  <michael.albinus@gmx.de>
5689         * net/tramp.el: Redo sync with Tramp 2.0.45.  Last commit did not
5690         work correctly.
5692 2004-10-17  Daniel Pfeiffer  <occitan@esperanto.org>
5694         * buff-menu.el (Buffer-menu-revert-function): Emulate save-excursion.
5695         (Buffer-menu-beginning): New helper function.
5696         (Buffer-menu-execute): Use it.
5697         (Buffer-menu-select): Use it.
5698         (Buffer-menu-sort): Use it and also keep markers.
5700 2004-10-17  Richard M. Stallman  <rms@gnu.org>
5702         * paths.el (news-directory): Rename from news-path.  Old name alias.
5703         (rmail-spool-directory): Use defvar.
5704         (sendmail-program): Use defcustom.
5705         (remote-shell-program): Use defcustom.
5706         (term-file-prefix): Use defvar.
5707         (abbrev-file-name): Use defvar.
5709         * term.el: Add maintainer.
5711         * subr.el (with-local-quit): Return nil if there's a quit.
5712         (read-passwd): Use with-local-quit.  Doc fix.
5714         * strokes.el (strokes-list-strokes): Don't try to delete char at eob.
5715         (strokes-unload-hook): Set as a variable with add-hook.
5717         * startup.el (fancy-splash-tail, normal-splash-screen):
5718         Update copyright year.
5720         * shadowfile.el (shadowfile-unload-hook): Set as variable w/ add-hook.
5722         * server.el (server-unload-hook): Set as a variable with add-hook.
5724         * help-at-pt.el (help-at-pt-unload-hook): Use add-hook; no defvar.
5726         * frame.el (special-display-popup-frame):
5727         Make the buffer current as its frame is created.
5729         * delsel.el (delsel-unload-hook): Set as a variable.
5731         * comint.el (comint-output-filter-functions):
5732         Add comint-watch-for-password-prompt.
5733         (comint-read-noecho): Function deleted.
5734         (send-invisible): Use read-passwd.
5736         * fringe.el (fringe-mode-initialize): New function.
5737         (fringe-mode): Use fringe-mode-initialize as :initialize.
5739 2004-10-17  Kim F. Storm  <storm@cua.dk>
5741         * language/indian.el (indian-script-language-alist): Swap value and doc.
5742         (indian-font-char-index-table): Doc fix.
5744 2004-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5746         * vc-hooks.el (vc-find-file-hook): Call vc-backend with absolute name.
5748 2004-10-16  Juri Linkov  <juri@jurta.org>
5750         * progmodes/compile.el (compilation-start): Move let-binding of
5751         `process-environment' into `with-current-buffer' body.
5752         Reported by Matt Hodges <MPHodges@member.fsf.org>.
5754 2004-10-16  Richard M. Stallman  <rms@gnu.org>
5756         * pcvs-util.el (cvs-bury-buffer):
5757         Don't call get-buffer-window for effect.
5759         * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
5761         * newcomment.el (comment-auto-fill-only-comments): Add autoload.
5763         * msb.el (msb-unload-hook): Set the variable.
5765         * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
5766         Use * to err if buffer is readonly.
5768         * subr.el (looking-back): Return only t or nil.
5770         * whitespace.el (whitespace-unload-hook): Set the variable.
5772         * view.el (view-mode-enable): Set view-page-size and
5773         view-half-page-size to nil.
5774         (view-set-half-page-size-default): view-half-page-size = nil
5775         means the default.
5776         (View-scroll-page-forward): Use view-page-size-default.
5777         (View-scroll-page-backward): Likewise.
5778         (view-page-size, view-half-page-size): Doc fixes.
5780         * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
5782         * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
5784         * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
5785         "cl" like other files.  Instead, call byte-compile-find-cl-functions.
5786         (byte-compile-log-1): Bind inhibit-read-only.
5787         (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
5788         (byte-compile-log-warning): Likewise.
5789         (byte-compile-file-form-require): Detect "cl" from the arg value.
5791         * progmodes/compile.el (compilation-start): Assume compilation-mode
5792         will make the buffer read-only.
5793         (compilation-mode): Take arg name-of-mode.
5794         (compilation-setup): Make buffer read-only.
5795         (compilation-handle-exit): Bind inhibit-read-only.
5797         * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
5798         (ispell-message): Likewise.
5799         (ispell-show-choices): Don't call get-buffer-window uselessly.
5800         (ispell-init-process): Use set-process-query-on-exit-flag.
5802 2004-10-16  Kim F. Storm  <storm@cua.dk>
5804         * fringe.el (fringe-bitmaps): Only initialize when defined.
5806         * pcvs.el (cvs-mode-view-file, cvs-mode-view-file-other-window): Add.
5807         (cvs-mode-find-file): Add optional `view' arg to enter view mode.
5809         * pcvs-defs.el (cvs-mode-map): Bind v to cvs-mode-view-file.
5811 2004-10-15  Simon Josefsson  <jas@extundo.com>
5813         * net/password.el: Add.
5815 2004-10-14  Masatake YAMATO  <jet@gyve.org>
5817         * progmodes/gud.el (gdb-script-beginning-of-defun): New function.
5818         (gdb-script-end-of-defun): New function.
5819         (gdb-script-mode): Use `gdb-script-beginning-of-defun' and
5820         `gdb-script-end-of-defun' as *-of-defun-function.
5822 2004-10-13  Daniel Pfeiffer  <occitan@esperanto.org>
5824         * button.el (button-activate): Allow a marker to display as an action.
5826         * help-fns.el (describe-variable): Use it to make "below" a hyperlink.
5828         * help.el (describe-mode): Use it to make minor mode list into
5829         hyperlinks.
5831 2004-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5833         * vc.el (vc-annotate-display-select): Fix typo.
5835         * subr.el (substitute-key-definition-key): New function.
5836         (substitute-key-definition): Use it with map-keymap.
5837         (event-modifiers): Use push.
5838         (mouse-movement-p, with-temp-buffer): Simplify.
5840 2004-10-12  Jay Belanger  <belanger@truman.edu>
5842         * calc/calc-help.el (calc-help-function-list, calc-help-variable-list):
5843         New variables.
5844         (calc-help-index-entries): New function.
5845         (calc-describe-function): Use `calc-help-function-list' instead of
5846         obarray for completion.
5847         (calc-describe-variable): Use `calc-help-variable-list' instead
5848         of obarray for completion.
5850 2004-10-12  Richard M. Stallman  <rms@gnu.org>
5852         * info-look.el (info-lookup-file): Add info-file property.
5853         (info-lookup-symbol): Likewise.
5855         * info.el (info-xref): Add underlining.
5856         (info): Add info-file property.
5857         (Info-find-emacs-command-nodes): Specify case-sensitive search.
5859 2004-10-12  Michael Albinus  <michael.albinus@gmx.de>
5861         Sync with Tramp 2.0.45.
5863         * net/tramp.el (top): Apply `def-edebug-spec' only if function is
5864         defined.  This is not the case for XEmacs without package "edebug".
5865         (tramp-set-auto-save-file-modes): Set permissions of autosaved
5866         remote files to the permissions of the original file.  This is not
5867         the case for Emacs < 21.3.50 and XEmacs < 21.5.  Add function to
5868         `auto-save-hook'.  Reported by Thomas Prokosch <thomas@nadev.net>.
5869         (tramp-perl-decode): Fix an error in Perl implementation.
5870         $pending must be cleared every loop.  Reported by Benjamin Place
5871         <benjaminplace@sprintmail.com>
5873         * net/tramp-smb.el (tramp-smb-advice-PC-do-completion):
5874         Don't activate advice during definition.  This is done later on,
5875         depending on test result of `substitute-in-file-name'.
5876         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5878 2004-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5880         * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message.
5882         * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating.
5884 2004-10-12  David Ponce  <david@dponce.com>
5886         * recentf.el (recentf-edit-list): Update the menu when the recentf
5887         list has been modified.
5889 2004-10-12  Simon Josefsson  <jas@extundo.com>
5891         * net/tls.el (tls-certtool-program): New variable.
5892         (tls-certificate-information): New function, based on
5893         ssl-certificate-information.
5895 2004-10-12  Kenichi Handa  <handa@m17n.org>
5897         * international/mule.el (coding-system-equal): Move from mule-util.el.
5899         * international/mule-util.el (coding-system-equal): Move to mule.el.
5901 2004-10-12  Kim F. Storm  <storm@cua.dk>
5903         * kmacro.el (kmacro-insert-counter, kmacro-add-counter): Use and
5904         reset kmacro-initial-counter-value if set.
5905         (kmacro-set-counter): Only set kmacro-counter if defining or executing
5906         macro.  Set kmacro-initial-counter-value otherwise. Never set both.
5907         (kmacro-display): Show macro counter if non-zero.
5909         * subr.el (substitute-key-definition): Mention command remapping
5910         in doc string.
5912 2004-10-11  Jay Belanger  <belanger@truman.edu>
5914         * calc/calc-misc.el (calc-info-goto-node): New function.
5915         (calc-tutorial, calc-info-summary): Go to appropriate Calc info
5916         node in one step.
5917         (calc-describe-copying, calc-describe-distribution)
5918         (calc-describe-thing, calc-describe-no-warranty, calc-describe-key):
5919         Go to appropriate info node in one step.
5921 2004-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5923         * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var.
5925         * font-lock.el (font-lock-apply-highlight): Fix last change.
5927 2004-10-11  Simon Josefsson  <jas@extundo.com>
5929         * mail/smtpmail.el (smtpmail-open-stream): Look for
5930         starttls-gnutls-program instead of starttls-program iff
5931         starttls-use-gnutls is non-nil.
5932         (smtpmail-open-stream): Don't overwrite user settings of
5933         starttls-extra-arguments and starttls-extra-args.
5935 2004-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5937         * comint.el (comint-mouse-insert-input): Remove.
5938         (comint-insert-input): Make it work for mouse bindings.
5939         (comint-mode-map): Move defs into the declaration.
5940         (comint-output-filter): Typo.
5942         * diff-mode.el (diff-current-defun): Fix 2004-06-13's change.
5944 2004-10-10  Kai Grossjohann  <kai.grossjohann@gmx.net>
5946         * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable.
5947         (ange-ftp-call-chmod): Reference remote-shell-program instead of
5948         ange-ftp-remote-shell.
5950 2004-10-10  Andreas Schwab  <schwab@suse.de>
5952         * emacs-lisp/byte-opt.el (byte-optimize-backward-word): Optimize
5953         `(backward-word)' to `(forward-word -1)', not `(forward-char -1)'.
5954         Reported by <sri@asu.edu>.
5956 2004-10-10  Benjamin Rutt  <brutt@bloomington.in.us>
5958         * vc.el (vc-annotate-mode): Remove variable.
5959         (vc-annotate-display-select): Only call vc-annotate-mode
5960         if we're not in that mode already.
5962 2004-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5964         * imenu.el (imenu--completion-buffer): Don't return t for rescan.
5965         (imenu-choose-buffer-index): Check here for rescan instead.
5967         * font-lock.el (font-lock-apply-highlight): Explicitly check the case
5968         where the face expression evals to nil.
5970         * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun.
5971         (tex-font-lock-keywords-2): Use it.
5972         (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment.
5974         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes.
5976 2004-10-09  Kim F. Storm  <storm@cua.dk>
5978         * subr.el (progress-reporter-update): Define before first usage.
5979         (make-progress-reporter): Doc fix.
5981 2004-10-09  Luc Teirlinck  <teirllm@auburn.edu>
5983         * textmodes/paragraphs.el (sentence-end-double-space)
5984         (sentence-end-without-period, sentence-end-without-space)
5985         (sentence-end): Doc fixes.
5987 2004-10-08  Peter Seibel  <peter@javamonkey.com>  (tiny change)
5989         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
5990         Change paragraph-start regexp so we don't fill code starting with #'(.
5992 2004-10-08  Sebastien Kirche  <seki@seki.fr>  (tiny change)
5994         * mail/mail-extr.el (mail-extr-ignore-realname-equals-mailbox-name):
5995         New defcustom.
5996         (extract-address-components): Use it.
5998 2004-10-08  Paul Pogonyshev  <pogonyshev@gmx.net>
6000         * subr.el (make-progress-reporter, progress-reporter-update)
6001         (progress-reporter-force-update, progress-reporter-do-update)
6002         (progress-reporter-done): New functions.
6004         * tar-mode.el (tar-summarize-buffer): Use progress reporter.
6006         * progmodes/etags.el (etags-tags-completion-table): Use progress
6007         reporter.
6008         (etags-tags-apropos): Likewise.
6010 2004-10-08  Alan Mackenzie  <acm@muc.de>
6012         * isearch.el (isearch-yank-line): C-y yanks to next EOL, not end
6013         of current line.
6015 2004-10-08  Masatake YAMATO  <jet@gyve.org>
6017         * server.el (server-process-filter): Wrap `process-send-region'
6018         by `condition-case' to guard the case when the pipe to PROC is closed.
6020 2004-10-07  Mark A. Hershberger  <mah@everybody.org>
6022         * xml.el (xml-substitute-special): Limit handling of external entities.
6024 2004-10-06  Nick Roberts  <nickrob@snap.net.nz>
6026         * progmodes/gdb-ui.el (gdb-ann3): (Re-)initialise gdb-input-queue.
6028 2004-10-06  John Paul Wallington  <jpw@gnu.org>
6030         * xml.el (xml-parse-dtd): Fix `error' call.
6032 2004-10-05  Mark A. Hershberger  <mah@everybody.org>
6034         * xml.el (xml-substitute-special): Return a single string instead
6035         of a list of strings if an entity substitution is made.
6037 2004-10-05  Ulf Jasper  <ulf.jasper@web.de>
6039         * calendar/icalendar.el: New file.
6041 2004-10-05  Juri Linkov  <juri@jurta.org>
6043         * isearch.el (isearch-done): Set mark after running hook.
6044         Reported by Drew Adams <drew.adams@oracle.com>.
6046         * info.el (Info-history, Info-toc): Fix Info headers.
6047         (Info-toc): Narrow buffer before Info-fontify-node.
6048         (Info-build-toc): Don't check for special Info file names.
6049         Set main-file to nil if Info-find-file returns a symbol.
6051 2004-10-05  Emilio C. Lopes  <eclig@gmx.net>:
6053         * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
6054         (calendar-mode-map): Add binding for `calendar-goto-iso-week'.
6055         * calendar/cal-menu.el (calendar-mode-map): Ditto.
6057 2004-10-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
6059         * calendar/cal-iso.el (calendar-iso-read-args): New function,
6060         for old interactive spec from calendar-goto-iso-date.
6061         (calendar-goto-iso-date): Use it.
6062         (calendar-goto-iso-week): New function.  Suggested by Emilio
6063         C. Lopes <eclig@gmx.net>.
6065 2004-10-04  Luc Teirlinck  <teirllm@auburn.edu>
6067         * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and
6068         `set-right-margin' bindings that follow the minor mode conventions.
6070 2004-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6072         * textmodes/tex-mode.el (tex-dvi-view-command): Use `yap' on w32.
6073         (tex-font-lock-keywords-1): Add url and nolinkurl for args with `_'.
6074         (latex-block-args-alist): Add minipage and picture.
6075         (latex-block-body-alist): Use reftex-label if enabled.
6076         (latex-insert-block): Don't insert a \n if not necessary.
6077         (tex-compile-commands): Make sure dvips doesn't send to printer.
6078         (tex-compile-default): Handle the case where no executable is found.
6079         (latex-noindent-environments): New var.
6080         (latex-find-indent): Use it.  Take an empty line as an arg-breaker.
6081         If tex-indent-allhanging is non-nil, make sure we only align for macros
6082         at beginning of line.
6084 2004-10-03  Daniel Pfeiffer  <occitan@esperanto.org>
6086         * newcomment.el (comment-beginning): Doc fix and don't choke on
6087         unset `comment-end-skip' when at beginning of comment.
6089 2004-10-02  Dan Nicolaescu  <dann@ics.uci.edu>
6091         * term.el (term-adjust-current-row-cache): Don't allow the current
6092         row to become negative.
6093         (term-emulate-terminal): Fix insert mode. Handle tab insertion at
6094         the end of the line. Fix scroll down. Add comments.
6095         (term-handle-ansi-escape): Don't exceed terminal width when moving
6096         right.
6097         (term-scroll-region): Move the cursor after setting the scroll region.
6099 2004-10-01  Luc Teirlinck  <teirllm@auburn.edu>
6101         * indent.el (set-left-margin, set-right-margin): Rename `lm' arg
6102         to `width' for consistency with docstring.  Doc fix.
6104 2004-10-01  Martin Stjernholm  <bug-cc-mode@gnu.org>
6106         * progmodes/cc-langs.el: Load cl here since cc-defs doesn't do it.
6107         This is necessary for derived modes.
6109 2004-09-30  Kim F. Storm  <storm@cua.dk>
6111         * kmacro.el (kmacro-lambda-form, kmacro-extract-lambda): Add.
6112         (kmacro-bind-to-key, kmacro-name-last-macro): Use kmacro-lambda-form.
6114         * edmacro.el: Require kmacro to use the new kmacro-lambda-form and
6115         kmacro-extract-lambda functions.
6116         (edit-kbd-macro): Handle kmacro lambda forms.
6117         Include counter and counter format in edit buffer.
6118         (edmacro-finish-edit): Get counter and format from edit buffer and
6119         update kmacro bindings when found.
6121 2004-09-29  Luc Teirlinck  <teirllm@auburn.edu>
6123         * textmodes/paragraphs.el (forward-paragraph):
6124         Avoid args-out-of-range error when point winds up at the beginning of
6125         the buffer and hard newlines are enabled.
6127         * newcomment.el (comment-multi-line): Doc fix.
6129 2004-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6131         * diff-mode.el (diff-file-header-re): Tighten up regexp a tiny bit.
6132         (diff-fixup-modifs): Catch unified-diff file-headers.
6134 2004-09-29  Kim F. Storm  <storm@cua.dk>
6136         * progmodes/gdb-ui.el (breakpoint): Define as fringe bitmap.
6137         (gdb-mouse-toggle-breakpoint): Fix fringe-bitmaps-at-pos usage.
6138         (gdb-put-breakpoint-icon): Use breakpoint bitmap.
6140         * fringe.el (fringe-bitmap-p): New macro.
6141         (fringe-bitmaps): Add standard fringe bitmaps on load.
6143 2004-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6145         * dired.el (dired-view-command-alist): Use more efficient regexps.
6146         Remove dubious arguments.
6147         (dired-align-file): New function.
6148         (dired-insert-directory): Use it.
6149         (dired-move-to-end-of-filename): Make the " -> " search more specific.
6150         (dired-buffers-for-dir): Remove unused var `pattern'.
6152 2004-09-28  Matthew Mundell  <matt@mundell.ukfsn.org>
6154         * calendar/diary-lib.el (list-diary-entries): Save diary buffer
6155         from diary display excursion.  Store diary buffer's point for
6156         `simple-diary-display'.
6157         (simple-diary-display): Set window point and start when
6158         displaying buffer, to preserve point.
6160 2004-09-27  Luc Teirlinck  <teirllm@auburn.edu>
6162         * textmodes/enriched.el (enriched-translations): Replace defconst
6163         with defvar.
6165 2004-09-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6167         * printing.el: Doc fix.
6168         (pr-version): New version number (6.8.1).
6169         (pr-ps-file-using-ghostscript): Use make-temp-file instead of
6170         make-temp-name.
6171         (pr-delete-file): Check if file exists before deleting it.
6172         Reported by Lennart Borgman <lennart.borgman.073@student.lu.se>.
6174 2004-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6176         * term.el (term-display-table): New variable.
6177         (term-mode): Use it.
6178         (term-exec-1): Set the coding system to binary.
6179         (term-emulate-terminal): Decode the string before inserting it.
6181 2004-09-26  Dan Nicolaescu  <dann@ics.uci.edu>
6183         * term.el (term-ansi-at-eval-string, term-ansi-default-fg)
6184         (term-ansi-default-bg, term-ansi-current-temp): Delete unused vars.
6185         (map): Bind S-prior, S-next and S-insert.
6186         (term-mode): Set `indent-tabs-mode' to nil.
6187         (term-paste): New function to be bound to S-insert.
6188         (term-send-del, term-send-backspace): Change the strings sent.
6189         (term-termcap-format): Synchronyze with etc/e/eterm.ti.
6190         (term-handle-colors-array): Fix handling of underline and reverse.
6191         (term-handle-ansi-escape): Do not handle smcup/rmcup.  Add comments.
6192         (term-erase-in-line): Fix comparison.
6193         (term-emulate-terminal): Fix line wrap handling.
6194         (term-start-output-log): Rename from `term-set-output-log'.
6195         (term-stop-output-log): Rename from `term-stop-photo'.
6196         (term-switch-to-alternate-sub-buffer): Comment out, unused.
6198 2004-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6200         * dired.el (dired-move-to-filename): Don't output a message if
6201         raise-error is non-nil.  Fix return position and value.
6203         * files.el (insert-directory): Obey --dired even with symlinks.
6205 2004-09-25  Lars Hansen  <larsh@math.ku.dk>
6207         * ls-lisp.el (ls-lisp-format): Mark file names with property
6208         dired-filename.
6210 2004-09-25  Kim F. Storm  <storm@cua.dk>
6212         * ido.el (ido-max-directory-size): New defcustom.
6213         (ido-decorations): Add "too big" element.
6214         (ido-directory-too-big): New dynamic var.
6215         (ido-may-cache-directory): Don't cache big directories.
6216         (ido-directory-too-big-p): New defun.
6217         (ido-set-current-directory): Update ido-directory-too-big.
6218         (ido-read-internal): Make empty ido-cur-item if too-big.
6219         (ido-buffer-internal): Use ido-read-internal directly instead of
6220         ido-read-buffer.
6221         (ido-file-internal): Init ido-directory-too-big.
6222         (ido-complete): <TAB> If ido-directory-too-big is set, clear it,
6223         and redo completion with full list.
6224         (ido-toggle-ignore): <C-a> If ido-directory-too-big is set, clear
6225         it, and show completions.
6226         (ido-all-completions): Let bind ido-directory-too-big to nil.
6227         (ido-exhibit): Handle ido-directory-too-big.
6228         (ido-read-buffer): Handle fallback to read-buffer.
6229         Init ido-directory-too-big.
6230         (ido-read-file-name, ido-read-directory-name, ido-completing-read):
6231         Init ido-directory-too-big.
6233 2004-09-24  Luc Teirlinck  <teirllm@auburn.edu>
6235         * subr.el (delay-mode-hooks): Doc fix.
6237 2004-09-23  Luc Teirlinck  <teirllm@auburn.edu>
6239         * textmodes/enriched.el
6240         (enriched-default-text-properties-local-flag): New variable.
6241         (enriched-mode): Make sure that enabling and disabling the mode is
6242         a no-op.  Doc fix.
6244 2004-09-23  H\e,Ae\e(Bkon Malmedal  <hmalmedal@yahoo.no>  (tiny change)
6246         * calendar/holidays.el (holiday-advent): Report on a specified day
6247         offset from advent, not just advent.
6248         (holiday-easter-etc): Report on one specified day offset from
6249         easter, not all easter holidays. Various Easter holidays moved to
6250         `christian-holidays' variable in calendar.el.
6251         * calendar/calendar.el (christian-holidays): Adapt for new
6252         behaviour of `holiday-advent' and `holiday-easter-etc' functions.
6254 2004-09-23  Kim F. Storm  <storm@cua.dk>
6256         * image.el (insert-sliced-image): Add doc string.
6258         * ido.el (ido-choice-list): New dynamic var for `list' context.
6259         (ido-context-switch-command): New dynamic var.
6260         (ido-define-mode-map): Generalize switch between file/buffer contexts.
6261         (ido-read-internal): Handle new `list' context.
6262         Handle insert-buffer and insert-file ido-exit values.
6263         (ido-buffer-internal): New arg switch-cmd.  Use it to setup
6264         ido-context-switch-command. Handle insert-file ido-exit value.
6265         (ido-read-buffer): Set ido-context-switch-command to 'ignore
6266         unless it is already bound by caller.
6267         (ido-file-internal): New arg switch-cmd.  Use it to setup
6268         ido-context-switch-command.  Handle insert-buffer ido-exit value.
6269         (ido-enter-insert-buffer, ido-enter-insert-file): New commands
6270         used for context switching.
6271         (ido-all-completions): Handle new `list' context.
6272         (ido-make-choice-list): Return choices for `list' context.
6273         (ido-find-file-in-dir, ido-display-file, ido-write-file)
6274         (ido-display-buffer, ido-kill-buffer): Disable context switching.
6275         (ido-insert-buffer, ido-insert-file): Setup context switching.
6276         (ido-exhibit): Handle `list' context.
6277         (ido-read-file-name): Disable context switching.  Handle fallback.
6278         (ido-read-directory-name): Disable context switching.
6279         (ido-completing-read): New defun like completing-read.  Setup and
6280         use new `list' context.
6282 2004-09-20  Jesper Harder  <harder@ifa.au.dk>
6284         * progmodes/tcl.el (inferior-tcl): Use pop-to-buffer.
6286 2004-09-21  Jay Belanger  <belanger@truman.edu>
6288         * calc/calc-graph.el (calc-graph-add-curve): Move the call to
6289         `calc-graph-set-styles' so the gnuplot buffer will appear in a
6290         separate window.
6292 2004-09-21  Luc Teirlinck  <teirllm@auburn.edu>
6294         * subr.el (after-change-major-mode-hook): Doc fix.
6296 2004-09-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6298         * printing.el: Doc fix.  Add a new tip about the use of gsprint instead
6299         of ghostscript for monochrome PostScript file in Windows.
6301 2004-09-21  Kenichi Handa  <handa@m17n.org>
6303         * descr-text.el (describe-char): Checking of quail activation
6304         fixed.
6306 2004-09-21  Jay Belanger  <belanger@truman.edu>
6308         * calc/calc.el (calc-mode-var-list): Remove unnecessary quotes.
6310 2004-09-20  Luc Teirlinck  <teirllm@auburn.edu>
6312         * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
6313         after the mode hooks instead of before.  Doc fix.
6315 2004-09-20  Jason Rumney  <jasonr@gnu.org>
6317         * startup.el (command-line) [windows-nt]: Try .emacs first, then
6318         _emacs, but revert to .emacs if neither exists in home directory.
6320 2004-09-20  John Paul Wallington  <jpw@gnu.org>
6322         * bindings.el (completion-ignored-extensions): Add .dfsl.
6324 2004-09-20  Richard M. Stallman  <rms@gnu.org>
6326         * bindings.el (scroll-left): Make it disabled.
6328         * files.el (enable-local-eval): Doc fix.
6330         * indent.el (move-to-left-margin): Special case for minibuffer.
6332         * term.el (term-emulate-terminal): Turn off undo for output.
6333         Use with-current-buffer and save-selected-window.
6335         * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
6337         * progmodes/make-mode.el (makefile-fill-paragraph):
6338         Don't insist on spaces when looking for comments.  # is enough.
6340         * files.el (hack-local-variables): Copy the variables list
6341         to another buffer, strip prefixes and suffixes there, then read.
6342         (enable-local-eval): Doc fix.
6343         (ignored-local-variables): Initialize to nil.
6344         (risky-local-variable-p): Don't check ignored-local-variables here.
6345         (hack-one-local-variable): Ignore var if in ignored-local-variables.
6347 2004-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
6349         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
6350         of = to "." (punctuation).
6352 2004-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6354         * subr.el (event-basic-type): Fix mask (extend to 22bits).
6356 2004-09-18  Luc Teirlinck  <teirllm@auburn.edu>
6358         * textmodes/enriched.el (enriched-rerun-flag): New variable.
6359         (enriched-before-change-major-mode): New function.
6360         Add it to `change-major-mode-hook'.
6361         (enriched-after-change-major-mode): New function.
6362         Add it to `after-change-major-mode-hook'.
6363         (enriched-mode): Make it work correctly if called from
6364         `after-change-major-mode-hook'.
6365         No longer set `indent-line-function'.
6367         * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
6369         * subr.el (after-change-major-mode-hook): New variable.
6370         (run-mode-hooks): Implement it.
6372 2004-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6374         * battery.el (battery-linux-proc-apm): Use string-to-number.
6375         (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
6376         Use dolist (and less indentation).  Use erase-buffer.
6377         Pre-initialize `design-capacity', `warn', and `low'.
6378         (battery-format): Use replace-regexp-in-string.
6380 2004-09-18  Ralph Schleicher  <rs@nunatak.allgaeu.org>
6382         * battery.el: Delete superfluous empty lines.
6383         (battery-linux-proc-acpi): Attempt to gather information from all
6384         battery subdirectories regardless of their file name.
6385         (battery-linux-proc-apm): Replace all occurrences of
6386         battery-hex-to-int-2 with string-to-int (base 16).
6387         (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
6388         (battery-hex-map): Delete variable.
6390 2004-09-18  John Paul Wallington  <jpw@gnu.org>
6392         * calc/calc-units.el (calc-quick-units): Fix overzealous
6393         s/or/unless/.
6395 2004-09-17  Jay Belanger  <belanger@truman.edu>
6397         * calc/calc.el (calc-mode-var-list): Fix the value of
6398         `calc-matrix-brackets'.
6400 2004-09-17  Romain Francoise  <romain@orebokech.com>
6402         * ibuf-ext.el (define-ibuffer-filter filename):
6403         Expand dired-directory since buffer-file-name is absolute.
6405 2004-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
6407         * ediff-init.el (ediff-current-diff-face-A)
6408         (ediff-current-diff-face-B, ediff-current-diff-face-C)
6409         (ediff-current-diff-face-Ancestor)
6410         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
6411         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
6412         (ediff-even-diff-face-A, ediff-even-diff-face-B)
6413         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
6414         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
6415         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
6416         Use min-colors.
6418         * term.el (term-down): Perform vertical motion if DOWN is negative.
6419         (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
6420         (term-termcap-format): Synchronyze with the eterm terminfo entry
6421         in etc/e/eterm.ti.
6422         (term-handle-colors-array): If the current foreground or
6423         background are zero (i.e. unspecified), use the foreground and
6424         background of the default face for reverse video.
6425         (term-ansi-at-eval-string, term-ansi-default-fg)
6426         (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
6427         (term-mem): Delete ununsed function.
6428         (term-protocol-version): Increment.
6429         (term-current-face): Set to default.
6431 2004-09-15  Jay Belanger  <belanger@truman.edu>
6433         * calc/calc.el (calc-mode-var-list): Define this variable.
6434         (calc-always-load-extensions, calc-line-numbering)
6435         (calc-line-breaking, calc-display-just, calc-display-origin)
6436         (calc-number-radix, calc-leading-zeros, calc-group-digits)
6437         (calc-group-char, calc-point-char, calc-frac-format)
6438         (calc-prefer-frac, calc-hms-format, calc-date-format)
6439         (calc-float-format, calc-full-float-format, calc-complex-format)
6440         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
6441         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
6442         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
6443         (calc-matrix-brackets, calc-language, calc-language-option)
6444         (calc-left-label, calc-right-label, calc-word-size)
6445         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
6446         (calc-display-raw, calc-internal-prec, calc-angle-mode)
6447         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
6448         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
6449         (calc-window-height, calc-display-trail, calc-show-selections)
6450         (calc-use-selections, calc-assoc-selections)
6451         (calc-display-working-message, calc-auto-why, calc-timing)
6452         (calc-mode-save-mode, calc-standard-date-formats)
6453         (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
6454         (calc-user-parse-tables, calc-gnuplot-default-device)
6455         (calc-gnuplot-default-output, calc-gnuplot-print-device)
6456         (calc-gnuplot-print-output, calc-gnuplot-geometry)
6457         (calc-graph-default-resolution, calc-graph-default-resolution-3d)
6458         (calc-invocation-macro, calc-show-banner): Give these values as
6459         part of `calc-mode-var-list's initialization after the variables
6460         are declared with defvar.
6461         (calc-bug-address):  Change email address to send bug reports to.
6462         Change the maintainer address at the top.
6463         (calc-mode): Compare `calc-settings-file' to `user-init-file' rather
6464         than "\\.emacs" to determine if it is the user-init-file.
6466         * calc/calc-embed.el (calc-embedded-set-modes): Use
6467         `calc-mode-var-list' correctly.
6469 2004-09-15  Thien-Thi Nguyen  <ttn@gnu.org>
6471         * vc.el (annotate-time): Document point handling.
6472         (vc-annotate-display-autoscale): Doc fix.
6474 2004-09-15  Miles Bader  <miles@gnu.org>
6476         * generic.el (generic-make-keywords-list): Use symbol rather than
6477         word anchors in regexp.
6479 2004-09-14  Sean O'Rourke  <sorourke@cs.ucsd.edu>
6481         * ibuf-ext.el (define-ibuffer-filter filename): If buffer has
6482         no file name consider `dired-directory'.
6484 2004-09-14  Kim F. Storm  <storm@cua.dk>
6486         * faces.el (cursor): Add face-no-inherit property.  Doc fix.
6488 2004-09-14  Simon Josefsson  <jas@extundo.com>
6490         * files.el (auto-mode-alist): Map .soa and .zone to dns-mode.
6492         * textmodes/dns-mode.el: Add.
6494 2004-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6496         * novice.el (disabled-command-hook): Use shorthand for obsolescence.
6497         (disabled-command-function): Make the ?\  char more obvious.
6499         * vc-arch.el (vc-arch-root, vc-arch-registered):
6500         * vc-mcvs.el (vc-mcvs-root, vc-mcvs-registered): Use vc-find-root.
6502 2004-09-13  Hovav Shacham  <hovav@sha1.stanford.edu>
6504         * windmove.el (windmove-frame-edges): Report coordinates of
6505         outside edges of frame, not inside edges.
6506         (windmove-coordinates-of-position): Convert into wrapper to new
6507         function `windmove-coordinates-of-window-position';
6508         `compute-motion' always applies to selected window.
6509         (windmove-coordinates-of-position): Update documentation to refer
6510         to Emacs 21 Lisp Reference Manual.
6511         (windmove-find-other-window): Fix off-by-one errors for max x,y.
6513 2004-09-13  Kim F. Storm  <storm@cua.dk>
6515         * isearch.el (isearch-resume-in-command-history): Rename from
6516         isearch-resume-enabled and change default to nil.
6518 2004-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6520         * vc-hooks.el (vc-ignore-dir-regexp): New var.
6521         (vc-registered): Use it.
6522         (vc-find-root): New fun.
6524         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
6525         Don't tell to use \\{...} when it's already done.
6527         * textmodes/bibtex.el (bibtex-generate-url-list): Change format.
6528         Provide a sample complex default.
6529         (bibtex-url, bibtex-font-lock-url): Adapt to new format.
6530         (bibtex-entry): Use mapc.
6532 2004-09-12  Kim F. Storm  <storm@cua.dk>
6534         * kmacro.el (kmacro-step-edit-prompt): Add "%s" format to message.
6536         * emulation/cua-rect.el (cua--rectangle-operation): Let bind
6537         inhibit-field-text-motion to t so rectangles work in comint buffers.
6539         * simple.el (choose-completion-string): Set buffer before running
6540         choose-completion-string-functions hook so it can be buffer-local.
6542 2004-09-12  Daniel Pfeiffer  <occitan@esperanto.org>
6544         * progmodes/compile.el (compilation-start): Parse command to see
6545         if it starts with a cd, and if so perform it for the *compilation*
6546         buffer.  Change the header to reflect this.
6548 2004-09-11  Kim F. Storm  <storm@cua.dk>
6550         * ido.el (ido-enable-dot-prefix): Doc fix.
6551         (ido-enable-dot-prefix): New defcustom.
6552         (ido-set-matches1): Use it.
6554 2004-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6556         * textmodes/bibtex.el (bibtex-mark-active)
6557         (bibtex-run-with-idle-timer): Move the `if' inside the defun.
6559 2004-09-10  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
6561         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore): Regexp is
6562         used in a case insensitive environment.
6563         (bibtex-mode-map): Rearrange order of menus.
6564         (bibtex-quoted-string-re): Obsolete.
6565         (bibtex-complete-key-cleanup): Variable replaced by new function.
6566         (bibtex-font-lock-keywords): Use backquotes.
6567         (bibtex-font-lock-url-regexp): New internal variable.
6568         (bibtex-name-in-field): New optional arg remove-opt-alt to remove
6569         "OPT" and "ALT".
6570         (bibtex-insert-current-kill, bibtex-make-field)
6571         (bibtex-prepare-new-entry, bibtex-yank-pop, bibtex-String): Use unless.
6572         (bibtex-parse-field-text): Simplify.
6573         (bibtex-string=): New helper function.
6574         (bibtex-member-of-regexp): Merge with bibtex-autokey-get-title.
6575         (bibtex-map-entries): Use bibtex-string=.
6576         (bibtex-search-entry): Use not.
6577         (bibtex-enclosing-field): Fix docstring.
6578         (bibtex-assoc-regexp): Obsolete.
6579         (bibtex-format-entry): Use assoc-string and bibtex-string=.
6580         (bibtex-autokey-get-names): Handle empty name field.
6581         (bibtex-parse-strings): Use assoc-string and unless.
6582         (bibtex-complete-string-cleanup): Expansion list is passed as an arg.
6583         Use assoc-string.
6584         (bibtex-pop): Simplify.
6585         (bibtex-mode): Set font-lock-extra-managed-props.
6586         (bibtex-entry-update): Use assoc-string.
6587         (bibtex-parse-entry): Remove "OPT" and "ALT" from FIELD.
6588         (bibtex-autofill-entry): Use bibtex-string=.
6589         (bibtex-print-help-message): Simplify.
6590         (bibtex-find-entry): New optional arg START.
6591         (bibtex-validate): Use bibtex-string= and assoc-string.
6592         Do not call obsolete function compilation-parse-errors.
6593         (bibtex-remove-delimiters): Only remove delimiters if present.
6594         (bibtex-copy-entry-as-kill): Add docstring.
6595         (bibtex-clean-entry): Use bibtex-string=. Handle empty keys.
6596         Detect duplicate keys if bibtex-maintain-sorted-entries is nil.
6597         (bibtex-complete): Use bibtex-predefined-month-strings,
6598         bibtex-string=, and new function bibtex-complete-key-cleanup.
6599         (bibtex-generate-url-list): New variable.
6600         (bibtex-url): New command bound to C-c C-l and mouse-2.
6601         (bibtex-url-map): New local keymap for bibtex-url-mouse.
6602         (bibtex-font-lock-url): New function.
6604 2004-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6606         * progmodes/grep.el (grep-mode): Remove unnecessary autoload.
6608 2004-09-09  Kim F. Storm  <storm@cua.dk>
6610         * kmacro.el (kmacro-bind-to-key): Associate dedicated macro
6611         counter and format with binding.
6612         (kmacro-name-last-macro): New defun.  Like name-last-kbd-macro, but
6613         the declared macro uses own macro counter and format.  Give symbol
6614         kmacro property.
6615         (kmacro-keymap): Bind kmacro-name-last-macro to n.
6616         (kmacro-start-macro, kmacro-end-macro, kmacro-call-macro)
6617         (kmacro-end-and-call-macro): Doc fix.
6619 2004-09-09  Lars Hansen  <larsh@math.ku.dk>
6621         * desktop.el (desktop-clear-preserve-buffers):
6622         Remove make-obsolete-variable.
6624 2004-09-08  Richard M. Stallman  <rms@gnu.org>
6626         * buff-menu.el (list-buffers-noselect): Call format-mode-line
6627         with the buffer as argument.
6629 2004-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6631         * vc-arch.el (vc-arch-state): Fix parsing for `names' method.
6633 2004-09-08  Juri Linkov  <juri@jurta.org>
6635         * replace.el (perform-replace): Use `query-replace-descr'.
6637         * cus-start.el (history-delete-duplicates): Specify customization.
6639         * diff-mode.el (diff-mode-map):
6640         * progmodes/compile.el (compilation-mode-map):
6641         * progmodes/grep.el (grep-mode-map):
6642         * replace.el (occur-mode-map): Rename `next-error-follow-mode'
6643         to `next-error-follow-minor-mode'.
6645 2004-09-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6647         * isearch.el (isearch-lazy-highlight-update): Take into account
6648         the case of zero-length match at the search bound.
6650 2004-09-08  Kim F. Storm  <storm@cua.dk>
6652         * emulation/cua-rect.el (cua--highlight-rectangle): Fix last
6653         change.  Use zero width overlays when necessary.
6655 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6657         * subr.el (split-string): Docfix.
6659 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6661         * emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): Doc fix.
6662         (display-call-tree): Ensure newline after caller/calls blocks.
6664 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6666         * startup.el (command-line-1): Make option
6667         --directory/-L modify `load-path' straight away.
6669 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6671         * progmodes/grep.el (grep-mode): Use normal autoload cookie.
6673 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6675         * emacs-lisp/autoload.el (make-autoload):
6676         Handle `define-compilation-mode'.
6678         * emacs-lisp/lisp-mode.el (define-compilation-mode):
6679         Specify `doc-string-elt' property.
6681 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6683         * bs.el (bs-mode): Doc fix.
6685 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6687         * info.el (Info-insert-dir): Fix temp buffer leak bug.
6689 2004-09-08  Thien-Thi Nguyen  <ttn@gnu.org>
6691         * play/blackbox.el (bb-trace-ray): Avoid double tracing.
6693 2004-09-08  Kenichi Handa  <handa@m17n.org>
6695         * ps-mule.el: Fix old function calls (ps-mule-chars-in-string ->
6696         length, ps-mule-string-char -> aref, ps-mule-next-index -> 1+,
6697         ps-mule-next-point -> 1+).
6699         * composite.el (encode-composition-rule): Add autoload cooky.
6701 2004-09-07  Luc Teirlinck  <teirllm@auburn.edu>
6703         * format.el (buffer-auto-save-file-format): Make it permanent local.
6705 2004-09-07  Kim F. Storm  <storm@cua.dk>
6707         * emacs-lisp/authors.el (authors-aliases): Add more aliases.
6708         (authors-fixed-entries): Fix typo.
6709         (authors-canonical-author-name): Compact multiple spaces.
6710         Ignore trivial names (e.g. only first name).
6712         * term.el (term-window-width): Only use full window width on
6713         window system if overflow-newline-into-fringe is enabled.
6714         (term-mode): Don't disable overflow-newline-into-fringe.
6716 2004-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6718         * term/xterm.el (function-key-map): Add bindings for C- and S- cursor
6719         motion as seen on my Mac OS X xterms.
6721         * newcomment.el (uncomment-region-default, comment-region-default):
6722         New functions extracted from uncomment-region and comment-region.
6723         (comment-region, comment-region-function, uncomment-region)
6724         (uncomment-region-function): Use them.
6726         * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
6728         * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
6729         It's not crucial but can make sense at times.
6731         * vc-arch.el (vc-arch-workfile-version): Handle the special case before
6732         the first commit.
6734         * vc.el (vc-buffer-context, vc-restore-buffer-context):
6735         Disable obsolete code.
6737 2004-09-07  Juri Linkov  <juri@jurta.org>
6739         * progmodes/grep.el (grep-highlight-matches): Change default from
6740         `t' to `auto-detect', and type from `boolean' to `choice'.  Doc fix.
6741         (grep-compute-defaults): Set `grep-highlight-matches' to `t'
6742         if grep option `--color' is available, or to `nil' otherwise.
6743         (grep-process-setup): Call `grep-compute-defaults' if
6744         `grep-highlight-matches' is not computed.  Set env-vars only
6745         if `grep-highlight-matches' is `t'.
6746         (grep-use-null-device): Remove redundant type `boolean' (`choice'
6747         is already defined).
6749         * progmodes/compile.el (compilation-start): Use copy of
6750         `process-environment' created by `copy-sequence' to not
6751         modify env-vars in the global `process-environment'.
6753 2004-09-06  Eli Zaretskii  <eliz@gnu.org>
6755         * simple.el (next-error-follow-minor-mode): Fix last change.
6757 2004-09-05  Luc Teirlinck  <teirllm@auburn.edu>
6759         * textmodes/paragraphs.el (use-hard-newlines): Make it into a
6760         permanent local.
6762 2004-09-04  Richard M. Stallman  <rms@gnu.org>
6764         * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
6765         highlighting if the search string is empty.
6767 2004-09-04  Luc Teirlinck  <teirllm@auburn.edu>
6769         * facemenu.el (facemenu-active-faces): Change condition of inner
6770         `while' loop to also check the first two elements of `face-atts'
6771         and `mask-atts'.
6773 2004-09-04  John Paul Wallington  <jpw@gnu.org>
6775         * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
6776         (thumbs-view-image-mode): Make buffer read-only.
6778 2004-09-04  Christopher J. Madsen  <cjm@pobox.com>
6780         * textmodes/ispell.el (ispell-really-aspell): New defvar.
6781         (ispell-check-version): Set it.
6782         (ispell-send-replacement): New function.
6783         (ispell-process-line): Call ispell-send-replacement.
6785 2004-09-04  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
6787         * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
6788         Support choosing seconds with "s".
6790 2004-09-04  Jari Aalto  <jari.aalto@poboxes.com>
6792         * terminal.el (te-escape): Show `?' in prompt for help key.
6794 2004-09-04  Emilio C. Lopes <eclig@gmx.net>
6796         * emacs-lisp/lisp.el (kill-backward-up-list): New function.
6798 2004-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
6800         * simple.el (next-error-follow-minor-mode)
6801         (next-error-follow-mode-post-command-hook): New functions.
6802         (next-error-follow-last-line): New defvar.
6804         * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
6805         * progmodes/compile.el (compilation-mode-map): Likewise.
6806         * progmodes/grep.el (grep-mode-map): Likewise.
6807         * replace.el (occur-mode-map): Likewise.
6809         * newcomment.el (uncomment-region): Bind comment-use-global-state
6810         to nil.
6812 2004-09-03  Luc Teirlinck  <teirllm@auburn.edu>
6814         * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
6815         locally around the call to `revert-buffer'.
6817 2004-09-03  Juri Linkov  <juri@jurta.org>
6819         * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
6820         `isearch-adjusted' to `t'.
6821         (isearch-toggle-case-fold): Set `isearch-success' to `t'.
6822         (isearch-message-prefix): Add "pending" for isearch-adjusted.
6823         (isearch-other-meta-char): Restore isearch-point unconditionally.
6824         (isearch-query-replace): Add new arg `regexp-flag' and use it.
6825         Set point to start of match if region is not active in transient
6826         mark mode (to include the current match to region boundaries).
6827         Push the search string to `query-replace-from-history-variable'.
6828         Add prompt "Query replace regexp" for isearch-regexp.
6829         Add region beginning/end as last arguments of `perform-replace.'
6830         (isearch-query-replace-regexp): Replace code by the call to
6831         `isearch-query-replace' with arg `t'.
6833 2004-09-03  Richard M. Stallman  <rms@gnu.org>
6835         * startup.el (normal-top-level): Undo previous TERM change.
6837 2004-09-03  Kim F. Storm  <storm@cua.dk>
6839         * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
6840         highlight overlays; allow using RET when cursor is over a button.
6841         (cua--highlight-rectangle): Use it.
6842         (cua--rectangle-set-corners): Don't move backwards at eol.
6843         (cua--forward-line): Don't move into void after eob.
6845         * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
6846         point is set (and displayed) inside rectangle.
6847         (cua--rectangle-operation): Fix for highlight of empty lines.
6848         (cua--highlight-rectangle): Fix highlight for tabs.
6849         Position cursor at left/right edge of rectangle using new `cursor'
6850         property on overlay strings.
6851         (cua--indent-rectangle): Don't tabify.
6852         (cua-rotate-rectangle): Ignore that point has moved.
6854 2004-09-02  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6856         * term/mac-win.el: Add ASCII equivalents for some function keys.
6857         (mode-line-frame-identification): Sync with x-win.el.
6859 2004-09-02  Juri Linkov  <juri@jurta.org>
6861         * progmodes/compile.el (compilation-buffer-name): Compare major
6862         mode with second element of compilation-arguments instead of third
6863         to reflect latest changes in compilation-arguments structure.
6864         (recompile): Use global variable `compilation-directory' to get
6865         recent compilation directory only when `recompile' is invoked NOT
6866         in the compilation buffer.  Otherwise, use `default-directory' of
6867         the compilation buffer.
6868         (compilation-error-properties): Allow to funcall col and end-col.
6869         (compilation-mode-font-lock-keywords): Check col and end-col by
6870         `integerp'.
6871         (compilation-goto-locus): If end-mk is non-nil in transient mark
6872         mode don't activate the mark (and don't display message in
6873         push-mark), but highlight overlay between mk and end-mk.
6875         * progmodes/grep.el (grep-highlight-matches): New defcustom.
6876         (grep-regexp-alist): Add rule to highlight grep matches.
6877         (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
6879         * info.el (Info-fontify-node): Don't compute other-tag
6880         if Info-hide-note-references=hide.
6882         * help.el (function-called-at-point):
6883         * help-fns.el (variable-at-point):
6884         Try `find-tag-default' when other methods failed.
6886         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
6887         Do not push mark if inhibit-mark-movement is non-nil.
6889         * textmodes/ispell.el (ispell-html-skip-alists):
6890         Fix backslashes in docstring.
6892 2004-09-01  Juri Linkov  <juri@jurta.org>
6894         * isearch.el (isearch-wrap-function)
6895         (isearch-push-state-function): New defvars.
6896         (isearch-pop-fun-state): New defsubst.
6897         (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
6898         (isearch-push-state): Set the result of calling
6899         `isearch-push-state-function' to the `isearch-pop-fun-state' field.
6900         (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
6901         restore the mode-specific starting point of terminated search.
6902         (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
6903         (isearch-repeat): Call `isearch-wrap-function' if defined.
6904         (isearch-message-prefix): Don't add prefix "over" to the message
6905         for wrapped search if `isearch-wrap-function' is defined.
6906         (isearch-search): Call function saved in `isearch-pop-fun-state' to
6907         restore the mode-specific starting point of failed search.
6909         * info.el (Info-search-whitespace-regexp): Fix backslashes.
6910         (Info-search): Add new optional arguments for the sake of isearch.
6911         Replace whitespace in Info-search-whitespace-regexp literally.
6912         Add backward search.  Don't call `Info-select-node' if regexp is
6913         found in the same Info node.  Don't add node to Info-history for
6914         wrapped isearch.
6915         (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
6916         (Info-isearch-push-state, Info-isearch-pop-state): New funs.
6917         (Info-mode): Set local variables `isearch-search-fun-function',
6918         `isearch-wrap-function', `isearch-push-state-function',
6919         `search-whitespace-regexp'.
6921         * isearch.el: Remove ancient Change Log section.
6922         (isearch-string, isearch-message-string, isearch-point)
6923         (isearch-success, isearch-forward-flag, isearch-other-end)
6924         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
6925         (isearch-barrier, isearch-within-brackets)
6926         (isearch-case-fold-search): Add suffix `-state' to state-related
6927         defsubsts to avoid name clashes with other function names.
6929         * simple.el (next-error): New defgroup and defface.
6930         (next-error-highlight, next-error-highlight-no-select):
6931         New defcustoms.
6932         (next-error-no-select): Let-bind next-error-highlight to the value
6933         of next-error-highlight-no-select before calling `next-error'.
6935         * progmodes/compile.el (compilation-goto-locus):
6936         Use `next-error' face instead of `region'.  Set 4-th argument of
6937         `move-overlay' to `current-buffer' to move overlay to different
6938         source buffers.  Use new variable `next-error-highlight'.
6940         * simple.el (next-error-find-buffer): Move the rule
6941         "if current buffer is a next-error capable buffer" after the
6942         rule "if next-error-last-buffer is set to a live buffer".
6943         Simplify to test all rules in one `or'.
6944         (next-error): Doc fix.
6945         (next-error, previous-error, first-error)
6946         (next-error-no-select, previous-error-no-select):
6947         Make arguments optional.
6949 2004-08-31  Luc Teirlinck  <teirllm@auburn.edu>
6951         * macros.el (apply-macro-to-region-lines): Make it operate on all
6952         lines that begin in the region, rather than on all complete lines
6953         in the region.
6955 2004-08-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6957         * x-dnd.el (x-dnd-protocol-alist): Document update.
6958         (x-dnd-known-types): Defcustom it.
6959         (x-dnd-handle-motif): Print message-atom in error message.
6961 2004-08-30  John Paul Wallington  <jpw@gnu.org>
6963         * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
6964         strings rather than programatically constructing message.
6966 2004-08-30  Richard M. Stallman  <rms@gnu.org>
6968         * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
6969         Don't return a string that would read as the wrong character code.
6971 2004-08-29  Kim F. Storm  <storm@cua.dk>
6973         * emulation/cua-base.el (cua-auto-expand-rectangles):
6974         Remove automatic rectangle padding feature; replace by non-destructive
6975         virtual rectangle edges feature.
6976         (cua-virtual-rectangle-edges): New defcustom.
6977         (cua-auto-tabify-rectangles): New defcustom.
6978         (cua-paste): If paste into a marked rectangle, insert rectangle at
6979         current column, even if virtual; also paste exactly as many lines
6980         as has been marked (ignore additional lines or add empty lines),
6981         but paste whole source if only one line is marked.
6982         (cua--update-indications): No longer use overwrite-cursor to
6983         indicate rectangle padding
6985         * emulation/cua-rect.el (cua--rectangle-padding): Remove.
6986         (cua--rectangle-virtual-edges): New defun.
6987         (cua--rectangle-get-corners): Remove optional PAD arg.
6988         (cua--rectangle-set-corners): Never do padding.
6989         (cua--forward-line): Remove optional PAD arg.  Simplify.
6990         (cua-resize-rectangle-right, cua-resize-rectangle-left)
6991         (cua-resize-rectangle-down, cua-resize-rectangle-up):
6992         (cua-resize-rectangle-bot, cua-resize-rectangle-top)
6993         (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
6994         (cua--rectangle-move): Never do padding.  Simplify.
6995         (cua--tabify-start): New defun.
6996         (cua--rectangle-operation): Add tabify arg.  All callers changed.
6997         (cua--pad-rectangle): Remove.
6998         (cua--delete-rectangle): Handle delete with virtual edges.
6999         (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
7000         (cua--insert-rectangle): Handle insert at virtual column.
7001         Perform auto-tabify if necessary.
7002         (cua--activate-rectangle): Remove optional FORCE arg.
7003         Never do padding.  Simplify.
7004         (cua--highlight-rectangle): Enhance for virtual edges.
7005         (cua-toggle-rectangle-padding): Remove command.
7006         (cua-toggle-rectangle-virtual-edges): New command.
7007         (cua-sequence-rectangle): Add optional TABIFY arg.  Callers changed.
7008         (cua--rectangle-post-command): Don't force rectangle padding.
7009         (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
7011 2004-08-28  Luc Teirlinck  <teirllm@auburn.edu>
7013         * indent.el (edit-tab-stops-buffer): Doc fix.
7015 2004-08-28  Richard M. Stallman  <rms@gnu.org>
7017         * progmodes/grep.el (grep-default-command): Use find-tag-default.
7018         (grep-tag-default): Function deleted.
7020         * subr.el (find-tag-default): Move from etags.el.
7022         * progmodes/etags.el (find-tag-default): Move to subr.el.
7024         * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
7025         into the basic character if it has an uppercase form.
7027 2004-08-27  Kenichi Handa  <handa@m17n.org>
7029         * international/utf-8.el (utf-8-post-read-conversion): If the
7030         buffer is unibyte, temporarily make it multibyte.
7032 2004-08-27  Masatake YAMATO  <jet@gyve.org>
7034         * calendar/time-date.el (time-to-seconds): Add autoload cookies.
7036 2004-08-25  John Paul Wallington  <jpw@gnu.org>
7038         * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
7039         0, 1, and many mismatches in message.
7040         (tex-start-shell): Use `set-process-query-on-exit-flag'.
7042         * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
7043         (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
7045 2004-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7047         * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
7048         vc-diff-switches differently.
7050 2004-08-22  Luc Teirlinck  <teirllm@auburn.edu>
7052         * speedbar.el (speedbar-file-regexp): Give it a phony defvar
7053         before and a real defvar after
7054         `speedbar-supported-extension-expressions'.  This is to silence
7055         the compiler without breaking bootstrapping.
7057 2004-08-22  Richard M. Stallman  <rms@gnu.org>
7059         * textmodes/flyspell.el (flyspell-word):
7060         Use set-process-query-on-exit-flag.
7061         (flyspell-highlight-duplicate-region): Take POSS as arg.
7062         (flyspell-word): Pass POSS as arg.
7064         * progmodes/ada-xref.el: Many doc and style fixes.
7065         (ada-find-any-references): Use compilation-start.
7066         (ada-get-ali-file-name): Improve error msg.
7067         (ada-get-ada-file-name): Likewise.
7069         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
7070         (ange-ftp-start-process): Use set-process-query-on-exit-flag.
7072         * mail/mail-extr.el (mail-extr-all-top-level-domains):
7073         Add forward defvar.
7075         * whitespace.el (global-whitespace-mode): New alias
7076         for whitespace-global-mode.
7078         * speedbar.el (speedbar-file-regexp): Move definition up.
7079         (speedbar-mode, speedbar-set-mode-line-format):
7080         Use with-no-warnings.
7081         (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
7083         * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
7084         controls whether to display the error buffer.
7086         * ps-mule.el: Delete compatibility code for old Emacses.
7087         (ps-mule-find-wrappoint): Don't use chars-in-region.
7089         * frame.el (display-mouse-p, display-selections-p):
7090         Use with-no-warnings.
7092         * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
7094 2004-08-22  David Kastrup  <dak@gnu.org>
7096         * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
7097         information.
7099         * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
7101 2004-08-22  Andreas Schwab  <schwab@suse.de>
7103         * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
7105 2004-08-22  Masatake YAMATO  <jet@gyve.org>
7107         * cvs-status.el (cvs-status-checkout): New function.
7108         (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
7110 2004-08-21  David Kastrup  <dak@gnu.org>
7112         * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
7113         (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
7114         has been converted to use hashtables, the relation `nil=none' is
7115         no longer valid, as `nil' is not a hashtable.  This patch tries to
7116         reduce the number of resulting errors.
7118 2004-08-21  John Paul Wallington  <jpw@gnu.org>
7120         * subr.el (process-kill-without-query): Made obsolete in
7121         version 21.4, not 21.5.
7123         * log-edit.el (vc-comment-ring, vc-comment-ring-index)
7124         (vc-previous-comment, vc-next-comment)
7125         (vc-comment-search-reverse, vc-comment-search-forward)
7126         (vc-comment-to-change-log): Likewise.
7128         * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
7130 2004-08-21  Peter Seibel  <peter@javamonkey.com>  (tiny patch)
7132         * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
7133         Correct indentation of DEFMETHODS with non-standard method
7134         combinations (e.g., PROGN, MIN, MAX).
7136 2004-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7138         * startup.el (normal-top-level-add-subdirs-to-load-path):
7139         Avoid unnecessarily checking system-type.
7140         (normal-top-level): Set TERM to "dumb".  Simplify.
7142         * avoid.el (mouse-avoidance-ignore-p): New fun.
7143         Also ignore switch-frame, select-window, double, and triple clicks.
7144         (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
7145         (mouse-avoidance-fancy-hook): Use it.
7147 2004-08-20  Zoran Milojevic  <zoran@sipquest.com>  (tiny change)
7149         * avoid.el (mouse-avoidance-nudge-mouse)
7150         (mouse-avoidance-banish-destination): Stay within the current window
7151         to avoid problems with mouse-autoselect-window.
7153 2004-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7155         * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
7156         the newer format of some messages in cvs-1.12.1.
7158 2004-08-19  Masatake YAMATO  <jet@gyve.org>
7160         * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
7161         (elp-results-jump-to-definition-by-mouse)
7162         (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
7163         (elp-output-result): Use elp-output-insert-symname.
7165 2004-08-18  Kenichi Handa  <handa@m17n.org>
7167         * language/cyrillic.el: Register koi8-r in
7168         ctext-non-standard-encodings-alist.
7169         ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
7171 2004-08-17  Luc Teirlinck  <teirllm@auburn.edu>
7173         * emacs-lisp/copyright.el (copyright-update-year): Delete code
7174         that replaces 20xy with xy.
7176 2004-08-17  John Paul Wallington  <jpw@gnu.org>
7178         * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
7179         (reb-force-update): Doc fix.
7181 2004-08-16  Richard M. Stallman  <rms@gnu.org>
7183         * progmodes/which-func.el (which-func-update-1): Doc fix.
7185         * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
7186         (sh-mode-abbrev-table): New variable.
7188         * progmodes/compile.el (compilation-mode): Doc fix.
7190         * emacs-lisp/lisp-mode.el (eval-last-sexp):
7191         Don't cons a new symbol each time.
7192         (eval-last-sexp-fake-value): New variable.
7194         * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
7195         (copyright-update-year): Detect continuation of list of years.
7197         * term.el (term-default-fg-color, term-default-bg-color)
7198         (ansi-term-color-vector): Use `unspecified', not nil, as default.
7200         * imenu.el: Several doc fixes: don't say variables are buffer-local.
7202 2004-08-16  Davis Herring <herring@lanl.gov>
7204         * isearch.el (isearch-string, isearch-message-string, isearch-point)
7205         (isearch-success, isearch-forward-flag, isearch-other-end)
7206         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
7207         (isearch-barrier, isearch-within-brackets)
7208         (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
7210 2004-08-16  Kenichi Handa  <handa@m17n.org>
7212         * ps-mule.el (ps-mule-font-info-database): Fix docstring.
7214 2004-08-15  Kenichi Handa  <handa@m17n.org>
7216         * term/x-win.el (x-selection-value): If utf8 was successful but
7217         ctext was not, use utf8 string.
7219 2004-08-14  Davis Herring  <herring@lanl.gov>
7221         * isearch.el: Remove accidental changes of March 4.  Fix backing
7222         up when a regexp isearch is made more general.  Use symbolic
7223         accessor functions for isearch stack frames to make usage clearer.
7224         (search-whitespace-regexp): Made groups in documentation shy (as
7225         is the group in the default value).
7226         (isearch-fallback): New function, addresses problems with regexps
7227         liberalized by `\|', adds support for liberalization by `\}' (the
7228         general repetition construct), and incorporates behavior for
7229         `*'/`?'.
7230         (isearch-}-char): New command, calls `isearch-fallback' with
7231         arguments appropriate to a typed `}'.
7232         (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
7233         appropriately.
7234         (isearch-mode-map): Bind `}' to `isearch-}-char'.
7235         (isearch-string, isearch-message,string, isearch-point)
7236         (isearch-success, isearch-forward-flag, isearch-other-end)
7237         (isearch-word, isearch-invalid-regexp, isearch-wrapped)
7238         (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
7239         New inline functions to read fields of a stack frame.
7241 2004-08-14  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>  (tiny change)
7243         * battery.el (battery-linux-proc-acpi): Look into battery
7244         directories matching the literal string "CMB", too (required for
7245         Linux kernel version 2.6.7).
7247 2004-08-14  John Paul Wallington  <jpw@gnu.org>
7249         * cus-start.el (read-file-name-completion-ignore-case): Add.
7250         (blink-cursor-alist): Change version to "21.4".
7252         * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
7254 2004-08-11  Daniel Pfeiffer  <occitan@esperanto.org>
7256         * speedbar.el (speedbar-scan-subdirs): New option.
7257         (speedbar-file-lists): Don't ignore file-name case on Unix and use
7258         dolist.
7259         (speedbar-insert-files-at-point): Take an extra argument and use
7260         it to optionally find out if a subdir is empty.  Also unreadable
7261         files don't get expand buttons.
7262         (speedbar-directory): New image (unused pixmap already existed).
7263         (speedbar-expand-image-button-alist): Use it.
7265 2004-08-11  Martin Stjernholm  <bug-cc-mode@gnu.org>
7267         CC Mode update to 5.30.9:
7269         * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
7270         Move from cc-vars to cc-defs for dependency reasons.  Fix the
7271         POSIX char class test to check that it works in
7272         `skip-chars-(forward|backward)' too.
7274         * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
7275         first argument starts with a special brace list.
7277         * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
7278         when `c-opt-type-concat-key' is used (i.e. in Pike).
7280         * progmodes/cc-engine.el (c-looking-at-special-brace-list):
7281         Fix bug when the inner char pair doesn't have paren syntax, i.e. "(<
7282         >)".
7284         * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
7285         whitespace safe.
7287         * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
7288         position for `arglist-intro', `arglist-cont-nonempty' and
7289         `arglist-close' when there are two arglist open parens on the same
7290         line and there's nothing in front of the first.
7292         * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
7293         locking of qualified names in Java, which previously could fontify
7294         common indexing expressions in many cases.  The standard Java
7295         naming conventions are used to tell them apart.
7297         * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
7298         Fix inconsistency wrt opening parens on the first line inside a paren
7299         block.
7301         * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
7302         compile time for the sake of `c-major-mode-is'.
7304         (c-mode-is-new-awk-p): Made it a macro to delay expansion of
7305         `c-major-mode-is' in the event that this is used inside a
7306         `c-lang-defconst'.
7308         * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
7309         `c-lang-defconst' so that it works better with fallback languages.
7311         * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
7312         it to fail to record the base mode.
7314         * progmodes/cc-engine.el (c-syntactic-re-search-forward):
7315         Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
7316         is used.  Reorder the syntax checks to get more efficient
7317         skipping in some situations.
7319         * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
7320         continuation which might precede the newly inserted '{'.
7322         * progmodes/cc-engine.el (c-syntactic-re-search-forward):
7323         Fix cases where it could loop indefinitely.
7325         * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
7326         size specs correctly.  Only fontify identifiers in front of '('
7327         with as functions - don't accept any paren char.  Tighten up
7328         initializer skipping to stop before function and class blocks.
7330         * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
7331         the point could be left directly after an open paren when finding
7332         the beginning of the first decl in the block.
7334         * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
7335         table when filtering out legitimate open parens to be recorded.
7336         This could cause cache inconsistencies when e.g.
7337         `c++-template-syntax-table' was temporarily in use.
7339         * progmodes/cc-engine.el (c-on-identifier)
7340         (c-simple-skip-symbol-backward): Small fix for handling "-"
7341         correctly in `skip-chars-backward'.  Affected the operator lfun
7342         syntax in Pike.
7344         * progmodes/cc-engine.el (c-invalidate-sws-region-after):
7345         Fix bug that could cause an error from `after-change-functions' when
7346         the changed region is at bob.
7348 2004-08-11  Alan Mackenzie  <bug-cc-mode@gnu.org>
7350         CC Mode update to 5.30.9:
7352         * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
7353         to say that <TAB> doesn't insert WS into a CPP line.
7354         (c-indent-command, c-tab-always-indent): Amend doc strings.
7356         * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
7357         checks for user errors, thus eliminating cryptic and unhelpful
7358         Emacs error messages.  (1) Check the arg to `c-set-style' is a
7359         string.  (2) Check that settings to `c-offsets-alist' are not
7360         spuriously quoted.
7362         * progmodes/cc-cmds.el: (c-electric-brace): Don't delete a comment
7363         which precedes the newly inserted `{'.
7365 2004-08-10  Michael Albinus  <michael.albinus@gmx.de>
7367         Sync with Tramp 2.0.44.
7369         * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
7370         function "tramp_file_attributes".  Otherwise, file names
7371         containing spaces are misinterpreted.  Reported by Magnus Henoch
7372         <mange@freemail.hu>.
7373         (tramp-handle-file-truename): FILENAME must be expanded first.
7374         Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
7375         obscure results.  Reported by D. Goel <deego@gnufans.org>.
7376         (tramp-handle-verify-visited-file-modtime): If file does not
7377         exist, say it is not modified if and only if that agrees with the
7378         buffer's record.  Check whether a file is visiting the buffer, or
7379         the buffer has no recorded last modification time.  Return t in
7380         case the visiting file doesn't exist.  Suggested by Luc Teirlinck
7381         <teirllm@auburn.edu>.
7382         (tramp-handle-write-region): Pass modtime explicitely to
7383         `set-visited-file-modtime', because filename can be different
7384         from (buffer-file-name) if `file-precious-flag' is set.
7385         `set-visited-file-modtime' must be called always when `visit' is t
7386         or a string.  Suggested by Luc Teirlinck <teirllm@auburn.edu>.
7387         (tramp-handle-set-visited-file-modtime): If `time-list' is not
7388         nil, don't apply the whole body.  If the file doesn't exists, set
7389         modtime to '(-1 65535).  Suggested by Luc Teirlinck
7390         <teirllm@auburn.edu>.
7392 2004-08-09  Luc Teirlinck  <teirllm@auburn.edu>
7394         * help.el (describe-bindings): Doc fix.
7396         * subr.el (kbd): Doc fix.
7398 2004-08-08  John Paul Wallington  <jpw@gnu.org>
7400         * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
7401         instead of `string-to-int'.
7402         (define-ibuffer-column mode): Fix indentation.
7404 2004-08-08  Lars Hansen  <larsh@math.ku.dk>
7406         * wid-edit.el (widget-sexp-validate): Allow whitespace after expression.
7408 2004-08-08  Luc Teirlinck  <teirllm@auburn.edu>
7410         * subr.el (global-unset-key, local-unset-key): Doc fixes.
7412         * novice.el (disabled-command-function): New variable renamed from
7413         `disabled-command-hook'.
7414         (disabled-command-hook): Keep the _variable_ as alias for
7415         `disabled-command-function' and make obsolete.
7416         (disabled-command-function): Function renamed from
7417         `disabled-command-hook'.  Adapt code to name change of the variable.
7419 2004-08-07  Satyaki Das  <satyaki@theforce.stanford.edu>  (tiny change)
7421         * simple.el (completion-root-regexp): New defvar.
7422         (completion-setup-function): Use it instead of a literal string.
7424 2004-08-07  John Paul Wallington  <jpw@gnu.org>
7426         * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
7427         (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
7428         (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
7429         (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
7431 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
7433         * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
7434         (mail-extr-voodoo): Check mail-extr-disable-voodoo.
7436 2004-08-04  Kenichi Handa  <handa@m17n.org>
7438         * international/encoded-kb.el (encoded-kbd-setup-keymap):
7439         Fix previous change.
7441 2004-08-03  Kenichi Handa  <handa@m17n.org>
7443         * international/encoded-kb.el: The following changes are to
7444         utilize key-translation-map instead of minor mode map.
7445         (encoded-kbd-iso2022-non-ascii-map): Delete it.
7446         (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
7447         (encoded-kbd-last-key): New function.
7448         (encoded-kbd-iso2022-single-shift): New function.
7449         (encoded-kbd-iso2022-designation)
7450         (encoded-kbd-self-insert-iso2022-7bit)
7451         (encoded-kbd-self-insert-iso2022-8bit)
7452         (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
7453         (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
7454         key-translation-map.
7455         (encoded-kbd-setup-keymap): Setup key-translation-map.
7456         (saved-key-translation-map): New variable.
7457         (encoded-kbd-mode): Save/restore key-translation-map.
7458         Adjust for the change of encoded-kbd-setup-keymap.
7460 2004-08-02  Kim F. Storm  <storm@cua.dk>
7462         * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
7463         and call compute-motion with nil for topos and width to get proper
7464         usable width and height for both window and non-window systems.
7466         * windmove.el (windmove-coordinates-of-position): Let compute-motion
7467         calculate usable window width and height.
7469         * window.el (window-buffer-height): Call compute-motion with nil width.
7471 2004-08-01  David Kastrup  <dak@gnu.org>
7473         * replace.el (query-replace-read-from):
7474         Use `query-replace-compile-replacement'.
7475         (query-replace-compile-replacement): New function.
7476         (query-replace-read-to): Use `query-replace-compile-replacement'
7477         for repeating the last command.
7479 2004-08-01  John Paul Wallington  <jpw@gnu.org>
7481         * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
7482         (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
7483         (pr-switches): Remove period from end of error messages.
7485         * help-mode.el (help-go-back): Likewise.
7487         * abbrev.el (only-global-abbrevs): Doc fix.
7488         (edit-abbrevs-map): Define within defvar.
7489         (quietly-read-abbrev-file): Doc fix.
7491 2004-07-31  Luc Teirlinck  <teirllm@auburn.edu>
7493         * novice.el (enable-command, disable-command): Doc fixes.
7495         * subr.el (event-modifiers, event-basic-type): Doc fixes.
7497 2004-07-30  Richard M. Stallman  <rms@gnu.org>
7499         * subr.el (with-local-quit): Doc fix.
7501 2004-07-30  Luc Teirlinck  <teirllm@auburn.edu>
7503         * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
7505 2004-07-28  Luc Teirlinck  <teirllm@auburn.edu>
7507         * custom.el (defcustom): Doc fix.
7509 2004-07-28  Masatake YAMATO  <jet@gyve.org>
7511         * progmodes/etags.el (etags-tags-apropos): Show building progress.
7513 2004-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7515         * imenu.el (imenu-prev-index-position-function)
7516         (imenu-extract-index-name-function, imenu-name-lookup-function)
7517         (imenu--index-alist): Docstring redundancy fix.
7519 2004-07-25  Lars Hansen  <larsh@math.ku.dk>
7521         * wdired.el (wdired-finish-edit): Require dired-aux before locally
7522         binding dired-backup-overwrite.
7524 2004-07-25  John Paul Wallington  <jpw@gnu.org>
7526         * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
7528 2004-07-24  Luc Teirlinck  <teirllm@auburn.edu>
7530         * term/tty-colors.el (tty-color-approximate): Doc fix.
7532         * select.el (x-get-selection, x-set-selection): Doc fixes.
7534         * frame.el (make-frame): Doc fix.
7536 2004-07-24  Richard M. Stallman  <rms@gnu.org>
7538         * mail/rmail.el (rmail-mime-charset-pattern):
7539         Don't include semicolon in the charset value.
7541         * replace.el (occur-next-error): Call set-window-point.
7542         (occur-engine): Handle negative NLINES.
7544 2004-07-23  Luc Teirlinck  <teirllm@auburn.edu>
7546         * frame.el (modify-all-frames-parameters): Minor doc fix.
7547         (set-frame-configuration): Doc fix.
7549 2004-07-23  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
7551         * simple.el (completion-setup-function): Compute the common parts
7552         and the first difference place correctly when
7553         partial-completion-mode is on.
7555 2004-07-22  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7557         * ps-print.el: Doc fix.
7558         (ps-print-version): New version 6.6.5.
7559         (ps-printing-region): Doc fix.
7560         (ps-generate-string-list): Comment fix.
7561         (ps-message-log-max): Code fix.
7563 2004-07-22  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
7565         * ps-print.el (ps-begin-file): Improve the DSC compliance of the
7566         generated PostScript.
7568 2004-08-17  Reiner Steib  <Reiner.Steib@gmx.de>
7570         * net/tls.el (tls-process-connection-type): Fix docstring.  (Sync
7571         with Gnus v5_10 branch.)
7573 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
7575         * calendar/time-date.el (time-to-number-of-days): New function.
7576         Imported from from Gnus.
7578 2004-07-22  Kim F. Storm  <storm@cua.dk>
7580         * progmodes/make-mode.el: Fix comments.
7582 2004-07-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7584         * printing.el: Doc fix.
7586 2004-07-20  Luc Teirlinck  <teirllm@auburn.edu>
7588         * frame.el (modify-all-frames-parameters): Minor doc fix.
7590 2004-07-20  Richard M. Stallman  <rms@gnu.org>
7592         * textmodes/fill.el (fill-nobreak-p): If this break point is
7593         at the end of the line, don't consider the newline which follows
7594         as a reason to return t.
7596 2004-07-19  John Paul Wallington  <jpw@gnu.org>
7598         * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
7600 2004-07-18  Luc Teirlinck  <teirllm@auburn.edu>
7602         * dired-aux.el (dired-do-kill-lines): Expand docstring.
7603         Delete irrelevant code.
7605 2004-07-17  Kai Grossjohann  <kai.grossjohann@gmx.net>
7607         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
7608         New docstring.  From Luc Teirlinck.
7610 2004-07-17  Luc Teirlinck  <teirllm@auburn.edu>
7612         * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
7613         section.
7614         (auto-revert-handler): Do not check `auto-revert-tail-mode' for
7615         non-file buffers.  We know it is nil.
7617 2004-07-17  Kai Grossjohann  <kai.grossjohann@gmx.net>
7619         Sync with Tramp 2.0.43.
7621         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
7622         Remove outdated comment.
7623         (tramp-locked, tramp-locker): New variables for implementing a
7624         global lock.
7625         (tramp-sh-file-name-handler): Use them to implement the global lock.
7627 2004-07-13  Michael Albinus  <michael.albinus@gmx.de>
7629         * net/tramp.el (all): Code cleanup.  Change all `tramp-handle-xxx'
7630         calls to respective `xxx` calls.
7631         (tramp-process-alive-regexp): Precise doc string.
7632         (tramp-multi-action-process-alive): New defun.
7633         (tramp-multi-actions): Use it.
7634         (tramp-handle-find-backup-file-name): `copy-tree' is available
7635         since Emacs 22.1 only (XEmacs has it).  Implementation rewritten
7636         in order to avoid this function.
7637         (tramp-handle-write-region): Set current buffer.  If connection
7638         wasn't open, `file-modes' has changed it accidently.  Reported by
7639         David Kastrup <dak@gnu.org>.
7640         (tramp-enter-password, tramp-read-passwd): New arguments USER and
7641         HOST.
7642         (tramp-action-password, tramp-multi-action-password): Apply it.
7643         (tramp-open-connection-rsh): If a port is given, the Tramp buffer
7644         name must still contain the port number.  Otherwise, we have two
7645         Tramp buffers, with all the confusion.  Reported by Myron Selby
7646         <myron@xytech.com> and Rolf Dubitzky
7647         <Dubitzky@physi.uni-heidelberg.de>.
7649         * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
7650         HOST to `tramp-enter-passwd'.
7652         * net/tramp-vc.el (all): Code cleanup.  Change all
7653         `tramp-handle-xxx' calls to respective `xxx` calls.
7655 2004-07-17  Jonathan Yavner  <jyavner@member.fsf.org>
7657         * emacs-lisp/testcover.el: New category "potentially-1valued" for
7658         functions that are not erroneous if either 1-valued or
7659         multi-valued.  Detect functions in this class.
7660         (testcover-1value-functions, testcover-compose-functions)
7661         (testcover-progn-functions) Add some additional functions to lists.
7662         (testcover-mark): Bugfix when marking up the definition for an
7663         empty function.
7665 2004-07-17  Richard M. Stallman  <rms@gnu.org>
7667         * replace.el (occur-read-primary-args): Pass default to
7668         read-from-minibuffer.
7670         * mail/footnote.el (footnote-section-tag): Use defcustom.
7672         * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
7673         Compile font-lock-keywords, not KEYWORDS.
7674         (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
7675         Add warn, check-type.  Handle cerror like error.
7677 2004-07-14  Daniel Pfeiffer  <occitan@esperanto.org>
7679         * progmodes/which-func.el (which-func-keymap): New var.
7680         (which-func-face): New face.
7681         (which-func-format): Use them.
7683 2004-07-16  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
7685         * buff-menu.el (list-buffers-noselect): Append the buffer's
7686         process status to its mode name.
7688 2004-07-16  Kim F. Storm  <storm@cua.dk>
7690         * simple.el (inhibit-mark-movement): New defvar.
7691         (beginning-of-buffer, end-of-buffer): Do not push mark if
7692         inhibit-mark-movement is non-nil or C-u prefix is given.
7694         * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
7695         Init to beginning-of-buffer and end-of-buffer.
7696         (cua--undo-push-mark): New defvar.
7697         (cua--pre-command-handler): Set inhibit-mark-movement if mark is
7698         already active and command is in cua--preserve-mark-commands.
7699         Also fix check for shift modifier on non-window systems.
7700         (cua--post-command-handler): Clear inhibit-mark-movement if set.
7702 2004-07-14  Luc Teirlinck  <teirllm@auburn.edu>
7704         * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
7705         of two integers, instead of a cons.
7707         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
7708         `visited-file-modtime' now returns a list of two integers, instead
7709         of a cons.
7711         * dired.el (dired-directory-changed-p): Ditto.
7713         * progmodes/grep.el (grep): Doc fix.
7715 2004-07-14  Daniel Pfeiffer  <occitan@esperanto.org>
7717         * autorevert.el (auto-revert-tail-mode)
7718         (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
7719         (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
7720         in both at the same time.
7721         (auto-revert-tail-mode): New command.
7722         (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
7723         (auto-revert-handler): Revert only either tail or whole file.
7725         * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
7726         add auto-revert-tail-mode.
7728 2004-07-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7730         * printing.el: Doc fix.  Change name of some funs.
7731         (pr-dosify-file-name): New fun.  Replace ps-dosify-path.
7732         (pr-unixify-file-name): New fun.  Replace ps-unixify-path.
7733         (pr-standard-file-name): New fun.  Replace pr-standard-path.
7734         (pr-call-process): Code fix.
7736 2004-07-12  Luc Teirlinck  <teirllm@auburn.edu>
7738         * subr.el (with-selected-window): Doc fix.
7740 2004-07-11  Luc Teirlinck  <teirllm@auburn.edu>
7742         * subr.el (get-buffer-window-list): Doc fix.
7744 2004-07-10  Luc Teirlinck  <teirllm@auburn.edu>
7746         * files.el (switch-to-buffer-other-window): Doc fix.
7748         * window.el (save-selected-window, one-window-p)
7749         (split-window-keep-point, split-window-vertically)
7750         (split-window-horizontally): Doc fixes.
7752 2004-07-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7754         * printing.el: Doc fix.  Now it uses call-process instead of
7755         shell-command for low command execution.
7756         (pr-version): New version number (6.8).
7757         (pr-shell-file-name): Option removed.
7758         (pr-shell-command): Fun removed.
7759         (pr-call-process): New fun.  Replace pr-shell-command.
7760         (pr-standard-path, pr-remove-nil-from-list): New funs.
7761         (zmacs-region-stays, current-mouse-event, current-menubar): New var.
7762         (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
7763         (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
7764         (pr-ps-utility-process, pr-txt-print): Code fix.
7766 2004-07-10  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
7768         * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
7769         boolean.
7771 2004-07-09  Lars Hansen  <larsh@math.ku.dk>
7773         * wid-edit.el (widget-field-buffer): Doc fix.
7775 2004-07-09  John Paul Wallington  <jpw@gnu.org>
7777         * emacs-lisp/re-builder.el (reb-update-overlays):
7778         Distinguish between one and several matches in message.
7780 2004-07-09  Richard M. Stallman  <rms@gnu.org>
7782         * mouse.el (mouse-set-region-1): If transient-mark-mode
7783         is `identity', change it to `only'.
7785         * simple.el (current-word): Doc fix.
7787 2004-07-09  Mark A. Hershberger  <mah@everybody.org>
7789         * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
7790         so that it is more understanding of whitespace.
7792         * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the form
7793         (("ns" . "element") (attr-list) children) instead of
7794         ((:ns . "element") (attr-list) children) in order to reduce the
7795         number of symbols used.
7796         (xml-skip-dtd): Change to use xml-parse-dtd but set
7797         xml-validating-parsing to nil.
7798         (xml-parse-dtd): Parse entity deleclarations in DOCTYPEs.
7799         (xml-substitute-entity): Remove in favor of new entity substitution.
7800         (xml-substitute-special): Rewrite in to substitute complex
7801         entities from DOCTYPE declarations.
7802         (xml-parse-fragment): Parse fragments from entity deleclarations.
7803         (xml-parse-region, xml-parse-tag, xml-parse-attlist)
7804         (xml-parse-dtd, xml-substitute-special): Make validity checks
7805         conditioned on xml-validating-parser.  Add "Not Well Formed" to
7806         error messages about well-formedness.
7808 2004-07-08  Steven Tamm  <steventamm@mac.com>
7810         * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
7811         (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
7812         Do not treat double clicks and triple clicks specially in the
7813         scroll bar (preventing strange repositioning problems)
7815 2004-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7817         * replace.el (query-replace-regexp-eval): Fix last change.
7819 2004-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7821         * replace.el (query-replace-descr): New fun.
7822         (query-replace-read-from, query-replace-read-args): Default to the
7823         previous from&to.
7824         (query-replace-read-to): Quote the `from' string when displaying it.
7825         (query-replace-regexp-eval): Immediately check read-only status.
7826         Use query-replace-read-from to get the \n checking.
7827         Quote the `from' string when displaying it.
7828         (map-query-replace-regexp, occur-read-primary-args):
7829         Quote the `from' string when displaying it.
7831         * isearch.el (isearch-query-replace): Pass the regexp-ness and
7832         delimited-ness of the search to query-replace.
7834         * replace.el (query-replace-read-from, query-replace-read-to):
7835         New funs extracted from query-replace-read-args.
7836         (query-replace-read-args): Use them.
7838         * replace.el (query-replace-interactive, query-replace-read-args):
7839         Remove the `initial' special value.
7840         (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
7841         (occur-engine): Remove unused var `matchend'.
7843         * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
7844         Use the search string without prompting.
7846 2004-07-05  Kenichi Handa  <handa@m17n.org>
7848         * international/mule.el (decode-coding-inserted-region):
7849         Set last-coding-system-used only when coding is nil.
7851 2004-07-03  Eli Zaretskii  <eliz@gnu.org>
7853         * progmodes/grep.el (grep-compute-defaults, grep-command)
7854         (grep-program, find-program, grep-find-use-xargs, grep-history)
7855         (grep-find-history, grep-tag-default, grep-find-command)
7856         (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
7857         Add autoload cookies, for unbundled packages that load `compile'
7858         and expect all grep-related symbols to become defined.
7860 2004-07-03  KOSEKI Yoshinori  <kose@meadowy.org>
7862         * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
7863         (iimage-mode-image-search-path): New user option to search the
7864         image file.
7865         (iimage-locate-file): New funcion.  Emacs21.3 or earlier does not
7866         have locate-file.
7867         (iimage-mode-buffer): Use it.
7869 2004-07-03  Nick Roberts  <nickrob@gnu.org>
7871         * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
7872         carefully.
7873         (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
7875 2004-07-03  Juri Linkov  <juri@jurta.org>
7877         * replace.el (query-replace-read-args): Swallow space after 'foo,
7878         not after (quote foo).  Match space only immediately after symbol,
7879         not anywhere in the whole string.
7881 2004-07-02  Richard M. Stallman  <rms@gnu.org>
7883         * replace.el (query-replace-read-args): Swallow space after
7884         symbols, not after closeparens.  But avoid error if string ends there.
7886         * progmodes/python.el (python-beginning-of-statement):
7887         Exit the loop if backward-up-list gets error.
7889         * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
7891 2004-07-02  Andre Spiegel  <spiegel@gnu.org>
7893         * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
7894         only if vc-consult-headers is non-nil.
7896 2004-07-02  Juri Linkov  <juri@jurta.org>
7898         * pcvs.el (cvs-mode-diff-repository): New command.
7900         * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
7902 2004-07-01  Juri Linkov  <juri@jurta.org>
7904         * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
7905         C-M-y to isearch-yank-char.  Bind M-% to isearch-query-replace,
7906         C-M-% to isearch-query-replace-regexp.
7907         (minibuffer-local-isearch-map): Add arrow key bindings.
7908         Bind C-f to isearch-yank-char-in-minibuffer.
7909         (isearch-forward): Doc fix.
7910         (isearch-edit-string): Doc fix.
7911         (isearch-query-replace, isearch-query-replace-regexp): New funs.
7912         (isearch-del-char): Add optional arg.  Set isearch-yank-flag to t.
7913         (isearch-yank-char): Add optional arg.
7914         (isearch-yank-char-in-minibuffer): New fun.
7916         * replace.el (query-replace-interactive): Change type from boolean
7917         to choice.  Add value `initial'.
7918         (query-replace-read-args): Handle value `initial' of
7919         query-replace-interactive.
7921 2004-06-29  Kim F. Storm  <storm@cua.dk>
7923         * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
7924         (breakpoint-disabled-bitmap-face): Add :group 'gud.
7926         * progmodes/ada-xref.el (ada-tight-gvd-integration):
7927         Add :group 'ada.
7929         * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
7931 2004-06-29  Juri Linkov  <juri@jurta.org>
7933         * replace.el (query-replace-read-args): Swallow a space after
7934         everything except )]" which in most cases means after a symbol.
7936         * emacs-lisp/pp.el (pp-buffer): Add autoload.
7938 2004-06-28  Richard M. Stallman  <rms@gnu.org>
7940         * font-lock.el (font-lock-fontify-syntactic-keywords-region):
7941         More changes to go with previous change in font-lock.el.
7943 2004-06-26  David Kastrup  <dak@gnu.org>
7945         * replace.el (perform-replace): Highlight the match even in
7946         non-query mode if there is potential replace string editing.
7948 2004-06-26  Kai Grossjohann  <kai.grossjohann@gmx.net>
7950         * net/tramp.el (tramp-handle-file-remote-p): New implementation to
7951         agree with new return value of `file-remote-p'.
7952         This syncs with Tramp 2.0.42.
7954         * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
7955         according to new documentation of `file-remote-p'.
7957         * files.el (file-remote-p): Fix doc to say that return value is
7958         identification of remote system, if not nil.
7959         (file-relative-name): Use new return value of `file-remote-p'.
7961 2004-06-26  Nick Roberts  <nickrob@gnu.org>
7963         * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
7964         (gdb-goto-breakpoint): Fix breakage.
7966 2004-06-26  Eli Zaretskii  <eliz@gnu.org>
7968         * man.el (Man-getpage-in-background): Add windows-nt to the list
7969         of systems where shell-file-name should be used instead of
7970         literal "sh".
7972 2004-06-25  Sam Steingold  <sds@gnu.org>
7974         * add-log.el (change-log-font-lock-keywords): Support Common Lisp
7975         function names `(setf symbol)'.
7977 2004-06-24  Richard M. Stallman  <rms@gnu.org>
7979         * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
7981         * font-lock.el (font-lock-keywords): Change format of compiled values.
7982         Document it.
7983         (font-lock-add-keywords): If font-lock-keywords is compiled,
7984         extract the uncompiled version, modify, then recompile.
7985         (font-lock-remove-keywords): Likewise.
7986         (font-lock-fontify-keywords-region): Handle changed format.
7987         (font-lock-compile-keywords): Handle changed format.
7988         (font-lock-set-defaults): Compile the keywords explicitly here.
7990 2004-06-24  David Kastrup  <dak@gnu.org>
7992         * replace.el (query-replace-read-args): Implement `\,' and `\#'
7993         replacements here.
7994         (query-replace-regexp): Doc string explaining this and the new
7995         `\?' replacement.  Remove `\,' and `\#' implementation here, as it
7996         is better placed in `query-replace-read-args'.
7997         (replace-regexp): Explain `\,', `\#' and `\?'.
7998         (replace-match-data): New function for thorough reuse/destruction
7999         of old match-data.
8000         (replace-match-maybe-edit): Function for implementing `\?' editing.
8001         (perform-replace): Fix maintaining of the match stack including
8002         already matched regions, implement `\?', fix various problems
8003         with regions while editing and other stuff.
8004         (replace-highlight): Simplify.
8006 2004-06-24  Daniel Pfeiffer  <occitan@esperanto.org>
8008         * progmodes/grep.el (grep-error-screen-columns): New variable.
8009         (grep-regexp-alist): Give it the full functionality of gnu style
8010         compilation messages with line and column ranges.  Ask me for the
8011         perl script I'm working on, that uses these.
8013 2004-06-23  Nick Roberts  <nickrob@gnu.org>
8015         * comint.el: (comint-insert-clicked-input, comint-copy-old-input):
8016         Remove.
8017         (comint-insert-input, comint-mouse-insert-input): New functions
8018         based on comint-insert-clicked-input for two bindings but just
8019         one functionality.
8021 2004-06-23  Luc Teirlinck  <teirllm@auburn.edu>
8023         * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
8025 2004-06-23  Lars Hansen  <larsh@math.ku.dk>
8027         * files.el (write-contents-functions): Doc fix.
8029 2004-06-21  Juanma Barranquero  <lektu@terra.es>
8031         * image.el (image-library-alist): Rewrite docstring in active voice.
8033 2004-06-20  Richard M. Stallman  <rms@gnu.org>
8035         * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
8037         * isearch.el (isearch-repeat): Avoid testing old match data.
8038         (isearch-message): Display trailing space in special font
8039         when search is failing.
8040         (isearch-search-fun-function): Doc fix.
8042         * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
8044 2004-06-19  Luc Teirlinck  <teirllm@auburn.edu>
8046         * frame.el (show-trailing-whitespace): Doc fix.
8048         * cus-edit.el (custom-variable-documentation): New function.
8049         (custom-variable): Use it.
8051 2004-06-19  Nick Roberts  <nickrob@gnu.org>
8053         * man.el (Man-getpage-in-background): Revert previous change but
8054         make cygwin a special case.
8056 2004-06-18  Luc Teirlinck  <teirllm@auburn.edu>
8058         * autorevert.el (global-auto-revert-non-file-buffers):
8059         Update docstring.
8061 2004-06-19  Daniel Pfeiffer  <occitan@esperanto.org>
8063         * progmodes/compile.el (compilation-error-properties): Store one
8064         more than end-col, if present, so that transient-mark-mode will
8065         highlight last char too.
8066         * progmodes/grep.el (grep-regexp-alist): Match columns and column
8067         ranges, if present.
8069 2004-06-18  Jason Rumney  <jasonr@gnu.org>
8071         * makefile.w32-in: Double percent signs in for loops.
8073 2004-06-17  David Kastrup  <dak@gnu.org>
8075         * replace.el (query-replace-read-args): Only warn about use of \n
8076         and \t when we are doing a regexp replacement and the actual
8077         escaped character is n or t.
8078         (query-replace-regexp): Add \, and \# interpretation to
8079         interactive call and document it.
8080         (query-replace-regexp-eval, replace-match-string-symbols): Add \#
8081         as shortkey for replace-count.
8082         (replace-quote): New function for doubling backslashes.
8084 2004-06-17  Juanma Barranquero  <lektu@terra.es>
8086         * files.el (parse-colon-path, cd): Mention in docstring that the
8087         path separator is colon in GNU-like systems.
8089         * newcomment.el (comment-region-internal): Fix docstring.
8091         * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
8092         (ewoc-invalidate, ewoc-collect): Doc fixes.
8093         (ewoc--create-node, ewoc--delete-node-internal):
8094         Fix typos in docstring.
8096 2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>
8098         * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
8099         manual to docstring.
8101 2004-06-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8103         * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
8105 2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>
8107         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
8108         Add hyperlink to emacs-xtra manual to docstring.
8110         * autorevert.el (global-auto-revert-non-file-buffers):
8111         Add hyperlink to emacs-xtra manual to docstring, as well as an
8112         info-link.
8114 2004-06-14  Juanma Barranquero  <lektu@terra.es>
8116         * image.el (image-library-alist): New variable to map image types
8117         to external libraries.  Initialized to nil, unless system-specific
8118         configs change it.
8119         (image-type-available-p): Determine whether an image type is
8120         available by calling `init-image-library'.
8122         * term/w32-win.el (image-library-alist): Initialize to a known set
8123         of probable library names.
8125 2004-06-14  Kenichi Handa  <handa@m17n.org>
8127         * international/code-pages.el (windows-1256, cp1125): Fix tables
8128         for several characters.
8130         * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
8132 2004-06-13  Richard M. Stallman  <rms@gnu.org>
8134         * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
8136         * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
8137         not "`pc-selection-mode'".
8139         * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
8141         * simple.el (previous-matching-history-element): Specify a default.
8143         * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
8145         * cus-face.el (custom-declare-face): Simplify code.
8147         * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
8149 2004-06-13  Luc Teirlinck  <teirllm@auburn.edu>
8151         * files.el (before-save-hook): Add `time-stamp' to the options.
8153         * time-stamp.el (time-stamp): Recommend adding it to
8154         `before-save-hook', rather than `write-file-functions'.
8155         Make a similar change in `Commentary' section.
8157 2004-06-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
8159         * diff-mode.el (diff-current-defun): If at start of hunk, use
8160         position of first change.
8162 2004-06-13  Lars Hansen  <larsh@math.ku.dk>
8164         * dired-x.el (dired-mark-omitted): Bind to "*O".
8166 2004-06-12  Karl Fogel  <kfogel@red-bean.com>
8168         * bookmark.el (bookmark-bmenu-relocate): New function, as
8169         suggested by David J. Biesack <David.Biesack@sas.com>.
8170         (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
8171         (bookmark-bmenu-mode): Describe binding in doc string.
8172         (bookmark-set-filename): Save the bookmark list if it's time.
8174 2004-06-13  Kenichi Handa  <handa@m17n.org>
8176         * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
8177         (ccl-untranslated-to-ucs): Fix typo.
8179 2004-06-12  Karl Chen  <quarl@hkn.eecs.berkeley.edu>  (tiny change)
8181         * progmodes/python.el (python-open-block-statement-p):
8182         Fix indentation after a block opening that contains a comment.
8184 2004-06-12  J\e,Ai\e(Br\e,At\e(Bme Marant  <jerome@marant.org>  (tiny change)
8186         * bindings.el (completion-ignored-extensions): Add file extensions
8187         of Python byte-compiled files.
8189 2004-06-12  Juri Linkov  <juri@jurta.org>
8191         * info.el (Info-goto-node): Add autoload.
8192         (Info-toc): Add substring-no-properties on Info file name.
8193         (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
8194         (Info-mode-map): Bind L to Info-history, T to Info-toc.
8196 2004-06-12  Kenichi Handa  <handa@m17n.org>
8198         * international/mule-cmds.el (set-language-environment):
8199         Load subst tables if necessary.
8201         * international/mule.el (decode-char): Load subst tables if necessary.
8202         (encode-char): Likewise.
8204         * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
8205         pair correctly.  Call ccl-mule-utf-untrans for untranslable chars.
8206         (utf-16le-decode-loop): Set r5 to -1 before loop.
8207         (utf-16be-decode-loop): Likewise.
8208         (ccl-decode-mule-utf-16le): Add EOF processing block.
8209         (ccl-decode-mule-utf-16be): Likewise.
8210         (ccl-decode-mule-utf-16le-with-signature): Likewise.
8211         (ccl-decode-mule-utf-16be-with-signature): Likewise.
8212         (ccl-decode-mule-utf-16): Likewise.  Set r5 to -1 initially.
8213         (ccl-mule-utf-16-encode-untrans): New CCL.
8214         (utf-16-decode-to-ucs): Handle pre-read character.
8215         (utf-16le-encode-loop): Handle surrogate pair.
8216         (utf-16be-encode-loop): Likewise.
8217         (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
8218         of utf-16le-encode-loop.
8219         (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
8220         of utf-16be-encode-loop.
8221         (mule-utf-16-post-read-conversion):
8222         Call utf-8-post-read-conversion at first.
8223         (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
8224         Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
8225         Add post-read-conversion and pre-write-conversion.
8227         * international/utf-8.el (utf-translate-cjk-charsets): New variable.
8228         (utf-translate-cjk-unicode-range): New variable.
8229         (utf-translate-cjk-load-tables): New function.
8230         (utf-lookup-subst-table-for-decode): New function.
8231         (utf-lookup-subst-table-for-encode): New function.
8232         (utf-translate-cjk-mode): Init-value changed to t.  Don't load
8233         tables here.  Update safe-charsets of utf-* coding systems.
8234         (ccl-mule-utf-untrans): New CCL.
8235         (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans.  Use `repeat'
8236         at end of each branch.
8237         (ccl-mule-utf-8-encode-untrans): New CCL.
8238         (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
8239         (ccl-untranslated-to-ucs): Handle 2-byte encoding.  Set r1 to the
8240         length of encoding.  Don't return r0.
8241         (utf-8-compose): New arg hash-table.  Handle 2-byte encoding.
8242         (utf-8-post-read-conversion): Narrow to region properly.
8243         If utf-translate-cjk-mode is on, load tables if necessary.
8244         Call utf-8-compose with hash-table arg if necessary.
8245         Call XXX-compose-region instead of XXX-post-read-convesion.
8246         (utf-8-pre-write-conversion): New function.
8247         (mule-utf-8): Include CJK charsets in safe-charsets if
8248         utf-translate-cjk-mode is on.  Add pre-write-conversion.
8250         * international/characters.el: Temporarily set
8251         utf-translate-cjk-mode to nil.
8253         * language/devan-util.el (devanagari-compose-region):
8254         Add autoload cookie.
8256         * international/ccl.el (ccl-dump-call): Fix printing the
8257         subroutine name.
8259 2004-06-11  Luc Teirlinck  <teirllm@auburn.edu>
8261         * dired.el (dired-revert): If buffer is marked unmodified before
8262         reverting, keep it marked unmodified.
8263         Adapt to new conventions for commenting out code.
8264         (dired-make-relative): Adapt to new conventions for commenting out code.
8266 2004-06-10  Miles Bader  <miles@gnu.ai.mit.edu>
8268         * eshell/esh-module.el (eshell-load-defgroups):
8269         Bind `vc-handled-backends' to nil when opening files.
8271 2004-06-11  Juanma Barranquero  <lektu@terra.es>
8273         * files.el (parse-colon-path, cd): Doc fixes (refer to
8274         `path-separator', not colon).
8276 2004-06-10  Juanma Barranquero  <lektu@terra.es>
8278         * newcomment.el (comment-search-forward)
8279         (comment-search-backward): Fix typos in docstring.
8280         (comment-region): Doc fix.
8282 2004-06-10  Luc Teirlinck  <teirllm@auburn.edu>
8284         * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
8285         switch is no longer stored in `dired-switches-alist'.
8287         * dired-aux.el (dired-insert-subdir): Do not store R switch in
8288         `dired-switches-alist'.
8290 2004-06-10  Kim F. Storm  <storm@cua.dk>
8292         * pcvs.el (cvs-mode-diff-yesterday): New command.
8294         * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
8296 2004-06-10  Juri Linkov  <juri@jurta.org>
8298         * emacs-lisp/edebug.el (edebug-eval-defun):
8299         * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
8300         Fix docstring.
8302         * simple.el (eval-expression-print-format): Don't print additional
8303         information on the first call to `eval-print-last-sexp'.
8304         (next-error-find-buffer): Fix punctuation.
8305         (killing) <defgroup>: Fix punctuation.
8306         (yank-excluded-properties): Change group from editing to killing.
8308         * replace.el (perform-replace): Use `limit' to terminate the
8309         while-loop explicitly.
8311 2004-06-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8313         * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
8314         Use lc-*.xpm as prefix instead of *-locol.xpm.
8316         * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
8317         * toolbar/lc-help.xpm, toolbar/lc-home.xpm
8318         * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
8319         * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
8320         * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
8321         * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
8322         * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
8323         * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
8324         * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
8325         * toolbar/lc-up_arrow.xpm:
8326         Rename from *-locol.xpm.
8328 2004-06-09  Rajesh Vaidheeswarran  <rv@gnu.org>
8330         * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
8331         include forms like &<str>; as valid url patterns.
8333 2004-06-08  Luc Teirlinck  <teirllm@auburn.edu>
8335         * dired.el (dired-diff, dired-backup-diff)
8336         (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
8337         (dired-do-chown, dired-do-touch, dired-do-print)
8338         (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
8339         (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
8340         (dired-create-directory, dired-do-copy, dired-do-symlink)
8341         (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
8342         (dired-do-copy-regexp, dired-do-hardlink-regexp)
8343         (dired-do-symlink-regexp, dired-upcase, dired-downcase)
8344         (dired-maybe-insert-subdir, dired-next-subdir)
8345         (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
8346         (dired-kill-subdir, dired-tree-up, dired-tree-down)
8347         (dired-hide-subdir, dired-hide-all, dired-show-file-type)
8348         (dired-run-shell-command, dired-query): Remove redundant,
8349         or incorrect, autoloads.
8351         * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
8352         does not end in a slash.  Add optional argument KILL-ROOT.
8353         Update docstring.
8354         (dired-do-touch, dired-clean-directory, dired-run-shell-command)
8355         (dired-query): Add autoloads.
8357 2004-06-08  Daniel Pfeiffer  <occitan@esperanto.org>
8359         * progmodes/compile.el (compilation-set-window-height):
8360         Rearrange the save-* functions because a buffer can have several current
8361         point in different windows.
8362         (compilation-error-regexp-alist-alist): Recognize {standard input}
8363         GNU messages (for gcc --pipe) and more kinds of Oracle messages.
8365 2004-06-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8367         * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
8368         * toolbar/help-locol.xpm, toolbar/home-locol.xpm
8369         * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
8370         * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
8371         * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
8372         * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
8373         * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
8374         * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
8375         * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
8376         * toolbar/up_arrow-locol.xpm:
8377         New versions of icons that uses fewer colors.
8379         * toolbar/tool-bar.el (tool-bar-local-item)
8380         (tool-bar-local-item-from-menu): Try to use icons with fewer colors
8381         if display-color-cells is 256 or less.
8383 2004-06-08  Kim F. Storm  <storm@cua.dk>
8385         * wid-edit.el (widget-specify-button): Use hand pointer rather
8386         than mouse-face as visible mouse-over effect.
8388 2004-06-07  Karl Fogel  <kfogel@red-bean.com>
8390         * saveplace.el (save-place-alist-to-file): Bind `print-length'
8391         and `print-level' to nil when writing out `save-place-alist'.
8392         Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
8394 2004-06-07  Juanma Barranquero  <lektu@terra.es>
8396         * completion.el (completion-kill-region): Doc fix.
8398         * format.el (format-insert-annotations)
8399         (format-annotate-location): Doc fixes.
8400         (format-subtract-regions): Make arguments match their use in docstring.
8402         * simple.el (kill-region): Doc fix.
8404         * subr.el (insert-buffer-substring-no-properties)
8405         (insert-buffer-substring-as-yank): Doc fixes.
8407 2004-06-07  Luc Teirlinck  <teirllm@auburn.edu>
8409         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
8410         Update docstring.
8411         (dired-reset-subdir-switches): New function.
8413         * dired.el (dired-undo): Call `dired-build-subdir-alist'.
8414         Limit scope of `buffer-read-only' binding.
8416 2004-06-06  Emilio C. Lopes  <eclig@gmx.net>
8418         * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
8419         eshell-explicit-command-char.
8421 2004-06-06  Juanma Barranquero  <lektu@terra.es>
8423         * help-fns.el (help-argument-name): Inherit from italic face only
8424         if the frame supports it.
8426 2004-06-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8428         * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
8429         * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
8430         * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
8431         * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
8432         * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
8433         * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
8434         * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
8435         New conversions from xpm files.
8437         * toolbar/README: New file.
8439 2004-06-06  Richard M. Stallman  <rms@gnu.org>
8441         * isearch.el (isearch-mode-map): Undo previous change.
8443 2004-06-05  Juri Linkov  <juri@jurta.org>
8445         * bindings.el (debug-ignored-errors): Add regexps for history
8446         related messages.  Remove $ from "No further undo information".
8447         Move Ediff's messages to ediff.el.
8449         * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
8451         * cus-edit.el (custom-display): Add `min-colors'.
8453         * custom.el (defface): Add `supports' to docstring.
8455         * help-fns.el (help-argument-name): Add :group 'help.
8457 2004-06-05  Luc Teirlinck  <teirllm@auburn.edu>
8459         * find-dired.el (find-ls-subdir-switches): New user option.
8460         (find-dired): No longer call `abbreviate-file-name' on DIR.
8461         Set `dired-subdir-switches' buffer-locally.
8463         * locate.el: Merge the two `Commentary' sections.
8464         (locate-ls-subdir-switches): New user option.
8465         (locate): Update for other changes.
8466         (locate-mode-map): Restore Dired binding for mouse-2.
8467         Bind `locate-mouse-view-file' to M-mouse-2.
8468         Bind `l' to `locate-do-redisplay'.
8469         (locate-main-listing-line-p, locate-do-redisplay): New functions.
8470         (locate-mouse-view-file, locate-tags, locate-find-directory):
8471         Print message if used outside main listing.
8472         (locate-mode): Update docstring.  Make `*Locate*' buffer read-only.
8473         Various changes to support inserted subdirectories.
8474         (locate-insert-header): Change header of *Locate* buffer.
8476         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
8477         Change interactive default switches.
8478         (dired-rename-subdir-2): Update `dired-switches-alist'.
8479         (dired-insert-subdir, dired-kill-subdir):
8480         Handle `dired-switches-alist'.  Do not mark buffer modified.
8481         (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
8482         (dired-insert-subdir-doinsert): Omit messages.
8483         Handle `dired-subdir-switches'.
8484         (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
8486         * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
8487         (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
8488         subdirs if -R switch is used for a subdir.
8489         (dired-mode): Set `dired-switches-alist'.
8490         (dired-build-subdir-alist): Only print number of directories in
8491         echo area when invoked interactively.
8493 2004-06-05  Lars Hansen  <larsh@math.ku.dk>
8495         * dired-x.el (dired-omit-mode): Rename from
8496         dired-omit-files-p.  Use define-minor-mode to define it.
8497         (dired-omit-files-p): Add as alias for dired-omit-mode.
8498         (dired-omit-toggle): Delete.  Replaced by dired-omit-mode and
8499         dired-mark-omitted.
8500         (dired-mark-omitted): Add.  Bind to M-O.
8502 2004-06-05  Kenichi Handa  <handa@m17n.org>
8504         * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
8506 2004-06-05  Juanma Barranquero  <lektu@terra.es>
8508         * help-fns.el (help-argument-name): Reintroduce face.
8509         (help-default-arg-highlight): Use it, now that
8510         `face-differs-from-default-p' can be trusted.
8512 2004-06-05  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
8514         * textmodes/table.el: Sentence commands added to Point Motion
8515         group; kill and backward-kill commands added to Extraction group.
8517 2004-06-04  Mario Lang  <mlang@delysid.org>
8519         * battery.el (battery-linux-proc-acpi): `mA' was hardcored, but some
8520         systems appear to use mW, make the code handle this.  Fix a
8521         division-by-zero bug while at it, and handle kernels with
8522         a slightly different layout in /proc/acpi.
8524 2004-06-04  Karl Fogel  <kfogel@red-bean.com>
8526         * vc-svn.el (vc-svn-checkin): Use 'nconc' instead of 'list*',
8527         because the latter is a CL-ism.  This fixes the bug reported by
8528         Shawn Boyette <mdxi@collapsar.net> in
8529         http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
8531 2004-06-04  Miles Bader  <miles@gnu.org>
8533         * faces.el (display-supports-face-attributes-p): Function moved to
8534         C code.  Previously only the tty-related portion of this function
8535         was done in C; however the previous attempt to do a halfway-proper
8536         job for non-tty displays in lisp didn't work properly because of
8537         funny conditions during Emacs startup.
8538         (face-differs-from-default-p): Simplify, now that
8539         display-supports-face-attributes-p works properly on all display
8540         types.  Remove :stipple from comparison; it doesn't really work
8541         in emacs anyway.
8543 2004-06-04  Miles Bader  <miles@gnu.org>
8545         * faces.el (face-differs-from-default-p): Use a different
8546         implementation, so we can really check whether FACE displays
8547         differently or not.
8549 2004-06-04  Miles Bader  <miles@gnu.org>
8551         * faces.el (display-supports-face-attributes-p): Implement a
8552         `different from default' check for non-tty displays.
8554 2004-06-03  David Kastrup  <dak@gnu.org>
8556         * woman.el (woman-mapcan): More concise code.
8557         (woman-topic-all-completions, woman-topic-all-completions-1)
8558         (woman-topic-all-completions-merge): Replace by a simpler and
8559         much faster implementation based on O(n log n) sort/merge instead
8560         of the old O(n^2) behavior.
8562 2004-06-03  Miles Bader  <miles@gnu.org>
8564         * subr.el (read-number): Use canonical format for default in prompt.
8566         * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
8567         Add regexp for " [...]" style defaults.
8569 2004-06-02  Romain Francoise  <romain@orebokech.com>
8571         * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
8572         groups: if the user asks for a hidden buffer, open the
8573         corresponding filter group to expose it.
8575         * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
8576         `ibuffer-jump-to-buffer'.
8577         (ibuffer-jump-offer-only-visible-buffers): New user option.
8579 2004-06-02  Juanma Barranquero  <lektu@terra.es>
8581         * faces.el (frame-update-faces): Add empty docstring so the one
8582         for `ignore' doesn't show through.
8584         * subr.el (process-kill-without-query): Remove spurious "\n" on
8585         obsolescence string.
8586         (focus-frame, unfocus-frame): Add obsolescence declaration and
8587         empty docstring.
8589         * international/mule.el (register-char-codings): Make alias for
8590         `ignore'.  Move docstring to obsolescence info and remove redundancy.
8592 2004-06-02  Kim F. Storm  <storm@cua.dk>
8594         * frame.el (blink-cursor-start): Turn cursor off initially so blink
8595         starts after blink-cursor-delay rather than 2*blink-cursor-delay.
8597 2004-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8599         * comint.el (comint-replace-by-expanded-history-before-point):
8600         Obey `start' as the docstring says.
8601         (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
8602         (comint-update-fence): Prevent font-lock from running unnecessarily.
8603         (comint-dynamic-list-completions): Use with-current-buffer.
8605 2004-06-01  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
8607         * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
8608         (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
8609         (bibtex-entry-update): Handle alternatives and optional fields.
8610         (bibtex-parse-entry): Bugfix, handle empty key.
8612 2004-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
8614         * vc-arch.el (vc-arch-state): Don't assume the file exists.
8616 2004-05-31  Lars Hansen  <larsh@math.ku.dk>
8618         * desktop.el (desktop-save): Don't save minor modes without a
8619         known mode initialization function.
8621 2004-05-30  Luc Teirlinck  <teirllm@auburn.edu>
8623         * replace.el (query-replace-interactive): Convert defvar -> defcustom.
8625         * autorevert.el: Update `Commentary' section.
8627 2004-05-30  Juanma Barranquero  <lektu@terra.es>
8629         * dos-fns.el (convert-standard-filename):
8630         * files.el (convert-standard-filename):
8631         * w32-fns.el (convert-standard-filename):
8632         Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
8634 2004-05-30  Kai Grossjohann  <kai.grossjohann@gmx.net>
8636         Sync with Tramp.
8638         * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
8639         (tramp-let-maybe): Move to an earlier spot in the file.
8640         Patch by Andreas Schwab.
8642 2004-05-30  Andreas Schwab  <schwab@suse.de>
8644         * dired.el (dired-get-filename): Don't use dired-re-dot.
8646 2004-05-30  Richard M. Stallman  <rms@gnu.org>
8648         * files.el (find-file): Doc fix.
8650         * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
8652 2004-05-30  Nick Roberts  <nickrob@gnu.org>
8654         * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
8655         (gdb-locals-mode, gdb-frame-handler): Display current frame in the
8656         modeline of the locals buffer.
8657         (gdb-goto-breakpoint): Handle gdbmi.
8658         (gdb-get-frame-number): Change for gdbmi.
8660 2004-05-30  Michael Albinus  <michael.albinus@gmx.de>
8662         * files.el (file-remote-p): Apply file name handler for operation
8663         `file-remote-p'.  It isn' a property any longer.
8664         (file-relative-name): `fh' and `fd' get the required value via
8665         `find-file-name-handler' already.
8667         * ange-ftp.el (ange-ftp-file-remote-p): New defun.
8668         (top): Remove setting of `file-remote-p' property for
8669         `ange-ftp-hook-function'.  Add `ange-ftp' property to `file-remote-p'.
8671 2004-05-29  Michael Albinus  <michael.albinus@gmx.de>
8673         Version 2.0.41 of Tramp released.
8675         * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
8676         Throw away if process has died.
8677         Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
8678         (tramp-out-of-band-prompt-regexp): Rename to
8679         `tramp-process-alive-regexp', because its usage is widen.
8680         (tramp-actions-copy-out-of-band): Apply it.
8681         (tramp-actions-before-shell, tramp-multi-actions):
8682         Add `tramp-action-process-alive' action.
8683         (tramp-action-process-alive): New defun.
8684         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
8685         Add entry for `file-remote-p'.
8686         (tramp-handle-file-remote-p): New defun.
8687         (top): Remove setting of `file-remote-p'.  Don't set
8688         `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
8690         * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
8691         `file-remote-p'.
8693         * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
8694         counted for (last) line.  [They should or they shouldn't?  --Stef]
8695         Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
8697 2004-05-29  Kai Grossjohann  <kai.grossjohann@gmx.net>
8699         * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
8700         not really necessary but seems to keep the shell history smaller
8701         in some cases.  It is no substitute for setting HISTFILE and
8702         HISTSIZE from tramp-open-connection-setup-interactive-shell,
8703         though.  Suggested by Luc Teirlinck.
8704         (tramp-open-connection-setup-interactive-shell): Export variables
8705         HISTFILE and HISTSIZE, do not just set them.  From Luc Teirlinck.
8706         (tramp-set-process-query-on-exit-flag): New compat function.
8707         (tramp-open-connection-multi, tramp-open-connection-su)
8708         (tramp-open-connection-rsh, tramp-open-connection-telnet)
8709         (tramp-do-copy-or-rename-file-out-of-band): Use it.
8710         (tramp-let-maybe): New macro, let-binds a variable only if it
8711         isn't obsolete.
8712         (tramp-check-ls-commands, tramp-handle-expand-file-name)
8713         (tramp-handle-file-truename): Use it.
8714         (tramp-completion-file-name-regexp-unified): Avoid matching
8715         filenames starting with "/:" -- those are reserved for
8716         file-name-non-special.
8718         * tramp-smb.el (tramp-smb-open-connection):
8719         Use tramp-set-process-query-on-exit-flag compat function.
8721 2004-05-29  Richard M. Stallman  <rms@gnu.org>
8723         * net/browse-url.el (browse-url-interactive-arg): Doc fix.
8725         * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
8726         (eval-last-sexp-print-value): Print char equivalent regardless
8727         of standard-output value.
8729         * thumbs.el (thumbs-subst-char-in-string): Delete.
8730         (thumbs-thumbname): Use subst-char-in-string.
8731         (thumbs-resize-image): Use condition-case, not ignore-errors.
8732         (thumbs-kill-buffer): Likewise.
8734         * thumbs.el: Don't include cl.  Don't bother with old Emacs versions.
8735         (thumbs-mode): Make buffer read-only.
8736         (thumbs-make-thumb): Unconditionally accept an existing file.
8737         (thumbs-insert-thumb): Add thumb-image-file property to the image.
8738         (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
8739         (thumbs-show-thumbs-list): Error if images not supported.
8740         (thumbs-save-current-image): Improve prompt string.
8741         (thumbs-mode-map): Define u, R, x.
8742         (thumbs-unmark): New command.
8743         (thumbs-emboss-image): Minor cleanup.
8744         (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
8745         (thumbs-rename-images): New command.
8746         (thumbs-show-image-num): Rewrite.  Don't rename the buffer.
8748         * thumbs.el (thumbs-current-image): New function.
8749         (thumbs-file-list, thumbs-file-alist): New functions.
8750         (thumbs-find-image): Delete arg L.
8751         Don't set up thumbs-fileL as buffer-local global var.
8752         (thumbs-find-image-at-point): Use thumbs-current-image.
8753         (thumbs-set-image-at-point-to-root-window): Likewise.
8754         (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
8755         Record and warn about errors.  Update thumbs-markedL for deletions.
8756         (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
8757         (thumbs-redraw-buffer): Use thumbs-file-list.
8758         (thumbs-mark): Use thumbs-current-image.
8759         (thumbs-show-name): Use thumbs-current-image.
8761         * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
8762         and imenu--last-menubar-index-alist.
8764         * subr.el (with-selected-window): Undo previous change.
8766 2004-05-29  John Paul Wallington  <jpw@gnu.org>
8768         * thumbs.el (thumbs-show-name): Do nothing if no image at point.
8769         (thumbs-mouse-find-image): New command.
8770         (thumbs-mode-map): Bind it to mouse-2.
8771         (thumbs-mode): Make mode-class special.
8772         (thumbs-view-image-mode): Likewise.
8774 2004-05-29  Pavel Kobiakov  <pk_at_work@yahoo.com>
8776         * flymake.el: New file.
8778 2004-05-28  Luc Teirlinck  <teirllm@auburn.edu>
8780         * files.el (find-file-noselect-1): Do not bind
8781         `inhibit-read-only' to t during execution of
8782         `find-file-not-found-functions'.
8784 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8786         * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
8787         * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
8789 2004-05-28  Juri Linkov  <juri@jurta.org>
8791         * simple.el (eval-expression-print-format): New fun.
8793         * simple.el (eval-expression):
8794         * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
8795         * emacs-lisp/edebug.el (edebug-compute-previous-result)
8796         (edebug-eval-expression): Print additionally the value returned by
8797         `eval-expression-print-format'.
8799         * emacs-lisp/lisp.el (insert-pair-alist): New var.
8800         (insert-pair): Make arguments optional.  Find character pair
8801         from `insert-pair-alist' according to the last input event.
8802         (insert-parentheses): Make arguments optional.
8803         (raise-sexp, delete-pair): New funs.
8805         * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
8806         (emacs-lisp-mode-map, lisp-interaction-mode-map):
8807         Bind C-M-q to `indent-pp-sexp'.
8809         * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
8810         `pp-to-string' modified to be able to format text with newlines.
8811         (pp-to-string): Move the buffer-formatting part of the code to
8812         `pp-buffer'.  Call `pp-buffer'.
8814         * info.el (Info-desktop-buffer-misc-data): Don't save information
8815         about virtual files.
8816         (Info-restore-desktop-buffer): Restore Info buffers in prepared
8817         buffers with names obtained from the desktop file instead of the
8818         default *info* buffer.
8820 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8822         * subr.el (with-selected-window): Only save/restore the selected window.
8824         * progmodes/compile.el (compilation-error-regexp-alist):
8825         Use expand-file-name and data-directory.
8827         * progmodes/grep.el (grep-tree): Rework previous fix.
8829         * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
8830         after the user marked text with the mouse.
8832         * startup.el (command-line): Keep the first regexp of
8833         auto-save-file-name-transforms intact.
8835 2004-05-28  Juanma Barranquero  <lektu@terra.es>
8837         * cus-edit.el (customize-face, customize-face-other-window)
8838         (custom-face-edit-delete): Make arguments match their use in
8839         docstring.
8840         (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
8841         docstring.
8843         * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
8844         not `cvs-butlast'.
8846         * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
8847         `nbutlast' are in subr.el).
8849         * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
8850         (set-w32-system-coding-system): Doc fixes.
8852         * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
8853         (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
8854         Make arguments match their use in docstring.
8855         (artist-draw-region-trim-line-endings)
8856         (artist-mouse-choose-operation): Fix typo in docstring.
8857         (artist-key-set-point-common): Doc fix.
8859 2004-05-28  Simon Josefsson  <jas@extundo.com>
8861         * mail/smtpmail.el (smtpmail-open-stream):
8862         Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
8864 2004-05-26  Simon Josefsson  <jas@extundo.com>
8866         * starttls.el: Merge with my GNUTLS based starttls.el.
8867         (starttls-gnutls-program, starttls-use-gnutls)
8868         (starttls-extra-arguments, starttls-process-connection-type)
8869         (starttls-connect, starttls-failure, starttls-success): New variables.
8870         (starttls-program, starttls-extra-args): Doc fix.
8871         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
8872         (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
8873         and pass on to corresponding *-gnutls function if it is set.
8875 2004-05-27  Luc Teirlinck  <teirllm@auburn.edu>
8877         * autorevert.el (auto-revert-handler): Disable auto-reverting of
8878         remote files.
8880 2004-05-27  Michael Albinus  <michael.albinus@gmx.de>
8882         * files.el (file-name-non-special): There are more operations
8883         which need handling: `find-backup-file-name',
8884         `insert-file-contents', `verify-visited-file-modtime',
8885         `write-region'.  Rename t value of method to `add'.  Add new
8886         methods `quote' and `unquote-then-quote' to file-arg-indices.
8888 2004-05-25  Juri Linkov  <juri@jurta.org>
8890         * info.el (Info-toc): Call Info-mode on intermediate buffer.
8891         (Info-index-nodes): Enclose code in condition-case to catch errors.
8892         (Info-index-node): Don't search all index nodes if request is only
8893         for the current node and file is not in the cache of index nodes.
8894         (Info-mode-map): Bind Info-copy-current-node-name to `w'
8895         for consistency with dired-copy-filename-as-kill.
8896         Bind `S' to Info-search-case-sensitively.
8897         (Info-copy-current-node-name): New arg.  With zero prefix arg put
8898         the name inside a function call to `info'.  Display copied text in
8899         the echo area.
8901 2004-05-25  Sam Steingold  <sds@gnu.org>
8903         * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
8904         strip the package prefix from the symbol name, if any.
8905         Make it the `find-tag-default-function' for `lisp-mode'.
8907 2004-05-25  John Paul Wallington  <jpw@gnu.org>
8909         * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
8910         instead of obsolete `process-kill-without-query'.
8912         * textmodes/texinfmt.el (texinfo-indexvar-alist):
8913         Declare as variable, not constant.
8915 2004-05-25  Luc Teirlinck  <teirllm@auburn.edu>
8917         * files.el (find-file-noselect-1): Fix bug introduced by
8918         Revision 1.694.  As a side effect, `inhibit-read-only'
8919         is again, by default, t during execution of
8920         `find-file-not-found-functions'.
8921         (insert-directory): Check that lines were really inserted by
8922         the --dired switch, before erasing them.
8924 2004-05-24  Nick Roberts  <nickrob@gnu.org>
8926         * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
8927         (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
8928         (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
8929         (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
8930         gud-minor-mode (gdbmi).
8932 2004-05-24  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny change)
8934         * net/browse-url.el (browse-url-interactive-arg): Enable user to
8935         explicitly select the text to be taken as URL.
8937 2004-05-23  Juri Linkov  <juri@jurta.org>
8939         * info.el (Info-index-nodes): New var and fun.
8940         (Info-goto-index, Info-index, info-apropos)
8941         (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
8942         (Info-index): Fix docstring.  Store and restore Info-history-list.
8943         (Info-complete-nodes): New var.
8944         (Info-complete-menu-item): Use it.
8945         (Info-index-node): New fun.
8946         (Info-final-node, Info-forward-node, Info-backward-node)
8947         (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
8948         Use Info-index-node.
8949         (Info-extract-menu-item, Info-extract-menu-counting): Set second
8950         arg of `Info-extract-menu-node-name' to non-nil for index nodes.
8951         (Info-find-node-2): If a node with period in its name not found,
8952         try to find a node without the name part after period.
8953         (Info-select-node): Call Info-fontify-node only if
8954         Info-fontify-maximum-menu-size is not nil.
8955         (info-apropos): Set Info-fontify-maximum-menu-size to nil.
8956         (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
8957         Preserve Info-history-list.
8958         (Info-toc): Set Info-current-file.
8959         (Info-build-toc): Move point to the beginning of the buffer.
8960         Add main-file variable.
8961         (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
8962         Use backslashed representation of the control character ^_.
8964         * textmodes/texinfmt.el (texinfo-print-index): Print index line
8965         numbers in the new Texinfo 4.7 format.
8967         * add-log.el (change-log-font-lock-keywords): Remove `:' from
8968         regexps for function and variable names.
8970         * descr-text.el (describe-property-list): Add [show] button for
8971         `syntax-table' property with action to pp to a separate buffer.
8972         (describe-char): Replace search-forward by re-search-forward with
8973         whitespace regexp after "character:" to not fail in too narrow windows.
8975         * simple.el (next-error-find-buffer): Add a rule to return
8976         next-error capable buffer if one window on the selected frame
8977         displays such buffer.
8979 2004-05-23  Nick Roberts  <nickrob@gnu.org>
8981         * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
8982         (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
8983         (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
8984         (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
8985         (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
8986         Handle new value for gud-minor-mode (gdbmi).
8987         (gdb-buffer-type, gdb-input-queue, gdb-prompting)
8988         (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
8989         Change from local to global gdb variable set.
8990         (gdb-ann3): Initialise above gdb variable set.
8991         (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
8992         (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
8993         (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
8994         (gdb-stopped, gdb-post-prompt, gdb-concat-output)
8995         (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
8996         (gdb-info-locals-handler, gdb-invalidate-assembler)
8997         (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
8998         set as global variables.
8999         (gdb-get-create-buffer): Don't make gud-comint buffer-local.
9000         Handle gdbmi.
9001         (gdb-info-breakpoints-custom): Fix regexp.
9002         (def-gdb-var): Delete.
9004         * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
9005         (gud-speedbar-buttons, gud-sentinel, gud-display-line)
9006         (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
9007         a new mode.  The file (gdb-mi.el) for this mode will be included
9008         with the GDB distribution (6.2 onwards) and will use GDB/MI as its
9009         primary interface.
9011 2004-05-23  Jesper Harder  <harder@ifa.au.dk>
9013         * progmodes/grep.el (grep-tree): Ensure that DIR argument is
9014         interpreted as a directory.
9016 2004-05-22  Richard M. Stallman  <rms@gnu.org>
9018         * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
9019         as a close quote.
9021         * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
9023         * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
9024         Use assoc-string, not assoc-ignore-case.
9026         * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
9028         * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
9029         If moving back then fwd gets a defun that ends before point,
9030         try again moving fwd then back.
9032         * files.el (file-name-non-special): Allow t in file-arg-indices
9033         to mean requote the return value.  Use `identity' as an element
9034         rather than as the whole value.
9036         * gs.el (gs-options): Add -dSAFER.  Mark it risky.
9038 2004-05-22  Juanma Barranquero  <lektu@terra.es>
9040         * help-fns.el (help-add-fundoc-usage): Use %S only for output of
9041         `help-make-usage'.
9042         (help-highlight-arguments): Skip function name before searching
9043         for arguments.
9045 2004-05-21  Juanma Barranquero  <lektu@terra.es>
9047         * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
9048         Don't mention in the docstring these arguments meant for
9049         internal (recursive) use only.
9050         (allout-char-spec): Comment out (it's not implemented).
9051         (allout-old-expose-topic, allout-exposure): Fix docstring and add
9052         obsolescence declaration.
9053         (allout-flatten-exposed-to-buffer)
9054         (allout-indented-exposed-to-buffer): Fix typos in docstring.
9055         (my-mark-marker): Doc fix.
9056         (produce-allout-mode-map, allout-sibling-index)
9057         (allout-isearch-expose, allout-distinctive-bullet)
9058         (allout-open-topic, allout-reindent-body)
9059         (allout-rebullet-heading, allout-process-exposed)
9060         (allout-insert-listified, allout-latex-verb-quote)
9061         (allout-insert-latex-header, allout-insert-latex-trailer):
9062         Make arguments match their use in docstring.
9063         (allout-primary-bullet, allout-old-style-prefixes)
9064         (allout-inhibit-protection, allout-init, allout-mode)
9065         (allout-before-change-protect, allout-flag-region):
9066         Use "Emacs" instead of "emacs" in docstrings.
9068 2004-05-21  Masayuki Ataka  <ataka@milk.freemail.ne.jp>  (tiny change)
9070         * international/characters.el: Modify syntax of more characters.
9072 2004-05-21  Masatake YAMATO  <jet@gyve.org>
9074         * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
9075         (etags-tags-completion-table): Show parsing progress.
9077 2004-05-20  Luc Teirlinck  <teirllm@auburn.edu>
9079         * locate.el (locate-prompt-for-command): Shorten first line of
9080         docstring.
9081         (locate-mode): Expand docstring and include keymap summary.
9083         * files.el (find-file-noselect-1): Limit the scope of the
9084         `inhibit-read-only' binding.  Make sure that `inhibit-read-only'
9085         is, by default, nil during the execution of
9086         `find-file-not-found-functions' and `find-file-hook'.
9088 2004-05-20  Michael Mauger  <mmaug@yahoo.com>
9090         * facemenu.el (facemenu-color-name-equal): New function.
9091         (list-colors-display): Use it to compare colors instead of
9092         facemenu-color-equal.
9094 2004-05-20  Dan Nicolaescu  <dann@ics.uci.edu>
9096         * compare-w.el (compare-windows-face): Use min-colors instead of
9097         checking for tty or pc types.
9099 2004-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9101         * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
9102         (completion-setup-function): Use with-current-buffer.
9103         Properly save excursion.  Simplify.
9104         Don't assume there is necessarily a `mouse-face' property somewhere.
9106         * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
9108         * progmodes/gdb-ui.el (gdb-reset): Use unless.  Fix regexp.
9110         * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
9111         (byte-compile-log-1): Don't call (byte-goto-log-buffer).
9112         Use with-current-buffer.
9113         (byte-goto-log-buffer): Delete.
9114         (byte-compile-log-file): Call compilation-forget-errors.
9116 2004-05-19  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
9118         * net/ldap.el (ldap-search-internal): Avoid mixing standard error
9119         output messages into the search result.
9121 2004-05-19  Masatake YAMATO  <jet@gyve.org>
9123         * wid-edit.el (widget-radio-button-notify): Revert my last
9124         change.  Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
9126 2004-05-19  Kenichi Handa  <handa@m17n.org>
9128         * international/characters.el: Fix syntax (open/close) of CJK chars.
9130 2004-05-18  Karl Chen  <quarl@hkn.eecs.berkeley.edu>  (tiny change)
9132         * help-mode.el (help-go-back): Don't depend on position of back button.
9134 2004-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9136         * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
9137         files files don't contain an accidental additional /.
9139         * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
9140         in source buffer.
9142 2004-05-18  Masatake YAMATO  <jet@gyve.org>
9144         * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
9145         to widget-apply.  :action method assumes 2 arguments, not 3.
9147 2004-05-17  Glenn Morris  <gmorris@ast.cam.ac.uk>
9149         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
9150         New constants.
9151         (hs-special-modes-alist): Add an f90-mode entry.
9153 2004-05-17  Sam Steingold  <sds@gnu.org>
9155         * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
9156         Indent "without-" forms just like "with-" and "do-".  Use regexp-opt.
9158 2004-05-16  Kim F. Storm  <storm@cua.dk>
9160         * emacs-lisp/timer.el (timer-event-handler): Fix last change.
9162 2004-05-15  John Wiegley  <johnw@newartisans.com>
9164         * eshell/esh-io.el (eshell-get-target): Whitespace changes.
9165         (eshell-output-object-to-target): Improve output speed 20% by not
9166         calling `eshell-stringify' if something is already known to be a string.
9168 2004-05-15  Alex Ott  <ott@jet.msk.su>
9170         * textmodes/ispell.el (ispell-local-dictionary-alist):
9171         Add windows-1251 to the choice of coding systems.
9172         (ispell-dictionary-alist-6): Add support for "russianw.aff",
9173         encoded in cp1251.
9175 2004-05-15  Dan Nicolaescu  <dann@ics.uci.edu>
9177         * progmodes/compile.el (compilation-warning-face)
9178         (compilation-info-face): Use min-colors.
9180 2004-05-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9182         * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
9183         * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
9184         * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
9185         * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
9186         * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
9187         * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
9188         * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
9189         * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
9190         * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
9191         * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
9192         * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
9193         * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
9194         * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
9195         * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
9197 2004-05-15  Kim F. Storm  <storm@cua.dk>
9199         * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
9200         Use it to set triggered-p element of timer.
9201         (timer-event-handler): Set triggered-p element non-nil while running
9202         the timer function.
9204 2004-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9206         * descr-text.el (describe-char-unicode-data)
9207         (describe-char-unicodedata-file): Re-enable the unicode code now that
9208         the licensing issues have been cleared in the unicode-4 license.
9209         (describe-text-properties-1): Remove unused `overlay' var.
9210         (describe-char): Remove unused var `buffer'.
9212 2004-05-14  David Ponce  <david@dponce.com>
9214         * tree-widget.el: New file.
9216 2004-05-13  Marcelo Toledo  <marcelo@marcelotoledo.org>
9218         * language/european.el ("Brazilian Portuguese"): Add support for
9219         Brazilian Portuguese.
9221 2004-05-13  John Wiegley  <johnw@newartisans.com>
9223         * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
9224         `recentf-mode' if this variable has been customized to t.
9226         * eshell/esh-test.el (eshell-test): Call the function
9227         `emacs-version' rather than trying to build a custom version string.
9229 2004-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9231         * net/telnet.el (telnet-mode): Use define-derived-mode.
9232         Don't modify the global value of comint-prompt-regexp.
9234 2004-05-13  John Paul Wallington  <jpw@gnu.org>
9236         * version.el (emacs-version): Check for `gtk' feature before
9237         `x-toolkit' feature.
9239 2004-05-13  Juanma Barranquero  <lektu@terra.es>
9241         * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
9242         arguments in the docstring, they're used only in recursive calls.
9244         * help-fns.el (help-arg-highlighting-function)
9245         (help-argument-name): Delete.
9246         (help-default-arg-highlight): New function.
9247         (help-do-arg-highlighting): Use it.
9249 2004-05-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
9251         * calendar/appt.el (appt-disp-window):
9252         Use `calendar-set-mode-line' for a centered mode-line.
9254 2004-05-13  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
9256         * calendar/appt.el (appt-disp-window): Do not split window
9257         excessively when `split-height-threshold' is low.
9259 2004-05-12  Nick Roberts  <nickrob@gnu.org>
9261         * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
9262         kill-buffer-hook here and make it local.
9263         (gud-kill-buffer-hook): Use kill-process for a sure kill.
9265 2004-05-12  Daniel Pfeiffer  <occitan@esperanto.org>
9267         * progmodes/compile.el (compilation-set-window-height):
9268         Use save-excursion to protect against misplaced marker.
9270 2004-05-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9272         * custom.el (defface): Document that type can have value gtk.
9274         * faces.el (face-spec-set-match-display): Handle type gtk in display.
9276 2004-05-12  Kenichi Handa  <handa@m17n.org>
9278         * descr-text.el: Require quail at comile time.
9279         (describe-char): If an input method is on and it supports the
9280         character, show how to input it.
9282         * international/quail.el (quail-install-decode-map): Accept a
9283         char-table whose subtype is `quail-decode-map'.
9284         (quail-store-decode-map-key, quail-gen-decode-map1)
9285         (quail-gen-decode-map, quail-find-key1, quail-find-key)
9286         (quail-show-key): New functions.
9288 2004-05-12  Juanma Barranquero  <lektu@terra.es>
9290         * generic.el (define-generic-mode): Remove redundant arglist info.
9292         * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
9293         Make arguments match their use in docstring.
9294         (help-arg-highlighting-function): New variable.
9295         (help-argument-name): Mention it in the docstring.
9296         (help-do-arg-highlight): Use it.  Expand regexp to accept also
9297         ARG-xxx and xxx-ARG references.
9299 2004-05-11  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny change)
9301         * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
9302         parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
9303         and "mailto:addr1?to=addr2" equal.
9305 2004-05-11  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
9307         * man.el (Man-getpage-in-background): Use shell-file-name
9308         and shell-command-switch variables instead of hard-coded values.
9310 2004-05-11  Eli Zaretskii  <eliz@gnu.org>
9312         * iimage.el: New file.
9314 2004-05-11  Juanma Barranquero  <lektu@terra.es>
9316         * custom.el (custom-initialize-default, defcustom):
9317         Fix typo in docstring.
9319         * files.el (set-visited-file-name, file-expand-wildcards):
9320         Fix docstring.
9322 2004-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9324         * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
9326         * subr.el (eventp): Be more discriminating with integers.
9328 2004-05-10  Daniel Pfeiffer  <occitan@esperanto.org>
9330         * progmodes/compile.el (compile): Add universal prefix arg.
9331         (compilation-error-regexp-alist-alist): Add edg patterns.
9333 2004-05-10  Sam Steingold  <sds@gnu.org>
9335         * textmodes/ispell.el (ispell-message):
9336         Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
9338 2004-05-10  Dave Love  <fx@gnu.org>
9340         * progmodes/python.el (help-buffer): Autoload when compiling.
9341         (python-after-info-look): Don't assume Info-goto-node returns non-nil.
9342         (run-python): Prepend to any existing PYTHONPATH.
9344 2004-05-10  Nick Roberts  <nick@nick.uklinux.net>
9346         * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
9347         for pending breakpoints.
9349 2004-05-10  Richard M. Stallman  <rms@gnu.org>
9351         * mail/unrmail.el (unrmail): Mostly rewritten.  Parses the file
9352         directly without calling any functions in Rmail.
9353         (unrmail-unprune): Function deleted.
9355 2004-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9357         * progmodes/python.el (inferior-python-mode-map): Remove erroneous
9358         C-c C-z binding.
9360 2004-05-10  Kenichi Handa  <handa@m17n.org>
9362         * descr-text.el (describe-char): Fix previous change.  Don't make
9363         a unibyte character to multibyte in the *Help* buffer.
9365 2004-05-10  Miles Bader  <miles@gnu.org>
9367         * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
9368         buffer an error if the debugger process is actually running.
9370 2004-05-10  Juanma Barranquero  <lektu@terra.es>
9372         * help-fns.el (help-argument-name): Default to italic.
9373         (help-highlight-arguments): Return always (usage . doc), even when
9374         usage is nil.
9376         * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
9377         (define-ibuffer-filter): Add usage info.
9378         (define-ibuffer-op): Add usage info (but CL-style defaults for
9379         keyword args are not shown).
9381         * subr.el (remove-overlays, read-passwd): Fix docstring.
9382         (start-process-shell-command): Fix docstring.  Put usage info in a
9383         format usable by `describe-function'.
9384         (open-network-stream, open-network-stream-nowait)
9385         (open-network-stream-server): Fix docstring.
9387 2004-05-09  Jason Rumney  <jasonr@gnu.org>
9389         * international/code-pages (cp932, cp936, cp949, c950): Remove.
9390         Only define cp125* if windows-125* is already defined.
9392         * language/korean.el (cp949): Add alias.
9394         * language/chinese.el (cp936, cp950): Add aliases.
9396         * language/japanese.el (cp932): Add alias.
9398         * term/w32-win.el: Require code-pages.
9400         * international/mule-cmds.el (set-locale-environment):
9401         On MS-Windows use ansi code-page for default coding-systems.
9402         Set up paper sizes for Windows 3 letter languages.
9404         * international/code-pages.el (cp932, cp936, cp949, cp950):
9405         Add aliases.  Also add cp125* if not already defined.
9407 2004-05-09  Juanma Barranquero  <lektu@terra.es>
9409         * help-fns.el (help-highlight-arguments): Don't try to highlight
9410         missing or autoloaded arglists.  Accept structured arguments, like
9411         the first ones of `do' and `flet'.
9413         * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
9414         (cvs-get-marked): Remove redundant arglist info.
9416         * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
9417         Don't use CL-style default args.
9419 2004-05-08  Andreas Schwab  <schwab@suse.de>
9421         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
9423         * international/subst-ksc.el: Fix references to utf-translate-cjk
9424         into utf-translate-cjk-mode.
9425         * international/subst-big5.el: Likewise.
9426         * international/subst-gb2312.el: Likewise.
9427         * international/subst-jis.el: Likewise.
9428         * international/utf-16.el: Likewise.
9429         * international/utf-8.el: Likewise.
9431 2004-05-08  John Wiegley  <johnw@newartisans.com>
9433         * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
9434         "virtual buffers" (off by default), which makes it possible to
9435         switch to the "virtual" buffers of recently visited files.  When a
9436         buffer name search fails, and this option is on, iswitchb will
9437         look at the list of recently visited files, and permit matching
9438         against those names.  When the user hits RET on a match, it will
9439         revisit that file.
9440         (iswitchb-read-buffer): Add two optional arguments, which makes
9441         isearchb.el possible.
9442         (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
9443         (iswitchb-next-match): Add support for virtual buffers.
9445         * isearchb.el: This module extends iswitchb to provide "as you
9446         type" buffer selection.
9448         * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
9449         Ignore the read-only property when flyspell highlighting is on.
9450         Not ignoring it leads to a series of confusing errors.
9451         (flyspell-highlight-duplicate-region): Ignore read-only, as above,
9452         but also make sure to call flyspell-incorrect-hook.
9453         (flyspell-maybe-correct-transposition): Perform transposition test
9454         by bit twiddling a string, rather than using a temp buffer.
9455         (flyspell-maybe-correct-doubling): Use a string rather than a temp
9456         buffer.  This is also the original version of the code, which
9457         could not be checked in before due to a previous lack of
9458         assignment papers.  This version has seen heavy usage on my system
9459         for several years now.
9461         * calendar/cal-bahai.el: New file, which adds support for the
9462         Baha'i calendar to Emacs.  This calendar is based on a solar year
9463         of 19 months of 19 days, with 4 intercalary days.  Each year
9464         begins on March 21, with the calendar starting in 1844.
9466         * calendar/cal-menu.el, calendar/calendar.el,
9467         calendar/diary-lib.el, calendar/holidays.el: Added support for
9468         using cal-bahai.el.
9470         * eshell/em-glob.el (eshell-glob-initialize): Move initialization
9471         of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
9472         function can be used outside of eshell buffers.
9473         (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
9475 2004-05-08  Juanma Barranquero  <lektu@terra.es>
9477         * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
9478         word constituent so FOO-ARG is not recognized as an arg.
9479         (help-highlight-arguments): Don't skip lists in mandatory arguments.
9481         * simple.el (next-error): Fix typo in docstring.
9482         (open-line): Make argument names match their use in docstring.
9483         (split-line): Fix docstring.
9485         * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
9486         usable by `describe-function'.
9487         (gensym, gentemp, typep, ignore-errors): Make argument names match
9488         their use in docstring.
9490         * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
9491         argument to `help-setup-xref'.
9493 2004-05-07  Kai Grossjohann  <kai@emptydomain.de>
9495         Version 2.0.40 of Tramp released.
9497         * net/tramp.el (tramp-completion-mode, tramp-md5-function):
9498         Use symbol-function to invoke functions only known on some Emacs
9499         flavors.  This avoids byte-compiler warnings.  Reported by Kevin
9500         Scaldeferri <kevin@scaldeferri.com>.
9501         (tramp-do-copy-or-rename-file-via-buffer): Rename from
9502         tramp-do-copy-or-rename-via-buffer (without `file'), to make it
9503         consistent with the other tramp-do-* functions.
9504         (tramp-do-copy-or-rename-file): Calls adjusted.
9505         (tramp-process-initial-commands): Avoid liveness check on shell --
9506         we know that it must be alive since we're opening a connection at
9507         this moment.
9508         (tramp-last-cmd): New internal variable.
9509         (tramp-process-echoes): New tunable.
9510         (tramp-send-command): Set tramp-last-cmd.
9511         (tramp-wait-for-output): Delete echo, if applicable.
9512         (tramp-read-passwd): Construct the key for the password cache in a
9513         way that works for multi methods, too.
9514         (tramp-bug): Add backup-directory-alist and
9515         bkup-backup-directory-info to bug reports, with Tramp counterparts.
9517 2004-05-07  Michael Albinus  <michael.albinus@gmx.de>
9519         * net/tramp*.el: Suppress byte-compiler warnings where possible.
9521         * net/tramp.el (tramp-out-of-band-prompt-regexp)
9522         (tramp-actions-copy-out-of-band): New defcustoms.
9523         (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
9524         used instead of a synchronous one.  Allows password entering.
9525         (tramp-action-out-of-band): New defun.
9526         (tramp-open-connection-rsh, tramp-method-out-of-band-p):
9527         Remove restriction with password from doc string.
9528         (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
9529         `tramp-out-of-band-prompt-regexp',
9530         `tramp-actions-copy-out-of-band', `password-cache' and
9531         `password-cache-expiry'.
9532         (toplevel): Remove todo item wrt ssh-agent.  Obsolete due to
9533         password caching.
9534         (tramp-touch): FILE can be a local file, too.
9535         (TODO): Remove items done.
9536         (tramp-handle-insert-directory): Properly quote file name also if
9537         not full-directory-p.  Handle wildcard case.  Reported by Andreas
9538         Schwab <schwab@suse.de>.
9539         (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
9540         new file.
9541         (tramp-handle-file-local-copy, tramp-handle-write-region):
9542         The permissions of the temporary file are set if filename exists.
9543         Reported by Ted Stern <stern@cray.com>.
9544         (tramp-backup-directory-alist)
9545         (tramp-bkup-backup-directory-info): New defcustoms.
9546         (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
9547         (tramp-handle-find-backup-file-name): New function.
9548         Implements Tramp's find-backup-file-name.
9550         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
9551         for `find-backup-file-name'.
9553         * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
9554         ("file" -> "filename").  Reported by Kim F. Storm <storm@cua.dk>.
9556 2004-05-07  Lars Hansen  <larsh@math.ku.dk>
9558         * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
9560 2004-05-07  Juanma Barranquero  <lektu@terra.es>
9562         * subr.el (lambda): Add arglist description to docstring.
9563         (declare): Fix typo in docstring.
9564         (open-network-stream): Fix docstring.
9565         (process-kill-without-query): Fix docstring and add obsolescence info.
9566         (last, butlast, nbutlast): Make arguments match their use in docstring.
9567         (insert-buffer-substring-no-properties): Likewise.
9568         (insert-buffer-substring-as-yank): Likewise.
9569         (split-string): Fix docstring.
9571         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
9572         Make argument names match their use in docstring.
9574         * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
9576 2004-05-06  Nick Roberts  <nickrob@gnu.org>
9578         * progmodes/gdb-ui.el: Improve/extend documentation strings.
9579         Fit first sentence on one line for apropos-command.
9581 2004-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9583         Changes largely merged in from Dave Love's code.
9584         * progmodes/python.el: Doc fixes.
9585         (python-mode-map): Add python-complete-symbol.
9586         (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
9587         (python-comment-indent, python-complete-symbol)
9588         (python-symbol-completions, python-partial-symbol)
9589         (python-try-complete): New.
9590         (python-indent-line): Remove optional arg.  Use python-block-end-p.
9591         (python-check): Bind compilation-error-regexp-alist.
9592         (inferior-python-mode): Use rx.  Move keybindings to top level.
9593         Set comint-input-filter.
9594         (python-preoutput-filter): Use rx.
9595         (python-input-filter): Re-introduce.
9596         (python-proc): Start new process if necessary.
9597         Check python-buffer non-nil.
9598         (view-return-to-alist): Defvar.
9599         (python-send-receive): New.
9600         (python-eldoc-function): Use it.
9601         (python-mode-running): Don't defvar.
9602         (python-mode): Set comment-indent-function.
9603         Maybe update hippie-expand-try-functions-list.
9604         (python-indentation-levels): Initialize differently.
9605         (python-block-end-p): New.
9606         (python-indent-line): Use it.
9607         (python-compilation-regexp-alist): Augment.
9608         (run-python): Import `emacs' module to Python rather than loading
9609         code directly.  Set python-buffer differently.
9610         (python-send-region): Use emacs.eexecfile.  Fix orig-start calculation.
9611         Use python-proc.
9612         (python-send-command): Go to end of comint buffer.
9613         (python-load-file): Use python-proc, emacs.eimport.
9614         (python-describe-symbol): Simplify interactive form.
9615         Use emacs.help.  Do use temp-buffer-show-hook.
9616         Call print-help-return-message.
9617         (hippie-exp): Require when compiling.
9618         (python-preoutput-continuation): Use rx.
9620         * diff-mode.el (diff-make-unified): Fix regexp.
9622 2004-05-06  Romain Francoise  <romain@orebokech.com>  (tiny change)
9624         * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
9625         filter groups from the buffer when rebuilding the Ibuffer buffer
9626         and `ibuffer-show-empty-filter-groups' is nil.
9628 2004-05-06  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
9630         * ps-print.el (ps-print-quote): Call ps-value-string.
9631         (ps-setup): Call ps-comment-string.
9632         (ps-value-string, ps-comment-string): New funs.
9634 2004-05-06  Juanma Barranquero  <lektu@terra.es>
9636         * ehelp.el (electric-help-command-loop): Check whether the last
9637         character is visible, not (point-max).
9639         * help-fns.el (help-argument-name): Default to bold; don't inherit
9640         from font-lock-variable-name-face.
9641         (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
9643 2004-05-05  Kenichi Handa  <handa@m17n.org>
9645         * descr-text.el (describe-char): Copy the character with text
9646         properties and overlays into the first line, and call
9647         describe-text-properties on it.
9649 2004-05-05  Stephen Eglen  <stephen@anc.ed.ac.uk>
9651         * iswitchb.el (iswitchb-global-map): Fix typo.
9652         Remove unwanted ###autoloads from source file.
9654 2004-05-05  Lars Hansen  <larsh@math.ku.dk>
9656         * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
9657         in run-hooks.  Use substitute-command-keys in message.
9658         (wdired-abort-changes): Add message.
9660 2004-05-03  Michael Mauger  <mmaug@yahoo.com>
9662         * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
9663         (sql-emacs20-p): Remove.
9664         (sql-mode-syntax-table): Use shared GNU EMacs/XEmacs syntax.
9665         (sql-builtin-face, sql-doc-face): Remove.
9666         (sql-mode-ansi-font-lock-keywords)
9667         (sql-mode-oracle-font-lock-keywords)
9668         (sql-mode-postgres-font-lock-keywords)
9669         (sql-mode-linter-font-lock-keywords)
9670         (sql-mode-ms-font-lock-keywords)
9671         (sql-mode-mysql-font-lock-keywords): Use standard fonts.
9672         (sql-product-font-lock): Fix font-lock reset when font rules change.
9673         (sql-highlight-product): Remove incorrect font-lock reset logic.
9675 2004-05-04  Jonathan Yavner  <jyavner@member.fsf.org>
9677         * ses.el (ses-set-parameter): Fix typo.
9679 2004-05-04  Kim F. Storm  <storm@cua.dk>
9681         * ido.el (ido-read-internal): Fix call to read-file-name for edit.
9682         Must expand directory for completion to work; and don't mess with
9683         process-environment.
9684         (ido-read-file-name): If command has ido property, don't use ido
9685         if value is ignore, or read as directory if value is dir.
9686         Set ido ignore property for dired-do-rename command.
9688 2004-05-04  Juanma Barranquero  <lektu@terra.es>
9690         * ehelp.el (electric-help-command-loop, electric-help-undefined)
9691         (electric-help-help): Check against unmapped commands.
9693         * help-fns.el (help-argument-name): New face, inheriting from
9694         font-lock-variable-name-face, to highlight function arguments in
9695         `describe-function' and `describe-key'.
9696         (help-do-arg-highlight): Auxiliary function to highlight a given
9697         list of arguments in a string.
9698         (help-highlight-arguments): Highlight the function arguments and
9699         all uses of them in the docstring.
9700         (describe-function-1): Use it.  Do docstring output via `insert',
9701         not 'princ', so text attributes are preserved.
9703         * winner.el (winner-mode-map): Move `winner-undo' and
9704         `winner-redo' to C-c <left> and C-c <right>, respectively (the
9705         previous bindings conflict with `prev-buffer', `next-buffer').
9707 2004-05-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9709         * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
9710         (bibtex-entry-update): New command bound to C-c C-u.
9711         (bibtex-text-in-string): Fix regexp.
9712         (bibtex-assoc-of-regexp): Remove.
9713         (bibtex-progress-message): Fix docstring.
9714         (bibtex-inside-field): Use if.
9715         (bibtex-assoc-regexp): New function.
9716         (bibtex-format-entry): Make code more robust so that it formats
9717         also old entries.
9718         (bibtex-autokey-demangle-title): Merge with obsolete function
9719         bibtex-assoc-of-regexp.
9720         (bibtex-field-list): New function.
9721         (bibtex-entry): Use bibtex-field-list.
9722         (bibtex-parse-entry): Fix docstring.
9723         (bibtex-print-help-message): Use bibtex-field-list.
9724         (bibtex-make-field): Use bibtex-field-list.
9725         (bibtex-entry-index): Bugfix.  Return crossref key if required.
9726         (bibtex-lessp): Fix docstring.
9728 2004-05-03  Luc Teirlinck  <teirllm@auburn.edu>
9730         * select.el (xselect-convert-to-string): Move comment to intended line.
9732 2004-05-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9734         * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
9735         cut/copy/paste in case menu-bar-enable-clipboard is in effect.
9737 2004-05-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9739         * term/x-win.el (x-clipboard-yank): Don't exit on error from
9740         x-get-selection.
9742 2004-05-03  Jason Rumney  <jasonr@gnu.org>
9744         * makefile.nt: Remove.
9746 2004-05-03  Kim F. Storm  <storm@cua.dk>
9748         * emulation/cua-base.el (cua--update-indications): Fix last change.
9749         (cua-mode): Deactivate mark when cua-mode is enabled.
9751 2004-05-02  Luc Teirlinck  <teirllm@auburn.edu>
9753         * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
9755 2004-05-03  Nick Roberts  <nickrob@gnu.org>
9757         * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
9758         (gdb-display-source-buffer, gdb-put-breakpoint-icon)
9759         (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
9760         window over visible frames.
9761         (gdb-goto-breakpoint): Make buffer display file at breakpoint.
9763 2004-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9765         * progmodes/compile.el (compilation-gcpro): New var.
9766         (compilation-fake-loc): Use it.
9767         (compilation-forget-errors): Reset it.
9769 2004-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
9771         * diff-mode.el (diff-header-face, diff-file-header-face):
9772         Use min-colors.
9774 2004-05-02  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9776         * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
9777         (bibtex-clean-entry): Disentangle code.
9778         (bibtex-realign): New function.
9779         (bibtex-reformat): Use mapcar and bibtex-realign.  Do not use
9780         bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
9781         Remove undocumented optional arg called-by-convert-alien.
9782         (bibtex-convert-alien): Use bibtex-realign.  Use bibtex-reformat
9783         for sorting instead of bibtex-sort-buffer.
9785 2004-05-02  Eli Zaretskii  <eliz@gnu.org>
9787         * progmodes/compile.el (compilation-start): In the
9788         no-async-subprocesses branch, call sit-for to give redisplay a
9789         chance to show the updated process status in the mode line, and
9790         fontify the buffer explicitly after the process exits.
9792 2004-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9794         * progmodes/python.el (python-compilation-line-number): Remove.
9795         (python-compilation-regexp-alist): Don't use it any more.
9796         (python-orig-start, python-input-filter): Remove.
9797         (inferior-python-mode): Don't set up comint-input-filter-functions.
9798         (python-send-region): Use compilation-fake-loc.
9800         * progmodes/compile.el (compilation-messages-start): New var.
9801         (compilation-mode): Don't setup next-error-function here.
9802         (compilation-setup): Set it up here instead (for minor modes as well).
9803         Make compilation-messages-start buffer local.
9804         (compilation-next-error-function): Use it.
9805         (compilation-forget-errors): Set compilation-messages-start.
9807 2004-05-01  Luc Teirlinck  <teirllm@auburn.edu>
9809         * ielm.el (ielm-prompt-read-only): Update docstring.
9811         * comint.el (comint-prompt-read-only): Update docstring.
9812         (comint-update-fence, comint-kill-whole-line)
9813         (comint-kill-region): New functions.
9815         * simple.el (kill-whole-line): Use "p" instead of "P" in
9816         interactive form.
9818 2004-05-01  Juanma Barranquero  <lektu@terra.es>
9820         * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
9821         format arglist so default values in CL-style argument lists are
9822         correctly shown.
9824 2004-05-01  Jason Rumney  <jasonr@gnu.org>
9826         * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
9828 2004-05-01  Kenichi Handa  <handa@m17n.org>
9830         * international/titdic-cnv.el (miscdic-convert): Don't generate a
9831         quail file if it is up to date.
9833 2004-04-30  Juri Linkov  <juri@jurta.org>
9835         * cus-edit.el (custom-mode-map):
9836         Add key binding `C-x C-s' to `Custom-save'.
9838         * outline.el (outline-blank-line): New var.
9839         (outline-next-preface, outline-show-heading)
9840         (outline-end-of-subtree): Use it.
9842         * dired-aux.el (dired-touch-initial): New fun.
9843         (dired-do-chxxx): Call it for op-symbol `touch'.
9844         (dired-diff): Use `dired-dwim-target-directory'
9845         if current dired buffer has no buffer mark.
9847         * bindings.el (propertized-buffer-identification):
9848         Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
9849         Add C-M-arrow keys for consistency.
9851         * files.el (confirm-kill-emacs):
9852         Change group from top-level `emacs' to `convenience'.
9854         * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
9855         Push mark on the first call of successive command calls.
9856         (insert-pair): New fun created from `insert-parentheses' with
9857         `open' and `close' arguments added.  Enclose active regions
9858         in paired characters.  Compare adjacent characters syntax with
9859         inserted characters syntax before inserting a space.
9860         (insert-parentheses): Call `insert-pair' with ?\( ?\).
9862         * delsel.el: Don't put `delete-selection' property
9863         on `insert-parentheses' symbol to take advantage of
9864         region handling in `insert-pair' function.
9865         Suggested by Stephan Stahl <stahl@eos.franken.de>.
9867 2004-04-30  Kim F. Storm  <storm@cua.dk>
9869         * emulation/cua-base.el: Add support for changing cursor types;
9870         based on patch from Michael Mauger.
9871         (cua-normal-cursor-color, cua-read-only-cursor-color)
9872         (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
9873         Customization cursor type and/or cursor color.
9874         (cua--update-indications): Handle cursor type changes.
9875         (cua-mode): Update cursor indications if enabled.
9877         * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
9879         * mouse.el (mouse-drag-copy-region): New defcustom.
9880         (mouse-set-region, mouse-drag-region-1): Use it.
9882         * simple.el (kill-ring-save): If region face background color is
9883         unspecified (if no highlighting), show extent of fully visible
9884         region even if transient-mark-mode is enabled.
9886         * emulation/cua-base.el (cua--standard-movement-commands):
9887         Add cua-scroll-up and cua-scroll-down.
9888         (cua-scroll-up, cua-scroll-down): New commands.
9889         (cua--init-keymaps): Remap scroll-up and scroll-down.
9891         * emulation/cua-rect.el (cua--convert-rectangle-as):
9892         New defmacro.
9893         (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
9894         (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
9895         New commands (suggested by Jordan Breeding).
9897 2004-04-30  Juanma Barranquero  <lektu@terra.es>
9899         * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
9901 2004-04-30  Mario Lang  <mlang@delysid.org>
9903         * diff.el (diff-switches): Fix typo in docstring.
9905 2004-04-30  Alex Schroeder  <alex@gnu.org>
9907         * xml.el (xml-debug-print-internal): Don't add newline and
9908         indentation to text nodes and write empty elements as empty tags
9909         instead of opening and closing tags.
9910         (xml-debug-print): Take optional indent-string argument.
9911         (xml-print): Alias for xml-debug-print.
9913 2004-04-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
9915         * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
9916         than duplicate call to `line-beginning-position'.
9918         * progmodes/f90.el (f90-get-present-comment-type):
9919         Return whitespace, as well as comment chars, for consistent filling
9920         of comment blocks.  Use `match-string-no-properties'.
9921         (f90-break-line): Trim trailing whitespace when filling comments.
9923 2004-04-30  Dave Love  <fx@gnu.org>
9925         * calendar/diary-lib.el (diary-outlook-formats): New variable.
9926         (diary-from-outlook-internal, diary-from-outlook)
9927         (diary-from-outlook-gnus, diary-from-outlook-rmail):
9928         New functions to import diary entries from Outlook-format
9929         appointments in mail messages.
9931 2004-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9933         * progmodes/python.el (python-send-command): New fun.
9934         (python-send-region, python-load-file): Use it.
9936         * progmodes/compile.el (compilation-last-buffer): Add var alias.
9938         * help-fns.el (help-C-file-name): Use new subr-name.
9939         Prepend `src/' to the file name.
9940         (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
9941         (describe-function-1, describe-variable): Only find a C source file
9942         name if DOC is already loaded.
9944         * help-mode.el (help-function-def, help-variable-def):
9945         Use the new find-function-search-for-symbol functionality.
9946         Allow FILE to be `C-source'.
9948         * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
9949         (find-function-C-source): New fun.
9950         (find-function-search-for-symbol): Use it.
9952 2004-03-29  Michael Mauger  <mmaug@yahoo.com>
9954         * progmodes/sql.el (sql-product-alist): Rename variable
9955         `sql-product-support'.  Add Postgres login parameters.
9956         (sql-set-product, sql-product-feature): Update with renamed variable.
9957         (sql-connect-postgres): Add username prompt.
9958         (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
9959         Make patterns less product specific.
9960         (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
9961         (sql-mode-abbrev-table): Modify initialization.
9962         (sql-builtin-face): Add variable.
9963         (sql-keywords-re): Add macro.
9964         (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
9965         (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
9966         (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
9967         (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
9968         (sql-mode-linter-font-lock-keywords)
9969         (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
9970         (sql-mode-sybase-font-lock-keywords)
9971         (sql-mode-informix-font-lock-keywords)
9972         (sql-mode-interbase-font-lock-keywords)
9973         (sql-mode-ingres-font-lock-keywords)
9974         (sql-mode-solid-font-lock-keywords)
9975         (sql-mode-sqlite-font-lock-keywords)
9976         (sql-mode-db2-font-lock-keywords): Default to nil.
9977         (sql-product-font-lock): Always highlight ANSI keywords.
9978         (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
9979         (sql-send-string): Add function.
9981 2004-04-29  Dave Love  <fx@gnu.org>
9983         * progmodes/cfengine.el (cfengine-beginning-of-defun)
9984         (cfengine-end-of-defun): Ensure progress through buffer.
9986         * info-look.el (cfengine-mode): Accept a terminal ().
9988 2004-04-29  Juri Linkov  <juri@jurta.org>
9990         * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
9991         instead of isearch-yank-word-or-char.  Add new key bindings for
9992         isearch-yank-char to \C-f, and isearch-del-char to \C-b.
9993         (isearch-del-char): New fun.
9994         (isearch-forward, isearch-edit-string): Update docstring.
9995         (isearch-yank-char): Doc fix.
9996         (isearch-other-meta-char): Restore point after scrolling.
9998         * progmodes/compile.el (compilation-context-lines): Add nil option
9999         to disable compilation output window scrolling.
10000         (compilation-set-window): Use it.
10002         * outline.el (outline-next-preface, outline-show-heading):
10003         Don't leave unhidden blank line before heading.
10004         (outline-end-of-subtree): Include last newline into subtree.
10005         (hide-entry): Leave point at beginning of heading instead of end.
10006         (outline-up-heading): Push mark for the first call of successive
10007         command calls.
10009 2004-04-28  Luc Teirlinck  <teirllm@auburn.edu>
10011         * comint.el (comint-prompt-read-only): New variable.
10012         (comint-output-filter): Implement it.
10014         * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
10015         (ielm-prompt-internal): New variable.
10016         (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
10017         (ielm-send-input): Delete unused variable `buf'.
10018         (ielm-eval-input): Use `ielm-prompt-internal'.
10019         (inferior-emacs-lisp-mode): Use new variables
10020         `comint-prompt-read-only' and `ielm-prompt-internal'.
10021         Get rid of obsolete variable `directory-sep-char'.
10022         (ielm): Use `zerop'.
10024 2004-04-29  John Paul Wallington  <jpw@gnu.org>
10026         * thumbs.el (toplevel): Require cl at compile time.
10027         Remove conditional definitions of `ignore-errors' and `caddar'
10028         because they occur at run time.
10030 2004-04-28  Nick Roberts  <nickrob@gnu.org>
10032         * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
10033         (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
10034         (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
10035         (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
10037         * progmodes/gud.el (gud-common-init): Throw an error if program is
10038         already running under gdb.
10040 2004-04-28  John Paul Wallington  <jpw@gnu.org>
10042         * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
10043         (thumbs-show-image-num): Move assignment of
10044         `thumbs-current-image-filename' within scope of `i'.
10045         (thumbs-emboss-image): Don't use `evenp'.
10047 2004-04-28  Richard M. Stallman  <rms@gnu.org>
10049         * progmodes/compile.el (compilation-context-lines): Default now 0.
10051 2004-04-28  Juanma Barranquero  <lektu@terra.es>
10053         Use `time-less-p' from calendar/time-date.el instead of defining
10054         custom versions of it.
10056         * pcomplete.el (pcomplete-time-less-p): Remove.
10058         * thumbs.el (time-less-p): Remove.
10060         * calendar/timeclock.el (timeclock-time-less-p): Remove.
10061         (timeclock-generate-report): Use `time-less-p'.
10063         * emacs-lisp/autoload.el (autoload-before-p): Remove.
10064         (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
10066 2004-04-28  Masatake YAMATO  <jet@gyve.org>
10068         * subr.el (remove-overlays): Make arguments optional.
10070         * wid-edit.el (widget-specify-button): Put evaporate to the
10071         overlay for sample.
10072         (widget-specify-sample): Put evaporate to the overlay for sample.
10073         (widget-specify-doc): Put evaporate to the overlay for documentation.
10075 2004-04-27  Jesper Harder  <harder@ifa.au.dk>
10077         * info.el (info-apropos): Make it an index node.  Align node names
10078         like makeinfo.
10080 2004-04-27  Eli Zaretskii  <eliz@gnu.org>
10082         * net/browse-url.el (browse-url-netscape-sentinel)
10083         (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
10084         (browse-url-epiphany-sentinel, browse-url-mosaic):
10085         Use browse-url-*-program instead of a literal program name.
10087 2004-04-27  Kevin Ryde  <user42@zip.com.au>
10089         * eshell/em-alias.el:
10090         * eshell/em-dirs.el:
10091         * eshell/em-hist.el:
10092         * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
10093         features when M-x customize-group loads modules before the main
10094         eshell.el.
10096 2004-04-27  Matthew Mundell  <matt@mundell.ukfsn.org>
10098         * subr.el (momentary-string-display): Support EXIT-CHAR that is
10099         either a character representation of an event or an event
10100         description list.
10102         * type-break.el: Capitalise Emacs and Lisp.
10103         (type-break-good-break-interval, type-break-demo-boring-stats)
10104         (type-break-terse-messages, type-break-file-name): New defcustoms.
10105         (type-break-post-command-hook)
10106         (type-break-warning-countdown-string): Quote variable names in doc.
10107         (type-break-interval-start, type-break-auto-save-file-name): New vars.
10108         (type-break-mode): Document type-break-good-break-interval and the
10109         "session" file.  Schedule break according to the session file.
10110         Kill session file buffer on exit.  Organise for save-some-buffers
10111         to always save the session file.
10112         (type-break-mode-line-message-mode, type-break-query-mode):
10113         Uppercase arguments.
10114         (type-break-file-time, type-break-file-keystroke-count, timep)
10115         (type-break-choose-file, type-break-get-previous-time)
10116         (type-break-get-previous-count): New defuns.
10117         (type-break): Avoid break querying after a completed break in the
10118         case where the query was initiated during user invocation of the
10119         break.  Optional terse messages.
10120         Use type-break-good-break-interval if type-break-good-rest-interval is
10121         nil.  File the break time.
10122         (type-break-schedule): New optional args for overriding the use of
10123         the current time.
10124         (type-break-cancel-time-warning-schedule): Avoid leftover warnings
10125         after a break.
10126         (type-break-check): File the keystroke count.
10127         (type-break-do-query): Prevent a second query when the break is
10128         interrupted.  Optional terse message.
10129         (type-break-keystroke-reset): Record the start of a typing interval.
10130         (type-break-demo-boring): Optional terse messages.  Display word
10131         per minute and keystroke counts according to
10132         type-break-demo-boring-stats.
10134 2004-04-27  Daniel M Coffman  <coffmand@us.ibm.com>  (tiny change)
10136         * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
10137         directories, make sure they exist under archive-tmpdir.
10139 2004-04-27  Juri Linkov  <juri@jurta.org>
10141         * help.el (view-emacs-news): With argument, display info for the
10142         selected version by finding it among different NEWS files, and
10143         narrowing the buffer to the selected version.
10145         * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
10146         same-window-buffer-names.
10147         (info): New arg `buffer'.  Use it.  Doc fix.  Read file name for
10148         non-numeric prefix argument, append the number to the buffer name
10149         for numeric prefix argument.
10150         (info-other-window): Bind same-window-regexps to nil.
10151         (Info-reference-name): Rename to Info-point-loc.
10152         (Info-find-node-2): Call forward-line for numeric Info-point-loc,
10153         and Info-find-index-name for stringy Info-point-loc.
10154         (Info-extract-menu-node-name): New arg `index-node'.  Use regexp
10155         without middle `.', but with final `.' and optional line number
10156         for it.  Set Info-point-loc for index nodes.
10157         (Info-index): Remove middle `.' from index entry regexp.
10158         Modify line number regexp.
10159         (Info-index-next): Decrement line number.
10160         (info-apropos): Remove middle `.' from index entry regexp.
10161         Add optional line number regexp at the end.  Add matched value
10162         for line number to the result list and insert it to the buffer.
10163         Replace match-string by match-string-no-properties.
10164         Reorder result list.
10165         (Info-fontify-node): Hide index line numbers.
10166         (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
10167         empty matches.
10168         (Info-follow-reference): Use `str' instead of
10169         Info-following-node-name-re.
10170         (Info-toc): Use full file names.  Set Info-current-node to "Top".
10171         (Info-fontify-node): Compare file names without directory name.
10172         (Info-try-follow-nearest-node): Don't set Info-reference-name.
10173         Set second arg of Info-extract-menu-node-name for index nodes.
10174         (info-xref-visited): Use magenta3 instead of magenta4.
10175         (Info-mode): Add info-apropos to docstring.
10177         * log-view.el (log-view-diff): Replace interactive code "r"
10178         by a list to allow to call it even if region is not active.
10180         * paren.el (show-paren-highlight-openparen): New var.
10181         (show-paren-function): Turn on openparen highlighting when
10182         matching forward if show-paren-highlight-openparen is non-nil.
10184         * simple.el (kill-ring-save): Use blink-matching-delay instead of
10185         the constant value 1.
10186         (completions-common-part): Expand docstring.
10188         * textmodes/picture.el (picture-mode-map): Add arrow keys.
10190 2004-04-27  Kim F. Storm  <storm@cua.dk>
10192         * image.el (insert-sliced-image): Use line-height instead of
10193         line-spacing property on newline.
10195 2004-04-26  Lars Hansen  <larsh@math.ku.dk>
10197         * desktop.el (desktop-buffer-misc-data-function): Rename to
10198         desktop-save-buffer and change docstring.
10199         (desktop-buffer-modes-to-save): Delete.
10200         (desktop-save-buffer-p): Use desktop-save-buffer instead of
10201         desktop-buffer-modes-to-save.
10202         (desktop-save): Rename desktop-buffer-misc-data-function to
10203         desktop-save-buffer and allow non-function value.
10204         (desktop-missing-file-warning): Correct docstring.
10206         * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
10207         to desktop-save-buffer.
10209         * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
10210         desktop-save-buffer.
10212         * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
10214         * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
10216 2004-04-26  Eli Zaretskii  <eliz@gnu.org>
10218         * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
10220 2004-04-25  Luc Teirlinck  <teirllm@auburn.edu>
10222         * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
10223         (ielm): Only go to the end of the buffer when starting a new process.
10225 2004-04-25  Juanma Barranquero  <lektu@terra.es>
10227         * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
10228         mode line.  Bind `inhibit-read-only' to t before modifying
10229         properties of text in the buffer.
10230         (ielm): Force point to the end of buffer, even when running ielm
10231         from inside itself.
10233 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
10235         * info.el (info-apropos): Reset Info-complete-cache.
10237 2004-04-25  Daniel Pfeiffer  <occitan@esperanto.org>
10239         * progmodes/compile.el (compilation-error-regexp-alist-alist):
10240         Also recognize severe Irix et al. messages.
10241         (compilation-normalize-filename, compile-abbreviate-directory):
10242         Delete functions.
10243         (compilation-get-file-structure): New function inherits
10244         functionality of the two preceding ones.
10245         (compilation-internal-error-properties, compilation-fake-loc):
10246         Use it so that different paths to the same file share the same
10247         markers.  Also optimize finding adjacent marker slightly.
10249 2004-04-25  Kim F. Storm  <storm@cua.dk>
10251         * image.el (insert-sliced-image): Add line-spacing t property
10252         to newlines separating image lines.
10254 2004-04-24  Luc Teirlinck  <teirllm@auburn.edu>
10256         * comint.el (comint-delete-output): Bind inhibit-read-only to t.
10258         * ielm.el (ielm-prompt-read-only): New user option.
10259         (ielm-prompt): Expand docstring to describe new behavior.
10260         (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
10261         mention it in the docstring.
10263 2004-04-24  Andreas Schwab  <schwab@suse.de>
10265         * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
10267         * diff.el (diff): Set default-directory in diff buffer.
10269 2004-04-24  Eli Zaretskii  <eliz@gnu.org>
10271         * mail/sendmail.el (mail-bury): Don't delete the frame where the
10272         mail was being composed if the terminal cannot display more than
10273         one frame; instead, switch to previous frame.
10275         * mail/rmail.el (rmail-mail-new-frame): Doc fix.
10276         (rmail-start-mail): Support rmail-mail-new-frame even on
10277         terminals that can display only one frame at a time.
10279 2004-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10281         * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
10282         (checkdoc-output-font-lock-keywords): Remove error regexp.
10283         (checkdoc-output-mode-map): Remove.
10284         (checkdoc-output-mode): Derive from compilation-mode.
10285         (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
10287         * dired.el (dired-mode-map): Add a menu entry for wdired.
10289         * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
10290         (rx-bracket, rx-check-any, rx-any): Clean up name space.
10292         * wdired.el: (wdired-mode-map): Move init into declaration.
10293         Fix `return' binding.
10294         (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
10295         Use force-mode-line-update.
10296         (wdired-get-filename): Use `unless'.
10297         (wdired-preprocess-files): Don't assume names have no \n and use / for
10298         dir separator.
10299         (wdired-normalize-filename): Use replace-regexp-in-string.
10300         (wdired-load-hooks): Remove.
10301         (wdired-mode-hooks): Rename to wdired-mode-hook.
10303         * info-look.el: Add support for cfengine-mode.
10304         (info-lookup-setup-mode): Use dolist.
10306 2004-04-23  Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba  <juan-leon.lahoz@tecsidel.es>
10308         * wdired.el: New file.
10310 2004-04-23  Juanma Barranquero  <lektu@terra.es>
10312         * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
10314         * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
10315         (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
10316         (pcomplete--help, pcomplete--here): Doc fixes.
10318 2004-04-23  Andre Spiegel  <spiegel@gnu.org>
10320         * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
10321         handles wrong-number-of-arguments in backend call.
10323         * vc.el (vc-print-log): Likewise.
10325 2004-04-20  Dave Love  <fx@gnu.org>
10327         * emacs-lisp/rx.el: Doc fixes.
10328         (rx-constituents): Add/extend many forms.
10329         (rx-check): Check form is a list.
10330         (bracket): Defvar.
10331         (rx-check-any, rx-any, rx-check-not): Modify.
10332         (rx-not): Simplify.
10333         (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
10334         (rx-kleene): Use rx-trans-forms.
10335         (rx-quote-for-set): Delete.
10336         (rx): Allow multiple args.
10338 2004-04-23  Kenichi Handa  <handa@m17n.org>
10340         * international/mule-util.el (char-displayable-p): Simplify by
10341         using internal-char-font.
10343 2004-04-23  Juanma Barranquero  <lektu@terra.es>
10345         * makefile.w32-in: Add "-*- makefile -*-" mode tag.
10347 2004-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10349         * diff-mode.el (diff-next-error): New fun.
10350         (diff-mode): Use it.
10352         * simple.el (next-error): Change arg name.
10353         Add support for the documented C-u C-x ` usage.
10355         * frame.el (special-display-popup-frame, next-multiframe-window)
10356         (previous-multiframe-window): Only consider frames on same display.
10358 2004-04-22  Lars Hansen  <larsh@math.ku.dk>
10360         * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
10361         * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
10363 2004-04-22  Kim F. Storm  <storm@cua.dk>
10365         * net/telnet.el (telnet): Add optional port arg.
10367 2004-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10369         * progmodes/compile.el (compilation-mode-font-lock-keywords):
10370         Minor sanity check on the `hyperlink' slot.
10372         * Makefile.in (recompile): Compile new files.
10374         * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
10375         Add byte-recompile-directory's optional `arg'.
10377         * cvs-status.el (cvs-tree-use-charset): New var.
10378         (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
10379         (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
10380         (cvs-status-cvstrees): Use it.
10382         * emacs-lisp/checkdoc.el (checkdoc-output-mode):
10383         Make it a normal major mode.
10384         (checkdoc-buffer-label): Make sure the file name is meaningful.
10385         (checkdoc-output-to-error-buffer): Remove.
10386         (checkdoc-error, checkdoc-start-section): Rewrite.
10388         * info.el (info-node, info-menu-5, info-xref, info-header-node)
10389         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
10390         (Info-title-4-face): Use new syntax.
10391         (info-xref-visited): Inherit from info-xref.
10393         * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
10395 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
10397         * simple.el (next-error-last-buffer, next-error-function):
10398         New variables for the next-error framework.
10399         (next-error-buffer-p): New function.
10400         (next-error-find-buffer): Generalize compilation-find-buffer.
10401         (next-error, previous-error, first-error, next-error-no-select)
10402         (previous-error-no-select): Move from compile.el.
10404         * replace.el (occur-next-error, occur-1): Hook into the next-error
10405         framework.
10407         * progmodes/compile.el (compilation-start):
10408         Set next-error-last-buffer so next-error knows where to jump.
10409         (compilation-setup): Set the buffer-local variable
10410         next-error-function to 'compilation-next-error-function.
10411         (compilation-buffer-p, compilation-buffer-internal-p): Use an
10412         alternate way to find if a buffer is a compilation buffer, for
10413         next-error convenience.
10414         (next-error-no-select, previous-error-no-select, next-error)
10415         (previous-error, first-error): Move to simple.el.
10416         (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
10417         (compilation-last-buffer): Remove.
10418         (compilation-start, compilation-next-error, compilation-setup)
10419         (compilation-next-error-function, compilation-find-buffer):
10420         Remove compilation-last-buffer use.
10422 2004-04-21  Juanma Barranquero  <lektu@terra.es>
10424         * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
10425         (font-lock-warning-face): Fix spacing.
10427         * makefile.w32-in (WINS): Add url/ directory.
10429 2004-04-21  Lars Hansen  <larsh@math.ku.dk>
10431         * desktop.el (desktop-buffer-mode-handlers): New variable.
10432         Alist of major mode specific functions to restore a desktop buffer.
10433         (desktop-buffer-handlers): Make variable obsolete.
10434         (desktop-create-buffer): Use desktop-buffer-mode-handlers.
10435         Catch errors signaled in handlers.  Update buffer count.
10436         Evaluate desktop-buffer-point.
10437         (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
10438         move to dired.el.
10439         (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
10440         move to info.el.
10441         (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
10442         move to mail/rmail.el.
10443         (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
10444         to mh-e/mh-e.el.
10445         (desktop-buffer-file): Rename to desktop-restore-file-buffer.
10446         On fail, print message (to message buffer) even if
10447         desktop-missing-file-warning is nil.
10448         (desktop-buffer-misc-data-function): New buffer local variable.
10449         Function returning major mode specific data.
10450         (desktop-buffer-misc-functions): Make variable obsolete.
10451         (desktop-save): Use desktop-buffer-misc-data-function.
10452         (desktop-buffer-dired-misc-data): Rename to
10453         dired-desktop-buffer-misc-data and move to dired.el.
10454         (desktop-buffer-info-misc-data): Rename to
10455         Info-desktop-buffer-misc-data and move to info.el.
10456         (desktop-read): Add message about number of buffers restored/failed.
10458         * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
10459         Add parameters.  Pause to display error only when
10460         desktop-missing-file-warning is non-nil.
10461         (dired-desktop-buffer-misc-data): Move from desktop.el.  Add parameter.
10462         (dired-mode): Bind desktop-buffer-misc-data-function.
10464         * info.el (Info-restore-desktop-buffer): Move from desktop.el.
10465         Add Parameters.
10466         (Info-desktop-buffer-misc-data): Move from desktop.el.  Add parameter.
10467         (Info-mode): Bind desktop-buffer-misc-data-function.
10469         * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
10470         Add Parameters.
10472         * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
10473         Add Parameters.
10475 2003-04-21  Paul Pogonyshev  <pogonyshev@gmx.net>
10477         * dabbrev.el (dabbrev--substitute-expansion): Don't lose
10478         the case of letters in case-insensitive expansions when the
10479         abbrev is preceded by characters with letter syntax.
10481 2004-04-21  Richard M. Stallman  <rms@gnu.org>
10483         * progmodes/cperl-mode.el (cperl-putback-char):
10484         Delete Emacs 18 definition.
10486         * international/mule.el (ctext-post-read-conversion):
10487         Use assoc-string, not assoc-ignore-case.
10489         * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
10491         * emacs-lisp/easymenu.el (easy-menu-add):
10492         Do call x-popup-menu, but only if it's defined.
10494         * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
10496         * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
10497         Handle multiple args: compile like progn.
10499         * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
10500         take all args as &rest arg.
10502         * autoinsert.el (auto-insert-alist): Insert the user's name in
10503         copyright notice, rather than Free Software Foundation.
10505 2004-04-21  Kenichi Handa  <handa@m17n.org>
10507         * descr-text.el (describe-char): Make it work on *Help* buffer.
10509 2004-04-21  Kim F. Storm  <storm@cua.dk>
10511         * image.el (insert-image): Add optional SLICE arg.
10512         (insert-sliced-image): New defun.
10514 2004-04-20  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
10516         * subr.el (read-number): Check whether `default' is nil.
10518 2004-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10520         * progmodes/compile.el (compilation-error-properties):
10521         Split into two.
10522         (compilation-internal-error-properties): New one.
10523         (compilation-compat-error-properties): Use it.  Fix the non-marker case.
10525 2004-04-20  Richard M. Stallman  <rms@gnu.org>
10527         * window.el (split-window-save-restore-data):
10528         Don't update the data if OLD-INFO is nil.
10530         * view.el (view-return-to-alist): Mark it permanent local.
10532         * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
10534         * recentf.el (recentf-save-list): Catch and warn about errors.
10536         * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
10537         so "Buffers" won't be pure.
10539         * help-mode.el (help-mode-finish): Set help-return-alist first
10540         thing, setting only the entry for the selected window.
10542         * help-fns.el (describe-function-1): If many non-control non-meta
10543         keys run the command, don't list all of them.
10545 2004-04-20  Juanma Barranquero  <lektu@terra.es>
10547         * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
10548         arg.  Copied from Andre Spiegel's patch of 2004-03-21.
10550         * calendar/time-date.el (time-to-day-in-year): Fix docstring.
10552 2004-04-20  Kenichi Handa  <handa@m17n.org>
10554         * international/quail.el (quail-lookup-key): New optional arg
10555         NOT-RESET-INDICES.
10556         (quail-get-translations): Call quail-lookup-key with
10557         NOT-RESET-INDICES t.
10558         (quail-completion): Likewise.
10559         (quail-lookup-map-and-concat): Likewise.
10561 2004-04-20  Kenichi Handa  <handa@m17n.org>
10563         * international/quail.el (quail-update-translation): Don't insert
10564         such an unsupported multibyte char in a unibyte buffer.
10566 2004-04-20  Nick Roberts  <nick@nick.uklinux.net>
10568         * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
10569         (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
10570         (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
10571         (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
10572         (gdb-frame-assembler-buffer): Improve behaviour with
10573         multiple frames.
10574         (gdb-display-buffer): Extend search to all visible frames.
10576 2004-04-19  Eli Zaretskii  <eliz@gnu.org>
10578         * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
10579         characters left after base64 decoding.
10580         (rmail-decode-region): Use -dos variety of `coding', to remove any
10581         ^M characters left after qp or base64 decoding.
10583 2004-04-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10585         * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
10586         messages.
10588 2004-04-19  Stephen Eglen  <stephen@gnu.org>
10590         * add-log.el (add-change-log-entry): Update doc string to mention
10591         add-log-full-name and add-log-mailing-address.
10593 2004-04-18  Juri Linkov  <juri@jurta.org>
10595         * info.el (Info-find-file, Info-find-node-2): Add history and toc.
10596         (Info-find-node-2): Simplify error message.
10597         (Info-insert-dir): Use Info-following-node-name.
10598         (Info-goto-node): Remove *info-history* and *info-toc*.
10599         (Info-history): Create a node of the virtual history file.
10600         (Info-toc): Create a node of the virtual toc file.
10601         (Info-insert-toc): New arg `curr-file' for reference file names.
10602         (info-apropos): Remove redundant var binding for temp-file.
10603         (Info-index, Info-index-next, Info-mode): Doc fix.
10604         (Info-goto-emacs-command-node): Don't jump to *info* from
10605         non-*info* Info buffers.
10606         (Info-fontify-node): Don't show the file name of external
10607         references if `Info-hide-note-references' is `hide'.  Don't hide
10608         newlines at the end of paragraphs.
10610         * international/mule-diag.el (list-input-methods):
10611         Fix args to help-xref-button.
10613         * help-fns.el (help-with-tutorial): Call `hack-local-variables'
10614         to put into effect local variables from TUTORIAL files.
10616         * textmodes/paragraphs.el (sentence-end) <function>: New fun
10617         with default value taken from the variable `sentence-end'.
10618         (sentence-end) <defcustom>: Set default to nil.  Doc fix.
10619         Add nil const to :type.
10620         (sentence-end-without-period, sentence-end-double-space)
10621         (sentence-end-without-space): Doc fix.
10623         * textmodes/paragraphs.el (forward-sentence):
10624         * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
10625         (fill-delete-newlines):
10626         * progmodes/cc-cmds.el (c-beginning-of-statement):
10627         Use function `sentence-end' instead of variable `sentence-end'.
10629 2004-04-18  Andreas Schwab  <schwab@suse.de>
10631         * progmodes/compile.el (compilation-start): Set window start to
10632         point-min if compilation-scroll-output is nil.
10634 2004-04-18  John Wiegley  <johnw@newartisans.com>
10636         * iswitchb.el (iswitchb-completions): Remove dependency on cl.
10638 2004-04-18  Nick Roberts  <nick@nick.uklinux.net>
10640         * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
10641         (gdb-info-breakpoints-custom): Revert previous change.
10642         (gdb-view-assembler): Update assembler if necessary.
10643         (gdb-frame-handler): Parse correctly for gdb-current-frame.
10644         (gdb-display-source-buffer): Update properly when both source and
10645         assembler are visible.
10647 2004-04-17  John Wiegley  <johnw@newartisans.com>
10649         * iswitchb.el (iswitchb-max-to-show): Add a new config variable
10650         which limits the number of names shown in the minibuffer.  Off by
10651         default.
10652         (iswitchb-completions): Use `iswitchb-max-to-show'.  This speeds
10653         up iswitchb for users with a multitude of open buffers by showing
10654         only the first and last N/2 buffers in the completion list (which
10655         is enough to aid C-s/C-r, and to know that more characters are
10656         needed to refine the completion list).
10658 2004-04-17  Richard M. Stallman  <rms@gnu.org>
10660         * files.el (locate-file-completion): Handle nil in path-and-suffixes.
10661         (file-truename): Expand all ~ constructs directly.
10662         (insert-directory): Delete any error msg output by the
10663         `insert-directory-program'.
10665         * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
10666         (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
10667         (allout-prior-bindings, allout-added-bindings): Defvars deleted.
10668         (allout-init): Use find-file-hook, not find-file-hooks.
10669         (allout-mode): Eliminate Emacs 18 support.
10670         Use write-contents-functions, not local-write-file-hooks.
10672 2004-04-17  Daniel Pfeiffer  <occitan@esperanto.org>
10674         * progmodes/compile.el (compilation-error-properties): Fix for
10675         adding messages when there are already markers for their file.
10676         (compilation-fake-loc): New function.
10678 2004-04-16  Dave Love  <fx@gnu.org>
10680         * progmodes/python.el (python-compilation-line-number): Fix braindamage.
10681         (python-load-file): Fix python-orig-start setting.
10683         * progmodes/compile.el: Doc fixes.
10684         (compilation-error-regexp-alist-alist)
10685         (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
10686         (compilation-assq): Wrap in eval-when-compile.
10687         (compilation-mode-font-lock-keywords): Don't use list*.
10688         (compilation-start): Avoid warning.
10689         (compilation-compat-error-properties)
10690         (compilation-directory-properties): Add keymap property.
10691         (compilation-parsing-end): Make it a marker for better compatibility.
10693         * progmodes/python.el (python-after-info-look): Use with-no-warnings.
10695 2004-04-16  Mark A. Hershberger  <mah@everybody.org>
10697         * xml.el: Doc fixes.
10698         (xml-get-children): Only looks at sub-tags and ignore strings.
10700         * xml.el (xml-parse-tag): Avoid overwriting node-name.
10702 2004-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10704         * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
10706 2004-04-16  Andre Spiegel  <spiegel@gnu.org>
10708         * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
10710         * vc.el (vc-print-log): Likewise.
10712 2004-04-16  Masatake YAMATO  <jet@gyve.org>
10714         * simple.el (completion-setup-function): Set an initial value
10715         to `element-common-end' before entering loop.  Set a value
10716         to `element-common-end' at the end of loop.
10717         The bug is reported by Juri Linkov <juri@jurta.org> in emacs-devel list.
10718         (completions-common-part): Rename from completion-de-emphasis.
10719         (completions-first-difference): Rename from completion-emphasis.
10720         Suggested by RMS.
10722 2004-04-16  Juanma Barranquero  <lektu@terra.es>
10724         * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
10725         (bookmark-edit-annotation-mode): Add mode name.
10727 2004-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10729         * smerge-mode.el (smerge-match-conflict): Try to do something sensible
10730         for nested conflict markers.
10731         (smerge-find-conflict): Better handle errors in smerge-match-conflict.
10733 2004-04-15  Nick Roberts  <nick@nick.uklinux.net>
10735         * progmodes/gdb-ui.el (gdb-goto-info): New function.
10737         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
10739 2004-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10741         * emacs-lisp/bytecomp.el (batch-byte-compile-file):
10742         Give a backtrace if requested.
10744         * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
10746         * progmodes/python.el (python-mouse-2-command, python-RET-command):
10747         Remove unused functions.
10748         (python-orig-start-line, python-orig-file): Remove.
10749         (python-orig-start): New var.
10750         (python-input-filter, python-compilation-line-number)
10751         (python-send-region, python-load-file): Use it.
10753         * info.el (info): Always jump to *info*.
10755         * subr.el (posn-set-point): New function.
10757         * mouse.el (mouse-set-point): Use it.
10759         * progmodes/compile.el (compile-goto-error): Use it.
10760         (compilation-button-map): New keymap.
10761         (compilation-error-properties): Use it.
10762         (compilation-shell-minor-mode-map): Don't bind mouse-2.
10764         * smerge-mode.el (smerge-popup-context-menu): Use it.
10766         * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
10767         (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
10768         mouse and non-mouse case.
10770         * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
10771         (diff-mouse-goto-source): Make it an alias of diff-goto-source.
10773         * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
10774         Make it work for non-mouse events.
10776         * pcvs-info.el (cvs-status-map): Update binding name.
10778 2004-04-14  Mark A. Hershberger  <mah@everybody.org>
10780         * xml.el (xml-maybe-do-ns): New function to handle namespace
10781         parsing of both attribute and element names.
10782         (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
10783         (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
10784         (xml-parse-tag): Update assumed namespaces.  Clean up namespace parsing.
10785         (xml-parse-attlist): Make it do its own namespace parsing.
10787 2004-04-14  Dave Love  <fx@gnu.org>
10789         * progmodes/python.el (run-python): Fix use of \n.
10790         (python-load-file): Remove `try' from Python fragment.
10791         (python-describe-symbol): Fix message.
10793         * comint.el: Doc fixes.
10794         (comint-last-input-start, comint-last-input-end)
10795         (comint-last-output-start): Give them values.
10796         (comint-arguments): Avoid warning.
10797         (comint-skip-prompt): Use line-end-position.
10798         (comint-backward-matching-input): Rename arg to agree with doc.
10799         (comint-extract-string): Use syntax-ppss.
10800         (comint-dynamic-simple-complete): Delete useless list construction.
10801         (comint-redirect-subvert-readonly): New.
10802         (comint-redirect-preoutput-filter): Use it.
10804         * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
10805         Correctly handle negative arguments when calling hook functions.
10807 2004-04-14  Jesper Harder  <harder@ifa.au.dk>
10809         * info.el (info-apropos): Don't clobber Info-history-list.
10811 2004-04-14  Daniel Pfeiffer  <occitan@esperanto.org>
10813         * progmodes/compile.el (compilation-setup):
10814         Localize overlay-arrow-position.
10815         (compilation-sentinel): Restructure code equivalently.
10816         (compilation-next-error): Find message on same line after point if
10817         not found before point.
10818         (compile-mouse-goto-error): Restore function so that compilation
10819         buffer need not be current and use compile-goto-error.
10820         (compile-goto-error): Restore function.
10821         (next-error): Set overlay-arrow-position.
10822         (compilation-forget-errors): Don't localize already local
10823         compilation-locs and remove FIXME about refontifying.
10825 2004-04-14  Kim F. Storm  <storm@cua.dk>
10827         * startup.el (emacs-quick-startup): New defvar (set by -Q).
10828         (command-line): New option -Q.  Like -q --no-site-file, but
10829         in addition it also disables menu-bar, tool-bar, scroll-bars,
10830         tool-tips, and the blinking cursor.
10831         (command-line-1): Skip startup screen if -Q.
10832         (fancy-splash-head): Use ":align-to center" prop to center splash image.
10834         * emulation/cua-base.el (cua-read-only-cursor-color)
10835         (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
10837 2004-04-13  Dave Love  <fx@gnu.org>
10839         * progmodes/python.el: Doc fixes.  Changes for compiler warnings.
10840         (syntax): Don't require.
10841         (python) <defgroup>: Add :version.
10842         (python-quote-syntax): Re-written.
10843         (inferior-python-mode): Move stuff here from run-python and add
10844         some more.
10845         (python-preoutput-continuation, python-preoutput-result)
10846         (python-dotty-syntax-table): New.
10847         (python-describe-symbol): Use them.
10848         (run-python): Move stuff to inferior-python-mode.  Modify code
10849         loaded into Python.
10850         (python-send-region): Use python-proc, python-send-string.
10851         (python-send-string): Send newlines too.  Callers changed.
10852         (python-load-file): Re-written.
10853         (python-eldoc-function): New.
10854         (info-look): Don't require.
10855         (python-after-info-look): New.  A modified version of former
10856         top-level code for use with eval-after-load.
10857         (python-maybe-jython, python-guess-indent): Use widened buffer.
10858         (python-fill-paragraph): Re-written.
10859         (python-mode): Fix outline-regexp.  Set outline-heading-end-regexp,
10860         eldoc-print-current-symbol-info-function.  Add to eldoc-mode-hook.
10862 2004-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10864         * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
10865         Set compilation-error-regexp-alist earlier.
10867         * progmodes/compile.el (compilation-minor-mode-map)
10868         (compilation-shell-minor-mode-map, compile-mouse-goto-error)
10869         (compile-goto-error): Re-merge the mouse and non-mouse commands.
10871 2004-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10873         * progmodes/compile.el (compile-goto-error): Select the buffer/window
10874         corresponding to the event.
10876 2004-04-12  Joe Buehler  <jbuehler@hekiman.com>
10878         * loadup.el: Add cygwin to system-type list, for unexec() support.
10880 2004-04-12  John Paul Wallington  <jpw@gnu.org>
10882         * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
10883         (ibuffer-restore-window-config-on-quit): New variable to replace
10884         `ibuffer-delete-window-on-quit'.  Update all references.
10885         (ibuffer-prev-window-config): New variable.
10886         (ibuffer-quit): Restore previous window configuration instead of
10887         deleting window.
10888         (ibuffer): Save window configuration before showing Ibuffer buffer.
10890         * help.el (describe-mode): Doc fix.
10892 2004-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10894         * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
10895         not to treat nil as a function.
10897         * vc-arch.el (vc-arch-root): Be a bit more careful.
10898         (vc-arch-register): Save the buffer if we modified it.
10899         (vc-arch-delete-rej-if-obsolete): Save excursion.
10900         (vc-arch-find-file-hook): Use the simpler after-save-hook.
10901         (vc-arch-responsible-p, vc-arch-init-version): New functions.
10903         * net/ldap.el (ldap-search): Use list*.
10905 2004-04-12  Juri Linkov  <juri@jurta.org>
10907         * info.el (Info-follow-reference): Allow multiline reference name.
10909 2004-04-11  Dave Love  <fx@gnu.org>
10911         * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
10913         * progmodes/python.el: New file.
10915 2004-04-11  Andre Spiegel  <spiegel@gnu.org>
10917         * vc-hooks.el (vc-arg-list): Function removed.
10918         (vc-default-workfile-unchanged-p): Use condition-case to check for
10919         backward compatibility.
10921         * vc.el (vc-print-log): Use condition-case to check for backward
10922         compatibility.
10924 2004-04-11  Juri Linkov  <juri@jurta.org>
10926         * dired.el (dired-faces): New defgroup.
10927         (dired-header, dired-mark, dired-marked, dired-flagged)
10928         (dired-warning, dired-directory, dired-symlink, dired-ignored):
10929         New faces.
10930         (dired-header-face, dired-mark-face, dired-marked-face)
10931         (dired-flagged-face, dired-warning-face, dired-directory-face)
10932         (dired-symlink-face, dired-ignored-face): New face variables.
10933         (dired-font-lock-keywords): Use them instead of font-lock faces.
10934         Split the rule for dired marks into 3 separate rules: for marks,
10935         marked file names and flagged file names.
10937         * help-mode.el (help-make-xrefs): Add a final newline to the
10938         *Help* buffer.
10940 2004-04-11  John Paul Wallington  <jpw@gnu.org>
10942         * replace.el (occur-engine): Distinguish between one and several
10943         matches in the matches per buffer heading.
10945 2004-04-11  Kim F. Storm  <storm@cua.dk>
10947         * ido.el (ido-confirm-unique-completion): New defcustom.
10948         (ido-complete): Use it.
10949         (ido-write-file): Set it to t unconditionally.
10951 2004-04-10  Miles Bader  <miles@gnu.org>
10953         RCS keyword removal (only non-comment changes are enumerated here):
10955         * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
10956         (byte-compile-insert-header): Don't use `byte-compile-version'.
10957         * forms.el (forms-version): Variable removed.
10958         (forms-mode): Don't use `forms-version'.
10959         * recentf.el (recentf-version): Variable removed.
10960         * progmodes/delphi.el (delphi-version): Variable removed.
10961         * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
10963 2004-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
10965         * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
10967 2004-04-09  Jesper Harder  <harder@ifa.au.dk>
10969         * info.el (info-apropos): Improve menu item regexp.
10971 2004-04-09  Simon Josefsson  <jas@extundo.com>
10973         * mail/smtpmail.el: Add comment, based on report by
10974         kdc@rcn.com (Kevin D. Clark).
10976 2004-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
10978         * progmodes/compile.el (compilation-mode-font-lock-keywords):
10979         Redo one more thing that I didn't notice Daniel had undone.
10981 2004-04-08  Nick Roberts  <nick@nick.uklinux.net>
10983         * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
10984         (gdb-goto-breakpoint, gdb-display-buffer)
10985         (gdb-display-source-buffer, gdb-view-source-function)
10986         (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
10987         (gdb-source-info, gdb-frame-handler): Don't specify a window
10988         for display.
10989         (gdb-info-breakpoints-custom): Remove superfluous update of
10990         assembler buffer.
10991         (gdb-many-windows): Make settable outside gdb.
10993 2004-04-08  Glenn Morris  <gmorris@ast.cam.ac.uk>
10995         * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
10996         Derive from fundamental-mode rather than text-mode.
10998 2004-04-08  Juri Linkov  <juri@jurta.org>
11000         * info.el (Info-history): Doc fix.
11001         (Info-history-list): New var.
11002         (info-xref): Change magenta4 to blue, remove bold for dark and
11003         light backgrounds, change bold to underline for non-color classes.
11004         (info-xref-visited): New face.
11005         (Info-fontify-visited-nodes): New custom.
11006         (Info-hide-note-references): Add new value `hide'.  Doc fix.
11007         (Info-reference-name): New var.
11008         (Info-selection-hook): New custom.
11009         (Info-edit-mode-hook): New var.
11010         (Info-find-file): New fun.
11011         (Info-find-node): Move part of code to Info-find-file.
11012         (Info-find-node-2): Add anchors to Info-history-list.  Move point
11013         to the place with the reference name if name is defined.
11014         (Info-select-node): Add current node to Info-history-list.
11015         (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
11016         (Info-search-whitespace-regexp): New custom.
11017         (Info-search-case-fold): New var.
11018         (Info-search): Add "case-sensitively" to the prompt.
11019         Use Info-search-whitespace-regexp.  Set Info-search-case-fold.
11020         (Info-search-case-sensitively, Info-search-next): New fun.
11021         (Info-up): Move point to the menu item of the current node.
11022         (Info-history): New fun.  Add *info-history* to
11023         same-window-buffer-names.
11024         (Info-toc): New fun.  Add *info-toc* to same-window-buffer-names.
11025         (Info-insert-toc): New fun.
11026         (Info-build-toc): New fun.
11027         (Info-follow-reference): Add new arg `fork'.  Doc fix.
11028         Replace [ \n\t]* by [ \n\t]+ in the *Note regexp.  For references
11029         with the same name prefer the reference closest to point.
11030         (Info-next-reference): Replace * by + in the *Note regexp.
11031         Add regexp for http:// and ftp://.  Skip the *Note prefix.
11032         (Info-prev-reference): Replace * by + in the *Note regexp.
11033         Add regexp for http:// and ftp://.  Skip the *Note prefix.
11034         (Info-follow-nearest-node): Add new arg `fork'.
11035         (Info-try-follow-nearest-node): Add new arg `fork'.
11036         Call browse-url for http:// and ftp:// references.
11037         Set Info-reference-name for index entries.
11038         (Info-mode-menu): Add menu items for Info-search-case-sensitively,
11039         Info-search-next, Info-history, Info-toc, clone-buffer.
11040         (Info-menu-update): Replace * by + in the *Note regexp.
11041         (Info-mode): Add documentation for Info-history, Info-toc,
11042         Info-search-case-sensitively, Info-search-next, clone-buffer.
11043         (Info-fontify-menu-headers): Remove fun.  Move code to
11044         Info-fontify-node.
11045         (Info-fontify-node): Add docstring.  Add local vars
11046         fontify-visited-p and not-fontified-p.  If not-fontified-p is t
11047         then fontify header line, titles, menu headers, http and ftp
11048         references, refill paragraphs.  If not-fontified-p is t or
11049         fontify-visited-p is t then fontify cross references, menu items.
11050         Fontify menu headers.  Fontify http and ftp references.
11051         Change regexp for cross references to require whitespace after *Note,
11052         add matching groups for file and node names.  Remove hack for quote.
11053         Use display property for Info-hide-note-references=t.  Use fifth
11054         or fourth match for help-echo.  Display visited nodes in a
11055         different face.  Unhide file names of external references.
11056         Unhide newlines.  Display visited menu items in a different face.
11058 2004-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11060         * progmodes/compile.el: Require CL.
11061         (compilation-mode-font-lock-keywords): Re-install the "line as
11062         function" patch.
11064         * help-fns.el (help-C-source-directory): New var.
11065         (help-subr-name, help-C-file-name, help-find-C-source): New funs.
11066         (describe-function-1, describe-variable): Use them.
11068         * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
11069         to C source files specially.
11071 2004-04-07  Jan Nieuwenhuizen  <janneke@gnu.org>
11073         * info.el (Info-hide-cookies-node): New function.
11074         (Info-select-node): Use it.
11075         (Info-display-images-node): Remove message with image file name.
11077 2004-04-07  Daniel Pfeiffer  <occitan@esperanto.org>
11079         * progmodes/compile.el (compilation-warning-face)
11080         (compilation-info-face, compilation-skip-threshold)
11081         (compilation-skip-visited, compilation-context-lines):
11082         Declare :version when added to Emacs.
11083         (compilation-error-regexp-alist-alist): Extend caml and irix.
11084         (compilation-setup): Fix if font-locked w/o font-lock-defaults.
11085         (compilation-mode-font-lock-keywords): Temporarily undo line as
11086         function patch, which wasn't ready.
11088 2004-04-07  Kenichi Handa  <handa@m17n.org>
11090         * international/latin1-disp.el (latin1-display-setup): Check each
11091         character is displayable or not instead of calling
11092         latin1-display-check-font.
11094 2004-04-06  Kenichi Handa  <handa@m17n.org>
11096         * language/ethio-util.el (ethio-sera-being-called-by-w3):
11097         New variable.
11098         (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
11099         instead of sera-being-called-by-w3.
11100         (ethio-fidel-to-sera-buffer): Likewise.
11101         (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
11102         instead of sera-being-called-by-w3.
11103         (ethio-write-file): Likewise.
11105 2004-04-05  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11107         * printing.el: Doc fix.
11109 2004-04-05  Nick Roberts  <nick@nick.uklinux.net>
11111         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
11112         (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
11113         (gdb-setup-windows): Only use separate IO buffer if required.
11115 2004-04-06  Kim F. Storm  <storm@cua.dk>
11117         * term.el (term-is-xemacs): Remove.
11118         (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
11119         (term-window-width): New function.
11120         (term-mode, term-check-size): Use it.
11121         (term-mode): Disable overflow-newline-into-fringe in term buffer.
11123 2004-04-05  Per Abrahamsen  <abraham@dina.kvl.dk>
11125         * cus-edit.el (custom-add-parent-links): Change unbound variable
11126         `symbol' to `name'.
11128 2004-04-05  Jesper Harder  <harder@ifa.au.dk>
11129         * info.el (info-apropos): New function.
11130         (Info-mode-menu): Add it.
11131         (Info-find-node, Info-find-node-2): Grok apropos virtual file.
11133         * help-mode.el (help-make-xrefs): Recognize aliased variable with
11134         inherited docstring.
11136         * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
11138 2004-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11140         * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
11142         * progmodes/compile.el (font-lock): Don't require any more.
11143         (compilation-error-properties, compilation-start, compilation-sentinel)
11144         (compilation-filter, next-error): Use with-current-buffer.
11145         (compilation-skip-to-next-location, compilation-skip-threshold)
11146         (compilation-skip-visited): Move to silence the byte-compiler.
11147         (compilation-setup): Simplify.
11148         (compilation-next-error): Use line-(beginning|end)-position.
11149         Make sure `pt' is non-nil before using compilation-loop.
11150         (compile-goto-error): Add optional event arg.  Use it.
11151         (compile-mouse-goto-error): Make it an alias of compile-goto-error.
11152         (compilation-minor-mode-map, compilation-shell-minor-mode-map):
11153         Update the binding for mouse-2.
11154         (first-error): Set compilation-current-error to nil rather than bob.
11155         (compilation-parsing-end, compilation-parse-errors-function)
11156         (compilation-error-list, compilation-old-error-list):
11157         "New" compatibility variables.
11158         (compile-buffer-substring, compilation-compat-error-properties)
11159         (compilation-compat-parse-errors, compilation-forget-errors):
11160         New compatibility functions.
11161         (compilation-mode-font-lock-keywords): Use them.
11163 2004-04-04  Luc Teirlinck  <teirllm@auburn.edu>
11165         * autorevert.el (auto-revert-handler): If point (or a window
11166         point) is at the end of the buffer, keep it there after
11167         reverting.  This allows to tail a file.
11168         Mention this in the `Commentary'.
11170         * format.el (format-write-file): Add optional argument CONFIRM
11171         and make it behave like the analogous argument to `write-file'.
11173 2004-04-04  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11175         * progmodes/ebnf2ps.el: Doc fix.
11176         (ebnf-version): New version number (4.2).
11177         (ebnf-syntax): Customization and docstring fix.
11178         (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
11179         Put autoloaded funs before first use.
11180         (ebnf-style-database): Add dtd entry.
11181         (ebnf-syntax-alist): Add dtd initialization.
11182         (ebnf-token-sequence): New fun.
11183         (ebnf-comment-table): Add new comment action character.
11184         (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
11186         * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
11187         Type Definition for XML).
11189         * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
11190         * progmodes/ebnf-bnf.el (ebnf-sequence):
11191         * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
11192         * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
11193         * progmodes/ebnf-yac.el (ebnf-yac-sequence):
11194         Code simplification: call ebnf-token-sequence.
11196 2004-04-04  Eli Zaretskii  <eliz@gnu.org>
11198         * calendar/timeclock.el (timeclock-relative)
11199         (timeclock-get-project-function, timeclock-get-workday-function)
11200         (timeclock-query-out, timeclock-when-to-leave)
11201         (timeclock-when-to-leave-string, timeclock-log-data)
11202         (timeclock-generate-report, timeclock-in): Doc fixes.
11204 2004-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11206         * url/: New dir.  Import the URL package from its repository.
11208 2004-04-03  Andreas Schwab  <schwab@suse.de>
11210         * diff-mode.el (diff-mode): Fix missing quote.
11212 2004-04-03  Juri Linkov  <juri@jurta.org>
11214         * descr-text.el (describe-property-list): Add `font-lock-face'.
11216         * dired.el (dired-font-lock-keywords): Fix permission regexps.
11218 2004-04-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
11220         * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
11221         Use utf-16le on little endian machines and utf-16be otherwise.
11223 2004-04-02  David Kastrup  <dak@gnu.org>
11225         * net/browse-url.el (browse-url-generic): Use call-process
11226         instead of start-process to allow browsers that fork and detach.
11228 2004-04-01  Daniel Pfeiffer  <occitan@esperanto.org>
11230         * compile.el (compilation-current-error): New var.
11231         (compilation-setup, compile-mouse-goto-error)
11232         (compile-goto-error, next-error): Use it.
11233         (compilation-skip-to-next-location): Default to t, which gives
11234         contiguous skipping like old compile (where this was redundant).
11235         (compilation-next-error): Prevent previous-* commands from moving
11236         back to message at or just before point.
11238 2004-04-01  Nick Roberts  <nick@nick.uklinux.net>
11240         * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
11241         (gdb-source-info): Don't display source at startup, if required.
11242         (gdb-show-main): New option.
11243         (gdba): Update documentation.
11244         (gdb-source): Cover case of auto-display output.
11246 2004-03-31  Luc Teirlinck  <teirllm@auburn.edu>
11248         * autorevert.el: Delete obsolete autoload's and defvar's.
11249         (auto-revert-check-vc-info): New user option.
11250         (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
11251         (auto-revert-handler-vc): Delete.
11252         (auto-revert-handler): Treat return value `fast' of
11253         buffer-stale-function specially.  Check `auto-revert-check-vc-info'.
11255         * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
11256         return `fast'.
11258         * files.el (buffer-stale-function): Doc change.
11260 2004-03-31  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11262         * printing.el: New tip on Tips section.
11263         (pr-version): New version number (6.7.4).
11264         (pr-shell-file-name): Initialization fix.
11266 2004-03-31  Juri Linkov  <juri@jurta.org>
11268         * dired.el: Add autoload for `dired-do-touch'.
11269         (dired-touch-program): New var.
11270         (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
11271         (dired-no-confirm): Add `touch' to docstring.
11273         * dired-aux.el (dired-do-touch): New fun.
11274         (dired-do-chxxx): Add argument -t for touch operation.
11276         * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
11277         `dired-move-to-filename-regexp'.
11279 2004-03-31  H\e,Ae\e(Bkan Granath  <hakan.granath@kau.se>  (tiny change)
11281         * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
11283 2004-03-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11285         * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
11286         and only if the buffer was modified.
11288 2004-03-30  Kenichi Handa  <handa@m17n.org>
11290         * international/characters.el: Delete pairs for U+2308..U+230B.
11292 2004-03-29  Nick Roberts  <nick@nick.uklinux.net>
11294         * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
11295         to detect the beginning of a level 2 or 3 annotation.
11297 2004-03-29  Kenichi Handa  <handa@m17n.org>
11299         * international/ucs-tables.el (ucs-insert): Fix the error message.
11301 2004-03-29  Kenichi Handa  <handa@m17n.org>
11303         * international/mule-util.el (char-displayable-p): Fix generation
11304         of XLFD file name.
11306         * Makefile.in (setwins, setwins_almost): Change directory to $wd
11307         before finding directories by `find'.
11309 2004-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11311         * subr.el (interactive-form): Delete.  Now implemented in C.
11313         * pcvs.el (cvs-parse-process): Workaround for Darwin.
11315         * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
11316         (vc-diff-label): New fun.
11317         (vc-diff-internal): Use it.
11319         * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
11321 2004-03-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11323         * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
11325         * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
11326         specify XML (EBNFX).
11328         * progmodes/ebnf2ps.el: Doc fix.
11329         (ebnf-version): New version number (4.1).
11330         (ebnf-syntax): Adjust customization.
11331         (ebnf-style-database): Add ebnfx entry.
11332         (ebnf-syntax-alist): Add ebnfx initialization.
11333         (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
11335         * printing.el: Doc fix.
11336         (pr-version): New version number (6.7.3).
11337         (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
11338         returns nil for mouse position.  Reported by Drew Adams
11339         <drew.adams@oracle.com>.
11340         (pr-update-menus): Modify interactive declaration.  Reported by Drew
11341         Adams <drew.adams@oracle.com>.
11343 2004-03-28  Nick Roberts  <nick@nick.uklinux.net>
11345         * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
11346         (gud-gdba-marker-filter): Log the process input and output, if
11347         required.  From Stefan Monnier.
11348         (gdb-debug-log, gdb-enable-debug-log): New variables.
11349         (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
11351 2004-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11353         * vc-hooks.el (vc-file-not-found-hook): Fix typo.
11354         From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
11356 2004-03-27  Luc Teirlinck  <teirllm@auburn.edu>
11358         * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
11359         Call vc-find-file-hook here instead of in auto-revert-buffers.
11360         (auto-revert-buffers): Delete call to vc-find-file-hook.
11361         (auto-revert-verbose, global-auto-revert-non-file-buffers)
11362         (global-auto-revert-mode, auto-revert-set-timer)
11363         (auto-revert-handler, auto-revert-buffers): Doc fixes.
11365 2004-03-27  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
11367         * woman.el (woman-change-fonts): Rename local variable
11368         woman-font-alist to font-alist to avoid a compiler warning.
11370 2004-03-27  Dave Love  <fx@gnu.org>
11372         * emacs-lisp/rx.el (rx): Doc fix.
11373         Fix copyright years.
11375         * strokes.el (strokes-global-set-stroke-string): New function.
11376         (strokes-list-strokes): Cope with strings, not just commands.
11377         Set foreground colour of image.
11378         (strokes-global-set-stroke): Doc fix.
11380 2004-03-26  Luc Teirlinck  <teirllm@auburn.edu>
11382         * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
11383         Auto Revert mode.
11384         (Buffer-menu-files-only): New variable.
11385         (Buffer-menu-toggle-files-only): New function.
11386         (Buffer-menu-mode-map): Bind it to `T'.
11387         (Buffer-menu-mode): Mention `T' in docstring.
11388         Set buffer-stale-function.
11389         (list-buffers-noselect): Mark buffer non-modified and set
11390         Buffer-menu-files-only.
11392         * dired.el (buffer-stale-function): Remove no longer needed defvar.
11394         * autorevert.el (auto-revert-handler): Print revert message
11395         before, rather than after, reverting.
11396         (buffer-stale-function): Move to files.el.
11398         * files.el (buffer-stale-function): Move here from autorevert.el.
11400 2004-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11402         * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
11404         * calc/calc.el (calc-mode-map): Use mapc.
11406         * apropos.el (apropos-mode): Don't autoload.
11407         (apropos-symbols-internal): New fun.  Extracted from `apropos'.
11408         (apropos): Use it.
11409         (apropos-print): Add optional `text' argument.
11410         (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
11411         Don't assume point-min == 1.
11413         * bs.el (bs-buffer-list): Use buffer-local-value.
11414         (bs--set-toggle-to-show): Use with-current-buffer.
11416         * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
11417         New funs.
11418         (list-buffers-noselect): Use them.  Adjust :align-to to new style.
11420         * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
11422         * dabbrev.el (dabbrev-expand): Fix regexp construction.
11423         (dabbrev--find-expansion): Use pop.
11424         (dabbrev--search): Use match-string-no-properties.
11426         * dired.el (dired-mode): Use run-mode-hooks.
11427         (dired-move-to-end-of-filename): Use match-string.
11429         * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
11430         is bound before using it.
11431         (ediff-verbose-p): Make it into a var since it's not constant.
11433         * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
11435         * faces.el (read-face-font): Don't cons up unnecessarily.
11436         (header-line, tool-bar): Share common parts.
11438         * files.el (file-relative-name): Use compare-strings.
11440         * finder.el (finder-mode): Follow coding convention.
11442         * subr.el (read-number): New function.
11444         * ses.el (ses-read-number): Move to subr.el.
11445         (ses-set-header-row): Use read-number.
11447 2004-03-26  Andre Spiegel  <spiegel@gnu.org>
11449         * vc-hooks.el (vc-arg-list): New function, which handles both
11450         compiled and uncompiled code.
11451         (vc-default-workfile-unchanged-p): Use it.
11453         * vc.el (vc-print-log): Undo prev change, use new function
11454         vc-arg-list from vc-hooks.el.
11456 2004-03-26  Masatake YAMATO  <jet@gyve.org>
11458         * simple.el (completion-setup-function): Emphasize the
11459         first uncommon characters in the completions; and de-emphasize
11460         the common prefix substrings.
11461         (completion-emphasis): New face.
11462         (completion-de-emphasis): New face.
11464 2004-03-25  Juanma Barranquero  <lektu@terra.es>
11466         * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
11467         Comment out (it's unused and unfinished code).
11469 2004-03-25  Sam Steingold  <sds@gnu.org>
11471         * vc.el (vc-print-log): Fix a bug in the last patch:
11472         backend-function may be a byte-compiled object, not a lambda.
11474 2004-03-25  Juri Linkov  <juri@jurta.org>
11476         * descr-text.el (describe-property-list): Add a button
11477         for `face' property that calls `describe-face'.
11478         Suggested by luis fernandes <elf@ee.ryerson.ca>
11480         * international/mule.el (keyboard-coding-system):
11481         * kmacro.el (kmacro-call-macro): Fix docstring.
11483         * dired.el: Fix comments.
11485         * textmodes/fill.el (fill): Fix Info link.
11487         * font-lock.el (fast-lock, lazy-lock):
11488         * jit-lock.el (jit-lock): Remove links to removed Support Modes
11489         Info node.
11491         * eshell/eshell.el (eshell): Fix broken info-link.
11493         * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
11494         * eshell/em-banner.el (eshell-banner):
11495         * eshell/em-smart.el (eshell-smart):
11496         * eshell/esh-cmd.el (eshell-cmd):
11497         Comment out broken info-links to incomplete Info manual.
11499         * info-xref.el: Fix commentary.
11501 2004-03-25  Kevin Ryde  <user42@zip.com.au>
11503         * info-xref.el (info-xref-check-buffer): Report empty filename parts.
11504         Remove spurious node duplicate suppression, doesn't work, not wanted.
11505         (info-xref-output): Take format style args, add "sit-for 0" to let
11506         user see the results as they progress.
11507         (info-xref-check-all-custom): New function.
11509 2004-03-25  Nick Roberts  <nick@nick.uklinux.net>
11511         * gdb-ui.el: Moved to progmodes.
11513 2004-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11515         * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
11517 2004-03-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
11519         * calendar/appt.el (appt-check): Remove superfluous progn.
11520         When finished with diary buffer: if it was not being displayed
11521         before, kill it; otherwise restore its original state.
11522         Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
11524         * calendar/calendar.el (calendar-set-mode-line): Use total
11525         available mode-line width, rather than frame-width.
11527         * calendar/diary-lib.el (fancy-diary-display): Set mode-line
11528         after mode change so effect not lost.
11530 2004-03-23  Dave Love  <fx@gnu.org>
11532         * dired.el (dired) <defgroup>: Add link to manual.
11533         (dired-font-lock-keywords): Add highlighting on unusual permissions.
11534         (dired-revert): Use dolist.
11535         (dired-mode-map): Add U binding.
11536         (dired-mode): Add font-lock-beginning-of-syntax-function.
11537         (dired-garbage-files-regexp): Make it a defcustom.
11539 2004-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11541         * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
11542         is equivalent to nil.
11543         (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
11544         (vc-arch-mode-line-string): Accept `added' state.
11545         (vc-arch-state): Use inode-sigs if available.
11546         (vc-arch-add-tagline): Rename from vc-arch-add-tag.
11547         Copy&delete existing id file if any.  Fallback if uuidgen is absent.
11548         (vc-arch-tagline-re): New var.
11549         (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
11550         New functions.
11551         (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
11552         (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
11554         * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
11555         (vc-file-not-found-hook): Use it.
11557         * diff-mode.el (diff-default-read-only): Change default.
11558         (diff-mode-hook): Make it a defcustom.  Add some options.
11559         (diff-mode-map): Bind diff-refine-hook.
11560         (diff-yank-handler): New var.
11561         (diff-yank-function): New fun.
11562         (diff-font-lock-keywords): Use them.
11563         (diff-end-of-file): Handle case where file-header looks like diff text.
11564         (diff-hunk-kill): Adjust to "new" hunk-next behavior.
11565         (diff-file-kill): Delete a subsequent empty line, if applicable.
11566         (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
11567         (diff-find-file-name): Use it.
11568         (diff-tell-file-name): New command.
11569         (diff-mode): Be careful with view-mode.
11570         (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
11571         New functions, for use in diff-mode-hook.
11572         (diff-find-source-location): Catch "regex too large" errors.
11573         (diff-apply-hunk, diff-test-hunk): Go to old or new file.
11574         (diff-refine-hunk): New command.
11576         * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
11577         (smerge-context-menu-map): Remove unused var.
11578         (smerge-keep-all): Preserve markers.
11579         (smerge-keep-n): New fun.
11580         (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
11581         (smerge-keep-current, smerge-ediff): Use it.
11582         (smerge-kill-current): Use it.  Make it work on some 3-part conflicts.
11583         (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
11584         (smerge-resolve): Resolve trivial 3-part conflicts.
11586 2004-03-23  Juri Linkov  <juri@jurta.org>
11588         * man.el (Man-width): New var.
11589         (Man-getpage-in-background): Use it.
11590         (Man-support-local-filenames): New var and fun.
11591         (Man-build-man-command): Don't add a second %s.
11592         (Man-fontify-manpage): Clean up message.
11593         (Man-mode): Set outline-regexp, outline-level,
11594         imenu-generic-expression.
11596         * woman.el (woman-fill-frame): Doc fix.
11597         (woman-decode-region): Use window-width instead of frame-width.
11599         * abbrevlist.el (list-one-abbrev-table):
11600         * descr-text.el (describe-char):
11601         * international/mule-diag.el (describe-current-coding-system):
11602         * international/quail.el (quail-insert-decode-map):
11603         Use window-width instead of frame-width.
11605         * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
11606         (jka-compr-mode-alist-additions): Add tbz.
11607         (jka-compr-write-region, jka-compr-insert-file-contents):
11608         Add message for undefined compress-program.
11609         (jka-compr-write-region): Remove redundant var bindings.
11611         * dired-x.el (dired-guess-shell-alist-default): Add choices for
11612         extracting files into subdirectory.  Add tbz and dz.  Fix regexps.
11613         Add extensions .[0-9] for man and nroff, and .pod for perldoc.
11614         (dired-man): Use dired-guess-shell-command.
11615         (dired-guess-shell-case-fold-search): Change defvar to defcustom.
11616         Change default nil to t.
11618         * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
11619         (dired-compare-directories): Add default value for empty input.
11621         * help-at-pt.el: Move suggestions for key bindings to Commentary.
11623         * time.el (display-time-string-forms): Fix help-echo date format.
11625 2004-03-22  Luc Teirlinck  <teirllm@auburn.edu>
11627         * autorevert.el (global-auto-revert-non-file-buffers): Expand docstring.
11628         (buffer-stale-function): New variable.
11629         (auto-revert-list-diff, auto-revert-dired-file-list)
11630         (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
11631         (auto-revert-handler): Take over some functionality of deleted
11632         functions.
11633         (auto-revert-buffers): Delete call to auto-revert-buffer-p.
11635         * dired.el (dired-directory-changed-p): New fun, extracted from
11636         dired-internal-noselect.
11637         (dired-buffer-stale-p): New fun.
11638         (dired-internal-noselect): Use dired-directory-changed-p.
11639         Eliminate revert messages.
11640         (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
11642 2004-03-23  Kenichi Handa  <handa@m17n.org>
11644         * international/characters.el: Setup syntaxes for more parentheses
11645         Unicode characters.
11647         * international/mule-cmds.el (select-safe-coding-system):
11648         Merge coding-system and auto-cs before comparing them.
11650 2004-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11652         * emacs-lisp/pp.el (pp-eval-expression): Simplify.
11654         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
11655         normal-auto-fill-function and comment-indent-function.
11656         The default values now work just as well.
11657         Don't set font-lock-beginning-of-syntax-function since we already set
11658         syntax-begin-function.
11659         (lisp-outline-level): Put ;;;###autoload at same level as (.
11660         (prin1-char): Quote special chars.
11662         * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
11663         than with-no-warnings.
11665         * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
11666         if the source location can't be found.
11667         (edebug-compute-previous-result): Use prin1-char.
11669         * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
11670         (debug-ignored-errors): Add an entry.
11672         * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
11673         (byte-compile-file): Output warning when deleting a file.
11675         * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
11676         (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
11678         * emacs-lisp/byte-opt.el (byte-compile-log-lap)
11679         (byte-compile-inline-expand): Use backquote.
11680         (byte-optimize-pure-func): Rename from byte-optimize-concat.
11681         (symbol-name, regexp-opt, regexp-quote): Mark as pure.
11683         * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
11685         * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
11687 2004-03-22  Juri Linkov  <juri@jurta.org>
11689         * finder.el (finder-known-keywords): Fix data, tex, unix.
11691         * play/landmark.el: Fix keywords.
11693         * language/ethio-util.el (ethio-find-file): Doc fix.
11695         * emacs-lisp/warnings.el: Doc fix.
11697         * textmodes/ispell.el (ispell-help): Doc fix.
11699 2004-03-21  Luc Teirlinck  <teirllm@auburn.edu>
11701         * format.el (format-insert-file): Always return a list of two
11702         elements, like insert-file-contents does.
11704 2004-03-21  Andre Spiegel  <spiegel@gnu.org>
11706         * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
11707         and vc-BACKEND-diff.
11708         (vc-print-log): If the print-log implementation supports it, use
11709         the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
11710         (vc-version-diff, vc-diff-internal): Doc fixes.
11712         * vc-hooks.el (vc-default-workfile-unchanged-p): If the
11713         implementation supports it, let diff output go to *vc*,
11714         not *vc-diff*, since this is an internal call.
11716         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
11718         * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
11720         * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
11722 2004-03-21  Dave Love  <fx@gnu.org>
11724         * progmodes/cfengine.el (cfengine-mode):
11725         Set parse-sexp-ignore-comments.
11727         * emacs-lisp/rx.el (rx): Work at compile time, not run time.
11729 2004-03-21  Juanma Barranquero  <lektu@terra.es>
11731         * allout.el (allout-mode): Fix docstring.
11733 2004-03-20  Luc Teirlinck  <teirllm@auburn.edu>
11735         * files.el (insert-directory): Fix bug if SWITCHES is a list.
11737         * autorevert.el (auto-revert-interval): Make new value take
11738         effect immediately when set through Custom.
11739         (auto-revert-set-timer): Add interactive declaration.
11741 2004-03-19  David Ponce  <david@dponce.com>
11743         * ruler-mode.el (ruler-mode-header-line-format-old):
11744         Don't `make-variable-buffer-local'.
11745         (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
11746         (ruler-mode-header-line-format): Simply funcall the above.
11747         (ruler-mode): Use `make-local-variable' and `kill-local-variable'
11748         to save/restore a previous header line format.
11749         (ruler-mode-space): Don't depend on a numeric WIDTH value.
11750         (ruler-mode-ruler): Use symbolic display elements for scrollbar,
11751         fringes and margins width.
11752         (ruler-mode-ruler-function): Default to ruler-mode-ruler.
11754 2004-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11756         * log-edit.el (log-edit-font-lock-keywords): Typo.
11758         * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
11759         (tex-send-tex-command): Rather than here.
11760         (tex-compilation-parse-errors): Simplify.
11762         * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
11764         * time.el (display-time-string-forms): Add help-echo with date on time.
11766         * composite.el (compose-region): Use restore-buffer-modified-p.
11768         * disp-table.el (standard-display-8bit): Simplify.
11770         * server.el (server-process-filter): Delete temp frame.
11772         * add-log.el (add-change-log-entry): Simplify.
11774 2004-03-19  Kim F. Storm  <storm@cua.dk>
11776         * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
11777         (hexl-follow-line): Don't require 'fringe.
11779         * progmodes/compile.el (compilation-start): Always set
11780         compilation-last-buffer and return it.
11782 2004-03-17  Luc Teirlinck  <teirllm@auburn.edu>
11784         * simple.el (clone-buffer): Doc fix.
11786 2004-03-18  Juanma Barranquero  <lektu@terra.es>
11788         * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
11790 2004-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11792         * log-edit.el (log-edit-font-lock-keywords): New var.
11793         (log-edit-mode): Use it.
11795 2004-03-17  Nick Roberts  <nick@nick.uklinux.net>
11797         * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
11798         properly for watching in speedbar.
11800 2004-03-17  Masatake YAMATO  <jet@gyve.org>
11802         * smerge-mode.el (smerge-popup-context-menu):
11803         Put `unwind-protect' around `overlay-put' and `popup-menu'.
11805 2004-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11807         * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
11808         (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
11809         Take sealed revisions into account.
11810         (vc-arch-checkin): Extract a summary line from the message.
11812 2004-03-16  Masatake YAMATO  <jet@gyve.org>
11814         * register.el (register): Provide `register' feature.
11816 2004-03-15  Masatake YAMATO  <jet@gyve.org>
11818         Added context menu support in smerge mode.
11819         Most of the part is written by Stefan Monnier.
11821         * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
11822         New keymap and menu.
11823         (smerge-text-properties): New function.
11824         (smerge-remove-props): New function.
11825         (smerge-popup-context-menu): New function.
11826         (smerge-resolve): Call `smerge-remove-props'.
11827         (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
11828         (smerge-keep-current): Ditto.
11829         (smerge-kill-current): New function.
11830         (smerge-match-conflict): Put text properties.
11831         Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
11833 2004-03-15  David Ponce  <david@dponce.com>
11835         * ruler-mode.el: (ruler-mode-left-fringe-cols)
11836         (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
11837         (ruler-mode-right-scroll-bar-cols): Remove.
11838         (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
11839         (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
11840         Use fringe-columns and scroll-bar-columns.
11842 2004-03-15  Masatake YAMATO  <jet@gyve.org>
11844         * hl-line.el (hl-line-range-function): New variable.
11845         (hl-line-move): New function.
11846         (global-hl-line-highlight): Use `hl-line-move'.
11847         (hl-line-highlight): Ditto.
11849         * scroll-bar.el (scroll-bar-columns):
11850         * fringe.el (fringe-columns): New function derived from ruler-mode.el.
11852         * ruler-mode.el (top-level): Require scroll-bar and fringe.
11853         (ruler-mode-left-fringe-cols)
11854         (ruler-mode-right-fringe-cols): Use `fringe-columns'.
11855         (ruler-mode-right-scroll-bar-cols)
11856         (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
11857         (ruler-mode-ruler-function): New variable.
11858         (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
11859         if the value for `ruler-mode-ruler-function'is given.
11861         * hexl.el (hexl-mode-hook): Make the hook customizable.
11862         (hexl-address-area, hexl-ascii-area): New customize variables.
11863         (hexlify-buffer): Put font-lock-faces on the address area and
11864         the ascii area.
11865         (hexl-activate-ruler): New function.
11866         (hexl-follow-line): New function.
11867         (hexl-highlight-line-range): New function.
11868         (hexl-mode-ruler): New function.
11870 2004-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11872         * vc-hooks.el (vc-handled-backends): Add Arch.  Move MCVS down.
11873         (vc-default-find-file-hook): New fun.
11874         (vc-find-file-hook): Call new find-file-hook operation.
11876         * vc-arch.el: New file.
11878 2004-03-12  Jesper Harder  <harder@ifa.au.dk>
11880         * info-look.el (info-lookup): Reuse an existing Info window.
11882 2004-03-12  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
11884         * woman.el (woman-preserve-ascii): Default value changed to t and
11885         doc string revised.
11887 2004-03-12  Richard M. Stallman  <rms@gnu.org>
11889         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
11890         Fix minor bug.
11892         * replace.el (occur-engine): Change message for count of matches.
11894         * emacs-lisp/bytecomp.el (byte-compile-get-constant):
11895         For strings, do compare text properties.
11897 2004-03-11  Daniel Pfeiffer  <occitan@esperanto.org>
11899         * progmodes/compile.el (compile-auto-highlight)
11900         (compilation-error-list, compilation-old-error-list)
11901         (compilation-parse-errors-function, compilation-parsing-end)
11902         (compilation-error-message, compilation-directory-stack)
11903         (compilation-enter-directory-regexp-alist)
11904         (compilation-leave-directory-regexp-alist)
11905         (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
11906         (compilation-current-file, compilation-regexps): Remove vars.
11908         (compile-error-at-point, compilation-error-filedata)
11909         (compilation-error-filedata-file-name, compile-reinitialize-errors)
11910         (compilation-next-error-locus, compilation-forget-errors)
11911         (count-regexp-groupings, compilation-parse-errors)
11912         (compile-collect-regexps, compile-buffer-substring): Remove funs.
11914         (compile-internal): Make obsolete.
11916         (compilation-first-column, compilation-error)
11917         (compilation-directory-matcher, compilation-page-delimiter)
11918         (compilation-mode-font-lock-keywords, compilation-debug)
11919         (compilation-error-face, compilation-warning-face)
11920         (compilation-info-face, compilation-line-face)
11921         (compilation-column-face, compilation-enter-directory-face)
11922         (compilation-leave-directory-face, compilation-skip-threshold)
11923         (compilation-skip-visited, compilation-context-lines): New vars.
11925         (compilation-warning-face, compilation-info-face)
11926         (compilation-message-face): New faces.
11928         (compilation-error-regexp-alist-alist): New constant.
11930         (compilation-face, compilation-directory-properties)
11931         (compilation-assq, compilation-error-properties, compilation-start)
11932         (define-compilation-mode, compilation-loop)
11933         (compilation-set-window): New functions.
11935         (compile): Additional argument for interactive compiles like TeX.
11937         * progmodes/grep.el (kill-grep): Move here from compile.el
11938         (grep-error, grep-hit-face, grep-error-face)
11939         (grep-mode-font-lock-keywords): New variables.
11940         (grep-regexp-alist): Simplify regexp and add `binary' case.
11941         (grep-mode): New mode.
11942         (grep-process-setup): Simplify.
11944 2004-03-11  Jason Rumney  <jasonr@gnu.org>
11946         * net/ldap.el (ldap-search-internal): Handle file URLs with drive
11947         letters on DOS/Windows.
11949 2004-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
11951         * server.el (server-name): New var.
11952         (server-socket-dir): New var to replace server-socket-name.
11953         (server-start): Use them.
11955 2004-03-11  Simon Josefsson  <jas@extundo.com>
11957         * mail/smtpmail.el (smtpmail-read-response): Abort if process has
11958         died to avoid infloop.  Reported by Jonathan Glauner
11959         <jglauner@sbum.org>.
11961 2004-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11963         * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
11964         (smerge-mode-menu): Use it to deactivate menu entries.
11965         (smerge-keep-current): New fun.
11966         (smerge-keep-current): Use it.
11968 2004-03-10  John Paul Wallington  <jpw@gnu.org>
11970         * foldout.el (foldout-fold-list, foldout-modeline-string):
11971         Declare them as variables, not constants.
11973 2004-03-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11975         * ps-print.el: Modification to print *Messages* buffer.
11976         (ps-print-version): New version 6.6.4.
11977         (ps-message-log-max): New fun.
11978         (ps-spool-without-faces, ps-spool-with-faces)
11979         (ps-count-lines-preprint): Code fix.
11981         * printing.el: New tips in Tips section.
11983 2004-03-09  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11985         * delim-col.el: Doc fix.
11987         * printing.el: Doc fix.  New doc section (Tips).
11989 2004-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
11991         * type-break.el (type-break-emacs-variant): Remove.
11992         (type-break-run-at-time, type-break-cancel-function-timers):
11993         Use fboundp rather than version name and number.
11995 2004-03-09  Masatake YAMATO  <jet@gyve.org>
11997         * hexl.el (hexl-mode): Use `make-local-variable' instead of
11998         `make-variable-buffer-local'.
12000 2004-03-08  Michael Albinus  <Michael.Albinus@alcatel.de>
12002         * find-dired.el (find-dired): Call `shell-command' instead of
12003         `start-process-shell-command'.  By this, Tramp takes over
12004         handling of remote directories.
12006 2004-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12008         * newcomment.el (comment-use-global-state): New var.
12009         (comment-search-forward): Use it.
12011         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
12013         * cus-edit.el (fill) <defgroup>: Move to fill.el.
12015         * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
12016         (enable-kinsoku): Make it a defcustom.
12017         (fill-comment-paragraph): Don't rely on fill-prefix to bound the
12018         paragraph to same-comment-start-marker.
12020 2004-03-07  Dave Love  <fx@gnu.org>
12022         * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
12023         (browse-url-mail): Use it.
12025         * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
12026         (rfc2368-unhexify-string): Use replace-regexp-in-string.
12028 2004-03-07  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
12030         * woman.el (woman-man.conf-path): Doc fix.
12031         (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
12033 2004-03-07  Eli Zaretskii  <eliz@gnu.org>
12035         * sort.el (sort-columns): Remove ms-dos from the list of systems
12036         where the external `sort' command is not used.
12038 2004-03-07  Kim F. Storm  <storm@cua.dk>
12040         * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
12041         (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
12042         from overlay-arrow-variable-list.
12043         (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
12045 2004-03-06  Nick Roberts  <nick@nick.uklinux.net>
12047         * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
12048         overlay arrow string properly for the assembler buffer.
12050 2004-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12052         * mail/sendmail.el (mail-mode): Fix last change.
12054 2004-03-05  Nick Roberts  <nick@nick.uklinux.net>
12056         * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
12057         for the assembler buffer.
12058         (gdb-assembler-custom): Position the overlay arrow.
12059         (gdb-put-arrow, gdb-remove-arrow): Delete functions.
12061 2004-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12063         * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
12065         * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
12066         regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
12068         * mail/sendmail.el (mail-mode): Set comment-start-skip.
12070         * newcomment.el (uncomment-region): Allow non-terminated comment.
12071         (comment-normalize-vars): Check the user-specified comstart marker.
12073 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
12075         * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
12076         Otherwise, do use it if the region only contains font-lock text
12077         properties.
12079 2004-03-04  Masatake YAMATO  <jet@gyve.org>
12081         * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
12082         as the callback function for eldoc.
12083         (hexl-print-current-point-info): New function.
12084         (hexl-current-address): Print the address in both decimal
12085         and hexadecimal format.
12087 2004-03-04  Richard M. Stallman  <rms@gnu.org>
12089         * mail/rmail.el (rmail-convert-to-babyl-format):
12090         Specify t for UNIBYTE when calling mail-unquote-printable-region.
12092         * mail/mail-utils.el (mail-unquote-printable-region):
12093         New arg UNIBYTE.
12095         * startup.el (command-switch-alist): Doc fix.
12097         * simple.el (undo): Temporarily set this-command to `undo-start',
12098         then set it to `undo' once undo-start returns without error.
12100         * simple.el (minibuffer-history-sexp-flag): Doc fix.
12102         * simple.el (kill-line): Don't disregard trailing whitespace
12103         in eol condition, if show-trailing-whitespace is set.
12105         * mouse-sel.el (mouse-sel-has-been-enabled): New var.
12106         (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
12107         When disabling, restore old values only if mouse-sel-has-been-enabled.
12109         * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
12110         (isearch-{-char): New function.
12111         (isearch-mode-map): Bind { to isearch-{-char.
12113         * font-lock.el (lisp-font-lock-keywords-2):
12114         Turn off the CL with-... and do-... general patterns.
12115         Instead, recognize several specific with... and do... constructs.
12117         * files.el (switch-to-buffer-other-window):
12118         Bind same-window-buffer-names and same-window-regexps to nil.
12119         (switch-to-buffer-other-frame): Likewise.
12121 2004-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12123         * textmodes/fill.el (fill-comment-paragraph): Be more careful when
12124         recognizing leading comment on code line.
12126 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12128         * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
12129         hidden files/directories.
12131 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12133         * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
12134         only comment-start (in case the mode hasn't set it).
12136         * Makefile.in (AUTOGENEL): New var.
12137         (bootstrap-prepare): Rename from bootstrap-clean.
12138         Don't remove elc files.
12139         (maintainer-clean): New target.
12141         * xml.el (xml-get-attribute-or-nil): Simplify.
12143 2004-03-02  Juri Linkov  <juri@jurta.org>
12145         * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
12146         (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
12147         URL to prevent their substitution with the environment variable
12148         values by browsers.
12150 2004-03-03  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12152         * ps-print.el: Doc fix.
12153         (ps-print-version): New version number (6.6.3).
12154         (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
12155         Docstring fix.
12156         (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
12157         before printing.
12158         (ps-time-stamp-yyyy-mm-dd): New fun.
12159         (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
12161 2004-03-02  Kim F. Storm  <storm@cua.dk>
12163         * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
12165 2004-03-01  Juanma Barranquero  <lektu@terra.es>
12167         * allout.el (allout-rebullet-heading): Fix typo in docstring.
12169         * desktop.el (desktop-file-version)
12170         (desktop-after-read-hook): Fix typos.
12171         (desktop-clear-preserve-buffers): Remove redundant info in
12172         docstring already shown by the obsolescence message.
12173         (desktop-truncate, desktop-internal-v2s)
12174         (desktop-value-to-string): Change argument name to match docstring.
12176         * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
12178         * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
12179         docstring.
12181 2004-02-29  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12183         * printing.el: Replace "As Is..." in PostScript file print/preview by
12184         "No Preprocessing...".  Suggested by Colin Marquardt
12185         <_marquardt_@zmd.de>.
12186         (pr-insert-section-4): Adjust buffer interface.
12188 2004-02-29  Kai Grossjohann  <kai.grossjohann@gmx.net>
12190         Version 2.0.39 of Tramp released.
12192         * net/tramp.el (tramp-handle-file-local-copy)
12193         (tramp-handle-write-region, tramp-open-connection-rsh):
12194         Variable name typo.  Small change.  From Patrick Tullmann
12195         <tullmann@flux.utah.edu>.
12196         (tramp-process-connection-type): New variable.
12197         (tramp-maybe-open-connection): Use it.
12198         (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
12199         (tramp-touch): Set last-modified time of a remote file.
12200         (tramp-handle-write-region): Say which function is used when encoding.
12202 2004-02-29  Michael Albinus  <Michael.Albinus@alcatel.de>
12204         * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
12205         case of non-existing filename, too.  Reported by Christoph Bauer
12206         <c_bauer@informatik.uni-kl.de>.
12207         (tramp-smb-get-file-entries): The directory in question should
12208         have permissions "drwxrwxrwx".  Just virtual, because we don't
12209         know the real permissions.  Don't we know?
12210         (tramp-smb-prompt): Add virtual prompt from listing shares, too.
12211         (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
12212         (tramp-smb-wait-for-output): Optimize algorithm getting pending
12213         output.  If it was received chunkwise, there have been problems.
12214         Remove the "prompt not found" error message; it is obvious.
12215         Simplify algorithm.
12216         (tramp-smb-process-running): Remove.  Since we acknowledge the
12217         virtual prompt for shares, there's no need for distinction of
12218         reading shares (process ends afterwards) and interactive mode of
12219         smblient.
12220         (tramp-smb-open-connection): Setting process sentinel removed.
12221         (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
12222         "NT_STATUS_NETWORK_ACCESS_DENIED".
12223         (tramp-smb-maybe-open-connection): Set `process-connection-type'
12224         to 'pty.  Suggested by Piet van Oostrum <piet@cs.uu.nl>.
12225         (top-level): Setting default value in `tramp-default-method-alist'
12226         corrected.  Order of USER and HOST have been wrong.
12227         Nobody complained for months ...
12228         (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
12229         (tramp-smb-open-connection): Clear password cache if login has failed.
12231         * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
12232         `tramp-unified-filenames'.
12233         (tramp-completion-mode): Make test for XEmacs explicitely.
12234         `event-to-character' can exists in Emacs packages too.
12235         Reported by Matt Swift <swift@alum.mit.edu>.
12236         (tramp-buffer-name): Buffer name must contain the user if exists.
12237         Reported by Adrian Phillips <a.phillips@met.no>.
12238         (tramp-do-copy-or-rename-file): Handle out-of-band methods.
12239         Call `tramp-do-copy-or-rename-file-out-of-band' this case.
12240         (tramp-do-copy-or-rename-file-out-of-band): Rename from
12241         `tramp-do-copy-or-rename-file-one-local', because it handles also
12242         the case both files use the same out-of-band method.
12243         Implementation added.
12244         (tramp-handle-file-local-copy, tramp-handle-write-region):
12245         Out-of-band handling removed.  `copy-file' called instead, which
12246         calls `tramp-do-copy-or-rename-file-out-of-band'.
12247         (tramp-action-password): Check for out-of-band method removed.
12248         This function is used for 'login-program.
12249         (tramp-post-connection): Use `tramp-method-out-of-band-p' when
12250         appropriate.
12251         (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
12252         and `tramp-parse-sknownhosts'.
12253         (tramp-completion-function-alist): It's a defvar now, because we
12254         want to apply the optimized `tramp-set-completion-function'
12255         instead of a static list.
12256         (tramp-set-completion-function): Implementation tuned.
12257         Avoid double entries, and entries where the function or the
12258         file/directory doesn't exist.
12259         (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
12260         for SSH2.
12261         (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
12262         (tramp-handle-dired-compress-file): New function.
12263         (tramp-async-proc): New variable.
12264         (tramp-handle-shell-command): Adding asynchronous processes.
12265         They are far from being perfect, but it works at least for
12266         `find-grep-dired' and `find-name-dired' in Emacs 22.1.
12267         (top-level): Require password.el if visible.  Should be mandatory
12268         once No Gnus has found its way into (X)Emacs.
12269         (tramp-read-passwd): Invoke `password-read' if available,
12270         `read-passwd' otherwise.  `ange-ftp-read-passwd' isn't used as
12271         fallback any longer.
12272         (tramp-clear-passwd): New function.
12273         (tramp-process-actions, tramp-process-multi-actions):
12274         Clear password cache if login has failed.
12276         * net/tramp-ftp.el (Commentary): Remove pointer to EFS.  It has
12277         its own module.
12278         (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
12279         `ange-ftp-ftp-name-res'.  There could be incorrect values from
12280         previous calls in case the "ftp" method is used in the Tramp file
12281         name.  Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
12283 2004-02-28  Richard M. Stallman  <rms@gnu.org>
12285         * term.el (term-mouse-paste): Call mouse-set-point.
12287         * thumbs.el: New file.
12289 2004-02-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12291         * progmodes/ebnf-abn.el: Doc fix.
12293         * progmodes/ebnf-bnf.el: Doc fix.
12294         (ebnf-repeat): Code fix.
12296         * progmodes/ebnf2ps.el: Doc fix.
12297         (ebnf-syntax-directory, ebnf-syntax-file): New funs.
12299 2004-02-28  Juri Linkov  <juri@jurta.org>
12301         * ffap.el (dired-at-point): Additional writability test for
12302         relative directory names.
12303         (dired-at-point-prompter): Treat directories as a directory, get
12304         the directory component from files.
12305         (ffap-string-at-point): Return string from region if region is active.
12306         (ffap-file-at-point): Remove redundant code.
12308 2004-02-28  Kim F. Storm  <storm@cua.dk>
12310         * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
12311         Initialize margin area images to nil.
12312         (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
12313         (breakpoint-enabled-bitmap-face)
12314         (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
12315         (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
12316         (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
12317         (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
12318         (gdb-reset): Use gdb-remove-breakpoint-icons.
12319         (gdb-put-string): Add dprop arg to specify alternative display
12320         property (for setting fringe bitmap).
12321         (gdb-remove-strings): Doc fix.
12322         (gdb-put-breakpoint-icon): New defun which displays a breakpoint
12323         icon in fringe (if available), or else as icon or text in display
12324         margin.  Creates necessary icons in breakpoint-bitmap,
12325         breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
12326         Also make left window margin if required.
12327         (gdb-remove-breakpoint-icons): New defun to remove breakpoint
12328         icons inserted by gdb-put-breakpoint-icon.  Remove left margin if
12329         no longer needed.
12330         (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
12331         gdb-put-breakpoint-icon.
12332         (gdb-assembler-mode): Don't set left-margin-width here.
12334 2004-02-27  Kevin Ryde  <user42@zip.com.au>
12336         * info-look.el: In scheme-mode symbol regexp, disallow backquote and
12337         comma, so that it DTRT in macros.
12339 2004-02-27  Markus Rost  <rost@mathematik.uni-bielefeld.de>
12341         * progmodes/sh-script.el (sh-shell-arg)
12342         (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
12343         (sh-leading-keywords, sh-other-keywords): Fix custom type.
12345 2004-02-27  Dan Nicolaescu  <dann@ics.uci.edu>
12347         * faces.el (face-spec-set-match-display): Add a new attribute,
12348         `min-colors'.
12349         (region, highlight, secondary-selection): Use `min-colors'.
12351         * custom.el (defface): Add documentation for `min-colors'.
12353         * font-lock.el (font-lock-comment-face, font-lock-string-face)
12354         (font-lock-keyword-face, font-lock-function-name-face)
12355         (font-lock-variable-name-face, font-lock-constant-face):
12356         Use `min-colors'.
12358         * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
12360 2004-02-25  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12362         * progmodes/ebnf2ps.el: Doc fix.  For compatibility with Emacs 20,
12363         define assq-delete-all if it's not defined.
12364         (ebnf-generate-region): Code fix.
12366         * printing.el: Doc fix.
12367         (pr-version): New version number (6.7.2).
12368         (pr-command): Return empty string if command is an empty string.
12370 2004-02-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12372         * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
12374         * progmodes/ebnf2ps.el: Doc fix.  Accept ABNF (Augmented BNF).  New
12375         arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
12376         semi-down-full.  Fix a bug on productions like test = {"test"}* | (
12377         "tt" ["test"] ).  Reported by Markus Dreyer
12378         <mdreyer@ix.urz.uni-heidelberg.de>.
12379         (ebnf-version): New version number (4.0).
12380         (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
12381         (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
12382         (ebnf-delete-style): New commands.
12383         (ebnf-directory, ebnf-file): New funs.
12384         (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
12385         (ebnf-production-name-p, ebnf-stop-on-error): New options.
12386         (ebnf-syntax-alist): New var.
12387         (ebnf-element-width): New fun replacing ebnf-list-width.
12388         (ebnf-arrow-shape, ebnf-syntax): Custom fix.
12389         (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
12390         (ebnf-prologue): Adjust vars.
12391         (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
12392         (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
12393         (ebnf-check-style-values, ebnf-generate-production)
12394         (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
12395         (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
12396         (ebnf-token-repeat): Code fix.
12398         * progmodes/ebnf-yac.el: Doc fix.  Handle Bison pragmas %nonassoc,
12399         %right, %left and %prec.  Suggested by Matthew K. Junker
12400         <junker@alum.mit.edu>.
12401         (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
12403         * progmodes/ebnf-iso.el: Doc fix.
12404         (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
12405         (ebnf-iso-lex): Code fix.
12407         * progmodes/ebnf-bnf.el: Doc fix.
12408         (ebnf-bnf-lex): Code fix.
12410         * progmodes/ebnf-otz.el: Doc fix.
12412 2004-02-23  Luc Teirlinck  <teirllm@auburn.edu>
12414         * abbrev.el (write-abbrev-file): Make argument optional.  Doc fix.
12415         (abbrev-prefix-mark): Doc fix.
12417 2004-02-23  Nick Roberts  <nick@nick.uklinux.net>
12419         * gdb-ui.el (gud-watch): Load tooltip, if necessary.
12420         (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
12421         (gdb-var-delete): Make interactive (really).
12422         (gdb-edit-value): Make non-interactive.
12424         * progmodes/gud.el (gud-speedbar-menu-items):
12425         Add gdb-var-delete and, indirectly, gdb-edit-value.
12426         (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
12427         (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
12428         (gud-gdb-marker-filter): Add comment for annotations.
12430 2004-02-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
12432         * calendar/calendar.el (generate-calendar)
12433         (calendar-read-date): Prevent display of BC calendars once more -
12434         reverts 2003-10-01 change.
12435         (generate-calendar-month): Doc fix.
12437 2004-02-03  Matthew Mundell  <matt@mundell.ukfsn.org>  (tiny change)
12439         * calendar/diary-lib.el (fancy-diary-display): Don't rely on
12440         return value of increment-calendar-month.
12442 2004-02-21  Stephen Compall  <s11@member.fsf.org>
12444         * saveplace.el (save-place-forget-unreadable-files)
12445         (save-place-save-skipped, save-place-skip-check-regexp): New vars.
12446         (save-place-forget-unreadable-files): New function.
12447         (save-place-alist-to-file): Use it to filter out files that are
12448         no longer readable.
12450         * textmodes/texinfo.el (texinfo-insert-@item): Look for the
12451         current Texinfo environment, using the same method as in
12452         `texinfo-insert-@end', and insert a space rather than a newline if
12453         point in a @table environment.
12455 2004-02-21  Juri Linkov  <juri@jurta.org>
12457         * ffap.el (ffap-file-at-point): Try parent directories.
12459 2004-02-21  Klaus Zeitler  <kzeitler@lucent.com>
12461         * vcursor.el (vcursor-modifiers): New defcustom.
12462         (vcursor-cs-binding): Use vcursor-modifiers instead of a
12463         hard-coded list.
12465 2004-02-21  Masatake YAMATO  <jet@gyve.org>
12467         * play/animate.el (animate-birthday-present): Accept names other
12468         than `Sarah', too.
12470 2004-02-21  Juri Linkov  <juri@jurta.org>
12472         * startup.el: Remove table of command line arguments from the
12473         Commentary section.
12475 2004-02-20  John Wiegley  <johnw@newartisans.com>
12477         * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
12478         again" modifier from 'e' to 'E', since 'e' is also used by the
12479         "file extension" modifier.
12481 2004-02-19  Luc Teirlinck  <teirllm@auburn.edu>
12483         * help-fns.el (describe-categories): Doc fix.
12485 2003-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
12487         * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
12488         temporary file for buffer already visiting one.  This change makes
12489         output likely to be directly usable by patch program.
12490         Suggested by Adrian Aichner  <adrian@xemacs.org>
12492 2004-02-20  Nick Roberts  <nick@nick.uklinux.net>
12494         * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
12495         case of variables defined in compound statements.
12496         (gdb-setup-windows, gdb-source-info, gdb-source-info):
12497         Simplify constructions using switch-to-buffer.
12499 2004-02-19  Simon Josefsson  <jas@extundo.com>
12501         * play/morse.el: Fix typo.
12502         (morse-code): Add @.
12504 2004-02-19  Glenn Morris  <gmorris@ast.cam.ac.uk>
12506         * calendar/appt.el (appt-display-format): Change default to
12507         'ignore, for backwards compatibility.
12508         (appt-display-message): If appt-display-format is 'ignore,
12509         respect old vars appt-msg-window and appt-visible.
12510         (appt-activate): Don't depend on return value of cancel-timer.
12512         * calendar/calendar.el (calendar-holidays): Doc fix.
12514         * calendar/cal-coptic.el (coptic-prompt-for-date):
12515         Use assoc-string instead of assoc-ignore-case.
12516         * calendar/cal-french.el (calendar-goto-french-date): Ditto.
12517         * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
12518         (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
12519         * calendar/cal-islam.el (calendar-goto-islamic-date)
12520         (mark-islamic-diary-entries): Ditto.
12521         * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
12522         * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
12523         (calendar-read-mayan-tzolkin-date): Ditto.
12524         * calendar/calendar.el (calendar-read-date): Ditto.
12525         * calendar/diary-lib.el (mark-diary-entries): Ditto.
12527 2004-02-18  Markus Rost  <rost@mathematik.uni-bielefeld.de>
12529         * progmodes/executable.el (executable-command-find-posix-p):
12530         Fix choice of the directory.
12532 2004-02-17  Luc Teirlinck  <teirllm@auburn.edu>
12534         * simple.el (interprogram-cut-function)
12535         (interprogram-paste-function, kill-new, kill-append):
12536         Doc fixes.
12537         (kill-region): Make it return nil.  Doc fix.
12538         (yank-pop): Make its argument optional.
12539         (yank): Make ARG `-' equivalent to `-1'.
12541 2004-02-17  Eli Zaretskii  <eliz@gnu.org>
12543         * mail/rmail.el (rmail-get-new-mail): Don't reference
12544         rmail-use-spam-filter if rmail-spam-filter is not loaded.
12546 2004-02-16  Luc Teirlinck  <teirllm@auburn.edu>
12548         * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
12549         if one of global-auto-revert-non-file-buffers or autorevert-mode
12550         is non-nil.
12552 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
12554         * subr.el (delete-dups): A better implementation from Karl Heuer
12555         <kwzh@gnu.org>.
12557 2004-02-16  Matt Hodges  <matt@stchem.bham.ac.uk>  (tiny change)
12559         * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
12560         correct place.
12561         * progmodes/icon.el (icon-indent-command): Ditto.
12562         * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
12564 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
12566         * progmodes/grep.el (grep-compute-defaults): Undo change from
12567         2004-01-29: don't use executable-command-find-posix-p.
12569 2004-02-16  Richard Sharman  <rsharman@pobox.com>
12571         * hilit-chg.el: Use require instead of eval-and-compile.
12572         (highlight-compare-buffers): New function.
12574 2004-02-16  John Basrai  <jbasrai@comcast.net>  (tiny change)
12576         * man.el (Man-fontify-manpage): Render section headings in
12577         `Man-overstrike-face' even when overstrike was not used by man
12578         formatter for section headings.
12580 2004-02-16  Eli Tziperman  <eli@deas.harvard.edu>
12582         * rmail-spam-filter.el: (vm-use-spam-filter)
12583         (rsf-min-region-length-added-to-spam-list): New variables.
12584         (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
12585         rmail-bbdb-auto-delete-spam-entries.  Add cc: to recipients for
12586         spam testing.  Don't delete spam message if automatic deletion
12587         after output via variable rmail-delete-after-output is turned on.
12588         (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
12589         rsf-bbdb-dont-create-entries-for-spam.
12590         (check-field): New function, extracted from code in
12591         rmail-spam-filter to ease addition of header fields like content-type.
12592         (message-content-type): New variable to check the content-type:
12593         field added, also in defcustom of rsf-definitions-alist.
12594         (rmail-spam-filter): Replace repeated test code for header fields
12595         by calls to check-field; change the call to
12596         rmail-output-to-rmail-file such that rmail-current-message stays
12597         the same to avoid wrong deletion of unseen flags.
12598         (rsf-add-contents-type): New function to convert old format
12599         of rmail-spam-definitions-alist into new one.
12600         Change prefixes of all variables and functions from
12601         rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
12603 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
12605         * loadhist.el (unload-hook-features-list): New defvar.
12607 2004-02-16  Dave Love  <fx@gnu.org>
12609         * loadhist.el (unload-feature): Doc fix.  Rename flist to
12610         unload-hook-features-list.
12612 2004-02-16  Jay Belanger  <belanger@truman.edu>  (tiny change)
12614         * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
12615         cookie.  Don't check if we are looking-at open-formula.
12617 2004-02-16  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
12619         * subr.el (match-string-no-properties): Use substring-no-properties.
12621 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
12623         * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
12624         (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
12625         Use lower-case "rx" in all error message.
12627 2004-02-16  Dave Love  <fx@gnu.org>
12629         * emacs-lisp/rx.el (rx-or): Put group around result.
12630         (rx-constituents): Add backref.
12631         (rx-syntax): Add string-delimiter, comment-delimiter.
12632         (rx-categories): Add combining-diacritic.
12633         (rx-check-not, rx-greedy, rx): Doc fix.
12634         (rx-backref, rx-check-backref): New.
12636 2004-02-16  Jesper Harder  <harder@ifa.au.dk>
12638         * newcomment.el (uncomment-region): Allow eob as comment end.
12640 2004-02-16  Jari Aalto  <jari.aalto@poboxes.com>
12642         * filecache.el: All message and error commands now use prefix
12643         "Filecache:" to make it easy to read *Messages* buffer.
12645 2004-02-16  Jari Aalto  <jari.aalto@poboxes.com>
12647         * autorevert.el: Add support to detect changed dired and VC buffers.
12648         (auto-revert-active-p, auto-revert-list-diff)
12649         (auto-revert-dired-file-list, auto-revert-dired-changed-p)
12650         (auto-revert-handler, auto-revert-active-p): New functions.
12651         (auto-revert-buffers): Move revert logic to `auto-revert-handler'
12652         and `auto-revert-active-p'.
12653         (eval-when-compile): Defvar dired-directory and vc-mode.
12654         (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
12655         (auto-revert-handler-vc): New functions.
12657 2004-02-16  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12659         * progmodes/compile.el (compilation-directory): New defvar.
12660         (compile): Save current directory in compilation-directory.
12661         (recompile): Bind default-directory to compilation-directory if
12662         that is non-nil.
12664 2004-02-16  Dave Love  <fx@gnu.org>
12666         * newcomment.el (comment-insert-comment-function)
12667         (comment-region-function, uncomment-region-function): New.
12668         (comment-indent): Use comment-insert-comment-function.
12669         (uncomment-region): Use uncomment-region-function.
12670         (comment-region): Use comment-region-function.
12672         * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
12674 2004-02-16  Richard Stallman  <rms@gnu.org>
12676         * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
12677         loaddefs* and ldefs-boot*.
12679 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
12681         * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
12682         and email address at the beginning and end of the address.
12684         * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
12685         anchored at the beginning of the email address.
12687 2004-02-16  TAKAI Kousuke  <tak@kmc.gr.jp>  (tiny change)
12689         * international/ccl.el (ccl-compile-write): Pass `left' to
12690         ccl-embed-code to generate correct code of write-expr-register.
12692 2004-02-15  Dan Nicolaescu  <dann@ics.uci.edu>  (tiny change)
12694         * progmodes/grep.el (grep-compute-defaults): Fix typos.
12696 2004-02-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12698         * x-dnd.el: Mention support for Motif in commentary.
12699         (x-dnd-handle-drag-n-drop-event): Ditto.
12701 2004-02-14  Jonathan Yavner  <jyavner@member.fsf.org>
12703         * ses.el: Use "ses--" prefixes for buffer-local variables.
12704         Use (point-min) instead of 1, even when we know the buffer
12705         is unnarrowed.
12706         (ses-build-load-map): Delete.  Distribute its content to defconst's for
12707         the three maps.
12708         (ses-menu, ses-header-line-menu): New menus.
12709         (ses-mode-map): Use them.
12710         (ses-read-number) New fun.  Duplicates code from interactive "N" spec.
12712 2004-02-14  Martin Stjernholm  <bug-cc-mode@gnu.org>
12714         * Makefile.in: Fix the CC Mode recompile kludge so it works
12715         when building in a different directory.
12717 2004-02-13  Luc Teirlinck  <teirllm@auburn.edu>
12719         * simple.el (kill-new): Put yank-handler property on the entire string.
12721 2004-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12723         * diff.el: Don't use compile any more, use diff-mode instead.
12724         (diff-regexp-alist, diff-old-file, diff-new-file)
12725         (diff-parse-differences, diff-process-setup): Remove.
12726         (diff-sentinel): New fun.
12727         (diff): Use it.  Run the process ourselves.
12728         Use diff-mode for the rest of the processing.
12730         * diff.el (diff): Simplify code handling `switch'.
12732 2004-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12734         * pcvs-defs.el (cvs-menu): Add `tag'.
12736 2004-02-11  Luc Teirlinck  <teirllm@auburn.edu>
12738         * simple.el (kill-append): Doc fix.
12740         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12741         Adapt outline-regexp to the new conventions for commenting out code.
12743 2004-02-11  John Paul Wallington  <jpw@gnu.org>
12745         * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
12747 2004-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12749         * diff.el (diff-switches): New fun.
12750         (diff, diff-backup): Use it.
12751         (diff): Clean up the args construction.  Use backquote.
12752         Use listp instead of consp to avoid putting a nil arg.
12753         (diff): Add a revert-buffer function.
12755 2004-02-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12757         * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT,  FILE_NAME
12758         handled by x-dnd-handle-file-name.
12759         (x-dnd-known-types): Add COMPOUND_TEXT.
12760         (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
12761         (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
12762         x-dnd-empty-state.
12763         (x-dnd-forget-drop): Ditto.
12764         (x-dnd-save-state): Add optional parameter extra-data (for Motif).
12765         (x-dnd-handle-one-url): Return private when inserting text.
12766         (x-dnd-insert-ctext): New function.
12767         (x-dnd-handle-file-name): New function for FILE_NAME.
12768         (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
12769         (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
12770         (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
12772 2004-02-10  Kenichi Handa  <handa@m17n.org>
12774         * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
12775         instead of while loop.
12777 2004-02-10  Miles Bader  <miles@gnu.org>
12779         * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
12781 2004-02-09  Kenichi Handa  <handa@m17n.org>
12783         * tar-mode.el (tar-extract): Fix for the case that a file doesn't
12784         have end-of-line.
12786 2004-02-09  Martin Stjernholm  <bug-cc-mode@gnu.org>
12788         * Makefile.in: Added extra dependencies in the recompile target
12789         needed to cope with the compile time macro expansions in CC Mode.
12791 2004-02-09  Kim F. Storm  <storm@cua.dk>
12793         * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
12794         (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
12795         (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
12796         (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
12797         (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
12798         (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
12799         (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
12800         (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
12801         (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
12802         (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
12803         (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
12805 2004-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12807         * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
12808         Don't allow shrink if there's a window on our right.
12810         * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
12811         (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
12812         Bring together declaration and initialization.
12813         (prolog-mode-variables): Don't set the syntax table.
12814         Don't set paragraph-start and comment-indent-function.
12815         Add /*..*/ to the comment regexps.
12816         (prolog-mode-commands): Remove.  Do it during init of prolog-mode-map.
12817         (prolog-mode-map): Don't bind TAB.
12818         (prolog-mode): Set the syntax table.
12819         (prolog-comment-indent): Remove.
12820         (inferior-prolog-mode-map): Initialize in the declaration.
12821         (inferior-prolog-mode-syntax-table)
12822         (inferior-prolog-mode-abbrev-table): New vars.
12823         (inferior-prolog-mode): Derive from comint-mode.
12824         (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
12825         minibuffer windows.
12827         * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
12828         in file names, as long as it is unabmiguous.
12830 2004-02-08  Andreas Schwab  <schwab@suse.de>
12832         * textmodes/reftex-toc.el
12833         (reftex-toc-load-all-files-for-promotion): Remove useless use of
12834         format.  Doc fix.
12836         * textmodes/refer.el (refer-find-entry-internal): Remove extra
12837         format string arguments.
12839         * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
12840         string argument.
12842         * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
12844         * play/zone.el (zone-call): Fix format string.
12846         * net/webjump.el (webjump-builtin): Add missing format string argument.
12848         * midnight.el (midnight-delay-set): Remove extra format string argument.
12850         * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
12852         * hexl.el (hexl-insert-char): Add missing format string argument.
12854         * format.el (format-decode): Fix format string.
12856         * emulation/vi.el (vi-mode): Remove extra format string argument.
12857         (vi-repeat-last-search): Likewise.
12858         (vi-reverse-last-search): Likewise.
12859         (vi-goto-mark): Likewise.
12860         (vi-reverse-last-find-char): Likewise.
12861         (vi-repeat-last-find-char): Likewise.
12862         (vi-locate-def): Likewise.
12864         * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
12866         * ediff-util.el (ediff-toggle-read-only): Remove extra format
12867         string argument.
12868         (ediff-toggle-regexp-match): Likewise.
12870         * dired-aux.el (dired-do-query-replace-regexp): Add missing
12871         format string argument.
12873         * calc/calc-map.el (calc-get-operator): Remove extra format
12874         string argument.
12876         * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
12878         * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
12879         string argument.
12881         * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
12883         * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
12885         * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
12887         * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
12888         (cl-struct-setf-expander): Likewise.
12890         * vc.el (with-vc-file): Fix unsafe uses of error.
12891         (vc-cancel-version): Likewise.
12893 2004-02-08  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>  (tiny change)
12895         * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
12896         thousands separator; fixes <class>:<line-number> regexp for
12897         non-english locales.
12899 2004-02-08  Andreas Schwab  <schwab@suse.de>
12901         * view.el (view-mode-enable): Revert previous change.
12903 2004-02-07  Kim F. Storm  <storm@cua.dk>
12905         * simple.el (line-number-at-pos): Rename from line-at-pos.
12906         Uses changed (what-line and vc-annotate-warp-version).
12908 2004-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12910         * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
12911         (diff-mode): Remove aborted attempt at support for compile.el.
12912         (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
12914 2004-02-06  Andreas Schwab  <schwab@suse.de>
12916         * view.el (view-mode-enable): Add view-mode-map to
12917         minor-mode-overriding-map-alist.
12919 2004-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12921         * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
12923 2004-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12925         * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
12926         with point inside rather than after the paragraph.
12928 2004-02-04  Sam Steingold  <sds@gnu.org>
12930         * mail/smtpmail.el (smtpmail-try-auth-methods):
12931         Do not try authentication when no mechanism is available.
12932         Pass port-name as defaultport to `netrc-machine'.
12934 2004-02-04  Stephen Eglen  <stephen@gnu.org>
12936         * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
12937         to show how minibuffer height can be constrained.
12939 2004-02-04  John Paul Wallington  <jpw@gnu.org>
12941         * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
12943 2004-02-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12945         * x-dnd.el: New file for drag and drop.
12947         * term/x-win.el: require x-dnd, set after-make-frame-functions
12948         to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
12949         drag-n-drop event.
12951         * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
12952         (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
12953         (dired-dnd-handle-file): New functions for drag and drop support.
12954         (dired-mode): Initialize drag and drop if x-dnd present.
12956 2004-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12958         * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
12959         (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
12960         (cperl-mode): Set fill-paragraph-function.
12961         (cperl-fill-paragraph): Make it non-interactive.
12963 2004-02-02  Benjamin Rutt  <brutt@bloomington.in.us>
12965         * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
12967 2004-02-02  David Kastrup  <dak@gnu.org>
12969         * replace.el (perform-replace): Allow 'literal argument in
12970         regexp-flag to indicate literal replacement.
12971         (query-replace-regexp-eval): Use it.
12973 2004-02-01  Andreas Schwab  <schwab@suse.de>
12975         * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
12977 2004-02-01  Stephen Eglen  <stephen@gnu.org>
12979         * info-look.el: Add support for maxima-mode.  Update commentary
12980         because info-lookup-symbol is now bound to C-h S.
12982 2004-01-31  Luc Teirlinck  <teirllm@auburn.edu>
12984         * simple.el (edit-and-eval-command): Bind print-level and
12985         minibuffer-history-sexp-flag around call to read-from-minibuffer.
12986         Correct initial position in command-history.
12988 2004-01-30  Luc Teirlinck  <teirllm@auburn.edu>
12990         * files.el (read-directory-name): Adapt the docstring to recent
12991         change in Fread_file_name.
12993 2004-01-30  Jonathan Yavner  <jyavner@member.fsf.org>
12995         * ses.el (ses-print-cell): If print format too wide for column
12996         width, truncate decimal places if that helps to avoid "#####" fill.
12997         * ses.el (ses-initial-column-width): Revert previous change.
12999 2004-01-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13001         * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
13002         (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
13003         Add edebug info.
13004         (jit-lock-mode): Setup/cancel the new timer.
13005         (jit-lock-context-fontify): New fun.  Extracted from
13006         context fontification code of jit-lock-stealth-fontify.
13007         (jit-lock-stealth-fontify): Don't do context fontification any more.
13009         * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
13010         (jit-lock-fontify-now): Handle the `quit' case.
13011         (jit-lock-contextually): Rename from jit-lock-defer-contextually.
13013 2004-01-29  Jari Aalto  <jari.aalto@poboxes.com>
13015         * progmodes/executable.el (executable-command-find-posix-p):
13016         New.  Check if find handles arguments Posix-style.
13018         * progmodes/grep.el (grep-compute-defaults):
13019         Use executable-command-find-posix-p.
13020         (grep-find): Check `grep-find-command'.
13022         * filecache.el (file-cache-find-posix-p): Delete.
13023         (file-cache-add-directory-using-find):
13024         Use `executable-command-find-posix-p'.
13026 2004-01-29  Dave Love  <fx@gnu.org>
13028         * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
13029         Iterate the hook function if arg is given.
13030         (mark-defun, narrow-to-defun): Change order of finding the limits.
13032         * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
13033         (byte-compile-format-warn): New.
13034         (byte-compile-callargs-warn): Use it.
13035         (Format, message, error): Add byte-compile-format-like property.
13036         (byte-compile-maybe-guarded): New.
13037         (byte-compile-if, byte-compile-cond): Use it.
13038         (byte-compile-lambda): Compile interactive forms,
13039         just to make warnings about them.
13041 2004-01-29  Jonathan Yavner  <jyavner@member.fsf.org>
13043         * ses.el (ses-initial-column-width): Increase to 14, so it will
13044         work well with the default printer of "%.7g" for extreme values
13045         like "-1.234567e+07".
13047 2004-01-29  Kenichi Handa  <handa@m17n.org>
13049         * term/x-win.el (x-selection-value): Optimize for ASCII only case.
13051 2004-01-28  Peter 'Luna' Runestig  <peter@runestig.com>
13053         * dos-w32.el: Added support for the `default-printer-name' function.
13055 2004-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13057         * server.el (server-socket-name): Don't use the hostname in the
13058         socket name since /tmp is local to the host anyway.
13060         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
13061         robust check of widening and fix var-naming.
13063 2004-01-27  Eli Tziperman  <eli@deas.harvard.edu>
13065         * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
13066         or rmail-spam- to rsf- in all function and variable names.
13067         (rsf-min-region-to-spam-list): New variable.
13068         (rsf-bbdb-auto-delete-spam-entries): Rename from
13069         rmail-bbdb-auto-delete-spam-bbdb-entries.  The cc: field is
13070         scanned together with the recipients field for spam testing; Don't
13071         delete spam message if rmail-delete-after-output is non-nil;
13072         (rsf-check-field): New function, extracted from code in
13073         rmail-spam-filter to ease addition of header fields like
13074         content-type:;
13075         (message-content-type): New variable.  The content-type: field was
13076         added also in defcustom of rsf-definitions-alist;
13077         (rmail-spam-filter): Replace repeated test code for header fields
13078         by calls to check-field; change the call to
13079         rmail-output-to-rmail-file such that rmail-current-message stays
13080         the same to avoid wrong deletion of unseen flags.
13081         (rmail-use-spam-filter): Add autoload cookie.
13083 2004-01-27  Jari Aalto  <jari.aalto@poboxes.com>
13085         * filecache.el (file-cache-find-posix-p): New function.  Detect Cygwin.
13086         (file-cache-add-directory-using-find): Add Cygwin support.
13087         (file-cache-find-command-posix-flag): New user variable.
13089         * filecache.el (file-cache-add-directory): Check for
13090         directories an remove them from dir-files.
13092 2004-01-27  Richard M. Stallman  <rms@gnu.org>
13094         * man.el (Man-fontify-manpage): Clean up message.
13096 2004-01-27  Kenichi Handa  <handa@m17n.org>
13098         * textmodes/paragraphs.el (sentence-end-without-space): New variable.
13099         (sentence-end): Define using sentence-end-without-space.
13101         * textmodes/fill.el (fill-delete-newlines): Don't add a space if
13102         a sentence ends with one of a character in sentence-end-without-space.
13104 2004-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13106         * font-lock.el (font-lock): Add jit-lock as explicit group member.
13107         (jit-lock): Group declaration moved to jit-lock.el.
13108         (toplevel): Don't explicitly require jit-lock, since it's autoloaded
13109         when necessary.
13111         * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
13112         (jit-lock-context-unfontify-pos): Rename from
13113         jit-lock-first-unfontify-pos.
13114         (jit-lock-defer-buffers): Rename from jit-lock-buffers.
13116 2004-01-25  Glenn Morris  <gmorris@ast.cam.ac.uk>
13118         * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
13119         (fortran-break-delimiters-re, fortran-no-break-re): New consts.
13120         (fortran-fill): When filling a string, adjust re-search-backward
13121         argument for special case of string just on fill-column.
13122         When filling non-string, allow one extra char if
13123         fortran-break-before-delimiters is non-nil.
13124         Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
13125         Use fortran-break-delimiters-re and fortran-no-break-re to
13126         correctly handle cases such as "**".
13128         * progmodes/f90.el (f90-break-delimiters): Doc fix.
13129         (f90-no-break-re): Add some extra tokens.  Doc fix.
13131 2004-01-24  Thien-Thi Nguyen  <ttn@gnu.org>
13133         * mail/rmail-spam-filter.el:
13134         Use two semicolons as Commentary line prefix.
13135         Add ";;; Code:" stylized comment.
13136         Delete end-of-line whitespace.
13137         Wrap (require 'cl) with `eval-when-compile'.
13139 2004-01-23  Benjamin Rutt  <brutt@bloomington.in.us>
13141         * vc.el (vc-annotate): Fix improper use of `make-local-variable'
13142         at the top level of vc.el.
13144 2004-01-23  Andre Spiegel  <spiegel@gnu.org>
13146         * vc.el (vc-current-line): Function removed.  This is now done by
13147         the new function line-at-pos in simple.el.
13148         (vc-annotate-warp-version): Use line-at-pos instead of
13149         vc-current-line.
13151 2004-01-22  Kim F. Storm  <storm@cua.dk>
13153         * simple.el (line-at-pos): New defun.
13154         (what-line): Use it.  Optimize by only counting lines in narrowed
13155         region once.
13157 2004-01-22  Kenichi Handa  <handa@m17n.org>
13159         * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
13160         point (register r1) only for charset mule-unicode-0100-24ff.
13162 2004-01-21  Markus Rost  <rost@mathematik.uni-bielefeld.de>
13164         * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
13165         trailing white space and ensure a final newline.
13167         * mail/rmail-spam-filter.el (rmail-use-spam-filter):
13168         Add autoload cookie.
13170 2004-01-21  Benjamin Rutt  <brutt@bloomington.in.us>
13172         * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
13173         activate view-mode explicitly.
13175 2004-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13177         * term/x-win.el: Call menu-bar-enable-clipboard and make Paste
13178         use clipboard first.
13180 2004-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13182         * vc-mcvs.el (vc-mcvs-mode-line-string): Remove.  Does not work.
13183         (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
13184         (vc-mcvs-cvs): Remove.
13185         (vc-mcvs-command): Remove use of assert.
13187         * outline.el (outline-insert-heading): Tighten up match.
13188         (outline-demote, outline-move-subtree-down): Don't assume anything
13189         about outline-regexp.
13191         * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
13192         (texinfo-show-structure): Explicitly add ^, and simplify.
13194 2004-01-20  Glenn Morris  <gmorris@ast.cam.ac.uk>
13196         * calendar/appt.el (appt-check): Restore usage of
13197         appt-issue-message deleted in previous change.
13198         (top-level): Activate package when loaded (needed for backwards
13199         compatibility).
13201 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
13203         * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
13204         following previous change to smtpmail-send-data.
13206 2004-01-20  Benjamin Rutt  <brutt@bloomington.in.us>
13208         * vc.el (vc-default-previous-version): Doc enhancement.
13209         (vc-default-next-version): New function.
13210         (vc-print-log): New arg FOCUS-REV.
13211         (vc-annotate-mode): Derive from view-mode.
13212         (vc-annotate): New args REVISION, DISPLAY-MODE.
13213         (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
13214         (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
13215         (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
13216         (vc-annotate-show-diff-revision-at-line, vc-current-line)
13217         (vc-annotate-prev-version, vc-annotate-next-version): New functions.
13219         * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
13221 2004-01-19  Karl Berry  <karl@gnu.org>
13223         * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
13224         or "TexInfo".
13226 2004-01-19  Luc Teirlinck  <teirllm@auburn.edu>
13228         * subr.el (delete-dups): New function.
13230 2004-01-19  Karl Berry  <karl@gnu.org>
13232         * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
13233         with ^, since that's what texinfo-show-structure
13234         documentation says (plus it works much better in texinfo.txi).
13236 2004-01-18  Jesper Harder  <harder@ifa.au.dk>
13238         * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
13240 2004-01-18   David Ponce  <david@dponce.com>  (tiny change)
13242         * progmodes/which-func.el (which-function-mode): Don't cancel
13243         which-func-update-timer if not set.
13245 2004-01-17  Thien-Thi Nguyen  <ttn@gnu.org>
13247         * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
13248         Remove spurious left square bracket in XX:XXam regexp.
13250 2004-01-16  Luc Teirlinck  <teirllm@auburn.edu>
13252         * progmodes/cc-defs.el: Do not require cl at run time.
13254 2004-01-16  Richard M. Stallman  <rms@gnu.org>
13256         * emacs-lisp/cl.el (cl-cannot-unload): New function.
13257         (cl-unload-hook): Defvar this to run cl-cannot-unload.
13259         * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
13260         Call rmail-spam-filter.  Delete and expunge spam.
13261         Print number of spam messages deleted.
13262         Save and restore the deletion status of old messages when reading
13263         new mail with spam filter, so that expunging spam does not expunge
13264         msgs deleted by the user.
13265         (rmail-only-expunge): Add an optional argument dont-show to
13266         prevent showing message after expunge.
13268 2004-01-15  Luc Teirlinck  <teirllm@auburn.edu>
13270         * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
13271         * subr.el (declare): New macro.
13273 2004-01-15  Thien-Thi Nguyen  <ttn@gnu.org>
13275         * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
13277 2004-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13279         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
13280         Test window-system rather than system-type (for X11/Mac).
13282 2004-01-12  Luc Teirlinck  <teirllm@auburn.edu>
13284         * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
13286 2004-01-12  Richard M. Stallman  <rms@gnu.org>
13288         * mail/rmail.el (rmail-convert-to-babyl-format):
13289         Use mail-unquote-printable-region.
13290         (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
13291         (rmail-hex-char-to-integer): Functions deleted.
13293         * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
13294         (mail-unquote-printable-region): New arg NOERROR.
13295         For invalid encoding, either signal an error to just return nil.
13297 2004-01-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
13299         * calendar/appt.el: Update copyright and commentary.
13300         (appt-issue-message): Make obsolete.
13301         (appt-visible, appt-msg-window): Make obsolete, in favour of
13302         appt-display-format.
13303         (appt-display-mode-line, appt-display-duration)
13304         (appt-display-diary, appt-time-msg-list, appt-mode-string)
13305         (appt-prev-comp-time, appt-display-count, appt-timer)
13306         (appt-convert-time): Doc change.
13307         (appt-disp-window-function, appt-delete-window-function):
13308         Use defcustom rather than defvar.
13309         (appt-display-format): New variable.
13310         (appt-display-message): New function with display code from appt-check.
13311         (appt-check): Add optional FORCE argument.  Doc change.
13312         Add appt-make-list to diary-hook if displaying diary.
13313         Remove checking of view-diary-entries-initially.
13314         Message display section removed to new function appt-display-message.
13315         (appt-display-window): Doc change.  Remove unused internal var
13316         this-buffer.  Do not beep, since appt-display-message does that.
13317         (appt-make-list): Doc change.  Use caar.
13318         (appt-sort-list): Simplify by using builtin sort function.
13319         (appt-update-list): New function for updating appts when diary is
13320         saved.
13321         (appt-activate): New autoloaded function to toggle package
13322         functionality.
13324         * calendar/cal-x.el: (calendar-one-frame-setup)
13325         (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
13327         * calendar/calendar.el: Update copyright.
13328         (view-diary-entries-initially, european-calendar-style): Doc change.
13329         (calendar-setup): Make defcustom rather than defvar.
13330         (mark-visible-calendar-date): Initialize temp-face and faceinfo
13331         in let binding so local to function.
13333         * calendar/diary-lib.el: Update copyright.
13334         (diary, diary-entry-time): Doc change.
13335         (list-diary-entries): Doc change.  Trivial logic change.
13336         (fancy-diary-display): Restore make-face command mistakenly
13337         deleted 2003-05-08.
13338         (show-all-diary-entries): Allow to pop-up frame if needed.
13340 2004-01-09  John Paul Wallington  <jpw@gnu.org>
13342         * bindings.el (mode-line-change-eol): Add EVENT parameter.
13343         Temporarily select EVENT's window for changing eol type.
13345 2004-01-09  Deepak Goel  <deego@gnufans.org>
13347         * calendar/diary-lib.el (diary-entry-time):
13348         Also accept time in the form XX[.XX][am/pm/AM/PM].
13349         (fancy-diary-font-lock-keywords): Likewise.
13350         (diary-font-lock-keywords): Likewise.
13351         * calendar/appt.el (appt-add): Likewise.
13352         (appt-make-list): Likewise.
13353         (appt-convert-time): Likewise.
13355 2004-01-08  Nick Roberts  <nick@nick.uklinux.net>
13357         * gdb-ui.el (gdb-ann3): Revert previous change.
13358         (gdb-source-info): Allow for case of where compilation directory
13359         is not recorded.
13361 2004-01-08  John Paul Wallington  <jpw@gnu.org>
13363         * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
13365 2004-01-07  Nick Roberts  <nick@nick.uklinux.net>
13367         * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
13369         * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
13370         (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
13371         problems.
13372         (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
13374 2004-01-07  Luc Teirlinck  <teirllm@auburn.edu>
13376         * files.el (write-file-functions, write-contents-functions):
13377         Clarify docstrings.
13379 2004-01-07  Kenichi Handa  <handa@m17n.org>
13381         * international/mule.el (set-auto-coding): Fix for the case that
13382         end-of-line is only CR.
13384 2004-01-07  Kim F. Storm  <storm@cua.dk>
13386         * subr.el (event-start, event-end): Doc fix.
13387         (posn-string, posn-image): New defuns.
13388         (posn-object): Return either image or string object.
13389         (posn-object-x-y): Return 8th element of position.
13390         (posn-object-width-height): New defun.
13392 2004-01-06  Andreas Schwab  <schwab@suse.de>
13394         * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
13395         output.
13397 2004-01-05  Karl Berry  <karl@gnu.org>
13399         * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
13400         / and *, too.
13402 2003-12-31  Simon Josefsson  <jas@extundo.com>
13404         * files.el (before-save-hook): Add.
13405         (basic-save-buffer): Use before-save-hook.
13407         * emacs-lisp/copyright.el: Fix comment to recommend
13408         before-save-hook instead of write-file-functions.
13410 2004-01-05  Richard M. Stallman  <rms@gnu.org>
13412         * finder.el (finder-commentary): Call delete-other-windows.
13414         * net/ange-ftp.el (ange-ftp-file-attributes):
13415         Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
13417 2004-01-04  Karl Berry  <karl@gnu.org>
13419         * emacs-lisp/copyright.el (copyright-regexp): Allow the common
13420         comment characters % and # in the copyright year notice,
13421         as well as ;.
13423 2004-01-04  Per Abrahamsen  <abraham@dina.kvl.dk>
13425         * wid-edit.el (default): Define dummy :value-delete.
13426         Reported by Jesper Harder <harder@ifa.au.dk>.
13428 2004-01-03  Richard M. Stallman  <rms@gnu.org>
13430         * progmodes/compile.el (compile-internal): Use point, not point-min,
13431         for set-window-point.
13433         * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
13435         * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
13437         * progmodes/grep.el (grep-mode-map):
13438         Don't remap next-line, previous-line.
13440 2004-01-03  Eric M. Ludlam  <eric@siege-engine.com>
13442         * speedbar.el (speedbar-edit-line): Change regexp to position
13443         the cursor on the first character of this line's button.
13445 2004-01-03  Luc Teirlinck  <teirllm@auburn.edu>
13447         * subr.el (functionp): Doc fix.
13449 2004-01-03  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
13451         * progmodes/idlwave.el (idlwave-make-tags):
13452         * textmodes/flyspell.el (flyspell-large-region):.
13453         * progmodes/make-mode.el (makefile-query-by-make-minus-q):
13454         * emulation/viper-util.el (viper-glob-unix-files):
13455         * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
13456         * man.el (Man-init-defvars):
13457         * jka-compr.el (jka-compr-call-process):
13458         * files.el (get-free-disk-space,insert-directory):
13459         * ediff-ptch.el (ediff-test-patch-utility):
13460         * ediff-diff.el (ediff-test-utility):
13461         * dired-aux.el (dired-check-process):
13462         * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
13463         test the return value of call-process, because it can be a string.
13465 2003-12-31  John Paul Wallington  <jpw@gnu.org>
13467         * bindings.el (completion-ignored-extensions): Add .pfsl.
13469 2003-12-31  Kim F. Storm  <storm@cua.dk>
13471         * ido.el (ido-nonreadable-directory-p): New defun to check for
13472         nonreadable directory without activating tramp (to avoid problems
13473         with checking incomplete tramp paths).
13474         (ido-set-current-directory, ido-file-internal)
13475         (ido-file-name-all-completions1): Use it.
13477 2003-12-30  Luc Teirlinck  <teirllm@auburn.edu>
13479         * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
13480         documentation if the anchor (or node) name is preceded by `info
13481         anchor' or `Info anchor' in addition to earlier `info node' and
13482         `Info node'.
13483         (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
13485 2003-12-30  Eli Zaretskii  <eliz@gnu.org>
13487         * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
13488         error in arguments to base64-decode-region.  Remove ^M characters
13489         after decoding base64.
13491 2003-12-30  Simon Josefsson  <jas@extundo.com>
13493         * textmodes/texinfo.el: Change maintainer to FSF.  Suggested by
13494         karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
13495         have only been distributed with Emacs for some years.
13496         (texinfo-mode-hook): Customize.
13498 2003-12-30  Eli Zaretskii  <eliz@gnu.org>
13500         * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
13501         cleaner (suggested by Richard Stallman).
13503         * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
13504         for gud-next, gud-nexti, gud-step and gud-stepi to prevent
13505         file-name clashes on 8+3 DOS filesystems.
13507         * toolbar/gud-next.pbm, toolbar/gud-next.xpm
13508         * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
13509         * toolbar/gud-step.pbm, toolbar/gud-step.xpm
13510         * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
13511         gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
13512         file-name clashes on 8+3 filesystems.
13514         * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
13515         Renamed from testcover-unsafep.el and testcover-ses.el to avoid
13516         file-name clashes on 8+3 DOS filesystems.
13518 2003-12-29  Richard M. Stallman  <rms@gnu.org>
13520         * mail/mail-utils.el (mail-unquote-printable-hexdigit):
13521         Upcase the character.
13523         * textmodes/flyspell.el (mail-mode-flyspell-verify):
13524         Search for header separator alone on a line, literally,
13525         and search for it backward, not forward.
13526         (flyspell-abbrev-table): Always use global-abbrev-table
13527         if there is no local one.
13529         * progmodes/sh-script.el (sh-get-indent-info):
13530         Don't move point back if at bob.
13532         * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
13534         * play/handwrite.el (handwrite): Make the handwrite credit message
13535         a comment rather than an output command.
13537         * obsolete/sc.el: Display message that this file is obsolete.
13539         * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
13541         * mail/rfc822.el (rfc822-address-start): Declare variable.
13542         Renamed from address-start.  All uses changed.
13544         * term.el (term-exec): Set up sentinel.
13545         (term-sentinel): New function.
13546         (term-handle-exit): New function.
13548         * subr.el (assoc-ignore-case, assoc-ignore-representation):
13549         Use assoc-string, and mark them obsolete.
13550         (delay-mode-hooks): Mark as permanent local.
13552         * simple.el (sendmail-user-agent-compose): Use assoc-string.
13554         * register.el (copy-rectangle-to-register): Doc fix.
13556         * info.el (Info-insert-dir): Use assoc-string.
13558         * info-look.el (info-lookup): Use assoc-string.
13560         * frame.el (pop-up-frame-function): Use quote, not `function'.
13561         (frame-notice-user-settings): Calculate ADJUSTED-TOP
13562         copying with lists as coordinate values.
13564         * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
13566         * find-dired.el (kill-find): New command.
13567         (find-dired): Make buffer read-only.
13568         Set up a keymap with C-c C-k running kill-find.
13569         (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
13571         * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
13573         * filecache.el (file-cache-ignore-case): New variable.
13574         (file-cache-assoc-function): Var deleted.  Use assoc-string instead.
13576         * comint.el (comint-arguments): Set COUNT after ARGS is complete.
13577         (comint-dynamic-complete-as-filename): Rename local vars.
13578         (comint-dynamic-list-filename-completions): Likewise.
13580         * comint.el (comint-dynamic-list-completions-config): New var.
13581         (comint-dynamic-list-completions): Handle both SPC and TAB right.
13583         * comint.el (comint-file-name-chars): Add [].
13584         (comint-word): Use skip-chars-backward, not search.
13586         * shell.el (shell-file-name-chars): Add [].
13588         * shell.el (shell-dynamic-complete-as-command): Rename local vars.
13590         * bookmark.el (bookmark-get-bookmark): Use assoc-string.
13592         * generic.el (define-generic-mode): Doc fix.
13594 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
13596         * files.el (kill-some-buffers): Doc fix.
13598 2003-12-29  David Herring  <sdh6@ra.msstate.edu>  (tiny change)
13600         * comint.el (comint-watch-for-password-prompt): Pass `string' as
13601         arg to send-invisible
13602         (send-invisible): Doc fix.  The argument is now a prompt, not the
13603         string to send.
13604         (comint-read-noecho): Doc fix.
13606 2003-12-29  Michael R. Wolf  <MichaelRWolf@att.net>  (tiny change)
13608         * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
13609         "@", as required by some ISP hosting service.  Fix defcustom
13610         argument syntax errors that prevented use of customization.
13612 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
13614         * xml.el (xml-get-attribute-or-nil): Doc fix.
13616 2003-12-29  Peter 'Luna' Runestig  <peter@runestig.com>
13618         * net/zone-mode.el (zone-mode): Use write-file-functions, not
13619         write-file-hooks.
13621 2003-12-29  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
13623         * autorevert.el (auto-revert-interval): Doc fix.
13625 2003-12-29  Mark A. Hershberger  <mah@everybody.org>
13627         * xml.el (xml-get-attribute-or-nil): New function, like
13628         xml-get-attribute, but returns nil if the attribute was not found.
13629         (xml-get-attribute): Convert to defsubst, uses
13630         xml-get-attribute-or-nil.
13632 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
13634         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
13636 2003-12-29  Alex Schroeder  <alex@emacswiki.org>  (tiny change)
13638         * custom.el (custom-declare-theme): Use `value' when putting
13639         properties on `theme'.
13641 2003-12-29  Takaaki Ota  <Takaaki.Ota@am.sony.com>
13643         * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
13644         for each yank-handler segment.
13645         (insert-for-yank-1): New function, with the body of the previous
13646         insert-for-yank.
13648         * textmodes/table.el (table-yank-handler): New defcustom.
13649         (table--put-cell-indicator-property): Put yank-handler property
13650         that indicates the yank handler for the table cell.
13652 2003-12-29  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
13654         * generic-x.el (etc-modules-conf-generic-mode): A more complete
13655         set of keywords.
13657 2003-12-29  Eli Zaretskii  <eliz@gnu.org>
13659         * international/mule-cmds.el (reset-language-environment)
13660         (set-language-environment): Don't invoke fontset-related functions
13661         if fontset-list is not fboundp.
13663 2003-12-29  Kenichi Handa  <handa@m17n.org>
13665         * international/mule-cmds.el (reset-language-environment):
13666         Call set-overriding-fontspec-internal with nil.
13667         (set-language-environment): Call set-overriding-fontspec-internal
13668         if the language environment specify `overriding-fontspec'.
13669         (language-info-alist): Doc added.
13671         * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
13672         characters of mule-unicode-0100-24ff.
13673         (ccl-encode-windows-1251-font): New CCL program.
13674         ("Bulgarian"): Specify overriding-fontspec.
13675         ("Belarusian"): Likewise.
13677 2003-12-28  Sam Steingold  <sds@gnu.org>
13679         * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
13680         parameter ID-FORMAT to conform with the 2003-11-30 patch.
13682 2003-12-28  Nick Roberts  <nick@nick.uklinux.net>
13684         * progmodes/gud.el (gud-gdb-command-name): Set default to
13685         "gdb --annotate=3".
13686         (gud-gdb-marker-filter): Look out for annotations.
13687         (gdb-first-pre-prompt): New variable.
13688         Remove trailing white space.
13690         * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
13691         if necessary.
13692         (gdb-ann3): New function.  Initialise M-x gdb as for M-x gdba if
13693         annotations are detected.
13694         (gud-gdba-marker-filter): Use global variable gud-marker-acc
13695         instead of a local one to allow transition from
13696         gud-gdb-marker-filter.
13697         Remove trailing white space.
13699 2003-12-27  Kim F. Storm  <storm@cua.dk>
13701         * ido.el: Handle non-readable directories.
13702         (ido-decorations): Add 9th element for non-readable directory.
13703         (ido-directory-nonreadable): New dynamic var.
13704         (ido-set-current-directory): Set it.
13705         (ido-read-buffer, ido-file-internal):
13706         (ido-read-file-name, ido-read-directory-name): Let-bind it.
13707         (ido-file-name-all-completions1): Return empty list for
13708         non-readable directory.
13709         (ido-exhibit): Print [Not readable] if directory is not readable.
13710         (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
13711         (ido-read-file-name, ido-file-internal, ido-read-directory-name):
13712         Use it.
13714 2003-12-27  Lars Hansen  <larsh@math.ku.dk>
13716         * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
13717         calls to directory-files-and-attributes and file-attributes.
13718         (ls-lisp-format): Remove system dependent handling of user and
13719         group id's.
13721 2003-12-25  Luc Teirlinck  <teirllm@auburn.edu>
13723         * ffap.el (ffap-read-file-or-url): Revert previous change.
13725 2003-12-25  Robert J. Chassell  <bob@rattlesnake.com>
13727         * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
13728         new list of included files called `files-with-node-lines', that
13729         only have node lines.  This way @include commands can include any
13730         file, such as version and update files without node lines, not
13731         just files that are chapters.
13733 2003-12-25  Andreas Schwab  <schwab@suse.de>
13735         * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
13736         file not found.
13738 2003-12-08  Miles Bader  <miles@gnu.org>
13740         * dired.el (dired-between-files): Always use dired-move-to-filename,
13741         which is more robust in non-english locales.
13743 2003-12-25  Markus Rost  <rost@mathematik.uni-bielefeld.de>
13745         * vc.el (vc-dired-purge): Avoid error from `kill-line'.
13747 2003-12-24  Andreas Schwab  <schwab@suse.de>
13749         * shell.el (shell-file-name-quote-list): Add backslash.
13751         * comint.el (comint-quote-filename): Correctly handle backslash
13752         in comint-file-name-quote-list.
13754 2003-12-24  Kenichi Handa  <handa@m17n.org>
13756         * international/mule-cmds.el (set-default-coding-systems):
13757         Call ucs-set-table-for-input for all buffers that don't have local
13758         value of buffer-file-coding-system.
13760         * international/ucs-tables.el (ucs-set-table-for-input):
13761         If translation-table-for-encode is a symbol, get its
13762         translation-table property.
13764 2003-12-23  Luc Teirlinck  <teirllm@auburn.edu>
13766         * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
13767         to `completing-read' on a recently fixed bug.
13769         * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
13770         instead of SPACE, to get the list of possible fringe modes.
13771         SPACE only works if both `partial-completion-mode' and
13772         `completion-auto-help' are nil.
13774         * complete.el (PC-is-complete-p): Delete.
13775         (PC-do-completion): Replace all calls to `PC-is-complete-p' with
13776         calls to `test-completion'.
13778 2003-12-23  Nick Roberts  <nick@nick.uklinux.net>
13780         * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
13781         to edit values when there are no children.
13783         * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
13784         a mode called "Assembler" already exists.
13785         (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
13786         (gud-watch): Use format option.  Remove font properties from string.
13787         (gdb-var-create-handler, gdb-var-list-children-handler):
13788         Don't bother about properties as there are none.
13789         (gdb-var-create-handler, gdb-var-list-children-handler)
13790         (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
13791         with two arguments.
13792         (gdb-var-evaluate-expression-handler, gdb-post-prompt):
13793         Let speedbar show value changes with a different font.
13794         (gdb-edit-value): New defun.
13795         (gdb-clear-partial-output, gdb-clear-inferior-io)
13796         (def-gdb-auto-update-handler): Use erase-buffer.
13797         (gdb-frame-handler): Display watch expressions in
13798         FUNCTION::VARIABLE format if required.
13800 2003-12-23  John Paul Wallington  <jpw@gnu.org>
13802         * info.el (Info-unescape-quotes, Info-split-parameter-string)
13803         (Info-goto-emacs-command-node): Doc fixes.
13805 2003-12-12  Jesper Harder  <harder@ifa.au.dk>
13807         * cus-edit.el (custom-add-parent-links): Define "many".
13809 2003-12-08  Per Abrahamsen  <abraham@dina.kvl.dk>
13811         * wid-edit.el (widget-child-value-get, widget-child-value-inline)
13812         (widget-child-validate, widget-type-value-create)
13813         (widget-type-default-get, widget-type-match): New functions.
13814         (lazy): New widget.
13815         (menu-choice, checklist, radio-button-choice, editable-list)
13816         (group, documentation-string): Remove redundant (per 2003-10-25
13817         change) calls to `widget-children-value-delete'.
13818         (widget-choice-value-get, widget-choice-value-inline): Remove.
13819         (menu-choice): Update widget.
13821 2003-12-03  Kenichi Handa  <handa@m17n.org>
13823         * language/cyrillic.el: Register "microsoft-cp1251" in
13824         ctext-non-standard-encodings-alist.
13825         ("Bulgarian"): Add ctext-non-standard-encodings.
13826         ("Belarusian"): Likewise.
13828         * international/mule-conf.el (compound-text-with-extensions):
13829         Change the type to 2 (iso-2022 base).
13831         * international/mule.el (ctext-non-standard-encodings-alist):
13832         Change the format.
13833         (ctext-non-standard-encodings): New variable.
13834         (ctext-post-read-conversion): Fully re-written.
13835         (ctext-non-standard-designations-alist): Delete it.
13836         (ctext-non-standard-encodings-table): New function.
13837         (ctext-pre-write-conversion): Fully re-written.
13839 2003-11-30  Per Abrahamsen  <abraham@dina.kvl.dk>
13841         * cus-edit.el (custom-add-parent-links): Add documentation links
13842         for parent, if the item has none of its own.
13844 2003-11-30  Richard M. Stallman  <rms@gnu.org>
13846         * dired-aux.el (dired-do-query-replace-regexp):
13847         Report files visited read-only.
13849 2003-11-30  Juri Linkov  <juri@jurta.org>
13851         * dired-aux.el (dired-compare-directories): New command.
13852         (dired-file-set-difference, dired-files-attributes): New functions.
13854 2003-11-30  Kai Grossjohann  <kai.grossjohann@gmx.net>
13855         Version 2.0.38 of Tramp released.
13857         * net/tramp.el (tramp-chunksize): Extend docstring.  Suggested by
13858         Charles Curley <charlescurley@charlescurley.com>.
13859         (tramp-multi-connection-function-alist): Add ssht entry which adds
13860         "-e none -t -t" to the list of ssh args.  Suggested by Adrian
13861         Aichner.
13862         (tramp-get-method-parameter): New function to retrieve a method
13863         parameter.  This allows for omission of method parameters.
13864         Callers adjusted.
13866 2003-11-30  Michael Albinus  <Michael.Albinus@alcatel.de>
13868         * net/tramp.el: Add new optional parameter ID-FORMAT to
13869         `file-attributes'.  Calls of `file-attributes' won't use this
13870         parameter for backward compatibility reasons.
13871         (tramp-perl-file-attributes): Add a new parameter to Perl script
13872         in order to handle uid/gid as strings, if desired.
13873         (tramp-handle-file-truename, tramp-handle-file-symlink-p):
13874         Apply `file-attributes' instead of `tramp-handle-file-attributes' in
13875         order to make the function more general.
13876         (tramp-handle-file-attributes): Replace proprietary optional
13877         parameter NONNUMERIC by the recently (Emacs 22.1) introduced ID-FORMAT.
13878         (tramp-handle-file-attributes-with-perl): Handle parameter
13879         NONNUMERIC if set.  This wasn't done in the past.
13880         (tramp-post-connection): Apply second parameter "$2" if
13881         `tramp-remote-perl' is called.
13883         * net/tramp-smb.el (tramp-smb-handle-delete-file):
13884         Correct cut'n'waste error (`filename' instead of `directory').
13885         (tramp-smb-handle-directory-files-and-attributes)
13886         (tramp-smb-handle-file-attributes): Add recently (Emacs 22.1)
13887         introduced parameter ID-FORMAT.
13888         (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
13889         error (`directory' instead of `ldir').
13891         * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
13892         `file-attributes' has a second parameter.  If yes, apply it with
13893         value "'integer".  Otherwise, don't use that parameter (default is
13894         integer format).
13896 2003-11-30  Luc Teirlinck  <teirllm@auburn.edu>
13898         * help.el (help-map): Bind `display-local-help' to `C-h .'.
13899         (help-for-help): Add `C-h .' to the listed Help options.
13900         Remove trailing whitespace.
13902         * help-at-pt.el: New file.
13904 2003-11-30  Jonathan Yavner  <jyavner@member.fsf.org>
13906         * subr.el (noreturn, 1value): New macros for test coverage.
13907         See `testcover.el'.
13909         * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.
13911         * emacs-lisp/testcover.el (testcover-reinstrument): Special case
13912         for macro `1value'.
13913         (testcover-1value): New function.  Checks that a 1value form
13914         actually returns only one value.  Requested by RMS.
13916 2003-11-29  Nick Roberts  <nick@nick.uklinux.net>
13918         * gdb-ui.el (gud-watch, gdb-var-create-handler)
13919         (gdb-var-list-children, gdb-var-list-children-handler)
13920         (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
13921         gdb commands that use mi to keep them out of the command history.
13923 2003-11-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13925         * cus-start.el (all): Add use-file-dialog.
13927 2003-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13929         * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
13931 2003-11-27  Kim F. Storm  <storm@cua.dk>
13933         * subr.el (posn-object-x-y): New defun.
13935 2003-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13937         * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
13938         Don't use `space' for \\\n.
13939         Be more selective as to which # are comment-starters.
13941 2003-11-26  Luc Teirlinck  <teirllm@auburn.edu>
13943         * subr.el (number-sequence): Improve handling of floating point
13944         arguments (suggested by Kim Storm).  Allow negative arguments.
13946 2003-11-26  Kenichi Handa  <handa@m17n.org>
13948         * international/mule-cmds.el (standard-display-european-internal):
13949         Cancel the standard-display-table setting for ` and '.
13951 2003-11-26  Kim F. Storm  <storm@cua.dk>
13953         * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
13954         New defcustoms to add ffap-like functionality to ido.
13955         (ido-saved-vc-hb): Rename from ido-saved-vc-mt.  Uses changed.
13956         (ido-no-final-slash): New defun.
13957         (ido-make-prompt, ido-file-internal, ido-toggle-vc)
13958         (ido-read-file-name): ): Toggle VC checking via
13959         vc-handled-backends instead of vc-master-templates.
13960         (ido-file-internal): Handle ido-use-url-at-point and
13961         ido-use-filename-at-point via code borrowed from ffap-guesser.
13962         Handle new ido-exit code ffap.
13963         (ido-sort-list): Ignore final slash when sorting file names.
13965 2003-11-25  Kim F. Storm  <storm@cua.dk>
13967         * emulation/cua-base.el (cua--standard-movement-commands):
13968         Add forward-sentence and backward-sentence.
13970 2003-11-25  Stephen Eglen  <stephen@gnu.org>
13972         * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
13973         iswitchb-exit is set to 'usefirst when user selects buffer at head
13974         of list using RET.  (Selecting buffers at the head of the list was
13975         broken if the substring was also a complete buffername.)
13977 2003-11-23  Kim F. Storm  <storm@cua.dk>
13979         * progmodes/compile.el (grep-command, grep-use-null-device)
13980         (grep-find-command, grep-tree-command, grep-tree-files-aliases)
13981         (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
13982         (grep-regexp-alist, grep-program, find-program)
13983         (grep-find-use-xargs, grep-history, grep-find-history)
13984         (grep-process-setup, grep-compute-defaults)
13985         (grep-default-command, grep, grep-tag-default, grep-find)
13986         (grep-expand-command-macros, grep-tree-last-regexp)
13987         (grep-tree-last-files, grep-tree): Move grep variables, functions
13988         and commands to new file grep.el.
13989         (compilation-mode-map): Remove grep commands from Compile sub-menu.
13990         (compilation-process-setup-function): Doc fix.
13991         (compilation-highlight-regexp, compilation-highlight-overlay): New
13992         defvars used for highlighting current compile error in source buffer.
13993         (compile-internal): New optional args HIGHLIGHT-REGEXP and
13994         LOCAL-MAP which overrides compilation-highlight-regexp and
13995         compilation-mode-map for this compilation.
13996         Delay calling compilation-set-window-height until after running
13997         compilation-process-setup-function so it can buffer-local override
13998         compilation-window-height.
13999         Check buffer-local value of compilation-scroll-output.
14000         (compilation-set-window-height): Use buffer-local value of
14001         compilation-window-height.
14002         (compilation-revert-buffer): Don't pass (undefined)
14003         preserve-modes arg to revert-buffer.
14004         (next-error-no-select, previous-error-no-select): New commands.
14005         (compilation-goto-locus): Temporarily highlight current match in
14006         source buffer using compilation-highlight-regexp.
14008         * progmodes/grep.el: New file with grep code from compile.el.
14009         (grep): New defcustom group.
14010         (grep-window-height): New defcustom, like compilation-window-height.
14011         (grep-auto-highlight): New defcustom, like compile-auto-highlight.
14012         (grep-scroll-output): New defcustom, like compilation-scroll-output.
14013         (grep-command, grep-use-null-device, grep-find-command)
14014         (grep-tree-files-aliases, grep-tree-ignore-case)
14015         (grep-tree-ignore-CVS-directories): Move to grep custom group.
14016         (grep-setup-hook): New hook variable.
14017         (grep-mode-map): New keymap for grep commands.  Add Grep menu.
14018         (grep-last-buffer): New defvar, override compilation-last-buffer.
14019         (grep): Add optional arg HIGHLIGHT-REGEXP.  Doc fix.
14020         Call compile-internal with args highlight-regexp and grep-mode-map.
14022 2003-11-23  Kim F. Storm  <storm@cua.dk>
14024         * subr.el (event-start, event-end): Doc fix.
14025         (posn-window, posn-x-y, posn-timestamp): Simplify doc.
14026         (posn-area, posn-actual-col-row, posn-object): New defuns.
14027         (posn-col-row): Simplify doc.  Rewrite to use cond.
14028         (posn-point): Also return buffer position for events outside text
14029         area (that info is now present in the event position).
14031         * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
14032         mouse-set-point so that hscroll still works now that clicks on
14033         fringes generate specific mouse events.
14034         (mouse-set-point): Note that it now works in fringes and margins
14035         too due to new semantics of posn-point in fringes and margins.
14037         * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
14038         (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
14040 2003-11-20  Kim F. Storm  <storm@cua.dk>
14042         * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
14043         (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
14044         (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
14045         to 100 for icons to avoid increasing line height when shown.
14047 2003-11-17  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
14049         * newcomment.el (comment-normalize-vars): Initialize properly if
14050         comment-start was nil.
14052 2003-11-19  Andreas Schwab  <schwab@suse.de>
14054         * simple.el (set-variable): Fix indentation.
14056 2003-11-17  Kenichi Handa  <handa@m17n.org>
14058         * international/latin1-disp.el (latin1-display-ucs-per-lynx):
14059         Fix docstring.
14061 2003-11-17  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
14063         * international/latin1-disp.el (latin1-display): Fix docstring.
14065 2003-11-16  John Wiegley  <johnw@newartisans.com>
14067         * eshell/em-ls.el (eshell-ls-file): There are times with
14068         size-width is nil and uncomputed (when directories are created in
14069         dired, for example); in this case, 4 is reasonable default value,
14070         although it may caused skewed new entries (which could be avoided
14071         by returning the original value of 8 in all cases, but 99% of the
14072         time this is a waste of whitespace).
14074 2003-11-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
14076         * cc-engine.el (c-guess-continued-construct)
14077         (c-guess-basic-syntax): Check a little more carefully if it's a
14078         function declaration when an unknown construct followed by a block
14079         is found inside a statement context.  This avoids macros followed
14080         by blocks to be taken as function declarations.
14082         (c-guess-continued-construct): Change the analysis of a statement
14083         continuation with a brace open to `substatement-block', for
14084         consistency with recognized statements.
14086         (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
14087         start is in a position so that `c-beginning-of-statement-1' jumped
14088         to the beginning of the same statement.
14090         * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
14091         Don't accept binary operators in the arglist if we're in a function
14092         call context, i.e. if `c-restricted-<>-arglists' is set.  That avoids
14093         template recognition in cases like "if (a < b || c > d)".
14095         (c-restricted-<>-arglists): New more appropriate name for
14096         `c-disallow-comma-in-<>-arglists'.
14098         Accessing functions updated for the variable name change.
14100         * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
14101         match data could get clobbered if NOT-INSIDE-TOKEN is used.
14103         * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
14104         labels.
14106         (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
14107         instead of duplicating parts of it.  This fixes bogus label
14108         recognition.
14110         * cc-align.el (c-gnu-impose-minimum): Revert to the old method
14111         of checking the context in which to apply the minimum indentation,
14112         so that it isn't enforced in e.g. namespace blocks.
14114         * cc-vars.el (c-inside-block-syms): New constant used by
14115         `c-gnu-impose-minimum'.  It's defined close to `c-offsets-alist'
14116         to somewhat reduce the risk of becoming stale.
14118         * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
14119         cc-cmds to cc-engine to allow use from cc-align.
14121         * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
14122         qualified identifiers containing "::".
14124         * cc-defs.el (c-make-keywords-re): Add kludge for bug in
14125         `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
14127         * cc-vars.el (c-emacs-features): Use a space in front of the name
14128         of the temporary buffer.  That also avoids dumping problems in
14129         XEmacs due to undo info being left around after the buffer is killed.
14131         * cc-engine.el (c-in-knr-argdecl): Look closer at the function
14132         arglist to see if it's a K&R style declaration.
14134         (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
14135         before returning `knr-argdecl-intro'.
14137 2003-11-16  John Wiegley  <johnw@newartisans.com>
14139         * eshell/em-ls.el (eshell-ls-file): Instead of making the size
14140         field in a long-listing always 8 characters, use `size-width',
14141         which has already been computed.
14143 2003-11-15  Thien-Thi Nguyen  <ttn@gnu.org>
14145         * subr.el (minor-mode-list): Add `hs-minor-mode'.
14147 2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
14149         * diff-mode.el (diff-hunk-prev, diff-hunk-next):
14150         Support operation while narrowed, with `diff-restrict-view'.
14152 2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
14154         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
14155         Take additional optional arg NARROWFUN.  For the generated functions:
14156         Add local var `was-narrowed-p'.  Also, if NARROWFUN is specified,
14157         include frags that arrange to check for and save narrowing state before
14158         the move and then conditionally call NARROWFUN after the move.
14160 2003-11-14  John Wiegley  <johnw@newartisans.com>
14162         * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
14163         that was optional, but obviously missing based on surrounding code.
14165         * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
14166         string arguments to numbers unless the whole argument was seen as
14167         a number.
14169 2003-11-14  Kenichi Handa  <handa@m17n.org>
14171         * international/mule.el (ctext-non-standard-encodings-alist):
14172         Fix coding systems.
14174 2003-11-10  Kenichi Handa  <handa@m17n.org>
14176         * language/kannada.el ("Kannada"): Add sample-text.
14178         * language/knd-util.el (kannada-compose-region)
14179         (kannada-compose-string, kannada-post-read-conversion):
14180         Add autoload cookie.
14182         * international/quail.el (quail-completion): Change the message
14183         "corresponding translations" to "corresponding characters".
14185 2003-11-09  Markus Rost  <rost@mathematik.uni-bielefeld.de>
14187         * descr-text.el (describe-char): Fix typo.
14189 2003-11-08  Kailash C. Chowksey  <klchxbec@m-net.arbornet.org>
14191         These changes are to support Kannada language/script.
14193         * Makefile.in (DONTCOMPILE): Add kannada.el.
14195         * makefile.w32-in (DONTCOMPILE): Add kannada.el.
14197         * loadup.el: Preload kannada.el.
14199         * language/ind-util.el (ucs-kannada-to-is13194-alist)
14200         (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
14201         New variables.
14203         * language/kannada.el: New file.
14205         * language/knd-util.el: New file.
14207 2003-11-07  Andreas Schwab  <schwab@suse.de>
14209         * progmodes/autoconf.el (autoconf-font-lock-keywords):
14210         Also highlight AH_*.
14212         * xml.el (xml-parse-dtd): Fix misplaced paren.
14214 2003-11-07  Kenichi Handa  <handa@m17n.org>
14216         * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
14218 2003-11-05  Juri Linkov  <juri@jurta.org>
14220         * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
14221         (desktop-buffer-file): Use saved buffer-file-coding-system
14222         for file reading.  Set auto-insert to nil to prevent automatic
14223         insertion into restored empty files.
14225 2003-11-04  Luc Teirlinck  <teirllm@auburn.edu>
14227         * files.el (risky-local-variable-p): Make second argument optional.
14229 2003-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14231         * subr.el (add-hook): Fix last change.
14233 2003-11-03  Eli Zaretskii  <eliz@gnu.org>
14235         * mail/rmail.el (rmail-convert-to-babyl-format):
14236         If base64-decode-region signals an error, catch it and silently
14237         ignore it.
14239 2003-11-01  Mark A. Hershberger  <mah@everybody.org>
14241         * xml.el (xml-parse-region): Allow comments to appear after the
14242         topmost element has closed.
14243         (xml-ns-parse-ns-attrs, xml-ns-expand-el)
14244         (xml-ns-expand-attr): New functions to do namespace handling.
14245         (xml-intern-attrlist): Back-compatible handling of attribute names.
14246         (xml-parse-tag): Move namespace handling to separate functions.
14247         Now produces elements in the form ((:ns . "element") (attr-list)
14248         children) instead of ('ns:element (attr-list) children).
14249         (xml-parse-attlist): Fix attribute parsing.
14250         (xml-parse-dtd): Change parsing so that it produces strings
14251         instead of interned symbols.
14253 2003-11-01  era@iki.fi  <era@iki.fi>  (tiny change)
14255         * dired.el (dired-ls-sorting-switches): Doc fix.
14257 2003-11-01  Oliver Scholz  <epameinondas@gmx.de>
14259         * emacs-lisp/rx.el (rx-or): Fix the case of
14260         "(rx (and ?a (or ?b ?c) ?d))".
14262 2003-11-01  Christoph Wedler  <wedler@users.sourceforge.net>  (tiny change)
14264         * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
14265         (texinfo-format-region): Use it.
14266         (texinfo-format-buffer-1): Ditto.
14268 2003-11-01  Alan Mackenzie  <acm@muc.de>
14270         Changes to allow scrolling whilst in isearch mode:
14271         * isearch.el (isearch-unread-key-sequence): New function,
14272         extracted from isearch-other-meta-char.
14273         (top level): (put 'foo 'isearch-scroll) on all Emacs's
14274         "scrollable" standard functions.
14275         (isearch-allow-scroll): New customizable variable.
14276         (isearch-string-out-of-window, isearch-back-into-window)
14277         (isearch-reread-key-sequence-naturally)
14278         (isearch-lookup-scroll-key): New functions.
14279         (isearch-other-meta-char): Doc string and functionality enhanced.
14280         Now accepts a prefix argument.
14281         (isearch-lazy-highlight-window-end): New variable.
14282         (isearch-lazy-highlight-new-loop): Pay attention to the window's
14283         end (thru isearch-lazy-highlight-window-end), not only its start.
14285         * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
14286         (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
14287         (universal-argument, universal-argument-more, negative-argument)
14288         (digit-argument, universal-argument-other-key): Minor changes.
14290 2003-11-01  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
14292         * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
14293         recursively if the last message is deleted, thus avoiding an
14294         infinite loop.
14296 2003-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14298         * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
14299         (tex-main-file): Don't add .tex if the extension is already present.
14300         (tex-uptodate-p): Don't recurse indefinitely with symlinks.
14302 2003-10-29  Lute Kamstra  <lute@gnu.org>
14304         * progmodes/octave-inf.el (inferior-octave-prompt):
14305         Recognize version number in prompt.
14307 2003-10-28  Dave Love  <fx@gnu.org>
14309         * international/characters.el: Fix some Unicode ranges.
14311 2003-10-28  Kenichi Handa  <handa@m17n.org>
14313         * disp-table.el (standard-display-8bit)
14314         (standard-display-default, standard-display-ascii)
14315         (standard-display-g1, standard-display-graphic)
14316         (standard-display-underline): Assure that standard-display-table
14317         is a display table.
14319 2003-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14321         * simple.el (reindent-then-newline-and-indent): Delete space *after*
14322         reindenting the first line.
14324 2003-10-25  Per Abrahamsen  <abraham@dina.kvl.dk>
14326         * wid-edit.el (widget-default-delete): Always delete child widgets.
14328 2003-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14330         * newcomment.el (comment-indent): Don't call indent-according-to-mode
14331         if the line has code.
14332         Don't try to line up with something that's too far left.
14334         * progmodes/octave-mod.el (octave-comment-start): Simplify.
14335         (octave-mode-syntax-table): Add % as a comment starter.
14336         (octave-point): Remove.
14337         (octave-in-comment-p, octave-in-string-p)
14338         (octave-not-in-string-or-comment-p, calculate-octave-indent)
14339         (octave-blink-matching-block-open, octave-auto-fill):
14340         Use line-(beginning|end)-position instead.
14342 2003-10-23  Francesco Potort\e,Al\e(B  <pot@gnu.org>
14344         * emacs-lisp/authors.el (authors-aliases): Add correct realname
14345         for Francesco Potort\e,Al\e(B.
14347 2003-10-23  Dave Love  <fx@gnu.org>
14349         * international/mule-cmds.el (locale-charset-to-coding-system):
14350         Don't rely on nil being a coding system.
14352         * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
14353         (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
14354         (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
14356 2003-10-21  Nick Roberts  <nick@nick.uklinux.net>
14358         * gdb-ui.el (gdb-current-language): New variable.
14359         (gdb-update-flag): Remove variable.
14360         (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
14361         (gdb-take-last-elt): Remove function.
14362         (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
14363         (gdb-post-prompt): Check for variable object changes here.
14365         * progmodes/gud.el (gud-speedbar-buttons): Check for variable
14366         object changes in gdb-ui.el.
14368 2003-10-21  Richard M. Stallman  <rms@gnu.org>
14370         * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
14372         * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
14373         Don't check for foo*/ wildcard form here.
14374         (insert-directory): Recognize foo*/ as a wildcard.
14375         Separate wildcard-regexp variable from the arg, wildcard.
14377         * subr.el (add-hook): Correctly detect when make-local-hook was used.
14378         (remove-hook): Correctly handle strange cases about local hooks.
14380 2003-10-21  David Ponce  <david@dponce.com>
14382         * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
14383         argument REAL, to return a real number instead of a rounded
14384         integer value.  Define as inline function.
14385         (ruler-mode-right-fringe-cols): Likewise.
14386         (ruler-mode-scroll-bar-cols): New function.
14387         (ruler-mode-left-scroll-bar-cols): Use it.  Define as macro.
14388         (ruler-mode-right-scroll-bar-cols): Likewise.
14389         (ruler-mode-space): New function.
14390         (ruler-mode-ruler): Use it.  Handle variations of fringe style,
14391         scroll bar mode and margins in a more robust way.
14393 2003-10-21  Christoph Wedler  <Christoph.Wedler@sap.com>
14395         * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
14396         (antlr-c-init-language-vars): New function.
14397         (antlr-mode): Use it with cc-mode before v5.29.
14398         (antlr-c-common-init): Don't set some local vars here.
14399         (antlr-mode): Set them here.
14400         (antlr-c-forward-sws): New function alias.
14401         (antlr-mode): Redefine with cc-mode before v5.30.
14402         (antlr-skip-sexps): Use it.
14403         (antlr-skip-exception-part): Ditto.
14404         (antlr-skip-file-prelude): Ditto.
14405         (antlr-outside-rule-p): Ditto.
14406         (antlr-end-of-body): Ditto.
14407         (antlr-option-kind): Ditto.
14408         (antlr-insert-option-area): Ditto.
14409         (antlr-file-dependencies): Ditto.
14411 2003-10-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14413         * textmodes/bibtex.el (bibtex-move-outside-of-entry):
14414         Move backward only if point was not inside an entry.
14416 2003-10-21  Richard M. Stallman  <rms@gnu.org>
14418         * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
14420 2003-10-21  Juri Linkov  <juri@jurta.org>
14422         * compare-w.el: Automatically skip non-matching text to resync.
14423         (compare-windows-whitespace): Doc fix.
14424         (compare-windows-sync, compare-windows-sync-string-size)
14425         (compare-windows-recenter, compare-ignore-whitespace)
14426         (compare-windows-highlight, compare-windows-face): New variables.
14427         (compare-windows): Use compare-windows-sync.
14428         (compare-windows-highlight, compare-windows-dehighlight)
14429         (compare-windows-sync-regexp)
14430         (compare-windows-sync-default-function): New functions.
14432 2003-10-21  Juri Linkov  <juri@jurta.org>
14434         * diff.el (diff-parse-differences): Don't visit the files now;
14435         instead, just record the error locus.
14437 2003-10-21  Dave Love  <fx@gnu.org>
14439         * progmodes/cfengine.el: New file.
14441 2003-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14443         * complete.el (PC-do-completion): Do not forget to use `pred' as the
14444         default-directory when completing file names.
14446 2003-10-20  Luc Teirlinck  <teirllm@auburn.edu>
14448         * help-mode.el (help-make-xrefs): Make sure that if a symbol is
14449         followed by the word `face', it gets treated as a face, even if
14450         it is also defined as a variable or a function.
14452 2003-10-20  Dave Love  <fx@gnu.org>
14454         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
14455         Avoid incf in macro expansion.
14457 2003-10-20  John Paul Wallington  <jpw@gnu.org>
14459         * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
14460         `evenp' so we don't implicitly require cl library at runtime.
14462 2003-10-18  Luc Teirlinck  <teirllm@auburn.edu>
14464         * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
14465         (help-make-xrefs): Only make cross-references for faces if
14466         preceded or followed by the word `face'.  Do not make a
14467         cross-reference for variables without variable documentation,
14468         unless preceded by the word `variable' or `option'.  Update doc
14469         string accordingly.
14471 2003-10-18  Thien-Thi Nguyen  <ttn@gnu.org>
14473         * progmodes/hideshow.el: Rewrite one-armed `if'
14474         constructs using either `when' or `unless'.
14475         (hs-grok-mode-type): Elide superfluous `progn'; nfc.
14477 2003-10-16  Nick Roberts  <nick@nick.uklinux.net>
14479         * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
14480         (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
14481         instead of 12x12.
14483 2003-10-16  Eli Zaretskii  <eliz@gnu.org>
14485         * mail/rmail.el (rmail-convert-to-babyl-format): Display a
14486         message while converting to Babyl.
14488 2003-10-16  Vadim Nasardinov  <vadimn@redhat.com>  (tiny change)
14490         * allout.el (allout-mode): Doc fix.
14492 2003-10-16  Lute Kamstra  <lute@gnu.org>
14494         * subr.el (force-mode-line-update): Fix docstring.
14496 2003-10-14  Dave Love  <fx@gnu.org>
14498         * international/mule-cmds.el (find-multibyte-characters): Doc fix.
14499         (default-input-method): Add :link, improve :type.
14500         (locale-charset-language-names): Fix utf-8 pattern.
14501         (locale-charset-match-p, locale-charset-alist)
14502         (locale-charset-to-coding-system): New.
14503         (set-locale-environment): Deal with codeset part of locale specs.
14505 2003-10-14  Lute Kamstra  <lute@gnu.org>
14507         * fringe.el (fringe-mode): Use active voice in docstring.
14508         (set-fringe-style): Ditto.
14510 2003-10-13  Lute Kamstra  <lute@gnu.org>
14512         * fringe.el (fringe-mode): Fix docstring.
14513         (set-fringe-style): Ditto.
14515 2003-10-12  Michael Kifer  <kifer@cs.stonybrook.edu>
14517         * ediff-mult.el (ediff-filegroup-action):
14518         Use ediff-default-filtering-regexp.
14520         * ediff-util.el (ediff-recenter): Don't call
14521         ediff-restore-highlighting twice.
14522         (ediff-select-difference): Set current difference.
14523         (ediff-unselect-and-select-difference): Add comment.
14525         * ediff.el (ediff-directories,ediff-directory-revisions)
14526         (ediff-directories3,ediff-merge-directories)
14527         (ediff-merge-directories-with-ancestor)
14528         (ediff-merge-directory-revisions)
14529         (ediff-merge-directory-revisions-with-ancestor):
14530         Use ediff-default-filtering-regexp.
14532 2003-10-12  Andreas Schwab  <schwab@suse.de>
14534         * international/mule-cmds.el (locale-charset-language-names):
14535         Simplify regex by removing unused grouping.
14537 2003-10-10  Dave Love  <fx@gnu.org>
14539         * bindings.el: Don't bind stop.
14541 2003-10-08  Miles Bader  <miles@gnu.org>
14543         * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
14544         face instead of attempting to emulate it.
14546 2003-10-07  Kenichi Handa  <handa@m17n.org>
14548         * international/mule-diag.el (list-coding-systems-1): List coding
14549         systems that are loaded automatically.
14551         * international/code-pages.el (iso-8859-11): Add autoload cookie.
14553         * international/mule.el (autoload-coding-system): New function.
14555 2003-10-07  Andreas Schwab  <schwab@suse.de>
14557         * log-edit.el (log-edit-changelog-entries): Prefer local value of
14558         change-log-default-name in the buffer visiting the file.
14560 2003-10-06  Dave Love  <fx@gnu.org>
14562         * files.el (find-file-hook): Customize.
14563         (auto-mode-alist): Add .stk, .ss, .sch, .orig.
14565         * bindings.el (completion-ignored-extensions): Remove .log.
14566         (global-map): Add again, open, stop keys.
14568 2003-10-05  Richard M. Stallman  <rms@gnu.org>
14570         * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
14571         (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
14572         Use sh-modify directly.
14573         (sh-select): Use sh-append, not eval.
14575         * mail/emacsbug.el (report-emacs-bug): Fix previous change.
14577         * info.el (Info-following-node-name): New function.
14579         * loadhist.el (unload-feature-special-hooks):
14580         Rename from loadhist-hook-functions.
14581         (loadhist-hook-functions): Now an alias.
14583 2003-10-04  Eli Zaretskii  <eliz@gnu.org>
14585         * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
14586         file-name clashes on 8+3 filesystems.
14588         * Makefile.in (DONTCOMPILE, bootstrap-clean):
14589         Rename loaddefs-boot.el to ldefs-boot.el
14591         * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
14592         (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
14594 2003-10-03  Lute Kamstra  <lute@gnu.org>
14596         * info.el (Info-mode): Revert previous change.
14597         (Info-escape-percent): New function.
14598         (Info-fontify-node): Use it.
14600 2003-10-02  Andreas Schwab  <schwab@suse.de>
14602         * loaddefs-boot.el: Regenerated.
14604 2003-10-01  Rajesh Vaidheeswarran  <rv@gnu.org>
14606         * ffap.el: Remove defadvice related code from CVS since `complete'
14607         provides a `PC-completion-as-file-name-predicate' variable that
14608         ffap can override.
14610 2003-10-02  Kenichi Handa  <handa@m17n.org>
14612         * international/utf-8.el (ccl-decode-mule-utf-8):
14613         Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
14615         * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
14616         * international/subst-big5.el: Likewise.
14617         * international/subst-gb2312.el: Likewise.
14618         * international/subst-ksc.el: Likewise.
14620 2003-10-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
14622         * calendar/calendar.el (increment-calendar-month)
14623         (calendar-leap-year-p, calendar-absolute-from-gregorian)
14624         (generate-calendar, calendar-read-date, calendar-interval)
14625         (calendar-day-of-week): Handle years BC.
14626         (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
14628 2003-10-01  Dave Love  <fx@gnu.org>
14630         * language/cyrillic.el (cp1251): Alias for windows-1251.
14632         * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
14633         bootstrap.
14635 2003-10-01  Lute Kamstra  <lute@gnu.org>
14637         * files.el: Fix typo.
14638         * imenu.el (imenu--generic-function): Docstring fix.
14640 2003-09-30  Richard M. Stallman  <rms@gnu.org>
14642         * dired.el (dired-mode): Handle dired-directory as a list.
14644 2003-09-30  Nick Roberts  <nick@nick.uklinux.net>
14646         * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
14648         * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
14650         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
14651         Replace gud-display with gud-watch.
14652         (gud-speedbar-buttons): Add stuff for watching expressions
14653         in the speedbar when using M-x gdba.  Use dolist on old part
14654         of this function.
14656         * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
14657         (gdb-update-flag): New variables.
14658         (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
14659         (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
14660         (gud-watch, gdb-var-create-handler) : New functions.
14661         (gdb-var-list-children, gdb-var-list-children-handler)
14662         (gdb-var-create-regexp, gdb-var-update-regexp)
14663         (gdb-var-list-children-regexp): New constants.
14664         (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
14665         (gdb-annotation-rules): Reduce annotation set (level 3).
14666         (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
14667         (gdb-post-prompt): Don't update GDB buffers every time speedbar
14668         updates.
14669         (gdb-window-height, gdb-window-width, gdb-display-in-progress)
14670         (gdb-expression-buffer-name, gdb-display-number, gdb-point)
14671         (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
14672         (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
14673         (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
14674         (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
14675         (gdb-expressions-mode-menu, gdb-dive): Remove variables.
14676         (gud-display, gud-display1)
14677         (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
14678         (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
14679         (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
14680         (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
14681         (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
14682         (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
14683         (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
14684         (gdb-display-display-buffer, gdb-toggle-display)
14685         (gdb-delete-display, gdb-expressions-popup-menu)
14686         (gdb-expressions-mode, gdb-array-visualise): Remove functions.
14687         (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
14688         to display buffer.
14690 2003-09-30  Richard M. Stallman  <rms@gnu.org>
14692         * progmodes/ada-mode.el (ada-mode): Don't use advice.
14693         Instead, set which-func-functions.
14695         * progmodes/which-func.el (which-func-modes): Add ada-mode.
14696         (which-func-functions): New variable.
14697         (which-function): Use that.
14699         * info.el (Info-mode): Double each `%' in header line.
14701         * emacs-lisp/lisp-mnt.el (lm-with-file):
14702         When FILE is nil, run BODY in current buffer.
14704         * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
14706         * help.el (describe-mode): Start with a brief list of minor modes.
14707         Find them thru minor-mode-list so as to find them all.
14708         Show them in alphabetical order.
14710         * mail/sendmail.el (mail-aliases): Doc fix.
14712         * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
14714 2003-09-30  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
14716         * mail/rmailsum.el (rmail-make-summary-line-1):
14717         Change comma after last label to a space.
14718         (rmail-summary-font-lock-keywords): Adapt to that change.
14720 2003-09-30  Thien-Thi Nguyen  <ttn@gnu.org>
14722         * progmodes/scheme.el (scheme-mode-variables): When setting
14723         `font-lock-defaults', also specify that "#" should
14724         be interpreted with `word' syntax.
14725         (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
14727 2003-09-30  Lars Hansen  <larsh@math.ku.dk>
14729         * desktop.el: A lot of comments updated.
14730         (desktop-save-mode): Minor mode introduced.
14731         (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
14732         (desktop-load-default): Function made obsolete.
14733         (desktop-locals-to-save): Variable made customizable.
14734         (desktop-read): Optional parameter `dirname' added.
14735         (desktop-change-dir, desktop-revert): Parameter `dirname' in
14736         `desktop-read' used.
14737         (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
14739 2003-09-29  Rajesh Vaidheeswarran  <rv@gnu.org>
14741         * whitespace.el (whitespace-clean-msg): Add user customizable message
14742         for displaying ``clean'' output.
14743         (whitespace-buffer): Use `whitespace-clean-msg'.
14744         (whitespace-global-mode): Fix typo.
14746 2003-09-29  Thien-Thi Nguyen  <ttn@gnu.org>
14748         * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
14750 2003-09-29  Lute Kamstra  <lute@gnu.org>
14752         * bindings.el (mode-line-modes): Remove superfluous :propertize
14753         construct in initialization.
14754         (mode-line-position): Change cons cell into proper list in
14755         initialization.
14757 2003-09-29  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
14759         * international/mule.el (decode-coding-inserted-region): Use car
14760         of the return value of find-operation-coding-system.
14762 2003-09-29  Kenichi Handa  <handa@m17n.org>
14764         * descr-text.el (describe-char): Fix previous change.
14766 2003-09-28  Kenichi Handa  <handa@m17n.org>
14768         * descr-text.el (describe-char-display): New function.
14769         (describe-char): Pay attention to display table on describing how
14770         a character is displayed.
14772         * international/mule-cmds.el (encoded-string-description):
14773         Prepend "0x" to each encoded byte.
14775 2003-09-28  Andreas Schwab  <schwab@suse.de>
14777         * find-file.el (ff-special-constructs): Add autoload cookie.
14779 2003-09-28  Kevin Ryde  <user42@zip.com.au>
14781         * info.el (Info-find-index-name): Remove any "<n>" suffixes which
14782         makeinfo appends to duplicate index entries.
14784 2003-09-28  Eli Zaretskii  <eliz@gnu.org>
14786         * dired-x.el (dired-clean-tex): Doc fix.
14788         * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
14789         using a Chinese tutorial.
14791 2003-09-28  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
14793         * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
14794         between "MAIL FROM:" and "RCPT TO:" and the following address.
14796 2003-09-28  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
14798         * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
14800 2003-09-28  David Ponce  <david@dponce.com>
14802         * recentf.el (recentf-initialize-file-name-history): New defcustom.
14803         (recentf-load-list): When `recentf-initialize-file-name-history'
14804         is non-nil, initialize an empty `file-name-history' with the
14805         recent list.
14807 2003-09-28  Evgeni Dobrev  <evgeni_dobrev@developer.bg>  (tiny change)
14809         * man.el (Man-default-man-entry): Remove the leading `*' from the
14810         word at point.
14812 2003-09-26  Lute Kamstra  <lute@gnu.org>
14814         * bindings.el (mode-line-position): Mention size indication in
14815         docstring.
14817 2003-09-26  Andre Spiegel  <spiegel@gnu.org>
14819         * calendar/parse-time.el (parse-time-string): Add autoload cookie.
14821         * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
14822         because it's autoloaded now.
14824 2003-09-25  Glenn Morris  <gmorris@ast.cam.ac.uk>
14826         * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
14827         (sh-font-lock-keywords, sh-feature): Fix previous change of
14828         sh-feature to avoid infloop with sh-font-lock-keywords.
14830 2003-09-25  Kim F. Storm  <storm@cua.dk>
14832         * frame.el (frame-current-scroll-bars): New defun.
14834         * window.el (window-current-scroll-bars): New defun.
14836 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
14838         * progmodes/cc-engine.el (c-parse-state): Fix bug that could
14839         cause errors when the state cache contains info on parts that have
14840         been narrowed out.
14842 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
14844         * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
14845         `c-setup-paragraph-variables' has to be used when this variable is
14846         changed; it doesn't work to reinitialize the mode since that
14847         typically clobbers the variable.
14849         * progmodes/cc-styles.el (c-setup-paragraph-variables):
14850         Make it interactive.
14852 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
14854         * progmodes/cc-fonts.el (c-font-lock-declarations):
14855         Fix recognition of constructors and destructors for classes whose
14856         names are matched by `*-font-lock-extra-types'.
14858         * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
14859         followed by an identifier in C++ then it's a type.
14861 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
14863         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
14864         problem that primarily affected XEmacs.  Don't use faces to find
14865         unterminated strings since Emacs and XEmacs fontify strings
14866         differently - this function should now work better in XEmacs.
14868 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
14870         * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
14871         `expand-abbrev' workaround which caused braces to misbehave inside
14872         macros.
14874         * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
14875         handling.  This bug could cause interactive font locking to bail out.
14877 2003-09-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
14879         * progmodes/cc-engine.el (c-just-after-func-arglist-p):
14880         Handle paren-style types in Pike.  Also fixed some cases of
14881         insufficient handling of unbalanced parens.
14883 2003-09-24  Rajesh Vaidheeswarran  <rv@gnu.org>
14885         * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
14886         common shell prompts that are not common filename or URL characters.
14887         (ffap-file-at-point): Use the new regexp to strip the prompts from
14888         the file names.  This is an issue mostly for user prompts that
14889         don't have a trailing space and find-file-at-point is invoked from
14890         within a shell inside Emacs.
14892 2003-09-24  Andre Spiegel  <spiegel@gnu.org>
14894         * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
14895         stamps numerically, rather than textually.
14897 2003-09-24  Kenichi Handa  <handa@m17n.org>
14899         * language/devan-util.el (devanagari-post-read-conversion):
14900         * language/mlm-util.el (malayalam-post-read-conversion):
14901         * language/tml-util.el (tamil-post-read-conversion):
14902         Add autoload cookie.
14904         * international/utf-8.el (utf-8-post-read-conversion):
14905         Call post-read-conversion functions for Devanagari, Malayalam,
14906         and Tamil.
14908 2003-09-23  Dave Love  <fx@gnu.org>
14910         * Makefile.in (bootstrap-clean): Fix misplaced `!'.
14912 2003-09-22  Nick Roberts  <nick@nick.uklinux.net>
14914         * progmodes/gud.el (perldb): Add gud-until to list of commands.
14915         Update gud-remove.
14917 2003-09-22  Richard M. Stallman  <rms@gnu.org>
14919         * progmodes/sh-script.el (sh-mode-default-syntax-table):
14920         Rename from sh-mode-syntax-table.  Call sh-mode-syntax-table directly.
14921         (sh-mode-syntax-table-input): New variable.
14922         (sh-require-final-newline): Don't use eval.
14923         (sh-builtins, sh-leading-keywords, sh-other-keywords)
14924         (sh-variables, sh-font-lock-keywords): Don't use eval.
14925         (sh-set-shell): When setting require-final-newline,
14926         treat value = `require-final-newline' as don't change it.
14927         Set sh-mode-syntax-table locally based on
14928         sh-mode-syntax-table-input and sh-mode-default-syntax-table.
14930         * progmodes/compile.el (compile-internal):
14931         Call compilation-set-window-height before setting window start.
14933 2003-09-22  Greg Hill  <ghill@synergymicro.com>  (tiny change)
14935         * emacs-lisp/bytecomp.el (byte-compile-log-file):
14936         Clear out byte-compile-last-warned-form.
14938 2003-09-22  Richard M. Stallman  <rms@gnu.org>
14940         * woman.el (woman-file-name, woman-follow-word):
14941         If current-word returns nil, use "".
14943         * simple.el (eval-expression): Bind standard-output in to-buffer case.
14945 2003-09-22  Richard M. Stallman  <rms@gnu.org>
14947         * emacs-lisp/lisp-mnt.el (lm-with-file):
14948         Don't visit the file, just use insert-file-contents in temp buffer.
14950 2003-09-22  Jari Aalto  <jari.aalto@poboxes.com>
14952         * emacs-lisp/lisp-mnt.el (lm-get-header-re):
14953         Add surrounding \\( and \\) around the header, as in
14954         for lm-history-header 'Change Log\\|History'.
14956 2003-09-22  John Paul Wallington  <jpw@gnu.org>
14958         * progmodes/ld-script.el: Add Commentary section,
14959         minor cleanup of file header.
14960         (ld-script-font-lock-keywords): Doc fix.
14961         (toplevel): Provide `ld-script' feature.
14963 2003-09-21  Kim F. Storm  <storm@cua.dk>
14965         * scroll-bar.el (set-scroll-bar-mode): Initialize to
14966         new built-in variable default-frame-scroll-bars.
14967         (scroll-bar-mode): Use default-frame-scroll-bars when enabling
14968         scroll-bar-mode; notably, use it instead of t when we toggle
14969         scroll-bars on.
14970         (toggle-scroll-bar): Use default-frame-scroll-bars.
14972 2003-09-19  Masatake YAMATO  <jet@gyve.org>
14974         * pcvs.el (cvs-do-removal): Change the prompt depending on
14975         `filter' value.
14977 2003-09-19  Glenn Morris  <gmorris@ast.cam.ac.uk>
14979         * startup.el (command-line-1): Stop startup-echo-area-message
14980         being hidden by "Loading image..." message.
14981         (use-fancy-splash-screens-p, display-splash-screen):
14982         Move display-graphic-p test from latter to former.
14984         * progmodes/sh-script.el (sh-font-lock-keywords):
14985         Highlight escaped EOLs differently from other backslash constructs.
14987 2003-09-19  Richard M. Stallman  <rms@gnu.org>
14989         * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
14990         New functions.
14991         (edebug-enter, edebug-outside-excursion): Use them.
14993         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
14994         Fix the condition for whether to print "In WHERE".
14996 2003-09-19  Jari Aalto  <jari.aalto@poboxes.com>
14998         * finder.el (finder-mode-hook): New variable.
14999         (finder-mode): Run hook finder-mode-hook
15001 2003-09-18  Masatake YAMATO  <jet@gyve.org>
15003         * progmodes/ebrowse.el: Fix broken magic autoload comments.
15005 2003-09-17  Mario Lang  <mlang@delysid.org>
15007         * progmodes/gud.el (perldb): Change gud-print from just "%e" to
15008         "p %e" to actually print the value in the GUD buffer.
15010 2003-09-16  Miles Bader  <miles@gnu.ai.mit.edu>
15012         From David Ponce <david.ponce@wanadoo.fr>:
15013         * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
15014         (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
15015         from loaddefs-boot.el if necessary.
15017 2003-09-15  Zoltan Kemenczy  <kemenczy@rogers.com>
15019         * progmodes/gud.el (gud-find-class): Make jdb work again since
15020         cc-mode changed the syntactic information.
15022 2003-09-15  David Ponce  <david@dponce.com>
15024         * recentf.el: (recentf-exclude): Accept predicates too.
15025         (recentf-file-readable-p): New function.
15026         (recentf-include-p): Handle predicates in recentf-exclude.
15027         (recentf-add-file): Doc fix.  Use recentf-file-readable-p.
15028         (recentf-cleanup): Likewise.
15029         (recentf-save-list): Use write-file to handle backup of
15030         recentf-save-file.
15032 2003-09-15  Miles Bader  <miles@gnu.ai.mit.edu>
15034         * loaddefs-boot.el: Renamed from `loaddefs.el'
15035         * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
15036         (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
15037         necessary.
15039 2003-09-13  Thien-Thi Nguyen  <ttn@gnu.org>
15041         * electric.el (Electric-pop-up-window): For the `one-window' case,
15042         no longer disconcertingly move point in the original buffer.
15044 2003-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15046         * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
15048 2003-09-12  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
15050         * dired.el (dired-mode-map): Fix typo.
15052 2003-09-11  Richard M. Stallman  <rms@gnu.org>
15054         * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
15056 2003-09-11  Paul Pogonyshev  <pogonyshev@gmx.net>  (tiny change)
15058         * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
15059         the function is less noisy.  Now only `kill-buffer' can ask questions.
15061 2003-09-10  Mario Lang  <mlang@delysid.org>
15063         * battery.el: Update Commentary and Copyright.
15064         (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
15065         appear due to wrong ordering of the expressions in `or'.
15067 2003-09-09  Lute Kamstra  <lute@gnu.org>
15069         * misc.el (upcase-char): Fix docstring.
15070         (zap-up-to-char): New command.
15072 2003-09-08  David Ponce  <david@dponce.com>
15074         Ensure that recentf correctly updates the menu bar.
15075         * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
15076         (recentf-menu-bar): New function.
15077         (recentf-clear-data): Use it
15078         (recentf-update-menu): Likewise.  Use easy-menu-add-item instead
15079         of easy-menu-change.
15081 2003-09-08  Lute Kamstra  <lute@gnu.org>
15083         * simple.el (size-indication-mode): New.
15084         * bindings.el (mode-line-position): Add buffer size indicator.
15086 2003-09-04  Mario Lang  <mlang@delysid.org>
15088         * battery.el (battery-linux-proc-acpi): New function.
15089         (battery-status-function): Modify default value calculation to also
15090         check for availability of ACPI.
15091         (battery-echo-area-format): Ditto.
15092         (battery-mode-line-format): Ditto.
15094 2003-09-06  Dave Love  <fx@gnu.org>
15096         * ielm.el (ielm-mode-hook): Add :options.
15098         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
15099         (eldoc-print-current-symbol-info): Use it.
15101 2003-09-04  Nick Roberts  <nick@nick.uklinux.net>
15103         * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
15104         being displayed in GUD buffer.
15105         (gdb-idle-input-queue): Remove var.  Use just one queue.
15106         (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
15107         Remove functions.  Use just one queue.
15108         (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
15109         (gdb-invalidate-assembler, gdb-get-current-frame):
15110         Modify functions.  Use just one queue.
15112 2003-09-04  Dave Love  <fx@gnu.org>
15114         * cus-start.el: Add blink-cursor-alist.
15116         * ruler-mode.el (ruler-mode-fill-column-char)
15117         (ruler-mode-current-column-char): Use char-displayable-p,
15118         not window-system.
15120         * international/codepage.el ("mule-diag"): Add eval-after-load clause.
15122         * language/european.el (windows-1252): Move from code-pages.
15124         * language/cyrillic.el ("Windows-1251"): Delete.
15125         ("Bulgarian", "Belarusian"): Remove `features'.
15126         (windows-1251): Move from code-pages.
15128         * international/mule-diag.el (non-iso-charset-alist):
15129         Remove `codepage' stuff.
15130         (print-designation, list-coding-systems-1): Output fixes.
15132         * international/code-pages.el (cp-make-translation-table)
15133         (cp-valid-codes): Made defsubsts.
15134         (cp-fix-safe-chars): Delete.
15135         (mule-diag): Don't require.
15136         (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
15137         (top-level): Check for defined coding system when defining
15138         cp... aliases.  Change w32-add-charset-info test to avoid warning.
15139         (non-iso-charset-alist): Defvar when compiling.
15140         (cp-make-coding-system): Doc fix.
15142 2003-09-02  Jason Rumney  <jasonr@gnu.org>
15144         * international/titdic-cnv.el (tsang-quick-converter): Fix broken
15145         line-ends from CVS before doing conversion.
15147 2003-09-02  Glenn Morris  <gmorris@ast.cam.ac.uk>
15149         * calendar/diary-lib.el (diary-header-line-flag)
15150         (diary-header-line-format): New variables.
15151         (list-diary-entries): Use them to set header line in simple diary.
15153         * progmodes/sh-script.el (sh-font-lock-keywords): Use something
15154         other than font-lock-string-face to highlight backslashes.
15156 2003-09-01  Jason Rumney  <jasonr@gnu.org>
15158         * international/titdic-cnv.el (tit-read-key-value): Include \r in
15159         regexp.
15161 2003-09-01  Dave Love  <fx@gnu.org>
15163         * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
15165         * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
15166         and :help; also line and column numbers labels.
15168         * international/mule-util.el (char-displayable-p): Move from
15169         latin1-disp, rename and autoload.
15171         * international/latin1-disp.el (latin1-char-displayable-p):
15172         Now obsolete alias.  Replace uses with char-displayable-p.
15173         (latin1-display-ucs-per-lynx): Fix last change.
15175         * international/mule-cmds.el (standard-display-european-internal):
15176         Don't use char code for Latin-1 NBSP.
15177         <XFree86 4>: Unfrob NBSP display table.  Set display table to use
15178         U+2018, U+2019 for `'.
15179         (select-safe-coding-system): Message fix.
15181 2003-09-01  Kenichi Handa  <handa@m17n.org>
15183         * international/fontset.el (setup-default-fontset): For Thai
15184         font, specify "*" family.
15186 2003-09-01  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
15188         * progmodes/compile.el (previous-error): Accept a prefix
15189         argument, similarly to next-error.
15191 2003-08-31  Masatake YAMATO  <jet@gyve.org>
15193         * pcvs.el (cvs-do-removal): Use = instead of eq to check
15194         the number of files.  Bind the number of files to a local
15195         variable.  Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
15197 2003-08-30  Eli Zaretskii  <eliz@gnu.org>
15199         * vc-hooks.el (vc-make-version-backup): Fix the change made on
15200         2003-07-26: msdos-long-file-names is a function, not a variable.
15202 2003-08-29  Richard M. Stallman  <rms@gnu.org>
15204         * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
15205         Do nothing with mail-personal-alias-file if it is nil.
15207         * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
15208         Do nothing if mail-personal-alias-file is nil.
15210         * term.el (term-exec-1): Bind coding-system-for-read.
15212         * dired.el (dired-mouse-find-file-other-window):
15213         Use dired-view-command-alist here, as in dired-view-file.
15214         (dired-view-command-alist): Use %s to substitute file name.
15215         Handle .ps_pages, .eps, .jpg, .gif, .png.
15217 2003-08-29  Paul Pogonyshev  <pogonyshev@gmx.net>  (tiny change)
15219         * info.el (Info-mode-map): Bind S-tab and <backtab> to
15220         `Info-prev-reference', instead of M-tab.
15222 2003-08-29  Martin Stjernholm  <mast@lysator.liu.se>
15224         * simple.el (blink-matching-open): Work correctly on chars that
15225         are designated as parens through the syntax-table text property.
15227 2003-08-29  Thierry Emery  <thierry.emery@club-internet.fr>  (tiny change)
15229         * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
15230         line break position in the middle of a non-kinsoku (e.g. latin)
15231         word, making it skip until either a space or a character with
15232         category "|".
15233         (kinsoku-longer): Test for end of buffer.
15235 2003-08-28  Eli Zaretskii  <eliz@gnu.org>
15237         * mail/rmail.el (rmail-convert-to-babyl-format):
15238         Detect quoted-printable- and base64-encoded messages and decode them
15239         automatically.  Set the message's encoding from the charset=
15240         header, if any.  Decode base64-encoded messages in Mail format as well.
15242 2003-08-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
15244         * mail/smtpmail.el: Fix previous change.
15245         (smtpmail-send-queued-mail): Set smtpmail-mail-address before
15246         calling smtpmail-via-smtp.
15247         (smtpmail-via-smtp): Add fall-back values for envelope-from.
15249 2003-08-26  John Paul Wallington  <jpw@gnu.org>
15251         * image.el (image-jpeg-p): Don't search beyond length of data.
15253 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
15255         * progmodes/cc-cmds.el (c-electric-brace): Work around for a
15256         misfeature in `expand-abbrev' which caused electric keywords like
15257         "else" to disappear if an open brace was typed directly afterwards.
15259 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
15261         * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
15262         mandatory in `define-widget'.
15264         * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
15265         Don't align the operators "!=", "<=" and ">=" as assignment operators.
15267         (c-assignment-operators): New language constant that only contains
15268         the assignment operators.
15270         (c-assignment-op-regexp): New language var used by `c-lineup-math'.
15272 2003-08-26  Martin Stjernholm  <bug-cc-mode@gnu.org>
15274         * progmodes/cc-engine.el (c-just-after-func-arglist-p):
15275         Safeguard against unbalanced sexps.
15277 2003-08-26  Terje Rosten  <terjeros@phys.ntnu.no>
15279         * version.el (emacs-version): Check for gtk.  Include gtk version info.
15281 2003-08-25  John Paul Wallington  <jpw@gnu.org>
15283         * man.el (Man-default-man-entry): Don't whizz past the section
15284         number before looking for it.
15286 2003-08-24  Nick Roberts  <nick@nick.uklinux.net>
15288         * progmodes/gud.el (gud-display-line): Don't set window-point if
15289         source buffer is not visible.  (Only happens with M-x gdba.)
15291         * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
15292         documentation.
15293         (gdb-source, gdb-source-info): Update to assembler unnecessary
15294         as its done after each GDB command anyway.
15295         (gdb-pre-prompt): Use with-current-buffer.
15296         (gdb-insert-field): Add help-echo text.
15297         (gdb-invalidate-assembler): Re-display of assembler now done in
15298         gdb-info-breakpoints-custom.
15299         (gdb-info-breakpoints-custom): Force re-display of assembler to
15300         happen *after* update of breakpoints buffer.
15301         (gdb-display-source-buffer): Don't choke if gdb-source-window
15302         isn't visible.
15303         (gdb-put-string, gdb-put-arrow): Remove free variables.
15305 2003-08-24  John Paul Wallington  <jpw@gnu.org>
15307         * ibuffer.el (ibuffer-formats): Make name and size columns wider.
15309         * man.el (Man-default-man-entry): Strip text properties when
15310         snarfing parts of entry because `format' preserves properties.
15312 2003-08-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
15314         * files.el (file-newest-backup): Use `expand-file-name'.
15316         * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
15317         Allow the diary to pop up a new frame, if needed.
15319         * mail/sendmail.el (mail-specify-envelope-from): Doc change.
15320         * mail/smtpmail.el (smtpmail-mail-address): Doc change.
15321         (smtpmail-send-it): Make treatment of envelope-from consistent with
15322         sendmail.el.
15324         * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
15325         (sh-leading-keywords): Add the bash `time' reserved word.
15326         (sh-variables): Add some bash variables.
15327         (sh-add-completer): Fix nil branch of case statement.
15329 2003-08-24  Masatake YAMATO  <jet@gyve.org>
15331         * progmodes/ld-script.el: New file.
15333 2003-08-23  Markus Rost  <rost@math.ohio-state.edu>
15335         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
15337 2003-08-23  Andre Spiegel  <spiegel@gnu.org>
15339         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
15340         Better explain obsolescence, and what to use instead.
15342 2003-08-23  Masatake YAMATO  <jet@gyve.org>
15344         * pcvs.el (cvs-do-removal): Show the deleted file name
15345         on the prompt.
15347 2003-08-20  Dave Love  <fx@gnu.org>
15349         * international/mule.el (make-coding-system)
15350         (set-buffer-file-coding-system): Doc fix.
15352         * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
15354         * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
15356         * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
15358         * international/utf-16.el: Add mime-text-unsuitable coding system
15359         properties.
15361         * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
15363         * cus-edit.el: Add some :links.
15364         (bib): Remove.
15366         * textmodes/bib-mode.el (bib): Add :group external.
15368 2003-08-18  Luc Teirlinck  <teirllm@mail.auburn.edu>
15370         * wid-edit.el (widget-echo-help): Make it handle expressions that
15371         evaluate to strings.
15373 2003-08-18  Michael Mauger  <mmaug@yahoo.com>
15375         Version 1.8.0 of sql-mode.  (Patch submitted 2003-06-21)
15377         Simplify selection of SQL products to define highlighting and
15378         interactive mode.  Includes detailed instructions on adding
15379         support for new products.
15381         * progmodes/sql.el (sql-product): New variable.  Identifies SQL
15382         product for use in highlighting and interactive mode.
15383         (sql-interactive-product): New variable.  SQL product for
15384         sql-interactive-mode.
15385         (sql-product-support): New variable.  Specifies product-specific
15386         parameters to drive highlighting and interactive mode.
15387         (sql-imenu-generic-expression): Add more object types.
15388         (sql-sqlite-options): Correct comment.
15389         (sql-ms-program): Use "osql" rather than "isql".
15390         (sql-prompt-regexp, sql-prompt-length): Update comment.
15391         (sql-mode-menu): Add "Start SQLi session" entry.
15392         Replace Highlighting submenu with Product menu.  Fix Send Region entry.
15393         (sql-mode-abbrev-table): Add abbreviations.  Support of
15394         SYSTEM-FLAG on define-abbrev.  Support was removed with last
15395         check-in; it now handles older Emacsen without the SYSTEM-FLAG.
15396         (sql-mode-font-lock-object-name): Add font-lock pattern for object
15397         names.
15398         (sql-mode-ansi-font-lock-keywords): Set as default value.
15399         (sql-mode-oracle-font-lock-keywords): Set as default value.
15400         Support Oracle 9i keywords.
15401         (sql-mode-postgres-font-lock-keywords): Set as default value.
15402         (sql-mode-linter-font-lock-keywords): Set as default value.
15403         (sql-mode-ms-font-lock-keywords): New variable.  Support Microsoft
15404         SQLServer 2000.
15405         (sql-mode-sybase-font-lock-keywords)
15406         (sql-mode-interbase-font-lock-keywords)
15407         (sql-mode-sqlite-font-lock-keywords)
15408         (sql-mode-strong-font-lock-keywords)
15409         (sql-mode-mysql-font-lock-keywords)
15410         (sql-mode-db2-font-lock-keywords): New variables.  Default to ANSI
15411         keywords.
15412         (sql-mode-font-lock-defaults): Update comment.
15413         (sql-product-feature): New function.  Returns feature associated
15414         with a product from `sql-product-support' alist.
15415         (sql-product-font-lock): New function.  Set font-lock support
15416         based on `sql-product'.
15417         (sql-add-product-keywords): New function.  Add font-lock rules to
15418         product-specific keyword variables.
15419         (sql-set-product): New function.  Set `sql-product' and apply
15420         appropriate font-lock highlighting.
15421         (sql-highlight-product): New function.  Set font-lock support
15422         based on a product.  Also set mode name to include product name.
15423         (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
15424         (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
15425         Use `sql-set-product'.
15426         (sql-highlight-ms-keywords)
15427         (sql-highlight-sybase-keywords)
15428         (sql-highlight-interbase-keywords)
15429         (sql-highlight-strong-keywords)
15430         (sql-highlight-mysql-keywords)
15431         (sql-highlight-sqlite-keywords)
15432         (sql-highlight-db2-keywords): New functions.  Use `sql-set-product'.
15433         (sql-get-login): Prompt in the same order as the tokens.
15434         (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
15435         (sql-product-interactive): New function.  Common portions of
15436         product-specific interactive mode wrappers.
15437         (sql-interactive-mode): Rewritten to use product features.
15438         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
15439         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
15440         (sql-db2, sql-linter): Use `sql-product-interactive'.
15441         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
15442         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
15443         (sql-connect-ingres, sql-connect-postgres)
15444         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
15445         New functions.  Format command line parameters and invoke comint on
15446         the appropriate interpreter.  Code was in the corresponding
15447         `sql-xyz' function before.
15448         (sql-connect-ms): New function.  Support -E argument to use
15449         operating system credentials for authentication.
15451 2003-08-18  Kenichi Handa  <handa@m17n.org>
15453         * international/mule.el (encode-char): Fix for the ASCII case.
15455 2003-08-15  Kenichi Handa  <handa@m17n.org>
15457         * international/fontset.el (setup-default-fontset): Change "*" to
15458         nil in the specifications of font family.
15460 2003-08-18  Kim F. Storm  <storm@cua.dk>
15462         * kmacro.el (kmacro-keymap): Group related bindings in
15463         initialization for clarity.  Bind C-s to start macro.
15464         Remove C-r binding.
15465         (kmacro-initial-counter-value): New defvar to hold initial counter
15466         value in case we set the value before defining a macro.
15467         (kmacro-insert-counter): Clear kmacro-initial-counter-value..
15468         (kmacro-set-counter): Set kmacro-initial-counter-value if we are
15469         not defining or executing macro.  Doc fix.
15470         (kmacro-add-counter): Clear kmacro-initial-counter-value.
15471         (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
15472         temporarily view older elements on the macro ring without cycling
15473         the ring.
15474         (kmacro-display): Doc fix.
15475         (kmacro-exec-ring-item): New helper function.
15476         (kmacro-call-ring-2nd): Use it.
15477         (kmacro-call-ring-2nd-repeat): Doc fix.
15478         (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
15479         (kmacro-end-or-call-macro): Execute last viewed macro (using
15480         kmacro-exec-ring-item) from ring if this follows
15481         kmacro-view-macro.  This allows us to find a macro on the ring
15482         with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
15483         the ring to bring it to the head of the ring.
15484         (kmacro-bind-to-key): Doc fix (describe reserved bindings).
15485         Allow binding to reserved keys without specifying C-x C-k prefix.
15486         Ask for confirmation if entered key sequence is already bound to
15487         a non-macro command.
15488         (kmacro-view-macro): Repeating command will show older elements
15489         on the macro ring; C-k will execute the last viewed macro.
15490         (kmacro-view-macro-repeat): Doc fix.  Change its kmacro-repeat
15491         property from 'ring to 'head.
15493 2003-08-17  Alan Shutko  <ats@acm.org>
15495         * calendar/calendar.el (calendar-make-alist): Correct off-by-one
15496         keeping December out of the alist.
15498 2003-08-17  Edward M. Reingold  <reingold@emr.cs.iit.edu>
15500         * calendar/cal-move.el (calendar-goto-day-of-year): New function.
15501         * calendar/calendar.el (calendar-mode-map): Bind it to key.
15502         * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
15503         (calendar-flatten): New function.
15504         (calendar-mouse-view-other-diary-entries)
15505         (calendar-mouse-view-diary-entries): Rewritten to put any holidays
15506         in the menu title and to show multi-line diary entries correctly
15507         in the menu.
15509 2003-08-17  Luc Teirlinck  <teirllm@mail.auburn.edu>
15511         * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
15512         defcustom, because the default was recently changed.
15514 2003-08-16  Richard M. Stallman  <rms@gnu.org>
15516         * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
15518         * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
15519         New subroutine, broken out of eval-last-sexp-1.
15520         (eval-last-sexp-1): Use eval-last-sexp-print-value.
15522         * custom.el (custom-load-symbol): Load cus-load and cus-start first.
15524         * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
15526         * simple.el (eval-expression): Use eval-last-sexp-print-value.
15528 2003-08-14  Jari Aalto  <jari.aalto@poboxes.com>
15530         * progmodes/compile.el (compilation-error-regexp-alist):
15531         Add Java ANt error detection as described in document
15532         http://ant.apache.org/faq.html
15534 2003-08-12  Juri Linkov  <juri@jurta.org>  (tiny change)
15536         * simple.el (backward-word, forward-to-indentation)
15537         (backward-to-indentation): Argument changed to optional.
15538         (next-line, previous-line): Use `or' instead of `unless'.
15540 2003-08-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15542         * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
15543         instead of a constant.
15545 2003-08-12  Markus Rost  <rost@math.ohio-state.edu>
15547         * shell.el (shell): With prefix-arg, suggest a new buffer name.
15549 2003-08-12  Andre Spiegel  <spiegel@gnu.org>
15551         * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
15552         (vc-sccs-workfile-version): Search the entire delta table, rather
15553         than just the first entry, because that might be a deleted version.
15555 2003-08-11  Karl Fogel  <kfogel@red-bean.com>
15557         * menu-bar.el (menu-bar-options-menu): Supply a body for the
15558         [save-place] binding in the Options menu.  Have it require
15559         'saveplace' and then toggle the variable manually, to avoid an an
15560         unbound variable error.  Thanks to <Sebastien.Kirche@sage.com>
15561         for the bug report.
15563 2003-08-11  Nick Roberts  <nick@nick.uklinux.net>
15565         * gdb-ui.el (gdb-insert-field, gdb-array-format1)
15566         (gdb-info-breakpoints-custom, gdb-info-frames-custom)
15567         (gdb-info-threads-custom): Add help-echo text.
15568         (gdb-display-back): Don't use purecopy.
15569         (gdb-info-breakpoints-custom, gdb-reset)
15570         (gdb-assembler-custom): Use display-images-p to test if breakpoint
15571         icons can be displayed.
15573 2003-08-11  Markus Rost  <rost@math.ohio-state.edu>
15575         * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
15577 2003-08-11  Stefan Monnier  <monnier@cs.yale.edu>
15579         * bookmark.el (bookmark-completing-read):
15580         Return a string, instead of a list of one string.
15581         Use a popup menu if activated from the mouse.
15582         (bookmark-edit-annotation): Remove unused vars.
15583         (bookmark-jump, bookmark-relocate, bookmark-insert-location)
15584         (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
15585         to bookmark-completing-read.
15586         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
15587         (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
15588         (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
15589         and erase-buffer.
15590         (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
15591         (bookmark-menu-jump, bookmark-menu-insert)
15592         (bookmark-popup-menu-and-apply-function)
15593         (bookmark-menu-popup-paned-bookmark-menu): Remove.
15594         (bookmark-menu-build-paned-menu): Remove by folding it into
15595         bookmark-menu-popup-paned-menu.
15596         (menu-bar-bookmark-map): Move the define-key statements here.
15597         Use the "non-menu" commands since they now pop up a menu if needed.
15598         (bookmark-exit-hook-internal): Simplify.
15600 2003-08-11  Carsten Dominik  <dominik@sand.science.uva.nl>
15602         * reftex-toc.el (reftex-toc-rename-label): New function.
15603         (reftex-toc-check-docstruct): New function.
15605         * reftex.el (reftex-region-active-p): New function.
15607         * reftex-parse.el (reftex-locate-bibliography-files): Improved the
15608         regexp to find the \bibliography macro.
15610         * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
15611         which does not exist in LaTeX.
15612         (reftex-cite-format-builtin): Added amsrefs support.
15613         (reftex-toc-confirm-promotion): New option
15615         * reftex-toc.el
15616         (reftex-toc): Use `reftex-toc-split-windows-fraction'.
15617         (reftex-toc-demote, reftex-toc-promote)
15618         (reftex-toc-do-promote, reftex-toc-promote-prepare)
15619         (reftex-toc-promote-action, reftex-toc-extract-section-number)
15620         (reftex-toc-newhead-from-alist)
15621         (reftex-toc-load-all-files-for-promotion): New functions.
15622         (reftex-toc-help): Added description of new keys.
15623         (reftex-toc-split-windows-fraction): New option.
15624         (reftex-recenter-toc-when-idle): Search *toc* window on all
15625         visible frames.
15626         (reftex-toc): Additional parameter REUSE
15627         (reftex-toc-recenter): Remember current frame.  Call `reftex-toc'
15628         with REUSE argument.
15629         (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
15630         the call of `reftex-toc'.
15631         (reftex-make-separate-toc-frame): New function .
15632         (reftex-toc-recenter): When called with triple prefix arg, call
15633         `reftex-make-separate-toc-frame' first.
15634         (reftex-toc-toggle-dedicated-frame): New command.
15635         (reftex-toc-quit): Adapted to delete frame when called in
15636         dedicated frame.
15638         * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
15639         all enclosing macros.
15642 2003-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15644         * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
15645         first use.
15647 2003-08-07  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15649         * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
15651 2003-08-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
15653         * calendar/calendar.el (list-diary-entries-hook)
15654         (diary-display-hook, nongregorian-diary-listing-hook)
15655         (mark-diary-entries-hook, nongregorian-diary-marking-hook):
15656         Add some customize options for these hooks.
15657         (calendar-abbrev-construct): Don't try to take a substring longer
15658         than the original string.
15660 2003-08-05  Richard M. Stallman  <rms@gnu.org>
15662         * emacs-lisp/testcover.el (noreturn): Report error if does return.
15663         (testcover-reinstrument-clauses): Doc fix.
15665         * emacs-lisp/warnings.el: Doc fixes, args renamed.
15666         (warning-type-format): Rename from warning-group-format.
15668         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
15669         (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
15670         (byte-compile-defvar): Bind byte-compile-not-obsolete-var
15671         to prevent warnings about defvar for an obsolete variable.
15673         * emacs-lisp/bytecomp.el (byte-compile-log-warning):
15674         warning-group-format renamed to warning-type-format.
15676         * subr.el (read-passwd): Use clear-string instead of fillarray.
15678         * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
15679         Use vconcat instead of concat.
15680         (edmacro-sanitize-for-string): New function.
15682 2003-08-05  Dave Love  <fx@gnu.org>
15684         * cus-start.el: Add open-paren-in-column-0-is-defun-start,
15685         line-number-display-limit-width.
15687         * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
15689 2003-08-05  Kenichi Handa  <handa@m17n.org>
15691         * international/code-pages.el: Don't require mule-diag.
15693         * international/mule-diag.el (non-iso-charset-alist):
15694         Add autoload cookie.
15696         * language/devan-util.el (dev-glyph-order): Add an entry for the
15697         glyph code #xC4.
15699 2003-08-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
15701         * calendar/calendar.el (diary-file, diary-file-name-prefix)
15702         (european-calendar-style, diary-date-forms)
15703         (calendar-day-name-array, calendar-month-name-array): Doc change.
15704         (generate-calendar-month): Adapt for new behaviour of
15705         `calendar-day-name' function.
15706         (calendar-abbrev-length, calendar-day-abbrev-array)
15707         (calendar-month-abbrev-array): New variables.
15708         (calendar-abbrev-construct): New function.
15709         (calendar-day-name, calendar-month-name): Use new abbrev arrays,
15710         rather than fixing abbrevs at some width.  Calling syntax change.
15711         (calendar-make-alist): Use abbrev arrays.  Calling syntax change.
15712         (calendar-date-string): Adapt for new behaviours of
15713         `calendar-day-name' and `calendar-month-name' functions.
15715         * calendar/diary-lib.el (list-diary-entries): Adapt for new
15716         behaviour of `calendar-day-name' and `calendar-month-name' functions.
15717         (diary-name-pattern): Use abbrev arrays, rather than fixing
15718         abbrevs at three chars.  Calling syntax change.
15719         (mark-diary-entries): Adapt for new behaviours of
15720         `diary-name-pattern' and `calendar-make-alist' functions.
15721         (fancy-diary-font-lock-keywords): Adapt for new behaviour of
15722         `diary-name-pattern' function.
15723         (font-lock-diary-date-forms): Use abbrev arrays, rather than
15724         fixing abbrevs at three chars.  Calling syntax change.
15725         (cal-hebrew, cal-islam): Require when compiling.
15726         (diary-font-lock-keywords): Adapt for new behaviour of
15727         `font-lock-diary-date-forms' function.
15729         * calendar/cal-hebrew.el: Reposition some code so defined before used.
15730         (calendar-hebrew-month-name-array-common-year)
15731         (calendar-hebrew-month-name-array-leap-year): Add doc strings.
15732         (list-hebrew-diary-entries): Adapt for new behaviours of
15733         `calendar-day-name' and `add-to-diary-list' functions.
15734         (mark-hebrew-diary-entries): Adapt for new behaviours of
15735         `diary-name-pattern' and `calendar-make-alist' functions.
15737         * calendar/cal-islam.el (calendar-islamic-month-name-array):
15738         Add doc string.
15739         (list-islamic-diary-entries): Adapt for new behaviours of
15740         `calendar-day-name' and `add-to-diary-list' functions.
15741         (mark-islamic-diary-entries): Adapt for new behaviours of
15742         `diary-name-pattern' and `calendar-make-alist' functions.
15744         * calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
15745         `calendar-month-name' function.
15747         * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
15749         * calendar/solar.el (solar-seasons-data): Move definition before use.
15751         * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
15752         (cal-tex-LaTeX-hourbox): Move definition before use.
15754         * calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
15755         cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
15756         lunar.el, solar.el
15757         (displayed-month, displayed-year): Define for compiler.
15759 2003-08-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
15761         * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
15762         MODE.  Renamed from c-init-c-language-vars'.
15763         (c-initialize-cc-mode): Change accordingly.
15764         (c-common-init): Ditto.
15765         (c-mode): Ditto.
15766         (c++-mode): Use `c-init-language-vars-for'.
15767         (objc-mode): Ditto.
15768         (java-mode): Ditto.
15769         (idl-mode): Ditto.
15770         (pike-mode): Ditto.
15771         (awk-mode): Ditto.
15773 2003-08-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
15775         * progmodes/cc-engine.el (c-end-of-current-token): Return whether
15776         or not the point moved.
15778         (c-search-decl-header-end): Don't trip up on operator identifiers
15779         in C++ and operators like == in all languages.
15781         * progmodes/cc-engine.el (c-backward-to-decl-anchor):
15782         Detect leading labels correctly.
15784 2003-08-02  Andreas Schwab  <schwab@suse.de>
15786         * textmodes/ispell.el: Don't redo key bindings on loading, put
15787         them only in loaddefs.el.
15788         * bookmark.el: Likewise.
15789         * dabbrev.el: Likewise.
15790         * emerge.el: Likewise.
15792         * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
15793         has more than one member.
15795         * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
15797 2003-08-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15799         * lpr.el (printify-region): It was ending conversion before the
15800         expected position.  Reported by Keiichi Suzuki <keiichi@nanap.org>.
15802 2003-07-31  John Paul Wallington  <jpw@gnu.org>
15804         * net/browse-url.el (browse-url-epiphany): Doc fix.
15806 2003-07-30  Kenichi Handa  <handa@m17n.org>
15808         * international/fontset.el (setup-default-fontset):
15809         Change registry names of Akurti fonts.
15811 2003-07-29  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
15813         * comint.el (comint-read-noecho): Use `clear-string' instead of
15814         `fillarray'.
15816 2003-07-29  Thomas W Murphy  <twm@andrew.cmu.edu>  (tiny change)
15818         * outline.el (outline-mode-hook): Add defvar.
15820 2003-07-28  Nick Roberts  <nick@nick.uklinux.net>
15822         * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
15823         Restore assembler in source window if that is what has been selected.
15824         (menu): Add gdb-restore-windows to menu.  Make gdba
15825         specific menus only visible from gdba.
15827 2003-07-28  Tak Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
15829         * progmodes/compile.el (compilation-environment): New user variable.
15830         (compile-internal): Respect it.
15832 2003-07-23  Masatake YAMATO  <jet@gyve.org>
15834         * progmodes/gud.el (gdb-script-font-lock-keywords):
15835         Put `font-lock-function-name-face' on a symbol which includes
15836         `-' like `hook-run'.  Put font-lock-variable-name-face
15837         on a symbol starting with $.
15839 2003-07-27  Markus Rost  <rost@math.ohio-state.edu>
15841         * files.el (set-visited-file-name): Use truename for buffer-file-name.
15843 2003-07-26  Markus Rost  <rost@math.ohio-state.edu>
15845         * vc-hooks.el (vc-file-not-found-hook): Doc fix.
15847 2003-07-26  Andre Spiegel  <spiegel@gnu.org>
15849         * vc-hooks.el (vc-default-registered, vc-make-version-backup):
15850         Use with-no-warnings.
15851         (vc-file-not-found-hook): Add this to find-file-not-found-functions,
15852         rather than to find-file-not-found-hook, which doesn't exist.
15854 2003-07-26  Markus Rost  <rost@math.ohio-state.edu>
15856         * international/quail.el (quail-translate-key): Fix previous change.
15858 2003-07-25  John Paul Wallington  <jpw@gnu.org>
15860         * server.el (server-start): Check `server-process' is non-nil
15861         before killing it to avoid killing current buffer's process.
15863         * simple.el (choose-completion-string): Use `minibufferp';
15864         test `completion-reference-buffer' if `buffer' arg is nil.
15865         (push-mark): Use `when' and `unless'.
15866         (pop-mark): Use `when'.
15868         * mouse-sel.el (mouse-sel-get-selection-function):
15869         Check `x-last-selected-text-primary'.  Don't barf if it or
15870         `x-last-selected-text' aren't bound.
15872 2003-07-25  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
15874         * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
15876 2003-07-23  Stefan Monnier  <monnier@cs.yale.edu>
15878         * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
15880 2003-07-23  John Paul Wallington  <jpw@gnu.org>
15882         * tooltip.el (defface tooltip): Inherit from variable-pitch.
15884 2003-07-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
15886         * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
15887         string.  Defvar the derived hook.
15889         * macros.el (insert-kbd-macro): Escape double quote character.
15890         From Thomas W Murphy <twm@andrew.cmu.edu>.
15892 2003-07-22  Stefan Monnier  <monnier@cs.yale.edu>
15894         * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
15895         to match the specific mark rather than reusing comment-start-skip.
15897 2003-07-22  Thien-Thi Nguyen  <ttn@gnu.org>
15899         * progmodes/hideshow.el (hs-special-modes-alist):
15900         Clarify MDATA-SELECTOR doc; nfc.  Thanks to Michael Ernst.
15902 2003-07-21  Markus Rost  <rost@math.ohio-state.edu>
15904         * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
15905         value using ?\s.
15907 2003-07-21  John Paul Wallington  <jpw@gnu.org>
15909         * subr.el (with-selected-window): Add closing paren.
15911 2003-07-21  Richard M. Stallman  <rms@gnu.org>
15913         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
15914         (lisp-mode): Likewise.
15916         * subr.el (with-selected-window): Copy code form save-selected-window
15917         so as to call select-window with norecord arg.
15918         (dynamic-completion-table): Doc fix.
15919         (lazy-completion-table): Doc fix.
15921         * international/mule-cmds.el (set-locale-environment):
15922         langinfo renamed to locale-info.
15924         * international/mule.el (auto-coding-functions): Doc fix.
15926 2003-07-21  Kenichi Handa  <handa@m17n.org>
15928         * international/quail.el (quail-translate-key):
15929         Update quail-current-str correctly.
15931 2003-07-21  Andreas Schwab  <schwab@suse.de>
15933         * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
15934         ?, to "_".
15936 2003-07-20  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
15937         Version 2.0.36 of Tramp released.
15939         * net/tramp.el (tramp-default-password-end-of-line): Rename from
15940         tramp-password-end-of-line.
15941         (tramp-password-end-of-line): New method parameter.
15942         (tramp-get-password-end-of-line): Function to access method
15943         parameter `tramp-password-end-of-line', or variable
15944         `tramp-default-password-end-of-line' (default value).
15945         (tramp-methods): Add entries for new parameter
15946         tramp-password-end-of-line.
15947         (tramp-enter-password): Use new function
15948         `tramp-get-password-end-of-line'.
15949         (tramp-handle-insert-file-contents): Do not
15950         unconditionally inhibit the file operation file-local-copy, only
15951         do that when the inhibit-file-name-operation is currently
15952         insert-file-contents.  This fixes finding remote CVS-controlled
15953         files.  (It would barf on inserting the CVS/Entries file
15954         literally, because the file-local-copy handler wasn't called.)
15955         (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
15956         (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
15957         (tramp-initial-commands): New variable.
15958         (tramp-process-initial-commands): New function, using the variable.
15959         (tramp-open-connection-setup-interactive-shell): Call the new function.
15960         (tramp-buffer-name, tramp-debug-buffer-name): Always put the
15961         method into the buffer name, never use nil.  Reported by Hanak
15962         David <dhanak@inf.bme.hu>.
15963         (tramp-open-connection-setup-interactive-shell): Erase buffer
15964         before sending "stty -onlcr".
15966         * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
15968 2003-07-19  Markus Rost  <rost@math.ohio-state.edu>
15970         * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
15972 2003-07-19  John Paul Wallington  <jpw@gnu.org>
15974         * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
15975         (artist-draw-rect, artist-draw-square): Doc fixes.
15977         * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
15979         * textmodes/two-column.el (2C-mode-line-format): Doc fix.
15981 2003-07-19  Kenichi Handa  <handa@m17n.org>
15983         * international/kkc.el (kkc-show-conversion-list-update):
15984         Highlight the correct candidate in the message.
15986 2003-07-18  John Paul Wallington  <jpw@gnu.org>
15988         * simple.el (current-word): Don't include punctuation char when
15989         `really-word' arg is non-nil.
15991 2003-07-17  Martin Stjernholm  <bug-cc-mode@gnu.org>
15993         * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
15994         moved to the directory obsolete.
15996 2003-07-16  Stefan Monnier  <monnier@cs.yale.edu>
15998         * info.el (Info-menu-entry-name-re): Allow newlines in
15999         menu entry names.
16001         * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
16002         syntax-ppss-after-change-function.
16003         (syntax-ppss-after-change-function): New alias.  Update uses.
16004         (syntax-ppss): Catch the case where the buffer is narrowed.
16006 2003-07-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
16008         * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
16009         (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
16011 2003-07-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
16013         * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
16014         since it might be modified.
16016         * progmodes/cc-langs.el (c++-make-template-syntax-table)
16017         (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
16018         names to these language constants.
16020 2003-07-15  Kim F. Storm  <storm@cua.dk>
16022         * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
16023         All uses changed.
16025 2003-07-14  Mark A. Hershberger  <mah@everybody.org>
16027         * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
16028         Namespace support.
16030 2003-07-13  Juanma Barranquero  <lektu@terra.es>
16032         * frame.el (modify-all-frames-parameters): Reinstall (copyright
16033         papers received).
16035 2003-07-13  Karl Eichwalder  <ke@suse.de>
16037         * textmodes/po.el (po-find-charset): White space at the start of the
16038         Content-Type field body is non-mandatory.
16040 2003-07-13  Masayuki Ataka  <ataka@milk.freemail.ne.jp>  (tiny change)
16042         * textmodes/texinfo.el (texinfo-section-list):
16043         Append appendixsection; a synonym for appendixsec.
16045 2003-07-13  Jari Aalto  <jari.aalto@poboxes.com>
16047         * man.el (Man-translate-cleanup): New.
16048         (Man-translate-references): Call `Man-translate-cleanup' to clean
16049         leading, trailing and middle spaces.
16051 2003-07-13  Lars Hansen  <larsh@math.ku.dk>
16053         * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
16054         Handle `dired-directory' being a list.
16056 2003-07-13  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
16058         * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
16059         it doesn't exist.
16061 2003-07-12  Richard M. Stallman  <rms@gnu.org>
16063         * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
16065         * progmodes/cc-defs.el (c-make-keywords-re):
16066         Don't use delete-duplicates.
16067         (c-lang-const): Don't use mapcan.
16069         * apropos.el (apropos-show-scores): Make it customizable.
16070         Document new meaning.
16071         (apropos): Compute scores from symbols.
16072         (apropos-print): Don't sort by scores if apropos-show-scores is nil.
16074 2003-07-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
16076         * ps-bdf.el: Fix copyright line.
16077         (bdf-directory-list): Fix initialization code.
16079 2003-07-11  John Paul Wallington  <jpw@gnu.org>
16081         * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
16082         (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
16083         (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
16085 2003-07-11  NAKAJIMA Mikio  <minakaji@namazu.org>  (tiny change)
16087         * emacs-lisp/ring.el (ring-elements): Doc fix.
16089 2003-07-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
16091         * calendar/timeclock.el (timeclock-relative)
16092         (timeclock-ask-before-exiting, timeclock-use-display-time):
16093         Doc changes.
16094         (timeclock-modeline-display): Give a message if
16095         `timeclock-use-display-time' is non-nil but `display-time-mode'
16096         is not active.
16098 2003-07-11  Kenichi Handa  <handa@m17n.org>
16100         * international/mule-cmds.el (set-language-environment):
16101         Set current-language-environment to the correct string.
16103 2003-07-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
16105         * ps-print.el: Print line number correctly in a region.  Reported by
16106         Tim Allen <timallen@ls83.fsnet.co.uk>.
16107         (ps-print-version): New version number (6.6.2).
16108         (ps-printing-region): Code fix.
16110 2003-07-10  John Paul Wallington  <jpw@gnu.org>
16112         * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
16113         this function can be called from `add-completions-from-tags-table'.
16115 2003-07-10  Glenn Morris  <gmorris@ast.cam.ac.uk>
16117         * calendar/timeclock.el (timeclock-use-display-time)
16118         (timeclock-day-over-hook, timeclock-workday-remaining)
16119         (timeclock-status-string, timeclock-when-to-leave)
16120         (timeclock-when-to-leave-string, timeclock-log-data)
16121         (timeclock-find-discrep, timeclock-day-base)
16122         (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
16123         (timeclock-modeline-display): Set the variable
16124         `timeclock-modeline-display'.
16125         (timeclock-update-modeline): Doc fix.  Respect value of
16126         `timeclock-relative'.
16128 2003-07-09  Richard M. Stallman  <rms@gnu.org>
16130         * textmodes/reftex-parse.el (reftex-all-document-files):
16131         Add autoload cookie.
16133         * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
16134         (reftex-scanning-info-available-p): Add autoload cookie.
16136         * international/mule-cmds.el
16137         (set-display-table-and-terminal-coding-system): Delete duplicate
16138         aset on standard-display-table.
16140         * view.el (view-file): If existing buffer's major mode is special,
16141         don't go into view mode.
16143         * dired.el (dired-move-to-filename-regexp): Allow quote in months.
16145 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16147         * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
16148         buffer changes; there's third party code that calls this function
16149         directly.
16151 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16153         * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
16154         (autodoc-font-lock-keywords): Don't byte compile on font lock
16155         initialization when running from byte compiled files.
16157 2003-07-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16159         * progmodes/cc-engine.el: Fix AWK mode indentation when previous
16160         statement ends with auto-increment "++".
16162 2003-07-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16164         * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
16165         (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
16166         these are changed, so declare them as variables and not constants.
16168 2003-07-08  Markus Rost  <rost@math.ohio-state.edu>
16170         * subr.el (dolist, dotimes): Doc fix.
16172 2003-07-08  Kim F. Storm  <storm@cua.dk>
16174         * international/mule-cmds.el
16175         (set-display-table-and-terminal-coding-system): Don't break
16176         bootstrap if standard-display-table isn't setup yet.
16178 2003-07-07  Richard M. Stallman  <rms@gnu.org>
16180         * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
16181         Give it a doc string, and autoload it.
16183         * desktop.el (desktop-buffer-info, desktop-buffer-mh):
16184         Use with-no-warnings.
16186         * info.el (Info-search): If find invisible text, search again.
16188         * isearch.el (search-whitespace-regexp): Add a shy group around it.
16190         * man.el (Man-name-regexp): Match + as part of name.
16192         * simple.el (visible-mode): Rename from vis-mode.
16193         (vis-mode-saved-buffer-invisibility-spec): Doc fix.
16195         * simple.el (current-word): New arg REALLY-WORD specifies
16196         don't include punctuation chars.
16198         * emacs-lisp/debug.el (debug, debugger-env-macro):
16199         Use with-no-warnings while accessing and binding unread-command-char.
16201         * international/mule-cmds.el
16202         (set-display-table-and-terminal-coding-system): Use explicit loop
16203         instead of calling standard-display-default.
16205         * net/ange-ftp.el (ange-ftp-file-symlink-p):
16206         Use condition-case to catch error in ange-ftp-get-files.
16208         * net/browse-url.el (browse-url-browser-function):
16209         Add alternative for Epiphany.
16210         (browse-url-epiphany-program, browse-url-epiphany-arguments)
16211         (browse-url-epiphany-startup-arguments)
16212         (browse-url-epiphany-new-window-is-tab): New variables.
16213         (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
16215         * progmodes/compile.el (compile-auto-highlight): Default now t.
16216         (compile): Doc fix.
16217         (compilation-next-error): Fix previous change.
16219         * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
16221         * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
16223 2003-07-07  Nick Roberts  <nick@nick.uklinux.net>
16225         * gdb-ui.el (gdb-source-info): Display current frame when
16226         attaching to an existing process.
16227         (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
16228         while laying out windows when attaching to an existing process.
16230 2003-07-07  Stefan Monnier  <monnier@cs.yale.edu>
16232         * info.el (Info-menu): Use Info-menu-entry-name-re.
16234 2003-07-06  Stefan Monnier  <monnier@cs.yale.edu>
16236         * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
16237         * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
16239         * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
16240         to match the same text.
16242 2003-07-06  John Paul Wallington  <jpw@gnu.org>
16244         * vc.el (vc-annotate-offset): Move defvar up.
16246 2003-07-06  Kim F. Storm  <storm@cua.dk>
16248         * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
16249         This should fix the infinite loop when extracting menu names.
16251 2003-07-05  Martin Stjernholm  <bug-cc-mode@gnu.org>
16253         * files.el (auto-mode-alist, interpreter-mode-alist):
16254         Remove entries to CC Mode modes to avoid duplicates; they are now added
16255         with autoload directives in cc-mode.el.
16257 2003-07-05  Martin Stjernholm  <bug-cc-mode@gnu.org>
16259         * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
16260         (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
16261         these are changed, so declare them as variables and not constants.
16263         * progmodes/cc-mode.el: Fix some autoload problems: Try to
16264         ensure that the entry for ".c" extension comes before the one for
16265         ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
16266         Fix incorrect entries that were added to `interpreter-mode-alist'.
16267         Move the autoload directives for AWK to the top level since they
16268         aren't recognized anywhere else.  Do not use the new AWK mode doc
16269         in the autoload form for the old AWK mode.
16271 2003-06-30  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
16273         * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
16274         (bibtex-sort-ignore-string-entries): Default value t.
16275         (bibtex-entry-kill-ring-max): Reintroduce as it was removed
16276         erroneously in previous version.
16277         (bibtex-string-files): Docstring reflects new parsing scheme.
16278         (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
16279         docstring, add # as one of the chars to crush
16280         (bibtex-autokey-prefix-string, bibtex-autokey-names)
16281         (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
16282         (bibtex-autokey-name-change-strings)
16283         (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
16284         (bibtex-autokey-name-separator, bibtex-autokey-year-length)
16285         (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
16286         (bibtex-autokey-title-terminators)
16287         (bibtex-autokey-titlewords-stretch)
16288         (bibtex-autokey-titleword-ignore)
16289         (bibtex-autokey-titleword-case-convert)
16290         (bibtex-autokey-titleword-abbrevs)
16291         (bibtex-autokey-titleword-abbrevs)
16292         (bibtex-autokey-titleword-change-strings)
16293         (bibtex-autokey-titleword-length)
16294         (bibtex-autokey-titleword-separator)
16295         (bibtex-autokey-name-year-separator)
16296         (bibtex-autokey-year-title-separator)
16297         (bibtex-autokey-before-presentation-function)
16298         (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
16299         Fix docstring.
16300         (bibtex-strings, bibtex-reference-keys):
16301         Use lazy-completion-table and make-variable-buffer-local.
16302         (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
16303         (bibtex-braced-string-syntax-table)
16304         (bibtex-quoted-string-syntax-table): New variables.
16305         (bibtex-parse-nested-braces): Remove.
16306         (bibtex-parse-field-string): Use syntax table and forward-sexp.
16307         (bibtex-parse-association): Simplify.
16308         (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
16309         (bibtex-parse-field-text): Simplify.
16310         (bibtex-search-forward-field, bibtex-search-backward-field):
16311         argument BOUND can take value t.
16312         (bibtex-start-of-field, bibtex-start-of-name-in-field)
16313         (bibtex-end-of-name-in-field, bibtex-end-of-field)
16314         (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
16315         (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
16316         (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
16317         (bibtex-skip-to-valid-entry): Return buffer position of beginning
16318         and ending of entry.  Update for changes of bibtex-search-entry.
16319         Simplify.
16320         (bibtex-map-entries): FUN is called with three arguments.
16321         (bibtex-search-entry): Return a cons pair with buffer positions of
16322         beginning and end of entry.
16323         (bibtex-enclosing-field): Simplify.
16324         (bibtex-format-entry): Use booktitle to set a missing title.
16325         (bibtex-autokey-get-names): Fiddle with regexps.
16326         (bibtex-generate-autokey): Use identity.
16327         (bibtex-parse-keys): Use simplified parsing algorithm if
16328         bibtex-parse-keys-fast is non-nil.  Simplify.  Change order of
16329         arguments.  Return alist of keys.
16330         (bibtex-parse-strings): Simplify.  Return alist of strings.
16331         (bibtex-complete-string-cleanup): Fix docstring.
16332         (bibtex-read-key): New function.
16333         (bibtex-mode): Fix docstring.  Do not parse for keys and
16334         strings when the mode is entered.  Set fill-paragraph-function to
16335         bibtex-fill-field.  Setup font-lock-mark-block-function the way
16336         font-lock intended.
16337         (bibtex-entry): Use bibtex-read-key.  Obey bibtex-autofill-types.
16338         (bibtex-parse-entry, bibtex-autofill-entry): New functions.
16339         (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
16340         (bibtex-Preamble): Avoid hard coded constants.
16341         (bibtex-make-field): Fix docstring.  Simplify.
16342         (bibtex-beginning-of-entry): Always return new position of point.
16343         (bibtex-end-of-entry): Rearrange cond clauses.
16344         (bibtex-count-entries, bibtex-validate, bibtex-reformat):
16345         Update for changes of bibtex-map-entries.
16346         (bibtex-ispell-abstract): Do not move point.
16347         (bibtex-entry-index): Use downcase.  Simplify.
16348         (bibtex-lessp): Handle catch-all.
16349         (bibtex-find-crossref): Turn into a command.
16350         (bibtex-find-entry): Simplify.  Use bibtex-read-key.  Fix regexp.
16351         (bibtex-clean-entry): Use bibtex-read-key.  Handle string and
16352         preamble entries.
16353         (bibtex-fill-field-bounds): New function.
16354         (bibtex-fill-field): New command.  Bound to fill-paragraph-function.
16355         (bibtex-fill-entry): Use bibtex-fill-field-bounds
16356         (bibtex-String): Use bibtex-strings.  Always obey
16357         bibtex-sort-ignore-string-entries.
16359 2003-07-05  John Paul Wallington  <jpw@gnu.org>
16361         * cus-theme.el (customize-create-theme):
16362         Call `customize-create-theme' in Reset widget's notify function.
16364         * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
16365         (ibuffer-mark-interactive): Use `or' instead of `unless'.
16366         (define-ibuffer-column name): Add summarizer.
16367         (define-ibuffer-column size): Likewise.
16368         (define-ibuffer-column filename): Likewise.
16369         (define-ibuffer-column process): Likewise.  Change BODY's output too.
16370         (define-ibuffer-column filename-and-process): Likewise, likewise.
16371         (ibuffer): Remove local vars `already-in' and `need-update'.
16373         * ibuf-ext.el: Don't require `derived' at compile-time.
16375 2003-07-05  Kim F. Storm  <storm@cua.dk>
16377         * info.el: Disable paragraph refilling.
16378         (Info-refill-paragraphs): New defcustom.
16379         (Info-fontify-node): Use it.
16381 2003-07-04  Stefan Monnier  <monnier@cs.yale.edu>
16383         * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
16384         thingies from constructors created by defstruct.
16386         * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
16387         the default value of the variable.
16388         (byte-code-meter): Move declaration to top level.
16390         * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
16392         * info.el (Info-following-node-name-re): New fun.
16393         (Info-following-node-name): Remove.
16394         (Info-insert-dir): Use the new fun.
16395         (Info-extract-pointer): Don't save restriction; use new fun.
16396         (Info-menu-entry-name-re): New const.
16397         (Info-menu-entry-name-re): Use it along with new fun.
16398         (Info-node-spec-re): Use new fun.
16399         (Info-complete-menu-item, Info-fontify-node): Use new const.
16400         (Info-goto-node, Info-follow-reference, Info-menu-update):
16401         Use match-string.
16402         (Info-follow-reference): Use assoc-string.
16403         Use a list of strings for the completion table.
16404         (Info-fontify-node): Use match-string, line-end-position.
16405         Limit the search for `node:' to the first line.
16407         * newcomment.el (uncomment-region): Remove padding coming from
16408         comment-start rather than just from comment-padding.
16410         * vc-cvs.el (vc-cvs-repository-hostname): New operation.
16411         (vc-cvs-stay-local-p): Use vc-stay-local-p.
16412         (vc-cvs-rename-file): Remove (use the default).
16413         (vc-cvs-register): Register parent dir if needed.
16414         (vc-cvs-could-register): Return non-nil if parent can be registered.
16415         (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
16416         (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
16418         * vc-svn.el (vc-svn-use-edit): Make it into a const.
16419         (vc-svn-update): Fix the arguments to `svn'.
16420         (vc-svn-diff-tree): Just use `vc-svn-diff'.
16421         (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
16422         Simple implementations, assuming `name' is a URL.
16424         * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
16425         set of chars allowed unquoted in a case pattern.
16427         * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
16429         * font-lock.el (font-lock-extra-types-widget)
16430         (c-font-lock-extra-types, c++-font-lock-extra-types)
16431         (objc-font-lock-extra-types, java-font-lock-extra-types)
16432         (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
16433         (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
16434         (font-lock-match-c++-style-declaration-item-and-skip-to-next)
16435         (font-lock-match-c++-structor-declaration)
16436         (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
16437         (c++-font-lock-keywords-3, c++-font-lock-keywords)
16438         (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
16439         (objc-font-lock-keywords-3, objc-font-lock-keywords)
16440         (java-font-lock-keywords-1, java-font-lock-keywords-2)
16441         (java-font-lock-keywords-3, java-font-lock-keywords)
16442         (java-font-lock-syntactic-face-function): Remove obsolete code
16443         and constants.  It's all in cc-fonts.el now.
16445 2003-07-04  Glenn Morris  <gmorris@ast.cam.ac.uk>
16447         * mail/sendmail.el (mail-specify-envelope-from)
16448         (mail-envelope-from): Doc fix.
16450 2003-07-04  Martin Stjernholm  <mast@lysator.liu.se>
16452         * generic-x.el: Do away with the dependency on `c-emacs-features'
16453         when populating `rul-generic-mode-syntax-table'; we already know
16454         this isn't XEmacs.
16456 See ChangeLog.10 for earlier changes.
16458 ;; Local Variables:
16459 ;; coding: iso-2022-7bit
16460 ;; End:
16462     Copyright (C) 2001, 02, 04  Free Software Foundation, Inc.
16463   Copying and distribution of this file, with or without modification,
16464   are permitted provided the copyright notice and this notice are preserved.
16466 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1