(desktop-save, desktop-create-buffer): Replace mapcar with dolist.
[emacs.git] / lisp / ChangeLog
blobeca3f6e1c34e68ad6b97fb88da9f00845a24fc88
1 2007-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * desktop.el (desktop-save, desktop-create-buffer): Replace mapcar with
4         dolist.
5         (after-init-hook): Don't quote lambda.
6         (desktop-first-buffer): Don't wrap it in eval-when-compile.
7         (desktop-internal-v2s): Remove unused var `el'.
8         (desktop-buffer-major-mode, desktop-buffer-locals): Move out of
9         desktop-restore-file-buffer.
10         (desktop-buffer-ok-count, desktop-buffer-fail-count): Move out of
11         desktop-create-buffer.
13 2007-04-10  Chong Yidong  <cyd@stupidchicken.com>
15         * woman.el (woman-decode-buffer): Postphone macro-set check...
16         (woman-decode-region): ...to here.
18 2007-04-10  Thien-Thi Nguyen  <ttn@gnu.org>
20         * startup.el (tty-handle-args): Use %S to log ARGS.
22 2007-04-10  Glenn Morris  <rgm@gnu.org>
24         * dframe.el (dframe-frame-mode): Do not set auto-show-mode, since
25         it is obsolete and has no effect.
27         * dos-w32.el (default-buffer-file-type): Add defvar to quieten
28         byte-compiler.
30         * progmodes/cperl-mode.el (cperl-mode): Remove unnecessary call to
31         obsolete function make-local-hook.
33         * progmodes/dcl-mode.el (top-level): Move (require 'tempo) to
34         start to quieten byte-compiler.
36 2007-04-10  Markus Triska  <markus.triska@gmx.at>
38         * emacs-lisp/byte-opt.el (byte-optimize-char-before): Remove (move
39         to bytecomp.el as byte-compile-char-before).
40         * emacs-lisp/bytecomp.el (byte-compile-char-before):
41         New function (modified replacement for byte-optimize-char-before in
42         byte-opt.el).
44 2007-04-09  Alan Mackenzie  <acm@muc.de>
46         * startup.el (inhibit-splash-screen): Emphatically state that it
47         can't be set in site-start.el.
49 2007-04-09  Masatake YAMATO  <jet@gyve.org>
51         * progmodes/cc-subword.el (c-capitalize-subword): More closely
52         mimic the behavior of `capitalize-word'.  Do not move point with a
53         negative argument.  Based on tiny change by Paul Curry.
55 2007-04-09  Paul Curry  <dashteacup@gmail.com>  (tiny change)
57         * progmodes/cc-subword.el (c-downcase-subword, c-upcase-subword):
58         Don't move point if ARG is negative.
60 2007-04-09  Alan Mackenzie  <acm@muc.de>
62         Changes to make `narrow-to-defun' and `mark-defun' work properly
63         in CC Mode:
65         * progmodes/cc-defs.el (c-beginning-of-defun-1):
66         * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
67         Bind beginning/end-of-defun-function to nil around calls to
68         beginning/end-of-defun.
70         * progmodes/cc-langs.el (beginning-of-defun-function)
71         (end-of-defun-function): New c-lang-setvar's.
73         * progmodes/cc-awk.el (c-awk-beginning-of-defun): Add "(or arg
74         (setq arg 1))" to enable non-interactive call.
76 2007-04-09  Eli Zaretskii  <eliz@gnu.org>
78         * simple.el (set-mark-command): Doc fix.
80 2007-04-09  Nick Roberts  <nickrob@snap.net.nz>
82         * progmodes/gud.el (gdb): Restore existing session if user
83         tries to start a second one in graphical mode.
85 2007-04-08  Martin Rudalics  <rudalics@gmx.at>
87         * cus-start.el <scroll-preserve-screen-position>: Add choices.
89 2007-04-08  Johan Bockg\e,Ae\e(Brd  <bojohan+news@dd.chalmers.se>
91         * term/xterm.el (terminal-init-xterm): Fix key definitions.
92         Add binding for C-M-SPC.
94 2007-04-08  Richard Stallman  <rms@gnu.org>
96         * pcomplete.el (pcomplete-read-event): One single definition,
97         and not a defsubst.
99 2007-04-08  Chong Yidong  <cyd@stupidchicken.com>
101         * progmodes/cc-cmds.el (c-end-of-defun): Tidy up, to eliminate
102         byte-compiler warning "value unused".
104 2007-04-08  Andreas Schwab  <schwab@suse.de>
106         * term/xterm.el (terminal-init-xterm): Add bindings for keypad keys.
108 2007-04-07  Glenn Morris  <rgm@gnu.org>
110         * calendar/calendar.el (diary-font-lock-keywords, diary-live-p):
111         Autoload these functions.
112         (diary-date-forms): Add a custom :set form.
114         * calendar/diary-lib.el (diary-set-maybe-redraw): Move definition
115         before first use.
116         (diary-font-lock-keywords): New function with old code for
117         initialization of variable of same name.
119 2007-04-07  David Hansen  <david.hansen@gmx.net>  (tiny change)
121         * progmodes/cc-cmds.el (c-electric-paren): Fix space-before-funcall
122         clean-up: only insert space when on identifier, etc.
124 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
126         * progmodes/grep.el (grep-find-use-xargs): Rewrite docstring.
128         * net/tls.el (open-tls-stream): Properly handle case where there
129         is no associated buffer.
131 2007-04-07  Glenn Morris  <rgm@gnu.org>
133         * ffap.el (ffap-file-at-point): Lower the priority of the
134         ffap-ftp-sans-slash-regexp check.
136 2007-04-06  Alan Mackenzie  <acm@muc.de>
138         Fix fontification of labels, and other things with ":".
140         * progmodes/cc-engine.el (c-forward-label): The function now
141         returns 'goto-target, 'qt-2kwds-colon, 'qt-1kwd-colon, as well as
142         the former t.
144         * progmodes/cc-fonts.el (c-font-lock-declarations): Interpret the
145         new return code from c-forward-label, fontifying tokens properly.
146         Add some general comments throughout the file.
148 2007-04-06  Chong Yidong  <cyd@stupidchicken.com>
150         * textmodes/flyspell.el (flyspell-duplicate, flyspell-incorrect):
151         Revert 2006-01-27 change.
153         * diff-mode.el (diff-mode): Revert 2007-03-04 change.
155         * menu-bar.el (menu-bar-tools-menu): Revert 2003-07-25 change.
157         * desktop.el (desktop-create-buffer, desktop-save):
158         Revert 2004-11-12 change for lack of copyright papers.
160         * dired-x.el (dired-guess-shell-case-fold-search): Delete var.
161         (dired-guess-default): Respect case.
163         * isearch.el (isearch-forward): Revert 1998-08-26 doc change.
165         * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Remove function;
166         was originally checked in as byte-optimize-concat on 1997-11-02.
168         * mail/sendmail.el (mail-text, mail-mode): Revert extant pieces of
169         1995-05-19 doc changes.
171 2007-04-06  Kim F. Storm  <storm@cua.dk>
173         * loadhist.el (read-feature): Reimplement.  New optional arg LOADED-P.
174         (unload-feature): Update interactive spec accordingly.
176         * progmodes/grep.el (grep-program): Remove commentary about zgrep.
178 2007-04-06  John Paul Wallington  <jpw@pobox.com>
180         * subr.el (with-case-table): Use `make-symbol' to avoid variable
181         capture.  Restore the table in the same buffer.
183         * font-lock.el (lisp-font-lock-keywords-2): Add `with-case-table'.
185 2007-04-05  Chong Yidong  <cyd@stupidchicken.com>
187         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
188         Print entire form.
190 2007-04-05  Nick Roberts  <nickrob@snap.net.nz>
192         * progmodes/gdb-ui.el (breakpoint-disabled): Tweak face (again)
193         for low-color displays.
195 2007-04-05  Glenn Morris  <rgm@gnu.org>
197         * play/5x5.el, play/animate.el, play/dissociate.el, play/doctor.el,
198         * play/gomoku.el, play/landmark.el, play/tetris.el, play/zone.el:
199         Seed random number generator on loading.
201         * emacs-lisp/authors.el (top-level): Provide self.
203         * play/animate.el (top-level): Provide self.
205 2007-04-04  Alan Mackenzie  <acm@muc.de>
207         * progmodes/cc-vars.el (c-special-indent-hook): Amend doc-string
208         to mention c-syntactic-indentation.
210 2007-04-04  Chong Yidong  <cyd@stupidchicken.com>
212         * subr.el (with-case-table): New macro.
214         * international/mule.el (ascii-case-table): New var.
216         * mail/smtpmail.el (smtpmail-via-smtp): Use ascii-case-table when
217         downcasing.
219 2007-04-03  Nick Roberts  <nickrob@snap.net.nz>
221         * progmodes/gud.el (gud-minor-mode-map): Simplify.
223         * t-mouse.el (t-mouse-make-event-element): Don't use the left edge
224         of the window if we're outside it e.g menu-bar.
226         * xt-mouse.el (xterm-mouse-event): Don't use the left edge of the
227         window if we're outside it e.g menu-bar.
229 2007-04-03  Eli Zaretskii  <eliz@gnu.org>
231         * mail/rmail.el (rmail-convert-to-babyl-format): Don't try to
232         decode base-64 encoded body if its content-type is something other
233         than text/* or message/*.
235 2007-04-03  Juanma Barranquero  <lekktu@gmail.com>
237         * simple.el (activate-mark-hook): Fix typo in docstring.
239 2007-04-03  Nick Roberts  <nickrob@snap.net.nz>
241         * tmm.el (tmm-c-prompt): Initialize.
242         (tmm-menubar): Deal with extended menu-items at top level.
243         (tmm-get-keybind): Handle bindings redefined/undefined locally.
244         (tmm-prompt): Handle visibility of top level menu-items.
246         * progmodes/gud.el (gud-menu-map): Simplify.
247         (gud-minor-mode-map): Add tool-bar like bindings to the text mode
248         menubar.
250 2007-04-02  Chong Yidong  <cyd@stupidchicken.com>
252         * mail/smtpmail.el (smtpmail-via-smtp): Revert last change.
254         * comint.el (comint-send-input): Widen the buffer first.
256         * info.el (Info-fontify-maximum-menu-size): Revert to 100000.
258 2007-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
260         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Only obey
261         emacs-lisp-docstring-fill-column in emacs-lisp-mode.
263         * newcomment.el (comment-search-forward): Discard comment starters
264         before point.
266 2007-04-01  Guanpeng Xu  <herberteuler@hotmail.com>
268         * mouse.el (mouse-set-secondary): Update mouse-secondary-overlay.
270 2007-04-01  Chong Yidong  <cyd@stupidchicken.com>
272         * mail/smtpmail.el (smtpmail-via-smtp): Use standard case table
273         when downcasing.
275         * button.el (previous-button): Rewrite to account for adjacent buttons.
277 2007-04-01  J.D. Smith  <jdsmith@as.arizona.edu>
279         * progmodes/idlwave.el (idlwave-auto-fill):
280         Revert paragraph-separate change.
282         * progmodes/idlw-shell.el (idlwave-shell-break-in):
283         Simplify module calc.
284         (idlwave-shell-set-bp-in-module): Compute module.
286 2007-03-31  Glenn Morris  <rgm@gnu.org>
288         * emacs-lisp/timer.el (run-at-time): Doc fix.
290         * emacs-lisp/warnings.el (display-warning): If we create the
291         buffer displaying the warning, disable undo there.
293 2007-03-31  Michael Albinus  <michael.albinus@gmx.de>
295         * net/tramp.el (tramp-register-file-name-handler)
296         (tramp-register-completion-file-name-handler): New defsubst,
297         derived from `tramp-register-file-name-handlers'.  The split is
298         necessary because Tramp's file name handlers must be registered at
299         different startup places.
301 2007-03-31  Chong Yidong  <cyd@stupidchicken.com>
303         * progmodes/hideshow.el (turn-off-hideshow): New function.
304         (hs-minor-mode): Use it instead of a lambda expression in
305         change-major-mode-hook.
307 2007-03-31  David Kastrup  <dak@gnu.org>
309         * woman.el (woman-Cyg-to-Win): Don't convert cons cells
310         corresponding to MANPATH_MAP entries.
311         (woman-man.conf-path, woman-parse-man.conf): Doc fix.
312         (woman-parse-man.conf): Use more discriminating man.conf name.
313         (woman-parse-man.conf): Parse MANPATH_MAP entries.
314         (woman-manpath): Doc fix and type fix.
315         (woman-cached-data): Check for MANPATH_MAP entries.
316         (woman-expand-directory-path): Treat MANPATH_MAP entries.
318 2007-03-31  Stuart Herring  <herring@lanl.gov>
320         * emacs-lisp/sregex.el (sregexq): Doc fix.
322 2007-03-31  Markus Triska  <markus.triska@gmx.at>
324         * flymake.el (flymake-err-line-patterns): Doc fix.
326 2007-03-30  Reiner Steib  <Reiner.Steib@gmx.de>
328         * info.el (info-tool-bar-map): Use "exit" for Info-exit.
329         Move to the right.
331 2007-03-30  Alan Mackenzie  <acm@muc.de>
333         * progmodes/cc-cmds.el (c-forward-to-nth-EOF-}): Fix EOB bug.
335 2007-03-30  Thien-Thi Nguyen  <ttn@gnu.org>
337         * emacs-lisp/ewoc.el (ewoc--insert-new-node): Take additional arg DLL.
338         Use it, passed in explicitly, instead of from the dynamic binding.
339         (ewoc-create, ewoc-enter-before): Update to use new call sequence.
341 2007-03-30  Juanma Barranquero  <lekktu@gmail.com>
343         * simple.el (blink-matching-open): When in minibuffer, don't
344         search for a match inside the prompt.
346 2007-03-30  Nick Roberts  <nickrob@snap.net.nz>
348         * tmm.el (tmm-menubar): Select the right menu item with the mouse.
349         (tmm-prompt): Don't make the mouse user select the first menu
350         item twice.
352 2007-03-30  Chong Yidong  <cyd@stupidchicken.com>
354         * eshell/esh-proc.el (eshell/kill): Tweak regexp to recognize
355         SIGUSR1 and SIGUSR2.
357 2007-03-29  Kim F. Storm  <storm@cua.dk>
359         * ido.el (ido-read-internal): When reading file or dir, only override
360         minibuffer-local-filename-completion-map, otherwise only override
361         minibuffer-local-completion-map.
363 2007-03-29  Glenn Morris  <rgm@gnu.org>
365         * complete.el (partial-completion-mode): Set PC-do-completion-end
366         to nil after use.
367         (PC-lisp-complete-symbol): Create and use a marker at `end',
368         rather than using point-marker.
370 2007-03-28  Chong Yidong  <cyd@stupidchicken.com>
372         * simple.el (next-error-highlight): Doc fix.
373         (compose-mail): Revert 2007-03-19 change.
375 2007-03-28  Richard Stallman  <rms@gnu.org>
377         * emacs-lisp/edebug.el (edebug-display): Don't go to
378         edebug-outside-buffer if it is dead.
380 2007-03-28  Juanma Barranquero  <lekktu@gmail.com>
382         * view.el (view-mode): Fix typos in docstring.
384 2007-03-28  Stephen Berman  <Stephen.Berman@gmx.net>
386         * recentf.el (recentf-save-file): Add a custom :set function.
388 2007-03-28  Glenn Morris  <rgm@gnu.org>
390         * complete.el (PC-do-completion-end): New variable.
391         (partial-completion-mode) <choose-completion-string-functions>:
392         Use PC-do-completion-end in the non-minibuffer case to replace the
393         correct amount of text.
394         (PC-do-completion): Set PC-do-completion-end for c-c-s-f.
395         (PC-lisp-complete-symbol): Give marker the after-insertion type,
396         to deal with improvements inserted after point.
398 2007-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
400         * button.el (make-text-button): Add explicit `button' property.
401         (default-button): Don't put a `button' property on it.
403         * progmodes/python.el (python-mode): Skip comments when parsing.
405         * vc-arch.el (vc-with-current-file-buffer): New macro.
406         (vc-arch-file-source-p): Use it to avoid infloop.
408 2007-03-28  David Hansen  <david.hansen@gmx.net>  (tiny change)
410         * emacs-lisp/lisp.el (lisp-complete-symbol):
411         Fix call to get-buffer-window to find windows in other frames.
413 2007-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
415         * comint.el (comint-proc-query, comint-dynamic-list-completions):
416         Fix calls to get-buffer-window to find windows in other frames.
417         Reported by David Hansen <david.hansen@gmx.net>.
419 2007-03-27   Kevin Ryde  <user42@zip.com.au>
421         * info.el (Info-display-images-node): On a text-only terminal,
422         show the "text" or "alt" parts of the image blobs.
424 2007-03-27  Glenn Morris  <rgm@gnu.org>
426         * complete.el (PC-do-completion): Compute completion-base-size in
427         the non-filename case, rather than setting to nil.
428         (PC-lisp-complete-end): New variable.
429         (PC-lisp-complete-symbol): Use PC-lisp-complete-end to store the
430         original end in a series of consecutive invocations.
432         * calendar/calendar.el (calendar-mode-hook): Declare it.
434         * calendar/diary-lib.el (diary-live-p): Do not check for
435         diary-selective-display.
437 2007-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
439         * replace.el (occur-next-error): *Occur* might not be displayed in the
440         selected frame.  Reported by David Hansen <david.hansen@gmx.net>.
442 2007-03-26  Richard Stallman  <rms@gnu.org>
444         * textmodes/flyspell.el (flyspell-large-region):
445         Use ispell-call-process-region.
447 2007-03-26  Johan Bockg\e,Ae\e(Brd  <bojohan+sf@dd.chalmers.se>
449         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
450         Use prin1 instead of princ.
452 2007-03-25  Chong Yidong  <cyd@stupidchicken.com>
454         * faces.el (face-set-after-frame-default): Revert 2007-03-10 change.
455         Merge in X resources before global face.
457         * progmodes/compile.el (compilation-start): Save compilation-directory
458         rather than default-directory as local var.
459         (compilation-directory): Mark as safe local var.
461         * files.el: Don't mark default-directory as a safe local var.
463 2007-03-25  Alan Mackenzie  <acm@muc.de>
465         * progmodes/cc-mode.el (c-before-change): Fix BOB bug.
466         * progmodes/cc-engine.el: Fix typo.
468 2007-03-25  Juri Linkov  <juri@jurta.org>
470         * compare-w.el (compare-windows): Rename customization group
471         `compare-w' to `compare-windows'.
472         (compare-windows-whitespace, compare-ignore-whitespace)
473         (compare-ignore-case, compare-windows-sync)
474         (compare-windows-sync-string-size, compare-windows-recenter)
475         (compare-windows-highlight, compare-windows): Change group name in
476         the `group' tag from `compare-w' to `compare-windows'.
477         (compare-windows-sync): Add option `nil' for no sync.  Doc fix.
479 2007-03-24  Markus Triska  <markus.triska@gmx.at>
481         * expand.el: Change example to always enable abbrev-mode,
482         and remove redundant `function'.
483         (expand-abbrev-hook): Add autoload cookie.
485 2007-03-24  Ryan Yeske  <rcyeske@gmail.com>
487         * emacs-lisp/testcover.el (testcover-start, testcover-end)
488         (testcover-mark-all, testcover-unmark-all): Add prompts to
489         interactive specs.
491 2007-03-24  Jason Rumney  <jasonr@gnu.org>
493         * autorevert.el (find-file-hook, auto-revert-tail-mode):
494         Use file size in bytes for auto-revert-tail-pos not characters.
496 2007-03-24  Thien-Thi Nguyen  <ttn@gnu.org>
498         * vc-rcs.el (vc-rcs-annotate-command):
499         Set text property :vc-annotate-prefix on the annotation text.
500         (vc-rcs-annotate-time): Instead of searching for ": ",
501         search for end of text propertized with :vc-annotate-prefix.
503 2007-03-24  Martin Rudalics  <rudalics@gmx.at>
505         * whitespace.el (top level): Remove calls putting
506         permanent-local nil property since these are no-ops.
508         * man.el (Man-support-local-filenames): Assure that
509         default-directory exists when doing call-process.
511 2007-03-23  David Vazquez  <xeos00@gmail.com>  (tiny change)
513         * progmodes/m4-mode.el (m4-m4-buffer, m4-m4-region):
514         Fix omission bug: Use m4-program-options to construct shell command.
516 2007-03-23  David Kastrup  <dak@gnu.org>
518         * progmodes/cc-mode.el (c-make-emacs-variables-local):
519         Use `mapcar' rather than `mapcan' to silence compiler warning.
521 2007-03-22  Ralf Angeli  <angeli@caeruleus.net>
523         * textmodes/reftex.el, textmodes/reftex-vars.el,
524         * textmodes/reftex-toc.el, textmodes/reftex-sel.el,
525         * textmodes/reftex-ref.el, textmodes/reftex-parse.el,
526         * textmodes/reftex-index.el, textmodes/reftex-global.el,
527         * textmodes/reftex-dcr.el, textmodes/reftex-cite.el,
528         * textmodes/reftex-auc.el: Add maintainer address.
530 2007-03-22  Carsten Dominik  <dominik@science.uva.nl>
532         * textmodes/org.el (org-agenda-mode, org-table-edit-formulas):
533         Make sure that `global-font-lock-mode' does not turn on font-lock
534         in these buffers.
536 2007-03-21  Kim F. Storm  <storm@cua.dk>
538         * xt-mouse.el (xt-mouse-epoch): New variable.
539         (xterm-mouse-event): Use float-time.
541 2007-03-21  Nick Roberts  <nickrob@snap.net.nz>
543         * xt-mouse.el (xterm-mouse-event): Compute a timestamp using
544         current-time.
546 2007-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
548         * complete.el (read-file-name-internal): Don't add the final > if the
549         completion is not finished (re-application of this patch, which was
550         accidentally undone by Eli).
552 2007-03-21  Chong Yidong  <cyd@stupidchicken.com>
554         * emulation/viper.el (viper-non-hook-settings): Handle mouse
555         clicks in describe-key and describe-key-briefly advice a little better.
557 2007-03-21  Juanma Barranquero  <lekktu@gmail.com>
559         * server.el (server-process-filter): Cancel any pending isearch.
561 2007-03-21  Ulf Jasper  <ulf.jasper@web.de>
563         * calendar/icalendar.el (icalendar-version): Increase to 0.15.
564         (icalendar--get-unfolded-buffer): Define actual arguments rather
565         than just using &rest.  Check replace-in-string is fbound.
566         (icalendar-import-buffer): Doc fix.
567         (icalendar--convert-ical-to-diary): Set diary-file.
568         Check diary-file before inserting final newline.
569         (icalendar--add-diary-entry): Return diary-file.
571 2007-03-21  Glenn Morris  <rgm@gnu.org>
573         * calendar/calendar.el (diary-set-maybe-redraw): Autoload it.
574         (diary-display-hook): Add custom :set function.
576         * calendar/diary-lib.el (diary-header-line-flag): Doc fix.
577         Add custom :set function.
578         (diary-header-line-format): Doc fix.
579         (diary-set-maybe-redraw): New function.
580         (number-of-diary-entries): Change :set to use diary-set-maybe-redraw.
581         (diary-list-entries): Always run diary-mode.
583 2007-03-20  David Kastrup  <dak@gnu.org>
585         * files.el (magic-mode-alist): Require literal "%!PS" string for
586         magic postscript file detection.
588 2007-03-20  Richard Stallman  <rms@gnu.org>
590         * textmodes/ispell.el (ispell-call-process): New function.
591         Defends against bad `default-directory.'
592         (ispell-check-version, ispell-find-aspell-dictionaries)
593         (ispell-get-aspell-config-value, lookup-words): Call it.
594         (ispell-call-process-region): New function.
595         (ispell-send-string): Call it.
597 2007-03-20  Andreas Schwab  <schwab@suse.de>
599         * Makefile.in (custom-deps): Depend on $(lisp)/subdirs.el.
600         (finder-data): Likewise.
601         (autoloads): Likewise.
603 2007-03-20  Martin Rudalics  <rudalics@gmx.at>
605         * files.el (basic-save-buffer): Do not set visited filename when
606         the corresponding directory does not exist or the specified
607         filename is that of an existing directory.
609 2007-03-20  Glenn Morris  <rgm@gnu.org>
611         * calendar/diary-lib.el (diary-live-p): New function.
612         (number-of-diary-entries): Add a :set function to redisplay diary
613         when necessary.
615 2007-03-19  Nick Roberts  <nickrob@snap.net.nz>
617         * t-mouse.el (t-mouse-make-event-element): Use timestamp output
618         from client program, mev, to compute mouse event.
620 2007-03-19  Chong Yidong  <cyd@stupidchicken.com>
622         * faces.el (momentary): Face removed; unused due to reversion of
623         2007-01-04 changes by Kevin Rodgers.
625         * mouse.el (mouse-drag-track): Remove spurious input-pending-p test.
626         Suggested by Johan Bockg\e,Ae\e(Brd.
628 2007-03-19  Martin Rudalics  <rudalics@gmx.at>
630         * font-lock.el (lisp-font-lock-keywords-1):
631         Highlight define-globalized-minor-mode as a keyword.
633 2007-03-19  Kim F. Storm  <storm@cua.dk>
635         * calc/calc-forms.el (math-std-daylight-savings)
636         (math-std-daylight-savings-old): Doc fix.
638 2007-03-19  Juanma Barranquero  <lekktu@gmail.com>
640         * progmodes/python.el (python-default-template): Doc fix.
641         (python-buffer): Fix typo in docstring.
643         * isearchb.el (isearchb-follow-char):
644         * subr.el (def-edebug-spec): Fix typo in docstring.
646 2007-03-19  Richard Stallman  <rms@gnu.org>
648         * files.el (default-directory): Mark safe.
649         (basic-save-buffer-2): Put proper dir name in error message.
651         * simple.el (compose-mail): Run switch-function after
652         setting up the mail buffer.
654         * startup.el (inhibit-splash-screen, initial-major-mode): Doc fixes.
656 2007-03-18  Jay Belanger  <belanger@truman.edu>
658         * calc/calc-forms.el (math-parse-date): Fix a regular expression.
659         (math-std-daylight-savings-new): Rename from
660         `math-std-daylight-savings'.
661         (math-std-daylight-savings-old): Rename from old value of
662         `math-std-daylight-savings'.
663         (math-std-daylight-savings): Use `math-std-daylight-savings-new' or
664         `math-std-daylight-savings-old' depending on the year.
666 2007-03-18  Detlev Zundel  <dzu@gnu.org>
668         * emacs-lisp/re-builder.el (reb-update-overlays): Do not mark
669         zero-width regexps as invalid but rather at least count them correctly.
671 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
673         * net/tls.el (open-tls-stream): In handshake-waiting loop,
674         don't wait more if there is output available to process.
676 2007-03-18  Nick Roberts  <nickrob@snap.net.nz>
678         * progmodes/compile.el (compilation-find-file): Revert change
679         from 2006-07-18 to allow completion of directory names.
680         Reported by John Carter <john.carter@tait.co.nz>.
682 2007-03-18  Kim F. Storm  <storm@cua.dk>
684         * subr.el (when, unless): Doc fix.
686 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
688         * net/tls.el (tls-program): Doc fix.
690 2007-03-17  Denis Bueno  <dbueno@gmail.com>  (tiny change)
692         * autorevert.el (auto-revert-tail-handler):
693         Call after-revert-hook.
695 2007-03-17  Ryan Yeske  <rcyeske@gmail.com>
697         * simple.el (switch-to-completions): No error if search for \n\n fails.
699 2007-03-17  Chong Yidong  <cyd@stupidchicken.com>
701         * simple.el (line-move-1):
702         Respect `inhibit-line-move-field-capture' property.
704 2007-03-13  Chong Yidong  <cyd@stupidchicken.com>
706         * comint.el (comint-arguments): Mark backslash-escaped chars.
707         (comint-delim-arg): Don't treat them as delimiters.
709 2007-03-12  Kim F. Storm  <storm@cua.dk>
710         * ido.el (ido-init-completion-maps): Remap delete-backward-char.
712 2007-03-12  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
714         * tempo.el (tempo-insert): Deal with 'r> if it appears
715         specified with a prompt argument.
717 2007-03-12  Carsten Dominik  <dominik@science.uva.nl>
719         * textmodes/org.el (org-set-font-lock-defaults):
720         Handle narrow table columns correctly.
722 2007-03-12  Mark A. Hershberger  <mah@everybody.org>
724         * xml.el (xml-parse-tag, xml-parse-string, xml-parse-attlist)
725         (xml-parse-dtd, xml-parse-elem-type, xml-substitute-special):
726         Return to use of the -no-properties variants.  There was
727         consensus on emacs-devel that the speed of these variants was
728         prefered since we are usually parsing files (from the internet
729         or on disk) instead of XML created in Emacs.
731         * eshell/esh-mode.el (eshell-handle-ansi-color): New function.
732         Add customize option.
734 2007-03-12  Glenn Morris  <rgm@gnu.org>
736         * calc/calc-forms.el (math-std-daylight-savings): Switch to new
737         North American rule.  Replace "daylight savings" with "daylight
738         saving" in doc.
740         * calendar/cal-china.el,cal-dst.el,calendar.el,diary-lib.el:
741         * calendar/lunar.el,solar.el: Replace "daylight savings" with
742         "daylight saving" in text.
744         * woman.el (woman-change-fonts): Tweak previous change by using
745         woman-request-regexp rather than "^\\.".
747         * startup.el (command-line-1): Make insertion of
748         initial-scratch-message not depend on scratch being selected.
750 2007-03-11  Juri Linkov  <juri@jurta.org>
752         * replace.el (match): Use yellow background on light-bg terminals.
754 2007-03-11  Richard Stallman  <rms@gnu.org>
756         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
757         Correctly compute line number.
759 2007-03-11  Guanpeng Xu  <herberteuler@hotmail.com>
761         * type-break.el (type-break-get-previous-count):
762         Repeat previous change here.
764 2007-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
766         * progmodes/grep.el (grep-find-ignored-directories):
767         Add .git and .bzr to list.
769 2007-03-11  Andreas Schwab  <schwab@suse.de>
771         * diff-mode.el (diff-apply-hunk): Use proper format string for error.
773 2007-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
775         * mail/emacsbug.el (report-emacs-bug): Don't hard code the "X" name.
777 2007-03-10  Chong Yidong  <cyd@stupidchicken.com>
779         * faces.el (face-set-after-frame-default): Recalculate face
780         customizations after applying X resources.
782 2007-03-10  Ryan Yeske  <rcyeske@gmail.com>
784         * net/rcirc.el (rcirc-timeout-seconds): New variable.
785         (rcirc-keepalive-seconds): Remove variable.
786         (rcirc-server-name, rcirc-timeout-timer, rcirc-connecting)
787         (rcirc-process, rcirc-user-disconnect): New variables.
788         (rcirc-connect): Initalize new variables.
789         (rcirc-keepalive): Don't send keepalive pings before connection
790         is completed.
791         (rcirc-sentinel): Do mark all channels with activity when
792         connection is dropped.  Run hook with process buffer local.
793         (rcirc-reschedule-timeout, rcirc-delete-process): New functions.
794         (rcirc-buffer-process): Return value of rcirc-process if
795         rcirc-server-buffer is nil.
796         (rcirc-server-name): Return the reported server name.
797         (rcirc-update-prompt): Simplify computation of the server name.
798         (rcirc-format-response-string): Likewise.
799         (rcirc-handler-001): Mark server as connected, record the reported
800         server name, and schedule a timeout.
801         (rcirc-track-nick): Add a spec for the tty class.
802         (rcirc-user-non-nick): Remove function.
803         (rcirc-nick-prefix-chars): Add variable.
804         (rcirc-user-nick): Use above variable.
806 2007-03-10  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
808         * icomplete.el (icomplete-tidy, icomplete-exhibit):
809         Bind deactivate-mark to nil.
811 2007-03-10  Martin Rudalics  <rudalics@gmx.at>
813         * complete.el (PC-do-completion): Bind dirlength to nil to avoid
814         that buffer contents get erased during completion.
816 2007-03-10  Glenn Morris  <rgm@gnu.org>
818         * woman.el (woman-change-fonts): Add a hack to deal with
819         font-escape followed by "." at start of a line.
820         (woman2-IP): Add a hack to deal with consecutive requests.
821         (woman2-tagged-paragraph): Extend existing hack to handle "sp".
823 2007-03-10  Alan Mackenzie  <acm@muc.de>
825         * progmodes/cc-mode.el (c-before-change): Wrap in save-match-data.
827 2007-03-09  Richard Stallman  <rms@gnu.org>
829         * abbrev.el (abbrev): Add `provide'.
831 2007-03-09  Thien-Thi Nguyen  <ttn@gnu.org>
833         * net/ange-ftp.el (ange-ftp-try-passive-mode): Doc fix.
835 2007-03-09  Martin Rudalics  <rudalics@gmx.at>
837         * complete.el (PC-try-completion): New function.
838         (PC-do-completion, read-file-name-internal): Use it instead of
839         try-completion.
841 2007-03-08  Alan Mackenzie  <acm@muc.de>
843         Remove stale tokens from `c-found-types' cache.
845         * progmodes/cc-mode.el (c-unfind-enclosing-token)
846         (c-unfind-coalesced-tokens, c-before-change): New functions.
847         (c-maybe-stale-found-type): New variable.
849         * progmodes/cc-engine.el (c-partial-ws-p, c-unfind-type)
850         (c-trim-found-types): New functions.
852 2007-03-08  Stefan Monnier  <monnier@iro.umontreal.ca>
854         * smerge-mode.el (smerge-remove-props): Don't mark the buffer modified.
855         (debug-ignored-errors): Add entry from smerge-match-conflict.
857 2007-03-08  J.D. Smith  <jdsmith@as.arizona.edu>
859         * progmodes/idlw-help.el (idlwave-do-context-help1): Don't visit
860         special help topics for keywords.
861         (idlwave-help-assistant-command): Include ".exe" for ms-dos
862         etc. Assistant command.
864 2007-03-08  Chong Yidong  <cyd@stupidchicken.com>
866         * replace.el (occur-engine): Move buffer-undo-list binding...
867         (occur-1): ...to here.
869         * complete.el (PC-bindings): Rebind M-TAB in read-expression-map.
871         * simple.el (minibuffer-completing-symbol): New var.
872         (eval-expression): Use it.
873         (completion-setup-function): Don't bind completion-base-size when
874         completing a symbol in the minibuffer.
876 2007-03-08  Nick Roberts  <nickrob@snap.net.nz>
878         * progmodes/gud.el (gdb): Pop up current GUD buffer if user
879         tries to start a second session in graphical mode.
881 2007-03-07  Miles Bader  <miles@gnu.org>
883         * international/isearch-x.el
884         (isearch-process-search-multibyte-characters):
885         Strip text-properties from PROMPT to avoid an error from read-string.
887 2007-03-07  Kim F. Storm  <storm@cua.dk>
889         * complete.el (PC-bindings): Remap lisp-complete-symbol to
890         PC-lisp-complete-symbol instead of binding M-TAB in global-map.
892 2007-03-07  Micha\e,Ak\e(Bl Cadilhac  <michael@cadilhac.name>
894         * complete.el (PC-do-completion): Delete duplicates in the list of
895         possible completions.
897 2007-03-07  Glenn Morris  <rgm@gnu.org>
899         * ses.el (ses-mode): Doc fix.
901 2007-03-06  Kim F. Storm  <storm@cua.dk>
903         * isearch.el (isearch-message-prefix): Undo 2007-03-01 change.
905 2007-03-06  Kenichi Handa  <handa@m17n.org>
907         * term/x-win.el (x-select-utf8-or-ctext): Improve the strategy.
909 2007-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
911         * simple.el (completion-setup-function): Improve last fix so it doesn't
912         set it to a relative directory name either.
914 2007-03-05  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
916         * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil).
918 2007-03-05  Richard Stallman  <rms@gnu.org>
920         * emacs-lisp/re-builder.el (reb-re-syntax): Fix custom type.
922         * files.el (find-file-noselect): No error if file no longer exists.
923         Display a message and avoid other questions.
925 2007-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
927         * pcomplete.el (pcomplete-show-completions): Improve last change, so
928         as not to use an invisible window and to create a window if none exist.
930         * progmodes/python.el (python-send-command): Restart proc if necessary.
931         (python-proc): Simplify.
933 2007-03-05  David Hansen  <david.hansen@gmx.net>  (tiny change)
935         * pcomplete.el (pcomplete-show-completions): Search all frames for
936         completions buffer.
938 2007-03-05  Chong Yidong  <cyd@stupidchicken.com>
940         * cus-edit.el (customize-save-variable): Clear customized-value
941         property (saved values are now put in theme-value property).
942         (customize-set-variable): Doc fix.
944         * complete.el (PC-do-completion): If completion-ignore-case is
945         non-nil, replace field with completion string before exiting.
947 2007-03-05  Michael Albinus  <michael.albinus@gmx.de>
949         * net/tramp.el (tramp-make-temp-file): New parameter FILENAME.
950         Append its extension to the resulting temporary file name.
951         (tramp-handle-file-local-copy, tramp-handle-write-region): Apply it.
953         * net/tramp-smb.el (tramp-smb-handle-file-local-copy)
954         (tramp-smb-handle-write-region): Apply it.
956 2007-03-05  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
958         * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
959         Redo previous change.
961 2007-03-04  Kevin Rodgers  <kevin.d.rodgers@gmail.com>  (tiny change)
963         * diff-mode.el (diff-mode): Doc fix.
965 2007-03-05  Kenichi Handa  <handa@m17n.org>
967         * international/characters.el: Set category `l' (latin)
968         for more characters.
970 2007-03-04  Kim F. Storm  <storm@cua.dk>
972         * emacs-lisp/authors.el (authors-aliases): Add alias.
974 2007-03-04  Glenn Morris  <rgm@gnu.org>
976         * progmodes/hideshow.el (hs-minor-mode): Turn mode off and show
977         all when switching major mode.
978         (hs-minor-mode, hs-c-start-regexp, hs-block-start-regexp)
979         (hs-block-start-mdata-select, hs-block-end-regexp)
980         (hs-forward-sexp-func, hs-adjust-block-beginning):
981         Do not make these variables permanent-local.
983 2007-03-04  Richard Stallman  <rms@gnu.org>
985         * progmodes/cperl-mode.el (cperl-mode):
986         Modify cperl-compilation-error-regexp-alist by appending.
988         * emacs-lisp/edebug.el (edebug-kill-buffer): New function.
989         (edebug-mode): Add the hook.
990         (edebug-recursive-edit): Remove the hook on exiting.
992         * type-break.el (type-break-get-previous-time):
993         Handle end-of-file errors specially
994         so they don't get reported wrong in .emacs.
996         * startup.el (fancy-splash-text): Clarify text.
998         * simple.el (beginning-of-buffer, end-of-buffer):
999         Avoid treating plain C-u like numeric arg.
1001         * simple.el (completion-setup-function): Don't set
1002         default-directory to nil.
1004         * shell.el (shell-dirstack-query): Doc fix.
1006         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
1007         Don't select the window -- pass it to primitives instead.
1009         * faces.el (minibuffer-prompt): Use medium blue by default.
1011 2007-03-04  David Kastrup  <dak@gnu.org>
1013         * jit-lock.el (jit-lock-stealth-time): Change default to nil.
1014         Preserve 16 as default value for "seconds" when customizing.
1016 2007-03-04  Carsten Dominik  <dominik@science.uva.nl>
1018         * textmodes/org.el (org-self-insert-command)
1019         (orgtbl-self-insert-command, org-delete-char)
1020         (org-delete-backward-char): Set the `flyspell-delayed' property.
1022 2007-03-03  Chong Yidong  <cyd@stupidchicken.com>
1024         * international/mule.el (find-auto-coding): Don't search for
1025         line-ending characters past the end of the tail.
1027 2007-03-03  Christopher Allan Webber  <cwebber@dustycloud.org>  (tiny change)
1029         * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
1030         Jump to the line where new score has been uploaded.
1032         * play/tetris.el (tetris-move-bottom, tetris-move-left)
1033         (tetris-move-right, tetris-rotate-prev, tetris-rotate-next):
1034         Do nothing when the game is paused.
1036 2007-03-03  Carsten Dominik  <dominik@science.uva.nl>
1038         * textmodes/org.el (org-set-tags): Prevent slipping of point
1039         during completion.
1041 2007-03-01  Lennart Borgman  <lennart.borgman.073@student.lu.se>
1043         * isearch.el (isearch-message-prefix):
1044         Use minibuffer-prompt-properties.
1046 2007-03-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1048         * ps-print.el: Replace (defvar VAR nil) by (defvar VAR).
1049         (ps-setup): Print which Emacsen is running ps-print package.
1051 2007-03-01  Stuart Herring  <herring@lanl.gov>
1053         * files.el (set-auto-mode-0): Use `indirect-function'.
1054         (hack-one-local-variable): Don't reapply current major mode.
1056 2007-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1058         * progmodes/python.el (python-quote-syntax): Don't bother with
1059         syntax-ppss-context.
1060         (python-fill-paragraph): Make sure that fenced-string delimiters that
1061         stand on their own line stay there
1063 2007-03-01  Lennart Borgman  <lennart.borgman.073@student.lu.se>
1065         * replace.el (perform-replace): Propertize message.
1067 2007-03-01  Carsten Dominik  <dominik@science.uva.nl>
1069         * textmodes/org.el (org-prepare-agenda-buffers): Also check for
1070         invisible heading.
1072 2007-02-28  Chong Yidong  <cyd@stupidchicken.com>
1074         * net/tramp.el (tramp-file-name-handler): Revert last change.
1076 2007-02-28  Nick Roberts  <nickrob@snap.net.nz>
1078         * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump):
1079         Correct doc strings.
1081 2007-02-28  Chong Yidong  <cyd@stupidchicken.com>
1083         * replace.el (perform-replace): Undo forward-char immediately if
1084         non-adjacent search fails.
1086 2007-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1088         * version.el (emacs-major-version, emacs-minor-version):
1089         string-to-int -> string-to-number.
1091 2007-02-28  Juanma Barranquero  <lekktu@gmail.com>
1093         * help.el (where-is): Fail gracefully when not passed a command.
1095 2007-02-28  Stuart Herring  <herring@lanl.gov>
1097         * find-lisp.el (find-lisp-default-directory-predicate):
1098         Fix bug: Do symlink check on expanded filename.
1100 2007-02-28  Carsten Dominik  <dominik@science.uva.nl>
1102         * textmodes/org.el (org-set-tags, org-table-get-field): Avoid case
1103         changes during replacement.
1104         (org-agenda-mode-map): Add default binding for `org-agenda-archive'.
1106 2007-02-28  Lars Hansen  <larsh@soem.dk>
1108         * desktop.el: Delete header line listing me as maintainer.
1110 2007-02-28  Glenn Morris  <rgm@gnu.org>
1112         * tutorial.el (tutorial--describe-nonstandard-key): Tweak text in
1113         the menus case.
1115 2007-02-28  Chong Yidong  <cyd@stupidchicken.com>
1117         * net/tramp.el (tramp-file-name-handler): Inhibit modification
1118         hooks to avoid confusion when combining after-change calls.
1120 2007-02-27  Ken Manheimer  <ken.manheimer@gmail.com>
1122         * allout.el (allout-encrypt-string): Remove inhibition of gpg-agent,
1123         now that pgg-gpg-process-region correctly honors passed-in passphrase.
1124         (allout-distinctive-bullets-string): Add info about bullet conventions.
1125         (allout-mode): Add info about distinctive vs plain bullets.
1127 2007-02-27  Carsten Dominik  <dominik@science.uva.nl>
1129         * textmodes/org.el (org-archive-subtree): Quote variable name.
1130         (org-agenda-get-todos): Make sure skip properties are checked correctly.
1132 2007-02-26  Nick Roberts  <nickrob@snap.net.nz>
1134         * progmodes/gud.el (gud-bashdb-history, gud-bashdb-marker-filter)
1135         (gud-bashdb-command-name, bashdb): Remove.
1136         (gud, gud-menu-map): Remove references to bash/bashdb.
1138 2007-02-26  Andrey Zhdanov  <susuman@hotmail.com>  (tiny change)
1140         * progmodes/gud.el (gud-pdb-marker-regexp): Add optional <module>
1141         keyword for Python 2.5.
1143 2007-02-26  Romain Francoise  <romain@orebokech.com>
1145         * net/net-utils.el (whois-server-tld): Update server for .org.
1146         (whois-server-list): Add whois.publicinterestregistry.net.
1147         (whois-guess-server): Fix formatting in docstring.
1149 2007-02-26  Kim F. Storm  <storm@cua.dk>
1151         * mouse.el (mouse-show-mark): Run hooks and perform command
1152         remapping for mouse-region-delete-keys.
1154 2007-02-26  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
1156         * font-core.el (font-lock-mode): Doc fix.
1158 2007-02-25  Kim F. Storm  <storm@cua.dk>
1160         * ido.el (ido-buffer-internal): Set this-command to fallback command.
1161         Add selected buffer to buffer-name-history.
1162         (ido-file-internal): Set this-command to fallback command.
1163         Add file names to file-name-history.
1165         * emacs-lisp/map-ynp.el (map-y-or-n-p):
1166         Apply minibuffer-prompt-properties.
1168 2007-02-25  Andreas Schwab  <schwab@suse.de>
1170         * files.el (hack-one-local-variable-eval-safep): Correct handling
1171         of edebug-form-spec property value.  Reported by Johan Bockg\e,Ae\e(Brd.
1173 2007-02-25  Carsten Dominik  <dominik@science.uva.nl>
1175         * textmodes/org.el (org-table-overlay-coordinates)
1176         (org-table-toggle-coordinate-overlays): New functions.
1177         (org-table-overlay-coordinates, org-table-coordinate-overlays):
1178         New variables.
1179         (org-startup-with-deadline-check): Remove option.
1180         (org-mode): Remove deadline check on startup.
1181         (org-table-limit-column-width): Remove option.
1182         (org-table-formula-numbers-only): Remove option.
1183         (org-link-style, org-link-format): Remove options.
1184         (org-select-agenda-window, org-fit-agenda-window): Remove options.
1185         (org-export-ascii-show-new-buffer)
1186         (org-export-html-show-new-buffer): Remove options.
1187         (org-activate-links): Remove camel option.
1188         (org-file-link-context-use-camel-case): Remove option.
1189         (org-camel-regexp): Remove variable.
1190         (org-activate-camels): Remove function.
1191         (org-store-link): Remove Camel stuff.
1192         (org-make-org-heading-camel): Remove function.
1193         (org-open-at-point): Remove camel stuff.
1194         (org-link-search): Remove camel stuff.
1195         (org-camel-to-words): Function removed.
1196         (org-get-agenda-file-buffer): Make sure we prepare the base
1197         buffers, not any indirect buffers.
1198         (org-sort-entries): Sort top-level when not on a headline, and no
1199         active region.
1200         (org-in-regexp): New function.
1201         (org-search-not-self): Rename from `org-search-not-link'.
1202         (org-open-link-marker): New variable.
1203         (org-open-at-point): Set `org-open-link-marker'.
1204         (org-print-icalendar-entries): Fixe bug with excluding DONE
1205         entries from the exported list.
1206         (org-edit-formula-lisp-indent): New command.
1207         (orgtbl-to-texinfo, orgtbl-to-html): New functions.
1208         (orgtbl-to-latex, orgtbl-insert-radio-table)
1209         (orgtbl-toggle-comment, orgtbl-send-table): New functions.
1210         (orgtbl-radio-table-templates): New option.
1211         (org-store-link-props):
1212         (org-remember-templates): More possibilities to insert info
1213         into templates.
1214         (org-remember-apply-template): Make use of the extended
1215         template capabilities.
1216         (org-remember-redo-template): New command.
1217         (org-upgrade-old-links)
1218         (org-table-modify-formulas, org-table-replace-in-formulas)
1219         (org-table-find-dataline)
1220         (org-table-get-vertical-vector): Remove functions.
1221         (org-table-remove-rectangle-highlight)
1222         (org-time-stamp-format, org-toggle-log-option)
1223         (org-table-highlight-rectangle)
1224         (org-table-iterate, org-table-make-reference):
1225         (org-translate-time, org-tree-to-indirect-buffer)
1226         (org-table-field-info, org-table-fix-formulas)
1227         (org-table-force-dataline, org-table-get-descriptor-line)
1228         (org-table-get-range)
1229         (org-skip-comments, org-sort)
1230         (org-sort-entries, org-sublist, org-table-add-rectangle-overlay)
1231         (org-table-current-dline, org-table-current-field-formula)
1232         (org-table-edit-backward-field)
1233         (org-table-edit-formulas-post-command)
1234         (org-table-edit-line-down, org-table-edit-line-up)
1235         (org-agenda-archive)
1236         (org-agenda-clock-cancel)
1237         (org-agenda-clock-out, org-agenda-list-stuck-projects)
1238         (org-agenda-open-link, org-agenda-show-new-time)
1239         (org-agenda-skip-subtree-when-regexp-matches)
1240         (org-agenda-tree-to-indirect-buffer, org-agenda-undo)
1241         (org-at-regexp-p, org-auto-repeat-maybe, org-check-log-option)
1242         (org-do-sort, org-file-image-p, org-find-overlays)
1243         (org-find-row-type, org-get-indirect-buffer, org-get-repeat)
1244         (org-highlight-until-next-command, org-isearch-end)
1245         (org-match-any-p, org-next-link, org-previous-link):
1246         (org-remove-subtree-entries-from-agenda, org-replace-escapes)
1247         (org-rewrite-old-row-references)
1248         (org-isearch-post-command)
1249         (org-table-edit-move, org-table-edit-next-field)
1250         (org-table-edit-scroll, org-table-edit-scroll-down)
1251         (org-set-frame-title, org-show-reference)
1252         (org-unhighlight-once, org-verify-change-for-undo): New functions.
1253         (org-show-variable): Remove command.
1254         (org-add-log-maybe): New arguments STATE, FINDPOS
1255         (org-table-sort-lines): Rewrite from scratch.
1256         (org-link-search): New argument AVOID-POS.
1257         (org-print-icalendar-entries): Remove argument CATEGORY.
1258         (org-run-agenda-series): Remove argument WONDOW.
1259         (org-next-link, org-previous-link): New commands.
1260         (org-agenda-date-format): New option.
1261         (org-table-iterate): New command.
1262         (org-table-modify-formulas)
1263         (org-table-replace-in-formulas): Remove functions.
1264         (org-table-fix-formulas): New function.
1265         (org-table-insert-column, org-table-delete-column)
1266         (org-table-move-column): Use `org-table-fix-formulas'.
1267         (org-follow-gnus-link): Patch from Bastien/Leo.
1268         (org-table-current-field-formula): New function.
1269         (org-file-image-p): New function.
1270         (org-agenda-show-new-time): New function.
1271         (org-agenda-date-later): Call `org-agenda-show-new-time'.
1272         (org-with-remote-undo): New macro.
1273         (org-agenda-undo): New command.
1274         (org-verify-change-for-undo): New function.
1275         (org-time-stamp-format): New function.
1276         (org-agenda-get-timestamps): Skip scheduled if DONE and requested
1277         by user.
1278         (org-match-any-p): New function.
1279         (org-make-tags-matcher): Handle regular expressions for tag and
1280         todo matches.
1281         (org-read-date): Accept "+N" as input for a date relative to the
1282         current date.
1283         (org-remove-subtree-entries-from-agenda): New function.
1284         (org-agenda-archive, org-agenda-kill):
1285         Use `org-remove-subtree-entries-from-agenda'.
1286         (org-do-sort, org-sort-entries): New functions.
1287         (org-sort): New command.
1288         (org-table-sort-lines): Use `org-do-sort'.
1289         (org-fix-decoded-time): New function.
1290         (org-table-number-regexp): Require 0x... to identify as number
1291         in tables.
1292         (org-startup-options): New keywords for note taking.
1293         (org-upgrade-old-links): Remove function.
1294         (org-get-repeat): New function.
1295         (org-show-context): Also show siblings on current level.
1296         (org-show-siblings): New function.
1297         (org-isearch-end, org-isearch-post-command): New functions.
1298         (org-show-siblings): New option.
1299         (org-show-context): Use `org-show-siblings'.
1300         (org-table-maybe-recalculate-line): No longer require `calc-eval'
1301         to be bound, because user may just use elisp.
1303 2007-02-24  Kim F. Storm  <storm@cua.dk>
1305         * emulation/cua-base.el (cua-paste): Handle x-clipboard-yank.
1306         (cua--init-keymaps): Remap x-clipboard-yank to cua-paste.
1308 2007-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
1310         * startup.el (command-line): Also check if the abbrev file is readable.
1312 2007-02-24  John Paul Wallington  <jpw@pobox.com>
1314         * net/tls.el (tls-certtool-program): Fix custom type.
1316         * mail/feedmail.el (feedmail-message-id-generator)
1317         (feedmail-date-generator): Fix custom types.
1319         * mail/rmail.el (rmail-message-filter): Fix custom type.
1321 2007-02-24  Eli Zaretskii  <eliz@gnu.org>
1323         * startup.el (command-line): If simple.el cannot be found, proceed
1324         with a warning message.
1326 2007-02-24  Kenichi Handa  <handa@m17n.org>
1328         * international/utf-8.el (utf-8-pre-write-conversion): Handle the
1329         case that BEG is a string.
1331 2007-02-24  Chris Moore  <dooglus@gmail.com>
1333         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
1334         * pgg-pgp.el (pgg-pgp-encrypt-region):
1335         * pgg-gpg.el (pgg-gpg-encrypt-region):
1336         Check pgg-encrypt-for-me if no other recipients.
1338 2007-02-23  Eli Zaretskii  <eliz@gnu.org>
1340         * mail/rmailedit.el (rmail-cease-edit): Restore the Rmail toolbar.
1342         * textmodes/sgml-mode.el (sgml-validate): Quote the file name with
1343         shell-quote-argument.
1345 2007-02-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
1347         * comint.el (comint-read-input-ring): Use comint-input-ring-size
1348         from the comint buffer instead of the temporary one.
1350 2007-02-23  David Reitter  <david.reitter@gmail.com>
1352         * cus-edit.el (custom-save-all): Canonicalize custom-file before
1353         storing it in recentf-exclude.
1355 2007-02-23  Chong Yidong  <cyd@stupidchicken.com>
1357         * startup.el (fancy-splash-screens): Make cursor-type buffer-local
1358         in splash screen.
1360 2007-02-22  J.D. Smith  <jdsmith@as.arizona.edu>
1362         * progmodes/idlw-shell.el (idlwave-shell-mode): Clean up pending
1363         commands, for restart.
1364         (idlwave-shell-current-module): Fix handling of module name by type.
1365         (idlwave-shell-break-in): Update type handling.
1366         (idlwave-shell-bp-get): Encode type in BP structure.
1367         (idlwave-shell-set-bp): Fix setting condition/count on disabled BPs.
1368         (idlwave-shell-module-source-query): Query routine info based on type.
1369         Fix path parsing for non-compiled files.
1370         (idlwave-shell-module-source-filter): Don't signal error in filter
1371         if no source found.
1372         (idlwave-shell-set-bp-in-module): Use fallback source to prevent
1373         filter race.
1375 2007-02-22  Kim F. Storm  <storm@cua.dk>
1377         * wid-edit.el (widget-default-create): Undo 2007-02-04 change.
1378         (editable-field): Document need to put some text before the %v
1379         escape in :format string.
1381 2007-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1383         * vc-svn.el: Remove the code inherited from CVSREAD and `cvs edit'.
1384         (vc-svn-use-edit): Remove unused config var.
1385         (vc-svn-update, vc-svn-revert): Checkout is always implicit.
1387         * outline.el (hide-sublevels): Keep empty last line, if available.
1389         * buff-menu.el (list-buffers-noselect): Use explicit unicode code
1390         rather than the corresponding unicode char, to make the code
1391         more readable.
1393 2007-02-19  Juanma Barranquero  <lekktu@gmail.com>
1395         * speedbar.el (speedbar-frame-mode, speedbar-frame-width)
1396         (speedbar-show-unknown-files, speedbar-item-info-file-helper)
1397         (speedbar-item-info-tag-helper): Doc fixes.
1399 2007-02-19  Kenichi Handa  <handa@m17n.org>
1401         * international/mule-cmds.el (locale-language-names):
1402         Map "eo" to "Esperanto".
1404         * language/european.el ("Esperanto"): New language environment.
1406 2007-02-17  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
1408         * simple.el (kill-line): Doc fix.
1410 2007-02-17  Kim F. Storm  <storm@cua.dk>
1412         * emacs-lisp/bindat.el (bindat--unpack-u*): Optimize.
1413         (bindat--unpack-item, bindat--length-group, bindat--pack-item)
1414         (bindat--unpack-group, bindat--pack-group):
1415         Handle vectors with optional element type.
1417 2007-02-17  Daiki Ueno  <ueno@unixuser.org>
1419         * pgg-gpg.el (pgg-gpg-process-region): Make USE-AGENT nil
1420         if PASSPHRASE is given.
1422 2007-02-17  Chris Moore  <dooglus@gmail.com>
1424         * jka-cmpr-hook.el (jka-compr-compression-info-list):
1425         Recognize backups of bz2 compressed files.
1427 2007-02-17  Eli Zaretskii  <eliz@gnu.org>
1429         * info-look.el (info-lookup): Bind Info-fontify-maximum-menu-size
1430         to nil to speed up lookup of the symbol in index nodes.
1432 2007-02-17  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
1434         * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
1435         Add indentation for the constants of Lisp.
1437 2007-02-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1439         * ps-print.el: Use (defvar <foo>) where applicable.
1440         (ps-print-emacs-type): Remove.
1441         (ps-x-frame-property, ps-e-frame-parameter): Remove.
1442         (ps-frame-parameter): Align its call-convention with frame-parameter.
1443         (ps-begin-job): Adjust calls to it appropriately.
1444         (ps-setup): Don't print ps-print-emacs-type.
1445         (ps-e-find-composition, ps-mark-active-p, ps-color-device):
1446         Define in such a way that it's obvious that it's defined.
1447         (ps-prsc, ps-c-prsc, ps-s-prsc): Remove.
1448         (ps-rmail-mode-hook, ps-vm-mode-hook, ps-gnus-summary-setup)
1449         (ps-jts-ps-setup): Use flavor-neutral syntax instead.
1451 2007-02-15  Alan Mackenzie  <acm@muc.de>
1453         * progmodes/cc-cmds.el (c-indent-new-comment-line): When splitting
1454         an empty one-line C-style comment, post-position point properly.
1456 2007-02-15  Chris Moore  <dooglus@gmail.com>
1458         * isearch.el (isearch-lazy-highlight-space-regexp): New variable.
1459         (isearch-lazy-highlight-new-loop): Bind it.
1460         (isearch-lazy-highlight-search): Use it.
1462         * replace.el (replace-highlight): Bind search-whitespace-regexp to nil.
1464 2007-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1466         * font-lock.el (font-lock-extend-region-wholelines):
1467         Only return non-nil if the region has really been changed.
1468         Reported by David Hansen <david.hansen@physik.fu-berlin.de>
1470 2007-02-15  Juanma Barranquero  <lekktu@gmail.com>
1472         * play/5x5.el (5x5-crack-xor-mutate): Doc fix.
1473         (5x5-draw-grid-end, 5x5-make-xor-with-mutation, 5x5-mode, 5x5-crack)
1474         (5x5-play-solution, 5x5-y-or-n-p): Fix typos in docstrings.
1476 2007-02-14  Juanma Barranquero  <lekktu@gmail.com>
1478         * faces.el (color-values): Revert changes to docstring from
1479         2007-01-31 and 2000-09-07.
1481         * textmodes/ispell.el (ispell-keep-choices-win, ispell-word)
1482         (ispell-begin-skip-region-regexp): Fix typos in docstrings.
1483         (ispell-dictionary-alist, ispell-process-line): Doc fixes.
1484         (ispell-help): Fix typos in docstring and output message.
1486 2007-02-14  Kim F. Storm  <storm@cua.dk>
1488         * progmodes/grep.el (grep-files-aliases): Add tex and texi aliases.
1489         (lgrep): Add DIR arg to start grep in specific directory, like rgrep.
1490         (grep): Fix lgrep reference.
1492         * disp-table.el (make-glyph-code, glyph-char, glyph-face): New defuns.
1493         (standard-display-underline): Use make-glyph-code.
1495         * descr-text.el (describe-char): Use glyph-char and glyph-face.
1497         * international/latin1-disp.el (latin1-display-char):
1498         Use make-glyph-code.
1500 2007-02-13  Juanma Barranquero  <lekktu@gmail.com>
1502         * ehelp.el (with-electric-help, electric-help-exit)
1503         (electric-help-retain): Doc fixes.
1505         * emacs-lisp/bytecomp.el (byte-compile-dest-file)
1506         (byte-compile-file): Doc fixes.
1508 2007-02-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1510         * term/mac-win.el: Change all uses of
1511         mac-set-font-panel-visibility to mac-set-font-panel-visible-p.
1512         (mac-ae-number): Return integer 0 if coerced result is float 0.0.
1513         (mac-ae-get-url): Call select-frame-set-input-focus.
1514         (mac-dnd-handle-drag-n-drop-event): Don't call
1515         select-frame-set-input-focus.
1517 2007-02-13  Kenichi Handa  <handa@m17n.org>
1519         * international/characters.el: Fix documentation of category `a'.
1521 2007-02-11  Dan Nicolaescu  <dann@ics.uci.edu>
1523         * progmodes/grep.el (grep): Mention lgrep and rgrep in the docstring.
1525 2007-02-12  Michael Albinus  <michael.albinus@gmx.de>
1527         * net/tramp.el (tramp-get-ls-command, tramp-get-file-exists-command)
1528         (tramp-get-remote-ln): Handle error case.
1529         Reported by Chris Moore <dooglus@gmail.com>.
1531 2007-02-11  Kim F. Storm  <storm@cua.dk>
1533         * bindings.el (ctl-x-map): Remove register compatibility bindings
1534         C-x /, C-x j, C-x x, and C-x g (deprecated since Emacs 19).
1536 2007-02-11  Richard Stallman  <rms@gnu.org>
1538         * loadhist.el (unload-feature): Handle (t . SYMBOL) entries
1539         in load history.
1541         * emacs-lisp/lisp-mode.el (indent-sexp): Clean up termination
1542         condition -- don't fail to stop at endpos.
1544 2007-02-11  Carsten Dominik  <dominik@science.uva.nl>
1546         * textmodes/org.el (org-agenda-get-todos)
1547         (org-agenda-get-timestamps, org-agenda-get-closed)
1548         (org-agenda-get-deadlines, org-agenda-get-scheduled)
1549         (org-agenda-get-blocks, org-format-agenda-item)
1550         (org-agenda-change-all-lines, org-scan-tags): Rename text property
1551         from `category' to `org-category'.
1553 2007-02-11  Kenichi Handa  <handa@m17n.org>
1555         * international/titdic-cnv.el (titdic-convert): Force files be written
1556         with Unix-like eol format.  Read files under CXTERM-DIC by raw-text.
1557         (miscdic-convert): Force files be written with Unix-like eol format.
1559 2007-02-11  Juanma Barranquero  <lekktu@gmail.com>
1561         * files.el (change-major-mode-with-file-name): Fix typo in docstring.
1563         * calculator.el (calculator-prompt): Doc fix.
1564         (calculator-mode-map): Fix typo in menu entry.
1566 2007-02-10  Jay Belanger  <belanger@truman.edu>
1568         * calculator.el (calculator): Do more extensive checking for when
1569         3 lines should be used for the calculator.
1571 2007-02-10  Eli Zaretskii  <eliz@gnu.org>
1573         * info-look.el (info-lookup-make-completions):
1574         Bind Info-fontify-maximum-menu-size to nil to speed up lookup of
1575         index nodes.
1577         * info.el (Info-fontify-maximum-menu-size): Document the effect
1578         of a nil value.
1579         (Info-fontify-node): Make sure Info-fontify-maximum-menu-size is
1580         non-nil before using it as size.
1582 2007-02-09  Chong Yidong  <cyd@stupidchicken.com>
1584         * subr.el (insert-for-yank-1): Prevent read-only properties from
1585         interfering with text property operations.
1587         * image-mode.el (image-mode): Revert 2007-01-30 changes.
1589         * image.el (image-type-auto-detectable): Don't autodetect x[pb]m.
1590         (image-type-auto-detected-p): Fail if another match is found in
1591         auto-mode-alist.
1593         * files.el (magic-mode-alist): Call image-mode instead of
1594         image-mode-maybe for autodetected images.
1596 2007-02-09  Juanma Barranquero  <lekktu@gmail.com>
1598         * mail/smtpmail.el (smtpmail-smtp-service, smtpmail-queue-index-file):
1599         Fix typos in docstrings.
1600         (smtpmail-local-domain, smtpmail-queue-mail): Doc fixes.
1602 2007-02-09  Kim F. Storm  <storm@cua.dk>
1604         * emacs-lisp/float-sup.el: Remove obsolete comment.
1606 2007-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1608         * diff-mode.el (diff-sanity-check-hunk): Fix last fix.
1610 2007-02-08  Karl Fogel  <kfogel@red-bean.com>
1612         * simple.el: Revert previous change, at request of RMS:
1613         (fundamental-mode-hook): Remove.
1614         (fundamental-mode): Run after-change-major-mode-hooks manually,
1615         and don't run the now-nonexistent fundamental-mode-hook.
1617 2007-02-08  Karl Fogel  <kfogel@red-bean.com>
1619         * simple.el (fundamental-mode-hook): Declare new hook.
1620         (fundamental-mode): Run the new dedicated hook, and don't run
1621         after-change-major-mode-hooks manually anymore.
1623 2007-02-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1625         * vc-svn.el (vc-svn-merge-news): Understand the new format with two
1626         added columns of chars.  Remove support for the "no-meta-info" format.
1627         Prompted by Romain Francoise <romain@orebokech.com>.
1629 2007-02-07  Nick Roberts  <nickrob@snap.net.nz>
1631         * progmodes/gdb-ui.el (gdb-if-arrow): New macro.
1632         (gdb-mouse-until, gdb-mouse-jump): Use it.
1634 2007-02-07  Nick Roberts  <nickrob@snap.net.nz>
1636         * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump): Make them
1637         work when there is just an assembler buffer (no source buffer).
1639 2007-02-07  Per Cederqvist  <ceder@lysator.liu.se>  (tiny change)
1641         * diff-mode.el (diff-sanity-check-hunk): Don't reject the hunk
1642         just because the diff was produced using "-p" (--show-c-function).
1644 2007-02-07  Juanma Barranquero  <lekktu@gmail.com>
1646         * faces.el (frame-set-background-mode): Use `color-values' and
1647         `display-color-p', not `x-color-values' and `x-display-color-p'.
1648         (face-valid-attribute-values): Use `defined-colors' instead of
1649         `x-defined-colors'.
1651 2007-02-07  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1653         * ps-print.ps: The ps-print commands without face printing should not
1654         print background color.  Reported by Leo <sdl.web@gmail.com>.
1655         (ps-print-version): New version 6.7.3.
1656         (ps-begin-job): New arg.  Fix ps-default-background and
1657         ps-default-foreground initialization.
1658         (ps-face-attributes): Fix doc string.
1659         (ps-face-background, ps-generate-postscript, ps-generate): Fix code.
1661         * printing.el: Fix ps-print link.
1663 2007-02-06  Chong Yidong  <cyd@stupidchicken.com>
1665         * faces.el (face-set-after-frame-default): Compile attributes to
1666         be set by frame parameters before merging in X resources.
1668 2007-02-06  Juanma Barranquero  <lekktu@gmail.com>
1670         * simple.el (blink-matching-paren-dont-ignore-comments):
1671         (blink-matching-paren-on-screen): Doc fixes.
1673 2007-02-06  Nick Roberts  <nickrob@snap.net.nz>
1675         * progmodes/gdb-ui.el (gdb-frames-mode): Truncate lines in stack buffer.
1677 2007-02-05  Juanma Barranquero  <lekktu@gmail.com>
1679         * loadhist.el (unload-feature): Silently ignore `load-history' entries
1680         of the form `(defface . SYMBOL)', and treat `(autoload . SYMBOL)'
1681         entries like `defun'.  Return nil.
1683 2007-02-05  Kim F. Storm  <storm@cua.dk>
1685         * ido.el: Doc fixes.
1687 2007-02-04  David Kastrup  <dak@gnu.org>
1689         * play/mpuz.el (mpuz-random-puzzle): Fix potential lockup when
1690         `mpuz-allow-double-multiplicator' is non-zero, and correct
1691         calculation of `min'.
1693 2007-02-04  Per Abrahamsen  <abraham@dina.kvl.dk>
1695         * wid-edit.el (widget-default-create): Insert new text at the
1696         :from marker _after_ the marker, not before it.
1698 2007-02-04  Alan Mackenzie  <acm@muc.de>
1700         * progmodes/cc-cmds.el (c-indent-line): Don't erase ^L when a line
1701         containing it is re-indented.
1703 2007-02-03  Chong Yidong  <cyd@stupidchicken.com>
1705         * net/newsticker.el (newsticker--insert-image): Update docstring,
1706         and insert the image directly.
1707         (newsticker--buffer-redraw): Update docstring.
1709         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1710         Rename from define-global-minor-mode.
1712         * progmodes/cwarn.el (global-cwarn-mode):
1713         * emacs-lisp/autoload.el (make-autoload):
1714         * hi-lock.el (global-hi-lock-mode):
1715         * font-core.el (global-font-lock-mode): All callers changed.
1717 2007-02-03  Eli Zaretskii  <eliz@gnu.org>
1719         * textmodes/texnfo-upd.el (texinfo-menu-copy-old-description):
1720         Don't copy @ignore lines into menu descriptions.
1721         (texinfo-multi-file-update): Goto the @node line before attempting
1722         to pluck the node name.
1723         (texinfo-multiple-files-update): Reverse the optional arguments'
1724         order, as per the doc string and the `interactive' form.
1726 2007-02-03  Chong Yidong  <cyd@stupidchicken.com>
1728         * image-mode.el: Use autoload to avoid overriding disabled setting
1729         applied in .emacs.
1731 2007-02-03  Alan Mackenzie  <acm@muc.de>
1733         * progmodes/cc-engine.el (c-in-knr-argdecl): Slight correction
1734         for, e.g. "void (*hdone)();" in a k&r list.  (No WS between
1735         adjacent paren groups).
1737 2007-02-02  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1739         * progmodes/ebnf2ps.el: Doc fixes.
1740         (ebnf-eps-buffer, ebnf-eps-region, ebnf-syntax-alist): Doc fixes.
1742 2007-02-02  Eli Zaretskii  <eliz@gnu.org>
1744         * dired-x.el (dired-do-relsymlink): Add reference to
1745         dired-do-symlink.  Add an autoload cookie.
1747         * dired-aux.el (dired-do-symlink): Add reference to
1748         dired-do-relsymlink.
1750 2007-02-02  Doug Maxey  <dwm@enoyolf.org>  (tiny change)
1752         * mouse.el <left-fringe mouse-2, right-fringe mouse-3>:
1753         <left-fringe mouse-3>: New bindings.
1755 2007-02-02  Ulf Jasper  <ulf.jasper@web.de>
1757         * newsticker.el (newsticker-version): Changed to "1.10".
1758         (newsticker--set-customvar): Doc string.
1759         (newsticker-new-item-face): Doc string.
1760         (newsticker-mode): Initialize `invisibility-spec' with t.
1761         (newsticker-mode-map): Added
1762         `newsticker-mark-all-items-at-point-as-read'.
1763         (newsticker-menu): Added narrow-to-item and narrow-to-feed.
1764         (newsticker-w3m-show-inline-images): Do not call
1765         `w3m-remove-image'.
1766         (newsticker--buffer-after-w3m-insert-image): New advice for
1767         w3m-insert-image to cache images.
1768         (newsticker-next-item-same-feed): New.
1769         (newsticker-mark-all-items-at-point-as-read-and-redraw): New.
1770         (newsticker-mark-all-items-of-feed-as-read): New.
1771         (newsticker-mark-all-items-at-point-as-read): Use new functions.
1772         (newsticker-mark-item-at-point-as-read): Doc string.
1773         (newsticker-mark-item-at-point-as-read): Use new functions.
1774         (newsticker--do-mark-item-at-point-as-read): New, extracted from
1775         `newsticker-mark-item-at-point-as-read'.
1776         (newsticker-hide-entry): Use (t) instead of t for invisibility.
1777         (newsticker--sentinel): Yet another xml-parser workaround.
1778         (newsticker--decode-iso8601-date): Bugfix for datestrings without
1779         days.
1780         (newsticker--buffer-do-insert-text): Fix.
1781         (newsticker--buffer-insert-enclosure): Fix. length might be missing.
1782         (newsticker--buffer-make-item-completely-visible):
1783         `switch-to-buffer' not necessary.
1785 2007-02-02  Eli Zaretskii  <eliz@gnu.org>
1787         * progmodes/ebnf2ps.el (ebnf-eps-buffer, ebnf-eps-region)
1788         (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-region)
1789         (ebnf-style-database, ebnf-apply-style, ebnf-reset-style)
1790         (ebnf-push-style, ebnf-pop-style, ebnf-eps-production-list)
1791         (ebnf-directory, ebnf-file, ebnf-syntax-alist): Doc fixes.
1793 2007-02-02  Kenichi Handa  <handa@m17n.org>
1795         * international/quail.el (quail-show-key): Fix an error message.
1797 2007-02-01  Juanma Barranquero  <lekktu@gmail.com>
1799         * faces.el (set-face-underline-p, modify-face): Rename arg
1800         UNDERLINE-P to UNDERLINE (it is not a flag).
1802 2007-02-01  Nick Roberts  <nickrob@snap.net.nz>
1804         * progmodes/gdb-ui.el (gdb-speedbar-update): Avoid duplication
1805         when adding gdb-speedbar-update to gdb-input-queue.
1807 2007-02-01  Kenichi Handa  <handa@m17n.org>
1809         * international/quail.el (quail-show-key): Signal an error if the
1810         current input method is not using Quail.
1812 2007-02-01  J.D. Smith  <jdsmith@as.arizona.edu>
1814         * progmodes/idlwave.el (idlwave-xml-create-sysvar-alist):
1815         Trim leading whitespace in sysvar names.
1817 2007-02-01  Juanma Barranquero  <lekktu@gmail.com>
1819         * faces.el (internal-find-face, internal-get-face): Doc fixes.
1821 2007-01-31  Juanma Barranquero  <lekktu@gmail.com>
1823         * ido.el (ido-set-common-completion): Use `let', not `let*'.
1825 2007-01-31  Romain Francoise  <romain@orebokech.com>
1827         * comint.el: Delete extra copy of `comint-copy-old-input' added in
1828         previous change to this file.
1830 2007-01-31  Jason Rumney  <jasonr@gnu.org>
1832         * files.el (magic-mode-alist): Use image-mode-maybe rather than
1833         image-mode.
1835         * image-mode.el (image-mode-maybe): Prevent magic-mode-alist from
1836         interfering with attempt to set major mode from modified
1837         auto-mode-alist.
1839 2007-01-31  Juanma Barranquero  <lekktu@gmail.com>
1841         * faces.el (color-values): Doc fix.
1842         (face-differs-from-default-p): Don't check :foreground twice.
1844 2007-01-31  J.D. Smith  <jdsmith@as.arizona.edu>
1846         * comint.el (comint-mode): Prevent non-keyword fontification by default.
1848 2007-01-31  Kenichi Handa  <handa@m17n.org>
1850         * international/quail.el (quail-store-decode-map-key): Store a
1851         translated character too.
1852         (quail-char-equal-p): New function.
1853         (quail-find-key1): Check character equality by quail-char-equal-p.
1854         (quail-decode-map-generated): New variable.
1855         (quail-find-key): Check quail-decode-map-generated and re-generate
1856         a decode map if necessary.
1858 2007-01-30  Richard Stallman  <rms@gnu.org>
1860         * tutorial.el (tutorial--detailed-help): Make the list of
1861         changed keys look nicer.
1863 2007-01-30  Nick Roberts  <nickrob@snap.net.nz>
1865         * progmodes/gdb-ui.el (gdb-var-delete-1): New function.
1866         (gdb-var-delete): Use it.
1867         (gdb-var-update-handler-1): Handle value "invalid" for MI field
1868         `in_scope'.
1870 2007-01-30  Michael Albinus  <michael.albinus@gmx.de>
1872         * files.el (get-free-disk-space): Return nil for remote directories.
1874         * net/ange-ftp.el (ange-ftp-ls): In case of wildcards, use "ls"
1875         instead of "dir".
1877 2007-01-30  Chong Yidong  <cyd@stupidchicken.com>
1879         * type-break.el (type-break-catch-up-event): New function.
1880         (type-break-demo-hanoi, type-break-demo-life)
1881         (type-break-demo-boring): Use it.
1883         * image-mode.el (image-mode): Don't automatically view as image.
1884         (image-toggle-display): Add `disabled' property.
1886 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
1888         * isearchb.el (isearchb-iswitchb):
1889         * ps-print.el (ps-build-face-reference):
1890         * emacs-lisp/shadow.el (list-load-path-shadows):
1891         * eshell/esh-cmd.el (eshell-rewrite-for-command):
1892         * international/mule.el (find-auto-coding):
1893         * mail/supercite.el (sc-attrib-selection-list):
1894         * progmodes/cc-defs.el (c-emacs-features):
1895         * progmodes/cc-vars.el (c-offsets-alist):
1896         * progmodes/flymake.el
1897         (flymake-init-create-temp-source-and-master-buffer-copy):
1898         Fix typos in docstrings (some suggested by Chris Moore).
1900         * progmodes/vhdl-mode.el (vhdl-components-package-name)
1901         (vhdl-get-library-unit, vhdl-corresponding-begin)
1902         (vhdl-skip-case-alternative, vhdl-backward-skip-label)
1903         (vhdl-align-region-2, vhdl-electric-dash, vhdl-case-word)
1904         (vhdl-hooked-abbrev, vhdl-hs-forward-sexp-func)
1905         (vhdl-font-lock-match-item): Fix typos in docstrings.
1906         (vhdl-get-library-unit, vhdl-get-block-state, vhdl-sort-alist)
1907         (vhdl-set-offset, vhdl-fix-case-region-1, vhdl-scan-directory-contents)
1908         (vhdl-speedbar-insert-project-hierarchy):
1909         Improve argument/docstring consistency.
1911 2007-01-29  Kenichi Handa  <handa@m17n.org>
1913         * international/titdic-cnv.el (py-converter): Fix previous change.
1915 2007-01-29  Chong Yidong  <cyd@stupidchicken.com>
1917         * jka-compr.el (jka-compr-partial-uncompress)
1918         (jka-compr-call-process): Rebind default-directory if it is
1919         invalid.  Suggested by Chris Moore.
1921         * comint.el (comint-insert-input): Handle situation where the
1922         selected buffer is not the clicked buffer.
1924 2007-01-29  Kenichi Handa  <handa@m17n.org>
1926         * international/ja-dic-cnv.el (skkdic-convert):
1927         Add byte-compile-disable-print-circle:t at the head.
1929         * international/titdic-cnv.el (tit-process-header):
1930         Add byte-compile-disable-print-circle:t at the head.
1931         (miscdic-convert): Likewise.
1932         (py-converter): Skip the header comments.
1934         * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle):
1935         New variable.
1936         (byte-compile-output-file-form): Bing print-circle to nil if
1937         byte-compile-output-file-form is not nil.
1938         (byte-compile-output-docform): Likewise.
1940 2007-01-28  Kim F. Storm  <storm@cua.dk>
1942         * emulation/cua-base.el (cua-global-keymap, cua--region-keymap):
1943         Declare earlier to avoid byte compiler warnings.
1945 2007-01-28  Markus Triska  <markus.triska@gmx.at>
1947         * speedbar.el (speedbar-make-specialized-keymap): Doc fix.
1949 2007-01-28  Chong Yidong  <cyd@stupidchicken.com>
1951         * play/gamegrid.el (gamegrid-kill-timer): Cancel timer directly.
1952         (gamegrid-add-score-with-update-game-score-1): Allow local quits
1953         when calling update-game-score program.  Remove unnecessary
1954         save-excursion.
1956         * play/tetris.el (tetris-new-shape): Stop drawing if game is over.
1958 2007-01-28  Nick Roberts  <nickrob@snap.net.nz>
1960         * progmodes/gdb-ui.el (gdb-breakpoint-regexp): Declare earlier to
1961         avoid compiler warning.
1962         (gdb-var-update-handler-1): Consider that the MI field `in_scope'
1963         might have values other than "true" or "false".
1965 2007-01-28  Richard Stallman  <rms@gnu.org>
1967         * textmodes/fill.el (fill-paragraph-function): Doc fix.
1968         (fill-paragraph): Bind fill-paragraph-function to t to avoid recursion.
1970         * emacs-lisp/pp.el (pp-eval-last-sexp): Don't eval here.
1972         * image.el (image-type-header-regexps): Make GIF regex more specific.
1974         * tutorial.el (tutorial--default-keys): Check M-DEL, not `M-backspace'.
1975         Don't check `backspace'.
1976         (tutorial--find-changed-keys): Look up bindings in a temp buffer
1977         in Fundamental mode.
1979         * startup.el (fancy-splash-text, normal-splash-screen):
1980         Mention C-g.
1982         * simple.el (eval-expression): Don't use eval-last-sexp-print-value
1983         when inserting in buffer.
1985         * vc-arch.el (vc-arch-file-id): Move with-current-buffer
1986         inside the if.
1988 2007-01-27  Richard Stallman  <rms@gnu.org>
1990         * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do".
1992 2007-01-27  Guanpeng Xu  <herberteuler@hotmail.com>
1994         * add-log.el (add-log-current-defun): Skip the semicolon ``;'' for
1995         enum/union/struct/class definition.
1996         Revert change to call `forward-sexp' multiple times.
1998 2007-01-27  Chong Yidong  <cyd@stupidchicken.com>
2000         * files.el (hack-local-variables-confirm): Don't keep trying to
2001         read an event from an empty kbd macro.
2003 2007-01-27  Eli Zaretskii  <eliz@gnu.org>
2005         * server.el (server-start): Mention LEAVE-DEAD arg in the doc string.
2007 2007-01-27  Ben North  <ben@redfrontdoor.org>
2009         * outline.el (outline-promote, outline-demote): Doc fix.  Rename
2010         the arg CHILDREN -> WHICH.
2012 2007-01-27  Michael Albinus  <michael.albinus@gmx.de>
2014         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Set
2015         default-directory to a sane value when calling start-process.
2017 2007-01-27  Eli Zaretskii  <eliz@gnu.org>
2019         * ls-lisp.el (ls-lisp-use-localized-time-format): New defcustom.
2020         (ls-lisp-format-time-list): Doc fix.  Mention
2021         ls-lisp-use-localized-time-format.
2022         (ls-lisp-format-time): Use ls-lisp-format-time-list if
2023         ls-lisp-use-localized-time-format is non-nil, even if a valid
2024         locale is defined.
2026 2007-01-27  Juanma Barranquero  <lekktu@gmail.com>
2028         * jka-compr.el (jka-compr-shell): Doc fix.
2030         * jka-cmpr-hook.el (jka-compr-compression-info-list): Doc fix.
2032 2007-01-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2034         * ps-print.ps: Fix background height.
2035         (ps-print-version): New version 6.7.2.
2037 2007-01-26  Eli Zaretskii  <eliz@gnu.org>
2039         * makefile.w32-in (finder-data, custom-deps): Depend on
2040         $(lisp)/loaddefs.el.
2042 2007-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
2044         * Makefile.in (custom-deps, finder-data): Add dependency to loaddefs.el.
2046 2007-01-24  Miles Bader  <miles@gnu.org>
2048         * emacs-lisp/bytecomp.el (byte-compile-output-file-form)
2049         (byte-compile-output-docform): Bind `print-circle' to t.
2051 2007-01-24  Kenichi Handa  <handa@m17n.org>
2053         * international/ja-dic-cnv.el (skkdic-convert): Insert a related
2054         file name of the original SKK dictionary file.
2056 2007-01-24  Kim F. Storm  <storm@cua.dk>
2058         * ido.el (ido-initial-position): New variable.
2059         (ido-read-internal): Set it if default item is specified.
2060         (ido-minibuffer-setup): Position cursor accordingly if set.
2061         (ido-edit-input): C-e moves to end of input if not already there.
2062         (ido-magic-backward-char): C-b does like M-b if prev char is /.
2063         Don't switch to buffer mode if repeating C-b at start of input.
2064         (ido-toggle-ignore): C-a only toggles ignore at start or end of
2065         input; else it moves to start of input.
2066         (ido-kill-buffer-at-head, ido-delete-file-at-head): If cursor is
2067         not at end of input, delete rest of input, rather than normal op.
2069 2007-01-23  Michael Kifer  <kifer@cs.stonybrook.edu>
2071         * viper-keym.el (viper-insert-basic-map): Delete binding for S-TAB.
2073         * ediff-util.el (ediff-clone-buffer-for-region-comparison): Change text
2074         of message.  Activate mark.
2075         (ediff-activate-mark): Set transient-mark-mode to t.
2077         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise): Doc fix.
2079 2007-01-23  Martin Rudalics  <rudalics@gmx.at>
2081         * help-fns.el (describe-variable): Don't suppress display of
2082         buffer local value when the value is "large".
2084 2007-01-22  Kim F. Storm  <storm@cua.dk>
2086         * ido.el (ido-active): Add XEmacs test from ido-minibuffer-setup.
2087         (ido-initiate-auto-merge, ido-exhibit, ido-minibuffer-setup)
2088         (ido-tidy): Use ido-active.
2090 2007-01-22  Chris Moore  <christopher.ian.moore@gmail.com>
2092         * hexl.el (hexl-mode-exit): Add missing quote.
2094 2007-01-22  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2096         * term/mac-win.el (mac-keyboard-modifier-mask-alist): New constant.
2097         (mac-ae-keyboard-modifiers): New function.
2098         (mac-handle-toolbar-switch-mode): Use it.
2099         (mac-dnd-handle-drag-n-drop-event): Likewise.  Set action to `copy'
2100         if keyboard modifiers on drop contain option key.
2101         (mac-dnd-drop-data): Add optional argument `action'.
2102         (special-event-map): Remove binding for M-drag-n-drop.
2104 2007-01-21  Guanpeng Xu  <herberteuler@hotmail.com>
2106         * add-log.el (add-log-current-defun): Use CC Mode functions to
2107         find the beginning and end of a defun.
2109 2007-01-21  Nick Roberts  <nickrob@snap.net.nz>
2111         * progmodes/gdb-ui.el (gdb-var-create-regexp)
2112         (gdb-var-create-handler): Handle value field in GDB output of
2113         -var-create.
2114         (gdb-max-frames): New variable.
2115         (gdb-stack-buffer, gdb-frames-select): Use it.
2116         (gdb-info-stack-custom): Help user customize gdb-max-frames,
2117         if necessary.
2118         (gdb-get-frame-number): Simplify.
2120 2007-01-21  Glenn Morris  <rgm@gnu.org>
2122         * net/tramp.el (tramp-perl-encode, tramp-perl-decode):
2123         Update copyrights.
2125 2007-01-21  Alan Mackenzie  <acm@muc.de>
2127         * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Correct the
2128         handling of K&R stuff.
2130 2007-01-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2132         * textmodes/bibtex.el (bibtex-files): Fix customization type.
2134 2007-01-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2136         * ps-print.el: Handle frame parameters (background and/or foreground
2137         colors) changing dynamically.  Reported by Leo <sdl.web@gmail.com>.
2138         (ps-print-version): New version 6.7.1.
2139         (ps-x-frame-property, ps-e-frame-parameter): New aliases.
2140         (ps-frame-parameter): New fun.
2141         (ps-default-fg, ps-default-bg): New default value ('frame-parameter).
2142         Fix doc and customization.
2143         (ps-begin-job): Get frame parameters (background and/or foreground
2144         colors).
2145         (ps-do-despool): Ensure ps-printer-name has a valid value.
2147 2007-01-21  Nick Roberts  <nickrob@snap.net.nz>
2149         * progmodes/gdb-ui.el (gdb-debug-log): Rename from gdb-debug-ring.
2150         (gdb-debug-log-max): Rename from gdb-debug-ring-max.
2151         (gud-gdba-marker-filter): Make a value of nil for gdb-debug-ring-max
2152         mean unlimited.
2154 2007-01-20  Alan Mackenzie  <acm@muc.de>
2156         * progmodes/cc-engine.el (c-in-knr-argdecl): Reformulate to do
2157         much more rigorous analysis of putative K&R regions.
2159 2007-01-20  Alan Mackenzie  <acm@muc.de>
2161         * progmodes/cc-defs.el (c-go-list-forward, c-go-list-backward):
2162         New functions.
2164 2007-01-20  Alan Mackenzie  <acm@muc.de>
2166         * progmodes/cc-align.el, progmodes/cc-cmds.el,
2167         * progmodes/cc-defs.el, progmodes/cc-engine.el,
2168         * progmodes/cc-langs.el, progmodes/cc-styles.el,
2169         * progmodes/cc-vars.el: Add my name.
2171 2007-01-20  Chong Yidong  <cyd@stupidchicken.com>
2173         * files.el (find-alternate-file): Revert query message to Emacs 21
2174         version.
2176 2007-01-20  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
2178         * progmodes/cperl-mode.el (cperl-electric-keywords): Document in
2179         the doc string how to use personal abbrevs without electric
2180         keywords.
2182 2007-01-20  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
2184         * lisp/emacs-lisp/lisp-mode.el (last-sexp-toggle-display):
2185         Fixed cursor position when toggle abbreviated display.
2187 2007-01-20  Nick Roberts  <nickrob@snap.net.nz>
2189         * t-mouse.el: Update copyright following assignment by
2190         Alessandro Rubini.
2192 2007-01-20  Chong Yidong  <cyd@stupidchicken.com>
2194         * type-break.el (type-break-demo-hanoi, type-break-demo-life)
2195         (type-break-demo-boring): Call read-event instead of read-char.
2197 2007-01-19  Daniel Pfeiffer  <occitan@esperanto.org>  (small change)
2199         * progmodes/compile.el: Add handling for makepplog.
2201 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
2203         * textmodes/ispell.el (ispell-change-dictionary): Ensure that
2204         aspell dictionaries are initialized when called non-interactively.
2206 2007-01-19  Chong Yidong  <cyd@stupidchicken.com>
2208         * progmodes/compile.el (compilation-loop): New arg limit.
2209         Handle case where the first error is at point-min.
2210         (compilation-next-error): New arg to compilation-loop call.
2212 2007-01-18  Bruno Haible  <bruno@clisp.org>  (tiny change)
2214         * info.el (Info-default-dirs): Change default info dir to
2215         share/info.
2217         * paths.el (Info-default-directory-list): Ditto.
2219 2007-01-18  Chris Moore  <christopher.ian.moore@gmail.com>
2221         * hexl.el (hexl-before-revert-hook): New function.
2222         (hexl-mode): Use it.
2223         (hexl-after-revert-hook): Just call hexl-mode.
2224         (hexl-mode-exit): Remove before-revert-hook.
2226 2007-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2228         * isearch.el (isearch-no-upper-case-p): Look for [:upper:] as well.
2230 2007-01-16  Martin Rudalics  <rudalics@gmx.at>
2232         * textmodes/ispell.el (ispell-dictionary-alist-3): Replace "---"
2233         by "-" in francais7 otherchars entry.
2234         (ispell-dictionary-alist-5): Replace "." by "[.]" for polish
2235         otherchars entry.
2237 2007-01-15  Karl Fogel  <kfogel@red-bean.com>
2239         * bookmark.el (bookmark-buffer-file-name): Abbreviate the bookmark
2240         path.  Rewrite function in `cond' style for readability.
2242         Suggested by: Stephen Eglen <S.J.Eglen{_AT_}damtp.cam.ac.uk>.
2243         (The path shortening, that is, not the rearrarangement.)
2245 2007-01-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2247         * term/mac-win.el (mac-ae-quit-application): New function.
2248         (mac-apple-event-map): Bind "quit application" Apple event to it.
2250 2007-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2252         * vc-svn.el (vc-svn-parse-status): Trust the filename argument more
2253         than the program's output.
2255 2007-01-14  Juanma Barranquero  <lekktu@gmail.com>
2257         * kmacro.el (kmacro-insert-counter, kmacro-set-counter)
2258         (kmacro-start-macro-or-insert-counter)
2259         (kmacro-step-edit-prefix-commands): Fix typos in docstrings.
2260         (kmacro-call-ring-2nd, kmacro-call-ring-2nd-repeat): Doc fixes.
2262         * longlines.el (longlines-show-hard-newlines):
2263         * ruler-mode.el (ruler-mode-ruler):
2264         * emulation/keypad.el (keypad-setup):
2265         * progmodes/antlr-mode.el (antlr-indent-at-bol-alist):
2266         Fix typo in docstring.
2268 2007-01-13  Mathias Dahl  <mathias.dahl@gmail.com>
2270         * tumme.el (tumme-cmd-rotate-original-options): Add -outfile option.
2271         Remove redirect character ">".
2273 2007-01-13  Juanma Barranquero  <lekktu@gmail.com>
2275         * replace.el (perform-replace): Remove leftover code.
2277 2007-01-12  Richard Stallman  <rms@gnu.org>
2279         * replace.el (perform-replace): Don't clear NODENT when computing
2280         the replacement string.
2282 2007-01-11  Michael Albinus  <michael.albinus@gmx.de>
2284         * net/tramp.el (tramp-handle-file-local-copy):
2285         Set `enable-multibyte-characters' to nil.  Reported by Chris Moore
2286         <christopher.ian.moore@gmail.com>.
2288 2007-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2290         * diff-mode.el (diff-sanity-check-context-hunk-half)
2291         (diff-sanity-check-hunk): New functions.
2292         (diff-find-source-location): Use'em to check the hunks are well-formed.
2294         * hexl.el (hexlify-buffer, dehexlify-buffer): Don't complain and don't
2295         activate undo when undo is not active.
2296         Reported by Chris Moore <christopher.ian.moore@gmail.com>.
2298 2007-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2300         * ffap.el (ffap-next-regexp, ffap-machine-p, ffap-newsgroup-regexp)
2301         (ffap-newsgroup-p, ffap-alist, ffap-string-at-point-mode-alist)
2302         (ffap-url-at-point): Use char-classes rather than "a-z".
2304 2007-01-10  Juanma Barranquero  <lekktu@gmail.com>
2306         * ediff-init.el (ediff-autostore-merges):
2307         * textmodes/fill.el (fill-region): Doc fix.
2309 2007-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2311         * server.el (server-ensure-safe-dir): UIDs may be floats.
2313 2007-01-10  Richard Stallman  <rms@gnu.org>
2315         * battery.el (battery-linux-proc-acpi): Use ignore-errors
2316         around calls to directory-files.
2318         * subr.el (momentary-string-display): Use save-excursion.
2320         * emacs-lisp/pp.el (pp-eval-expression): Once again eval the
2321         argument, but read it as `X' does.
2323 2007-01-09  Juri Linkov  <juri@jurta.org>
2325         * info.el (Info-fontify-node): Don't hide node names of index entries.
2327         * faces.el (momentary): Change :group to basic-faces where all
2328         basic faces belong to.  Add :version.
2330 2007-01-09  Lennart Borgman  <lennart.borgman.073@student.lu.se>
2332         * tutorial.el (tutorial--display-changes): Show M-x sequence if no
2333         keybinding is found.
2334         (tutorial--find-changed-keys): Never treat null keybinding as a
2335         remapping.
2337 2007-01-09  Martin Rudalics  <rudalics@gmx.at>
2339         * wdired.el (wdired-xcase-word): Skip non-word read-only characters.
2341 2007-01-09  Kenichi Handa  <handa@m17n.org>
2343         * international/mule-cmds.el
2344         (select-safe-coding-system-interactively): Fix message.
2346 2007-01-09  Michael Albinus  <michael.albinus@gmx.de>
2348         * net/tramp.el (tramp-process-one-action): Remove `with-timeout'.
2349         (tramp-process-actions): Add optional parameter TIMEOUT.
2350         (tramp-open-connection-telnet, tramp-open-connection-rsh)
2351         (tramp-open-connection-su): Add timeout of 60".
2353 2007-01-09  Richard Stallman  <rms@gnu.org>
2355         * progmodes/compile.el (compile): Doc fix.
2357 2007-01-09  Markus Triska  <markus.triska@gmx.at>
2359         * tumme.el (tumme-display-thumb): Doc fix.
2361 2007-01-08  Juanma Barranquero  <lekktu@gmail.com>
2363         * battery.el (battery-search-for-one-match-in-files):
2364         * bindings.el (mode-line-minor-mode-help):
2365         * x-dnd.el (x-dnd-types-alist):
2366         * calendar/icalendar.el (icalendar-import-buffer):
2367         * term/mac-win.el (mac-dnd-types-alist): Fix typo in docstring.
2369         * progmodes/vhdl-mode.el (vhdl-save-caches): Fix typo in error message.
2371 2007-01-07  Chris Moore  <christopher.ian.moore@gmail.com>
2373         * replace.el (replace-regexp): Fix typo in docstring.
2375 2007-01-07  Alan Mackenzie  <acm@muc.de>
2377         * progmodes/cc-langs.el (c-operators, c-filter-ops):
2378         Amend doc-string and comments.
2380 2007-01-06  Eli Zaretskii  <eliz@gnu.org>
2382         * files.el (abbreviate-file-name): Doc fix.
2384 2007-01-06  Markus Triska  <triska@gmx.at>
2386         * subr.el (split-string): Remove spurious ")" from doc string.
2388 2007-01-05  Takaaki Ota  <Takaaki.Ota@am.sony.com>
2390         * textmodes/table.el (table--warn-incompatibility):
2391         Use display-warning instead of momentary-string-display.
2393 2007-01-05  Richard Stallman  <rms@gnu.org>
2395         * image.el (image-type-header-regexps): Recognize xbm more strictly.
2397         * simple.el (backward-kill-word): Doc fix.
2399 2007-01-05  Romain Francoise  <romain@orebokech.com>
2401         * international/mule.el (sgml-html-meta-auto-coding-function):
2402         Ensure that the buffer contains a HTML document.
2404 2007-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2406         * faces.el (momentary): Move here ...
2407         * subr.el (momentary): ... from here.
2409 2007-01-05  Nick Roberts  <nickrob@snap.net.nz>
2411         * progmodes/gdb-ui.el (gdb-max-children): New customizable variable.
2412         (gdb-speedbar-expand-node): Ask user for confirmation before expanding
2413         large structures/arrays.
2415 2007-01-04  Juanma Barranquero  <lekktu@gmail.com>
2417         * files.el (find-file-noselect-1, set-visited-file-name):
2418         Allow backup-enable-predicate to be nil.
2420 2007-01-04  Andreas Schwab  <schwab@suse.de>
2422         * progmodes/ebrowse.el (ebrowse-global-prefix-key): Fix typo in
2423         last change.
2425 2007-01-03  Richard Stallman  <rms@gnu.org>
2427         * woman.el (woman-decode-buffer): Clarify error message.
2429 2007-01-03  Alan Mackenzie  <acm@muc.de>
2431         * progmode/cc-cmds.el (c-mask-paragraph): Fix yesterday's buggy patch.
2433 2007-01-03  Chris Moore  <christopher.ian.moore@gmail.com>
2435         * tutorial.el (tutorial--describe-nonstandard-key): Fix typo.
2437 2007-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2439         * iswitchb.el (iswitchb-global-map): Use command-remapping if available.
2441 2007-01-02  Juanma Barranquero  <lekktu@gmail.com>
2443         * emulation/viper.el (viper-custom-file-name, viper-mode):
2444         Fix typos in docstrings.
2446         * subr.el (momentary-string-display): After moving point, set POS
2447         variable to it to avoid later errors once the buffer is modified.
2448         Doc fix.
2450 2007-01-02  Alan Mackenzie  <acm@muc.de>
2452         * progmodes/cc-cmds.el (c-mask-paragraph): In a block comment,
2453         check that the "*/" is present before trying to manipulate it.
2455 2007-01-02  Richard Stallman  <rms@gnu.org>
2457         * wid-edit.el (widget-choose): Avoid ugly error for function keys.
2459         * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords):
2460         Fix format of value.
2462         * cus-edit.el (customize-unsaved): Rename from customize-customized.
2463         Change messages accordingly.
2464         (customize-customized): Now alias.
2466 2007-01-02  Juanma Barranquero  <lekktu@gmail.com>
2468         * files.el (version-control): Doc fix.
2470 2007-01-01  Alan Mackenzie  <acm@muc.de>
2472         * progmodes/cc-engine.el (c-guess-basic-syntax, case 5N):
2473         Check the format of c-state-cache is valid for an optimisation before
2474         using it.
2476         * progmodes/cc-engine.el (c-guess-basic-syntax): New case 5Q "we
2477         are at a statement within a macro".  Other changes so that only
2478         the first continuation line in a macro gets the symbol
2479         `cpp-define-intro', the others getting `statement', or whatever.
2481         * progmodes/cc-cmds.el (c-context-line-break): When invoked within
2482         a string, preserve whitespace.  Add a backslash only when also in
2483         a macro.
2485         * progmodes/cc-defs.el: Correct typos.
2487         * progmodes/cc-cmds.el (c-context-line-break): Don't indent the
2488         new line after an escaped EOL in a string.
2490         * progmodes/cc-engine.el (c-forward-label): Recognise "foo:" as a
2491         label when it directly follows "else", "do", ....
2493         * progmodes/cc-engine.el (c-backward-<>-arglist): Tolerate empty
2494         angle brackets (as seen in "explicit specialisations" of C++
2495         templates).
2497         * progmodes/cc-vars.el (c-indentation-style): Mention c-file-style
2498         in the doc-string.
2500         * progmodes/cc-cmds.el (c-mask-paragraph): Fix for C comments,
2501         when the comment ender looks like "=========*/" and is alone on
2502         its line.
2504         * progmodes/cc-langs.el, progmodes/cc-engine.el: Correct the
2505         spelling of c-opt-op-identiTier-prefix, t -> f.  Leave an alias
2506         for the old name.
2508         * progmodes/cc-mode.el: Bind C-M-a and C-M-e to
2509         c-\(beginning\|end\)-of-defun by default.
2511         * progmodes/cc-align.el (c-lineup-gnu-DEFUN-intro-cont):
2512         New line-up function, for the DEFUN macro in the Emacs C sources.
2513         Only used in "gnu" style.
2515         * progmodes/cc-styles.el (c-style-alist): Use this new function in
2516         the "gnu" style.
2518         * progmodes/cc-cmds.el (c-electric-slash): Extend the handling of
2519         clean-up comment-close-slash also to work when there's a comment
2520         terminator on the line.
2521         (c-beginning-of-defun, c-end-of-defun): Refactor and optimise
2522         these for large arg - only take account of top level {..}, except
2523         for initial and final adjustments.  M-- C-M-[ae] now go to the
2524         right defuns when the starting point is between defuns.  They use
2525         the four new functions:
2526         (c-in-function-trailer-p, c-where-wrt-brace-construct)
2527         (c-backward-to-nth-BOF-{, c-forward-to-nth-EOF-}): New functions to
2528         support c-\(beginning\|end\)-of-defun.
2530         * progmodes/cc-engine.el (c-forward-label): Analyze ":"
2531         expressions more rigorously, to exclude bit-field specifiers from
2532         being classed as labels.
2533         (c-forward-label): When analyzing a ":" within a macro, be careful
2534         about using c-forward-syntactic-ws at the macro beginning.
2535         (c-beginning-of-decl-1): Whilst searching for "=" as evidence of a
2536         stmt boundary, check for "operator=", etc.
2538         * progmodes/cc-mode.el (c-postprocess-file-styles):
2539         Bind inhibit-read-only to t, around the call to
2540         c-remove-any-local-eval-or-mode-variables, so that it works on a
2541         RO file.
2543         * progmodes/cc-defs.el (c-version): Update the version number to
2544         "5.31.4".
2546 2007-01-01  Richard Stallman  <rms@gnu.org>
2548         * isearch.el (isearch-done): Use FOUND-POINT or FOUND-START
2549         only if we restored isearch-window-configuration.
2551 2006-12-31  Romain Francoise  <romain@orebokech.com>
2553         * net/tramp.el (tramp-default-method): Don't use `symbol-function'.
2555 2006-12-31  Kim F. Storm  <storm@cua.dk>
2557         * files.el (auto-mode-case-fold): New defcustom.
2558         (set-auto-mode): If non-nil, perform second case-sensitive pass
2559         through auto-mode-alist if first pass failed.
2561 2006-12-30  Richard Stallman  <rms@gnu.org>
2563         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Doc fix.
2565 2006-12-30  Ken Manheimer  <ken.manheimer@gmail.com>
2567         * allout.el (allout-encrypt-string): Handle symmetric-key
2568         passphrase caching but leave keypair caching to pgg.
2570 2006-12-30  Michael Albinus  <michael.albinus@gmx.de>
2572         Sync with Tramp 2.0.55.
2574         * net/tramp.el (tramp-completion-mode): Use `wholenump' instead of
2575         `integerp'.  `char-equal' could fail else in case of negative
2576         numbers.  Reported by Toby Speight <T.M.Speight.90@cantab.net>.
2577         (top): Check for `font-lock-add-keywords' before calling; it
2578         doesn't exist under XEmacs.
2579         (tramp-yn-prompt-regexp): Fix regexp.  Add question from plink.
2580         (tramp-completion-mode): Remove clause (not
2581         tramp-unified-filenames), because the function is called in other
2582         context too, where this check results in wrong results in the
2583         XEmacs case on Windows.
2584         (tramp-touch): UTC handling is not possible for XEmacs.
2586 2006-12-30  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2588         * scroll-bar.el (previous-scroll-bar-mode): New variable
2589         (set-scroll-bar-mode): Set previous-scroll-bar-mode.
2590         (scroll-bar-mode): Use previous-scroll-bar-mode if set.
2592         * term/x-win.el: Set scroll bar mode to right if set by X resources.
2594 2006-12-30  Richard Stallman  <rms@gnu.org>
2596         * files.el (make-backup-file-name-1): Precompute abs name
2597         but don't lose the relative name.
2599         * international/mule-cmds.el (select-safe-coding-system-interactively):
2600         Fix message.
2602 2006-12-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>  (tiny change)
2604         * files.el (backup-buffer): Show entire backup file name in msg.
2606 2006-12-30  Juanma Barranquero  <lekktu@gmail.com>
2608         * image.el (image-type-header-regexps, image-type-from-data)
2609         (image-type-from-buffer, image-type-from-file-header):
2610         Revert changes from 2006-12-26.
2611         (image-type-auto-detectable): New variable.
2612         (image-type-auto-detected-p): New function.
2614         * files.el (magic-mode-alist): Detect image files with
2615         `image-type-auto-detected-p' instead of `image-type-from-buffer'.
2617 2006-12-29  Nick Roberts  <nickrob@snap.net.nz>
2619         * dired.el (dired-sort-other): Move test for dired-mode...
2620         (dired-sort-set-modeline): ...to here.
2622 2006-12-29  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
2624         * textmodes/fill.el (fill-comment-paragraph): Document 2006-12-24
2625         change.  Suggested by Stefan Monnier.
2627 2006-12-29  Kim F. Storm  <storm@cua.dk>
2629         * emacs-lisp/bindat.el (bindat--unpack-group, bindat--length-group)
2630         (bindat--pack-group): Let-bind COUNT during repeat block evaluation.
2632 2006-12-27  Kim F. Storm  <storm@cua.dk>
2634         * emacs-lisp/authors.el (authors-aliases): Anchor FSF alias regexp,
2635         so it doesn't accidentally match an fsf.org mail address.
2636         (authors-renamed-files-alist): Add tcover-*.el.
2638 2006-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2640         * vc-arch.el (vc-arch-find-version): New function.
2642         * vc-hooks.el (vc-version-backup-file-name): Revision names may be
2643         composed of arbitrary characters (even /) in some systems.
2645 2006-12-27  Eli Zaretskii  <eliz@gnu.org>
2647         * international/mule-cmds.el (select-safe-coding-system-interactively):
2648         Improve the message in the *Warning* buffer.
2650 2006-12-27  Kim F. Storm  <storm@cua.dk>
2652         * ido.el (ido-set-matches-1): Fix last change.  If default item is
2653         current buffer, it is ok to be first.
2655 2006-12-27  Kenichi Handa  <handa@m17n.org>
2657         * international/mule-cmds.el (select-safe-coding-system-interactively):
2658         Use face `link' for problematic chars.
2660 2006-12-27  Kenichi Handa  <handa@m17n.org>
2662         * international/mule-cmds.el (select-safe-coding-system-interactively):
2663         Improve the message in *Warning* buffer.
2665 2006-12-27  Kim F. Storm  <storm@cua.dk>
2667         * ido.el (ido-set-matches-1): Never put current buffer first if
2668         there are other matches.
2670 2006-12-26  Nick Roberts  <nickrob@snap.net.nz>
2672         * progmodes/gdb-ui.el (gud-watch): Allow duplicate names for watch
2673         expressions.
2674         (gdb-var-delete): Handle duplicate names.  Print message for non
2675         root expressions.
2676         (gdb-partial-output-name): Start buffer name with a space.
2677         (gdb-info-breakpoints-custom, gdb-reset): Handle space in above
2678         buffer name.
2680 2006-12-26  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
2682         * mail/footnote.el (Footnote-insert-footnote): Fix the search of the
2683         last footnote when `footnote-spaced-footnotes' is nil.
2685 2006-12-26  Richard Stallman  <rms@gnu.org>
2687         * cus-edit.el (custom-browse-sort-alphabetically)
2688         (custom-buffer-sort-alphabetically)
2689         (custom-menu-sort-alphabetically): Doc fixes.  Add autoloads.
2691         * image.el (image-type-header-regexps): Change element format
2692         to include third item NOT-ALWAYS.
2693         (image-type-from-data): Handle new format.
2694         (image-type-from-buffer): Handle new format.  New arg INCLUDE-MAYBES.
2695         (image-type-from-file-header): Pass t for INCLUDE-MAYBES.
2697 2006-12-26  Guanpeng Xu  <herberteuler@hotmail.com>
2699         * add-log.el (add-log-current-defun): Call `forward-sexp'
2700         multiple times to pick a member function name defined as
2701         part of nested classes/namespaces.
2703 2006-12-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2705         * emacs-lisp/easymenu.el (easy-menu-change): New arg MAP to indicate
2706         which keymap should be used to change menu.  It does not affect any
2707         existent code.
2709 2006-12-26  Richard Stallman  <rms@gnu.org>
2711         * textmodes/fill.el (fill-paragraph): Check for a minibuffer
2712         rather than for being in a minibuffer window.
2714 2006-12-25  Daiki Ueno  <ueno@unixuser.org>
2716         * pgg-def.el (pgg-passphrase-coding-system): Default to nil instead of
2717         locale-coding-system.
2718         * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with eol-type
2719         LF.
2721 2006-12-25  Michael R. Mauger  <mmaug@yahoo.com>
2723         * progmodes/sql.el (sql-mode-abbrev-table): Correct initialization.
2724         (sql-mode-syntax-table): Disable double quoted strings.
2725         (sql-mode-font-lock-object-name): Add TYPE and TYPE BODY.
2727 2006-12-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2729         * startup.el (fancy-splash-last-input-event): New variable.
2730         (fancy-splash-special-event-action): New function.
2731         (fancy-splash-screens): Temporarily bind special events to it.
2732         Execute command for saved special event before exiting from
2733         recursive editing.
2735         * term/mac-win.el (mac-keyboard-translate-char, mac-unread-string):
2736         New functions.
2737         (mac-ts-update-active-input-area, mac-ts-unicode-for-key-event):
2738         Use mac-unread-string.
2740 2006-12-24  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
2742         * textmodes/fill.el (fill-comment-paragraph): Prevent the use of
2743         an optimized comment regexp if `comment-start-skip' uses a ^.
2744         * bs.el (bs--up): Remove interactive spec.
2746 2006-12-24  Chong Yidong  <cyd@stupidchicken.com>
2748         * woman.el (woman-decode-buffer): Signal error for alien macro sets.
2749         Suggested by James Cloos.
2751 2006-12-24  Kevin Ryde  <user42@zip.com.au>
2753         * calendar/cal-dst.el (calendar-dst-starts): Default to second Sunday
2754         in March.
2755         (calendar-dst-ends): Default to first Sunday in November.
2757 2006-12-24  Ken Manheimer  <ken.manheimer@gmail.com>
2759         * allout.el (allout-encrypt-string): Inhibit use of agent within
2760         body of let form where encryption happens.  Acknowledge non-use of
2761         gpg-agent in docstring.
2762         (allout-toggle-subtree-encryption): Acknowledge non-use of
2763         gpg-agent in docstring.
2765 2006-12-24  Chong Yidong  <cyd@stupidchicken.com>
2767         * custom.el (custom-add-frequent-value): Alias for custom-add-option.
2769 2006-12-23  Michael Kifer  <kifer@cs.stonybrook.edu>
2771         * ediff-diff.el (ediff-diff-options): Clarify docstring.
2772         (ediff-setup-diff-regions): Disallow -u in ediff-diff-options.
2774         * viper-cmd.el (viper-post-command-sentinel): Protect against errors
2775         in hooks.
2776         (viper-add-newline-at-eob-if-necessary): Add newline only if we
2777         actually modify buffer; ignore errors if occur.
2779 2006-12-23  Chong Yidong  <cyd@stupidchicken.com>
2781         * calendar/calendar.el (calendar-mode-map): Switch < and >.
2782         (calendar-mode-line-format): Use mouse-1 bindings, and tweak
2783         formatting.
2785 2006-12-23  Richard Stallman  <rms@gnu.org>
2787         * simple.el (delete-horizontal-space): Doc fix.
2789 2006-12-23  Eli Zaretskii  <eliz@gnu.org>
2791         * makefile.w32-in (bootstrap-clean): Run bootstrap-clean-$(SHELLTYPE)
2792         explicitly in a recursive Make, not implicitly through prerequisites,
2793         since the latter is wrong under parallel builds.
2795 2006-12-22  Eli Zaretskii  <eliz@gnu.org>
2797         * w32-fns.el (convert-standard-filename): Wrap in save-match-data.
2799 2006-12-22  Kevin Rodgers  <kevin.d.rodgers@gmail.com>  (tiny change)
2801         * progmodes/sh-script.el (sh-make-vars-local): Fix a typo in
2802         message string.
2804 2006-12-22  Ben North  <ben@redfrontdoor.org>  (tiny change)
2806         * outline.el (outline-next-visible-heading): Fix the case with a
2807         header at end-of-file with no final newline.
2809 2006-12-22  Robert Thorpe  <rthorpe@realworldtech.com>  (tiny change)
2811         * indent.el (tab-always-indent): Doc fix.
2813 2006-12-22  Chong Yidong  <cyd@stupidchicken.com>
2815         * info.el (Info-fontify-maximum-menu-size): Bump to 1000000.
2816         (Info-fontify-node): Do fontify indices.
2818         * tutorial.el (tutorial--detailed-help): Remove unnecessary link
2819         to the Emacs Lisp reference manual.
2820         (tutorial--tab-map): Remove.  All callers changed.
2821         (tutorial--find-changed-keys): New elt QUIET, used to...
2822         (tutorial--display-changes): ...ensure that warning messages are
2823         only issued once per changed key.
2824         (tutorial--remove-remarks): Delete unused code-path.
2825         (lang-strings): Remove extraneous formatting.
2826         (tutorial--save-tutorial): Prompt before saving tutorial state.
2828 2006-12-21  Chong Yidong  <cyd@stupidchicken.com>
2830         * tutorial.el: Remove `cl' requirement.  Clean up whitespace.
2831         Replace '?\ ' by '?\s' throughout.
2832         (tutorial-warning-face): Inherit font-lock-warning-face.  Move to
2833         `help' custom group.
2834         (tutorial--key-description): New function.
2835         (tutorial--display-changes): Remove redundant arg.  Scan for all
2836         key sequences to avoid false matches.  Cleanup.
2837         (tutorial--saved-dir): Save to a subdirectory in .emacs.d to
2838         reduce homedir pollution.
2839         (help-with-tutorial): Call tutorial--display-changes with no arg.
2841 2006-12-21  Carsten Dominik  <dominik@science.uva.nl>
2843         * textmodes/org.el (org-mode-map): Bind org-complete also to M-\t.
2845 2006-12-20  Michael Albinus  <michael.albinus@gmx.de>
2847         * net/tramp.el (tramp-default-method): We still need to check for
2848         `executable-find', because it is not bound under Emacs 20.
2849         (tramp-handle-file-name-completion)
2850         (tramp-completion-handle-file-name-completion): Handle optional
2851         parameter PREDICATE.
2852         (tramp-find-default-method): Add code for default values.
2854 2006-12-20  Nick Roberts  <nickrob@snap.net.nz>
2856         * progmodes/gdb-ui.el (gdb-stopped): After attaching to a process
2857         make gud-go send "continue".
2859 2006-12-19  Juanma Barranquero  <lekktu@gmail.com>
2861         * image.el (image-type-header-regexps): Be more specific detecting `pbm'
2862         and `png' files.  Use non-capturing parenthesis for `tiff' regexp.
2864 2006-12-19  Kim F. Storm  <storm@cua.dk>
2866         * bindings.el: Bind sigusr1 and sigusr2 in special-event-map
2867         instead of global-map.
2869         * files.el (magic-mode-alist): Allow matching file type by
2870         calling a function at bob.  Check for image types by calling
2871         image-type-from-buffer.  Suggested by Juanma Barranquero.
2872         (set-auto-mode): Do it.
2874 2006-12-19  Michael Albinus  <michael.albinus@gmx.de>
2876         * net/tramp.el (tramp-methods): Introduce new method `scpc'.
2877         Remove "ControlMaster" option from the other `scp*' methods.
2878         (tramp-default-method): Check for ssh-agent before setting to `scp'.
2880 2006-12-18  Carsten Dominik  <dominik@science.uva.nl>
2882         * textmodes/org.el (org-mode): Show context after isearch.
2883         (org-show-siblings): New function.
2884         (org-show-context): Use `org-show-siblings'.
2886 2006-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2888         * emacs-lisp/syntax.el (syntax-ppss-flush-cache, syntax-ppss):
2889         Use syntax-ppss-toplevel-pos.
2891 2006-12-18  Carsten Dominik  <dominik@science.uva.nl>
2893         * textmodes/org.el (org-current-line): Make sure that lines are
2894         counted from beginning of buffer.
2895         (org-table-copy-region, org-table-paste-rectangle): Make sure that
2896         lines are counted from beginning of buffer.
2898 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
2900         * info.el (Info-build-node-completions): Signal error if tag-table
2901         marker is not found.
2903         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
2905 2006-12-17  Alan Mackenzie  <acm@muc.de>
2907         * emacs-lisp/lisp.el (beginning-of-defun-raw): Optimise (for
2908         speed) the case when open-paren-in-column-0-is-defun-start is nil.
2909         Based on code by Martin Rudalics.
2911         * progmodes/cc-mode.el (c-basic-common-init): Don't set
2912         open-paren-in-column-0-is-defun-start to nil any more.
2914 2006-12-17  Richard Stallman  <rms@gnu.org>
2916         * simple.el (delete-horizontal-space): Use prefix arg.
2918         * help-fns.el (describe-variable): Improve blank separator lines.
2920         * files.el (magic-mode-alist): Mark as risky.
2922         * files.el (make-backup-file-name-1):
2923         Expand backup-directory explicitly.
2925 2006-12-17  Michael Albinus  <michael.albinus@gmx.de>
2927         * net/tramp.el (tramp-default-method): Before setting to "pscp",
2928         check whether package password.el is loaded, or Pageant is running.
2930 2006-12-17  Ulf Jasper  <ulf.jasper@web.de>
2932         * calendar/icalendar.el (icalendar-version): Increase to "0.14".
2933         (icalendar--rris): First try Emacs, then XEmacs.
2934         (icalendar--convert-ical-to-diary): Doc fix.
2935         Insert newline at end of target file.
2937 2006-12-17  Kim F. Storm  <storm@cua.dk>
2939         * outline.el (outline-isearch-open-invisible-function): New defvar.
2940         (outline-flag-region): Use it if non-nil for isearch-open-invisible
2941         overlay property instead of outline-isearch-open-invisible.
2943 2006-12-16  Kim F. Storm  <storm@cua.dk>
2945         * ido.el (ido-completion-help): Build ido-cur-list and ido-matches
2946         if ido-directory-too-big is set on entry.
2947         (ido-toggle-ignore, ido-completion-help): Print message while
2948         reading big directory.
2950 2006-12-15  Richard Stallman  <rms@gnu.org>
2952         * shell.el (shell): Doc fix.
2954 2006-12-15  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
2956         * emulation/edt.el (edt-xserver):
2957         * emulation/edt-mapper.el (edt-xserver): Replace `/' with a `-',
2958         to fix a problem on Cygwin.
2960         * emulation/edt.el
2961         * emulation/edt-mapper.el
2962         * emulation/edt-lk201.el
2963         * emulation/edt-pc.el
2964         * emulation/edt-vt100.el: Update maintainer's email address.
2966 2006-12-15  Simon Marshall  <simon@gnu.org>
2968         * progmodes/cc-fonts.el (c-font-lock-declarations): Fix previous change.
2970 2006-12-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2972         * term/mac-win.el (mac-atsu-font-table): Remove defvar.
2973         (mac-handle-font-selection): Use mac-atsu-font-face-attributes
2974         instead of mac-atsu-font-table.
2975         (fontset-default): Specify argument MAXIMUM in x-list-fonts calls.
2977 2006-12-14  Stephen Leake  <stephen_leake@member.fsf.org>
2979         * align.el (align-match-tex-pattern): Fix a rare bug which
2980         hanged Emacs.
2982 2006-12-14  Richard Stallman  <rms@gnu.org>
2984         * startup.el (use-fancy-splash-screens-p): Use frame-height
2985         instead of window-height.  Pass frame to image-size.
2987 2006-12-13  Kenichi Handa  <handa@m17n.org>
2989         * international/mule-cmds.el (set-locale-environment):
2990         Set default-sendmail-coding-system too.
2992 2006-12-12  J.D. Smith  <jdsmith@as.arizona.edu>
2994         * progmodes/idlw-help.el: Fix copyright notice.
2996 2006-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2998         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos): New fun.
3000 2006-12-11  Juanma Barranquero  <lekktu@gmail.com>
3002         * subr.el (unread-command-char): Reformat obsolescence info.
3004 2006-12-11  Richard Stallman  <rms@gnu.org>
3006         * emacs-lisp/cl-macs.el (defstruct): Suppress warnings
3007         about calls to cl-struct-setf-expander.
3009 2006-12-11  Juanma Barranquero  <lekktu@gmail.com>
3011         * ediff-merg.el (ediff-show-clashes-only): Doc fix.
3012         (ediff-combination-pattern): Fix typo in docstring.
3014         * textmodes/refer.el (refer-find-entry): Doc fix.
3015         (refer-bib-files-regexp, refer-bib-directory, refer-bib-files)
3016         (refer-cache-bib-files, refer-find-next-entry, refer-yank-key):
3017         Fix tipos in docstrings.
3019         * progmodes/idlwave.el (idlwave-library-path): Fix typos in docstring.
3021 2006-12-10  Kim F. Storm  <storm@cua.dk>
3023         * ido.el (ido-init-completion-maps): Remap backward-kill-word
3024         instead of binding M-backspace.
3026 2006-12-10  Juanma Barranquero  <lekktu@gmail.com>
3028         * replace.el (replace-match-data, replace-match-maybe-edit):
3029         * calc/calc-aent.el (calc-eval-error):
3030         * emulation/vi.el (vi-char-argument):
3031         * progmodes/cc-langs.el (c-at-vsemi-p-fn)
3032         (c-vsemi-status-unknown-p-fn): Doc fixes.
3034 2006-12-10  Chong Yidong  <cyd@stupidchicken.com>
3036         * menu-bar.el (menu-bar-showhide-menu, menu-bar-tools-menu)
3037         (menu-bar-help-menu): Tooltip fixes.  Suggested by Francis Wright.
3039 2006-12-10  Masatake YAMATO  <jet@gyve.org>
3041         * progmodes/ld-script.el (ld-script-keywords): Fix a typo.
3043 2006-12-09  Chong Yidong  <cyd@stupidchicken.com>
3045         * mouse-sel.el (mouse-sel-mode): Register mouse-2 as a click type.
3047         * man.el (Man-xref-button-action): New function.  If the
3048         `Man-target-string' button property is a function, assume it
3049         accepts a position argument.
3050         (Man-abstract-xref-man-page): Use it.
3051         (Man-default-man-entry): New optional arg POS.
3053         * wdired.el (wdired-preprocess-symlinks): Make the spaces after
3054         symlink arrows read-only and non-rear-sticky.
3056 2006-12-09  Martin Rudalics  <rudalics@gmx.at>
3058         * wdired.el (wdired-change-to-wdired-mode, wdired-finish-edit)
3059         (wdired-search-and-rename): Simplify code.
3060         (wdired-preprocess-files, wdired-preprocess-perms): Make
3061         read-only property of preceding character rear-nonsticky to
3062         avoid that it can be modified.  Put old-name and old-link
3063         properties on character preceding name and replace
3064         put-text-property by add-text-properties.
3065         (wdired-get-filename, wdired-get-previous-link): Get old-name
3066         and old-link properties from character preceding name and
3067         simplify code.
3068         (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit)
3069         (wdired-perms-to-number): Make local-map property
3070         rear-nonsticky to avoid that text following permissions may be
3071         modified.  Use add-text-properties instead of put-text-property
3072         when changing a permission bit.
3073         (wdired-change-to-dired-mode): Remove stickiness properties.
3075 2006-12-09  Juanma Barranquero  <lekktu@gmail.com>
3077         * international/mule-cmds.el (register-input-method): Doc fix.
3079 2006-12-09  Masayuki Ataka  <masayuki.ataka@gmail.com>  (tiny change)
3081         * cmuscheme.el (scheme-start-file): Use `let*', not `let'.
3083 2006-12-09  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3085         * textmodes/flyspell.el (flyspell-hack-local-variables-hook): New.
3086         Force buffer local defs evaluation on local variables loading.
3087         (flyspell-mode-on, flyspell-mode-off): Use it in
3088         `hack-local-variables-hook'.
3090 2006-12-09  Eli Zaretskii  <eliz@gnu.org>
3092         * emacs-lisp/find-func.el (find-variable): Doc fix.
3094         * help-fns.el (variable-at-point): Doc fix.
3096         * w32-fns.el (w32-append-code-lines): New function.
3098 2006-12-09  Romain Francoise  <romain@orebokech.com>
3100         * comint.el (comint-insert-input): Delete obsolete comment.
3102 2006-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3104         * net/browse-url.el (browse-url): Set DISPLAY to the one of the
3105         current frame, in case we're connected to several displays.
3107 2006-12-08  Juanma Barranquero  <lekktu@gmail.com>
3109         * frame.el (other-frame): Doc fix.
3110         (set-frame-parameter): Fix typo in docstring.
3112 2006-12-07  Kim F. Storm  <storm@cua.dk>
3114         * info.el (Info-index): Strip leading colon from topic.
3116 2006-12-07  Nick Roberts  <nickrob@snap.net.nz>
3118         * progmodes/gud.el (gud-speedbar-buttons): Deal with references
3119         to pointers.
3121 2006-12-05  J.D. Smith  <jdsmith@as.arizona.edu>
3123         * progmodes/idlwave.el (idlwave-xml-create-class-method-lists):
3124         Trim out spurious class inheritance "None" entries.
3126 2006-12-05  Kim F. Storm  <storm@cua.dk>
3128         * emulation/cua-base.el (cua-paste-pop-rotate-temporarily): Doc fix.
3129         (cua-paste-pop): Rework last change for
3130         cua-paste-pop-rotate-temporarily, so first M-y and C-y works alike,
3131         pasting the head of the kill-ring, and prefix arg C-u M-y inserts the
3132         text inserted by the last M-y command.
3134 2006-12-05  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3136         * cmuscheme.el (run-scheme, scheme-start-file): Search the start
3137         file in ~/.emacs.d as `init_SCHEMENAME.scm' instead.
3139         * shell.el (shell): Search the start file in ~/.emacs.d as
3140         `init_SHELLNAME.sh' instead.
3142 2006-12-05  Glenn Morris  <rgm@gnu.org>
3144         * progmodes/cperl-mode.el (cperl-mode)
3145         * progmodes/f90.el (f90-mode-abbrev-table)
3146         * progmodes/fortran.el (fortran-mode-abbrev-table)
3147         * progmodes/octave-mod.el (octave-abbrev-table)
3148         * progmodes/sql.el (sql-mode-abbrev-table): Define abbrevs even
3149         if abbrev-table is non-nil (saved user abbrevs may have been restored).
3151         * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init): Do not
3152         clear abbrev table, else saved abbrevs will not be restored.
3154 2006-12-04  Juanma Barranquero  <lekktu@gmail.com>
3156         * facemenu.el (facemenu-unlisted-faces): Put obsolescence info in
3157         the call to `make-obsolete-variable', not in the docstring.
3159 2006-12-04  Chong Yidong  <cyd@stupidchicken.com>
3161         * facemenu.el (facemenu-unlisted-faces): Define as obsolete variable.
3163 2006-12-04  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3165         * progmodes/ebnf-abn.el:
3166         * progmodes/ebnf-bnf.el:
3167         * progmodes/ebnf-dtd.el:
3168         * progmodes/ebnf-ebx.el:
3169         * progmodes/ebnf-iso.el:
3170         * progmodes/ebnf-otz.el:
3171         * progmodes/ebnf-yac.el:
3172         * progmodes/ebnf2ps.el:
3173         * delim-col.el:
3174         * printing.el:
3175         * ps-bdf.el:
3176         * ps-mule.el:
3177         * ps-print.el: Remove 'Time-stamp' comment mark.
3179         * printing.el (pr-menu-bind): Replace 'easy-menu-change' by
3180         'easy-menu-add-item' when called in Emacs 21 or higher.
3182 2006-12-04  Stephen Leake  <stephen_leake@stephe-leake.org>
3184         * progmodes/ada-xref.el (ada-check-current): Doc fix.
3185         (ada-make-body-gnatstub): Doc fix.  Remove redundant `progn'.
3187 2006-12-04  Kim F. Storm  <storm@cua.dk>
3189         * bindings.el (global-map): Bind [signal t] to ignore, to have
3190         user signals ignored by default.
3192 2006-12-04  Juanma Barranquero  <lekktu@gmail.com>
3194         * descr-text.el (describe-char-unicode-data): Use a hidden buffer for
3195         Unicode data file pointed to by `describe-char-unicodedata-file'.
3197 2006-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3199         * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Fix pathological
3200         O(n^2) regexp-search by anchoring the search.
3202 2006-12-04  Dan Nicolaescu  <dann@ics.uci.edu>
3204         * whitespace.el (whitespace-cleanup-internal): Use current
3205         argument for recursive call.
3207 2006-12-04  Michael Albinus  <michael.albinus@gmx.de>
3209         * net/tramp.el (tramp-methods): Add "ControlPath" and
3210         "ControlMaster" to scp, scp1 and scp2 methods.  Suggested by
3211         Andreas Schwab <schwab@suse.de>.
3212         (tramp-do-copy-or-rename-file-out-of-band)
3213         (tramp-open-connection-rsh): Compute format spec for ?t.
3214         (tramp-process-actions): Trace command parameters.
3216 2006-12-04  Nick Roberts  <nickrob@snap.net.nz>
3218         * simple.el (toggle-truncate-lines): Clarify doc string.
3220         * progmodes/gdb-ui.el (gdb-var-delete-children): New function.
3221         (gdb-speedbar-expand-node): Use it.
3223 2006-12-04  Richard Stallman  <rms@gnu.org>
3225         * progmodes/python.el (python-indent): Add safe-local-variable prop.
3227         * dired.el (dired-revert): Turn off dired-after-readin-hook
3228         around call to dired-readin.
3230         * menu-bar.el (menu-bar-make-toggle): Add "globally"
3231         to echo area messages.
3232         <indicate-empty-lines, case-fold-search>:
3233         Add "globally" to Help string.
3234         <case-fold-search>: MESSAGE arg need not say "globally".
3235         (menu-bar-edit-menu <paste-from-menu>): Rename from select-and-paste.
3237 2006-12-03  Liam Healy  <lnp@healy.washington.dc.us>  (tiny change)
3239         * outline.el (outline-end-of-subtree): Don't leave an empty
3240         line hidden as we would a real next heading.
3242 2006-12-03  Ken Manheimer  <ken.manheimer@gmail.com>
3244         * allout.el (allout-ascend): Add an optional argument to preserve
3245         original position of point when unsuccessful.  Also, fix a
3246         docstring error.
3247         (allout-yank-processing): Fix depth shift of multiple-topic so yanks
3248         work again, using allout-ascend's new option.
3249         (allout-setup-mode-map): Extract from allout-mode to initialize
3250         allout-mode-map.  Call it on file load, so the mode docstring
3251         substitutions work even if allout mode has not yet been invoked.
3252         (allout-mode): Use new allout-setup-mode-map to track any keybinding
3253         customizations since the map was last processed.  Also, refine the
3254         docstring so it's ship-shape for release.
3255         (allout-default-layout, allout-beginning-of-line-cycles)
3256         (allout-distinctive-bullets-string, allout-use-mode-specific-leader)
3257         (allout-encrypt-unencrypted-on-saves, allout-inhibit-auto-fill)
3258         (allout-version, allout-layout, allout-infer-body-reindent)
3259         (allout-infer-header-lead-and-primary-bullet, allout-view-change-hook)
3260         (allout-init, allout-mode, allout-next-heading, allout-chart-subtree)
3261         (allout-previous-heading, allout-goto-prefix-doublechecked)
3262         (allout-current-bullet-pos, allout-next-sibling-leap)
3263         (allout-pre-command-business, allout-encrypted-type-prefix)
3264         (allout-make-topic-prefix, allout-open-topic, allout-rebullet-heading)
3265         (allout-rebullet-topic, allout-rebullet-topic-grunt)
3266         (allout-flag-region, allout-expose-topic, allout-expose-topic)
3267         (allout-old-expose-topic, allout-listify-exposed)
3268         (allout-process-exposed, allout-latex-verb-quote)
3269         (allout-latex-verbatim-quote-curr-line, allout-adjust-file-variable)
3270         (allout-toggle-current-subtree-encryption)
3271         (allout-toggle-subtree-encryption, allout-bullet-isearch):
3272         Remove extraneous open-paren and close paren string escapes.
3274 2006-12-03  Juanma Barranquero  <lekktu@gmail.com>
3276         * progmodes/ada-xref.el (is-windows, ada-find-in-src-path): Doc fixes.
3277         (ada-xref-pos-ring-max, ada-xref-project-files, ada-xref-initialize)
3278         (ada-prj-default-comp-cmd, ada-quote-cmd, ada-compile-current):
3279         Fix typos in docstrings.
3281 2006-12-03  Glenn Morris  <rgm@gnu.org>
3283         * progmodes/cc-align.el
3284         * progmodes/cc-awk.el
3285         * progmodes/cc-cmds.el
3286         * progmodes/cc-compat.el
3287         * progmodes/cc-defs.el
3288         * progmodes/cc-engine.el
3289         * progmodes/cc-langs.el
3290         * progmodes/cc-menus.el
3291         * progmodes/cc-mode.el
3292         * progmodes/cc-styles.el
3293         * progmodes/cc-vars.el
3294         * progmodes/vhdl-mode.el: Fix Copyright format.
3296 2006-12-02  Chong Yidong  <cyd@stupidchicken.com>
3298         * mouse.el (mouse-drag-track): Suppress automatic hscrolling for
3299         initial down event.
3301 2006-12-02  Kim F. Storm  <storm@cua.dk>
3303         * emulation/cua-base.el (cua-toggle-set-mark): Doc fix.
3304         (cua-repeat-replace-region): Make M-v more robust.
3305         (cua-paste-pop-rotate-temporarily): New defcustom.
3306         (cua-paste-pop): Use it.
3307         (cua-auto-mark-last-change): New defcustom.
3308         (cua-pop-to-last-change): New helper function.
3309         (cua-set-mark): Use them.
3311 2006-12-01  Nick Roberts  <nickrob@snap.net.nz>
3313         * menu-bar.el (toggle-case-fold-search): Clarify doc/help string and
3314         mini-buffer message.
3316 2006-12-01  Juanma Barranquero  <lekktu@gmail.com>
3318         * descr-text.el (describe-char-unicodedata-file): Fix typo in docstring.
3320 2006-12-01  Ben North  <ben@redfrontdoor.org>
3322         * paren.el: Fix the highlight overlay extension when the user types a
3323         sequence of char very fast just before the open parenthesis.
3325 2006-12-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3327         * ps-mule.el: Eliminate Emacs 20 compatibility.
3329         * ps-print.el: Eliminate Emacs 20 & 21 compatibility.
3330         (ps-print-version): New version 6.7.
3331         (ps-print-quote): Replace '?\ ' by '?\s'.
3333 2006-11-30  Juanma Barranquero  <lekktu@gmail.com>
3335         * hexl.el (hexl-goto-address, hexl-forward-char, hexl-forward-short)
3336         (hexl-forward-word, hexl-previous-line, hexl-beginning-of-1k-page)
3337         (hexl-end-of-1k-page): Doc fixes.
3338         (hexl-address-region, hexl-ascii-region, hexl-highlight-line-range):
3339         Fix typos in docstrings.
3341 2006-11-30  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3343         * ido.el (ido-local-file-exists-p): New.  Tell if a file exists
3344         locally, i.e. without using file name handlers.
3345         (ido-read-internal): Allow mono letter host names, avoiding the
3346         `c:' problem by testing if the file exists locally.
3347         (ido-complete, ido-make-file-list, ido-exhibit): Ditto.
3349 2006-11-30  Masatake YAMATO  <jet@gyve.org>
3351         * hexl.el (hl-line-range-function, hl-line-face): Declare variables
3352         to avoid bytecomp warnings.
3353         (hexl-mode-old-ruler-function): New variable.
3354         (hexl-follow-line): Bind `hexl-mode-old-hl-line-range-function'
3355         and `hl-line-range-function' after `require' hl-line.
3356         Then bind `hl-line-range-function' and `hl-line-face'.
3357         Don't require frame.  Don't use `with-no-warnings'.
3358         (hexl-activate-ruler): Store the original value of
3359         `ruler-mode-ruler-function' to `hexl-mode-old-ruler-function'.
3360         (hexl-mode-exit): Restore the original value of
3361         `ruler-mode-ruler-function'.
3363 2006-11-30  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
3365         * hexl.el (hexl-mode-old-hl-line-range-function): New variable.
3366         (hexl-mode-old-hl-line-face): New variable.
3367         (hexl-mode, hexl-mode-exit): Fix the highlighting of the current
3368         line when exit from the hexl-mode.
3370 2006-11-30  Juanma Barranquero  <lekktu@gmail.com>
3372         * emacs-lisp/bytecomp.el (byte-optimize, byte-compile-warnings):
3373         Doc fixes.
3375         * international/fontset.el (create-fontset-from-ascii-font)
3376         (create-fontset-from-fontset-spec, x-compose-font-name): Doc fixes.
3377         (fontset-name-p): Fix typo in docstring.
3379         * progmodes/cc-cmds.el (c-indent-exp): Fix typo in docstring.
3381 2006-11-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3383         * ps-bdf.el: Fix maintainer email.
3385         * ps-mule.el: Fix maintainer email.  Define functions for Emacs 20
3386         compatibility.
3388         * ps-print.el: Fix maintainer email.  Define functions for Emacs 20 &
3389         21 compatibility.
3390         (ps-print-quote): Replace '?\s' by '?\ ' to keep compatibility with
3391         Emacs 20 & 21.
3393 2006-11-29  J.D. Smith  <jdsmith@as.arizona.edu>
3395         * progmodes/idlwave.el (idlwave-auto-fill):
3396         Remove paragraph-start let to prevent auto-fill giving up.
3398 2006-11-28  Juanma Barranquero  <lekktu@gmail.com>
3400         * vt100-led.el (led-state): Fix typo in previous change.
3402 2006-11-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
3404         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3405         Fix interactive spec of the functions getting defined to make them
3406         work as documented.
3408 2006-11-28  Chong Yidong  <cyd@stupidchicken.com>
3410         * startup.el (fancy-splash-screens): Hide initial splash buffer.
3412 2006-11-28  Kim F. Storm  <storm@cua.dk>
3414         * icomplete.el (icomplete-tidy, icomplete-exhibit): Check that
3415         icomplete-mode is enabled.
3417 2006-11-28  Carsten Dominik  <dominik@science.uva.nl>
3419         * textmodes/org.el (require): Require gnus-sum during compilation
3420         to avoid problem with a macro call.
3422 2006-11-28  Glenn Morris  <rgm@gnu.org>
3424         * emacs-lisp/authors.el (authors-aliases): Add new alias.
3426         * progmodes/fortran.el (fortran-font-lock-keywords-4): Add `min'.
3427         (fortran-window-create-momentarily): Do not need string-to-char.
3429 2006-11-28  Richard Stallman  <rms@gnu.org>
3431         * emacs-lisp/bytecomp.el (byte-compile-get-constant):
3432         Replace incorrect use of assoc-default with a loop.
3434         * term.el (term-exec-1): Set envvar INSIDE_EMACS.
3436         * simple.el (next-error-find-buffer): Improve messages.
3438         * files.el (revert-buffer): Special error message if file
3439         is now not readable.
3441         * facemenu.el (facemenu-add-new-face): Improve doc strings of
3442         constructed commands.
3444         * comint.el (comint-exec-1): Provide Emacs version and `comint'
3445         in INSIDE_EMACS.
3447 2006-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3449         * diff-mode.el (diff-mode-map): Add a binding for unified->context.
3451         * server.el: Remove spurious * in docstrings.
3452         (server-process-filter): Exit from recursive editing before processing
3453         a new request.
3455 2006-11-27  J.D. Smith  <jdsmith@as.arizona.edu>
3457         * progmodes/hideshow.el (hs-already-hidden-p): Move to end of
3458         line so hidden blocks will be correctly identified.
3460 2006-11-27  Juanma Barranquero  <lekktu@gmail.com>
3462         * ledit.el (ledit-save-defun, ledit-mode):
3463         * resume.el (resume-emacs-args-buffer):
3464         * rot13.el (rot13-display-table, rot13-translate-table, rot13)
3465         (rot13-string, rot13-region, rot13-other-window, toggle-rot13-mode):
3466         * vmsproc.el (subprocess-input, start-subprocess, subprocess-command)
3467         (command-send-input, command-kill-line):
3468         * vt100-led.el (led-state, led-on): Fix typos in docstrings.
3470         * autoarg.el (autoarg-kp-mode): Doc fix.
3472         * emacs-lock.el (toggle-emacs-lock): Doc fix.  Simplify.
3473         (emacs-lock-check-buffer-lock): Doc fix.  Use `when'.
3474         (check-emacs-lock): Doc fix.  Simplify.
3476         * iimage.el (iimage-mode-image-regex-alist): Doc fix.
3477         (iimage-mode-buffer): Fix typos in docstring.
3479         * misc.el (zap-up-to-char): Doc fix.
3481         * time-stamp.el: Fix comment and obsolescence string for old
3482         functions.  Use `dolist' instead of `while'.
3484         * userlock.el (ask-user-about-lock-help): Fix typos in output message.
3486         * disp-table.el (standard-display-8bit, standard-display-default):
3487         * ebuff-menu.el (electric-buffer-list):
3488         * ehelp.el (electric-help-command-loop):
3489         * font-core.el (font-lock-mode):
3490         * help-macro.el (make-help-screen):
3491         * help.el (describe-minor-mode-completion-table-for-indicator)
3492         (lookup-minor-mode-from-indicator):
3493         * indent.el (tab-to-tab-stop, move-to-tab-stop):
3494         * info-look.el (info-lookup-guess-custom-symbol):
3495         * locate.el (locate-main-listing-line-p, locate-mode, locate-do-setup):
3496         * longlines.el (longlines-wrap-line):
3497         * macros.el (insert-kbd-macro):
3498         * menu-bar.el (menu-bar-update-buffers):
3499         * misc.el (copy-from-above-command):
3500         * mouse.el (mouse-popup-menubar, mouse-buffer-menu-alist):
3501         * newcomment.el (comment-indent):
3502         * novice.el (disabled-command-function):
3503         * sort.el (sort-fields-syntax-table):
3504         * subr.el (momentary-string-display):
3505         * tar-mode.el (tar-header-block-summarize)
3506         (tar-clear-modification-flags):
3507         * terminal.el (terminal-cease-edit, te-more-break-unwind, te-newline)
3508         (te-clear-rest-of-line, te-clear-rest-of-screen, te-clear-screen)
3509         (te-insert-lines, te-delete-lines, te-delete, te-insert-spaces)
3510         (te-delete-char, te-down-vertically-or-scroll):
3511         * time-stamp.el (time-stamp-string-preprocess):
3512         * tmm.el (tmm-add-one-shortcut): "?\ " -> "?\s".
3514 2006-11-26  Nick Roberts  <nickrob@snap.net.nz>
3516         * speedbar.el (speedbar-timer-fn): Revert to old behaviour when not
3517         in GUD mode.
3519         * progmodes/gud.el (gud-install-speedbar-variables): Remove bindings:
3520         speedbar-expand-line-descendants, speedbar-contract-line-descendants.
3522 2006-11-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3524         * progmodes/cc-vars.el (c-backslash-column): Add . at end of sentence.
3526 2006-11-26  Stephen Leake  <stephen_leake@stephe-leake.org>
3528         * progmodes/ada-mode.el (ada-which-compiler): Fix typo in docstring.
3529         (ada-compile-goto-error): Adapt to new argument profile of
3530         compilation-goto-locus in Emacs 22.  Don't check if the various
3531         compile functions are defined; we already do "(require 'compile)".
3533 2006-11-26  Kim F. Storm  <storm@cua.dk>
3535         * kmacro.el: Fix commentary.
3537 2006-11-26  Nick Roberts  <nickrob@snap.net.nz>
3539         * progmodes/gud.el (gdb): Explain how to run in text command mode
3540         more clearly.  Say in error message that multiple debugging
3541         requires restarting GDB.
3543 2006-11-25  Juanma Barranquero  <lekktu@gmail.com>
3545         * international/fontset.el (create-fontset-from-fontset-spec): Doc fix.
3547 2006-11-25  Pavel Kobiakov  <pk_at_work@yahoo.com>
3549         * progmodes/flymake.el (flymake-posn-at-point-as-event): New function.
3550         (flymake-popup-menu): Use it instead of posn-at-point.
3552 2006-11-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3554         * progmodes/cc-vars.el (c-backslash-column):
3555         Mention c-backslash-max-column in documentation for c-backslash-column.
3557 2006-11-24  Lars Hansen  <larsh@soem.dk>
3559         * net/tramp.el (tramp-default-method): Under Windows, change from
3560         plink to pscp.
3561         (tramp-copy-failed-regexp, tramp-action-copy-failed): Add.
3562         (tramp-actions-copy-out-of-band):
3563         Add pair (tramp-copy-failed-regexp tramp-action-copy-failed).
3564         (tramp-action-out-of-band): Move "Permission denied" handling to
3565         tramp-action-copy-failed.
3566         (tramp-do-copy-or-rename-file-out-of-band): unwind-protect killing of
3567         process buffer.
3569 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3571         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
3572         strings to a single string.  Quote `errors-file-name'.
3573         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
3574         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
3575         Adjust calls.  Use `shell-quote-argument'.
3577         * international/mule.el (load-with-code-conversion)
3578         (with-category-table): Use with-current-buffer.
3579         (after-insert-file-set-coding): Use restore-buffer-modified-p.
3581 2006-11-24  Eli Zaretskii  <eliz@gnu.org>
3583         * mail/smtpmail.el (smtpmail-send-it):
3584         Copy buffer-file-coding-system from the mail buffer.  Possibly add a
3585         MIME header for the message encoding.
3586         Bind coding-system-for-write around the call to mail-do-fcc.
3587         Use smtpmail-code-conv-from to encode queued mail messages.
3589 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
3591         * tabify.el (tabify-regexp): Doc fix.
3593         * net/rcirc.el (rcirc-buffer-maximum-lines):
3594         * progmodes/gud.el (jdb): Fix space/tab mixup in docstrings.
3596         * play/gomoku.el (gomoku-terminate-game, gomoku-human-takes-back)
3597         (gomoku-prompt-for-move, gomoku-human-plays, gomoku-offer-a-draw):
3598         Fix typos in output messages.
3599         (gomoku-vector-length, gomoku-init-board): Fix typos in docstrings.
3601 2006-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3603         * hexl.el (hexl-mode): Don't try to guess the max-address: get it from
3604         the horse's mouth.
3605         (hexlify-buffer): Don't re-encode an arg that's already encoded.
3607 2006-11-23  Michael Kifer  <kifer@cs.stonybrook.edu>
3609         * ediff-diff.el (ediff-exec-process, ediff-same-file-contents):
3610         Remove condition-case.
3612 2006-11-23  Glenn Morris  <rgm@gnu.org>
3614         * progmodes/f90.el (f90-comment-indent): Do not move point in
3615         default case.
3617 2006-11-21  Romain Francoise  <romain@orebokech.com>
3619         * emacs-lisp/find-func.el (find-library-name): Don't strip ".el"
3620         from library name (reverts change of 2005-10-25).
3622 2006-11-21  Lennart Borgman  <lennart.borgman.073@student.lu.se>
3624         * tutorial.el (tutorial--default-keys): Add newline and
3625         delete-backward-char bindings.
3626         (tutorial--detailed-help): Save excursion when finding keys.
3627         Correct warning string for M-x FOO case.
3628         (tutorial--display-changes): Print special keys in tutorial style.
3629         Tweak search regexp for changed keys.
3631 2006-11-21  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
3633         * thingatpt.el (thing-at-point-url-at-point): Don't add a
3634         redundant scheme.
3636 2006-11-21  Diane Murray  <disumu@x3y2z1.net>  (tiny change)
3638         * thingatpt.el (thing-at-point-uri-schemes): Add schemes that
3639         are new to the list at IANA.  Also added irc, mms, mmsh.
3641 2006-11-20  J.D. Smith  <jdsmith@as.arizona.edu>
3643         * progmodes/idlw-help.el (idlwave-html-help-location):
3644         Fail gracefully for missing help packages.
3645         (idlwave-help-assistant-open-link): Open full links.
3646         (idlwave-help-assistant-help-with-topic): Direct help link.
3648         * progmodes/idlwave.el (idlwave-mode):
3649         Set add-log-current-defun-function.
3650         (idlwave-current-routine-fullname): Add, to support add-log.
3651         (idlwave-convert-xml-system-routine-info): Simplify XML parsing
3652         to reflect improvements to xml-parse-file.
3653         (idlwave-mode-menu-def): New binding for help-with-topic.
3655         * progmodes/idlw-shell.el (idlwave-shell-filter-directory):
3656         Handle extra newlines and spaces.
3657         (idlwave-shell-mode-map): Add help-with-topic.
3659 2006-11-20  Chong Yidong  <cyd@stupidchicken.com>
3661         * tutorial.el (tutorial-warning-face): New face.
3662         (tutorial--detailed-help, tutorial--display-changes): Use it.
3663         (tutorial--find-changed-keys): Check ESC-prefix binding specially.
3664         Improve search pattern for occurrences of changed keys.
3666 2006-11-20  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3668         * term/x-win.el (x-last-cut-buffer-coding): New variable.
3669         (x-select-text): Set it.
3670         (x-cut-buffer-or-selection-value): Check also x-last-cut-buffer-coding
3671         when checking for newness.
3673 2006-11-19  Juanma Barranquero  <lekktu@gmail.com>
3675         * subr.el (posn-image):
3676         * progmodes/ebnf2ps.el (ebnf-stop-on-error): Fix typos in docstrings.
3678         * emacs-lisp/regexp-opt.el (regexp-opt): Doc fix.
3680 2006-11-19  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3682         * progmodes/glasses.el (glasses-separate-parentheses-exceptions): New.
3683         Exceptions to the rule "add a space between an identifier and an
3684         opening parenthesis".  Defaulted to the `#define' problem of cpp.
3685         (glasses-parenthesis-exception-p): New.  Check if the region is an
3686         exception regarding to that.
3687         (glasses-make-readable): Use it.
3688         (glasses-convert-to-unreadable): Ditto.  Modify the file also if
3689         `glasses-convert-on-write-p' and `glasses-separate-parentheses-p' are t.
3691 2006-11-19  Chong Yidong  <cyd@stupidchicken.com>
3693         * emacs-lisp/bytecomp.el (byte-compile-if): Revert last change.
3695 2006-11-19  Stephen Leake  <stephen_leake@stephe-leake.org>
3697         * progmodes/ada-mode.el (ada-make-body): Fix typo.
3699         * progmodes/ada-xref.el (ada-make-body-gnatstub): Fix typo.
3700         (ada-xref-initialize): Fix typo.  Use add-hook and remove-hook.
3702 2006-11-18  Chong Yidong  <cyd@stupidchicken.com>
3704         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Check `and'
3705         conditions for function or variable bindings.
3707         * comint.el (comint-exec-1): Set EMACS and INSIDE_EMACS to t.
3709         * progmodes/compile.el (compilation-start): Ditto.
3711 2006-11-18  Michael Albinus  <michael.albinus@gmx.de>
3713         * net/tramp.el (top): cl and custom are always required.
3715 2006-11-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3717         * term/x-win.el (x-cut-buffer-or-selection-value): Decode text from
3718         cut-buffers with next-selection-coding-system if not nil.
3720 2006-11-17  Carsten Dominik  <dominik@science.uva.nl>
3722         * textmodes/org.el (org-fix-decoded-time): New function.
3723         (org-display-custom-time): Use `org-fix-decoded-time'.
3725 2006-11-17  Chong Yidong  <cyd@stupidchicken.com>
3727         * menu-bar.el (menu-bar-games-menu): Remove yow.
3729 2006-11-17  Carsten Dominik  <dominik@science.uva.nl>
3731         * textmodes/org.el (org-scan-tags): Re-align code fixed.
3732         (org-detach-overlay): Rename from `org-detatch-overlay'.
3733         (org-table-convert-region): Insert space after column separator.
3734         (org-agenda-kill): New command.
3735         (org-metaleft): Call `org-outdent-item' on bullets.
3736         (org-metaright): Call `org-indent-item' on bullets.
3737         (org-timestamp-change): Set `org-last-changed-timestamp'.
3738         (org-current-line): Make sure (bolp) returns correct result.
3739         (org-agenda-change-all-lines): Make sure TODO are highlighted.
3741 2006-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3743         * pcvs.el (cvs-retrieve-revision): Set buffer-file-coding-system.
3745 2006-11-16  Chong Yidong  <cyd@stupidchicken.com>
3747         * mouse.el (global-map): Change 2006-08-16 fix to call
3748         mouse-yank-at-click explicitly, since mouse events are not carried
3749         over into keyboard macros.
3751 2006-11-16  Kim F. Storm  <storm@cua.dk>
3753         * ido.el (ido-file-internal): Use current buffer's file name as default
3754         choice for ido-find-alternate-file.  Suggested by Matt Hodges.
3756 2006-11-15  Ken Manheimer  <ken.manheimer@gmail.com>
3758         * allout.el (allout-doublecheck-at-and-shallower): Clarify docstring.
3759         (allout-inhibit-aberrance-doublecheck): Rename from
3760         allout-during-yank-processing.  All callers changed.
3761         (allout-ascend): Provide for unusual case where some topic after
3762         the first in file is at lower depth than the first.
3763         (allout-shift-in): Ensure the offspring of the new containing
3764         topic are exposed.
3765         (allout-encrypt-string): Preserve the coding-system of the text,
3766         according to that of the containing buffer.
3767         (allout-toggle-subtree-encryption): When the text being encrypted
3768         requires a different coding system, offer to preserve the coding
3769         system using a file local var.
3771 2006-11-15  Simon Marshall  <simon@gnu.org>
3773         * progmodes/cc-fonts.el (c-font-lock-declarators): Use c-at-toplevel-p
3774         to recognise "T t()" as a function declaration, rather than a
3775         variable instantiation, iff at the top-level or inside a class
3776         declaration.  Suggested by Feng Li <fengli@gmail.com>.
3778 2006-11-14  Stephen Leake  <stephen_leake@stephe-leake.org>
3780         * progmodes/ada-xref.el (ada-parse-prj-file):
3781         Don't delete project buffer; user may want to edit it.
3782         (ada-xref-set-project-field, ada-xref-current-project-file)
3783         (ada-xref-current-project, ada-show-current-project)
3784         (ada-set-main-compile-application): New functions.
3785         (ada-xref-get-project-field, ada-require-project-file):
3786         Normalize use of ada-prj-default-project-file.
3787         (ada-gdb-application, ada-get-ada-file-name, ada-make-body-gnatstub):
3788         Normalize use of ada-require-project-file.
3789         (ada-prj-find-prj-file): Improve doc string, comments.
3791         * progmodes/ada-mode.el (ada-mode-version): Bump version.
3792         (ada-create-keymap): Add \C-c\C-m 'ada-set-main-compile-application.
3793         (ada-create-menu): Add ada-set-main-compile-application,
3794         ada-show-current-main, ada-show-current-project.
3796 2006-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3798         * progmodes/python.el (inferior-python-mode-syntax-table): New var.
3799         (inferior-python-mode): Use it.
3801 2006-11-14  Andreas Schwab  <schwab@suse.de>
3803         * term/xterm.el (terminal-init-xterm): Add more key bindings.
3805 2006-11-13  Kim F. Storm  <storm@cua.dk>
3807         * ido.el (ido-copy-current-word): C-o copies region if active.
3809 2006-11-13  Carsten Dominik  <dominik@science.uva.nl>
3811         * textmodes/org.el (org-emph-face): Fix typo in variable name.
3813 2006-11-13  Juanma Barranquero  <lekktu@gmail.com>
3815         * ediff.el (ediff-revision):
3816         * files.el (set-visited-file-name):
3817         * mail/rmailout.el (rmail-output-body-to-file):
3818         Use `format', not `message', in `y-or-n-p' call.
3820 2006-11-13  Carsten Dominik  <dominik@science.uva.nl>
3822         * textmodes/org.el (org-metaleft): Call `org-outdent-item' on bullets.
3823         (org-metaright): Call `org-indent-item' on bullets.
3824         (org-timestamp-change): Set `org-last-changed-timestamp'.
3825         (org-current-line): Make sure (bolp) returns correct result.
3826         (org-agenda-change-all-lines): Make sure highlighting TODO always works.
3828 2006-11-12  Richard Stallman  <rms@gnu.org>
3830         * language/european.el (turkish-case-conversion-enable)
3831         (turkish-case-conversion-disable): New functions.
3832         ("Turkish" lang env): Use them.
3834         * international/characters.el (case table):
3835         Do nothing special for i and I.
3837         * subr.el (remove-overlays): Fix last change.
3839         * cus-edit.el (custom-save-all): Use find-file-visit-truename
3840         for visiting the custom file.
3842 2006-11-12  Markus Triska  <triska@gmx.at>
3844         * play/handwrite.el (handwrite): Also process lines not ending
3845         with newline.  Replace some position-fiddling with different
3846         logic.  Improve performance.
3848 2006-11-12  Stephen Leake  <stephen_leake@stephe-leake.org>
3850         * progmodes/ada-xref.el (ada-prj-default-check-cmd): New variable,
3851         replacing deleted variable `ada-check-switch'.
3852         (ada-project-file-extension): Rename to `ada-prj-file-extension'.
3853         (ada-xref-project-files): Improve doc string.
3854         (ada-find-executable): New function.
3855         (ada-initialize-runtime-library): Use `ada-find-executable'.
3856         (ada-xref-set-default-prj-values): In compile commands, don't need
3857         `ada-cd-command'; `compile' does that more portably.
3858         Use ada-prj-default-check-cmd.
3859         (ada-parse-prj-file): Don't set 'debug_post_cmd, 'debug_pre_cmd
3860         properties if not specified in project file.
3861         (ada-goto-declaration): Display useful message for new error
3862         'error-file-not-found.
3863         (ada-get-ada-file-name, ada-find-in-src-path): Signal new error
3864         'error-file-not-found.
3865         (ada-get-all-references): Match latest ali syntax.  Signal new
3866         error 'error-file-not-found.
3867         (ada-find-in-ali): Match latest ali syntax.
3868         (ada-make-filename-from-adaname): Handle different semantics of
3869         gnatkr in GNAT 3.15p vs later.
3871         * progmodes/ada-stmt.el (ada-func-or-proc-name): Match changes to
3872         ada-procedure-start-regexp.
3873         (ada-or-accept, ada-or-delay, ada-or-terminate): Improve doc string.
3875         * progmodes/ada-mode.el: Replace conditional (require 'ispell)
3876         with defvar.
3877         (ada-language-version): Rename ada05 -> ada2005.
3878         (ada-align-region-separate): Add `eval-when-compile'.
3879         (ada-name-regexp): Remove unneeded escapes in regexp character
3880         alternative.
3881         (ada-compile-goto-error-file-linenr-re): New constant.
3882         (ada-matching-start-re): Handle additional cases `declare',
3883         `procedure', `function'.
3884         (ada-compile-goto-error): Handle "... at line nn".
3885         (ada-mode): Clearer syntax, comments for ff-special-constructs.
3886         Delete support for old versions of `align'.
3887         (ada-search-prev-end-stmt): Handle additional keyword `private'.
3888         (ada-check-defun-name): Simplify handling of `declare'.
3889         (ada-goto-matching-start): Handle nested `begin ... end'.
3890         Handle `declare', `protected', `procedure', `function'.
3891         (ada-create-menu): Presence of arm95 is not conditional on using
3892         GNAT compiler.
3894 2006-11-12  Juanma Barranquero  <lekktu@gmail.com>
3896         * emacs-lisp/re-builder.el (reb-mode): Set `blink-matching-paren' to
3897         nil in the *RE-Builder* buffer (it causes spurious error messages).
3899         * server.el (server-visit-files): If `minibuffer-auto-raise' has
3900         been set to t, respect it.
3902 2006-11-11  Stephen Leake  <stephen_leake@stephe-leake.org>
3904         * progmodes/ada-mode.el: Delete `eval-and-compile' around `require'.
3905         Delete commented out code for old Emacs versions.  Autoloading of
3906         "ada-xref", "ada-prj" is useful even if compiler is not GNAT.
3907         (ada-mode-version): Bump version number.
3908         (ada-95-string-keywords, ada-2005-string-keywords)
3909         (ada-2005-keywords, ada-name-regexp): New constant.
3910         (ada-language-version, ada-procedure-start-regexp, ada-mode)
3911         (ada-font-lock-keywords): Add support for Ada 2005 keywords.
3912         (ada-package-start-regexp): Support private packages, include package
3913         name (for ada-set-point-accordingly).
3914         (ada-next-procedure, ada-previous-procedure)
3915         (ada-which-function-are-we-in): Match changes to
3916         ada-procedure-start-regexp.
3917         (ada-make-body): Make non-interactive; not a user function.
3918         (ada-make-subprogram-body): Improve doc string.
3920 2006-11-11  Romain Francoise  <romain@orebokech.com>
3922         * progmodes/cperl-mode.el (cperl-mode): Before adding to it, make
3923         `compilation-error-regexp-alist' buffer-local, since we changed
3924         `compilation-error-regexp-alist-alist' locally.
3926 2006-11-11  Juanma Barranquero  <lekktu@gmail.com>
3928         * server.el (server-visit-files): Bind `minibuffer-auto-raise'
3929         to the value of `server-raise-frame'.
3931 2006-11-11  Glenn Morris  <rgm@gnu.org>
3933         * ido.el (ido-enable-prefix)
3934         * ses.el (ses-call-printer-return)
3935         * net/tramp.el (tramp-unified-filenames)
3936         * progmodes/cc-align.el (c-lineup-string-cont)
3937         * progmodes/compile.el (compilation-directory-matcher)
3938         * progmodes/ebnf2ps.el (ebnf-stop-on-error)
3939         * progmodes/vhdl-mode.el (vhdl-reset-active-high)
3940         (vhdl-clock-rising-edge)
3941         * textmodes/org.el (org-export-with-timestamps)
3942         (org-export-remove-timestamps-from-toc)
3943         (org-export-with-tags): Improve previous doc fixes.
3945 2006-11-11  Richard Stallman  <rms@gnu.org>
3947         * textmodes/flyspell.el (flyspell-mode-map):
3948         Bind C-c $ instead of M-RET.
3950 2006-11-10  Simon Marshall  <simon@gnu.org>
3952         * progmodes/cc-fonts.el (c-font-lock-declarations): Don't overwrite
3953         fontification for "case" and "default" keywords.
3955 2006-11-10  Andreas Schwab  <schwab@suse.de>
3957         * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
3958         Avoid starting sentence with "nil".
3960 2006-11-10  Juanma Barranquero  <lekktu@gmail.com>
3962         * server.el (server-raise-frame): New option.
3963         (server-switch-buffer): Use it.
3965 2006-11-10  Nick Roberts  <nickrob@snap.net.nz>
3967         * progmodes/gdb-ui.el (gdb-many-windows): Start doc string
3968         with a capital.
3970 2006-11-10  Carsten Dominik  <carsten.dominik@gmail.com>
3972         * textmodes/org.el (org-show-hierarchy-above)
3973         (org-show-following-heading): Fix typo in default value.
3974         (org-scan-tags): Make the search case-sensitive.
3975         (org-tags-sparse-tree): Don't overrule
3976         `org-show-following-heading' and `org-show-hierarchy-above'.
3977         (org-reveal): New command.
3978         (org-show-context): Rename from `org-show-hierarchy-above'.
3979         (org-fast-tag-selection-single-key): New option.
3980         (org-fast-tag-show-exit, org-set-current-tags-overlay): New functions.
3981         (org-tags-overlay): New variable.
3982         (org-agenda-todo-ignore-deadlines): New option.
3983         ("session"): Add circular data structure `org-mark-ring' to
3984         exceptions list in session.el.
3985         (org-agenda-window-setup, org-agenda-restore-windows-after-quit):
3986         New options.
3987         (org-agenda-quit): Use `org-agenda-restore-windows-after-quit'.
3988         (org-prepare-agenda, org-agenda-quit): Use `org-agenda-window-setup'.
3989         (org-pre-agenda-window-conf, org-blank-before-new-entry): New vars.
3990         (org-finalize-agenda): Activate bracket links in agenda.
3991         (org-at-timestamp-p, org-at-date-range-p): Additional argument
3992         INACTIVE-OK.
3993         (org-show-hierarchy-above, org-show-following-heading):
3994         List values allowed for fine-tuned configuration.
3995         (org-show-hierarchy-above): New argument CONTEXT, use the
3996         fine-tuned settings in `org-show-hierarchy-above' and
3997         `org-show-following-heading'.
3998         (org-display-custom-time): New function.
3999         (org-toggle-time-stamp-overlays, org-insert-time-stamp): New function.
4000         (org-display-custom-times, org-time-stamp-custom-formats):
4001         (org-maybe-intangible): New macro.
4002         (org-activate-bracket-links, org-hide-wide-columns):
4003         Use `org-maybe-intangible'.
4004         (org-open-file): Use `shell-quote-argument'.
4005         (org-display-internal-link-with-indirect-buffer): New option.
4006         (org-file-remote-p): Get regexp from list.
4007         (org-link-expand-abbrev): New function.
4008         (org-link-abbrev-alist): New option.
4009         (org-open-at-point, org-cleaned-string-for-export):
4010         Call `org-link-expand-abbrev'.
4011         (org-timeline, org-agenda-list, org-todo-list)
4012         (org-tags-view): Remove the KEEP-MODES argument.
4013         (org-finalize-agenda-hook): New hook.
4014         (org-get-alist-option): New function.
4015         (org-follow-timestamp-link): New function.
4016         (org-open-at-point): Call `org-follow-timestamp-link'.
4017         (org-log-note-marker, org-log-note-purpose)
4018         (org-log-note-window-configuration): New variables.
4019         (org-add-log-maybe, org-add-log-note, org-store-log-note): New funs.
4020         (org-log-note-headings): New option.
4021         (org-dblock-write:clocktable): Bug fix, removed infinite loop.
4022         (org-store-link): Support for dired-mode.
4023         (org-open-file): Substitute environment variables into filename.
4024         (org-last): New defsubst.
4025         (org-agenda-re-align-tags): New function.
4026         (org-agenda-align-tags-to-column): New option.
4027         (org-agenda-timeline): Group removed.
4028         (org-prepare-agenda, org-prepare-agenda-buffers)
4029         (org-run-agenda-series, org-timeline, org-agenda-list)
4030         (org-todo-list, org-tags-view): Call `org-agenda-prepare' and set
4031         the text property inticating the agenda type.
4032         (org-agenda-post-command-hook): Get agenda type from text property
4033         at point.
4034         (org-agenda): Handle command sets.  Set `org-agenda-last-arguments'
4035         and obey `org-agenda-overriding-arguments'.
4036         (org-agenda-overriding-arguments, org-agenda-last-arguments): New vars.
4037         (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
4038         (org-agenda-week-view, org-agenda-day-view):
4039         Use `org-agenda-overriding-arguments' to make updating work with
4040         multi-block agendas.
4041         (org-agenda-prefix-format): Allow different formats for the
4042         different agenda entry types.
4043         (org-timeline-prefix-format): Option removed, use
4044         `org-agenda-prefix-format' instead.
4045         (org-prepare-agenda): New function.
4046         (org-select-timeline-window): Option removed, use
4047         `org-select-agenda-window' instead.
4048         (org-respect-restriction): Variable removed.
4049         (org-cmp-tag): New function.
4050         (org-agenda-sorting-strategy, org-entries-lessp):
4051         Implement sorting by last tag.
4052         (org-complete): Better completion in in-buffer option lines.
4053         (org-in-item-p): New function.
4054         (org-org-menu): Add entries for checkboxes.
4055         (org-cycle): Extra brouping in outline-regexp, because it is used
4056         in a search with "^" prepended.
4057         (org-provide-checkbox-statistics): New option.
4058         (org-set-font-lock-defaults): Highlight checkbox statistics.
4059         (org-update-checkbox-count-maybe)
4060         (org-get-checkbox-statistics-face): New functions.
4061         (org-update-checkbox-count): New command.
4062         (org-insert-item, org-toggle-checkbox):
4063         Call `org-update-checkbox-count-maybe'.
4064         (org-export-as-html): XEmacs compatibility for coding system.
4065         (org-force-cycle-archived): New command.
4066         (org-cycle-hide-archived-subtrees): Display message when ARCHIVE
4067         overrules cycling.
4068         (org-fix-position-after-promote): If the line contains only a todo
4069         keyword, add a final space.
4070         (org-promote-subtree, org-demote-subtree):
4071         Call `org-fix-position-after-promote'.
4073 2006-11-10  Glenn Morris  <rgm@gnu.org>
4075         * calendar/cal-dst.el: Do not assume DST starts/ends on the same
4076         date in every year.
4077         (calendar-dst-check-each-year-flag): New customizable variable.
4078         (calendar-dst-find-data): New function, extracted from
4079         calendar-current-time-zone.
4080         (calendar-current-time-zone): Use calendar-dst-find-data.
4081         (calendar-dst-transition-cache): New variable.
4082         (calendar-dst-find-startend, calendar-dst-starts)
4083         (calendar-dst-ends): New functions.
4084         (calendar-daylight-savings-starts)
4085         (calendar-daylight-savings-ends): Change value to use
4086         calendar-dst-starts, calendar-dst-ends; respectively.
4088         * progmodes/f90.el (f90-indent-region): Bind case-fold-search to t.
4090         * ido.el (ido-enable-prefix)
4091         * ses.el (ses-call-printer-return)
4092         * net/tramp.el (tramp-unified-filenames)
4093         * progmodes/cc-align.el (c-lineup-string-cont)
4094         * progmodes/compile.el (compilation-directory-matcher)
4095         * progmodes/ebnf2ps.el (ebnf-stop-on-error)
4096         * progmodes/gdb-ui.el (gdb-many-windows)
4097         * progmodes/vhdl-mode.el (vhdl-reset-active-high)
4098         (vhdl-clock-rising-edge)
4099         * textmodes/org.el (org-export-with-timestamps)
4100         (org-export-remove-timestamps-from-toc, org-export-with-tags)
4101         (org-read-date): Doc fix (Nil -> nil).
4103 2006-11-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4105         * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
4106         Encode/decode text to/from cut buffers to/from iso-latin-1 only.
4108 2006-11-10  Juanma Barranquero  <lekktu@gmail.com>
4110         * bs.el (bs--window-for-buffer): Remove.
4111         (bs--show-with-configuration): Use `get-window-with-predicate'
4112         instead of `bs--window-for-buffer'.
4114 2006-11-10  Kenichi Handa  <handa@m17n.org>
4116         * files.el (revert-buffer): Fix previous change.
4118 2006-11-09  Juanma Barranquero  <lekktu@gmail.com>
4120         * bs.el (bs--redisplay): Fix typo in docstring.
4121         (bs--window-config-coming-from): Make frame-local.
4122         (bs--restore-window-config): New function.
4123         (bs-kill, bs-select, bs-select-other-window)
4124         (bs-select-other-frame): Use it.
4125         (bs--window-for-buffer): Return as soon as a matching buffer is found.
4126         (bs--show-with-configuration): Save the window configuration as a
4127         frame local var, and only if *buffer-selection* is not already
4128         visible on this frame.
4130 2006-11-08  Chong Yidong  <cyd@stupidchicken.com>
4132         * vc-svn.el (vc-svn-admin-directory): New var.
4133         (vc-svn-registered, vc-svn-responsible-p)
4134         (vc-svn-repository-hostname): Use it.
4135         Suggested by arit93@yahoo.com.
4137 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
4139         * ldefs-boot.el: Regenerate.
4141 2006-11-08  Alan Mackenzie  <acm@muc.de>
4143         * emacs-lisp/lisp.el (beginning-of-defun-raw): Code up the
4144         case (eq open-paren-in-column-0-is-defun-start nil) by searching
4145         for least nested open-paren.
4147 2006-11-08  Romain Francoise  <romain@orebokech.com>
4149         * subr.el (remove-overlays): Fix typo in last change.
4151 2006-11-08  Richard Stallman  <rms@gnu.org>
4153         * subr.el (remove-overlays): Call overlay-recenter.
4155 2006-11-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4157         * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
4158         (pr-ps-name-custom-set, pr-txt-name-custom-set): Return back the old
4159         behaviour.
4160         (pr-menu-bind): Act on global-map instead of menu-bar-file-menu
4161         directly.
4163 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
4165         * ido.el (ido-ignore-extensions, ido-show-dot-for-dired)
4166         (ido-max-dir-file-cache, ido-decorations)
4167         (ido-rewrite-file-prompt-functions, ido-use-mycompletion-depth)
4168         (ido-magic-backward-char, ido-enter-dired)
4169         (ido-enter-insert-buffer, ido-enter-insert-file, ido-dired)
4170         (ido-list-directory, ido-first-match, ido-only-match)
4171         (ido-subdir, ido-indicator): Fix typos in docstrings.
4172         (ido-buffer-internal, ido-completion-help): Fix typos in messages.
4173         (ido-read-internal): Fix typo in error message.
4175 2006-11-08  Kenichi Handa  <handa@m17n.org>
4177         * international/mule-cmds.el (set-default-coding-systems):
4178         Always set default-file-name-coding-system to utf-8 for Mac Darwin.
4180 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
4182         * makefile.w32-in (setwins): Remove.
4183         (WINS_ALMOST): New macro.
4184         (WINS): Use it.
4185         (autoloads): Don't extract autoloads from files in obsolete/.
4187 2006-11-07  Chong Yidong  <cyd@stupidchicken.com>
4189         * whitespace.el (whitespace-buffer): Call remove-overlays after
4190         overlay-recenter for performance.  Suggested by Martin Rudalics.
4192 2006-11-07  Michael Albinus  <michael.albinus@gmx.de>
4194         * net/tramp.el (tramp-default-method): scp is the default method.
4196 2006-11-07  Juanma Barranquero  <lekktu@gmail.com>
4198         * server.el (server-start): Save also the Emacs pid in the server file.
4200 2006-11-07  Carsten Dominik  <dominik@science.uva.nl>
4202         * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Preserve
4203         point when displaying a bibtex cross reference in the echo area.
4205 2006-11-06  Juanma Barranquero  <lekktu@gmail.com>
4207         * international/mule.el (make-char): Fix typo in docstring.
4208         (load-with-code-conversion, charsetp): Doc fixes.
4210         * international/ja-dic-cnv.el (skkdic-convert):
4211         * cus-edit.el (hook): Fix typo in docstring.
4213 2006-11-06  Chong Yidong  <cyd@stupidchicken.com>
4215         * cus-edit.el (custom-mode-map): Move defvar above code using it.
4216         (custom-mode-link-map): New variable.
4217         (custom-group-link, custom-manual): Use follow-link.
4219 2006-11-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
4221         * textmodes/bibtex.el: Fix typo in name of author of bibtex.el,
4222         "Mark Shapiro" -> "Marc Shapiro".  Update his email address.
4224 2006-11-06  Richard Stallman  <rms@gnu.org>
4226         * textmodes/flyspell.el (flyspell-correct-word-before-point):
4227         New function broken out of flyspell-correct-word.
4228         (flyspell-mode-map): Bind it to M-RET.
4229         (flyspell-correct-word): Call it.
4231         * textmodes/fill.el (fill-minibuffer-function): New function.
4232         (fill-paragraph): Bind fill-paragraph-function to
4233         fill-minibuffer-function.
4235         * ruler-mode.el (ruler-mode-map): Add bindings for up-events
4236         so that they aren't undefined.
4238         * dired.el (dired-readin): Locally bind file-name-coding-system.
4240         * bindings.el: Shorten and clarify usual mode line mouse help string.
4242         * Makefile.in (autoloads): Don't include `obsolete'.
4244 2006-11-06  Chong Yidong  <cyd@stupidchicken.com>
4246         * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
4247         (pr-ps-name-custom-set, pr-txt-name-custom-set): Don't update the
4248         Printing menu if it's not initialized.
4249         (pr-menu-bind): Act on menu-bar-file-menu directly.
4251 2006-11-06  Juanma Barranquero  <lekktu@gmail.com>
4253         * help.el (view-emacs-news): Fix typo in error message.
4255         * menu-bar.el (menu-bar-update-buffers): Fix typo in menu entry.
4257         * shadowfile.el (shadow-define-regexp-group)
4258         (shadow-literal-groups, shadow-insert-var): Doc fixes.
4259         (shadow-read-files): Fix typo in message.
4260         (shadow-inhibit-overload, shadow-find, shadow-suffix)
4261         (shadow-site-match, shadow-write-todo-file, shadow-insert-var)
4262         (shadow-suffix, shadow-site-match, shadow-expand-file-name)
4263         (shadow-file-match): Fix typos in docstrings.
4265         * terminal.el (terminal-emulator): Fix typo in message.
4267         * emacs-lisp/authors.el (authors-fixed-entries): Fix typo.
4269         * emacs-lisp/lselect.el (x-kill-primary-selection)
4270         (x-delete-primary-selection, x-copy-primary-selection):
4271         Fix typos in error messages.
4273         * emulation/edt-mapper.el: Fix typo in interactive message.
4275         * mail/emacsbug.el (report-emacs-bug): Fix typos in output message.
4277         * textmodes/ispell.el (ispell, ispell-local-dictionary-alist)
4278         (ispell-help): Fix typos in docstrings.
4279         (ispell-help): Fix typo in output message.
4281         * allout.el (allout-adjust-file-variable)
4282         (allout-passphrase-verifier-string)
4283         (allout-passphrase-hint-string)
4284         (allout-toggle-current-subtree-encryption):
4285         * apropos.el (apropos-synonyms):
4286         * cus-edit.el (hook):
4287         * emacs-lock.el (emacs-lock-from-exiting):
4288         * follow.el (follow-avoid-tail-recenter-p):
4289         * hexl.el (hexl-mode):
4290         * mouse-copy.el (mouse-copy-work-around-drag-bug):
4291         * mouse.el (mouse-set-font):
4292         * resume.el (resume-emacs-args-file):
4293         * rfn-eshadow.el (file-name-shadow-tty-properties):
4294         * t-mouse.el (t-mouse-process, t-mouse-mode):
4295         * emacs-lisp/cust-print.el (custom-print-install)
4296         (custom-print-uninstall, custom-format):
4297         * emacs-lisp/shadow.el (list-load-path-shadows):
4298         * emulation/tpu-edt.el (tpu-help-text)
4299         (tpu-save-all-buffers-kill-emacs, tpu-emacs-replace)
4300         (tpu-reset-control-keys):
4301         * emulation/vip.el (vip-emacs-local-map)
4302         (vip-change-mode-to-emacs):
4303         * emulation/viper.el (viper-mode, viper-set-hooks)
4304         (viper-major-mode-modifier-list):
4305         * emulation/viper-init.el (viper-emacs-state-cursor-color):
4306         * emulation/viper-keym.el (viper-emacs-kbd-map)
4307         (viper-toggle-key):
4308         * mail/feedmail.el (feedmail-queue-reminder)
4309         (feedmail-queue-reminder-alist, feedmail-confirm-outgoing)
4310         (feedmail-confirm-outgoing-timeout, feedmail-nuke-bcc)
4311         (feedmail-nuke-resent-bcc, feedmail-fill-to-cc-fill-column)
4312         (feedmail-sender-line, feedmail-force-binary-write)
4313         (feedmail-from-line, feedmail-deduce-envelope-from)
4314         (feedmail-x-mailer-line, feedmail-message-id-generator)
4315         (feedmail-date-generator, feedmail-fiddle-plex-user-list)
4316         (feedmail-enable-spray, feedmail-spray-this-address)
4317         (feedmail-spray-address-fiddle-plex-list, feedmail-enable-queue)
4318         (feedmail-queue-runner-confirm-global)
4319         (feedmail-ask-before-queue-prompt)
4320         (feedmail-ask-before-queue-reprompt)
4321         (feedmail-prompt-before-queue-standard-alist)
4322         (feedmail-prompt-before-queue-user-alist)
4323         (feedmail-prompt-before-queue-help-supplement)
4324         (feedmail-queue-use-send-time-for-message-id)
4325         (feedmail-queue-default-file-slug, feedmail-queue-fqm-suffix)
4326         (feedmail-mail-send-hook-splitter, feedmail-mail-send-hook)
4327         (feedmail-mail-send-hook-queued)
4328         (feedmail-confirm-addresses-hook-example)
4329         (feedmail-last-chance-hook, feedmail-before-fcc-hook)
4330         (feedmail-queue-runner-mode-setter)
4331         (feedmail-queue-alternative-mail-header-separator)
4332         (feedmail-queue-runner-message-sender)
4333         (feedmail-buffer-eating-function, feedmail-binmail-template)
4334         (feedmail-run-the-queue-no-prompts)
4335         (feedmail-run-the-queue-global-prompt)
4336         (feedmail-queue-subject-slug-maker, feedmail-fiddle-header)
4337         (feedmail-envelope-deducer, feedmail-fiddle-date)
4338         (feedmail-default-message-id-generator)
4339         (feedmail-fiddle-message-id, feedmail-fiddle-x-mailer)
4340         (feedmail-fiddle-spray-address, feedmail-deduce-address-list):
4341         * mail/vms-pmail.el (vms-pmail-save-and-exit, vms-pmail-abort)
4342         (vms-pmail-setup):
4343         * play/dunnet.el (dun-help):
4344         * play/handwrite.el (handwrite):
4345         * play/hanoi.el (hanoi-unix-64):
4346         * progmodes/idlwave.el (idlwave-rescan-asynchronously):
4347         * textmodes/enriched.el (fixed):
4348         * textmodes/org.el (org-file-apps)
4349         (org-emphasis-regexp-components, org-emphasis-alist):
4350         * textmodes/texinfmt.el (batch-texinfo-format):
4351         Fix typos in docstrings.
4353 2006-11-05  Juanma Barranquero  <lekktu@gmail.com>
4355         * loadhist.el (read-feature): Don't complete features not loaded
4356         from a file (which make `unload-feature' to fail).
4358 2006-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4360         * add-log.el (add-log-time-zone-rule): Mark as safe-local-variable.
4362 2006-11-05  Chong Yidong  <cyd@stupidchicken.com>
4364         * startup.el (command-line-1): Kill emacs if the last frame is
4365         deleted while evaluating the command-line arguments.
4367 2006-11-05  Richard Stallman  <rms@gnu.org>
4369         * startup.el (init-file-had-error): Add doc string.
4370         (fancy-splash-text, fancy-splash-head, fancy-splash-tail):
4371         Use fixed-width font for keyboard key descriptions.
4373         * cus-edit.el (custom-save-all): Error if saving in .emacs
4374         and it had an error when loaded.
4376         * dired-aux.el (dired-copy-file-recursive): Catch errors
4377         from recursive copies in the loop, around the recursive call.
4379 2006-11-05  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
4381         * battery.el (battery-linux-proc-acpi): Search an ac_adapter in
4382         `/proc/acpi/ac_adapter/*'.  Ditto for the thermometers in
4383         `/proc/acpi/thermal_zone/*'.
4384         (battery-search-for-one-match-in-files): New.  Search a regexp in
4385         the content of some files.
4387 2006-11-05  Martin Rudalics  <rudalics@gmx.at>
4389         * window.el (mouse-autoselect-window-now): Remove variable.
4390         (mouse-autoselect-window-state): New variable.
4391         (mouse-autoselect-window-start, mouse-autoselect-window-cancel)
4392         (mouse-autoselect-window-select, handle-select-window):
4393         Rewritten to make mouse-autoselect-window-timer a one-shot timer.
4394         Suspend delayed autoselection during menu or popup dialog.
4396         * info-look.el (info-lookup-guess-custom-symbol): New function
4397         for retrieving symbol at point in custom buffers.
4398         (top level) <info-lookup-maybe-add-help>: Add backquote and
4399         comma to ignored characters in regexps of help specifications
4400         for emacs-lisp-mode and lisp-interaction-mode.  This permits
4401         looking up symbols in `...' and after a comma.  Add help
4402         specifications for custom-mode and help-mode.
4404 2006-11-04  Eli Zaretskii  <eliz@gnu.org>
4406         * mail/rmail.el (rmail-redecode-body): New optional argument RAW.
4407         Don't encode body if RAW is non-nil, or if the old encoding is
4408         identical to the new encoding, or if the body contains only
4409         eight-bit-* characters.
4411 2006-11-04  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
4413         * faces.el (faces-sample-overlay, describe-face): Revert last changes.
4414         (faces-sample-overlay): Remove variable.
4415         (describe-face): Insert sample text in the face being described.
4417 2006-11-04  Martin Rudalics  <rudalics@gmx.at>
4419         * whitespace.el (whitespace-indent-regexp): Make this match any
4420         multiples of eight spaces near the beginning of a line.
4421         (whitespace-buffer): Use `remove-overlays' instead of
4422         `whitespace-unhighlight-the-space' and `overlay-recenter' to
4423         speed up overlay handling.
4424         (whitespace-buffer-leading, whitespace-buffer-trailing):
4425         Make these functions highlight the text removed by
4426         `whitespace-buffer-leading-cleanup' and
4427         `whitespace-buffer-trailing-cleanup' respectively.
4428         (whitespace-buffer-search): Use `with-local-quit'.
4429         Move `format' out of loop to speed up scanning larger buffers.
4430         (whitespace-unhighlight-the-space): Remove `remove-hook' since
4431         that function is never added to a hook.
4432         (whitespace-spacetab-regexp, whitespace-ateol-regexp)
4433         (whitespace-buffer-leading-cleanup)
4434         (whitespace-refresh-rescan-list): Fix docstrings.
4436 2006-11-03  Ken Manheimer  <ken.manheimer@gmail.com>
4438         * allout.el (allout-during-yank-processing): Cue for inhibiting
4439         aberrance processing during yanks.
4440         (allout-doublecheck-at-and-shallower): Reduce the limit to reduce
4441         the amount of yanked topics that can be aberrant.
4442         (allout-do-doublecheck): Encapsulate this multiply-used recipe in
4443         a function, and supplement with inihibition of doublechecking
4444         during yanks.
4445         (allout-beginning-of-line, allout-next-heading)
4446         (allout-previous-heading, allout-goto-prefix-doublechecked)
4447         (allout-back-to-current-heading, allout-next-visible-heading)
4448         (allout-next-sibling): Use new allout-do-doublecheck function.
4449         (allout-next-sibling): Ensure we made progress when returning
4450         other than nil.
4451         (allout-rebullet-heading): Preserve text property annotations
4452         indicating the text was hidden, if it was.
4453         (allout-kill-line): Remove any added was-hidden annotations.
4454         (allout-kill-topic): Remove any added was-hidden annotations.
4455         (allout-annotate-hidden): Inhibit adding was-hidden text
4456         properties to the undo list.
4457         (allout-deannotate-hidden): New function to remove was-hidden
4458         annotation.
4459         (allout-hide-by-annotation): Use new allout-deannotate-hidden.
4460         (allout-remove-exposure-annotation): Replace by
4461         allout-deannotate-hidden.
4462         (allout-yank-processing): Signal that yank processing is happening
4463         with allout-during-yank-processing.  Also, wrap
4464         allout-unprotected's closer to the text changes, for easier
4465         debugging.  We need to inhibit-field-text-motion explicitly, in
4466         lieu of the encompassing allout-unprotected.
4467         (outlineify-sticky): Adjust criteria for triggering new outline
4468         decorations to presence or absence of any topics, not just a topic
4469         at the beginning of the buffer.
4471 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
4473         * bs.el (bs--show-all, bs--redisplay):
4474         * cus-edit.el (custom-unlispify-menu-entries)
4475         (custom-unlispify-tag-names, custom-prompt-variable):
4476         * expand.el (expand-pos):
4477         * speedbar.el (speedbar-generic-list-tag-p):
4478         * wid-edit.el (widget-image-enable):
4479         * emacs-lisp/checkdoc.el (checkdoc-rogue-space-check-engine):
4480         * emacs-lisp/find-func.el (find-function-noselect)
4481         (find-function, find-variable-noselect, find-variable)
4482         (find-definition-noselect, find-face-definition):
4483         * mail/rmail-spam-filter.el (rsf-scanning-messages-now):
4484         * net/eudc-vars.el (eudc-expansion-overwrites-query):
4485         * progmodes/ada-xref.el (ada-find-in-ali):
4486         * textmodes/flyspell.el (flyspell-check-tex-math-command):
4487         * textmodes/org.el (org-copy-subtree):
4488         * textmodes/table.el (table--row-column-insertion-point-p):
4489         Use "non-nil" in docstrings.
4491 2006-11-03  Mark Davies  <mark@mcs.vuw.ac.nz>
4493         * sort.el (sort-columns): Set the field separator to tab; on
4494         NetBSD, sort complains if "\n" is used as field separator.
4496 2006-11-03  NIIMI Satoshi  <sa2c@sa2c.net>
4498         * emacs-lisp/pp.el (pp-eval-last-sexp): Evaluate target sexp.
4500 2006-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4502         * server.el (server-auth-key): Remove.  Replace by a process-property.
4503         (server-start): Don't remove the file of the previous process, but
4504         instead clear out the place for the new file.
4505         (server-start): Set the :auth-key property.
4506         (server-process-filter): Use the :auth-key property.
4508 2006-11-02  Carsten Dominik  <dominik@science.uva.nl>
4510         * textmodes/org.el (org-mode-map): No longer copy
4511         `outline-mode-map' explicitly - this is already done by
4512         `define-derived-mode'.
4514 2006-11-02  Juanma Barranquero  <lekktu@gmail.com>
4516         * server.el (server-visit-files): Use `when'.
4517         (server-process-filter): When authentication fails, send error
4518         message to client.  Wrap `process-send-region' in `ignore-errors'
4519         instead of `condition-case', and remove misleading comment.
4521 2006-11-01  Juri Linkov  <juri@jurta.org>
4523         * simple.el (yank): Doc fix.
4525 2006-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4527         * server.el: Try and fit within 80 columns.
4528         (server-start): Make the auth file unreadable by other users.
4530 2006-10-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
4532         * battery.el (battery-linux-proc-acpi): Prevent range error when
4533         `full-capacity' is 0.
4535 2006-10-31  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
4537         * faces.el (faces-sample-overlay): New defvar.
4538         (faces-sample-overlay): New function to show face sample text.
4539         (describe-face): Use it.
4541 2006-10-31  Stephen Leake  <stephen_leake@stephe-leake.org>
4543         * progmodes/ada-stmt.el: Change maintainer, apply
4544         whitespace-cleanup, checkdoc.
4545         (ada-func-or-proc-name): Add doc string.
4547         * progmodes/ada-prj.el (ada-prj-new): Change maintainer, apply
4548         whitespace-cleanup, checkdoc.  Minor improvements to many doc
4549         strings and comments.
4550         (ada-prj-display-page): Change buffer name to more accurately
4551         reflect function.
4553         * progmodes/ada-xref.el: Change maintainer, apply
4554         whitespace-cleanup, checkdoc.  Minor improvements to many doc
4555         strings and comments.  Don't look for `gvd' or `ddd' debuggers.
4556         (ada-compile-current): Don't add newlines to commands.
4558 2006-10-31  Juanma Barranquero  <lekktu@gmail.com>
4560         * server.el: Add support for TCP sockets.
4561         (server-use-tcp, server-host, server-auth-dir): New options.
4562         (server-auth-key): New variable.
4563         (server-ensure-safe-dir): Create nonexistent parent dirs.
4564         Ignore Unix-style file modes on Windows.
4565         (server-start): Crete a TCP or Unix socket according to the value
4566         of `server-use-tcp'.  For TCP sockets, create the id/auth file in
4567         `server-auth-dir' directory.
4568         (server-process-filter): Delete process if authentication
4569         fails (which never happens for Unix sockets).
4571 2006-10-30  David Kastrup  <dak@gnu.org>
4573         * subr.el (add-to-list): Don't continue checking if a match has
4574         been found.
4576 2006-10-30  Chong Yidong  <cyd@stupidchicken.com>
4578         * tutorial.el: Move defvars to avoid bytecomp warnings.
4579         (tutorial--find-changed-keys): Check if viper-current-state is
4580         bound before using it.
4581         (help-with-tutorial): Check if viper-tutorial is defined before
4582         using it.
4584 2006-10-30  Lennart Borgman  <lennart.borgman.073@student.lu.se>
4586         * help-fns.el (help-with-tutorial): Move to tutorial.el.
4588         * tutorial.el: New file.
4589         (help-with-tutorial): Move here from help-fns.el. Added help for
4590         rebound keys.  Fixed resume of tutorial.
4591         (tutorial--describe-nonstandard-key, tutorial--sort-keys)
4592         (tutorial--find-changed-keys, tutorial--display-changes)
4593         (tutorial--saved-dir, tutorial--saved-file)
4594         (tutorial--save-tutorial): New functions to support the changes in
4595         help-with-tutorial.
4597 2006-10-30  Kenichi Handa  <handa@m17n.org>
4599         * files.el (revert-buffer): If a unibyte buffer is being reverted
4600         with a coding system for multibyte, set buffer multibyte before
4601         calling insert-file-contents.
4603 2006-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4605         * server.el (server-select-display): Use a dummy buffer to detect when
4606         the frame is later used.
4607         (server-select-display): New function.
4608         (server-process-filter): Use it to detect unused temp frames.
4610 2006-10-29  Stephen Leake  <stephen_leake@stephe-leake.org>
4612         * progmodes/ada-mode.el: Change maintainer, apply
4613         whitespace-clean, checkdoc.  Minor improvements to many doc strings.
4614         (ada-mode-version): New function.
4615         (ada-create-menu): Menu operations are available for all supported
4616         compilers.
4618 2006-10-29  Lars Hansen  <larsh@soem.dk>
4620         * net/tramp.el (with-parsed-tramp-file-name): Correct debug spec.
4621         Highlight as keyword.
4622         (tramp-do-copy-or-rename-file): Correct data for 'file-already-exists.
4623         Don't call tramp-method-out-of-band-p for local files.
4624         (tramp-touch): Quote file name.
4626 2006-10-28  Glenn Morris  <rgm@gnu.org>
4628         * calendar/calendar.el (cal-html-cursor-month)
4629         (cal-html-cursor-year): Add autoloads for this new package.
4630         (calendar-mode-map): Bind cal-html-cursor-month, cal-html-cursor-year.
4632 2006-10-28  Anna M. Bigatti  <bigatti@dima.unige.it>
4634         * calendar/cal-html.el: New file.
4636 2006-10-28  Chong Yidong  <cyd@stupidchicken.com>
4638         * emacs-lisp/authors.el (authors-aliases): Update.
4640 2006-10-27  Chong Yidong  <cyd@stupidchicken.com>
4642         * version.el (emacs-version): Bump version number to 22.0.90.
4644 2006-10-26  John W. Eaton  <jwe@octave.org>
4646         * progmodes/octave-inf.el (inferior-octave-has-built-in-variables):
4647         New defvar.
4648         (inferior-octave-resync-dirs): Check to see whether Octave has
4649         built-in variables and set inferior-octave-has-built-in-variables.
4650         Check inferior-octave-has-built-in-variables to decide whether to
4651         send commands that set built-in variables or call functions to
4652         change Octave's behavior.
4653         Send "disp (pwd ())" to Octave instead of just "pwd".
4654         (inferior-octave-startup): Send "more off" to Octave instead of
4655         "page_screen_output = 0".
4657 2006-10-26  Chong Yidong  <cyd@stupidchicken.com>
4659         * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
4660         pattern normally.
4662 2006-10-26  Nick Roberts  <nickrob@snap.net.nz>
4664         * bindings.el (mode-line-mode-menu): Remove bindings for global
4665         minor modes (line/column number) as they are on the menubar.
4667 2006-10-25  Juanma Barranquero  <lekktu@gmail.com>
4669         * term/w32-win.el (x-handle-name-switch): Doc fix.
4670         (w32-standard-fontset-spec): Fix typo in docstring.
4672         * midnight.el (midnight-buffer-display-time): Doc fix.
4673         (clean-buffer-list-kill-never-buffer-names): Add "*server*".
4675 2006-10-23  Michael Kifer  <kifer@cs.stonybrook.edu>
4677         * viper-cmd.el (viper-prefix-arg-com): Define gg as G0.
4679         * viper-ex.el (ex-read): Quote file argument.
4681         * ediff-diff.el (ediff-same-file-contents): Expand file names.
4683         * ediff-mult.el (ediff-append-custom-diff): Quote shell file arguments.
4685 2006-10-22  Martin Rudalics  <rudalics@gmx.at>
4687         * textmodes/flyspell.el (flyspell-check-region-doublons):
4688         Fix last fix.
4690 2006-10-23  Nick Roberts  <nickrob@snap.net.nz>
4692         * bindings.el (mode-line-mode-menu): List global minor modes
4693         before local ones.
4695 2006-10-23  Kim F. Storm  <storm@cua.dk>
4697         * subr.el (add-to-list): Optimize if compare-fn is `eq' or `eql'.
4698         (sit-for): If last command was a prefix arg, add the read-ahead
4699         event to unread-command-events as (t . EVENT) so it will be added
4700         to this-command-keys by read-key-sequence.
4702 2006-10-22  Martin Rudalics  <rudalics@gmx.at>
4704         * textmodes/flyspell.el (flyspell-word): Skip past all previous
4705         whitespace when checking doublons.
4706         (flyspell-check-region-doublons): Fix doublon regexp.
4707         (flyspell-highlight-incorrect-region): Highlight doublons using
4708         flyspell-duplicate face.
4710         * progmodes/cperl-mode.el (cperl-invalid-face): Fix defcustom.
4712 2006-10-22  John Wiegley  <johnw@newartisans.com>
4714         * progmodes/python.el (python-use-skeletons): python-mode was
4715         auto-inserting templates (for those with abbrev-mode on), not only
4716         by default -- *but without a configuration variable to disable
4717         it*.  This rendered python-mode completely useless for me, so I
4718         have added `python-use-skeletons', which is now off by default.
4720 2006-10-22  Chong Yidong  <cyd@stupidchicken.com>
4722         * progmodes/cperl-mode.el (cperl-mode): Don't assume
4723         font-lock-multiline is auto-local (it's not).
4724         (cperl-windowed-init): Ensure that cperl-font-lock-multiline is
4725         initialized before calling cperl-init-faces.
4727 2006-10-22  Nick Roberts  <nickrob@snap.net.nz>
4729         * progmodes/gdb-ui.el (gdb-info-stack-custom): Don't try to give
4730         gdb-stack-position a value when there is no fringe.
4732         * bindings.el (mode-line-mode-menu): Disable auto-revert-tail-mode
4733         indicator if not visiting a file.
4735 2006-10-20  David Kastrup  <dak@gnu.org>
4737         * window.el (kill-buffer-and-window): Fix a bug where an aborted
4738         operation would still cause some window to collapse later.
4740 2006-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4742         * vc.el (vc-switch-backend): Try to be more careful with unwanted
4743         side-effect due to mixing various backends's file properties.
4745         * vc-svn.el (vc-svn-parse-status): Remove unused arg `localp'.
4746         Add arg `filename' instead.  Don't set vc-backend if `filename' is set.
4747         Return `filename's status if applicable.  Update callers.
4749 2006-10-19  Kenichi Handa  <handa@m17n.org>
4751         * international/kkc.el (kkc-region): When a key sequence is not
4752         defined, append (this-single-command-raw-keys) to
4753         unread-input-method-events.
4755 2006-10-19  Juanma Barranquero  <lekktu@gmail.com>
4757         * progmodes/ada-mode.el (ada-in-string-p): Doc fix.
4759 2006-10-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4761         * version.el (emacs-version): Use mac-carbon-version-string.
4763         * term/macterm.el (res-geometry): Apply 2006-10-18 change for x-win.el.
4765 2006-10-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4767         * select.el (ccl-check-utf-8, string-utf-8-p): New functions (by
4768         Kenichi Handa).
4769         (xselect-convert-to-string): Decline requests for UTF8_STRING if
4770         the selection is not UTF-8.
4772 2006-10-18  Juanma Barranquero  <lekktu@gmail.com>
4774         * progmodes/ada-mode.el (ada-83-string-keywords)
4775         (ada-last-which-function-line ada-no-auto-case, ada-indent-region)
4776         (ada-which-compiler, ada-align-modes, ada-adjust-case-buffer)
4777         (ada-looking-at-semi-private, ada-get-body-name):
4778         Fix typos in docstrings.
4779         (ada-create-case-exception, ada-create-case-exception-substring):
4780         Fix typos in error messages.
4781         (ada-goto-matching-end, ada-narrow-to-defun): Doc fixes.
4783 2006-10-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4785         * term/x-win.el (res-geometry): Don't set geometry from Xresources
4786         to default-frame-alist if default-frame-alist already contains
4787         width/height.
4789 2006-10-18  Richard Stallman  <rms@gnu.org>
4791         * emacs-lisp/pp.el (pp-eval-expression): Use `X' to read value.
4792         Non-interactive arg is the value, not the expression.
4794         * simple.el (read-expression-map): Just set it, no defvar.
4796         * subr.el (insert-for-yank-1): If last inserted char has
4797         properties, mark them as rear-nonsticky.
4799         * recentf.el (recentf-mode): Doc fix.
4801         * facemenu.el (facemenu-add-new-face): Defend against symbol
4802         that isn't a face name.
4804         * dired-aux.el (dired-do-copy): Doc fix.
4806 2006-10-18  Chong Yidong  <cyd@stupidchicken.com>
4808         * simple.el (line-move-1): Ignore fields when moving to the
4809         beginning of line to avoid getting point stuck.
4811 2006-10-18  Martin Rudalics  <rudalics@gmx.at>
4813         * textmodes/flyspell.el (flyspell-word-search-backward):
4814         Set inhibit-point-motion-hooks to avoid looping due to intangibile
4815         text.
4817 2006-10-16  Richard Stallman  <rms@gnu.org>
4819         * help-fns.el (describe-function-1): Special case optimization
4820         for self-insert-command.
4822 2006-10-16  Kim F. Storm  <storm@cua.dk>
4824         * ido.el (ido-reread-directory): Work in `dir' mode too.
4826 2006-10-15  Martin Rudalics  <rudalics@gmx.at>
4828         * textmodes/table.el: Require 'regexp-opt.
4830 2006-10-15  Lennart Borgman  <lennart.borgman.073@student.lu.se>
4832         * progmodes/flymake.el (flymake-get-project-include-dirs-imp):
4833         Use shell-quote-argument.
4835         * shell.el (explicit-bash-args): Likewise.
4837         * progmodes/ada-xref.el (ada-find-in-src-path): Likewise.
4838         Use grep -E rather than egrep.
4840 2006-10-15  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
4842         * ido.el (ido-exhibit): Allow `-', `_', and trailing `$' in user id.
4844 2006-10-15  Kim F. Storm  <storm@cua.dk>
4846         * filesets.el (filesets-run-cmd--repl-fn): Use shell-quote-argument.
4848 2006-10-14  Lennart Borgman  <lennart.borgman.073@student.lu.se>
4850         * filesets.el (filesets-cmd-shell-command): Quote buffer-file-name
4851         to protect whitespace and metacharacters from the shell.
4853 2006-10-13  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
4855         * apropos.el (apropos-pattern-quoted): Fix a typo in a doc string.
4857 2006-10-13  Eli Zaretskii  <eliz@gnu.org>
4859         * subr.el (start-process-shell-command): Doc fix.
4861 2006-10-13  Andrea Russo  <rastandy@salug.it>  (tiny change)
4863         * info-look.el <maxima-mode, inferior-maxima-mode>: Allow [0-9] in
4864         the regexp for Maxima symbols.
4866 2006-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4868         * vc-hooks.el (vc-ignore-dir-regexp): Make it into a defcustom.
4869         (vc-find-root): Don't walk higher up than ~.
4871 2006-10-12  Chong Yidong  <cyd@stupidchicken.com>
4873         * international/utf-8.el (utf-translate-cjk-load-tables):
4874         Avoid clobbering last-coding-system-used during load.
4876 2006-10-12  Carsten Dominik  <dominik@science.uva.nl>
4878         * textmodes/reftex-global.el (reftex-create-tags-file):
4879         Quote file arguments.
4881 2006-10-12  Richard Stallman  <rms@gnu.org>
4883         * files.el (file-name-history): Add defvar.
4884         (save-some-buffers-action-alist): Improve description strings.
4886 2006-10-12  Andreas Schwab  <schwab@suse.de>
4888         * files.el (auto-mode-alist): Match change log file name also with
4889         a dash before a numeric extension.
4891 2006-10-11  Ilya Zakharevich  <ilyaz@cpan.org>
4893         * progmodes/cperl-mode.el: Merge from upstream, upto version 5.22.
4894         After 5.0:
4895         (cperl-add-tags-recurse-noxs-fullpath): New function (for -batch mode).
4897         After 5.1: Major edit.  Summary of most visible changes:
4899         - Multiple <<HERE per line allowed.
4900         - Handles multiline subroutine declaration headers (with comments).
4901           (The exception is `cperl-etags' - but it is not used in the rest
4902           of the mode.)
4903         - Fontifies multiline my/our declarations (even with comments,
4904           and with legacy `font-lock').
4905         - Major speedup of syntaxification, both immediate and postponed
4906           (3.5x to 15x [for different CPUs and versions of Emacs] on the
4907           huge real-life document I tested).
4908         - New bindings, edits to imenu.
4909         - "_" is made into word-char during fontification/syntaxification;
4910           some attempts to recognize non-word "_" during other operations too.
4911         - Detect bug in Emacs with `looking-at' inside `narrow' and bulk out.
4912         - autoload some more perldoc-related stuff
4913         - New convenience features: ISpell POD/HEREDOCs, narrow-to-HEREDOC.
4914         - Attempt to incorporate XEmacs edits which reached me.
4916         Fine-grained changelog:
4917         (cperl-hook-after-change): New configuration variable.
4918         (cperl-vc-sccs-header): Likewise.
4919         (cperl-vc-sccs-header): Likewise.
4920         (cperl-vc-header-alist): Default via two preceding variables.
4921         (cperl-invalid-face): Remove double quoting under XEmacs
4922                 (still needed under 21.2).
4923         (cperl-tips): Update URLs for resources.
4924         (cperl-problems): Likewise.
4925         (cperl-praise): Mention new features.
4926         New C-c key bindings: for `cperl-find-bad-style',
4927         `cperl-pod-spell', `cperl-here-doc-spell', `cperl-narrow-to-here-doc',
4928         `cperl-perdoc', and `cperl-perldoc-at-point'.
4929         CPerl Mode menu changes:        "Fix style by spaces", "Imenu on Perl Info"
4930         moved, new submenu of Tools with Ispell entries and narrowing.
4931         (cperl-after-sub-regexp): New defsubst.
4932         (cperl-imenu--function-name-regexp-perl): Use `cperl-after-sub-regexp'.
4933                 Allows heads up to head4.
4934                 Allow "package;".
4935         (defun-prompt-regexp): Use `cperl-after-sub-regexp'.
4936         (paren-backwards-message): ??? Something for XEmacs???
4937         (cperl-mode): Never auto-switch abbrev-mode off.
4938                 Try to allow '_' be non-word char.
4939                 Do not use `font-lock-unfontify-region-function' on XEmacs.
4940                 Reset syntax cache on mode start.
4941                 Support multiline facification (even on legacy `font-lock').
4942         (cperl-facemenu-add-face-function): ??? Some contributed code ???
4943         (cperl-after-change-function): Since `font-lock' and `lazy-lock'
4944                 refuse to inform us whether the fontification is due to lazy
4945                 calling or due to edit to a buffer, install our own hook
4946                 (controlled by `cperl-hook-after-change').
4947         (cperl-electric-pod): =cut may have been recognized as start.
4948         (cperl-block-p): Move, updatedfor attributes.
4949         (cperl-calculate-indent): Try to allow '_' be non-word char
4950                 Support subs with attributes.
4951         (cperl-where-am-i): Queit (?) a warning.
4952         (cperl-cached-syntax-table)     New function.
4953         (cperl-forward-re): Use `cperl-cached-syntax-table'.
4954         (cperl-unwind-to-safe): Recognize `syntax-type' property
4955                 changing in a middle of line.
4956         (cperl-find-sub-attrs): New function.
4957         (cperl-find-pods-heres): Allow many <<EOP per line.
4958                 Allow subs with attributes.
4959                 Major speedups (3.5x..15x on a real-life test file nph-proxy.pl).
4960                 Recognize "extproc " (OS/2) case-folded and only at start.
4961                 /x on s///x with empty replacement was not recognized.
4962                 Better comments.
4963         (cperl-after-block-p): Remarks on diff with `cperl-block-p'.
4964                 Allow subs with attributes, labels.
4965                 Do not confuse "else::foo" with "else".
4966                 Minor optimizations...
4967         (cperl-after-expr-p): Try to allow '_' be non-word char.
4968         (cperl-fill-paragraph): Try to detect a major bug in Emacs
4969                 with `looking-at' inside `narrow' and bulk out if found.
4970         (cperl-imenu--create-perl-index): Updates for new
4971                 `cperl-imenu--function-name-regexp-perl'.
4972         (cperl-outline-level): Likewise.
4973         (cperl-init-faces): Allow multiline subroutine headers
4974                 and my/our declarations, and ones with comments.
4975                 Allow subroutine attributes.
4976         (cperl-imenu-on-info): Better docstring.
4977         (cperl-etags): Rudimentary support for attributes.
4978                 Support for packages and "package;".
4979         (cperl-add-tags-recurse-noxs): Better (?) docstring.
4980         (cperl-add-tags-recurse-noxs-fullpath): Likewise.
4981         (cperl-tags-hier-init): Misprint for `fboundp' fixed.
4982         (cperl-not-bad-style-regexp): Try to allow '_' be non-word char.
4983         (cperl-perldoc): Add autoload.
4984         (cperl-perldoc-at-point): Likewise.
4985         (cperl-here-doc-spell): New function.
4986         (cperl-pod-spell): Likewise.
4987         (cperl-map-pods-heres): Likewise.
4988         (cperl-get-here-doc-region): Likewise.
4989         (cperl-font-lock-fontify-region-function): Likewise (backward
4990                 compatibility for legacy `font-lock').
4991         (cperl-font-lock-unfontify-region-function): Fix style.
4992         (cperl-fontify-syntaxically): Recognize and optimize away deferred
4993                 calls with no-change.  Governed by `cperl-hook-after-change'.
4994         (cperl-fontify-update): Recognize that syntaxification region
4995                 can be larger than fontification one.
4996                 XXXX we leave `cperl-postpone' property, so this is quadratic...
4997         (cperl-fontify-update-bad): Temporary placeholder until
4998                 it is clear how to implement `cperl-fontify-update'.
4999         (cperl-time-fontification): New function.
5000         (attrib-group): New text attribute.
5001         (multiline): New value: `syntax-type' text attribute.
5003         After 5.2:
5004         (cperl-emulate-lazy-lock): New function.
5005         (cperl-fontify-syntaxically): Would skip large regions.
5006         Add `cperl-time-fontification', `cperl-emulate-lazy-lock' to menu.
5007         Some globals were declared, but uninitialized.
5009         After 5.3, 5.4:
5010         (cperl-facemenu-add-face-function): Add docs, fix U<>.
5011         Copyright message updated.
5012         (cperl-init-faces): Work around a bug in `font-lock'. May slow
5013                         facification down a bit.
5014                 Misprint for my|our|local for old `font-lock'
5015                         "our" was not fontified same as "my|local".
5016                 Highlight variables after "my" etc even in
5017                         a middle of an expression.
5018                 Do not facify multiple variables after my etc
5019                         unless parentheses are present.
5021         After 5.5, 5.6
5022         (cperl-fontify-syntaxically): after-change hook could reset.
5023         (cperl-syntax-done-to) to a middle of line; unwind to BOL.
5025         After 5.7:
5026         (cperl-init-faces): Allow highlighting of local ($/).
5027         (cperl-problems-old-emaxen): New variable (for the use of DOCSTRING).
5028         (cperl-problems): Remove fixed problems.
5029         (cperl-find-pods-heres): Recognize #-comments in m##x too.
5030                 Recognize charclasses (unless delimiter is \).
5031         (cperl-fontify-syntaxically): Unwinding to safe was done in wrong order.
5032         (cperl-regexp-scan): Update docs.
5033         (cperl-beautify-regexp-piece): Use information got from regexp scan.
5035         After 5.8:
5036         Major user visible changes:
5037         Recognition and fontification of character classes in RExen.
5038         Variable indentation of RExen according to groups.
5040         (cperl-find-pods-heres): Recognize POSIX classes in REx charclasses.
5041                 Fontify REx charclasses in variable-name face.
5042                 Fontify POSIX charclasses in "type" face.
5043                 Fontify unmatched "]" in function-name face.
5044                 Mark first-char of HERE-doc as `front-sticky'.
5045                 Reset `front-sticky' property when needed.
5046         (cperl-calculate-indent): Indents //x -RExen accordning to parens level.
5047         (cperl-to-comment-or-eol): Recognize ends of `syntax-type' constructs.
5048         (cperl-backward-to-noncomment): Recognize stringy `syntax-type'
5049                 constructs.  Support `narrow'ed buffers.
5050         (cperl-praise): Remove a reservation.
5051         (cperl-make-indent): New function.
5052         (cperl-indent-for-comment): Use `cperl-make-indent'.
5053         (cperl-indent-line): Likewise.
5054         (cperl-lineup): Likewise.
5055         (cperl-beautify-regexp-piece): Likewise.
5056         (cperl-contract-level): Likewise.
5057         (cperl-toggle-set-debug-unwind): New function.
5058                 New menu entry for this.
5059         (fill-paragraph-function): Use when `boundp'.
5060         (cperl-calculate-indent): Take into account groups when indenting RExen.
5061         (cperl-to-comment-or-eol): Recognize # which end a string.
5062         (cperl-modify-syntax-type): Make only syntax-table property non-sticky.
5063         (cperl-fill-paragraph): Return t: needed for `fill-paragraph-function'.
5064         (cperl-fontify-syntaxically): More clear debugging message.
5065         (cperl-pod2man-build-command): Check (XEmacs) `Man-filter-list'.
5066         (cperl-init-faces): More complicated highlight even on XEmacs (new).
5067         Merge cosmetic changes from XEmacs.
5069         After 5.9:
5070         (cperl-1+): Move to before the first use.
5071         (cperl-1-): Likewise.
5073         After 5.10:
5075         This code may lock Emacs hard!!!  Use at your own risk!
5077         (cperl-font-locking): New internal variable.
5078         (cperl-beginning-of-property): New function.
5079         (cperl-calculate-indent): Use `cperl-beginning-of-property'
5080         instead of `previous-single-property-change'.
5081         (cperl-unwind-to-safe): Likewise.
5082         (cperl-after-expr-p): Likewise.
5083         (cperl-get-here-doc-region): Likewise.
5084         (cperl-font-lock-fontify-region-function): Likewise.
5085         (cperl-to-comment-or-eol): Do not call `cperl-update-syntaxification'
5086                         recursively.
5087                 Bound `next-single-property-change' via `point-max'.
5088         (cperl-unwind-to-safe): Bound likewise
5089         (cperl-font-lock-fontify-region-function): Likewise.
5090         (cperl-find-pods-heres): Mark as recursive for `cperl-to-comment-or-eol'
5091                 Initialization of `cperl-font-lock-multiline-start' could be
5092                 missed if the "main" fontification did not run due to the
5093                 keyword being already fontified.
5094         (cperl-pod-spell): Return t from do-one-chunk function.
5095         (cperl-map-pods-heres): Stop when the worker returns nil.
5096                 Call `cperl-update-syntaxification'.
5097         (cperl-get-here-doc-region): Call `cperl-update-syntaxification'.
5098         (cperl-get-here-doc-delim): Remove unused function.
5100         After 5.11:
5102         The possible lockup of Emacs (introduced in 5.10) fixed.
5104         (cperl-unwind-to-safe): `cperl-beginning-of-property' won't return nil.
5105         (cperl-syntaxify-for-menu): New customization variable.
5106         (cperl-select-this-pod-or-here-doc): New function.
5107         (cperl-get-here-doc-region): Extra argument.
5108                 Do not adjust pos by 1.
5110         New menu entries
5111                 (Perl/Tools): Selection of current POD or HERE-DOC section.
5112                 (Debugging CPerl:) backtrace on fontification.
5114         After 5.12:
5115         (cperl-cached-syntax-table): Use `car-safe'.
5116         (cperl-forward-re): Remove spurious argument SET-ST.
5117                 Add documentation.
5118         (cperl-forward-group-in-re): New function.
5119         (cperl-find-pods-heres): Find and highlight (?{}) blocks in RExen
5120         (XXXX Temporary (?) hack is to syntax-mark them as comment).
5122         After 5.13:
5123         (cperl-string-syntax-table): Make { and } not-grouping
5124           (Sometimes they ARE grouping in RExen, but matching them would only
5125            confuse in many situations when they are not)
5126         (beginning-of-buffer): Replace two occurences with goto-char...
5127         (cperl-calculate-indent): `char-after' could be nil...
5128         (cperl-find-pods-heres): REx can start after "[" too.
5129                 Hightlight (??{}) in RExen too.
5130         (cperl-maybe-white-and-comment-rex): New constant
5131         (cperl-white-and-comment-rex): Likewise.
5132                 XXXX Not very efficient, but hard to make
5133                 better while keeping 1 group.
5135         After 5.13:
5136         (cperl-find-pods-heres): $foo << identifier() is not a HERE-DOC.
5137                 Likewise for 1 << identifier.
5139         After 5.14:
5140         (cperl-find-pods-heres): Different logic for $foo .= <<EOF etc.
5141                 Error-less condition-case could fail.
5142         (cperl-font-lock-fontify-region-function): Likewise.
5143         (cperl-init-faces): Likewise.
5145         After 5.15:
5146         (cperl-find-pods-heres): Support property REx-part2.
5147         (cperl-calculate-indent): Likewise.
5148                 Don't special-case REx with non-empty 1st line.
5149         (cperl-find-pods-heres): In RExen, highlight non-literal backslashes.
5150                 Invert highlighting of charclasses:
5151                         now the envelop is highlighted.
5152                 Highlight many others 0-length builtins.
5153         (cperl-praise): Mention indenting and highlight in RExen.
5155         After 5.15:
5156         (cperl-find-pods-heres): Highlight capturing parens in REx.
5158         After 5.16:
5159         (cperl-find-pods-heres): Highlight '|' for alternation
5160         Initialize `font-lock-warning-face' if not present.
5161         (cperl-find-pods-heres): Use `font-lock-warning-face' instead of
5162                          `font-lock-function-name-face'.
5163         (cperl-look-at-leading-count): Likewise.
5164         (cperl-find-pods-heres): Localize `font-lock-variable-name-face',
5165                         `font-lock-keyword-face' (needed for
5166                         batch processing), etc...
5167                 Use `font-lock-builtin-face' for builtin in REx
5168                         Now `font-lock-variable-name-face'
5169                         is used for interpolated variables
5170                 Use "talking aliases" for faces inside REx
5171                 Highlight parts of REx (except in charclasses)
5172                         according to the syntax and/or semantic
5173                 Syntax-mark a {}-part of (?{}) as "comment"
5174                         (it was the ()-part)
5175                 Better logic to distinguish what is what in REx
5176         (cperl-tips-faces): Document REx highlighting
5177         (cperl-praise): Mention REx syntax highlight etc.
5179         After 5.17:
5180         (cperl-find-sub-attrs): Would not always manage to print error message.
5181         (cperl-find-pods-heres): Localize `font-lock-constant-face'.
5183         After 5.18:
5184         (cperl-find-pods-heres): Misprint in REx for parsing REx.
5185                 Very minor optimization.
5186                 `my-cperl-REx-modifiers-face' got quoted.
5187                 Recognize "print $foo <<END" as HERE-doc.
5188                 Put `REx-interpolated' text attribute if needed.
5189         (cperl-invert-if-unless-modifiers): New function.
5190         (cperl-backward-to-start-of-expr): Likewise.
5191         (cperl-forward-to-end-of-expr): Likewise.
5192         (cperl-invert-if-unless): Works in "the opposite way" too.
5193                 Cursor position on return is on the switch-word.
5194                 Indents comments better.
5195         (REx-interpolated): New text attribute.
5196         (cperl-next-interpolated-REx): New function.
5197         (cperl-next-interpolated-REx-0): Likewise.
5198         (cperl-next-interpolated-REx-1): Likewise.
5199         "\C-c\C-x", "\C-c\C-y", "\C-c\C-v":     New keybinding for these functions.
5200         Perl/Regexp menu: 3 new entries for `cperl-next-interpolated-REx'.
5201         (cperl-praise): Mention finded interpolated RExen.
5203         After 5.19:
5204         (cperl-init-faces): Highlight %$foo, @$foo too.
5205         (cperl-short-docs): Better docs for system, exec.
5206         (cperl-find-pods-heres): Better detect << after print {FH} <<EOF etc.
5207                 Would not find HERE-doc ended by EOF without NL.
5208         (cperl-short-docs): Correct not-doubled \-escapes.
5209         start block: Put some `defvar' for stuff gone from XEmacs.
5211         After 5.20:
5212         initial comment: Extend copyright, fix email address.
5213         (cperl-indent-comment-at-column-0): New customization variable.
5214         (cperl-comment-indent): Indentation after $#a would increasy by 1.
5215         (cperl-mode): Make `defun-prompt-regexp' grok BEGIN/END etc.
5216         (cperl-find-pods-heres): Mark CODE of s///e as `syntax-type' `multiline'
5217         (cperl-at-end-of-expr): Would fail if @BAR=12 follows after ";".
5218         (cperl-init-faces): If `cperl-highlight-variables-indiscriminately'
5219                         highlight $ in $foo too (UNTESTED).
5220         (cperl-set-style): Docstring missed some available styles.
5221         toplevel: Menubar/Perl/Indent-Styles had FSF, now K&R.
5222                 Change "Current" to "Memorize Current".
5223         (cperl-indent-wrt-brace): New customization variable; the default is
5224                 as for pre-5.2 version.
5225         (cperl-styles-entries): Keep `cperl-extra-newline-before-brace-multiline'.
5226         (cperl-style-alist): Likewise.
5227         (cperl-fix-line-spacing): Support `cperl-merge-trailing-else' being nil,
5228                 and `cperl-extra-newline-before-brace' etc
5229                 being t
5230         (cperl-indent-exp): Plans B and C to find continuation blocks even
5231                 if `cperl-extra-newline-before-brace' is t.
5233         After 5.21:
5234         Improve some docstrings concerning indentation.
5235         (cperl-indent-rules-alist): New variable.
5236         (cperl-sniff-for-indent): New function name
5237                 (separated from `cperl-calculate-indent').
5238         (cperl-calculate-indent): Separate the sniffer and the indenter;
5239                 uses `cperl-sniff-for-indent' now.
5240         (cperl-comment-indent): Test for `cperl-indent-comment-at-column-0'
5241                 was inverted;
5242                 Support `comment-column' = 0.
5244 2006-10-11  Martin Rudalics  <rudalics@gmx.at>
5246         * dnd.el (dnd-handle-one-url): Fix typo in doc-string.
5247         * help-at-pt.el (scan-buf-move-to-region): Likewise.
5248         * longlines.el (longlines-window-change-function): Likewise.
5249         * simple.el (undo-ask-before-discard): Likewise.
5250         * wid-edit.el (widget-field-prompt-internal)
5251         (widget-documentation-link-p): Likewise.
5253 2006-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5255         * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars
5256         for a keyword.
5258 2006-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5260         * newcomment.el (comment-valid-prefix-p): Make the check
5261         more thorough.  From an idea by Martin Rudalics <rudalics@gmx.at>.
5262         (comment-indent-new-line): Adjust call.
5264 2006-10-09  Ken Manheimer  <ken.manheimer@gmail.com>
5266         * allout.el (allout-back-to-current-heading): Base on lower-level
5267         routines to get proper disqualification of aberrant topics.
5269 2006-10-09  Richard Stallman  <rms@gnu.org>
5271         * textmodes/two-column.el (2C-two-columns): Doc fix.
5273 2006-10-09  Kim F. Storm  <storm@cua.dk>
5275         * shell.el (explicit-csh-args, explicit-bash-args): Add comment
5276         about implicit use.
5278 2006-10-08  Richard Stallman  <rms@gnu.org>
5280         * textmodes/two-column.el (2C-two-columns): Doc fix.
5282 2006-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5284         * files.el: Mark `buffer-read-only' as safe-local-variable.
5286 2006-10-08  Nick Roberts  <nickrob@snap.net.nz>
5288         * progmodes/gdb-ui.el (gdb-speedbar-expand-node):
5289         Burp if GUD buffer has been killed.
5291 2006-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5293         * completion.el (add-completions-from-c-buffer):
5294         Don't presume an error's second element is a string.
5295         Use looking-at rather than buffer-substring + member.
5297 2006-10-07  Eli Zaretskii  <eliz@gnu.org>
5299         * mail/rmail.el (rmail-redecode-body): If the old encoding is
5300         `undecided', call find-coding-systems-region to find a proper
5301         non-trivial encoding.
5302         (rmail-mime-charset-pattern): Allow a TAB between "Content-Type"
5303         and "text/plain".
5305 2006-10-07  Kevin Ryde  <user42@zip.com.au>
5307         * textmodes/reftex-vars.el (defgroup reftex): Update home page
5308         url-link.
5310         * strokes.el (defgroup strokes): Remove invalid url-link.
5312 2006-10-07  Magnus Henoch  <mange@freemail.hu>
5314         * autoinsert.el (auto-insert-alist): Doc fix.
5316 2006-10-07  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
5318         * mouse-sel.el (mouse-insert-selection-internal):
5319         Use insert-for-yank, so that yank handlers are run.
5321 2006-10-07  Kim F. Storm  <storm@cua.dk>
5323         * ido.el (ido-file-extension-aux): Fix comparison.
5325 2006-10-06  Kim F. Storm  <storm@cua.dk>
5327         * ido.el (ido-wide-find-dirs-or-files): Use shell-quote-argument.
5329 2006-10-05  Juanma Barranquero  <lekktu@gmail.com>
5331         * emacs-lisp/advice.el (ad-remove-advice, ad-parse-arglist)
5332         (ad-make-mapped-call): Use `let', not `let*'.
5334 2006-10-05  Chong Yidong  <cyd@stupidchicken.com>
5336         * international/mule-cmds.el (coding-system-change-eol-conversion):
5337         Ensure the coding system is initialized before calling
5338         coding-system-eol-type.
5340 2006-10-04  Carsten Dominik  <dominik@science.uva.nl>
5342         * textmodes/org.el (org-rm-props, org-activate-plain-links)
5343         (org-activate-angle-links, org-activate-dates)
5344         (org-activate-target-links, org-activate-camels)
5345         (org-activate-tags): Add `rear-nonsticky' text property to avoid
5346         textproperty keymaps from being active beyond the end of a line.
5347         (org-unfontify-region): Also remove `rear-nonsticky' property.
5349 2006-10-04  Kenichi Handa  <handa@m17n.org>
5351         * international/code-pages.el (next): Table fixed.
5353 2006-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5355         * progmodes/sh-script.el (sh-prev-thing): Remove (forward-char 1) now
5356         that it's been made unnecessary by removing narrowing.
5358 2006-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5360         * progmodes/sh-script.el (sh-prev-thing): Massage to untangle the
5361         control flow a bit, simplify another bit, and add comments.
5363 2006-10-03  David Kastrup  <dak@gnu.org>
5365         * help.el (describe-mode): For clicks on mode-line, use "@"
5366         interactive argument to get the major mode of the click instead of
5367         the current buffer.
5369         * isearch.el (isearch-mouse-2): Use new semantics of `key-binding'
5370         in order to better redirect mouse-2 clicks.  Also allow default
5371         bindings to apply.
5373 2006-10-03  Kim F. Storm  <storm@cua.dk>
5375         * emacs-lisp/cl.el (pushnew-internal): Remove defvar.
5376         (pushnew): Fix last change.
5378 2006-10-03  Denis St\e,A|\e(Bnkel  <dstuenkel@googlemail.com>  (tiny change)
5380         * ibuf-ext.el (eval, view-and-eval) <define-ibuffer-op>:
5381         Use the interactive spec of `eval-expression'.
5383 2006-10-02  Michael Welsh Duggan  <md5i@cs.cmu.edu>
5385         * progmodes/sh-script.el (sh-prev-thing): Fix last change.
5387 2006-10-02  MIYOSHI Masanori  <miyoshi@meadowy.org>  (tiny change)
5389         * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in
5390         2006-09-28 commit.
5392 2006-10-02  Kenichi Handa  <handa@m17n.org>
5394         * international/code-pages.el (iso-8859-6): Table fixed.
5396 2006-10-01  Chris Moore  <christopher.ian.moore@gmail.com>
5398         * dired.el (dired-build-subdir-alist): Fix previous change.
5400 2006-10-01  Johan Bockg\e,Ae\e(Brd  <bojohan+mail@dd.chalmers.se>
5402         * simple.el (undo-elt-crosses-region): Fix the inequalities.
5404 2006-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5406         * emacs-lisp/find-func.el (find-function-regexp): Don't match
5407         "define-button-type".
5409         * pcvs.el (cvs-update-header): Fix handling of extra newlines so that
5410         they don't keep accumulating.
5412 2006-10-01  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
5414         * ffap.el (ffap-rfc-path): Change the address of the RFC
5415         repository to ftp.rfc-editor.org, as ds.internic.net seems to be gone.
5417 2006-10-01  Stephen Berman  <Stephen.Berman@gmx.net>
5419         * allout.el (allout-expose-topic): Rectify implementation of "+"
5420         spec, so that bodies are not exposed with headlines.
5422 2006-10-01  Ken Manheimer  <ken.manheimer@gmail.com>
5424         * allout.el (allout-current-depth): Do aberrent check only at or
5425         below doublecheck depth.
5426         (allout-chart-subtree): Make it explicit that LEVELS being nil
5427         means unlimited depth.  Drop undocumented support for LEVELS value
5428         t meaning unlimited depth.  (This is consistent with
5429         allout-chart-to-reveal, but contrary to allout-show-children,
5430         which needs to use nil to default to depth of 1.)
5431         (allout-goto-prefix-doublechecked): Wrap long docstring line.
5432         (allout-chart-to-reveal): Be explicit in docstring about meaning
5433         of nil LEVELS, and drop support for LEVELS value t.
5434         (allout-show-children): Translate the level spec used by this
5435         routine to that used by allout-chart-subtree and
5436         allout-chart-to-reveal.
5437         (allout-show-to-offshoot): Retry once when stuck, after opening
5438         subtree - improvements in discontinuity handling likely will
5439         enable progress.
5441 2006-09-30  Chong Yidong  <cyd@stupidchicken.com>
5443         * wid-edit.el (widget-button-click-moves-point): New variable.
5444         (widget-button-click): If widget-button-click-moves-point is
5445         non-nil, set point after performing the button action
5447         * cus-edit.el (custom-mode): Set widget-button-click-moves-point.
5449 2006-09-30  Martin Rudalics  <rudalics@gmx.at>
5451         * files.el (find-file-existing): Modify to not allow wildcards.
5453 2006-09-30  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
5455         * simple.el (undo-more): When undo information for the region is
5456         exhausted, say "No further undo information FOR REGION".
5458 2006-09-30  Michael Welsh Duggan  <md5i@cs.cmu.edu>
5460         * progmodes/sh-script.el (sh-prev-thing):
5461         Take `sh-leading-keywords' into account.
5463 2006-09-29  Glenn Morris  <rgm@gnu.org>
5465         * custom.el (defcustom): Doc fix.
5467         * calendar/calendar.el (european-calendar-style):
5468         Call european-calendar or american-calendar as needed when set.
5469         (diary-view-entries, list-calendar-holidays): Move autoloads
5470         before use.
5472 2006-09-29  Juri Linkov  <juri@jurta.org>
5474         * progmodes/cperl-mode.el (cperl-after-expr-p): Don't move point
5475         to nil if there is no previous property change.
5477 2006-09-29  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
5479         * cus-edit.el (custom-save-all): Switch to emacs-lisp mode before
5480         saving anything to be sure that `forward-sexp' behaves correctly.
5482 2006-09-29  Chong Yidong  <cyd@stupidchicken.com>
5484         * simple.el (line-move-finish): Ignore field boundaries if the
5485         initial and final points have the same `field' property.
5487 2006-09-29  Kim F. Storm  <storm@cua.dk>
5489         * ido.el (ido-file-internal): Only bind minibuffer-completing-file-name
5490         to t while calling ido-read-internal.
5492 2006-09-29  Carsten Dominik  <dominik@science.uva.nl>
5494         * textmodes/org.el (org-file-remote-p): Get regexp from list.
5495         (org-archive-subtree): Remove erraneous `]' from character list.
5497 2006-09-28  Jonathan Yavner  <jyavner@member.fsf.org>
5499         * ses.el (ses-in-print-area, ses-goto-data, ses-load)
5500         (ses-reconstruct-all): Make undo of "insert row" work by keeping
5501         markers for data-area and parameters-area.
5503 2006-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5505         * progmodes/make-mode.el (makefile-mode): Don't disable jit-lock.
5507         * font-lock.el (font-lock-after-change-function): Refontify next line
5508         as well if end is at BOL.
5509         (font-lock-extend-jit-lock-region-after-change): Be more careful to
5510         only extend the region as much as needed.
5512 2006-09-28  Richard Stallman  <rms@gnu.org>
5514         * comint.el (comint-mode): Bind font-lock-defaults non-nil.
5516         * subr.el (insert-for-yank-1): Handle `font-lock-face' specially.
5518         * international/mule.el (after-insert-file-set-coding):
5519         If VISIT, don't let set-buffer-multibyte make undo info.
5521 2006-09-28  Osamu Yamane  <yamane@green.ocn.ne.jp>  (tiny change)
5523         * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
5524         lines in base64-encoded authentication response.
5526 2006-09-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
5528         * progmode/ebnf2ps.el: Doc fix. Implement arrow spacing and scaling.
5529         (ebnf-version): New version 4.3.
5530         (ebnf-arrow-extra-width, ebnf-arrow-scale): New options.
5531         (ebnf-prologue): Adjust PostScript programming.
5532         (ebnf-begin-file, ebnf-insert-ebnf-prologue, ebnf-terminal-dimension1)
5533         (ebnf-repeat-dimension, ebnf-except-dimension): Adjust code.
5535 2006-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5537         * jit-lock.el (jit-lock-force-redisplay): Rename from
5538         jit-lock-fontify-again, and undo the mistaken change I've just done.
5540         * jit-lock.el (jit-lock-fontify-now): Don't fontify the empty text.
5541         (jit-lock-fontify-again): Don't refontify text that's not displayed.
5543 2006-09-26  Kenichi Handa  <handa@m17n.org>
5545         * startup.el (display-splash-screen): Allow a prefix argument.
5547 2006-09-25  Jason Rumney  <jasonr@gnu.org>
5549         * subr.el (shell-quote-argument): Use DOS logic for Windows
5550         shells with DOS semantics.
5552 2006-09-24  Richard Stallman  <rms@gnu.org>
5554         * progmodes/compile.el (compilation-goto-locus-delete-o): New fn.
5555         (compilation-goto-locus): Use compilation-goto-locus-delete-o
5556         to delete the overlay.  Put it on pre-command-hook.
5558         * emacs-lisp/timer.el (timer-max-repeats): Doc fix.
5560         * startup.el (fancy-splash-screens, normal-splash-screen):
5561         Call the splash buffer *About GNU Emacs*.
5563         * simple.el (next-error-highlight, next-error-highlight-no-select):
5564         Default to 0.5.
5565         (yank-excluded-properties): Add `fontified'.
5567         * font-lock.el (font-lock-compile-keywords): Allow value of
5568         syntax-begin-function to enable paren-column-0 highlighting.
5570 2006-09-24  Chris Moore  <christopher.ian.moore@gmail.com>
5572         * dired.el (dired-build-subdir-alist): When file ends in colon,
5573         don't exit the loop, just disregard that file.
5575 2006-09-24  Chong Yidong  <cyd@stupidchicken.com>
5577         * simple.el (line-move-finish): Handle corner case for fields in
5578         continued lines.
5579         (line-move-1): Remove flawed test for that case.
5581 2006-09-24  Ken Manheimer  <ken.manheimer@gmail.com>
5583         * icomplete.el (icomplete-simple-completing-p): Use the correct
5584         name for the new variable, `icomplete-with-completion-tables'.
5585         (file local variables): Remove superfluous setting.
5587 2006-09-23  Jeff Miller  <jmiller@cablespeed.com>  (tiny change)
5589         * calendar/appt.el (appt-check): Fix typo for appointments just
5590         after midnight.
5592 2006-09-23  Chong Yidong  <cyd@stupidchicken.com>
5594         * help.el (describe-key-briefly, describe-key): Don't expect an
5595         extra up event if a down-event is generated by a popup menu.
5597 2006-09-23  Michal Nazarewicz  <mnazarewicz@gmail.com>  (tiny change)
5599         * textmodes/ispell.el (ispell-change-dictionary): Don't check the
5600         local dictionary when changing the global dictionary.
5602 2006-09-23  Ken Manheimer  <ken.manheimer@gmail.com>
5604         * icomplete.el (icomplete-with-completion-tables): List of
5605         specialized completion tables with which icomplete should
5606         operate.  Include the new `internal-complete-buffer', so icomplete
5607         works with interactive buffer-selection.
5608         (icomplete-simple-completing-p): Add acceptance of specialized
5609         completion tables listed in icomplete-with-completion-tables.
5611 2006-09-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5613         * frame.el (focus-follows-mouse): Set default to nil on Mac.
5615         * startup.el (command-line): Use `custom-reevaluate-setting' for
5616         `focus-follows-mouse'.
5618 2006-09-22  Richard Stallman  <rms@gnu.org>
5620         * cus-edit.el (custom-buffer-create-internal): In `emacs -q',
5621         explain why Save is not available.
5623 2006-09-22  Juanma Barranquero  <lekktu@gmail.com>
5625         * woman.el (woman0-so): Use `let*', not `let'.
5626         (woman-horizontal-line): Remove unbalanced parenthesis.
5628 2006-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5630         * woman.el: Make sure all the end-of-region markers we use have
5631         a non-nil insertion-type.
5632         (woman0-so): Move things around so we can use copy-marker.
5633         (woman0-roff-buffer, woman2-process-escapes-to-eol, woman2-roff-buffer):
5634         Adjust marker type.
5635         (woman2-process-escapes): Check marker type.
5636         (woman-horizontal-line): Dispense with the use of a marker.
5638 2006-09-22  Jay Belanger  <belanger@truman.edu>
5640         * calc/calc-lang.el: Add Greek letters to math-variable-table
5641         property of tex.
5643 2006-09-22  Chong Yidong  <cyd@stupidchicken.com>
5645         * files.el (save-some-buffers-action-alist): Display diff in view-mode.
5647 2006-09-22  Masatake YAMATO  <jet@gyve.org>
5649         * add-log.el (add-log-current-defun): Use `forward-sexp'
5650         instead of `forward-word' to pick c++::symbol.
5651         Reported by Guanpeng Xu <herberteuler@hotmail.com>.
5653 2006-09-22  Kenichi Handa  <handa@m17n.org>
5655         * bindings.el: Fix setting self-insert-command for multibyte
5656         characters in global-map.
5658 2006-09-21  David Kastrup  <dak@gnu.org>
5660         * mouse.el (mouse-posn-property): Fix typo for `event-start' in
5661         doc string.
5663 2006-09-21  Kenichi Handa  <handa@m17n.org>
5665         * language/european.el ("Latin-1"): Add windows-1252 to
5666         coding-priority.
5667         ("German"): Likewise.
5669 2006-09-21  Kim F. Storm  <storm@cua.dk>
5671         * emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
5672         Suggested by Miles Bader.
5674         * emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change.  Use memql
5675         instead of add-to-list in the simple case.
5677 2006-09-20  Kenichi Handa  <handa@m17n.org>
5679         * isearch.el (isearch-process-search-char): Cancel the previous change.
5680         (isearch-search-string): New function.
5681         (isearch-search): Use isearch-search-string.
5682         (isearch-lazy-highlight-search): Likewise.
5684 2006-09-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
5686         * lpr.el (lpr-page-header-switches): Insert `*' at beginning of doc
5687         string to become an option.
5689 2006-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5691         * files.el (find-buffer-visiting): Don't get fooled by a nil inode.
5693 2006-09-20  Kim F. Storm  <storm@cua.dk>
5695         * simple.el (line-move-partial): Call pos-visible-in-window-p with
5696         position t instead of trying both window-end and window-end - 1.
5698 2006-09-20  Carsten Dominik  <dominik@science.uva.nl>
5700         * textmodes/org.el (org-scan-tags): Find end of subtrees also in
5701         hidden trees.
5703 2006-09-20  David Kastrup  <dak@gnu.org>
5705         * mouse.el (mouse-posn-property): Improve doc string.
5706         (mouse-on-link-p): Change buffers for function calls on links.
5708         * menu-bar.el (clipboard-yank): Bomb out in interactive use if
5709         buffer is read-only.
5711 2006-09-20  Ken Manheimer  <ken.manheimer@gmail.com>
5713         * allout.el (allout-unprotected): Let inhibit-read-only only when
5714         buffer-read-only isn't set.
5715         (allout-annotate-hidden): Enable topic annotation during copies even
5716         when the buffer is read-only, eg for topic copies.  Ensure that the loop
5717         advances, even when the span extends beyond the deletion region.
5718         (allout-toggle-subtree-encryption): Use allout-structure-added-hook
5719         rather than allout-exposure-changed-hook, as a stronger assertion.
5720         (allout-keybindings-list): Add bindings for
5721         allout-copy-line-as-kill and allout-copy-topic-as-kill.
5722         (allout-copy-line-as-kill, allout-copy-topic-as-kill):
5723         Copy wrappers for allout-kill-line and allout-kill-topic.
5724         (allout-listify-exposed): Position correctly to accumulate lines.
5726 2006-09-19  Chong Yidong  <cyd@stupidchicken.com>
5728         * simple.el (line-move-1): Escape field boundaries occurring
5729         exactly at point.  Update goal column if constrained to a field.
5730         (line-move-finish): Escape field boundaries occurring exactly at point.
5732 2006-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5734         * mouse.el (mouse-on-link-p): Tentatively fix last change.
5735         (mouse-drag-vertical-line): Remove unused var `wconfig'.
5737 2006-09-19  Kim F. Storm  <storm@cua.dk>
5739         * help.el (describe-key-briefly, describe-key): Simplify printing
5740         of descriptions by using format and %S.  Fix "is undefined"
5741         messages to say "at that spot" for mouse events.
5743         * simple.el (line-move-partial): Optimize.  Try window-line-height
5744         before posn-at-point to get vpos of current line.
5746 2006-09-18  Michael Kifer  <kifer@cs.stonybrook.edu>
5748         * viper.el: Bump up version/date of update to reflect the substantial
5749         changes done in August 2006.
5751         * viper-cmd (viper-next-line-at-bol): Make sure button-at, push-button
5752         are defined.
5754         * ediff-util.el (ediff-add-to-history): New function.
5756         * ediff.el: Use ediff-add-to-history instead of add-to-history.
5758 2006-09-18  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
5760         * textmodes/conf-mode.el (conf-space-mode): Doc fix.
5761         Delete duplicate make-local-variable form.
5762         (conf-space-keywords): Add autoload cookie.
5763         Fix typo (`keywords', not `keyword').
5765 2006-09-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5767         * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
5768         x-gtk-file-dialog-help-text.  Rename x-use-old-gtk-file-dialog
5769         to x-gtk-use-old-file-dialog
5771 2006-09-18  Richard Stallman  <rms@gnu.org>
5773         * wid-edit.el (widget-button-click): Handle non-mouse-motion events
5774         that might come in during mouse tracking.
5776 2006-09-18  Kim F. Storm  <storm@cua.dk>
5778         * simple.el (line-move-partial): Rework 2006-09-15 change to use
5779         new window-line-height function.  Further optimize by not calling
5780         pos-visible-in-window-p for window-end when window-line-height
5781         returns useful information.
5783 2006-09-16  Richard Stallman  <rms@gnu.org>
5785         * textmodes/conf-mode.el (conf-mode-map): Use conf-space-keywords cmd.
5786         (conf-space-mode): Don't handle prefix arg.
5787         Delete conf-space-keywords-override code.
5788         Use add-hook.
5789         (conf-space-keywords): New command.
5790         (conf-space-mode-internal): Be careful with imenu-generic-expression.
5791         Delete conf-space-keywords-override code.
5792         (conf-space-keywords-alist): Doc fix.
5793         (conf-space-font-lock-keywords): Doc fix.
5794         (conf-space-keywords-override): Var deleted.
5796 2006-09-16  Chong Yidong  <cyd@stupidchicken.com>
5798         * startup.el (fancy-splash-screens): Don't switch to the scratch
5799         buffer; it may not be the next buffer.
5801 2006-09-16  Romain Francoise  <romain@orebokech.com>
5803         * saveplace.el (load-save-place-alist-from-file): Use expanded name
5804         in both messages.
5806 2006-09-16  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>
5808         * progmodes/python.el (python-preoutput-filter):
5809         Fix arg order to string-match.
5811 2006-09-16  Richard Stallman  <rms@gnu.org>
5813         * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to
5814         font-lock-compile-keywords.
5816         * font-lock.el (font-lock-compile-keywords): Rename optional arg
5817         to SYNTACTIC-KEYWORDS and reverse the sense.  All callers changed.
5819 2006-09-16  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5821         * cus-start.el (all): Add x-gtk-show-chooser-help-text.
5823         * select.el (xselect-convert-to-string): If UTF8_STRING is requested
5824         and the data doesn't look like UTF8, send STRING instead.
5826 2006-09-16  Agust\e,Am\e(Bn Mart\e,Am\e(Bn  <agustin.martin@hispalinux.es>
5828         * textmodes/flyspell.el (flyspell-check-region-doublons):
5829         New function to detect duplicated words.
5830         (flyspell-large-region): Use it.
5832 2006-09-16  Chong Yidong  <cyd@stupidchicken.com>
5834         * simple.el (line-move-to-column): Revert 2006-08-03 change.
5836 2006-09-16  Eli Zaretskii  <eliz@gnu.org>
5838         * help.el (describe-prefix-bindings): Use let, not let*.
5840 2006-09-16  Ken Manheimer  <ken.manheimer@gmail.com>
5842         * allout.el (allout-regexp, allout-line-boundary-regexp)
5843         (allout-bob-regexp): Correct grouping and boundaries to fix
5844         backwards traversal.
5845         (allout-depth-specific-regexp, allout-depth-one-regexp):
5846         New versions that exploit \\{M\\} regexp syntax, to avoid geometric or
5847         worse time in allout-ascend.
5848         (allout-doublecheck-at-and-shallower): Identify depth threshold
5849         below which topics are checked for and disqualified by containment
5850         discontinuities.
5851         (allout-hotspot-key-handler): Correctly handle multiple-key
5852         strokes.  Remove some unused variables.
5853         (allout-mode-leaders): Clarify that mode-specific comment-start
5854         will be used.
5855         (set-allout-regexp): Correctly regexp-quote allout regexps to
5856         properly accept alternative header-leads and primary bullets with
5857         regexp-specific characters (eg, C "/*", mathematica "(*").
5858         Include new regular expressions among those configured.
5859         (allout-infer-header-lead-and-primary-bullet):
5860         Rename allout-infer-header-lead.
5861         (allout-recent-depth): Manifest as a variable as well as a function.
5862         (allout-prefix-data): Simplify into an inline instead of a macro,
5863         assuming current match data rather than being explicitly passed
5864         it.  Establish allout-recent-depth value as well as
5865         allout-recent-prefix-beginning and allout-recent-prefix-end.
5866         (allout-aberrant-container-p): True when an item's immediate
5867         offspring discontinuously contained.  Useful for disqualifying
5868         unintended topic prefixes, likely at low depths.
5869         (allout-goto-prefix-doublechecked): Elaborate version of
5870         allout-goto-prefix which disqualifies aberrant pseudo-items.
5871         (allout-pre-next-prefix): Layer on top of lower-level routines, to
5872         get disqualification of aberrant containers.
5873         (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
5874         containers.
5875         (allout-beginning-of-current-entry): Position at start of buffer
5876         when in container (depth 0) entry.
5877         (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
5878         (allout-current-bullet): Strip text properties.
5879         (allout-get-prefix-bullet): Use right match groups.
5880         (allout-beginning-of-line, allout-next-heading):
5881         Disqualify aberrant containers.
5882         (allout-previous-heading): Disqualify aberrant containers, and
5883         change to regular (rather than inline) function, to allow
5884         self-recursion.
5885         (allout-get-invisibility-overlay): Increment so progress is made
5886         when the first overlay is not the sought one.
5887         (allout-end-of-prefix): Disqualify aberrant containers.
5888         (allout-end-of-line): Cycle something like allout-beginning-of-line.
5889         (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
5890         outline.el outlines) functional again.  Change the primary bullet
5891         along with the header-lead - level 1 new-style bullets now work.
5892         Engage allout-before-change-handler in mainline Emacs, not just
5893         XEmacs, to do undo handling.
5894         (allout-before-change-handler): Expose undo changes occurring in
5895         hidden regions.  Use allout-get-invisibility-overlay instead of
5896         reimplementing it inline.
5897         (allout-chart-subtree): Use start rather than end of prefix in
5898         charts.  Use allout-recent-depth variable.
5899         (allout-chart-siblings): Disqualify aberrant topics.
5900         (allout-beginning-of-current-entry): Position correctly.
5901         (allout-ascend): Use new allout-depth-specific-regexp and
5902         allout-depth-one-regexp for linear instead of O(N^2) or worse
5903         behavior.
5904         (allout-ascend-to-depth): Depend on allout-ascend, rather than
5905         reimplementing an algorithm.
5906         (allout-up-current-level): Depend on allout-ascend, rather than
5907         reimplementing an algorithm.  Return to start-point if we fail.
5908         (allout-descend-to-depth): Use allout-recent-depth variable
5909         instead of function.
5910         (allout-next-sibling): On traversal of numerous intervening
5911         topics, resort to economical allout-next-sibling-leap.
5912         (allout-next-sibling-leap): Specialized version of
5913         allout-next-sibling that uses allout-ascend cleverly, to depend on
5914         a regexp search to leap large numbers of contained topics, rather
5915         than arbitrarily many one-by-one traversals.
5916         (allout-next-visible-heading): Disqualify aberrant topics.
5917         (allout-previous-visible-heading): Position consistently when
5918         interactive.
5919         (allout-forward-current-level): Base on allout-previous-sibling
5920         rather than (differently) reimplmenting the algorithm.  Remove some
5921         unused variables.
5922         (allout-solicit-alternate-bullet): Present default choice stripped
5923         of text properties.
5924         (allout-rebullet-heading): Use bullet stripped of text properties.
5925         Register changes using allout-exposure-change-hook.
5926         Disregard aberrant topics.
5927         (allout-shift-in): With universal-argument, make topic a peer of
5928         it's former offspring.  Simplify the code by separating out
5929         allout-shift-out functionality.
5930         (allout-shift-out): With universal-argument, make offspring peers
5931         of their former container, and its siblings.  Implement the
5932         functionality here, rather than inappropriately muddling the
5933         implementation of allout-shift-in.
5934         (allout-rebullet-topic): Respect additional argument for new
5935         parent-child separation function.
5936         (allout-yank-processing): Use allout-ascend directly.
5937         (allout-show-entry): Disqualify aberrant topics.
5938         (allout-show-children): Handle discontinuous children gracefully,
5939         extending the depth being revealed to expose them and posting a
5940         message indicating the situation.
5941         (allout-show-to-offshoot): Remove obsolete and incorrect comment.
5942         Leave cursor in correct position.
5943         (allout-hide-current-subtree): Use allout-ascend directly.
5944         Disqualify aberrant topics.
5945         (allout-kill-line, allout-kill-topic): Preserve exposure layout in
5946         a way that the yanks can restore it, as used to happen.
5947         (allout-yank-processing): Restore exposure layout as recorded by
5948         allout-kill-*, as used to happen.
5949         (allout-annotate-hidden, allout-hide-by-annotation): New routines
5950         for preseving and restoring exposure layout across kills.
5951         (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
5952         (allout-encrypt-string): Strip text properties.
5953         Rearranged order and outline-headings for some of the
5954         miscellaneous functions.
5955         (allout-resolve-xref): No need to quote the error name in the
5956         condition-case handler section.
5957         (allout-flatten): Classic recursive (and recursively intensive,
5958         without tail-recursion) list-flattener, needed by allout-shift-out
5959         when confronted with discontinuous children.
5961 2006-09-16  Jason Rumney  <jasonr@gnu.org>
5963         * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
5964         on ms-windows.
5965         (dnd-open-unc-file): Remove.
5966         (dnd-open-local-file): Mention in doc string that it also handles
5967         remote files if the system natively supports unc file-names.
5969 2006-09-15  Kim F. Storm  <storm@cua.dk>
5971         * help.el (describe-key): Handle C-h k in *Help* buffer; collect
5972         all necessary information about the event before erasing *Help*.
5974         * simple.el (line-move-partial): Use window-line-visiblity to
5975         quickly check whether last line is partially visible, and only do
5976         the hard (and slow) part in that case.
5978 2006-09-15  Jay Belanger  <belanger@truman.edu>
5980         * COPYING: Replace "Library Public License" by "Lesser Public
5981         License" throughout.
5983 2006-09-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5985         * term/x-win.el (x-menu-bar-open): New function for F10.
5987 2006-09-15  Chong Yidong  <cyd@stupidchicken.com>
5989         * progmodes/compile.el (compilation-error-regexp-alist-alist):
5990         Disallow filenames containing " -" to avoid confusion with libtool
5991         compilation messages.  Suggested by Stefan Monnier.
5993 2006-09-15  David Kastrup  <dak@gnu.org>
5995         * mouse-sel.el (mouse-sel-follow-link-p): Use event position
5996         instead of buffer position for `mouse-on-link-p'.
5998         * mouse.el (mouse-posn-property): New function looking up the
5999         properties at a click position in overlays and text properties in
6000         either buffer or strings.
6001         (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
6002         of both `follow-link' as well as `mouse-face' properties.
6003         (mouse-drag-track): Check `mouse-on-link-p' on event position, not
6004         buffer position.
6006         * help.el (describe-key-briefly): When reading a down-event on
6007         mode lines or scroll bar, swallow the following up event, too.
6008         Use the new mouse sensitity of `key-binding' for lookup.
6009         (describe-key): The same here.
6011 2006-09-15  Juanma Barranquero  <lekktu@gmail.com>
6013         * play/life.el (life-patterns): Add a few more interesting patterns.
6014         (life-setup): Force `show-trailing-whitespace' to nil.
6016 2006-09-14  Richard Stallman  <rms@gnu.org>
6018         * startup.el (fancy-splash-text): Change text to improve alignment.
6019         (fancy-splash-screens): Don't set non-standard tab width.
6020         Bind cursor-type temporarily, and make it easy to patch to
6021         preserve the splash buffer.
6022         (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
6023         (fancy-splash-screens): Display echo-area message explicitly.
6024         Don't set fancy-splash-help-echo.
6026         * simple.el (line-number-mode): Group mode-line instead of
6027         editing-basics.
6028         (column-number-mode, size-indication-mode): Likewise.
6030         * faces.el (mode-line-faces): Group mode-line instead of modeline.
6032         * time.el (display-time): Group mode-line instead of modeline.
6034         * cus-edit.el (mode-line): Rename from modeline.  All uses changed.
6036 2006-09-14  Chong Yidong  <cyd@stupidchicken.com>
6038         * startup.el (fancy-splash-text): Move editing instructions to
6039         fancy-splash-head.
6040         (fancy-splash-head): Issue editing instructions.
6041         (fancy-splash-screens): Fixup whitespace.
6043 2006-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6045         * bindings.el (mode-line-buffer-identification-keymap):
6046         Remove duplicate line.
6048 2006-09-14  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
6050         * ido.el (ido-ignore-item-p): Allow any kind of functions in
6051         ignore lists.
6053 2006-09-14  Kim F. Storm  <storm@cua.dk>
6055         * jit-lock.el (jit-lock-fontify-again): New function.
6056         (jit-lock-fontify-now): Use it instead of lambda form.
6058 2006-09-13  Agustin Martin  <agustin.martin@hispalinux.es>
6060         * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
6061         (flyspell-auto-correct-word): Make ispell-filter local to these
6062         functions.  Check that ispell-filter has new stuff before calling
6063         ispell-parse-output.
6065 2006-09-13  Kim F. Storm  <storm@cua.dk>
6067         * simple.el (line-move-partial): Optimize.
6069 2006-09-13  Richard Stallman  <rms@gnu.org>
6071         * thingatpt.el (thing-at-point-bounds-of-url-at-point):
6072         Delete spurious backquote.
6074 2006-09-07  Ryan Yeske  <rcyeske@gmail.com>
6076         * net/rcirc.el (rcirc-print): Fix last change.
6078 2006-09-12  Jay Belanger  <belanger@truman.edu>
6080         * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
6082 2006-09-07  Ryan Yeske  <rcyeske@gmail.com>
6084         * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
6085         rcirc-show-maximum-output.
6086         (rcirc-mode): Remove window-scroll-function hook.
6087         (rcirc-scroll-to-bottom): Remove function.
6088         (rcirc-print): Recenter so point stays at the bottom of the window
6089         if point was already there.
6091 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
6093         * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
6094         not to "t".
6095         * progmodes/compile.el (compilation-start): Likewise.
6096         * progmodes/idlwave.el (idlwave-rescan-asynchronously):
6097         Don't use expand-file-name on invocation-directory, since this
6098         might mishandle special characters in invocation-directory.
6100 2006-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6102         * pcvs-defs.el: Remove * in defcustom's docstrings.
6104 2006-09-12  Nick Roberts  <nickrob@snap.net.nz>
6106         * progmodes/compile.el (compilation-directory-properties):
6107         Doc fix for help-echo.
6109 2006-09-12  Lars Hansen  <larsh@soem.dk>
6111         * desktop.el (desktop-read): Add comment.
6113 2006-09-12  Kim F. Storm  <storm@cua.dk>
6115         * simple.el (next-error-highlight, next-error-highlight-no-select):
6116         Fix spelling error.
6118         * subr.el (sit-for): Rework to use input-pending-p and cond.
6119         Return nil input is pending on entry also for SECONDS <= 0.
6120         (while-no-input): Use input-pending-p instead of sit-for.
6122 2006-09-11  Richard Stallman  <rms@gnu.org>
6124         * simple.el (next-error-highlight, next-error-highlight-no-select):
6125         Fix custom type and doc strings.
6127 2006-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6129         * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
6130         (diff-apply-hunk): Use it to ask for confirmation.
6132 2006-09-11  Reiner Steib  <Reiner.Steib@gmx.de>
6134         * emacs-lisp/cl.el (pushnew): Add missing `,'.
6136 2006-09-11  David Kastrup  <dak@gnu.org>
6138         * help.el (string-key-binding, describe-key-briefly)
6139         (describe-key): Remove `string-key-binding' and its callers since
6140         `key-binding' already caters for the proper lookup now.
6142 2006-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6144         * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
6145         (cfengine-mode): Use it.  Fix \ syntax to be like /.
6147         * bindings.el (mode-line-buffer-identification-keymap):
6148         Move initialization into declaration.
6150 2006-09-10  Kim F. Storm  <storm@cua.dk>
6152         * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
6153         (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
6154         (ido-delete-file-at-head): Pass head of ido-matches through ido-name
6155         in case of merged directories.  Reported by Micha\e,Ak\e(Bl Cadilhac.
6157 2006-09-10  Richard Stallman  <rms@gnu.org>
6159         * dired-aux.el: Handle errors in recursive copy usefully.
6160         (dired-create-files-failures): New variable.
6161         (dired-copy-file): Remove condition-case.
6162         (dired-copy-file-recursive): Check for errors on all file
6163         operations, and add them to dired-create-files-failures.
6164         Check file file-date-erorr here too.
6165         (dired-create-files): Check dired-create-files-failures
6166         and report those errors too.
6168         * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
6170         * subr.el (add-to-list): New argument COMPARE-FN.
6172 2006-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
6174         * filecache.el (file-cache-add-directory)
6175         (file-cache-add-directory-list, file-cache-add-file)
6176         (file-cache-add-directory-using-find)
6177         (file-cache-add-directory-using-locate)
6178         (file-cache-add-directory-recursively): Add autoloads.
6180 2006-09-09  Richard Stallman  <rms@gnu.org>
6182         * textmodes/conf-mode.el (conf-space-mode):
6183         Use hack-local-variables-hook instead of calling hack-local-variables.
6184         (conf-space-keywords-override): New variable.
6185         (conf-space-mode-internal): New subroutine.  Reinit Font Lock mode.
6186         (conf-space-mode): Always make conf-space-keywords and
6187         conf-space-keywords-override local.
6188         Call conf-space-mode-internal directly as well as via hook.
6190 2006-09-09  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>  (tiny change)
6192         * progmodes/python.el (python-font-lock-keywords): Add `self' and other
6193         quasi-keywords.
6195 2006-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6197         * progmodes/python.el: Quieten the compiler about hippie-expand vars.
6198         (python-send-string): Be slightly more careful about adding \n.
6200         * startup.el (normal-splash-screen): Don't display the buffer if we'll
6201         kill it right away anyway.
6203 2006-09-09  Eli Zaretskii  <eliz@gnu.org>
6205         * international/codepage.el (cp850-decode-table): Fix a few codes.
6206         (cp858-decode-table): New variable.
6208 2006-09-09  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
6210         * net/ldap.el (ldap-search-internal): Doc fix.
6212 2006-09-09  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
6214         * play/life.el (life-display-generation): Test for input manually if
6215         `sleeptime' is negative or null.
6217         * lpr.el (lpr-page-header-switches): Page title switch is one of them.
6218         (print-region-1): Substitute `%s' with the page title.
6220 2006-09-09  Matt Hodges  <MPHodges@member.fsf.org>
6222         * locate.el (locate-current-search): New variable.
6223         (locate): Set buffer local value.  Use current buffer if it is
6224         in Locate mode.
6225         (locate-mode): Disable undo here.
6226         (locate-do-setup): Use locate-current-filter from buffer to be killed.
6227         (locate-update): Use locate-current-search and locate-current-filter.
6229 2006-09-08  David Kastrup  <dak@gnu.org>
6231         * desktop.el (desktop-read): When loading a desktop, disable
6232         saving it while the load progresses, and switch off a pending lazy
6233         load by calling `desktop-lazy-abort'.
6235 2006-08-27  Martin Rudalics  <rudalics@gmx.at>
6237         * window.el (mouse-autoselect-window-timer)
6238         (mouse-autoselect-window-position)
6239         (mouse-autoselect-window-window)
6240         (mouse-autoselect-window-now): New vars.
6241         (mouse-autoselect-window-cancel)
6242         (mouse-autoselect-window-select)
6243         (mouse-autoselect-window-start): New functions.
6244         (handle-select-window): Call `mouse-autoselect-window-start' when
6245         delayed window autoselection is enabled.
6247         * cus-start.el (mouse-autoselect-window): Handle delayed window
6248         autoselection.
6250         * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
6251         commands after which it is allowed to print in the echo area.
6253 2006-09-08  Richard Stallman  <rms@gnu.org>
6255         * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
6257         * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
6258         (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
6260         * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
6261         (cancel-timer-internal): Add doc string.
6262         (cancel-function-timers): Doc fix.
6263         (with-timeout-handler, timer-event-last*): Add doc strings.
6265         * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
6267         * files.el (risky-local-variable-p): Match ...-bindat-spec.
6269         * dired.el (dired-log-summary): Add doc string.
6271         * cus-edit.el (custom-menu-create): Bind deactivate-mark here.
6272         (custom-group-menu-create): Not here.
6274 2006-09-08  Carsten Dominik  <dominik@science.uva.nl>
6276         * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
6278 2006-09-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6280         * term/mac-win.el (show-hide-font-panel): New HI command ID symbol.
6281         (mac-apple-event-map): Define its handler.
6283 2006-09-07  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
6285         * net/ldap.el (ldap-search-internal): Handle `auth' key.
6287 2006-09-07  Magnus Henoch  <mange@freemail.hu>
6289         * net/rcirc.el (rcirc-activity-string): Don't quote value in case
6290         clause.
6292 2006-09-07  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
6294         * info.el (Info-index): Bind completion-ignore-case.
6296 2006-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6298         * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
6299         previous commit.
6300         (inferior-prolog-guess-flavor): New fun left out of previous commit.
6301         (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
6302         burp in dedicated windows.
6303         (inferior-prolog-self-insert-command): New command.
6304         (inferior-prolog-mode-map): Use it.
6306 2006-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
6308         * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
6310         * international/code-pages.el: Add cp858.
6312 2006-09-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6314         * dnd.el: Fix bootstrapping.
6316 2006-09-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6318         * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
6319         (dnd-open-remote-url): New function.
6320         (dnd-open-remote-file-function): Set to dnd-open-remote-url if
6321         not windows-nt.
6323 2006-09-07  Jason Rumney  <jasonr@gnu.org>
6325         * dnd.el (dnd-open-remote-file-function): New variable.
6326         (dnd-open-unc-file): New function.
6327         (dnd-open-file): Call dnd-open-remote-file-function if set.
6329 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6331         * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
6332         pgg-passphrase-coding-system rather than locale-coding-system.
6333         * pgg-def.el (pgg-passphrase-coding-system): New user option.
6335 2006-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6337         * progmodes/prolog.el: Remove * in docstrings.
6338         (prolog-program-name): Add SWI prolog.
6339         (prolog-mode-menu): New menu.
6340         (prolog-mode): Set comment-add.
6341         (prolog-indent-line): Simplify.  Use indent-line-to.
6342         (inferior-prolog-buffer): New var.
6343         (inferior-prolog-run, inferior-prolog-process): New funs.
6344         (run-prolog, switch-to-prolog): Rewrite, using them.
6345         (prolog-consult-region): Use inferior-prolog-buffer.
6346         (inferior-prolog-load-file): New function.
6347         (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
6349         * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
6350         last word, if it's not the end of the paragraph.
6352         * files.el (abbreviate-file-name): Don't mistakenly match newlines in
6353         file name.
6355 2006-09-06  Ralf Angeli  <angeli@caeruleus.net>
6357         * frame.el (display-mm-dimensions-alist): New defcustom.
6358         (display-mm-height, display-mm-width): Use it.
6360 2006-09-06  Simon Josefsson  <jas@extundo.com>
6362         * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
6364 2006-09-06  Nick Roberts  <nickrob@snap.net.nz>
6366         * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
6367         (gdb-var-list-children-regexp-1): Tweak regexps to catch full
6368         string values.
6370 2006-09-06  Kim F. Storm  <storm@cua.dk>
6372         * simple.el (line-move-partial): New function to do vscrolling for
6373         partially visible images / tall lines.  Rewrite based on code
6374         previously in line-move.  Simplify backwards vscrolling.
6375         (line-move): Use it.  Simplify.
6377 2006-09-05  Kim F. Storm  <storm@cua.dk>
6379         * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
6381 2006-09-05  Chong Yidong  <cyd@stupidchicken.com>
6383         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6384         Process the `gcc-include' after the `gnu' rule.
6386 2006-09-05  Kim F. Storm  <storm@cua.dk>
6388         * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
6390 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
6392         * pgg.el (pgg-clear-string): Alias to clear-string for backward
6393         compatibility.
6395         * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
6396         inhibit-redisplay; encode passphrase with locale-coding-system.
6398 2006-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
6400         * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
6402 2006-09-05  Nick Roberts  <nickrob@snap.net.nz>
6404         * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
6405         (gdb-var-list-children-regexp): Make type field optional.
6407         * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
6408         e.g public, protected in C++.
6410 2006-09-04  John Paul Wallington  <jpw@pobox.com>
6412         * simple.el (completion-show-help): New defcustom.
6413         (completion-setup-function): Heed it.
6415 2006-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
6417         * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
6419 2006-09-04  Richard Stallman  <rms@gnu.org>
6421         * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
6422         (rsf-min-region-to-spam-list): Doc fix.
6423         (rsf-add-content-type-field): Doc fix.
6425         * simple.el (kill-region): Explicitly test there is a region.
6427 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
6429         * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
6430         sendmail in several common directories.
6432         * mail/sendmail.el (sendmail-program): Moved here from paths.el.
6434         * paths.el (sendmail-program): Removed.
6436 2006-09-04  Daiki Ueno  <ueno@unixuser.org>
6438         * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
6439         Das.  http://article.gmane.org/gmane.emacs.gnus.general/49947
6440         http://article.gmane.org/gmane.emacs.gnus.general/50457
6442 2006-09-03  Chong Yidong  <cyd@stupidchicken.com>
6444         * cus-edit.el (custom-group-menu-create): Avoid deactivating the
6445         mark after running the menu filter.
6447 2006-09-03  Juri Linkov  <juri@jurta.org>
6449         * international/quail.el (quail-defrule-internal): Add a check
6450         if a key is a vector.
6452 2006-09-02  Juri Linkov  <juri@jurta.org>
6454         * man.el (Man-topic-history): New variable.
6455         (man): Use it.
6457         * woman.el (woman-topic-history): Change defvar to defvaralias
6458         for symbol `Man-topic-history'.
6460         * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
6461         `comint-last-output-start' is a marker by using `markerp' and
6462         check if it has a position by using `marker-position', and use
6463         this position for `goto-char'.
6465         * international/quail.el (quail-defrule-internal): Add missing
6466         `error' call for null key.
6468 2006-09-02  Ryan Yeske  <rcyeske@gmail.com>
6470         * rcirc.el (rcirc-keywords): New variable.
6471         (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
6472         (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
6473         variables.
6474         (rcirc-responses-no-activity): New function.
6475         (rcirc-handler-generic): Check for responses in above.
6476         (rcirc-process-command): Add ?: character to arguments of raw
6477         server commands.
6478         (rcirc-format-response-string): Use `rcirc-bright-nicks' and
6479         `rcirc-dim-nicks'.
6480         (rcirc-gray-toggle): Remove unused variable.
6481         (rcirc-print): Remove some tracking logic, which is moved into
6482         markup functions.
6483         (rcirc-activity-types): Was `rcirc-activity-type', now a list of
6484         types.
6485         (rcirc-activity-string): Look for 'keyword in activity-types.
6486         (rcirc-window-configuration-change): Don't erase overlay-arrow
6487         unnecessarily.
6488         (rcirc-add-or-remove): New function.
6489         (rcirc-cmd-ignore): Use it.
6490         (rcirc-message-leader): Remove unused function.
6491         (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
6492         (rcirc-add-face): New function.
6493         (rcirc-facify): Use rcirc-add-face.
6494         (rcirc-url-regexp): Add parens.
6495         (rcirc-map-regexp): Remove function.
6496         (rcirc-mangle-regexp): Remove function.
6497         (rcirc-markup-text-functions): New variable.
6498         (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
6499         (rcirc-markup-body-text, rcirc-markup-attributes)
6500         (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
6501         (rcirc-markup-bright-nicks): New markup handler functions.
6502         (rcirc-nick-in-message-full-line): New face.
6503         (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
6504         (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
6506 2006-09-02  Martin Rudalics  <rudalics@gmx.at>
6508         * cus-start.el (hscroll-margin, hscroll-step)
6509         (mode-line-in-non-selected-windows, mouse-autoselect-window)
6510         (x-use-underline-position-properties): Change version to "22.1"
6511         since they will appear there for the first time.
6513 2006-09-01  Chong Yidong  <cyd@stupidchicken.com>
6515         * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
6517 2006-08-31  Richard Stallman  <rms@gnu.org>
6519         * cus-edit.el (custom-save-variables): Slight cleanup.
6520         (Custom-no-edit): Renamed from custom-no-edit.
6521         (Custom-newline): Renamed from custom-newline.
6522         (custom-mode-map): Use new names.
6524         * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
6525         about customization, rather than M-x customize, in the doc string
6526         made for the defcustom.
6528         * emacs-lisp/trace.el (trace-function-background): Doc fix.
6530 2006-08-31  Romain Francoise  <romain@orebokech.com>
6532         * dired-x.el (dired-guess-shell-alist-default): Update.
6534 2006-08-31  Michael Mauger  <mmaug@yahoo.com>
6536         * custom.el (custom-theme-set-variables): Autoload packages before
6537         sorting the variables.
6539 2006-08-30  Michael Kifer  <kifer@cs.stonybrook.edu>
6541         * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
6542         chars if XEmacs.
6543         (viper-after-change-undo-hook): Check if undo-in-progress is bound.
6545 2006-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6547         * progmodes/python.el (python-eldoc-function): Re-enable quit while
6548         waiting for process.
6550 2006-08-30  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6552         * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
6553         results in ASCII-only string, encode original one directly.
6555 2006-08-29  Romain Francoise  <romain@orebokech.com>
6557         * startup.el (normal-splash-screen, fancy-splash-screens):
6558         Make buffer read-only and arrange to enter view mode if necessary.
6560 2006-08-29  Chong Yidong  <cyd@stupidchicken.com>
6562         * hl-line.el (hl-line): New face.
6563         (hl-line-face): Use it.
6565         * image-mode.el (image-mode): Fix last fix.
6566         Suggested by Kim F. Storm.
6568 2006-08-29  Michael Albinus  <michael.albinus@gmx.de>
6570         Sync with Tramp 2.0.54.
6572         * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
6573         of `=', because `tramp-get-remote-gid' might not always return an
6574         integer when expected.
6575         (tramp-register-file-name-handlers): `partial-completion-mode' is
6576         unknown to XEmacs.
6577         (tramp-time-diff): Don't use `floor', it might fail for large
6578         differences.
6579         (tramp-handle-make-auto-save-file-name): For Emacs 21, set
6580         `tramp-auto-save-directory' if unset in order to guarantee unique
6581         auto-save file names.
6583 2006-08-28  Chong Yidong  <cyd@stupidchicken.com>
6585         * image-mode.el (image-mode): Display image as text on a terminal.
6587 2006-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6589         * progmodes/python.el (python-send-command): Simplify.
6590         (run-python): Don't generate a new buffer unless `new' was specified.
6591         Make sure we send `import emacs' to the proper process.
6593         * progmodes/python.el (python-send-command): Don't wait for the command
6594         to terminate.  Don't fiddle with compilation-parsing-end.
6596 2006-08-28  Chong Yidong  <cyd@stupidchicken.com>
6598         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6599         Insert commentary after first line summary.
6601         * woman.el (woman-follow): New function, based on `man-follow'.
6602         (woman-mode-map): Use it.
6604         * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
6605         since ibuffer-do-sort-by-recency does not define a sorter.
6607 2006-08-28  Kim F. Storm  <storm@cua.dk>
6609         * find-dired.el (find-dired): Use shell-quote-argument to properly
6610         escape ( and ) args.  Also use it on {} and ; args in default
6611         value of find-ls-option string.
6612         (find-grep-dired): Use shell-quote-argument on {} and ; args.
6614 2006-08-27  Michael Olson  <mwolson@gnu.org>
6616         * emacs-lisp/tq.el: Small grammar fix in comments.
6617         (tq-enqueue): Check for existence of queue rather than the
6618         head queue item's question, which was a no-op.
6619         (tq-filter, tq-process-buffer): Make sure the process buffer
6620         exists before making it the current buffer.
6622 2006-08-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6624         * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
6625         (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
6626         (special-event-map): Apply 2006-08-16 change for x-win.el.
6628 2006-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6630         * progmodes/python.el (python-send-receive): Wait in the
6631         process's buffer so as to check the right buffer-local variables.
6633 2006-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6635         * emacs-lisp/checkdoc.el: Remove * in defcustoms.
6636         (defgroup checkdoc): Move to beginning.
6638         * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
6639         (python-preoutput-continuation): Remove.
6640         (python-preoutput-filter): Simplify correspondingly.
6641         Remove handling of _emacs_ok.  Make sure we skip _emacs_out's prompts.
6642         Loop around to catch embedded _emacs_out output.
6643         (run-python): Send the import&print command on a single line.
6644         (python-send-command): Send command&print on a single line.
6645         (python-send-string): Only add double \n if needed.
6646         (python-send-receive): Loop until the result comes.
6647         (python-mode-running): Defvar it.
6648         (python-setup-brm): Remove unused var `menu'.
6649         Only bind py-mode-map and `features' around brm-init.
6650         (python-calculate-indentation): Remove unused var `point'.
6651         (python-beginning-of-defun): Remove unused var `def-line'.
6653 2006-08-25  Richard Stallman  <rms@gnu.org>
6655         * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
6657 2006-08-25  Michael Kifer  <kifer@cs.stonybrook.edu>
6659         * viper.el (viper-set-hooks): Use frame bindings for
6660         viper-vi-state-cursor-color.
6661         (viper-non-hook-settings): Don't set default
6662         mode-line-buffer-identification.
6664         * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
6665         (viper-set-cursor-color-according-to-state)
6666         (viper-get-saved-cursor-color-in-replace-mode)
6667         (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
6668         viper-emacs-state-cursor-color.
6670         * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
6671         (viper-undo): Use point if undo-beg-posn is nil.
6672         (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
6673         (viper-after-change-undo-hook): Don't use
6674         viper-emacs-state-cursor-color by default.
6675         (viper-undo): More sensible positioning after undo.
6677         * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
6678         (viper-emacs-state-cursor-color): Default to nil, since this feature
6679         doesn't work well yet.
6681         * ediff-mult.el (ediff-intersect-directories)
6682         (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
6683         always expand filenames.
6685 2006-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6687         * tumme.el: Remove * in defcustoms's docstrings.
6689 2006-08-24  Chong Yidong  <cyd@stupidchicken.com>
6691         * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
6692         Accept internal time format for SECS arg.
6693         (timer-relative-time): Doc fix.
6695         * jit-lock.el: "Stealth fontification by requeuing timers" patch,
6696         adapted from Martin Rudalics.
6697         (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
6698         (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
6699         (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
6700         using sit-for.
6702 2006-08-24  Francesc Rocher  <francesc.rocher@gmail.com>
6704         * cus-start.el (all): Add `overline-margin' and
6705         `x-underline-at-descent-line'.
6707 2006-08-24  Kim F. Storm  <storm@cua.dk>
6709         * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
6710         to mean "use find -exec"; nil now unambiguously means auto-detect.
6711         (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
6712         Use shell-quote-argument to build grep-find-command and
6713         grep-find-template.
6714         (rgrep): Use shell-quote-argument to properly quote arguments to find.
6715         Reported by Tom Seddon.
6717 2006-08-23  Chong Yidong  <cyd@stupidchicken.com>
6719         * startup.el (fancy-splash-head): Give instructions for dismissing
6720         the splash screen for default startup too.
6721         (display-startup-echo-area-message, fancy-splash-screens)
6722         (use-fancy-splash-screens-p): New arg hide-on-input.  If nil, show
6723         all splash text at once and keep the splash buffer around.
6724         (command-line-1): Give display-startup-echo-area-message a t arg.
6726 2006-08-23  Carsten Dominik  <dominik@science.uva.nl>
6728         * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
6729         gnus frame is selected.
6731 2006-08-23  Nick Roberts  <nickrob@snap.net.nz>
6733         * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
6735 2006-08-22  Kim F. Storm  <storm@cua.dk>
6737         * ido.el (ido-set-matches-1): Fix full matching for subdirs.
6738         Add suffix matching for subdirs.
6740 2006-08-22  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
6742         * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
6743         mouse-yank-at-point is non-nil.
6745 2006-08-22  Nick Roberts  <nickrob@snap.net.nz>
6747         * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
6748         a bit wider and remove fringes to fit initial output on line.
6750 2006-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6752         * frame.el (blink-cursor-end): Only ignore the error we care about.
6753         (blink-cursor-mode): Use blink-cursor-end to simplify the code.
6755 2006-08-21  Richard Stallman  <rms@gnu.org>
6757         * whitespace.el (whitespace-cleanup): Doc fix.
6759 2006-08-20  Ryan Yeske  <rcyeske@gmail.com>
6761         * net/rcirc.el (rcirc-show-maximum-output): New var.
6762         (rcirc-buffer-process): If no buffer argument is supplied, use
6763         current-buffer.
6764         (rcirc-complete-nick): Complete to the last completed nick first.
6765         (rcirc-mode): Preserve the value of `rcirc-urls' across
6766         connections.  Setup scroll function.
6767         (rcirc-scroll-to-bottom): New function.
6768         (rcirc-print): Use nick syntax around regexp work.
6769         Notice dim-nicks speaking only if they say our nick.
6770         (rcirc-update-activity-string): Do not show the modeline indicator
6771         if there are no live rcirc processes.
6772         (rcirc-cmd-ignore): Ignore case.
6773         (rcirc-browse-url-at-point): Fix off-by-one error.
6775 2006-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6777         * progmodes/python.el: Remove * in defcustom docstrings.
6778         (run-python, python-proc, python-try-complete): Use derived-mode-p.
6779         (python-mode): Set tab-width and indent-tabs-mode.
6781 2006-08-20  Dave Love  <fx@gnu.org>
6783         * progmodes/python.el: Update to Dave Love's latest version.
6784         (python-font-lock-keywords, python-mode): Don't use
6785         font-lock-syntax-table, but match symbol elements explicitly instead.
6786         (python-mode-map): Add help, and a few more key bindings.
6787         (python-skip-comments/blanks): Move out of comments as well.
6788         (python-continuation-line-p): Behave better with unbalanced parens.
6789         (python-blank-line-p): New fun.
6790         (python-open-block-statement-p): Don't use a heuristic.
6791         (python-outdent-p): Better handle blocks-in-the-same-line.
6792         (python-calculate-indentation): Misc improvements.
6793         (python-comment-indent): Remove.
6794         (python-block-pairs): New var.
6795         (python-first-word): New fun.
6796         (python-indentation-levels): Handle more common cases.
6797         (python-indent-line-1): Add `leave' argument.
6798         (python-indent-region): New fun.
6799         (python-skip-out): New fun.
6800         (python-beginning-of-statement, python-end-of-statement): Use it.
6801         (python-next-statement): Return correct count even at eob.
6802         (python-end-of-block): Fix paren-typo.
6803         (python-imenu-create-index): Add module variables.
6804         (run-python): Add `new' arg.
6805         Check we're at a prompt before returning.
6806         (python-send-command): Move to end of buffer.
6807         Wait for prompt to return.
6808         (python-set-proc): New fun.
6809         (python-imports): New var.
6810         (python-describe-symbol): Use it.  Adjust to new interface of `ehelp'.
6811         (python-eldoc-function): Try to move out of arg list.
6812         (python-outline-level): Offset by 1.
6813         (python-find-imports): New fun.
6814         (python-symbol-completions): Use python-imports.
6815         (python-module-path, ffap-alist): Add support for ffap.
6816         (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
6817         (python-insert-*, python-default-template, python-expand-template):
6818         Add templates/skeletons.
6819         (python-setup-brm): Support for Bicycle Repair Man.
6820         (python-abbrev-syntax-table): New var.
6821         (python-abbrev-pc-hook, python-pea-hook): New funs.
6823 2006-08-20  Chong Yidong  <cyd@stupidchicken.com>
6825         * frame.el (blink-cursor-start): Set timer first.
6826         (blink-cursor-end): Ignore timer cancelling errors.
6827         Suggested by Ken Manheimer.
6829 2006-08-20  Juanma Barranquero  <lekktu@gmail.com>
6831         * newcomment.el (comment-box): Call `comment-normalize-vars'.
6832         Add autoload cookie.
6834 2006-08-20  Richard Stallman  <rms@gnu.org>
6836         * simple.el (line-number-at-pos): Doc fix.
6838         * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
6839         timer-activate-when-idle, so timer can run before Emacs becomes
6840         non-idle again.
6842 2006-08-18  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
6844         * whitespace.el (whitespace-cleanup-internal): New optional arg
6845         REGION-ONLY.  If it's non-nil, modify the message to the user
6846         accordingly.
6847         (whitespace-cleanup-region): Call whitespace-cleanup-internal with
6848         a non-nil argument.
6850 2006-08-18  Gustav H\e,Ae\e(Bllberg  <gustav@gmail.com>  (tiny change)
6852         * rect.el (spaces-string): Simplify and add doc string.
6854 2006-08-17  Romain Francoise  <romain@orebokech.com>
6856         * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
6858 2006-08-17  Richard Stallman  <rms@gnu.org>
6860         * compare-w.el (compare-windows): lambda's take an arg and pass
6861         it to compare-windows-skip-whitespace.
6863 2006-08-17  Martin Rudalics  <rudalics@gmx.at>
6865         * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
6866         the right buffer.
6868 2006-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6870         * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
6871         removed files.
6873 2006-08-17  Nick Roberts  <nickrob@snap.net.nz>
6875         * progmodes/gdb-ui.el (gdb-locals-watch-map)
6876         (gdb-locals-watch-map-1): Suppress keymap first.
6877         (gdb-edit-locals-map-1): New variable.
6878         (gdb-edit-locals-value): New function.
6879         (gdb-stack-list-locals-handler): Use them.
6881 2006-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6883         * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
6884         cursor would normally be drawn in the fringe.
6886         * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
6887         Reported by Martin Rudalics <rudalics@gmx.at>.
6889 2006-08-16  Richard Stallman  <rms@gnu.org>
6891         * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
6892         (special-event-map): Process drag-n-drop events this way.
6894         * simple.el (move-beginning-of-line): Test whether fields
6895         would prevent motion back to line's first visible character.
6896         If so, stop where the fields would stop the motion.
6898         * newcomment.el (comment-indent): Fully update INDENT
6899         before checking to see if it will change the text.
6901         * cus-edit.el (custom-newline): New function.
6902         (custom-mode-map): Bind newline to custom-newline.
6904         * compare-w.el (compare-windows): Factor compare-ignore-whitespace
6905         into ignore-whitespace.
6906         Check each buffer for its skip-function.
6907         Handle compare-windows-skip-whitespace special-case test
6908         by returning t from default skip function.
6910 2006-08-15  Carsten Dominik  <dominik@science.uva.nl>
6912         * textmodes/org.el (org-clock-special-range)
6913         (org-clock-update-time-maybe): New functions.
6914         (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
6915         not only a-z.
6916         (org-agenda-get-blocks): Allow multiple blocks per headline.
6917         (org-timestamp-change): Call `org-clock-update-time-maybe'.
6918         (org-export-html-title-format)
6919         (org-export-html-toplevel-hlevel): New options.
6920         (org-export-language-setup): Add support for Czech.
6921         (org-mode, org-insert-todo-heading, org-find-visible)
6922         (org-find-invisible, org-invisible-p, org-invisible-p2)
6923         (org-back-to-heading, org-on-heading-p, org-up-heading-all)
6924         (org-show-subtree, org-show-entry, org-make-options-regexp):
6925         Remove compatibility support for old outline-mode.
6926         (org-check-occur-regexp): Funtion removed.
6927         (org-on-heading-p, org-back-to-heading): Made defalias.
6928         (org-set-local): New defsubst.
6929         (org-set-regexps-and-options, org-mode)
6930         (org-set-font-lock-defaults, org-edit-agenda-file-list)
6931         (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
6932         (org-remember-apply-template, org-table-edit-field)
6933         (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
6934         (org-set-autofill-regexps): Use `org-set-local'.
6935         (org-table-eval-formula): Fix bug with parsing of display flags.
6937 2006-08-15  Nick Roberts  <nickrob@snap.net.nz>
6939         * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
6940         frame with fringe arrow.  Suggested by Simon Marshall
6941         <simon.marshall@misys.com>.
6942         (gdb-stack-position): New variable.
6943         (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
6944         (gdb-frames-mode): Set gdb-stack-position to nil.
6945         Add to overlay-arrow-variable-list
6946         (gdb-reset): Delete gdb-stack-position from above list.
6948 2006-08-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6950         * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
6951         read only.
6953 2006-08-13  Romain Francoise  <romain@orebokech.com>
6955         * cus-theme.el (customize-create-theme)
6956         (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
6958         * filesets.el (filesets-add-buffer): Ditto.
6960         * pcvs.el (cvs-change-cvsroot): Ditto.
6962 2006-08-13  Nick Roberts  <nickrob@snap.net.nz>
6964         * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
6965         (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
6966         (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
6967         expressions.
6968         (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
6969         Only search till end of line.
6970         Add face to function names in case of no filename.
6971         Add face to variable names of watchpoints.
6973 2006-08-12  Robert Thorpe  <rthorpe@realworldtech.com>  (tiny change)
6975         * cus-start.el <indent-tabs-mode>: Move to the `indent'
6976         customization group.
6978 2006-08-12  Ken Manheimer  <ken.manheimer@gmail.com>
6980         * allout.el (allout-prior-bindings, allout-added-bindings):
6981         Remove, after long deprecation.
6982         (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
6983         Add customization vars controlling allout-beginning-of-line and
6984         allout-end-of-line conveniences.
6985         (allout-header-prefix, allout-use-mode-specific-leader)
6986         (allout-use-mode-specific-leader, allout-mode-leaders):
6987         Revise docstrings.
6988         (allout-infer-header-lead): Change to be an alias for
6989         allout-infer-header-lead-and-primary-bullet.
6990         (allout-infer-header-lead-and-primary-bullet): New version of
6991         allout-infer-header-lead which assigns the primary bullet to the
6992         same as the header lead, when its being changed.
6993         (allout-infer-body-reindent): Apply regexp-quote instead of
6994         unconditionally prepending "\\", so that all literal
6995         allout-header-prefix and allout-primary-bullet strings are
6996         properly handled.
6997         (allout-add-resumptions): Add optional qualifier for extending or
6998         appending to existing values, rather than replacing them.
6999         (allout-view-change-hook): Clarify docstring.
7000         (allout-exposure-change-hook): Take explicit arguments, via
7001         run-hook-with-args.
7002         (allout-structure-added-hook)
7003         (allout-structure-deleted-hook)
7004         (allout-structure-shifted-hook): New hooks analogous to
7005         allout-exposure-change-hook for other kinds of structural outline
7006         edits.
7007         (allout-encryption-plaintext-sanitization-regexps): New encryption
7008         customization variable, by which cooperating modes can provde
7009         massage of the plaintext without actually being passed it.
7010         (allout-encryption-ciphertext-rejection-regexps)
7011         (allout-encryption-ciphertext-rejection-ceiling): New encryption
7012         customization variables, by which cooperating modes can prohibit
7013         rare but possible ciphertext patterns from fouling their
7014         operation, with actually being passed the ciphertext.
7015         (allout-mode): Run activation and deactivation hooks after the
7016         minor-mode variable has been toggled, to clarify the mode
7017         disposition.  The new encryption ciphertext rejection variable is
7018         used to ensure that the ciphertext does not contain text that
7019         would be recognized as outline structural elements by allout.
7020         Substite allout-beginning-of-line and allout-end-of-line for
7021         conventionall beginning-of-line and end-of-line bindings.
7022         If allout-old-style-prefixes is non-nil, don't nullify it on mode
7023         activation!
7024         (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
7025         (allout-end-of-line): Respect `allout-end-of-line-cycles'.
7026         (allout-chart-subtree): Implement new mode, charting only the
7027         visible items in the subtree, when new 'visible' parameter is non-nil.
7028         (allout-end-of-subtree): Properly handle the last item in the buffer.
7029         (allout-pre-command-business, allout-command-counter):
7030         Increment an advertised counter so that cooperating enhancements can
7031         track revisions of items.
7032         (allout-open-topic): Run allout-structure-added-hook with suitable
7033         arguments.
7034         (allout-shift-in): Run allout-structure-shifted-hook with suitable
7035         arguments.
7036         (allout-shift-out): Fix doubling for negative args and ensure call
7037         of allout-structure-shifted-hook by solely using allout-shift-in.
7038         (allout-kill-line, allout-kill-topic):
7039         Run allout-structure-deleted-hook with suitable arguments.
7040         (allout-yank-processing): Run allout-structure-added-hook with
7041         proper arguments.
7042         (allout-yank): Enclose activity in allout-unprotected.
7043         (allout-flag-region): Run allout-exposure-change-hook with
7044         suitable arguments, instead of making the callee infer the arguments.
7045         (allout-encrypt-string):
7046         Support allout-encryption-plaintext-sanitization-regexps,
7047         allout-encryption-ciphertext-rejection-regexps, and
7048         allout-encryption-ciphertext-rejection-ceiling.  Indicate correct
7049         en/de cryption mode in symmetric encryption failure message.
7050         (allout-obtain-passphrase): Use copy-sequence to get a distinct
7051         copy of the passphrase, and don't zero it or we'll corrupt the
7052         stashed copy.
7053         (allout-create-encryption-passphrase-verifier)
7054         (allout-verify-passphrase): Respect the new signature for
7055         allout-encrypt-string.
7056         (allout-get-configvar-values): Convenience for getting a
7057         configuration variable value and handling its absence gracefully.
7059 2006-08-11  Romain Francoise  <romain@orebokech.com>
7061         * obsolete/zone-mode.el: Delete.
7063 2006-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7065         * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
7067 2006-08-11  Thien-Thi Nguyen  <ttn@gnu.org>
7069         * emacs-lisp/bindat.el (bindat-ip-to-string):
7070         Use `format-network-address' if possible.
7072 2006-08-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7074         * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
7076 2006-08-10  Chong Yidong  <cyd@stupidchicken.com>
7078         * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
7079         restore unread-command-events here.
7080         (edebug-display): Do it here, to detect sit-for interruptions.
7082 2006-08-10  Romain Francoise  <romain@orebokech.com>
7084         * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
7085         (dns-mode-soa-auto-increment-serial): New user option.
7086         (dns-mode-soa-maybe-increment-serial): New function.
7087         (dns-mode): Add the latter to `write-contents-functions'.
7089         * obsolete/zone-mode.el: Move to obsolete/ from net/.
7090         Delete autoload cookies.
7092 2006-08-10  John Wiegley  <johnw@newartisans.com>
7094         * eshell/em-glob.el (eshell-glob-chars-list)
7095         (eshell-glob-translate-alist): Add support for [^g] in character globs.
7097 2006-08-10  Richard Stallman  <rms@gnu.org>
7099         * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
7100         (facemenu-set-face): Doc fix.
7101         (facemenu-listed-faces): Doc fix.
7103 2006-08-09  Chong Yidong  <cyd@stupidchicken.com>
7105         * avoid.el (mouse-avoidance-animating-pointer): New var.
7106         (mouse-avoidance-nudge-mouse): Use it.
7107         (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
7108         (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
7109         (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
7110         Don't activate if currently animating.  All callers changed.
7112 2006-08-09  John Wiegley  <johnw@newartisans.com>
7114         * calendar/timeclock.el (timeclock-use-elapsed): Added a new
7115         variable, which causes timeclock to report elapsed time worked,
7116         instead of just work remaining.
7118 2006-08-09  Kenichi Handa  <handa@m17n.org>
7120         * international/latexenc.el (latexenc-find-file-coding-system):
7121         Fix for the case that the 2nd element of arg-list is a cons.
7123 2006-08-08  Chong Yidong  <cyd@stupidchicken.com>
7125         * info.el (Info-fontify-node): Handle preceding `in' for note
7126         reference hiding rules.
7128 2006-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7130         * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
7131         mistake a closing " for an opening one.
7133 2006-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
7135         * term/xterm.el (terminal-init-xterm): Add more key bindings.
7137 2006-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7139         * complete.el (PC-do-completion): Filter out completions matching
7140         completion-ignored-extensions before checking whether there are
7141         multiple completions.
7142         Don't use `list' unnecessarily when building completion tables.
7144 2006-08-06  Richard Stallman  <rms@gnu.org>
7146         * help.el (describe-mode): Make minor mode list more concise.
7148 2006-08-05  Chong Yidong  <cyd@stupidchicken.com>
7150         * bindings.el: Give mode-line-format, mode-line-modes, and
7151         mode-line-position `standard-value' properties.
7153 2006-08-05  Eli Zaretskii  <eliz@gnu.org>
7155         * buff-menu.el (list-buffers-noselect): For Info buffers, use
7156         "(file)node" instead of the file name.
7158 2006-08-05  Richard Stallman  <rms@gnu.org>
7160         * faces.el (escape-glyph): Doc fix.
7162 2006-08-04  Kenichi Handa  <handa@m17n.org>
7164         * international/mule-diag.el (describe-font): Improve docstring
7165         and error message.  Use frame-parameter (not frame-parameters).
7167 2006-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7169         * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
7170         Correctly mark the end-of-docstring char.
7172 2006-08-03  Chong Yidong  <cyd@stupidchicken.com>
7174         * simple.el (line-move-to-column): Constrain move-to-column to
7175         current field.
7177 2006-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7179         * font-lock.el (font-lock-beg, font-lock-end)
7180         (font-lock-extend-region-functions): New vars.
7181         (font-lock-extend-region-multiline)
7182         (font-lock-extend-region-wholelines): New functions.
7183         (font-lock-default-fontify-region): Use them.
7184         (font-lock-extend-jit-lock-region-after-change): Only round up
7185         if font-lock-default-fontify-region will do it as well.
7187         * font-lock.el (font-lock-extend-after-change-region-function):
7188         Rename from font-lock-extend-region-function.
7189         (font-lock-extend-region): Remove by inlining at call sites.
7190         (font-lock-after-change-function): Don't needlessly round up to a whole
7191         number of lines.
7192         (font-lock-extend-jit-lock-region-after-change): Be more careful about
7193         the boundary conditions and the interactions between the various ways
7194         to extend the region.
7196 2006-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7198         * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
7199         modification status when forcing the second redisplay.
7201 2006-08-03  Kim F. Storm  <storm@cua.dk>
7203         * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
7205 2006-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7207         * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
7208         doesn't look like a file name.
7210         * complete.el (PC-expand-many-files): Avoid signalling an error when
7211         the current directory doesn't exist.  Reported by Micha\e,Ak\e(Bl Cadilhac.
7213 2006-08-02  Andreas Schwab  <schwab@suse.de>
7215         * bindings.el (mode-line-format): Simplify reference to vc-mode.
7217 2006-08-02  Nick Roberts  <nickrob@snap.net.nz>
7219         * bindings.el (map): Make mode-line-buffer-identification-keymap
7220         before defining propertized-buffer-identification.
7222 2006-08-01  Richard Stallman  <rms@gnu.org>
7224         * bindings.el (mode-line-format): Adjust spacing around vc-mode.
7226 2006-08-02  Nick Roberts  <nickrob@snap.net.nz>
7228         * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
7229         default value.
7230         (gdb-find-source-frame): New function.
7231         (menu): Add to menu bar.
7233 2006-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7235         * font-core.el (font-lock-extend-region-function)
7236         (font-lock-extend-region): Move to font-lock.el.
7238         * font-lock.el (font-lock-extend-region-function)
7239         (font-lock-extend-region): Move from font-core.el.  Simplify.
7241         * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
7242         if needed.
7243         (jit-lock-start, jit-lock-end): New dynamic scoped vars.
7244         (jit-lock-after-change-extend-region-functions): New hook.
7245         (jit-lock-after-change): Use it instead of hard-coding font-lock code.
7247         * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
7248         (font-lock-turn-on-thing-lock): Use it.
7250         * longlines.el (longlines-show-region): Make it work on read-only
7251         buffers as well.
7253 2006-08-01  Nick Roberts  <nickrob@snap.net.nz>
7255         * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
7257 2006-07-31  Richard Stallman  <rms@gnu.org>
7259         * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
7260         (vhdl-speedbar-display-projects): Update old obsolete
7261         speedbar variable names.
7263 2006-07-31  Nick Roberts  <nickrob@snap.net.nz>
7265         * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
7266         (gdb-stopped): Use it.
7268         * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
7270 2006-07-29  Chong Yidong  <cyd@stupidchicken.com>
7272         * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
7273         for load-history elements.
7275 2006-07-29  Eli Zaretskii  <eliz@gnu.org>
7277         * files.el (convert-standard-filename): For Cygwin, replace
7278         characters not allowed in Windows file names.
7279         (make-auto-save-file-name): Add Cygwin to the list of systems
7280         where the auto-save file name needs to be run through
7281         convert-standard-filename.
7283 2006-07-29  Lennart Borgman  <lennart.borgman.073@student.lu.se>
7285         * window.el (bw-get-tree): Don't integerp subtree if it's nil.
7287 2006-07-28  Richard Stallman  <rms@gnu.org>
7289         * bindings.el (mode-line-frame-identification)
7290         (propertized-buffer-identification): Centralize the code
7291         to initialize the variable.
7293         * progmodes/grep.el (grep-default-command): Catch errors from
7294         wildcard-to-regexp.
7296 2006-07-29  Kim F. Storm  <storm@cua.dk>
7298         * progmodes/grep.el (grep-tag-default): New function.
7299         (grep-default-command, grep-read-regexp): Use it.
7300         (grep-read-files): Use car of grep-files-history or grep-files-aliases
7301         as default if nothing else applies.
7303 2006-07-28  Bill Atkins  <atkinw@rpi.edu>  (tiny change)
7305         * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
7306         Throw error if buffer is not in Dired and Wdired mode, respectively.
7308 2006-07-28  Chong Yidong  <cyd@stupidchicken.com>
7310         * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
7311         self-insert-command keys don't activate buttons.
7312         (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
7314 2006-07-29  Nick Roberts  <nickrob@snap.net.nz>
7316         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
7317         faces for enable character.
7319 2006-07-28  Nick Roberts  <nickrob@snap.net.nz>
7321         * Makefile.in (recompile): Update comment to reflect change
7322         on 2004-04-21.
7324 2006-07-27  Richard Stallman  <rms@gnu.org>
7326         * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
7327         (customize-package-emacs-version): Change msg when pkg has no entry.
7328         (custom-no-edit): On a button, do like widget-button-press.
7330 2006-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
7332         * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
7333         S-tab and C-S-tab.
7335 2006-07-28  Nick Roberts  <nickrob@snap.net.nz>
7337         * progmodes/which-func.el (which-function): Fix documentation/
7338         comment typo.
7340 2006-07-26  Richard Stallman  <rms@gnu.org>
7342         * textmodes/ispell.el (ispell-word): If we replace the word,
7343         move point to the end.  Insert before deleting.
7345 2006-07-26  Chong Yidong  <cyd@stupidchicken.com>
7347         * subr.el (sit-for): Use new SECONDS arg of read-event instead of
7348         a timer.
7350 2006-07-26  Mathias Dahl  <mathias.dahl@gmail.com>
7352         * tumme.el (tumme-backward-image): Add prefix argument.  Add error
7353         when at first image.
7354         (tumme-forward-image): Add prefix argument.  Add error when at last
7355         image.
7357 2006-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7359         * tabify.el (tabify-regexp): Use more specific regexps.
7360         (tabify): Avoid modifying the buffer unnecessarily.
7362 2006-07-25  Mathias Dahl  <mathias.dahl@gmail.com>
7364         * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
7365         (tumme-format-properties-string): Handle empty `buf'.
7366         (tumme-get-comment): Change variable names inside `let'.
7367         Add missing `let' variable that cause font-lock problems.
7368         (tumme-write-comments): Change variable names inside `let'.
7369         Add missing `let' variable that cause font-lock problems.
7370         (tumme-forward-image): Rename from `tumme-forward-char'.
7371         (tumme-backward-image): Rename from `tumme-backward-char'.
7373 2006-07-25  Masatake YAMATO  <jet@gyve.org>
7375         * progmodes/ld-script.el (ld-script-keywords)
7376         (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
7377         and add comments.
7379 2006-07-25  Nick Roberts  <nickrob@snap.net.nz>
7381         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
7382         (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
7383         (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
7384         for status indicator.
7386 2006-07-24  Richard Stallman  <rms@gnu.org>
7388         * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
7390         * subr.el (dolist, dotimes): Use interned symbols for locals.
7391         (--dotimes-limit--, --dolist-tail--): New defvars.
7392         (looking-back): Doc fix.
7394         * replace.el (replace-match-string-symbols): Handle dotted lists.
7396 2006-07-24  Mathias Dahl  <mathias.dahl@gmail.com>
7398         * tumme.el (tumme-write-tags): Add.
7399         (tumme-write-comments): Add.
7400         (tumme-tag-files): Change to use `tumme-write-tags'.
7401         (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
7402         (tumme-dired-comment-files): Change to use `tumme-write-comments'.
7403         (tumme-save-information-from-widgets): Change to use
7404         `tumme-write-comments' and `tumme-write-tags'.
7405         (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
7406         (tumme-write-tag): Remove.
7407         (tumme-write-comment): Remove.
7408         (tumme-display-previous-thumbnail-original): Remove empty line.
7409         (tumme-widget-list): Add punctuation.
7411 2006-07-24  Mathias Dahl  <mathias.dahl@gmail.com>
7413         * tumme.el (tumme-line-up): Add an extra check for end of buffer.
7415 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7417         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7418         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org>
7419         and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
7421 2006-07-23  Thien-Thi Nguyen  <ttn@gnu.org>
7423         * mouse.el (mouse-on-link-p): Doc fix.
7425 2006-07-23  Nick Roberts  <nickrob@snap.net.nz>
7427         * emacs-lisp/find-func.el (find-function-search-for-symbol):
7428         Handle "C-h f `".
7430 2006-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
7432         * ibuffer.el (ibuffer-formats): Use left alignment for the mode
7433         column.
7435 2006-07-22  Matt Hodges  <MPHodges@member.fsf.org>
7437         * textmodes/table.el: Add move-beginning-of-line and
7438         move-end-of-line to Point Motion Only Group.
7440 2006-07-22  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
7442         * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
7444 2006-07-22  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
7446         * startup.el (user-mail-address): Initialize from the `EMAIL'
7447         environment variable first.  Document this.
7448         (command-line): Ditto.
7450 2006-07-22  Nick Roberts  <nickrob@snap.net.nz>
7452         * help-mode.el (help-function-def, help-variable-def)
7453         (help-face-def): Print a message in the minibuffer.
7455 2006-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
7457         * term/xterm.el (terminal-init-xterm): Fix key bindings
7458         syntax.  Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
7460 2006-07-21  Eli Zaretskii  <eliz@gnu.org>
7462         * dos-w32.el (find-buffer-file-type-coding-system): Support calls
7463         where `(nth 1 command)' is a cons cell.  Doc fix.
7465         * textmodes/po.el (po-find-charset): Doc fix.
7467 2006-07-21  Ken Manheimer  <ken.manheimer@gmail.com>
7469         * allout.el (allout-unprotected, allout-e-o-prefix-p)
7470         (allout-beginning-of-current-line, allout-end-of-current-line)
7471         (allout-next-visible-heading, allout-open-topic)
7472         (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
7473         (allout-flag-current-subtree, allout-show-to-offshoot)
7474         (allout-hide-current-entry, allout-show-current-branches)
7475         (allout-hide-region-body, allout-old-expose-topic)
7476         (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
7477         (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
7478         containing `beginning-of-line' and `end-of-line' with
7479         `inhibit-field-text-motion' t.
7481 2006-07-21  Eli Zaretskii  <eliz@gnu.org>
7483         * frame.el (focus-follows-mouse): Document that it doesn't have
7484         any effect on MS-Windows.
7486 2006-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7488         * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
7490 2006-07-20  Jay Belanger  <belanger@truman.edu>
7492         * calc.el (calc-previous-alg-entry): Remove variable.
7494         * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
7495         New variables.
7496         (calc-alg-entry): Use `calc-alg-entry-history'.
7497         (calc-do-quick-calc): Use `calc-quick-calc-history'.
7498         Remove reference to `calc-previous-alg-entry'.
7499         (calcAlg-edit, calcAlg-enter): Remove reference to
7500         `calc-previous-alg-entry'.
7501         (calcAlg-previous): Use `previous-history-element' instead of
7502         `calc-previous-alg-entry'.
7503         (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
7504         Change keybinding for `calcAlg-plus-minus', add keybindings for
7505         `previous-history-element' and `next-history-element'.
7507         * calc-rewr.el (calc-match): Remove reference to
7508         `calc-previous-alg-entry'.
7510         * calc-sel.el (calc-selection-history): New variable.
7511         (calc-enter-selection, calc-sel-mult-both-sides)
7512         (calc-sel-add-both-sides): Use `calc-selection-history'.
7514         * calc-map.el (calc-get-operator-history): New variable.
7515         (calc-get-operator): Use `calc-get-operator-history'.
7517         * calcalg3.el (calc-curve-fit-history): New variable.
7518         (calc-curve-fit): Use `calc-curve-fit-history'.
7520 2006-07-20  Kenichi Handa  <handa@m17n.org>
7522         * international/mule-cmds.el (select-safe-coding-system): Fix the
7523         way of deciding eol-type of the coding system.
7525 2006-07-20  Alan Mackenzie  <acm@muc.de>
7527         * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
7528         (c-lang-setvar): New macro.
7529         (c-make-init-lang-vars-fun): Use the initialization forms in
7530         c-emacs-variable-inits in addition to those in c-lang-variable-inits.
7531         (comment-start, comment-end, comment-start-skip): Change these from
7532         c-lang-defvar's to c-lang-setvar's.
7534         * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
7535         which calls make-local-variable on the elements of
7536         c-emacs-variable-inits.
7537         (c-init-language-vars-for): Call this new macro.
7539 2006-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7541         * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
7542         Try to rule out false positives due to time stamps.
7543         (compilation-mode-font-lock-keywords): Remove rules made redundant
7544         because of the above change.  Add `segmentation fault' to the known and
7545         highlighted compilation termination messages.
7547 2006-07-19  Kim F. Storm  <storm@cua.dk>
7549         * progmodes/grep.el (grep-find-ignored-directories):
7550         Add .svn and _darcs to list.
7552 2006-07-19  Mathias Dahl  <mathias.dahl@gmail.com>
7554         * dired.el (dired-mode-map): Add key binding `C-te' for
7555         `tumme-dired-edit-comment-and-tags'.
7557         * tumme.el (tumme-display-thumbnail-original-image): Make sure
7558         image display buffer is displayed before call to
7559         `tumme-display-image.
7560         (tumme-dired-display-image): Make sure image display buffer is
7561         displayed before call to `tumme-display-image.
7562         (tumme-mouse-display-image): Make sure image display buffer is
7563         displayed before call to `tumme-display-image.
7564         (tumme-widget-list): Add.
7565         (tumme-dired-edit-comment-and-tags): Add.
7566         (tumme-save-information-from-widgets): Add.
7568 2006-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7570         * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
7572 2006-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7574         * progmodes/sh-script.el (sh-font-lock-keywords-1):
7575         Revert inadvertently installed patch hunk.
7577         * progmodes/compile.el (compilation-find-file): Handle the
7578         cases where the user selects a non-existent file.
7580 2006-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7582         * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
7584 2006-07-17  Chong Yidong  <cyd@stupidchicken.com>
7586         * subr.el (sit-for): Just sleep-for if noninteractive.
7588 2006-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7590         * emacs-lisp/autoload.el (make-autoload): Use new arg.
7592         * custom.el (custom-autoload): Add `noset' argument.
7593         (custom-push-theme): Don't autoload the variable, let callers do it.
7594         (custom-theme-set-variables): Autoload the variable if necessary.
7596         * cus-edit.el (custom-variable-state-set): If the variable was
7597         originally set outside custom, but to the same value as the default,
7598         consider it to be standard.
7600         * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
7601         file *before* telling Emacs to add the autoloads, in case it fails.
7603         * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
7604         Use `cond', push', and `dolist'.
7606 2006-07-17  Richard Stallman  <rms@gnu.org>
7608         * image-mode.el (tar-superior-buffer, archive-superior-buffer):
7609         Add defvars to silence warnings.
7611 2006-07-17  Chong Yidong  <cyd@stupidchicken.com>
7613         * progmodes/compile.el (compilation-mode-font-lock-keywords):
7614         Don't highlight "Compiling file" messages as error.
7616         * dired-aux.el (dired-compress-file): Confirm again if gzipped
7617         file already exists.
7619 2006-07-16  Thien-Thi Nguyen  <ttn@gnu.org>
7621         * find-file.el (ff-special-constructs): Doc fix.  Also, for C/C++
7622         entry, don't assign to free var; simply return the extracted filename.
7623         (ff-treat-as-special): Incorporate common preamble from callers.
7624         (ff-other-file-name, ff-find-the-other-file):
7625         Update call to ff-treat-as-special.
7627         * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
7629 2006-07-16  Mathias Dahl  <mathias.dahl@gmail.com>
7631         * tumme.el (tumme-get-comment): Fix bug.
7633 2006-07-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7635         * files.el: Remove spurious * in docstrings.
7637 2006-07-14  Ken Manheimer  <ken.manheimer@gmail.com>
7639         * allout.el (allout-run-unit-tests-on-load): Rectify docstring
7640         grammar.
7641         (allout-beginning-of-current-line): Beware beginning of buffer.
7642         Also, a comment is simplified.
7643         (allout-hotspot-key-handler): Only set allout-post-goto-bullet
7644         when appropriate.  (This fix enables use for other than
7645         bullet-hotspot operation.)
7646         (allout-hide-current-subtree): While escalating to sibling-close,
7647         make sure to situate on a topic.
7649 2006-07-14  Kim F. Storm  <storm@cua.dk>
7651         * emulation/cua-base.el (cua-delete-selection)
7652         (cua-toggle-set-mark): New defcustoms.
7653         (cua-rectangle-modifier-key): Add `alt' modifier.
7654         (cua-replace-region): Don't delete if cua-delete-selection is nil.
7655         (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
7656         Suggested by Klaus Zeitler <kzeitler@lucent.com>.
7658         * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
7660 2006-07-14  Ken Manheimer  <ken.manheimer@gmail.com>
7662         * allout.el: Require 'cl during byte-compilation/interactive load,
7663         for the `assert' macro.
7664         (allout-mode-deactivate-hook): New hook, run when allout mode
7665         deactivates.
7666         (allout-developer): New allout customization subgroup.
7667         (allout-run-unit-tests-on-load): New allout-developer
7668         customization variable, when true allout unit tests are run towards
7669         end of file load/eval.
7670         (allout-inhibit-auto-fill): Disable auto-fill activity even during
7671         auto-fill-mode.
7672         (allout-resumptions): Remove, to be replaced by...
7673         (allout-add-resumptions): Register variable settings to be
7674         reinstated by `allout-do-resumptions'.  The settings are made
7675         buffer-local, but the locality/globality of the suspended setting
7676         is restored on resumption.
7677         (allout-do-resumptions): Reinstate all settings suspended using
7678         `allout-add-resumptions'.
7679         (allout-test-resumptions): Unit tests (and intermediate variables)
7680         for resumptions.
7681         (allout-tests-globally-unbound, allout-tests-globally-true)
7682         (allout-tests-locally-true): Intermediate variables for
7683         resumptions unit tests.
7684         (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
7685         (allout-exposure-category): Replaces 'allout-overlay-category variable.
7686         (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
7687         instead of retired `allout-resumptions'.  For hook functions, use
7688         `local' parameter so hook settings are created and removed as
7689         buffer-local settings.  Revise (resumptions) setting
7690         auto-fill-function so it is set only if already active.  (The
7691         related fill-function settings are all made in either case, so
7692         that activating auto-fill-mode activity will have the custom
7693         allout-mode behaviors (hanging indent on topics, if configured for it).
7694         Remove all allout-exposure-category overlays on mode deactivation.
7695         (allout-hotspot-key-handler): New function extracted from
7696         `allout-pre-command-business', so the functionality can be used
7697         for other purposes, eg as a binding in an overlay.
7698         (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
7699         (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
7700         customization variable.
7701         (allout-run-unit-tests): Run the (currently quite small)
7702         repertoire of unit tests.  Called just before the provide iff user
7703         has customized `allout-run-unit-tests-on-load' non-nil.
7705 2006-07-14  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
7707         * emacs-lisp/authors.el (authors-aliases): Update.
7709 2006-07-14  Nick Roberts  <nickrob@snap.net.nz>
7711         * progmodes/gdb-ui.el (gdb-display-buffer): Check for
7712         gdb-source-window.  Add dedicated argument.
7713         (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
7714         (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
7715         (gdb-display-threads-buffer, gdb-display-memory-buffer)
7716         (gdb-display-locals-buffer): Use it.
7718         * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
7719         Set gdb-source-window.
7721 2006-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7723         * emacs-lisp/autoload.el (make-autoload): Remove special handling of
7724         minor modes, redundant with the custom-autoload line above.
7726 2006-07-12  Chong Yidong  <cyd@stupidchicken.com>
7728         * longlines.el (longlines-post-command-function): Handle open-line too.
7730 2006-07-12  Richard Stallman  <rms@gnu.org>
7732         * progmodes/grep.el (grep-last-buffer): Doc fix.
7734         * info.el (Info-try-follow-nearest-node): Doc fix.
7736         * emacs-lisp/edebug.el (edebug-instrument-function):
7737         Err if find-function-noselect gives no position.
7739         * emacs-lisp/find-func.el (find-function-search-for-symbol):
7740         If can't find definition, return nil for position.
7741         (find-function-do-it): Handle new return value
7742         of find-definition-noselect.
7743         (find-definition-noselect, find-variable-noselect): Doc fix.
7744         (find-function-noselect): Doc fix.
7746         * help-mode.el (help-variable-def): Handle find-variable-noselect
7747         returning no position.
7748         (help-function-def): Likewise for find-function-search-for-symbol.
7749         (help-face-def): Likewise.
7751         * help-fns.el (describe-variable): Handle find-variable-noselect
7752         returning no position.
7754         * files.el (locate-file-completion): Avoid duplicates in result.
7756         * cus-edit.el (custom-no-edit): New command.
7757         (custom-mode-map): Remap to custom-no-edit instead of
7758         using suppress-keymap.
7760 2006-07-12  Nick Roberts  <nickrob@snap.net.nz>
7762         * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
7763         (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
7764         (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
7766         * thumbs.el (thumbs-call-convert): Use shell-command-switch.
7768 2006-07-11  Kim F. Storm  <storm@cua.dk>
7770         * ido.el (ido-copy-current-file-name): Use buffer-name if
7771         buffer-file-name is nil.
7773 2006-07-11  Chong Yidong  <cyd@stupidchicken.com>
7775         * simple.el (undo-ask-before-discard): Set to nil.
7777         * vc.el (vc-exec-after): Don't delete process manually.
7778         (vc-print-log): Run log-view-mode in process sentinel inside
7779         inhibit-read-only.  Don't shrink window due to timing issues.
7781         * progmodes/ebrowse.el (ebrowse-display-member-buffer):
7782         Avoid using with-output-to-temp-buffer, which clobbers local vars.
7784 2006-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7786         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7787         Fix ambiguity introduced by last change.
7788         (compilation-find-file): Move save-excursion to where it may
7789         make sense.  Fix a left over `find-file'.
7791 2006-07-11  Robert J. Chassell  <bob@rattlesnake.com>
7793         * textmodes/texinfmt.el (texinfo-format-separate-node):
7794         Insert a string before point, which fits documentation, not after.
7795         (texinfo-multitable-item): In a multitable row, insert any
7796         additional needed @tabs and spaces.
7798 2006-07-11  Nick Roberts  <nickrob@snap.net.nz>
7800         * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
7801         (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
7802         (tumme-set-exif-data, tumme-get-exif-data): Use call-process
7803         instead of shell-command.
7804         (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
7805         (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
7806         (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
7807         (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
7808         (tumme-thumbnail-set-image-description, tumme-gallery-generate)
7809         (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
7811 2006-07-11  Kim F. Storm  <storm@cua.dk>
7813         * subr.el (sit-for): Doc fix.  Specify normal arg list using fn-form.
7814         Remove special case for seconds < 0.  Use (redisplay t) instead.
7816 2006-07-10  Chong Yidong  <cyd@stupidchicken.com>
7818         * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
7819         avoid compilation error.
7821         * subr.el (sit-for): New function.
7823         * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
7825 2006-07-10  Richard Stallman  <rms@gnu.org>
7827         * ldefs-boot.el (edebug): Update page.
7829 2006-07-10  Kim F. Storm  <storm@cua.dk>
7831         * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
7832         to FOR-RELEASE and TODO.
7834 2006-07-10  Romain Francoise  <romain@orebokech.com>
7836         * emacs-lisp/authors.el (authors-aliases): Update.
7838 2006-07-10  Alan Mackenzie  <acm@muc.de>
7840         * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
7841         * cc-mode.el: Changes to eradicate eval-after-load.
7843 2006-07-09  Chong Yidong  <cyd@stupidchicken.com>
7845         * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
7846         on non-char events.
7848 2006-07-09  Romain Francoise  <romain@orebokech.com>
7850         * progmodes/compile.el (compilation-mode-font-lock-keywords):
7851         Don't highlight start/end markers as compilation messages.
7853         * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
7854         to t.
7856 2006-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7858         * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
7860 2006-07-08  Richard Stallman  <rms@gnu.org>
7862         * term/x-win.el (x-handle-display): Add doc string.
7864         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
7866         * subr.el (def-edebug-spec): Move here.
7867         * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
7869         * imenu.el (imenu-choose-buffer-index): Doc fix.
7871 2006-07-08  Romain Francoise  <romain@orebokech.com>
7873         * term/x-win.el (x-display-name): Fix typo.
7875 2006-07-08  Eli Zaretskii  <eliz@gnu.org>
7877         * hexl.el (hexl-find-file): Doc fix.
7879         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
7881 2006-07-07  Chong Yidong  <cyd@stupidchicken.com>
7883         * term/x-win.el (x-display-name): Doc fix.
7885 2006-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7887         * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
7888         long prefixes.
7889         (fill-region-as-paragraph): Don't round up to a whole line.
7890         (fill-comment-paragraph): Don't include the code-before-the-comment
7891         when calling fill-region-as-paragraph.
7893         * international/mule.el (make-char): Remove redundancy.
7895         * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
7896         property may contain an anonymous function rather than a symbol.
7898         * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
7900         * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
7901         Use shy regexp.  Fix incorrect backref to potentially unmatched group.
7903         * dirtrack.el (dirtrack-default-directory-function): Remove.
7904         (dirtrack-directory-function): Use file-name-as-directory.
7905         (dirtrack-windows-directory-function): Simplify.
7906         (dirtrack-forward-slash, dirtrack-backward-slash)
7907         (dirtrack-replace-slash): Remove.
7908         (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
7909         (dirtrack): Fix wrong parenthesizing; use match-string.
7911         * progmodes/octave-inf.el: Remove spurious * in docstrings.
7912         (inferior-octave-mode): Only change the buffer-local value of
7913         comint-dynamic-complete-functions.
7914         (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
7915         Move the initialization to the declaration.
7916         (inferior-octave-complete): Remove unused var `filter'.
7918         * shell.el (shell-mode): Only change the buffer-local value of
7919         comint-dynamic-complete-functions.
7921 2006-07-07  Carsten Dominik  <dominik@science.uva.nl>
7923         * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
7924         entry is skipped because it has been scheduled.
7925         (org-prepare-agenda-buffers): Don't mark buffers as modified when
7926         changing `:org-archived' and `:org-comment' properties.
7928 2006-07-06  Chong Yidong  <cyd@stupidchicken.com>
7930         * server.el (server-select-display): Don't make the temp frame
7931         minibuffer-only, in case it's not a temp frame.
7932         (server-process-filter): Don't delete the temp frame if it's the
7933         only one we have on that display.
7935         * files.el (find-alternate-file): Doc fix.
7937 2006-07-05  Richard Stallman  <rms@gnu.org>
7939         * files.el (abbreviate-file-name): Add save-match-data.
7941 2006-07-03  Richard Stallman  <rms@gnu.org>
7943         * faces.el (read-face-name): Doc fix.
7945 2006-07-05  Chong Yidong  <cyd@stupidchicken.com>
7947         * net/goto-addr.el (goto-address): Mark as safe for local evals.
7949 2006-07-05  Andre Spiegel  <spiegel@gnu.org>
7951         * vc.el (vc-diff-internal): Fix prev change.
7953 2006-07-05  Thien-Thi Nguyen  <ttn@gnu.org>
7955         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
7956         * play/dunnet.el (dun-load-d, dun-eval): Likewise.
7958 2006-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7960         * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
7961         fails if the symbol contains chars like ( or '.
7962         (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
7963         (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
7964         `short'.
7966 2006-07-04  Kenichi Handa  <handa@m17n.org>
7968         * international/mule-cmds.el (set-language-info): If LANG-ENV is
7969         the current one, don't call set-language-environment, but call one
7970         of set-language-environment-XXX to make INFO effective now.
7971         (set-language-environment): Call set-language-environment-XXX
7972         functions instead of doing the various setups directly.
7973         (set-language-environment-coding-systems): Delete argument eol-type.
7974         (set-language-environment-input-method)
7975         (set-language-environment-nonascii-translation)
7976         (set-language-environment-charset)
7977         (set-language-environment-fontset)
7978         (set-language-environment-unibyte): New functions.
7980 2006-07-03  Luc Teirlinck  <teirllm@auburn.edu>
7982         * locate.el (locate-update-when-revert): New option.
7983         (locate-update-path): New option (suggested by Michael Albinus).
7984         (locate-prompt-for-command): Whitespace change.
7985         (locate-update): No longer offer to update the locate database by
7986         default.  Implement the two new options.
7988 2006-07-04  Nick Roberts  <nickrob@snap.net.nz>
7990         * tooltip.el: Move comment about track-mouse...
7992         * progmodes/gud.el: ...to here.
7994 2006-07-03  Chong Yidong  <cyd@stupidchicken.com>
7996         * facemenu.el (facemenu-listed-faces): New var.
7997         (facemenu-unlisted-faces): Variable deleted.
7998         (facemenu-add-new-face): Use facemenu-listed-faces.
8000         * emulation/viper-init.el, calendar/calendar.el:
8001         * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
8003 2006-07-03  Carsten Dominik  <dominik@science.uva.nl>
8005         * textmodes/org.el (org-mode): Remove no invalid settings for
8006         calc embedded mode.
8007         (org-mode-p): New defsubst.
8008         (org-save-all-org-buffers): New function.
8009         (org-first-headline-recenter): Enclose outline-regexp in group
8010         delimiters.
8011         (org-set-tags): Keep single space after stars.
8013 2006-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8015         * window.el (set-window-text-height): Only set window-min-height to
8016         1 if that's the requested size.
8018         * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
8019         (diff-unified->context, diff-context->unified)
8020         (diff-reverse-direction): Make sure the end marker stays at the end.
8021         (diff-mode): Add the keymap table at the end of docstring.
8022         Use lexical-let rather than constructing a closure manually.
8024         * files.el (find-file-noselect-1): Remove unused var assignment.
8025         (hack-local-variables-confirm): Print lists of strings as lists of
8026         strings rather than lists of symbols.
8027         (abbreviate-file-name, hack-local-variables-prop-line):
8028         Use match-string.
8029         (hack-one-local-variable): Move `make-local-variable' nearer its use.
8030         (recover-session-finish): Use line-end-position.
8032 2006-07-02  Michael Albinus  <michael.albinus@gmx.de>
8034         * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
8036 2006-07-02  Daniel Pfeiffer  <occitan@esperanto.org>
8038         * progmodes/make-mode.el (makefile-macroassign-regex):
8039         Accept preceding keyword.
8040         (makefile-gmake-statements): Reorganize, now that makepp has
8041         "override" and also handle forgotten "override define".
8042         (makefile-makepp-statements): Add new "global", "override export"
8043         and "override global".
8045 2006-06-30  Juanma Barranquero  <lekktu@gmail.com>
8047         * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
8048         (ada-compile-mouse-goto-error, ada-deactivate-properties)
8049         (ada-no-auto-case): Fix typos in docstrings.
8051 2006-06-30  Nick Roberts  <nickrob@snap.net.nz>
8053         * info.el (Info-find-node-2): Search for makeinfo version more
8054         carefully.
8056 2006-06-29  Carsten Dominik  <dominik@science.uva.nl>
8058         * textmodes/org.el (org-prepare-agenda-buffers):
8059         Use `invisible-OK' argument for `org-end-of-subtree'.
8060         (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
8061         (org-beginning-of-item): Fix bug in regular expression for white line.
8062         (org-export-as-html): Enforce space after bullet in plain list items.
8063         (org-set-autofill-regexps): Require space after plain list bullet
8064         for paragraph-start.
8065         (org-ts-regexp3): New constant.
8066         (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
8067         (org-timestamp-up-day, org-timestamp-down-day)
8068         (org-timestamp-change): Work with inactive timestamps.
8069         (org-ts-regexp1): Don't allow brackets in time stamps.
8071 2006-06-29  Nick Roberts  <nickrob@snap.net.nz>
8073         * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
8074         for ignoring links.
8076         * faces.el (read-face-name): Use it.
8078 2006-06-28  Juri Linkov  <juri@jurta.org>
8080         * buff-menu.el (list-buffers-noselect): Compare Info file
8081         with the string "dir" to detect Info directory.
8083         * complete.el (partial-completion-mode): In lambda for
8084         `choose-completion-string-functions' use full function signature
8085         with 4 args, and move point to the end of the minibuffer only if arg
8086         `mini-p' is non-nil.
8088 2006-06-28  John Paul Wallington  <jpw@pobox.com>
8090         * ibuffer.el (ibuffer-mode): Doc fix.
8092 2006-06-28  Carsten Dominik  <dominik@science.uva.nl>
8094         * textmodes/org.el (org-context): New contexts :item-bullet,
8095         :latex-fragment, :latex-preview.
8096         (org-overlays-at, org-overlay-start, org-overlay-end):
8097         New compatibility functions.
8098         (org-inside-LaTeX-fragment-p): More accurate matching, using the
8099         exact regexp that will be used during export.
8100         (org-latex-regexps): New variable.
8101         (org-cdlatex-mode): Improve advice for `texmathp'.
8102         (turn-on-org-cdlatex): New function.
8104 2006-06-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8106         * term/mac-win.el (mac-handle-font-selection): Change keys of
8107         mac-atsu-font-table from strings to numbers.
8108         (mac-ts-caret-position): Use also when cursor-type is nil.
8109         (mac-ts-update-active-input-area): Add Mac OS Classic support.
8110         Relax condition for using overlay strings.
8111         Use mac-ts-caret-position face when cursor-type is nil.
8113 2006-06-26  Kim F. Storm  <storm@cua.dk>
8115         * help.el (view-emacs-news): Declare `res' in the right let* form.
8117 2006-06-25  Michael Albinus  <michael.albinus@gmx.de>
8119         * net/rcompile.el (remote-compile): Replace ange-ftp based
8120         implementation by Tramp functions.
8121         Suggested by Marc Abramowitz <msabramo@gmail.com>.
8123         * net/tramp.el (tramp-unload-tramp): Provide a doc string.
8125 2006-06-24  Yoshinori Koseki  <kose@meadowy.org>
8127         * international/fontset.el (setup-default-fontset): Fix a typo in
8128         the "Oriya-Akruti" registry name.
8130 2006-06-23  Lars Hansen  <larsh@soem.dk>
8132         * desktop.el (desktop-full-file-name): New function.
8133         (desktop-kill, desktop-save, desktop-remove, desktop-read)
8134         (desktop-revert): Use it.
8135         (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
8136         (desktop-after-read-hook): Add option list-buffers.
8137         (desktop-locals-to-save): Add tab-width.
8138         (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
8139         Fix docstring.
8141 2006-06-23  Carsten Dominik  <dominik@science.uva.nl>
8143         * textmodes/org.el (org-cdlatex-mode-map)
8144         (org-cdlatex-texmathp-advice-is-done): New variables.
8145         (org-cdlatex-mode): New minor mode.
8146         (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
8147         (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
8148         (org-export-with-archived-trees): New option.
8149         (org-open-file): Remove the call to `convert-standard-filename'.
8150         (org-archive-tag, org-agenda-skip-archived-trees)
8151         (org-cycle-open-archived-trees)
8152         (org-sparse-tree-open-archived-trees): New options.
8153         (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
8154         (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
8155         New functions.
8156         (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
8157         (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
8158         (org-mode-map): Add binding for `org-toggle-archive-tag'.
8159         (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
8160         Call `org-prepare-agenda-buffers'.
8161         (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
8162         (org-file-apps, org-file-apps-defaults-gnu)
8163         (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
8164         Handle remote files by forcing them to be opened in Emacs.
8166 2006-06-23  Andre Spiegel  <spiegel@gnu.org>
8168         * vc.el (vc-diff-knows-L): New variable.
8169         (vc-diff-internal): Use it to handle "diff" programs that don't
8170         understand -L.  This works automatically, no user action is necessary.
8172 2006-06-23  Daniel Brockman  <daniel@brockman.se>
8174         * net/rcirc.el (rcirc-default-user-full-name): Default to
8175         `rcirc-default-user-name' instead of `rcirc-user-name' (which no
8176         longer exists).
8177         (rcirc-process-list): Check `buffer-live-p' before attempting to
8178         switch to a buffer.
8180 2006-06-23  Ryan Yeske  <rcyeske@gmail.com>
8182         * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
8183         based on rcirc-coding-system-alist.
8185 2006-06-23  Martin Rudalics  <rudalics@gmx.at>
8187         * cus-edit.el (customize-apropos): A better error message.
8188         (top level) <debug-ignored-errors>: Extend and update the list of
8189         ignored error messages.
8191 2006-06-23  Michael Ernst  <mernst@alum.mit.edu>
8193         * complete.el (PC-do-completion): Retain capitalization of user
8194         input, when possible, even if completion-ignore-case is set.
8196 2006-06-23  Eli Zaretskii  <eliz@gnu.org>
8198         * generic-x.el (bat-generic-mode): Support .cmd files.
8200         * dos-w32.el (top level): Use find-file-not-found-functions
8201         instead of the obsolete find-file-not-found-hooks.
8203 2006-06-22  Kim F. Storm  <storm@cua.dk>
8205         * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
8206         to recognize mode name containing submodes, such as Grep/lw.
8208 2006-06-21  Kim F. Storm  <storm@cua.dk>
8210         * simple.el (line-move-1): Check for move-end-of-line instead of
8211         end-of-line when setting temporary-goal-column.
8213 2006-06-21  Miles Bader  <miles@gnu.org>
8215         * play/cookie1.el (cookie): Work properly when there's only one entry.
8217 2006-06-21  Nick Roberts  <nickrob@snap.net.nz>
8219         * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
8220         (gdb-frame-handler): Generalize frame regexp for templates.
8222 2006-06-20  Glenn Morris  <rgm@gnu.org>
8224         * calendar/appt.el (appt-display-format): Default value must be
8225         one of the customize options.
8227 2006-06-20  Dan Nicolaescu  <dann@ics.uci.edu>
8229         * term/xterm.el (terminal-init-xterm): Update key availability info.
8230         Bind C-return.
8232         * term.el (term-delete-lines, term-insert-lines): Clarify comments.
8234 2006-06-20  Chong Yidong  <cyd@stupidchicken.com>
8236         * files.el (hack-local-variables): Run `hack-local-variables-hook'
8237         whether or not a local variables list is defined.
8239         * msb.el (msb): Move `sit-for' hack here to handle both
8240         "mouse-down and drag" and "mouse-up and select" situations.
8241         (mouse-select-buffer): Move `sit-for' hack to `msb'.
8243 2006-06-20  Kenichi Handa  <handa@m17n.org>
8245         * international/characters.el (word-combining-categories):
8246         Add entries for 2-byte Han characters.
8248 2006-06-19  Richard Stallman  <rms@gnu.org>
8250         * bindings.el (mode-line-format): Save some mode line space.
8252         * files.el (find-file-noselect): Improve the question wording.
8253         (basic-save-buffer-2): Mask UMASK against 666.
8255         * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
8256         (mouse-drag-vertical-line): Call it.
8258         * cus-edit.el (customize-option, customize-option-other-window):
8259         Error if SYMBOL is nil.
8261 2006-06-19  Carsten Dominik  <dominik@science.uva.nl>
8263         * textmodes/org.el: Require noutline, also on XEmacs.
8264         (org-end-of-subtree): Return point.
8265         (org-dblock-start-re, org-dblock-end-re): New constants.
8266         (org-create-dblock, org-prepare-dblock, org-map-dblocks)
8267         (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
8268         (org-update-all-dblocks, org-find-dblock): New functions.
8269         (org-collect-clock-time-entries): New function.
8270         (org-html-handle-time-stamps): Never export CLOCK timeranges.
8271         (org-fixup-indentation): Modify to deal correctly with lines
8272         starting with TAB.  Only one argument DIFF now.
8273         (org-demote, org-promote): Call `org-fixup-indentation' with just
8274         one argument, DIFF.
8275         (org-mode): Don't mark buffer as modified when aligning tables.
8276         (org-clock-sum): Don't mark buffer modified when adding time sum
8277         properties.
8278         (org-export-as-html): Add support for a link validation function.
8279         (org-archive-all-done): New function.
8280         (org-archive-subtree): New prefix argument.  When set, archive all
8281         done subtrees in this buffer.
8282         (org-remove-clock-overlays)
8283         (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
8284         (org-inhibit-highlight-removal): New variable, for dynamic scoping.
8285         (org-put-clock-overlay): Don't swallow last headline character
8286         when displaying overlay.
8287         (org-store-link): Link to `image-mode' with just the file name.
8289 2006-06-18  Michael Kifer  <kifer@cs.stonybrook.edu>
8291         * viper-cmd.el (viper-special-read-and-insert-char):
8292         Use read-key-sequence.
8293         (viper-after-change-undo-hook): Misc enhancements.
8294         (viper-after-change-undo-hook): New hook.
8295         (viper-undo): Use viper-after-change-undo-hook.
8296         (viper-add-newline-at-eob-if-necessary): Widen before making changes.
8297         (viper-next-line-at-bol): If point is on a widget or a button, simulate
8298         clicking on that widget/button.
8300         * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
8302         * ediff-diff (ediff-test-patch-utility): Catch errors.
8303         (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
8304         (ediff-set-actual-diff-options): New function.
8305         (ediff-reset-diff-options, ediff-toggle-ignore-case):
8306         Use ediff-set-actual-diff-options.
8307         (ediff-extract-diffs): Catch errors.
8308         (ediff-whitespace): Add non-breakable space.
8309         (ediff-same-file-contents): Catch errors.
8311         * ediff-mult.el (ediff-collect-custom-diffs):
8312         Save coding-system-for-read.
8314         * ediff-vers.el (ediff-keep-tmp-versions): New variable.
8315         (ediff-vc-internal, ediff-vc-merge-internal):
8316         Use ediff-delete-version-file.
8317         (ediff-delete-version-file): New function.
8319         * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
8321         * ediff.el (ediff-directories, ediff-directory-revisions)
8322         (ediff-merge-directories, ediff-merge-directories-with-ancestor)
8323         (ediff-directories-internal, ediff-merge-directory-revisions)
8324         (ediff-merge-directory-revisions-with-ancestor)
8325         (ediff-directories3): Use read-directory-name.
8327 2006-06-18  Ralf Angeli  <angeli@caeruleus.net>
8329         * textmodes/tex-mode.el (tex-font-lock-match-suscript):
8330         Remove superfluous part of regexp for brace matching which is handled
8331         by `scan-lists' call.
8333 2006-06-16  Richard Stallman  <rms@gnu.org>
8335         * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
8337         * files.el (basic-save-buffer-2): For a new precious file,
8338         use the default modes in the return value.
8340         * facemenu.el (facemenu-color-alist): Doc fix.
8342         * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
8344 2006-06-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8346         * cus-start.el (all): Add mac-ts-script-language-on-focus.
8348         * term/mac-win.el (mac-text-encoding-ascii): New constant.
8349         (mac-utxt-to-string): Use it.
8350         (mac-ts-update-active-input-area): Use mac-ae-number.
8352 2006-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
8354         * term.el (term-handle-scroll, term-delete-lines)
8355         (term-insert-lines): Fix off by one errors.
8357 2006-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
8359         * net/tramp.el (tramp-touch): Use UTC to express time.
8361 2006-06-15  Chong Yidong  <cyd@stupidchicken.com>
8363         * mail/sendmail.el (mail-send): Search explicitly for
8364         mail-header-separator when checking for corrupted header lines.
8366 2006-06-15  Nick Roberts  <nickrob@snap.net.nz>
8368         * progmodes/gdb-ui.el (gdb-same-frame): New option.
8369         (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
8370         (gdb-init-1): Initialise them.
8371         (gdb-starting): Reset gdb-printing
8372         (gdb-starting): Save value of gud-overlay-arrow-position.
8373         (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
8374         (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
8375         Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
8376         (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
8378 2006-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8380         * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
8382 2006-06-13  Martin J. Reed  <mjreed@essex.ac.uk>  (tiny change)
8384         * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
8385         (ldap-search-internal): Keep error messages, and a regexp fix.
8387 2006-06-12  Thien-Thi Nguyen  <ttn@gnu.org>
8389         * files.el (hack-local-variables-confirm):
8390         Display string value using its printed representation.
8392 2006-06-11  Chong Yidong  <cyd@stupidchicken.com>
8394         * server.el (server-edit): No-op if no server buffers exist.
8396 2006-06-11  Robert J. Chassell  <bob@rattlesnake.com>
8398         * textmodes/page-ext.el (pages-directory-for-addresses):
8399         Including `pages-directory-address-mode' in the function results
8400         in the message "Buffer in which pages were found is deleted".
8402 2006-06-10  Carsten Dominik  <dominik@science.uva.nl>
8404         * textmodes/org.el (org-agenda-mode-map): Add bindings for
8405         clocking functions.
8407         (org-agenda-clock-in, org-check-running-clock)
8408         (org-clock-out-if-current, org-remove-clock-overlays)
8409         (org-put-clock-overlay): New functions.
8410         (org-clock-marker, org-clock-file-total-minutes)
8411         (org-clock-overlays): New variables.
8412         (org-clock-display, org-clock-sum, org-clock-cancel)
8413         (org-clock-out, org-clock-in): New commands.
8414         (org-export): New function.
8415         (org-emph-re): New constant.
8416         (org-set-emph-re, org-do-emphasis-faces): New functions.
8417         (org-emphasis-regexp-components, org-emphasis-alist): New options.
8418         (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
8419         (org-export-html-convert-emphasize): Use the configurable emphasis.
8420         (org-cleaned-string-for-export): Make multiline emphasis visible
8421         to the exporter.  New optional argument PARAMETERS.
8422         (org-export-as-html): Specify :emph-multiline parameter to
8423         `org-cleaned-string-for-export'.
8425 2006-06-10  Richard Stallman  <rms@gnu.org>
8427         * help.el (help-for-help-internal): Clean up help text.
8429 2006-06-10  Andreas Schwab  <schwab@suse.de>
8431         * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
8432         in doc string.
8434         * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
8436 2006-06-09  Karl Chen  <quarl@cs.berkeley.edu>
8438         * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
8439         spaces after the comment start.
8441 2006-06-09  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
8443         * play/pong.el (pong-init-buffer):
8444         Fill buffer with spaces instead of ^A.
8446         * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
8447         launched asynchronously, delete its process instead of being cool.
8448         (ispell-async-processp): Check for `delete-process' existence
8449         instead of `kill-process' one for consistency.
8451 2006-06-09  Nick Roberts  <nickrob@snap.net.nz>
8453         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
8454         (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
8455         in mode line at startup.
8457 2006-06-08  Kim F. Storm  <storm@cua.dk>
8459         * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
8460         (ido-init-completion-maps): Bind them to M-SPC and M-v.
8461         (ido-copy-current-file-name): Repeating C-w inserts whole file name.
8462         (ido-file-internal): Pass full file name to write-file.
8463         (ido-read-internal): Only pop stack elements automatically if they
8464         actually match an existing directory or file name.
8466 2006-06-07  Kenichi Handa  <handa@m17n.org>
8468         * international/mule.el (find-auto-coding): Don't handle the short
8469         name `char-trans'.
8471         * files.el (hack-local-variables-prop-line)
8472         (hack-local-variables): Cancel the previous change.
8474 2006-06-06  Jesper Harder  <harder@phys.au.dk>
8476         * ediff-diff.el (ediff-test-utility): Protect against file-error.
8478 2006-06-06  Chong Yidong  <cyd@stupidchicken.com>
8480         * diff-mode.el (diff-mode): Set buffer-read-only to t when
8481         diff-default-read-only is non-nil.
8482         (diff-hunk-kill, diff-file-kill, diff-split-hunk)
8483         (diff-refine-hunk): Set inhibit-read-only to t.
8485         * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
8486         modifying the *Diff* buffer.
8487         (diff-process-filter): New filter function for diff process that
8488         sets inhibit-read-only to t when modifying the *Diff* buffer.
8490 2006-06-06  Carsten Dominik  <dominik@science.uva.nl>
8492         * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
8493         insertion point and control the number of empty lines.
8494         (org-paste-subtree): Limit the number of empty lines at the end of
8495         the inserted tree.
8496         (org-agenda): Use buffer name of current file for narrowing.
8497         (org-export-as-xml): Command removed.
8498         (org-export-xml-type): Option removed.
8499         (org-mode-map): Call `org-export-as-xoxo' directly.
8500         (org-get-indentation): New optional argument LINE.
8501         (org-fix-indentation, org-remove-tabs): New functions.
8502         (org-export-as-ascii, org-ascii-level-start): Determine and apply
8503         correct indentation for headlines that are converted it items.
8504         (org-skip-comments): Remove table lines that contain narrowing
8505         cookies but no other non-empty fields.
8506         (org-set-tags): Allow groups of mutually exclusive tags.
8507         (org-cmp-time): Sort 24:21 before items without time.
8508         (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
8509         (org-open-at-point): Require double colon also for numbers.
8511 2006-06-06  Kim F. Storm  <storm@cua.dk>
8513         * ido.el (ido-default-file-method, ido-default-buffer-method):
8514         Make choice values consistent with corresponding command names.
8515         (ido-visit-buffer): Update accordingly.  Default to selected-window.
8517 2006-06-06  Nick Roberts  <nickrob@snap.net.nz>
8519         * progmodes/gud.el (gud-running): Fix doc string.
8520         (gud-menu-map): Use :visible instead fo :enable for debugger test.
8521         (gud-tooltip-modes): Add python-mode.
8522         (gud-tooltip-print-command): Add pdb.  Remove perldb.
8524 2006-06-05  Eli Zaretskii  <eliz@gnu.org>
8526         * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
8527         Quote $(EMACS).
8529 2006-06-05  Richard Stallman  <rms@gnu.org>
8531         * faces.el (defined-colors): Doc fix.
8533 2006-06-05  Thien-Thi Nguyen  <ttn@gnu.org>
8535         * vc.el (vc-process-filter): Inhibit undo info collection around
8536         call to insert.
8537         (vc-setup-buffer): Likewise for call to erase-buffer.
8538         (vc-do-command): Likewise for call to process-file.
8540 2006-06-05  Nick Roberts  <nickrob@snap.net.nz>
8542         * progmodes/gud.el (gud-menu-map): Use a conditional help echo
8543         for gud-go.
8544         (gud-common-init): Other debuggers may trigger error.
8546 2006-06-05  Kenichi Handa  <handa@m17n.org>
8548         * international/mule.el (find-auto-coding):
8549         Handle enable-character-translation in file header.
8551 2006-06-04  Kim F. Storm  <storm@cua.dk>
8553         * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
8554         (authors-fixed-entries): Fix spelling.
8555         (authors-canonical-file-name): Don't report error for wildcards.
8557         * help.el (view-emacs-news): Rewrite to support new NEWS,
8558         NEWS.major, and NEWS.1-17 file naming.  Add more intelligence,
8559         e.g. version 10 matches 1.10, and don't be confused by version 1.1
8560         being a prefix of 1.12 (etc).  A numeric prefix arg also works.
8562 2006-06-03  Vivek Dasmohapatra  <vivek@etla.org>
8564         * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
8565         exec constructs like `foo bar`.
8566         (sh-quoted-subshell): New helper function to search for a possibly
8567         nested subshell (like `` or $()) within a "" quoted string.
8568         (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
8569         (sh-apply-quoted-subshell): Flag quote characters inside a
8570         subshell, which is itself already in a quoted region, as
8571         punctuation, since this is the closest to what they actually are.
8572         (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
8573         sh-apply-quoted-subshell.
8574         (sh-font-lock-syntactic-face-function): Apply the new face for
8575         text inside `` instead of the old font-lock-string-face.
8577 2006-06-03  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8579         * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
8580         (mac-ae-number, mac-ae-frame, mac-ae-script-language)
8581         (mac-bytes-to-text-range, mac-ae-text-range-array)
8582         (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
8583         (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
8584         (mac-ts-unicode-for-key-event): New functions.
8585         (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
8586         (mac-handle-font-selection): Use mac-ae-number.
8587         (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
8588         New variables.
8589         (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
8590         (mac-ts-converted-text, mac-ts-selected-converted-text)
8591         (mac-ts-block-fill-text, mac-ts-outline-text)
8592         (mac-ts-selected-text, mac-ts-no-hilite): New faces.
8593         (mac-ts-hilite-style-faces): New constant.
8594         (mac-apple-event-map): Bind text input events.
8595         (mac-dispatch-apple-event): Use command-execute instead of
8596         call-interactively.
8597         (global-map): Don't bind mac-apple-event.
8598         (special-event-map): Bind mac-apple-event.
8600 2006-06-02  Eli Zaretskii  <eliz@gnu.org>
8602         * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
8603         file name.
8604         (emacs): Enclose the value of $(EMACS) in quotes.
8606 2006-06-02  Juri Linkov  <juri@jurta.org>
8608         * international/mule.el (sgml-html-meta-auto-coding-function):
8609         Remove the condition `(search-forward "<html" size t)'.
8610         Replace `\"' with `[\"']?' in `re-search-forward'.
8612 2006-06-02  Kenichi Handa  <handa@m17n.org>
8614         * files.el (hack-local-variables-prop-line): Ignore `char-trans'
8615         as well as `coding'.
8616         (hack-local-variables): Likewise.
8618         * international/mule.el (enable-character-translation):
8619         Put permanent-local and safe-local-variable properties.
8620         (find-auto-coding): Handle char-trans: tag.
8622 2006-06-02  Juri Linkov  <juri@jurta.org>
8624         * international/mule.el (sgml-html-meta-auto-coding-function):
8625         Limit the search by the end of the HTML header (if any).
8627 2006-06-01  Richard Stallman  <rms@gnu.org>
8629         * subr.el (with-current-buffer): Doc fix.
8631 2006-06-02  Masatake YAMATO  <jet@gyve.org>
8633         * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
8634         Almost rewrite.  Underlines over all lines of gcov output are too
8635         uncomfortable to read.  Suggested by Dan Nicolaescu.
8637 2006-06-01  Luc Teirlinck  <teirllm@auburn.edu>
8639         * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
8641         * shell.el (shell-mode): Use shell-mode-map in docstring.
8643         * comint.el (comint-send-input): Do not add help-echo and
8644         mouse-face to input if `comint-use-prompt-regexp' is non-nil.
8646 2006-06-01  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8648         * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
8650 2006-06-01  Nick Roberts  <nickrob@snap.net.nz>
8652         * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
8653         (gdb-stopped, gdb-info-stack-custom): If there is no source info
8654         look up the stack and pop up GUD buffer if necessary.
8655         (gdb-frames-select): Remove redundant call to gud-display-frame.
8656         (gdb-info-threads-custom): Keep point at start of buffer.
8657         (gdb-find-file-hook): Make it work for pre-GDB 6.4.
8659 2006-05-31  Juri Linkov  <juri@jurta.org>
8661         * replace.el (query-replace-read-from, query-replace-read-to):
8662         Bind `history-add-new-input' to nil.  Call `add-to-history'.
8664 2006-05-31  Takaaki Ota  <Takaaki.Ota@am.sony.com>
8666         * textmodes/table.el: Convert all HTML tags to lower case for
8667         XHTML compatibility.
8669 2006-05-31  Masatake YAMATO  <jet@gyve.org>
8671         * progmodes/compile.el:
8672         (compilation-error-regexp-alist-alist::gcov-called-line):
8673         Don't put face on `-' lines in gcov file.  Suggested by Dan Nicolaescu.
8675 2006-05-31  Nick Roberts  <nickrob@snap.net.nz>
8677         * progmodes/gud.el (gud-query-cmdline, gud-common-init):
8678         Revert inadvertent changes made with last commit.
8680 2006-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
8682         * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
8683         New functions.
8685         * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
8687 2006-05-30  Carsten Dominik  <dominik@science.uva.nl>
8689         * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
8690         only matches in the right place.
8691         (org-upcoming-deadline): New face.
8692         (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
8693         (org-export-ascii-underline): Rename constant `org-ascii-underline'
8694         and make it an option.
8695         (org-export-ascii-bullets): New option.
8696         (org-export-as-html): Many changes to emit valid XHTML.
8697         (org-par-open): New variable.
8698         (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
8699         (org-html-do-expand, org-section-number): Fix case in `replace-match'.
8700         (org-timeline): Pass `org-timeline-show-empty-dates' to
8701         `org-get-all-dates'.  Interpret empty dates returned by
8702         `org-get-all-dates'.
8703         (org-get-all-dates): New argument EMPTY.  Add dates without
8704         entries to the list, mark large ranges of empty dates.
8705         (org-point-in-group, org-context): New functions.
8707 2006-05-30  Nick Roberts  <nickrob@snap.net.nz>
8709         * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
8711         * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
8712         C-mouse-1.  Move gdb-mouse-until to mouse-3, gdb-mouse-jump
8713         to C-mouse-3 (for 2 button mice).
8714         (gdb-send): Do the right thing for C-d.
8716         * speedbar.el (speedbar-detach): Delete.
8717         (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
8718         it breaks things.
8719         (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
8721 2006-05-30  Daniel Pfeiffer  <occitan@esperanto.org>
8723         * files.el (auto-mode-alist): Add makepp suffix and optional mk on
8724         Makeppfile.
8726         * progmodes/compile.el (compilation-error-regexp-alist-alist):
8727         Add makepp diagnostic.
8729 2006-05-29  Richard Stallman  <rms@gnu.org>
8731         * window.el (fit-window-to-buffer): Doc fix.
8733         * help.el (temp-buffer-max-height): Doc fix.
8735         * subr.el (with-current-buffer): Doc fix.
8737 2006-05-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8739         * term/x-win.el: Bind F10 to menu-bar-start if available.
8741 2006-05-28  Dan Nicolaescu  <dann@ics.uci.edu>
8743         * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
8744         uses with a simple test.
8745         (term-set-escape-char, term-mode, term-check-kill-echo-list)
8746         (term-send-raw-string, term-send-raw, term-mouse-paste)
8747         (term-char-mode, term-line-mode, term-exec, term-sentinel)
8748         (term-handle-exit, term-read-input-ring)
8749         (term-previous-matching-input-string)
8750         (term-previous-matching-input-string-position)
8751         (term-previous-matching-input-from-input)
8752         (term-replace-by-expanded-history, term-send-input)
8753         (term-skip-prompt, term-bol, term-send-invisible)
8754         (term-kill-input, term-delchar-or-maybe-eof)
8755         (term-backward-matching-input, term-check-source)
8756         (term-proc-query, term-emulate-terminal)
8757         (term-handle-colors-array, term-process-pager, term-pager-line)
8758         (term-pager-bob, term-unwrap-line, term-word)
8759         (term-dynamic-complete-filename)
8760         (term-dynamic-complete-as-filename)
8761         (term-dynamic-simple-complete): Replace one arm ifs with whens or
8762         unlesses.
8764 2006-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8766         * files.el (hack-one-local-variable-eval-safep): Don't burp if used
8767         during bootstrapping.
8769         * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
8770         Basically undo the change of 2006-05-26: use extra arguments instead of
8771         dynamic scoping.
8772         (ewoc-locate): Remove unused var `footer'.
8774 2006-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8776         * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
8778         * emacs-lisp/autoload.el (no-update-autoloads): Declare.
8779         (generate-file-autoloads): Obey it.  Return whether autoloads were
8780         added at point or not.
8781         (update-file-autoloads): Use this new return value.
8782         Remove redundant test for the presence of an autoload cookie.
8784         * emacs-lisp/autoload.el (autoload-find-file): New fun.
8785         This one calls hack-local-variables.
8786         (generate-file-autoloads, update-file-autoloads): Use it.
8788         * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
8789         (bibtex-sort-entry-class): Add safe-local-variable predicate.
8790         (bibtex-sort-entry-class-alist): Don't set the global value.
8791         (bibtex-init-sort-entry-class-alist): New fun.
8792         (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
8793         bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
8794         of bibtex-init-sort-entry-class.
8796 2006-05-28  Richard Stallman  <rms@gnu.org>
8798         * subr.el (load-history-regexp): If FILE is relative, insist
8799         entire last name component must match it.
8800         (load-history-filename-element, load-history-regexp): Doc fixes.
8802 2006-05-29  Kim F. Storm  <storm@cua.dk>
8804         * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
8805         `pos' and `raw-data' for clarity, as eval forms may access these.
8807 2006-05-28  Kim F. Storm  <storm@cua.dk>
8809         * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
8811 2006-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8813         * progmodes/make-mode.el (makefile-browser-map)
8814         (makefile-mode-syntax-table): Move initialization inside declaration.
8815         (makefile-fill-paragraph): Use the default comment-filling code.
8817 2006-05-28  Chong Yidong  <cyd@stupidchicken.com>
8819         * replace.el (query-replace-defaults): New variable.
8820         (query-replace-read-from): Use `query-replace-defaults' for
8821         default value, instead of history list.
8822         (query-replace-read-to): Update `query-replace-defaults'.
8824 2006-05-27  Chong Yidong  <cyd@stupidchicken.com>
8826         * msb.el (mouse-select-buffer): Minor fix to make popup menu work
8827         with no X toolkit.
8829 2006-05-28  Nick Roberts  <nickrob@snap.net.nz>
8831         * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
8832         (tumme-show-all-from-dir): Add autoload.
8834 2006-05-27  Mathias Dahl  <mathias.dahl@gmail.com>
8836         * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
8837         (tumme-remove-tag): Fix bug.
8839 2006-05-27  Thien-Thi Nguyen  <ttn@gnu.org>
8841         * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
8842         FOOTER args.  Update unique caller.
8843         (ewoc-delete): Compute last node once before looping.
8844         (ewoc--node-branch): Merge into unique caller.
8845         (ewoc--node): Don't define constructor make-ewoc--node for this
8846         structure.
8847         (ewoc): Add member `hf-pp' to this structure.
8848         (ewoc--wrap): New func.
8849         (ewoc-create): Take additional arg NOSEP.  If nil, wrap node and
8850         header/footer pretty-printers.  Save header/footer pretty-printer.
8851         (ewoc-set-hf): Use ewoc's header/footer pretty-printer.  *
8853         * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
8855 2006-05-27  Mathias Dahl  <mathias.dahl@gmail.com>
8857         * dired.el (dired-mode-map): Change `tumme-tag-remove' to
8858         `tumme-delete-tag'.  Rename `Remove Image Tag' to `Delete Image
8859         Tag'.  Change "Compare directories..." to "Change Directories...".
8860         Move tumme commands to Operate, Regexp and Immediate menus.
8861         Change "Add Comment" to "Add Image Comment".  Change "Add Image
8862         Tag" to "Add Image Tags".
8864         * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
8865         (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
8866         `tumme-delete-tag'.
8868 2006-05-26  Luc Teirlinck  <teirllm@auburn.edu>
8870         * shell.el (shell-mode): Call shell-dirtrack-mode after
8871         list-buffers-directory is made a local variable, to avoid setting
8872         the default value.
8874 2006-05-26  Kevin Ryde  <user42@zip.com.au>
8876         * info.el (Info-index-next): Use where-is-internal to report
8877         actual binding of Info-index-next, rather than hard-coded `,'.
8879 2006-05-26  Eli Zaretskii  <eliz@gnu.org>
8881         * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
8882         and "Find Command in Manual" to here.
8884         * buff-menu.el (list-buffers-noselect): For Info buffers, use
8885         Info-current-file as the file name.
8887 2006-05-26  Jonathan Yavner  <jyavner@member.fsf.org>
8889         * ses.el (defadvice undo-more): Delete this defadvice.  The undo
8890         overrides will now be done a different way.
8891         (ses-set-parameter): Reapply this function for undo.
8892         (ses-set-header-row): Reconstruct header row during undo.
8893         (ses-widen): New function.
8894         (ses-goto-data, ses-reconstruct-all): Use new function.
8895         (ses-command-hook): Widen buffer during undo, before unupdating
8896         the cells.
8897         (ses-insert-row, ses-delete-row): Widen buffer during undo.
8898         (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
8899         (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
8900         formula hasn't been executed yet.
8902 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
8904         * comint.el (comint-kill-whole-line): Rename arg to count.
8905         Fix doc string.
8907 2006-05-26  Chong Yidong  <cyd@stupidchicken.com>
8909         * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
8910         to copy-file.
8912 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
8914         * simple.el (toggle-truncate-lines): Make arg optional for
8915         backward compatibility.
8917 2006-05-26  Thien-Thi Nguyen  <ttn@gnu.org>
8919         * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
8920         (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
8921         DLL arg.  Instead, use ewoc--current-dll.  Update all callers.
8922         (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
8923         (ewoc--adjust): Use ewoc--current-dll.
8924         (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
8926 2006-05-26  Carsten Dominik  <dominik@science.uva.nl>
8928         * textmodes/org.el (org-next-item, org-previous-item): Emit more
8929         compact error message.
8930         (org-tags-view): Refresh category table in each file.
8931         (org-table-justify-field-maybe): Remove superfluous arguments to
8932         `format'.
8933         (org-export-as-html): Insert "<p>" before postamble.
8934         (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
8936 2006-05-26  Kenichi Handa  <handa@m17n.org>
8938         * textmodes/po.el (po-find-charset): Pay attention to the case
8939         FILENAME is a cons (NAME . BUFFER).
8940         (po-find-file-coding-system-guts): Likewise.
8942         * arc-mode.el (archive-set-buffer-as-visiting-file):
8943         Call find-operation-coding-system with (FILENAME . BUFFER).
8945         * tar-mode.el (tar-extract): Call find-operation-coding-system
8946         with (FILENAME . BUFFER).
8948         * international/mule.el (decode-coding-inserted-region):
8949         Call find-operation-coding-system with (FILENAME . BUFFER).
8951 2006-05-25  Chong Yidong  <cyd@stupidchicken.com>
8953         * image-mode.el (image-toggle-display): Use buffer contents to
8954         generate image for a remote file.
8956 2006-05-25  Juri Linkov  <juri@jurta.org>
8958         * replace.el (query-replace-read-from, query-replace-read-to):
8959         Remove 8th arg KEEP-ALL in read-from-minibuffer.
8961 2006-05-25  Rajesh Vaidheeswarran  <rv@gnu.org>
8963         * whitespace.el (whitespace-cleanup): Change to cleanup
8964         region if one is active.
8965         * whitespace.el (whitespace-cleanup-internal): New internal method.
8967 2006-05-25  Mathias Dahl  <mathias.dahl@gmail.com>
8969         * dired.el (dired-mode-map): Add help-echo strings to tumme
8970         commands.  Bind `tumme-dired-display-image' to C-t i.
8972         * tumme.el (tumme-display-image): Change documentation string slightly.
8973         (tumme-dired-display-image): Add call to `display-buffer'.
8975 2006-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
8977         * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
8978         Signal error if RAW-DATA is a multibyte string.
8980 2006-05-24  Richard Stallman  <rms@gnu.org>
8982         * subr.el (with-local-quit): When handling `quit' signal,
8983         make a chance for quit-flag to cause a quit.
8985         * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
8986         (ad-disable-advice): Add autoloads.
8988         * subr.el (read-passwd): Copy PROMPT before changing its properties.
8990 2006-05-25  Mathias Dahl  <mathias.dahl@gmail.com>
8992         * dired.el (dired-mode-map): Change menu items for tumme as per
8993         suggestions in emacs-devel.
8995 2006-05-25  Nick Roberts  <nickrob@snap.net.nz>
8997         * dired.el (dired-mode-map): Fix breakage.
8999 2006-05-25  Mathias Dahl  <mathias.dahl@gmail.com>
9001         * tumme.el (tumme-display-dired-image): Rename to...
9002         (tumme-dired-display-image): ...this.
9003         (tumme-track-movement): Change default value to t.
9004         (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
9005         used from `tumme-next-line-and-display' and similar commands.
9007         * dired.el (dired-mode-map): Add Thumbnail submenu under the
9008         Immediate menu.  Add some tumme commands there.
9010 2006-05-24  Luc Teirlinck  <teirllm@auburn.edu>
9012         * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
9014 2006-05-24  Chong Yidong  <cyd@mit.edu>
9016         * menu-bar.el, international/mule-cmds.el: Remove tooltips for
9017         menu entries that open submenus.
9019 2006-05-24  Alan Mackenzie  <acm@muc.de>
9021         * startup.el (command-line): For names of preloaded files, don't
9022         append ".elc" (now done in Fload), and call file-truename on the
9023         lisp directory.
9025         * subr.el (eval-after-load): Fix the doc-string.  Allow FILE to
9026         match ANY loaded file with the right name, not just those in
9027         load-path.  Put a regexp matching the file name into
9028         after-load-alist, rather than the name itself.
9030         * subr.el (load-history-regexp, load-history-filename-element)
9031         (do-after-load-evaluation): New functions.
9033         * international/mule.el (load-with-code-conversion): Do the
9034         eval-after-load stuff by calling do-after-load-evaluation.
9036 2006-05-25  Nick Roberts  <nickrob@snap.net.nz>
9038         * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
9039         has not been killed.
9041 2006-05-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9043         * term/mac-win.el: Set idle timer to clean up expired Apple events.
9044         (mac-ae-get-url): Redispatch Apple event on unknown scheme.
9045         (mac-dispatch-apple-event): Resume Apple event if it is suspended.
9046         Optionally set error message in reply.
9048 2006-05-24  Carsten Dominik  <dominik@science.uva.nl>
9050         * textmodes/org.el (org-open-at-point): Use renamed variable
9051         `org-confirm-shell-link-function'.
9052         (org-confirm-shell-link-function): Rename from
9053         `org-confirm-shell-links'.
9054         (org-export-directory): New function.
9055         (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
9056         (org-export-icalendar): Use `org-export-directory'.
9057         (org-indent-item): Keep cursor position.
9058         (org-link-file-path-type): New option.
9059         (org-export-as-html): Fix bug with plain lists starting in
9060         column 0.
9061         (org-export-as-html): Remove deadline formatting, this happens
9062         now already in `org-html-handle-time-stamps'.
9063         (org-export-html-style): Deadline class removed.
9064         (org-insert-labeled-timestamps-at-point): New option.
9065         (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
9066         of `hide-sublevels 1', in case the first headline is not level 1.
9067         (org-overview, org-content): New fuction.
9068         (org-cycle-global-status, org-cycle-subtree-status): Make these
9069         variables buffer-local.
9070         (org-global-cycle): New command.
9071         (org-shifttab): Use `org-global-cycle'.
9072         (org-insert-heading, org-insert-item): Go to end of new
9073         headline/item after creating it.
9074         (org-export-visible): Rename from `org-export-copy-visible'.
9075         Now creates a temporary org-file and applies an exporting command
9076         to it.
9077         (org-table-eval-formula): Support for lisp forms.
9078         (org-agenda-todo-ignore-scheduled): New option.
9079         (org-agenda-get-todos): Use new option
9080         `org-agenda-todo-ignore-scheduled'.
9081         (org-export-html-inline-images): New value `maybe'.
9082         (org-export-as-html): Inlining of images dependent on link description.
9083         (org-archive-subtree): Check for end-of-buffer before trying
9084         `kill-line'.
9085         (org-agenda-follow-mode): New option.
9086         (org-export-with-tags, org-export-with-timestamps): New options.
9087         (org-html-handle-time-stamps): New function.
9088         (org-keyword-time-regexp): New variable.
9089         (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
9090         (org-agenda-todo-list-sublevels): New option.
9091         (org-html-level-start): When TITLE is nil, just close all levels.
9092         (org-parse-key-lines, org-parse-export-options): Remove functions,
9093         replaced by `org-infile-export-plist'.
9094         (org-combine-plists, org-infile-export-plist)
9095         (org-default-export-plist): New functions.
9096         (org-export-html-preamble, org-export-html-postamble)
9097         (org-export-html-auto-preamble, org-export-html-auto-postamble):
9098         New variables.
9099         (org-export-publishing-directory): New option.
9100         (org-export-as-html, org-export-as-ascii): Use the new property
9101         lists for settings.
9102         (org-export-copy-visible, org-export-as-xoxo):
9103         Respect `org-export-publishing-directory'.
9104         (org-link-search, org-store-link, org-file-apps): Support for
9105         links to BibTeX database entries..
9106         (org-get-current-options, org-set-regexps-and-options):
9107         Implement logging as a startup option.
9108         (org-store-link): Make sure context string is never empty
9109         (org-insert-link): Use relative path when possible.
9110         (org-at-item-checklet-p): New function.
9111         (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
9112         (org-shiftmetaup, org-shiftmetadown, org-metaleft)
9113         (org-metaright, org-metaup, org-metadown, org-shiftup)
9114         (org-shiftdown, org-shiftright, org-shiftleft)
9115         (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
9116         Dispatch using `call-interactively'.
9117         (org-call-with-arg): New defsubst.
9118         (org-tag-alist, org-use-fast-tag-selection): New options.
9119         (org-complete): Use `org-tag-alist'.
9120         (org-fast-tag-insert, org-fast-tag-selection): New functions.
9121         (org-next-item, org-previous-item): New commands.
9122         (org-beginning-of-item, org-end-of-item): Add (interactive) to
9123         make command.
9124         (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
9126 2006-05-23  Thien-Thi Nguyen  <ttn@gnu.org>
9128         * emacs-lisp/ewoc.el (ewoc-delete): New function.
9129         (ewoc-filter): Use `ewoc-delete'.
9131         * emacs-lisp/bindat.el (bindat-pack): Doc fix.
9133 2006-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9135         * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
9136         Signal more user-friendly error messages.
9138         * complete.el (PC-do-completion): Undo the addition of implicit
9139         wildcards if they did not lead to finding any match.
9140         (read-file-name-internal): Don't add the final > if the completion is
9141         not finished.
9143 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
9145         * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
9146         Quote safe-local-variable predicate.
9148 2006-05-22  Thien-Thi Nguyen  <ttn@gnu.org>
9150         * emacs-lisp/ewoc.el (ewoc-set-data): New function.
9152 2006-05-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9154         * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
9156         * progmodes/make-mode.el (makefile-special-targets-list)
9157         (makefile-macro-table, makefile-target-table): Mark as risky.
9158         (makefile-query-one-target-method): Make this the alias for the
9159         following variable.
9160         (makefile-query-one-target-method-function): Make this the real name.
9162         * textmodes/artist.el (artist-text-renderer): Make this the alias
9163         for the following variable.
9164         (artist-text-renderer-function): Make this the real name.
9166         * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
9167         the alias for the following variable.
9168         (flyspell-generic-check-word-predicate): Make this the real name.
9170         * textmodes/ispell.el (ispell-format-word): Make this the alias
9171         for the following variable.
9172         (ispell-format-word-function): Make this the real name.
9173         (ispell-message-text-end): Mark as risky.
9175         * skeleton.el (skeleton-transformation, skeleton-filter)
9176         (skeleton-pair-filter): Make these the aliases for the following
9177         variables.
9178         (skeleton-transformation-function, skeleton-filter-function)
9179         (skeleton-pair-filter-function): Make these the real names.
9181         * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
9182         and skeleton-pair-filter-function.
9184         * textmodes/sgml-mode.el (sgml-transformation): Make this the
9185         alias for the following variable.
9186         (sgml-transformation-function): Make this the real name.
9187         (sgml-tag-alist): Mark as risky.
9189 2006-05-21  Richard Stallman  <rms@gnu.org>
9191         * simple.el (kill-region): Interactively, pass point, then mark.
9193 2006-05-22  Thien-Thi Nguyen  <ttn@gnu.org>
9195         * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
9197 2006-05-21  Romain Francoise  <romain@orebokech.com>
9199         * dired-x.el (dired-mode-map): Don't bind M-g.
9201 2006-05-20  Richard Stallman  <rms@gnu.org>
9203         * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
9204         (dired-goto-file): Doc fix.
9206 2006-05-21  Kim F. Storm  <storm@cua.dk>
9208         * emulation/cua-base.el: Mention customizing cua-mode as alternative
9209         way to enable built-in cua-mode if user loads older CUA-mode package.
9211         * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
9212         if default-filename is specified.
9214 2006-05-20  Eli Zaretskii  <eliz@gnu.org>
9216         * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
9218         * info.el (info-apropos): Make sure current-file and current-node
9219         have non-nil values.  Speed up by using add-to-list instead of
9220         manual consing.
9222 2006-05-20  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
9224         * progmodes/make-mode.el (makefile-mode): Doc fix.
9226 2006-05-20  Eli Zaretskii  <eliz@gnu.org>
9228         * dired-aux.el (dired-do-shell-command): Doc fix.
9230 2006-05-20  Kevin Ryde  <user42@zip.com.au>
9232         * info-xref.el (info-xref-check-all-custom): Skip :tag part of
9233         ``(custom-manual :tag "Foo" "(foo)Node")''.
9235 2006-05-20  Karl Chen  <quarl@cs.berkeley.edu>
9237         * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
9238         value is an integer.
9240 2006-05-20  Eli Zaretskii  <eliz@gnu.org>
9242         * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
9243         "format".
9244         (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
9246 2006-05-20  Martin Rudalics  <rudalics@gmx.at>
9248         * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
9249         a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
9251 2006-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9253         * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
9254         regexp for keywords.
9256 2006-05-20  Masayuki FUJII  <boochang@m4.kcn.ne.jp>  (tiny change)
9258         * dnd.el (dnd-get-local-file-name): Specify LITERAL in
9259         replace-regexp-in-string.
9261         * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
9262         encode, and escape file name on conversion to URL.
9264 2006-05-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9266         * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
9267         Don't unescape URL.
9268         (dnd-get-local-file-name): Unescape URL on conversion to file name.
9270         * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
9271         on conversion to URLs.
9273         * net/browse-url.el (browse-url-file-url): Encode file name on
9274         conversion to URL.
9276         * term/mac-win.el (mac-ae-open-documents): Escape file name on
9277         conversion to URL.
9279 2006-05-19  Eli Zaretskii  <eliz@gnu.org>
9281         * progmodes/cc-styles.el (c-style-alist): Doc fix.
9283 2006-05-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9285         * term/mac-win.el (mac-bytes-to-digits): Remove function.
9286         (mac-handle-toolbar-switch-mode): Use coercion instead of it.
9288 2006-05-19  Glenn Morris  <rgm@gnu.org>
9290         * calendar/diary-lib.el (diary-bahai-date)
9291         (list-bahai-diary-entries, mark-bahai-diary-entries)
9292         (mark-bahai-calendar-date-pattern): Not interactive.
9293         (add-to-diary-list): New optional arg LITERAL.  Doc fix.
9294         (diary-entries-list): Change format of 4th element in each entry.
9295         (diary-list-entries): Use add-to-diary-list.
9296         (diary-goto-entry): Handle the case where the buffer visiting the
9297         diary has been killed.
9298         (fancy-diary-display): Add 'locator to button rather than 'marker.
9299         Only generate temp-face when there are marks to apply.
9300         (list-sexp-diary-entries): Pass literal to add-to-diary-list.
9301         (diary-fancy-date-pattern): New variable.
9302         (diary-time-regexp): Doc fix.
9303         (diary-anniversary, diary-time): New faces.
9304         (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
9305         diary-time-regexp.  Add font-lock-multiline property where needed.
9306         Use new faces diary-anniversary and diary-time.
9307         (diary-fancy-font-lock-fontify-region-function): New function, to
9308         handle multiline font-lock pattern in fancy diary.
9309         (fancy-diary-display-mode): Set font-lock-fontify-region-function.
9310         (diary-font-lock-keywords): Tweak time regexp.  Use new face
9311         diary-time.
9313 2006-05-19  Alexander Shopov  <ash@contact.bg>  (tiny change)
9315         * international/code-pages.el (mik): Table corrected.
9317 2006-05-18  Kim F. Storm  <storm@cua.dk>
9319         * progmodes/grep.el (grep-find): Don't check grep-find-command
9320         before running command (breaks non-interactive usage).
9322 2006-05-18  Thien-Thi Nguyen  <ttn@gnu.org>
9324         * emacs-lisp/ewoc.el (ewoc--adjust): New func.
9325         (ewoc--insert-new-node): Don't insert trailing newline.
9326         Instead, adjust successor nodes's start markers.
9327         (ewoc--refresh-node): Delete all text from current node's start
9328         marker to the next one's; adjust successor nodes's start markers.
9329         (ewoc--create): Doc fixes.
9330         (ewoc--refresh): Don't insert newline.
9331         (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
9332         * pcvs.el (cvs-make-cvs-buffer):
9333         Specify extra newline for ewoc's header and footer.
9334         (cvs-update-header): Update initial header recognition.
9335         Append newline to final header and footer values.
9336         * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
9338 2006-05-17  Richard Stallman  <rms@gnu.org>
9340         * files.el (file-name-extension): Doc fix.
9342 2006-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9344         * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
9345         we can explicitly enable/disable rather than toggle.
9346         (shell-mode): Use it.
9347         (shell-cd): Don't try to reproduce what `cd' does.
9349 2006-05-17  Kim F. Storm  <storm@cua.dk>
9351         * ido.el (ido-read-internal): Use only nondirectory part of
9352         default item.
9354 2006-05-17  Thien-Thi Nguyen  <ttn@gnu.org>
9356         * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
9357         (ewoc-nth): Doc fix.
9359         (ewoc-map, ewoc-invalidate): Compute PP before looping.
9361 2006-05-16  Eli Zaretskii  <eliz@gnu.org>
9363         * international/mule.el (auto-coding-alist): Add .lha to files
9364         read with no-conversion.
9366         * files.el (auto-mode-alist): Add .lha files to archive file
9367         extensions.
9369         * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
9370         Convert csize to integer when computing offsets within the
9371         compressed archive file.
9373 2006-05-16  Kim F. Storm  <storm@cua.dk>
9375         * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
9376         with read-from-minibuffer.
9378 2006-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
9380         * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
9381         (byte-compile-warnings): Fix safe-local-variable property.
9383 2006-05-16  Ken Manheimer  <ken.manheimer@gmail.com>
9385         * allout.el (allout-show-bodies, allout-old-style-prefixes)
9386         (allout-stylish-prefixes, allout-numbered-bullet)
9387         (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
9388         predicates to qualify `safe-local-variable' property, when
9389         available, else use equivalent lambda.
9390         (allout-current-topic-collapsed-p): Do the right thing regarding
9391         trailing blank lines.
9393 2006-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9395         * server.el (server-start): Only create a directory if needed.
9396         (server-edit, server-unload-hook): server-start => server-mode.
9397         (kill-emacs-hook): Cleanup upon exit.
9399 2006-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9401         * hexl.el (hexlify-buffer): Encode process arguments manually.
9403 2006-05-16  Nick Roberts  <nickrob@snap.net.nz>
9405         * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
9406         call to gdb-tooltip-print.
9408 2006-05-15  Romain Francoise  <romain@orebokech.com>
9410         * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
9411         systems, default to "tar" since those systems probably have GNU tar.
9413 2006-05-14  Lars Hansen  <larsh@soem.dk>
9415         * desktop.el (desktop-missing-file-warning): Fix docstring.
9416         (desktop-restore-file-buffer): Correct question asked on missing file.
9418 2006-05-14  Kim F. Storm  <storm@cua.dk>
9420         * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
9421         Add CUA move property.
9423 2006-05-13  Chong Yidong  <cyd@stupidchicken.com>
9425         * custom.el (custom-push-theme): Load the variable before checking
9426         its `standard-value'.
9428 2006-05-13  Lars Hansen  <larsh@soem.dk>
9430         * desktop.el (desktop-save): Use with-temp-buffer.
9432 2006-05-12  Glenn Morris  <rgm@gnu.org>
9434         * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
9435         * calendar/calendar.el (calendar-mode-map):
9436         * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
9437         * calendar/appt.el (appt-check, appt-make-list): Refer to
9438         diary-view-entries, diary-list-entries, diary-show-all-entries
9439         rather than obsolete aliases.
9441 2006-05-12  Chong Yidong  <cyd@stupidchicken.com>
9443         * simple.el (line-move-finish): Avoid calling point motion hooks
9444         while processing intangibility.
9446 2006-05-12  Dan Nicolaescu  <dann@ics.uci.edu>
9448         * term/xterm.el (terminal-init-xterm): Fix typo.
9450 2006-05-12  Ken Manheimer  <ken.manheimer@gmail.com>
9452         * allout.el (allout-view-change-hook): Mark as being deprecated,
9453         to be replaced by `allout-exposure-change-hook'.
9454         (allout-exposure-change-hook): New, replacing
9455         `allout-view-change-hook'.
9456         (allout-flag-region): Run new hook `allout-exposure-change-hook',
9457         in addition to `allout-view-change-hook'.
9458         (allout-show-bodies, allout-old-style-prefixes)
9459         (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
9460         lambda forms to prevent their showing up in variable help
9461         presentations as inscrutable byte-compiled code.
9462         (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
9463         Use string-or-null-p to qualify safe-local-variable values.
9464         (allout-reindent-bodies): Use memq to qualify matches against
9465         valid safe-local-variable values.  Also, quote the lambda as above.
9466         (allout-use-mode-specific-leader): Add missing candidate-value
9467         symbols, use memq, and quote the lambda.
9468         (allout-overlay-interior-modification-handler): Remove unused
9469         variables `msg' and 'opened'.
9470         (allout-hidden-p): Constrain invisibility consideration to allout's
9471         invisibility spec, disregarding invisibility for other reasons.
9473 2006-05-12  Reiner Steib  <Reiner.Steib@gmx.de>
9475         * files.el (version-control): Correct safe values.
9477 2006-05-12  Thien-Thi Nguyen  <ttn@gnu.org>
9479         * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
9481         (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
9482         (ewoc--insert-new-node): New func.
9483         Update callers of deleted funcs to use it, instead.
9485 2006-05-11  Glenn Morris  <rgm@gnu.org>
9487         * calendar/calendar.el (diary-show-all-entries): Do not refer to
9488         obsolete alias `show-all-diary-entries'.
9489         (make-diary-entry): Not interactive.
9490         (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
9491         (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
9492         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
9493         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
9494         (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
9495         (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
9497 2006-05-11  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
9499         * calendar/calendar.el (calendar-french-date-string)
9500         (calendar-mayan-date-string, calendar-chinese-date-string)
9501         (calendar-astro-date-string, calendar-iso-date-string)
9502         (calendar-islamic-date-string, calendar-bahai-date-string)
9503         (calendar-hebrew-date-string, calendar-coptic-date-string)
9504         (calendar-ethiopic-date-string, calendar-persian-date-string):
9505         These functions are not interactive.
9507 2006-05-11  Luc Teirlinck  <teirllm@auburn.edu>
9509         * files.el: Balance parentheses.
9511 2006-05-11  Reiner Steib  <Reiner.Steib@gmx.de>
9513         * files.el, newcomment.el, outline.el, simple.el,
9514         * emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
9515         * progmodes/cc-vars.el, progmodes/compile.el:
9516         Move `safe-local-variable' declarations to the respective files.
9518         * help-fns.el (describe-variable): Don't print safe-var if it is
9519         byte-code.  Improve wording as suggested by Luc Teirlinck.
9521 2006-05-11  Nick Roberts  <nickrob@snap.net.nz>
9523         * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
9524         (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
9525         Use a token for pending-triggers to ensure gdb-var-update
9526         gets called once per user input again for pre-GDB 6.4.
9527         (gdb-var-delete): Match on more complex expressions.
9528         (gdb-var-list-children-handler, gdb-var-create-handler):
9529         Use a token for consistency.
9531 2006-05-11  Carsten Dominik  <dominik@science.uva.nl>
9533         * textmodes/org.el (org-read-date, org-goto-calendar)
9534         (org-agenda-goto-calendar):
9535         Bind `view-calendar-holidays-initially' to nil.
9537 2006-05-11  Thien-Thi Nguyen  <ttn@gnu.org>
9539         * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
9540         Update all callers to do it there, instead.
9542 2006-05-10  Glenn Morris  <rgm@gnu.org>
9544         * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
9545         prefix arg case, to avoid view-diary-entries-initially error.
9546         Reported by Stephen Berman <Stephen.Berman at gmx.net>.
9547         (calendar-date-is-legal-p): Handle dates with no day part.
9549 2006-05-11  Nick Roberts  <nickrob@snap.net.nz>
9551         * comint.el (comint-insert-input): Just make it when
9552         comint-use-prompt regexp is nil (default) and with the mouse.
9553         (comint-copy-old-input): Reinstate from 2004-06-23.
9554         (comint-mode-map): Bind C-c C-m to it.
9556 2006-05-10  J.D. Smith  <jdsmith@as.arizona.edu>
9558         * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
9559         Remove spurious move to point-max (new comint behavior fixes).
9561         * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
9562         compatibility function (Emacs 18/19).
9563         (idlwave-is-continuation-line): Always return point at start of
9564         previous non-blank continuation line.
9565         (keyword-parameters): Fix continued comment font-lock matcher.
9566         (idlwave-font-lock-fontify-region): Written, use as
9567         font-lock-fontify-region-function, to fix continued keyword
9568         fontification issues.
9570 2006-05-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9572         * term/mac-win.el (mac-font-panel-mode): Doc fix.
9573         (mac-service-selection, mac-service-open-file)
9574         (mac-service-open-selection, mac-service-mail-selection)
9575         (mac-service-mail-to, mac-service-insert-text): Rename from
9576         mac-services-*.  All uses changed.
9577         (mac-apple-event-map): Rename event symbol `services' to `service'.
9579 2006-05-10  Thien-Thi Nguyen  <ttn@gnu.org>
9581         * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
9582         (ewoc--node-enter-first, ewoc--node-enter-last)
9583         (ewoc--delete-node-internal): Merge funcs into unique callers.
9585 2006-05-09  Chong Yidong  <cyd@stupidchicken.com>
9587         * emacs-lisp/crm.el (completing-read-multiple): Properly handle
9588         return value of read-from-minibuffer for empty input.
9590 2006-05-09  Miles Bader  <miles@gnu.org>
9592         * comint.el (comint-insert-input): Remove redundant calls to setq
9593         and goto-char.
9595 2006-05-10  Nick Roberts  <nickrob@snap.net.nz>
9597         * comint.el (comint-insert-input): Make it work when
9598         comint-use-prompt-regexp is t.
9600 2006-05-10  Miles Bader  <miles@gnu.org>
9602         * subr.el (field-at-pos): New function.
9604         * comint.el (comint-insert-input): Use it.
9606 2006-05-09  Juri Linkov  <juri@jurta.org>
9608         * battery.el (battery-linux-proc-acpi): Also try
9609         `/proc/acpi/thermal_zone/THR2/temperature'.
9611         * files.el <safe-local-variable>: Remove `eval' and `let' binding
9612         for now unused lambda `string-or-null'.
9614         * add-log.el (change-log-default-name): Put `string-or-null-p'
9615         instead of lambda on `safe-local-variable' property.
9617         * diff-mode.el (diff-context->unified): Use `region-beginning' and
9618         `region-end' instead of `mark' and `point'.
9619         (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
9620         Operate on region in Transient Mark mode when the mark is active.
9621         Use `region-beginning' and `region-end' instead of `mark' and
9622         `point'.
9623         (diff-hunk-text, diff-goto-source): Doc fix.
9625         * startup.el (fancy-splash-screens, normal-splash-screen): Use
9626         face `mode-line-buffer-id' for mode-line buffer face instead of
9627         hard-coded `(:weight bold)'.
9629         * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
9630         buffer-undo-list to t (undo-ask is reproducible by visiting
9631         nested archives).
9633 2006-05-09  Kim F. Storm  <storm@cua.dk>
9635         * progmodes/grep.el (rgrep): Set default directory of *grep*
9636         buffer if we start M-x rgrep in the *grep* buffer and choose
9637         a different base directory.
9639 2006-05-09  Michael Albinus  <michael.albinus@gmx.de>
9641         * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
9642         completion also when ido is loaded.
9644 2006-05-09  Masatake YAMATO  <jet@gyve.org>
9646         * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
9647         "warning" and "import".
9648         (cpp-font-lock-keywords): Added "warning".
9650 2006-05-08  Dan Nicolaescu  <dann@ics.uci.edu>
9652         * term/xterm.el (terminal-init-xterm): Add more key bindings.
9654 2006-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9656         * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
9657         pages at a time, if we signal the end, we should indeed reach that end.
9659 2006-05-08  David Reitter  <david.reitter@gmail.com>
9661         * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
9662         output during execution of the body.
9664 2006-05-08  Kim F. Storm  <storm@cua.dk>
9666         * progmodes/grep.el (lgrep, rgrep): Doc fixes.
9668 2006-05-08  Thien-Thi Nguyen  <ttn@gnu.org>
9670         * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
9671         Use with-current-buffer.
9673 2006-05-07  Kim F. Storm  <storm@cua.dk>
9675         * subr.el (add-to-history): Remove keep-dups arg.
9677         * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
9678         to nil around call to add-to-history.
9680 2006-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9682         * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
9683         than after a buffer modification.
9685 2006-05-08  Nick Roberts  <nickrob@snap.net.nz>
9687         * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
9688         call to...
9689         (gud-watch): ...here so speedbar is raised for already watched
9690         expressions.
9691         (gdb-speedbar-refresh): Delete function.
9692         (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
9693         Use speedbar-timer-fn instead of speedbar-refresh (reverting
9694         earlier change).
9695         (gdb-var-evaluate-expression-handler)
9696         (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
9698         * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
9699         Update localized contents for all buffers except ignored modes.
9701 2006-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9703         * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
9704         (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
9705         (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
9706         (mac-handle-font-panel-closed, mac-handle-font-selection):
9707         New functions.
9708         (mac-font-panel-mode): New minor mode.
9709         (mac-apple-event-map): Add bindings for toolbar toggle button and
9710         font panel.
9711         (menu-bar-showhide-menu): Add mac-font-panel-mode.
9713 2006-05-07  John Paul Wallington  <jpw@pobox.com>
9715         * ibuffer.el (ibuffer-compressed-file-name-regexp):
9716         Avoid `regexp-opt'; simplify regexp for readability.
9718 2006-05-06  Eli Zaretskii  <eliz@gnu.org>
9720         * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
9721         * files.el (buffer-stale-function):
9722         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
9723         * autorevert.el (global-auto-revert-non-file-buffers): Point Info
9724         links to the main manual, not to emacs-xtra.
9726 2006-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9728         * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
9729         MacJapanese if text is ASCII-only.
9731 2006-05-06  Nick Roberts  <nickrob@snap.net.nz>
9733         * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
9734         unless so nil isn't returned.
9735         (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
9737 2006-05-06  Kim F. Storm  <storm@cua.dk>
9739         * subr.el (add-to-history): New function.
9741         * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
9742         (ediff-merge-files-with-ancestor):
9743         * env.el (setenv):
9744         * isearch.el (isearch-update-ring):
9745         * server.el (server-visit-files):
9746         * progmodes/grep.el (lgrep, rgrep):
9747         * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
9748         * progmodes/xscheme.el (xscheme-insert-expression):
9749         Use add-to-history.
9751         * kmacro.el (kmacro-push-ring): Use add-to-history.
9752         (kmacro-ring-length): Remove unused defun.
9753         (kmacro-start-macro): Use kmacro-push-ring.
9755 2006-05-06  Thien-Thi Nguyen  <ttn@gnu.org>
9757         * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
9758         directly instead of a lambda expression that calls it.
9760 2006-05-06  Kim F. Storm  <storm@cua.dk>
9762         * avoid.el (mouse-avoidance-point-position): Use posn-at-point
9763         instead of compute-motion.
9765 2006-05-05  Dan Nicolaescu  <dann@ics.uci.edu>
9767         * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
9768         change.
9770 2006-05-05  Reiner Steib  <Reiner.Steib@gmx.de>
9772         * startup.el (command-line-1): Refer to "Pure Storage" on
9773         pure-space-overflow.
9775 2006-05-05  Martin Rudalics  <rudalics@gmx.at>
9777         * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
9778         provided faces once they all have been used up.
9780 2006-05-05  Eli Zaretskii  <eliz@gnu.org>
9782         * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
9783         reference to the Lisp manual to the warning about pure space
9784         overflow.
9786 2006-05-05  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
9788         * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
9789         argument to avoid the call to `ispell-internal-change-dictionary'
9790         when not needed.
9791         (ispell-change-dictionary): Use this argument and call
9792         `ispell-internal-change-dictionary' after the possible change
9793         to `ispell-local-dictionary'.
9794         (ispell-internal-change-dictionary): Check for a change in
9795         personal dictionary use too.
9797 2006-05-05  Eli Zaretskii  <eliz@gnu.org>
9799         * startup.el (command-line): On MS-Windows, probe "~", not
9800         "~USER", for warning about non-existent home directory
9802         * arc-mode.el (archive-l-e): New optional argument `float' means
9803         generate a float value.
9804         (archive-arc-summarize, archive-lzh-summarize)
9805         (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
9806         with 3rd argument non-nil when file's size is being computed.
9807         Format the file sizes with %8.0f instead of %8d.
9809 2006-05-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9811         * cus-start.el (all): Add mac-dnd-known-types.
9813         * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
9814         (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
9815         (mac-TIFF-to-string): New functions.
9816         (x-get-selection, x-selection-value)
9817         (mac-select-convert-to-string): Use them.
9818         (mac-text-encoding-mac-japanese-basic-variant): New constant.
9819         (mac-dnd-types-alist): New customization variable.
9820         (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
9821         (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
9822         (mac-dnd-handle-drag-n-drop-event): New functions.
9823         (mac-drag-n-drop): Remove function.
9824         (global-map): Bind drag-n-drop and M-drag-n-drop to
9825         mac-dnd-handle-drag-n-drop-event.
9827 2006-05-04  Karl Chen  <quarl@NOSPAM.quarl.org>
9829         * progmodes/perl-mode.el (perl-beginning-of-function):
9830         Skip anonymous subs.
9832 2006-05-04  Dan Nicolaescu  <dann@ics.uci.edu>
9834         * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
9835         regexp-opt at run time.
9837         * term.el (term-handle-ansi-escape): Fix off by one error.
9839 2006-05-04  Nick Roberts  <nickrob@snap.net.nz>
9841         * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
9842         (gdb-init-1, gdb-post-prompt): ...and references to it.
9843         (gdb-frame-handler): Strip directory name from filename if present.
9845         * progmodes/gud.el (gdb-force-update): Delete defvar
9846         (gud-speedbar-buttons): ...and references to it.  Use window-start
9847         to try to keep positon in watch expression.
9849 2006-05-03  Richard Stallman  <rms@gnu.org>
9851         * simple.el (next-history-element, previous-history-element): Doc fix.
9853         * isearch.el (isearch-update-ring): Doc fix.
9855 2006-05-03  Dan Nicolaescu  <dann@ics.uci.edu>
9857         * isearch.el (isearch-update-ring): Take history-delete-duplicates
9858         into consideration.  Replace one arm ifs with whens.
9860 2006-05-03  Nick Roberts  <nickrob@snap.net.nz>
9862         * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
9863         (menu): Fix typo.
9865 2006-05-02  Miles Bader  <miles@gnu.org>
9867         * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
9869 2006-05-02  Jay Belanger  <belanger@truman.edu>
9871         * calc/calc-embed.el (calc-override-minor-modes-map)
9872         (calc-override-minor-modes): New variables.
9873         (calc-do-embedded): Make sure that Calc keystrokes aren't
9874         overwritten by minor modes.
9876 2006-05-02  Chong Yidong  <cyd@mit.edu>
9878         * msb.el (msb): If EVENT is a down event, read and discard the up event.
9880 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
9882         * startup.el (command-line-1): Refer to Lisp manual when
9883         pure-space-overflow occurs.
9885         * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
9886         (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
9887         (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
9888         (version-control): Don't use `t' for safe-local-variable declarations.
9890 2006-05-01  Richard Stallman  <rms@gnu.org>
9892         * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
9893         M-r, M-R, M-A, M-SPC or M-DEL.
9894         (diff-mode-map): diff-refine-hunk now on C-c C-w
9895         (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
9897         * help-mode.el (help-mode): view-exit-action calls delete-window
9898         only when it is safe and possible.
9900         * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
9901         in messages.
9903         * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
9905         * tool-bar.el (tool-bar-setup): Put Help and Preferences items
9906         in the default tool-bar-map.
9908 2006-05-01  Michael Albinus  <michael.albinus@gmx.de>
9910         * net/tramp.el (tramp-completion-file-name-handler-alist)
9911         (tramp-run-real-handler, tramp-completion-run-real-handler)
9912         (tramp-completion-handle-file-name-all-completions)
9913         (tramp-completion-handle-file-name-completion): Autoload them.
9914         (tramp-completion-handle-file-exists-p)
9915         (tramp-completion-handle-file-name-directory)
9916         (tramp-completion-handle-file-name-nondirectory)
9917         (tramp-completion-handle-expand-file-name): Remove them.
9918         (tramp-handle-file-name-directory): Return the real directory name.
9919         Returning "/" only doesn't need to be necessary any longer.
9920         (tramp-file-name-handler): Make special attention when in hostname
9921         completion mode.
9922         (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
9923         (tramp-register-file-name-handlers):
9924         Register `tramp-completion-file-name-handler' only when
9925         `partial-completion-mode' is enabled.
9926         (tramp-completion-handle-file-name-all-completions):
9927         Delete directory part from results.
9928         (tramp-get-completion-methods, tramp-get-completion-user-host):
9929         Discard deleting "/", it doesn't work after the change of
9930         `tramp-handle-file-name-directory' above.
9932 2006-05-01  Kim F. Storm  <storm@cua.dk>
9934         * progmodes/grep.el (grep-expand-template): Use save-match-data
9935         and symbol-value.
9937 2006-05-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9939         * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
9940         Use select-frame-set-input-focus instead of raise-frame.
9941         (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
9943 2006-05-01  Nick Roberts  <nickrob@snap.net.nz>
9945         * progmodes/gud.el (gud-def): Add %c case.
9946         (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
9947         (gud-format-command): Make match case sensitive.  Match on %F.
9949 2006-04-30  Glenn Morris  <rgm@gnu.org>
9951         * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
9952         (cal-tex-preamble): Use cal-tex-preamble-extra.
9953         (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
9954         than alias `list-diary-entries'.
9956 2006-04-29  Dan Nicolaescu  <dann@ics.uci.edu>
9958         * help-fns.el (describe-variable): Add info about safe local variables.
9960 2006-04-29  Richard Stallman  <rms@gnu.org>
9962         * bindings.el (mode-line-format): help-echo doc fixes.
9964         * net/tramp.el (tramp-file-name-handler-alist): Delete
9965         expand-file-name and other operations that can cause spurious loading.
9967 2006-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9969         * files.el (safe-local-variable-p): Remove support for the special
9970         value t.
9972         * textmodes/paragraphs.el (sentence-end-without-space):
9973         Fix safety predicate.
9974         (sentence-end-double-space, sentence-end-without-period)
9975         (paragraph-ignore-fill-prefix):
9976         * textmodes/fill.el (colon-double-space):
9977         * abbrev.el (abbrev-mode): Tighten the safety predicate.
9979         * subr.el (booleanp): New fun.
9981         * textmodes/reftex-vars.el (reftex-guess-label-type):
9982         Tighten the safety predicate.
9984 2006-04-28  Kim F. Storm  <storm@cua.dk>
9986         * progmodes/grep.el (defgroup grep): Doc fix.
9987         (grep-auto-highlight): Remove.
9988         (grep-template): New defcustom.
9989         (grep-find-template): Rename from grep-tree-template.
9990         (grep-files-aliases): Rename from grep-tree-files-aliases.
9991         Remove "all" alias, add "l" alias.
9992         (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
9993         (grep-find-ignored-directories): New defcustom to replace
9994         grep-tree-ignore-CVS-directories, to facilitate ignoring
9995         subdirectories for multiple version control systems.
9996         (grep-mode-map): Add Recursive grep item to GREP menu.
9997         (grep-regexp-history, grep-files-history): New defvars.
9998         (grep-probe): New helper function.
9999         (grep-compute-defaults): Use it to simplify code.
10000         Adapt to name changes.
10001         Use `.' as base in grep-find-template rather than <D>.
10002         (grep): Remove superfluous highlight-regexp arg.  Fix doc.
10003         Call grep-compute-defaults unconditionally.
10004         (grep-expand-keywords): New defconst.
10005         (grep-expand-template): Rename from grep-expand-command-macros.
10006         Simplify via grep-expand-keywords.  Look at case-fold-search instead
10007         of grep-tree-ignore-case to add -i option.
10008         Bind case-fold-search to nil while matching keywords.
10009         (grep-tree-last-regexp, grep-tree-last-files): Remove.
10010         (grep-read-regexp, grep-read-files): New helper functions.
10011         (rgrep): Rename from grep-tree.  Rework to use proper histories.
10012         Adapt to changes in defcustoms and functions above.
10013         (lgrep): New command, as grep, but using same interactive UI as rgrep.
10015 2006-04-28  Michael Albinus  <michael.albinus@gmx.de>
10017         * net/tramp.el (tramp-completion-file-name-handler):
10018         Disable Tramp's functionality while loading Tramp itself.
10019         (tramp-register-file-name-handlers): That's a defsubst now.
10020         Code from `tramp-repair-jka-compr' moved here.  Apply it via
10021         `after-init-hook'.
10022         (tramp-repair-jka-compr): Remove.
10024 2006-04-27  Jay Belanger  <belanger@truman.edu>
10026         * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
10027         read expression when `math-read-big-expr' doesn't work.
10029 2006-04-27  Reiner Steib  <Reiner.Steib@gmx.de>
10031         * startup.el (command-line-1): Display warning when
10032         pure-space-overflow is non-nil.
10034 2006-04-26  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10036         * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
10037         risky.
10039 2006-04-26  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10041         * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
10042         Return the URL or nil if none can be generated.
10044 2006-04-27  Nick Roberts  <nickrob@snap.net.nz>
10046         * progmodes/gud.el (gud-comint-buffer): Move forward to stop
10047         byte compiler warnings.
10048         (gud-basic-call, gud-find-expr): Let user select an expression
10049         for printing.  Print expression as well as value in GUD buffer.
10051 2006-04-17  Ken Manheimer  <ken.manheimer@gmail.com>
10053         * allout.el: Remove local autoload declaration for
10054         pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
10055         (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
10056         (allout-plain-bullets-string, allout-distinctive-bullets-string)
10057         (allout-use-mode-specific-leader, allout-old-style-prefixes)
10058         (allout-stylish-prefixes, allout-numbered-bullet)
10059         (allout-file-xref-bullet, allout-presentation-padding)
10060         (allout-use-hanging-indents, allout-reindent-bodies): Mark as
10061         safe-local-variable with suitable value spec, and add autoload
10062         cookie for loaddefs inclusion.  We now use an explicit spec everywhere.
10063         (move-beginning-of-line, move-end-of-line): Repair so these compat
10064         functions now actually resituate the point, when appropriate.
10066 2006-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10068         * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
10070         * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
10071         (add-log-iso8601-time-string): Fix call to format-time-string.
10073 2006-04-26  Kim F. Storm  <storm@cua.dk>
10075         * subr.el (posn-string, posn-image, posn-object): Doc fix.
10077 2006-04-26  Masatake YAMATO  <jet@gyve.org>
10079         * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
10080         Add support for "//" style comments.  Remove `b' flag
10081         from ?* in `asm-mode-syntax-table'.
10083 2006-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10085         * follow.el: Use (featurep 'xemacs) everywhere.
10086         (follow-mode): Use define-minor-mode.
10087         (follow-mode-map): Move initialization into the declaration.
10088         Use command remapping.
10089         (follow-emacs-version-xemacs-p): Remove.
10090         (follow-submit-feedback): Remove.
10092         * allout.el (allout-layout, allout-passphrase-verifier-string)
10093         (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
10095         * textmodes/reftex-vars.el (reftex-vref-is-default)
10096         (reftex-fref-is-default, reftex-guess-label-type):
10097         Tighten up a bit the safety predicate.
10099         * textmodes/paragraphs.el (sentence-end-double-space)
10100         (sentence-end-without-period, sentence-end-without-space)
10101         (page-delimiter, paragraph-ignore-fill-prefix):
10102         Tighten up a bit the safety predicate.
10104         * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
10106         * progmodes/python.el (python-continuation-line-p)
10107         (python-beginning-of-statement): syntax-ppss may return
10108         a negative depth.
10109         (python-mode): Don't forcefully enable font-lock.
10111         * time-stamp.el (time-stamp-start, time-stamp-end)
10112         (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
10114         * add-log.el: Remove spurious * in docstrings.
10115         (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
10116         (add-change-log-entry): Use it here, since it's not specific
10117         to iso8601.
10118         (add-log-iso8601-time-string): Don't use it here any more.
10119         (change-log-indent-text, change-log-indent): Rename from add-log-*.
10121         * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
10123 2006-04-25  Ryan Yeske  <rcyeske@gmail.com>
10125         * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
10126         (rcirc-toggle-low-priority): Doc fix.
10127         (rcirc-handler-NOTICE): Remove beginning of line anchor in
10128         ChanServ regexp.
10129         (rcirc-startup-channels-alist): Connect to #rcirc by default, not
10130         #emacs.
10131         (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
10132         (rcirc-decode-coding-system): Use utf-8 as the default.
10133         (rcirc-multiline-minor-mode): Set the fill-column.
10134         (rcirc-format-response-string): Display bright and dim nicks.
10135         (rcirc-browse-url): Update interactive spec to fill ARG.
10136         (rcirc-bright-nick, rcirc-dim-nick): Add faces.
10137         (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
10139 2006-04-24  J.D. Smith  <jdsmith@as.arizona.edu>
10141         * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
10142         case for @Article, etc.
10144 2006-04-23  Michael Albinus  <michael.albinus@gmx.de>
10146         * net/tramp.el (tramp-register-file-name-handlers): New defun.
10147         Added with autoload cookie.
10148         (tramp-unload-file-name-handlers): Rename from
10149         `tramp-unload-file-name-handler-alist'.
10151 2006-04-23  Romain Francoise  <romain@orebokech.com>
10153         * comint.el (comint-match-partial-filename): Doc fix.
10155 2006-04-21  Glenn Morris  <rgm@gnu.org>
10157         * calendar/cal-menu.el (calendar-mode-map): Refer to
10158         `diary-view-entries' rather than alias `view-diary-entries'.
10159         * calendar/diary-lib.el (view-other-diary-entries): Ditto.
10161 2006-04-21  Luc Teirlinck  <teirllm@auburn.edu>
10163         * progmodes/antlr-mode.el (antlr-default):
10164         * cus-edit.el (custom-documentation):
10165         * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
10166         in defface.
10168 2006-04-21  Kim F. Storm  <storm@cua.dk>
10170         * image.el (image-type): New defun split out of create-image.
10171         (create-image): Use it.
10173 2006-04-21  Carsten Dominik  <dominik@science.uva.nl>
10175         * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
10176         (org-open-at-point): Remove the "...done" message to keep output
10177         in the echo area visible.
10178         (org-export-as-xoxo): Fix call to `indent-region'.
10180 2006-04-21  Kevin Ryde  <user42@zip.com.au>
10182         * international/mule.el (keyboard-coding-system): defcustom
10183         info-link fixes: "Specify Coding" has been split, keyboard now in
10184         "Terminal Coding", and "Single-Byte Character Support" is now
10185         "Unibyte Mode".
10187 2006-04-21  Nick Roberts  <nickrob@snap.net.nz>
10189         * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
10190         Use font-lock-warning-face for any errors e.g. no stack.
10191         (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
10193 2006-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
10195         * progmodes/sh-script.el (sh-shell): Mark as safe.
10197         * newcomment.el (comment-start, comment-start-skip)
10198         (comment-end-skip, comment-end): Mark as safe.
10200 2006-04-20  Carsten Dominik  <dominik@science.uva.nl>
10202         * textmodes/org.el (org-deadline-announce): Face removed.
10203         (org-level-faces, org-n-levels): Convert to constant.
10204         (org-compatible-face): New function.
10205         (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
10206         (org-level-5, org-level-6, org-level-7, org-level-8)
10207         (org-special-keyword, org-warning, org-headline-done, org-link)
10208         (org-date, org-tag, org-todo, org-done, org-table, org-formula)
10209         (org-scheduled-today, org-scheduled-previously, org-time-grid):
10210         Face definition revised for better color tty support.
10211         (org-bold-re, org-italic-re, org-underline-re): New constants.
10212         (org-set-font-lock-defaults): Use the new constants.
10213         (org-agenda-highlight-todo): New function.
10214         (org-agenda-todo): Fix bug with point at end of line.
10215         (org-agenda-change-all-lines, org-finalize-agenda-entries):
10216         Fontify TODO keywords.
10217         (org-insert-link): Preserve relative path in ../ links.
10218         (org-export-as-html): Convert links pointing to .org files into
10219         links that will work beteen the exported HTML files.
10220         (org-todo-list): Fix bug when arg=0.
10221         (org-insert-heading): More fine-tuning.
10223 2006-04-19  Romain Francoise  <romain@orebokech.com>
10225         * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
10226         from `rmail-mime-charset-pattern'.
10228 2006-04-18  Dan Nicolaescu  <dann@ics.uci.edu>
10230         * progmodes/python.el (python-mode): Fix typo.
10232 2006-04-18  J.D. Smith  <jdsmith@as.arizona.edu>
10234         * comint.el (comint-previous-input): Don't clobber input line
10235         when moving off either end of the input history ring.
10236         (comint-delete-input): New function, used by
10237         `comint-previous-input' and others.
10238         (comint-previous-matching-input):
10239         Use `coming-delete-input'.  Save the partial input if leaving the
10240         edit line.  Goto point-max before deleting input to avoid
10241         partial input fragments hanging around.
10242         (comint-restore-input): New function, used by `comint-previous-input'.
10244 2006-04-18  Luc Teirlinck  <teirllm@auburn.edu>
10246         * imenu.el (imenu--index-alist): Balance parentheses.
10248 2006-04-18  Dan Nicolaescu  <dann@ics.uci.edu>
10250         * progmodes/python.el (python-mode): Add support for hs-minor-mode.
10252 2006-04-19  Reiner Steib  <Reiner.Steib@gmx.de>
10254         * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
10255         file is nil.
10257 2006-04-18  Richard Stallman  <rms@gnu.org>
10259         * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
10261         * imenu.el (imenu-create-index-function, imenu--index-alist)
10262         (imenu--last-menubar-index-alist, imenu--make-index-alist)
10263         (imenu-default-create-index-function, imenu--generic-function):
10264         Doc fixes.
10266         * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
10268         * help-mode.el (help-mode): Set view-exit-action to delete window.
10270         * env.el (setenv): Get rid of arg UNSET.  Interactive unsetting
10271         now works by passing nil as arg.
10273         * apropos.el (apropos-print): Don't do where-is on self-insert-command.
10275         * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
10276         (read-abbrev-file): Provide default when reading filename.
10278         * files.el (enable-local-variables): Allow :all as value.
10279         (hack-local-variables): Implement that value.
10280         (safe-local-variable-values, safe-local-eval-forms)
10281         (enable-local-variables): Mark as risky.
10282         (find-file-visit-truename, kept-old-versions): Mark safe.
10284         * time-stamp.el (time-stamp-format, time-stamp-line-limit)
10285         (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
10286         (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
10288 2006-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10290         * progmodes/tcl.el (tcl-send-string, tcl-send-region):
10291         Use forward-line so as to get to BOL even in the presence of fields.
10292         (tcl-eval-region): Strip surrounding space to avoid multiple prompts
10293         in return.
10294         (inferior-tcl): Tell tclsh to work in interactive mode.
10296         * complete.el (partial-completion-mode):
10297         Use 'choose-completion-string-functions to make sure that
10298         choose-completion fills the minibuffer properly.
10300         * complete.el (PC-old-read-file-name-internal): Remove.
10301         (PC-read-include-file-name-internal): Remove.  Turn it into an advice
10302         of read-file-name-internal.
10303         (partial-completion-mode): Enable/disable this advice.
10305 2006-04-18  Juanma Barranquero  <lekktu@gmail.com>
10307         * net/tramp.el (tramp-completion-file-name-handler): Revert change
10308         of 2006-04-17.
10310 2006-04-18  Carsten Dominik  <dominik@science.uva.nl>
10312         * textmodes/org.el (org-insert-heading): Insert heading before
10313         current if at beginning of line.
10314         (org-todo, org-date): New faces.
10315         (org-table-align): Make sure tooltip window contains full text.
10316         (org-no-properties): New defsubst.
10317         (org-set-font-lock-defaults): Use new faces.
10319 2006-04-18  Nick Roberts  <nickrob@snap.net.nz>
10321         * progmodes/gud.el (gud-speedbar-item-info): Display frame address
10322         for root variables.
10324         * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
10325         (gdb-frame-address): Re-use to identify frame for watch expression.
10326         (gdb-var-list, gdb-var-create-handler): Add frame address for root
10327         variables.
10328         (gdb-init-1, gdb-source, gdb-post-prompt)
10329         (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
10330         (gdb-frame-handler): Get gdb-frame-address.
10332 2006-04-17  Michael Albinus  <michael.albinus@gmx.de>
10334         Sync with Tramp 2.0.53.
10336         * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
10337         'control.  Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
10338         (tramp-completion-file-name-handler): Add autoload cookie for
10339         adding to `file-name-handler-alist'.
10341         * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
10342         the prompt.  If it returns earlier (when detecting an error
10343         message), the rest of the output will merge accidently with the
10344         output of the next command.  Reported by M Jared Finder
10345         <jared@hpalace.com>.
10347         * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
10348         for `process-file', in order to let it work for older Emacsen too.
10350 2006-04-17  Ralf Angeli  <angeli@iwi.uni-sb.de>
10352         * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
10353         (tex-font-lock-keywords-3): Use it.
10355 2006-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10357         * newcomment.el (comment-add): New function.
10358         (comment-region-default, comment-dwim): Use it.
10360 2006-04-15  Michael Olson  <mwolson@gnu.org>
10362         * emacs-lisp/tq.el: Improve comments.
10363         (tq-queue-head-question): New accessor function.
10364         (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
10365         Update for modified queue structure.
10366         (tq-queue-add): Accept `question' argument.
10367         (tq-queue-pop): If a question is pending, send it.
10368         (tq-enqueue): Accept new optional argument `delay-question'.
10369         If this is non-nil, and at least one other question is pending a
10370         response, queue the question rather than sending it immediately.
10372 2006-04-15  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10374         * calendar/appt.el (appt-add): Check whether an appointment is
10375         already present in appt-time-msg-list.  Simplify code.
10377 2006-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10379         * progmodes/cc-langs.el (c-mode-menu):
10380         Don't presume c-subword-mode is bound.
10382 2006-04-13  Bill Wohler  <wohler@newt.com>
10384         * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
10385         (customize-package-emacs-version): Use cdr instead of cadr now
10386         that alists use dotted pairs.
10388         * custom.el (defcustom): Fix docstring for :package-version.
10390 2006-04-13  Michael Albinus  <michael.albinus@gmx.de>
10392         * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
10393         (tramp-handle-shell-command): Display output buffer only when
10394         `tramp-display-shell-command-buffer' is true.
10395         (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
10397 2006-04-13  Carsten Dominik  <dominik@science.uva.nl>
10399         * textmodes/org.el (org-set-autofill-regexps): Set only the local
10400         values of `adaptive-fill-regexp' and `adaptive-fill-function'.
10402 2006-04-13  Romain Francoise  <romain@orebokech.com>
10404         * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
10405         leaving temporary .cvsignore buffers behind.
10407 2006-04-13  Carsten Dominik  <dominik@science.uva.nl>
10409         * textmodes/org.el (org-set-regexps-and-options)
10410         (org-get-current-options): Better names for the startup folding
10411         options.
10413 2006-04-13  Thien-Thi Nguyen  <ttn@gnu.org>
10415         * vc.el (vc-annotate): Arrange for point to end up at the same
10416         line number as in the original, but only when using a new buffer.
10418 2006-04-12  Stuart Herring  <herring@lanl.gov>  (tiny change)
10420         * files.el (hack-one-local-variable-eval-safep):
10421         Recognize `edebug-form-spec' for `put', but only if it passes
10422         `edebug-basic-spec'.  Generalize `put' handling.
10424         * emacs-lisp/edebug.el (edebug-basic-spec): New function for
10425         vetting file-local form specs.
10427         * allout.el (allout-layout): Autoload its `safe-local-variable'
10428         property.
10430 2006-04-13  Carsten Dominik  <dominik@science.uva.nl>
10432         * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
10433         (org-agenda-mouse-1-follows-link)
10434         (org-mouse-1-follows-link): New options.
10435         (org-format-agenda-item): Fix bug if TAGS is nil.
10436         (org-agenda-get-scheduled): Quote `priority' symbol in plist.
10438 2006-04-13  Nick Roberts  <nickrob@snap.net.nz>
10440         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
10441         GDB 6.1+ gives full filename for "info sources" so use
10442         file-name-nondirectory.
10444 2006-04-12  Romain Francoise  <romain@orebokech.com>
10446         * subr.el (read-passwd): Bind `message-log-max' to nil.
10448 2006-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10450         * progmodes/perl-mode.el (perl-indent-new-calculate):
10451         Recompute parse-start after jumping backward by a whole sexp.
10453 2006-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10455         * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
10456         window configuration.
10457         (vc-annotate-display-select): Select the buffer so that current-buffer
10458         (and selected-window) is the output buffer at the end of vc-annotate.
10460 2006-04-11  J.D. Smith  <jdsmith@as.arizona.edu>
10462         * vc.el (vc-annotate-color-map): Add custom TTY color map for
10463         8-color terminals, to use all of the colors in a sensible order.
10464         256-color terminals work well with the standard map.
10465         (vc-annotate-lines): Only strip the first color character if it
10466         is "#", to allow for terminal-style named colors.
10467         (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
10468         the correct buffer is scrolled.
10470 2006-04-11  Richard Stallman  <rms@gnu.org>
10472         * emacs-lisp/bytecomp.el (byte-compile-file):
10473         Bind enable-local-variables to :safe, and make normal-mode obey it.
10475         * files.el (enable-local-variables): Allow value :safe.
10476         (normal-mode): Doc fix.
10477         (hack-local-variables): Implement enable-local-variables = :safe.
10478         (hack-local-variables-confirm): Don't prevent quitting.
10480 2006-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10482         * loadhist.el (unload-feature): A bit of sanity check of
10483         load-history entries.  Cancel timer-vars before unbinding them.
10485         * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
10486         quote special chars, and make the trick work on the hex part of the
10487         buffer as well.
10488         (hexl-mode, hexl-save-buffer, hexl-mode-exit)
10489         (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
10491         * startup.el (normal-splash-screen): Fix last change so we don't wait
10492         2 minutes if we don't show the splash screen.
10494 2006-04-11  Carsten Dominik  <dominik@science.uva.nl>
10496         * textmodes/org.el (org-export-plain-list-max-depth)
10497         (org-table-spaces-around-separators)
10498         (org-radio-targets, org-activate-camels)
10499         (org-table-spaces-around-invisible-separators): Options removed.
10500         (org-time-stamp-rounding-minutes, org-remember-templates)
10501         (org-ellipsis, org-activate-links, org-descriptive-links):
10502         New options.
10503         (org-remember-apply-template, org-current-time)
10504         (org-finish-edit-table-field)
10505         (org-link-unescape, org-link-escape)
10506         (org-string-width, org-table-clean-line, org-html-do-expand)
10507         (org-edit-agenda-file-list, org-store-new-agenda-file-list)
10508         (org-read-agenda-file-list): New functions.
10509         (org-table-edit-field)
10510         (org-table-create-or-convert-from-region): New commands
10511         (org-table-toggle-vline-visibility): Command removed.
10512         (org-table-convert-region): Made a command.
10513         (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
10514         Replace with the normal org- functions.
10515         (org-self-insert-command): Don't trigger realign unnecessarily
10516         when blanking a field that is not full.
10517         (org-mode): `Set buffer-invisibility-spec' for links.
10518         (org-activate-links2): Hide link part and only show descriptive
10519         part of the link.
10520         (org-insert-link): Modify for new linking system.
10521         (org-store-link): Store description separately, for use by
10522         `org-insert-link'.
10523         (org-table-align): Use `org-string-width'.
10524         (defgroup): Completely new group structure for custom variables.
10525         (org-agenda-files): Option: Single file name allowed.  Function:
10526         Optional argument unrestrited means ignore any restricitons.
10527         (org-install-agenda-files-menu): Find a buffer in Org-mode before
10528         trying to modify the menu.  Use generalized access to
10529         `org-agenda-files.'
10530         (org-agenda-list, org-todo-list, org-cycle-agenda-files)
10531         (org-agenda-file-to-front, org-remove-file, org-diary)
10532         (org-tags-view, org-export-icalendar-all-agenda-files)
10533         (org-export-icalendar-combine-agenda-files): Use generalized
10534         access to `org-agenda-files'.
10535         (org-remember-handler): Correctly preserve heading if present.
10536         (org-table-insert-row, org-table-insert-hline): Deal with
10537         invisible characters.
10539 2006-04-10  J.D. Smith  <jdsmith@as.arizona.edu>
10541         * vc.el (vc-annotate-display-mode): Made default 'fullscale.
10542         (vc-annotate-color-map): New 18 element constant
10543         value/saturation, rotating hue colormap, from red->blue.
10544         (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
10545         (vc-annotate-display-select): Switch to annotate-mode elsewhere.
10546         (vc-annotate): To avoid killing the required local variables,
10547         set them before the end of `with-output-to-temp-buffer', and
10548         after first switching to annotate-mode.
10549         (vc-annotate-warp-version): Add buffer argument in goto-line to
10550         ensure annotation, not source, is scrolled.
10552 2006-04-10  Bill Wohler  <wohler@newt.com>
10554         * custom.el (defcustom, custom-handle-keyword):
10555         Add :package-version keyword.
10556         (custom-add-package-version): New function.  Sets value of new
10557         property 'custom-package-version from :package-version keyword.
10558         (defcustom): Create Common Keywords section in docstring.
10559         (defface, defgroup): Replace definitions of a select few keywords
10560         with a reference to the Common Keywords in defcustom.
10561         (defcustom, defface, defgroup): Replace reference to Customization
10562         chapter in manual with hyperlink.
10564         * cus-edit.el (customize-package-emacs-version-alist): New variable.
10565         (customize-changed-options): Add check for custom-package-version.
10566         (customize-package-emacs-version): New function to look up Emacs
10567         version corresponding to the given package version.
10569         * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
10570         defun name, in similar fashion to find-variable-regexp.
10572 2006-04-10  Eli Zaretskii  <eliz@gnu.org>
10574         * international/mule-cmds.el (set-locale-environment): Fix last
10575         change for when the locale's preferences don't specify any encoding.
10577 2006-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10579         * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
10580         so the defined var/fun doesn't need to be quoted.
10582 2006-04-10  Richard Stallman  <rms@gnu.org>
10584         * finder.el (finder-mode-map): Add n and p bindings.
10586 2006-04-10  Nick Roberts  <nickrob@snap.net.nz>
10588         * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
10589         (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
10590         (gdb-setup-windows): Put something in source window if we can't find
10591         the source file.
10592         (gdb-frame-handler): Make it work again with just assembly.
10593         (gdb-data-list-register-values-handler): Make it work when there is
10594         no stack.
10596 2006-04-09  Richard Stallman  <rms@gnu.org>
10598         * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
10599         specs while looking for charset.
10601         * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
10603         * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
10604         Make them faces.
10605         (lm-font-lock-keywords): Update appropriately.
10607 2006-04-10  Kim F. Storm  <storm@cua.dk>
10609         * simple.el (filter-buffer-substring): Add NOPROPS arg, so
10610         it can also replace buffer-substring-no-properties.
10612         * emulation/cua-base.el (cua-delete-region, cua-paste)
10613         (cua-repeat-replace-region): Use filter-buffer-substring.
10615         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
10616         (cua-cut-region-to-global-mark): Likewise.
10618         * emulation/cua-rect.el (cua--extract-rectangle)
10619         (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
10621 2006-04-09  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10623         * textmodes/bibtex.el (bibtex-entry-update): New optional arg
10624         entry-type.  Add field delimiters to numerical fields if they are
10625         not present.
10627 2006-04-09  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10629         * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
10630         string-const to return value.
10631         (bibtex-remove-delimiters): Use it.
10633 2006-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
10635         * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
10636         cl-byte-compile-compiler-macro unless it exists.
10638 2006-04-08  Eli Zaretskii  <eliz@gnu.org>
10640         * files.el (hack-local-variables-confirm) <offer-save>:
10641         Clarify message text.  Suggested by Ralf Angeli.
10643 2006-04-08  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
10645         * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
10646         (delete-extract-rectangle-line): Use `filter-buffer-substring'
10647         instead of `buffer-substring' and `delete-region'.  (Most of the
10648         code actually copied from `kill-region'.)
10650 2006-04-08  Ryan Yeske  <rcyeske@gmail.com>
10652         * rcirc.el (rcirc-default-server): Rename from rcirc-server.
10653         (rcirc-default-port): Rename from rcirc-port.
10654         (rcirc-default-nick): Rename from rcirc-nick.
10655         (rcirc-default-user-name): Rename from rcirc-user-name.
10656         (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
10657         (rcirc-low-priority-flag): New variable.
10658         (rcirc-decode-coding-system): New defcustom.
10659         (rcirc-encode-coding-system): New defcustom.
10660         (rcirc-coding-system-alist): New defcustom.
10661         (rcirc-multiline-major-mode): New defcustom.
10662         (rcirc-nick): New internal variable.
10663         (rcirc-process): Remove variable.
10664         (rcirc-server-buffer): New variable.
10665         (rcirc): Update to use rcirc-default-* variables above.
10666         (rcirc-connect): Do not add window-configuration-hook-here.
10667         (rcirc-server): New internal variable.
10668         (rcirc-connect): Do not send keepalive pings if
10669         rcirc-keepalive-seconds is nil.
10670         (with-rcirc-server-buffer): New macro.
10671         (rcirc-send-string): Encode with rcirc-encode-coding-system.
10672         (rcirc-server-name): Rename from rcirc-server.
10673         (rcirc-buffer-process): New function.
10674         (rcirc-buffer-nick): New function.
10675         (rcirc-buffer-target): Remove function.
10676         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
10677         New commands.
10678         (rcirc-mode-map): Change binding of C-c C-l to
10679         rcirc-toggle-low-priority.
10680         (rcirc-mode): Initialize coding system based on
10681         rcirc-coding-system-alist.  New change-major-mode-hook to part the
10682         channel on a mode change.  Make kill-buffer-hook buffer-local.
10683         (rcirc-change-major-mode-hook): New function.
10684         (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
10685         (rcirc-last-post-time): New variable.
10686         (rcirc-process-message): Store the last time user posted a message
10687         to this target.
10688         (rcirc-multiline-minor-mode): New mode.
10689         (rcirc-multiline-minor-mode-map): New mode map.
10690         (rcirc-edit-multiline): Put multiline-edit buffer in
10691         rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
10692         (rcirc-print): Ignore any line starting with an ignored nick.
10693         (rcirc-print): Decode using rcirc-decode-coding-system.
10694         (rcirc-track-minor-mode): Update global-mode-string when disabling
10695         this mode.
10696         (minor-mode-alist): Add LowPri indicator.
10697         (rcirc-toggle-low-priority): New function.
10698         (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
10699         next lowpriority buffer with activity.
10700         (rcirc-record-activity): Sort buffers in rcirc-activity by the
10701         last time the user posted a message in to the target.
10702         (rcirc-update-activity-string): New formatting for low priority
10703         buffers.
10704         (rcirc-split-activity): New function.
10705         (rcirc-handler-PART, rcirc-handler-KICK)
10706         (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
10707         (rcirc-nick-away-alist): New variable.
10708         (rcirc-handler-301): New handler.  Away messages are printed once
10709         per change.
10711 2006-04-08  Eli Zaretskii  <eliz@gnu.org>
10713         * info.el (Info-follow-nearest-node): Doc fix.
10715         * international/mule-cmds.el (set-locale-environment): Make sure
10716         the coding-system preferred by the locale's language has the same
10717         EOL conversion type as the original buffer-file-coding-system.
10718         (locale-language-names): Add a few MS Windows language codes.
10720 2006-04-07  Richard Stallman  <rms@gnu.org>
10722         * simple.el (eval-expression): Doc fix.
10724         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
10725         (eval-defun): Doc fixes.
10727 2006-04-07  Reiner Steib  <Reiner.Steib@gmx.de>
10729         * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
10731 2006-04-07  Nick Roberts  <nickrob@snap.net.nz>
10733         * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
10734         GDB list command without argument for greater generality.
10736 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
10738         * subr.el (string-or-null-p): New function.
10740         * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
10742         * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
10744         * files.el: Update comment about safe-local-variable declarations.
10746 2006-04-06  J.D. Smith  <jdsmith@as.arizona.edu>
10748         * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
10749         See idlwave.org.
10751         * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
10752         See idlwave.org.  Includes code to obsolete idlw-rinfo.el.
10754         * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
10755         See idlwave.org.
10757         * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
10758         version 6.0 (minimal changes).  See idlwave.org.
10760         * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
10761         6.0 (minimal changes).  See idlwave.org.
10763         * progmodes/idlw-rinfo.el: File obsoleted and removed.
10765 2006-04-06  Romain Francoise  <romain@orebokech.com>
10767         * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
10768         symmetric encryption features and a new asynchronous interface to
10769         GnuPG.  This new version is version 1.4, plus whitespace changes.
10771 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
10773         * files.el: Move some `safe-local-variable' declarations to the
10774         respective files.
10776         * textmodes/ispell.el (ispell-check-comments)
10777         (ispell-local-dictionary): Mark as safe.
10779         * abbrev.el (abbrev-mode): Mark as safe.
10781         * add-log.el (change-log-default-name): Mark as safe.
10783         * textmodes/reftex-vars.el (reftex-vref-is-default)
10784         (reftex-fref-is-default, reftex-level-indent)
10785         (reftex-guess-label-type): Mark as safe.
10787         * textmodes/fill.el (colon-double-space): Mark as safe.
10789         * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
10790         (sentence-end-double-space, sentence-end-without-period)
10791         (sentence-end-without-space, sentence-end, sentence-end-base)
10792         (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
10794 2006-04-06  Kim F. Storm  <storm@cua.dk>
10796         * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
10797         the :set-after list.
10798         (ido-downcase-unc-hosts): New user option.  Default on.
10799         (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
10800         when it is set, as regexps are now applied on the fly.
10801         (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
10802         Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
10803         on the fly, but only when ido-process-ignore-lists is set.
10804         Do case insensitive filtering if ido-downcase-unc-hosts is set.
10805         Only downcase names if ido-downcase-unc-hosts is set.
10807 2006-04-06  Juanma Barranquero  <lekktu@gmail.com>
10809         * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
10811         * woman.el (WoMan-xref-man-page): Fix call to `substring'.
10813 2006-04-05  Kim F. Storm  <storm@cua.dk>
10815         * ido.el (ido-mode): Set after ido-unc-hosts and
10816         ido-ignore-unc-host-regexps.
10817         (ido-save-history): Save ido-unc-hosts-cache.
10818         (ido-load-history): Load ido-unc-hosts-cache.
10819         (ido-reread-directory): Refresh unc hosts cache in // dir.
10821         * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
10822         to nil while displaying slash screen.
10824 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
10826         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
10827         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
10829 2006-04-05  Kenichi Handa  <handa@m17n.org>
10831         * international/characters.el: Setup cases of Latin, Greek, and
10832         Cyrillic characters in CJK charsets.
10834 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
10836         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
10837         default-enable-multibyte-characters.  This reverts the change from
10838         revision 6.17 which is no longer necessary because the passphrase
10839         is sent separately now.  GnuPG messages are unreadable under
10840         multibyte locales with default-enable-multibyte-characters set to nil.
10842 2006-04-04  Andreas Schwab  <schwab@suse.de>
10844         * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
10845         and `byte-compile-warnings' as `safe-local-variable'.
10847 2006-04-04  Dan Nicolaescu  <dann@ics.uci.edu>
10849         * man.el (Man-mode-map): Restore the \r binding.
10850         (Man-abstract-xref-man-page): If Man-target-string is a function,
10851         call it.
10852         (Man-highlight-references): Use Man-default-man-entry to get the
10853         target.  Deal with xrefs too.
10854         (Man-highlight-references0): Don't call the target function.
10856         * woman.el (WoMan-xref-man-page): Strip the section number, woman
10857         cannot deal with it.
10859 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
10861         * pgg-gpg.el: Clean up process buffers every time gpg processes
10862         complete.
10864 2006-04-04  Kenichi Handa  <handa@m17n.org>
10866         * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
10867         here.
10868         (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
10869         Temporarily bind inhibit-field-text-motion to t.
10871 2006-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10873         * startup.el (normal-splash-screen): Only set mode-line-format in the
10874         splash buffer, so as not to interfere when debugging the code.
10875         Ignore errors when switching buffer.
10877 2006-04-03  Romain Francoise  <romain@orebokech.com>
10879         * dired.el (dired-dnd-protocol-alist): Fix typo.
10881 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
10883         * savehist.el (savehist): Add :version.
10884         (savehist-ignored-variables): New variable.
10885         (savehist-minibuffer-hook): Don't save variables listed in
10886         `savehist-ignored-variables'.
10888         * dired.el (dired-dnd-protocol-alist): Mention that change does
10889         only apply to new buffers in doc string.
10891 2006-04-03  Lennart Borgman  <lennart.borgman.073@student.lu.se>  (tiny change)
10893         * recentf.el (recentf-open-files-item): Include newline in button
10894         field, so opening a file will work, when the point is at the end
10895         of the file name.  Allow, for example, to [i]search a file by
10896         extension and just push RET to open it.
10898 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
10900         * pgg-gpg.el (pgg-gpg-process-filter)
10901         (pgg-gpg-wait-for-completion): Check if buffer is alive.
10903         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
10904         lines, temporary fix.
10906 2006-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
10908         * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
10910 2006-04-02  Richard Stallman  <rms@gnu.org>
10912         * progmodes/compile.el (compilation-message-face): Make it defcustom.
10914 2006-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
10916         * ibuf-macs.el (define-ibuffer-column): Add a new key:
10917         header-mouse-map.
10919         * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
10920         (ibuffer-mode-header-map): New keymaps.
10921         (ibuffer-update-title-and-summary): Enable mouse face highlighting
10922         and keybindings for column headers.
10923         (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
10924         property.
10926 2006-04-02  Drew Adams  <drew.adams@oracle.com>  (tiny change)
10928         * speedbar.el (speedbar-after-create-hook): Doc fix.
10930 2006-04-02  Michael Ernst  <mernst@alum.mit.edu>
10932         * shell.el (shell-directory-tracker)
10933         (shell-dynamic-complete-command): Doc fixes.
10935 2006-04-01  Matt Hodges  <MPHodges@member.fsf.org>
10937         * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
10938         terminals.
10940 2006-04-01  Kim F. Storm  <storm@cua.dk>
10942         * ido.el (ido-unc-hosts-cache): New defvar.
10943         (ido-unc-hosts): If value of defcustom is a function, call it to
10944         get list of UNC hosts.  Add function-item choices to specify
10945         ido-unc-hosts-net-view or user function.
10946         (ido-ignore-unc-host-regexps): New defcustom.
10947         (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
10948         (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
10949         (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
10951 2006-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10953         * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
10954         wwidth.
10956 2006-03-31  Juanma Barranquero  <lekktu@gmail.com>
10958         * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
10959         (ido-max-work-file-list, ido-switch-buffer)
10960         (ido-read-file-name-as-directory-commands):
10961         Fix typos in docstrings.
10963 2006-03-30  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10965         * term/mac-win.el (mac-system-coding-system): Define and use after
10966         Mac-specific coding systems are ready.
10968 2006-03-27  Romain Francoise  <romain@orebokech.com>
10970         * net/rcirc.el (rcirc-connect): Add autoload cookie.
10972         * ldefs-boot.el: Update.
10974 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
10976         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
10977         passphrases when it is not needed.
10978         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
10979         passphrase stuff from gpg, should only be necessary when you use
10980         gpg with a smartcard.
10982 2006-03-27  Nick Roberts  <nickrob@snap.net.nz>
10984         * comint.el (comint-dynamic-list-completions): Allow user to
10985         select *Completions* buffer.
10987 2006-03-27  Carsten Dominik  <dominik@science.uva.nl>
10989         * textmodes/org.el (org-get-level-face): Fix bug with level counting.
10991 2006-03-26  Andreas Schwab  <schwab@suse.de>
10993         * progmodes/gud.el (gdb): Only complain about multiple debugging
10994         when the gdb process is still running.
10996 2006-03-25  Eli Zaretskii  <eliz@gnu.org>
10998         * mail/rmail.el (tool-bar-map): Defvar it.
10999         (rmail-tool-bar-map): Tool-bar buttons for Rmail.
11000         (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
11002 2006-03-25  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
11004         * help.el (print-help-return-message): Suggest to use
11005         display-buffer instead of switch-to-buffer-other-window to restore
11006         the previous window without selecting it.
11008 2006-03-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11010         * frame.el (select-frame-by-name): Call x-focus-frame also when
11011         window-system is mac.
11013         * term/mac-win.el: Adjust Courier font specifications in
11014         x-fixed-font-alist.
11015         (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
11016         when directly encoding to UTF-16 in native byte order, no BOM.
11018 2006-03-25  Kim F. Storm  <storm@cua.dk>
11020         * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
11021         (cua--init-keymaps): Use it instead of fixed C-return.
11022         (cua-mode): Set after it.
11024         * emulation/cua-rect.el (cua--init-rectangles):
11025         Use cua-rectangle-mark-key instead of fixed C-return.
11027 2006-03-25  Nick Roberts  <nickrob@snap.net.nz>
11029         * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
11030         "run" in .gdbinit.
11031         (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
11033 2006-03-24  Romain Francoise  <romain@orebokech.com>
11035         * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
11036         `display-buffer-other-frame'.
11038 2006-03-24  Kim F. Storm  <storm@cua.dk>
11040         * apropos.el (apropos-synonyms): Add selection => region.
11042 2006-03-24  Nick Roberts  <nickrob@snap.net.nz>
11044         * progmodes/gdb-ui.el (gdb-var-create-regexp)
11045         (gdb-var-list-children-regexp, gdb-var-update-regexp)
11046         (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
11047         (gdb-data-list-register-values-regexp)
11048         (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
11049         Future proof against new fields being added to MI output.
11050         (gdb-send): Don't treat backslashes for program input as
11051         continuations.
11052         (gdb-assembler-handler): Don't use window-start for this handler.
11053         (gdb-frame-handler): Don't change to hollow arrow if overlay
11054         arrow doesn't move to new frame.
11056 2006-03-24  Nick Roberts  <nickrob@snap.net.nz>
11058         * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
11059         prevent compiler warnings.
11060         (gdb-stopped): Check for gud-last-last-frame (case: signal).
11061         (breakpoint-disabled): Make lighter for contrast with overlay arrow.
11062         (gdb-assembler-custom): Use hollow-right-triangle for assembler
11063         buffer too.
11065 2006-03-23  Reiner Steib  <reinersteib+gmane@imap.cc>
11067         * pgg-gpg.el (pgg-gpg-update-agent): Check for
11068         make-network-process, so we can use the same code in Gnus v5-10
11069         too and have this file fully synchronized with that release.
11071 2006-03-23  Romain Francoise  <romain@orebokech.com>
11073         * ibuf-ext.el (ibuffer-read-filter-group-name):
11074         Use `ibuffer-generate-filter-groups' to make completion list match
11075         the filter groups that are really displayed in the Ibuffer buffer.
11076         (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
11078 2006-03-23  Kenichi Handa  <handa@m17n.org>
11080         * international/mule-cmds.el (sort-coding-systems): Describe that
11081         the argument is modified in docstring.
11083 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
11085         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
11086         (pgg-gpg-update-agent): New function.
11087         (pgg-gpg-use-agent-p): New function.
11088         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
11089         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
11090         (pgg-gpg-sign-region): Use it.
11092 2006-03-21  Chong Yidong  <cyd@stupidchicken.com>
11094         * cus-edit.el (custom-face-set): Call custom-push-theme before
11095         face-spec set so that `changed' theme is correctly saved.
11096         (custom-face-reset-standard): Reset to recalculated face rather
11097         than defface spec.
11099         * custom.el (custom-push-theme): Only save `changed' theme if the
11100         current face does not match the defface specs.
11102 2006-03-21  Simon Josefsson  <jas@extundo.com>
11104         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
11105         <wilde@sha-bang.de>.
11106         (pgg-gpg-use-agent): New variable.
11107         (pgg-gpg-process-region): Use it.
11108         (pgg-gpg-encrypt-region): Likewise.
11109         (pgg-gpg-encrypt-symmetric-region): Likewise.
11110         (pgg-gpg-decrypt-region): Likewise.
11111         (pgg-gpg-sign-region): Likewise.
11112         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
11114 2006-03-21  Carsten Dominik  <dominik@science.uva.nl>
11116         * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
11117         bracket links.
11119 2006-03-21  Kim F. Storm  <storm@cua.dk>
11121         * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
11122         fringe-indicator-alist instead of modifying global value.
11123         (gdb-frame-handler): Likewise.
11125 2006-03-21  Nick Roberts  <nickrob@snap.net.nz>
11127         * diff-mode.el (diff-function): Make it inherit from diff-header
11128         instead of diff-context.
11130         * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
11131         bitmap.
11132         (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
11133         change names in macro above for consistency.
11134         (gdb-frame-handler): Use hollow-right-triangle for all selected
11135         frames which except the innermost (where execution has stopped).
11136         (gdb-reset): Reset buffer-local values of overlay-arrow.
11138 2006-03-20  Richard Stallman  <rms@gnu.org>
11140         * simple.el (set-mark-command): Doc fix.
11142         * files.el (display-buffer-other-frame): New command.
11143         (ctl-x-4-map): Bind C-x 5 C-o to it.
11145 2006-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11147         * jit-lock.el (jit-lock-function): Check for the actual defer-timer
11148         rather than just defer-time, in case defer-time has been changed but
11149         the timer isn't running yet.
11150         (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
11152 2006-03-19  Luc Teirlinck  <teirllm@auburn.edu>
11154         * help-mode.el (help-follow-symbol): New function.
11155         Essentially identical to the old `help-follow', but do not let
11156         `push-button' do the work when on an xref.
11157         (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
11159 2006-03-19  Richard Stallman  <rms@gnu.org>
11161         * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
11162         preceded by the word `program'.
11163         (help-follow-mouse, help-follow): Throw error if not on xref.
11164         Delete no longer used args.
11166 2006-03-20  Nick Roberts  <nickrob@snap.net.nz>
11168         * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
11169         annotation ensure gud-overlay-arrow-position is redisplayed.
11171 2006-03-19  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
11173         * textmodes/bibtex.el (bibtex-include-OPTkey)
11174         (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
11175         (bibtex-autokey-name-case-convert)
11176         (bibtex-autokey-titleword-case-convert): Make these the aliases
11177         for the following two variables.
11178         (bibtex-autokey-name-case-convert-function)
11179         (bibtex-autokey-titleword-case-convert-function): Make these the
11180         real names.
11181         (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
11182         bibtex-font-lock-crossref sublists.
11183         (bibtex-mode): Revert 2005-12-30 change (which made
11184         completion-ignore-case buffer-local).
11185         (bibtex-url): Simplify.
11187 2006-03-19  Kim F. Storm  <storm@cua.dk>
11189         * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
11190         cursor property value to 2 (to align with C level change).
11192 2006-03-19  Bill Wohler  <wohler@newt.com>
11194         * image.el (image-load-path-for-library): Shorten first line in
11195         docstring.
11197 2006-03-18  Richard Stallman  <rms@gnu.org>
11199         * mail/rmail.el (rmail-reply-regexp): Undo previous change.
11201 2006-03-18  Ben North  <ben@redfrontdoor.org>  (tiny change)
11203         * isearch.el (isearch-other-meta-char): Handle user bindings for
11204         shifted control characters.
11206 2006-03-18  Agustin Martin  <agustin.martin@hispalinux.es>
11208         * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
11209         part that matches email addresses, file names, etc.
11211 2006-03-18  Eli Zaretskii  <eliz@gnu.org>
11213         * term/w32-win.el (mouse-set-font):
11214         Mention w32-list-proportional-fonts in the doc string.
11216 2006-03-18  Kim F. Storm  <storm@cua.dk>
11218         * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
11219         (ido-unc-hosts): New user option to explicitly define list of know
11220         UNC-style hosts for completion.
11221         (ido-cache-unc-host-shares-time): New user option.
11222         (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
11223         New helper functions for UNC file-name support.
11224         (ido-may-cache-directory): Check for UNC host.  Simplify.
11225         (ido-wash-history): Clean out old UNC hosts.
11226         (ido-nonreadable-directory-p): UNC hosts are always readable.
11227         (ido-directory-too-big-p): UNC hosts are never too big.
11228         (ido-set-current-directory): Handle UNC root path.
11229         (ido-file-name-all-completions): Complete UNC host names from
11230         ido-unc-hosts list.  Cache UNC host shares.
11231         (ido-make-file-list-1): Don't filter UNC root.
11232         (ido-exhibit): Check for // in root directory, and switch to UNC
11233         mode by setting ido-current-directory to //.
11235 2006-03-17  Luc Teirlinck  <teirllm@auburn.edu>
11237         * cus-edit.el (customize-changed-options): Mention explicit
11238         version number as default in prompt.
11240 2006-03-17  Bill Wohler  <wohler@newt.com>
11242         * image.el (image-load-path-for-library): Minor docstring fix.
11244 2006-03-17  Carsten Dominik  <dominik@science.uva.nl>
11246         * textmodes/org.el (org-read-date): Include subgroup 5 into
11247         replacement text.
11248         (org-popup-calendar-for-date-prompt): Fix customization type.
11250 2006-03-17  Nick Roberts  <nickrob@snap.net.nz>
11252         * progmodes/gdb-ui.el (gud-watch): Provide completion.
11253         (gdb-continuation): New variable.
11254         (gdb-send): Deal with continuation lines.
11256         * progmodes/gud.el (gud-gdb-complete-command)
11257         (gud-gdb-run-command-fetch-lines): Adapt for use with watch
11258         expressions.
11259         (gud-tooltip-mode): Use buffer-local value.
11261 2006-03-16  Kim F. Storm  <storm@cua.dk>
11263         * ido.el (ido-edit-input): Use selected match, if any.
11265 2006-03-16  Bill Wohler  <wohler@newt.com>
11267         * image.el (image-load-path-for-library): Prefer user's images in
11268         image-load-path.
11270 2006-03-16  Martin Rudalics  <rudalics@gmx.at>
11272         * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
11273         when checking for attempt to drag leftmost or rightmost scrollbar.
11275 2006-03-16  Nick Roberts  <nickrob@snap.net.nz>
11277         * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
11278         (gdb-force-mode-line-update): New function.
11279         (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
11280         (gdb-exited): Use them.
11281         (gdb-signal): New function.
11282         (gdb-annotation-rules): Provide a rule for it.
11284 2006-03-16  Kenichi Handa  <handa@m17n.org>
11286         * international/mule.el (auto-coding-regexp-alist): Add entries
11287         for Unicode BOM.
11289         * sort.el (sort-build-lists): Temporarily bind
11290         inhibit-field-text-motion to t.
11292 2006-03-15  Luc Teirlinck  <teirllm@auburn.edu>
11294         * locate.el (locate-command, locate-make-command-line)
11295         (locate-fcodes-file, locate-update-command)
11296         (locate-prompt-for-command, locate, locate-with-filter)
11297         (locate-get-file-positions): Doc fixes.
11298         (locate-buffer-name, locate-header-face): Remove leading `*' in
11299         defcustom.
11300         (locate-filter-output): Use `keep-lines' instead of its alias
11301         `delete-non-matching-lines'.
11302         (locate-get-filename, locate-get-dirname): Add introductory comment.
11303         (locate-find-directory-other-window): Give appropriate error
11304         message if used outside main listing.
11306 2006-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11308         * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
11309         the new extend-region feature.
11310         (font-lock-after-change-function): Update correspondingly.
11311         * jit-lock.el (jit-lock-after-change): Update correspondingly.
11312         * progmodes/grep.el (font-lock-lines-before): Don't disable.
11314 2006-03-15  Bill Wohler  <wohler@newt.com>
11316         * image.el (image-load-path-for-library): Fix example by not
11317         recommending that one binds image-load-path.  Just defvar it to
11318         placate compiler and only use it if previously defined.
11320 2006-03-15  Carsten Dominik  <dominik@science.uva.nl>
11322         * textmodes/org.el (org-insert-centered): Use `string-width' to
11323         make underlining work for wide characters.
11324         (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
11325         TAB to `org-cycle', to make sure that no binding in
11326         `outline-mode-map' can supercede it.
11328 2006-03-14  Ken Manheimer  <ken.manheimer@gmail.com>
11330         * allout.el: Increment version to 2.2.1 in file commentary.
11332         (allout-version): Increment to 2.2.1.
11334         (allout-default-layout): New customization variable, used when the
11335         file lacks a specific allout-layout.  Uses allout-layout-type for
11336         recursively nested definition.
11338         (allout-layout-type): Widget defining allout layouts, necessary for
11339         self-recursive definition.
11341         (allout-mode): Incorporate allout-default-layout as fallback for
11342         allout-layout.
11344         (allout-layout): Mark as 'safe-local-variable', and refer mention
11345         fallback to `allout-default-layout' in absence of a specified value.
11346         (allout-passphrase-verifier-string)
11347         (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
11349         (allout-file-passphrase-verifier-string): Obsolete variable, removed.
11351         (allout-get-encryption-passphrase-verifier): Use correct name of
11352         passphrase verifier in docstring.
11354 2006-03-15  Nick Roberts  <nickrob@snap.net.nz>
11356         * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
11357         elements.
11358         (gdb-find-watch-expression): Make it work for arrays too.
11359         Follow change to gdb-var-list.
11360         (gud-watch): Allow the user to enter variable name with a prexix
11361         arg.  Create keybindings.
11362         (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
11363         (gdb-var-list-children-handler, gdb-var-update-handler)
11364         (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
11365         (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
11366         Follow change to gdb-var-list.
11367         (gdb-starting): Don't show the overlay arrows when program is running.
11369         * progmodes/gud.el (gud-speedbar-buttons): Follow change to
11370         gdb-var-list.
11372 2006-03-14  Bill Wohler  <wohler@newt.com>
11374         * image.el (image-load-path-for-library): Pass value of path
11375         rather than symbol.  Always return list of directories.
11376         Guarantee that image directory comes first.
11378 2006-03-14  Alan Mackenzie  <acm@muc.de>
11380         * font-core.el (font-lock-extend-region\(-function\)?.):
11381         New function/variable.
11383         * font-lock.el (font-lock-after-change-function):
11384         Call font-lock-extend-region.  Obey font-lock-lines-before.
11385         (font-lock-default-fontify-region): Remove reference to
11386         font-lock-lines-before.
11388         * jit-lock.el (jit-lock-after-change):
11389         Call font-lock-extend-region.  Obey font-lock-lines-before.
11391 2006-03-14  David Ponce  <david@dponce.com>
11393         * tree-widget.el (tree-widget-themes-load-path)
11394         (tree-widget-themes-directory, tree-widget-theme): Doc fix.
11396 2006-03-13  Ryan Yeske  <rcyeske@gmail.com>
11398         * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
11399         (rcirc-print): Mark the start of text at the end of the prompt.
11400         (rcirc-track-minor-mode): Add autoload cookie.
11401         (rcirc-update-activity-string): Add space to front of mode-line
11402         indicator.
11404 2006-03-13  Miles Bader  <miles@gnu.org>
11406         * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
11407         (rcirc-abbrev-nick): Remove function.
11408         (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
11410 2006-03-13  David Ponce  <david@dponce.com>
11412         * tree-widget.el: Handle themes across all occurrences of the main
11413         themes sub-directory found in tree-widget-themes-load-path.
11414         (tree-widget-themes-directory, tree-widget-theme): Doc fix.
11415         (tree-widget--locate-sub-directory): Return all occurrences.
11416         (tree-widget-themes-path): New function.
11417         Replace tree-widget-themes-directory, and return a list of directories.
11418         (tree-widget-set-parent-theme)
11419         (tree-widget-lookup-image): Use it.
11421 2006-03-13  Carsten Dominik  <dominik@science.uva.nl>
11423         * textmodes/org.el (org-link-search): Avoid self-matching of
11424         links, allow target text to be distributed over several lines.
11425         (org-search-not-link): New function.
11426         (org-set-regexps-and-options, org-get-current-options):
11427         New startup options.
11428         (org-export-as-html): Take odd-level setting from local variable.
11429         (org-fontify-emphasized-text): New option.
11430         (org-set-font-lock-defaults): Include emphasized text.
11431         (org-follow-mhe-link): Allow folder-only links, fix folder name.
11432         (org-font-lock): Customize group renamed from `org-faces'.
11434 2006-03-13  John Paul Wallington  <jpw@pobox.com>
11436         * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
11437         keyword; require `ibuf-ext' feature.  Thanks to Zhang Wei.
11439 2006-03-12  Luc Teirlinck  <teirllm@auburn.edu>
11441         * cus-start.el (all): Delete :version keyword for members of the
11442         fringe group, since the entire group is new in 22.1.
11444 2006-03-13  Nick Roberts  <nickrob@snap.net.nz>
11446         * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
11447         map if value is hexadecimal (an address).
11448         (gud-watch): Only search roots for existing watch expressions.
11449         (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
11450         prevent caching problems with speedbar-update-directory-contents.
11452 2006-03-12  Juri Linkov  <juri@jurta.org>
11454         * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
11455         before comparing with `low' and `warn'.
11457         * info.el (Info-dir-remove-duplicates): Move point to the
11458         beginning of the current line after deleting the entries from
11459         redundant heading.  Use marker for `limit' and compare it with
11460         point before calling `re-search-forward'.
11462 2006-03-11  Luc Teirlinck  <teirllm@auburn.edu>
11464         * simple.el (yank): Fix typo in docstring.
11466 2006-03-11  Ryan Yeske  <rcyeske@gmail.com>
11468         * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
11469         messages, where "D" is the 6th character.
11471 2006-03-11  Eli Zaretskii  <eliz@gnu.org>
11473         * simple.el (yank): Fix last change.
11475 2006-03-11  David Ponce  <david@dponce.com>
11477         * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
11478         merging elements from the standard ispell-dictionary-alist.
11479         (ispell-aspell-add-aliases): Add aliases to the passed dictionary
11480         alist, and return the new alist.
11482 2006-03-11  Richard Stallman  <rms@gnu.org>
11484         * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
11486         * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
11487         the way it is implemented is too unclean.
11489         * simple.el (kill-region, yank): Doc fix.
11491         * battery.el (battery-echo-area-format): Doc fix.
11492         (battery-mode-line-format): Likewise.
11493         (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
11494         (battery-linux-proc-acpi): Ignore batteries that say "charged".
11496 2006-03-11  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>
11498         * progmodes/octave-mod.el (octave-indent-for-comment):
11499         Behave according to do string.
11501 2006-03-11  Agustin Martin  <agustin.martin@hispalinux.es>
11503         * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
11504         Be visible only if major mode is Mail Mode.
11506         * textmodes/flyspell.el (flyspell-external-point-words)
11507         (flyspell-process-localwords): Fix last changes.
11509 2006-03-11  Eli Zaretskii  <eliz@gnu.org>
11511         * calendar/holidays.el (list-holidays): Doc fix.
11513         * international/mule.el (auto-coding-alist): Add .odt
11514         (OpenOffice's open document) files.
11516         * files.el (auto-mode-alist): Add .odt (OpenOffice's open
11517         document) files.  Mention in the doc string the need to sync with
11518         auto-coding-alist.
11520 2006-03-10  Chong Yidong  <cyd@stupidchicken.com>
11522         * files.el (hack-local-variables-confirm): Don't prompt for ! if
11523         enable-local-variables is set to always query, or there is no
11524         savable variable.
11526 2006-03-10  Bill Wohler  <wohler@newt.com>
11528         * image.el (image-load-path-for-library): Merge at least three
11529         functions from Gnus and MH-E into this one function that can now
11530         be shared.
11532 2006-03-11  Nick Roberts  <nickrob@snap.net.nz>
11534         * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
11535         gdb-remove-mouse-face and remove help-echo too.
11536         (gdb-enqueue-input): Correct conditional clause.
11538 2006-03-10  Glenn Morris  <rgm@gnu.org>
11540         * calendar/calendar.el (calendar-holidays): Doc fix.
11541         * calendar/holidays.el (list-holidays): Doc fix.
11543 2006-03-10  Nick Roberts  <nickrob@snap.net.nz>
11545         * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
11546         it gets called in gdb-prompt anyway.
11547         (gdb-use-separate-io-buffer): Only restore window arrangement for
11548         gdb-many-windows.
11549         (gdb-enqueue-input): Make it harder to send GDB input when program
11550         is running.
11551         (gdb-buffer-list): New variable.
11552         (gdb-remove-mouse-face): New function.
11553         (gdb-starting): Use it when GDB input won't get sent.
11555 2006-03-08  Juanma Barranquero  <lekktu@gmail.com>
11557         * help.el (view-lossage): Remove trailing whitespace before
11558         inserting "\n".
11560 2006-03-07  Chong Yidong  <cyd@stupidchicken.com>
11562         * files.el (hack-local-variables-confirm):
11563         Set coding-system-for-read to nil before writing to .emacs.
11565         * arc-mode.el (archive-extract): Check if an existing buffer name
11566         comes from a different archive.
11568         * help.el (describe-key-briefly): If KEY is a down event, read and
11569         discard the up event.
11571 2006-03-07  Nick Roberts  <nickrob@snap.net.nz>
11573         * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
11574         be edited and use font-lock-warning-face for any changes.
11576         * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
11577         (gdb-edit-value): Use it to report any errors.
11579 2006-03-07  Juanma Barranquero  <lekktu@gmail.com>
11581         * help.el (describe-key): Remove leftover test code.
11583 2006-03-07  Carsten Dominik  <dominik@science.uva.nl>
11585         * textmodes/org.el: Move defvars out of eval-when-compile.
11586         Use buffer-file-name variable.
11587         (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
11588         arg `file'.
11589         (org-level-faces): Remove startup dependency.
11590         (org-cycle, org-map-tree, org-scan-tags)
11591         (org-remember-handler): Don't call `outline-level' directly.
11592         (org-mhe-search-all-folders): New option.
11593         (org-mhe-get-message-folder-from-index)
11594         (org-mhe-get-message-folder): Fix indexing search.
11595         (org-format-agenda-item): Handle nil TAGS argument.
11596         (org-cleaned-string-for-export, org-activate-target-links)
11597         (org-make-target-link-regexp): Deal with empty radio target list.
11598         (org-tag): New face.
11599         (org-get-level-face): New function.
11600         (org-set-font-lock-defaults): Simplify setup for headlines.
11601         (org-complete): Pass common substring to `display-completion-list'.
11603 2006-03-06  David Ponce  <david@dponce.com>
11605         * tree-widget.el: Update Commentary header.
11606         (tree-widget-theme-name): Ignore parent themes.
11607         (tree-widget-set-parent-theme): New function.
11608         (tree-widget-set-theme): Use it.
11609         (tree-widget-set-image-properties): Move definition.  Does nothing
11610         if image properties have already been set.
11611         (tree-widget-image-properties): Move definition.  Receive an image
11612         name.  Set the :pointer property.
11613         (tree-widget-lookup-image): Doc fix.  Search in parent themes.
11614         Don't set the :pointer image property.
11615         (tree-widget-convert-widget): New function.  Handle :dynargs
11616         compatibility here.
11617         (tree-widget): Use it to :convert-widget.  Add the :expander-p
11618         predicate to control when the :expander function is entered.
11619         Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
11620         (tree-widget-value-create): Handle :expander-p.  widget-apply
11621         :expander.
11622         (tree-widget-expander-p): New function.  Default value of the
11623         :expander-p property.
11625 2006-03-06  Chong Yidong  <cyd@stupidchicken.com>
11627         * help.el (describe-key): Properly handle the return value of
11628         read-key-sequence when grabbing an up-event.  Cleanup mouse-1
11629         remaps.  Handle string and vector `follow-link' values.
11631 2006-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11633         * complete.el (PC-expand-many-files): Try be more careful when parsing
11634         the shell's output.
11636 2006-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11638         * outline.el (hide-sublevels): Provide better interactive default.
11640 2006-03-06  Kenichi Handa  <handa@m17n.org>
11642         * international/fontset.el (create-fontset-from-fontset-spec):
11643         Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
11645 2006-03-05  Luc Teirlinck  <teirllm@auburn.edu>
11647         * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
11648         backslashes instead of one in regexp.
11649         (gud-tooltip-dereference): Add missing optional argument.
11651 2006-03-04  John Paul Wallington  <jpw@pobox.com>
11653         * wdired.el (toplevel): Require `cl' at compile-time.
11655 2006-03-04  Andreas Schwab  <schwab@suse.de>
11657         * server.el (server-process-filter): Handle errors during
11658         evaluation of the argument.
11660 2006-03-03  John Paul Wallington  <jpw@pobox.com>
11662         * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
11663         escape parentheses at beginning of line.
11664         (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
11665         (t-mouse-mode): Remove period from end of error message.
11667 2006-03-03  Agustin Martin  <agustin.martin@hispalinux.es>
11669         * textmodes/flyspell.el (flyspell-process-localwords):
11670         Be case-sensitive.
11672 2006-03-03  Martin Rudalics  <rudalics@gmx.at>
11674         * cus-edit.el (custom-quote): Remove function, since it has been
11675         moved to custom.el.
11677         * font-lock.el (lisp-font-lock-keywords-2)
11678         * emacs-lisp/rx.el (rx-check-any, rx-check-not)
11679         * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
11680         they have no special meaning.
11682         * midnight.el (clean-buffer-list): Handle case where base-buffer of
11683         indirect buffer gets killed before indirect buffer.  Use dolist.
11685 2006-03-03  Ken Manheimer  <ken.manheimer@gmail.com>
11687         * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
11688         value instead of a literal constant (1) on more pauses.
11690 2006-03-03  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>  (tiny change)
11692         * textmodes/flyspell.el (flyspell-external-point-words):
11693         Be case-sensitive.
11695 2006-03-03  Ryan Yeske  <rcyeske@gmail.com>
11697         * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
11698         with "www".
11700 2006-03-03  Ken Manheimer  <ken.manheimer@gmail.com>
11702         * allout.el: Restablish intermediate missing comment header to
11703         preserve outline structure.
11704         (allout-beginning-of-current-entry): Skip invisible text.
11705         (allout-open-topic): Fix opening a topic at end-of-buffer.
11706         (allout-minor-mode): Move nearer to allout-mode function.
11708 2006-03-02  Carsten Dominik  <dominik@science.uva.nl>
11710         * textmodes/org.el (org-paste-subtree): Remove (debug) form.
11712 2006-03-02  Nick Roberts  <nickrob@snap.net.nz>
11714         * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
11715         is nil.
11717         * progmodes/gud.el (gud-speedbar-menu-items):
11718         Use buffer-local-value and add missing :visible keyword.
11720         * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
11722 2006-03-01  Carsten Dominik  <dominik@science.uva.nl>
11724         * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
11725         must be `follow-link'.
11727         * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
11729         * textmodes/org.el (org-export-as-html): Fix bugs in HTML
11730         formatting: No nested anchors.
11731         (org-all-targets): Fix bug with XEmacs compatibility.
11732         (org-read-date): Add (require 'parse-time).
11733         (org-set-tags): Fix bug with extra inserted space.
11734         (org-export-html-style): Define a style class for targets.
11735         (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
11736         (org-hide-leading-stars): New option.
11737         (org-hide): New face.
11738         (org-set-font-lock-defaults): Allow to hide leading stars.
11739         (org-get-legal-level, org-tr-level): New functions.
11740         (org-odd-levels-only): New option.
11741         (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
11742         (org-demote, org-promote): Deal with double-star levels.
11743         (org-convert-to-odd-levels): New command.
11745 2006-03-01  Nick Roberts  <nickrob@snap.net.nz>
11747         * speedbar.el (speedbar-update-localized-contents): Try to
11748         preserve window-start.
11749         (speedbar-update-directory-contents): Try to preserve window-start
11750         and window-point.
11751         (speedbar-update-special-contents): Don't move back to start of window.
11753         * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
11754         gdb-speedbar-timer-fn.  Use speedbar-refresh instead of
11755         speedbar-timer-fn.
11756         (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
11757         (gdb-speedbar-expand-node): Use speedbar-delete-subblock
11758         instead of gdb-speedbar-timer-fn.
11760 2006-02-28  Jay Belanger  <belanger@truman.edu>
11762         * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
11763         (math-compose-expr): Use latex option when calling
11764         `math-compose-tex-matrix' for latex mode.
11766 2006-02-28  Nick Roberts  <nickrob@snap.net.nz>
11768         * speedbar.el: Re-instate comments about developing for speedbar
11769         [this is what info and gdb-ui use even if better methods exist now].
11771         * t-mouse.el: New file.
11772         (t-mouse-tty): Use with-temp-buffer.  Add more terminal types.
11773         (t-mouse-lispy-buffer-posn-from-coords): Remove.
11774         (t-mouse-make-event-element): Use posn-at-x-y instead.
11775         (t-mouse-make-event): Deal with Fedora Core 3.
11776         (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
11777         (t-mouse-mouse-position-function): New function.  Use it instead
11778         of advising mouse-position.
11779         (t-mouse-mode): New minor mode.
11780         (t-mouse-stop, t-mouse-run): Remove.  Use t-mouse-mode instead.
11782 2006-02-27  Glenn Morris  <rgm@gnu.org>
11784         * calendar/calendar.el (calendar-holidays): Doc fix.
11786 2006-02-27  Nick Roberts  <nickrob@snap.net.nz>
11788         * progmodes/gdb-ui.el (gdb-source-window): New variable.
11789         Re-introduce the concept of a source window.
11790         (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
11791         consistency with get-buffer-create.
11792         (def-gdb-auto-update-handler, gdb-info-locals-handler)
11793         (gdb-data-list-register-values-handler)
11794         (gdb-stack-list-locals-handler): Try to preserve window-start as
11795         well as window-point.
11796         (gdb-display-source-buffer): New function (old concept).
11797         (gdb-goto-breakpoint): Use it.
11799         * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
11800         for gdb-ui/gdb-mi (old concept).
11802 2006-02-27  Carsten Dominik  <dominik@science.uva.nl>
11804         * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
11805         binding.
11807         * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
11809         * textmodes/reftex-sel.el (reftex-select-label-map)
11810         (reftex-select-bib-map): Add `follow-mouse' binding.
11812 2006-02-26  Luc Teirlinck  <teirllm@auburn.edu>
11814         * jka-cmpr-hook.el (jka-compr-compression-info-list)
11815         (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
11816         Give :set functions to provide automatic updating.
11817         Update docstring.  Give compiler defvars early in the file
11818         and move the defcustoms to a later spot where all called functions
11819         are defined.
11820         (jka-compr-file-name-handler-entry): Doc fix.
11821         (jka-compr-compression-info-list--internal)
11822         (jka-compr-mode-alist-additions--internal)
11823         (jka-compr-load-suffixes--internal): New variables.
11824         (jka-compr-install): Set the three above variables.
11825         Update `load-file-rep-suffixes' instead of `load-suffixes'.
11826         (jka-compr-update, jka-compr-set): New functions.
11827         (auto-compression-mode): Doc fix.
11829         * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
11830         Update `load-file-rep-suffixes' instead of `load-suffixes'.
11831         Use jka-compr-compression-info-list--internal,
11832         jka-compr-mode-alist-additions--internal and
11833         jka-compr-load-suffixes--internal.
11835         * files.el (load-library):
11836         * loadhist.el (file-loadhist-lookup):
11837         * startup.el (command-line):
11838         * subr.el (locate-library):
11839         * emacs-lisp/autoload.el (update-directory-autoloads):
11840         * emacs-lisp/find-func.el (find-library-suffixes):
11841         Use `get-load-suffixes' instead of `load-suffixes'.
11843         * subr.el (locate-library):
11844         * emacs-lisp/find-func.el (find-library-name):
11845         Use `load-file-rep-suffixes' instead of '("").
11847 2006-02-26  Kim F. Storm  <storm@cua.dk>
11849         * ido.el (ido-save-history, ido-load-history): Simplify.
11850         Don't use find-file-noselect to avoid interference from other modes.
11852 2006-02-25  Thien-Thi Nguyen  <ttn@gnu.org>
11854         * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
11855         to use the default shell if filename is not available.
11856         Reported by Giorgos Keramidas.
11858 2006-02-25  John Williams  <jrw@pobox.com>  (tiny change)
11860         * progmodes/etags.el (tags-completion-table): Do completion from
11861         all the tables in the current list, as documented in the manual.
11863 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11865         * CC Mode Update to 5.31.3.
11867 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11869         * progmodes/cc-mode.el (c-postprocess-file-styles):
11870         Bind inhibit-read-only to t, around the call to
11871         c-remove-any-local-eval-or-mode-variables, so that it works on a
11872         RO file.
11874 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11876         * progmodes/cc-awk.el: Correct a typo.
11878 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11880         * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
11881         c-hungry-delete-backwards, at the request of RMS.  Leave the old
11882         name as an alias.
11884 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11886         * progmodes/cc-mode.el: Correct a typo.
11888 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11890         * progmodes/cc-defs.el: Update the version number to 5.31.3.
11892 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11894         * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
11895         brace-else-brace (error due to mbeg, mend being undefined).
11897 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11899         * progmodes/cc-mode.el: File Local variables: Solve the problem
11900         where both `mode' and c-file-offsets are specified: `mode' will
11901         overwrite c-f-o's settings:
11902         (c-remove-any-local-eval-or-mode-variables): New function.
11903         (c-postprocess-file-styles): Call the above new function, within
11904         c-tentative-buffer-change, to splat `mode' and `eval' before the
11905         second hack-local-variables.
11907 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11909         * progmodes/cc-mode.el:
11910         [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
11911         (c-after-change): Protect the match data with save-match-data.
11912         It was getting corrupted by c-after-change-check-<>-operators.
11914         * cc-defs.el: [Supersedes patch V1.38]:
11915         (top level): Check for a buggy font-lock-compile-keywords ONLY in
11916         XEmacs.  GNU Emacs 22 now has a check which would throw an error here.
11918         * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
11919         with save-match-data.  It was being corrupted when Font Lock was
11920         not enabled.
11922 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11924         * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
11925         Mode and Subword Mode.
11927         * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
11928         real labels ("case 1:" or "foo:") from non-labels ("public:").
11929         (c-forward-objc-directive): Replace c-forward-token-2 with crude
11930         coding; c-f-t-2 doesn't move over a token at EOB.
11932         * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
11934         * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
11935         (c-update-modeline): Concatenate the minor mode indicators
11936         directly onto mode-name, removing c-submode-indicators.
11937         Sometimes, c-s-i got separated from the mode name on the mode line.
11939         * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
11940         (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
11942 2006-02-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11944         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
11945         error message when there's an evaluation error to show whether
11946         it's loaded from source or not.
11947         (c-filter-ops): Make it available at runtime too to work when
11948         `c-make-init-lang-vars-fun' needs to evaluate from source.
11950 2006-02-24  Juanma Barranquero  <lekktu@gmail.com>
11952         * help.el (help): Revert last part of 2006-02-23 change (deletion
11953         of the `provide' call).
11955 2006-02-23  Juri Linkov  <juri@jurta.org>
11957         * compare-w.el (compare-windows-highlight): Add new value
11958         `persistent' and change :type from `boolean' to `choice'.
11959         (compare-windows-overlays1, compare-windows-overlays2):
11960         New internal variables.
11961         (compare-windows-highlight): If compare-windows-highlight is
11962         `persistent', add current overlays to compare-windows-overlays[12]
11963         instead of adding compare-windows-dehighlight to pre-command-hook.
11964         (compare-windows-dehighlight): Delete all overlays from
11965         compare-windows-overlays[12].
11967         * info.el (Info-search): Don't bind search-spaces-regexp to
11968         Info-search-whitespace-regexp in non-regexp isearch mode.
11970 2006-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11972         * help.el (describe-mode): Pass `mode-name' to format-mode-line.
11974 2006-02-23  Juanma Barranquero  <lekktu@gmail.com>
11976         * textmodes/org.el (org-xemacs-p)
11977         (org-export-html-show-new-buffer, org-table-may-need-update)
11978         (org-insert-item, org-mhe-get-message-real-folder)
11979         (org-mhe-get-message-folder-from-index)
11980         (org-mhe-get-message-folder, org-mhe-get-message-num)
11981         (org-mhe-get-header, org-make-org-heading-search-string)
11982         (org-make-org-heading-camel, org-table-sort-lines)
11983         (org-format-org-table-html, org-format-table-table-html):
11984         Fix typos in docstrings.
11986 2006-02-23  Carsten Dominik  <dominik@science.uva.nl>
11988         * textmodes/org.el (org-cleaned-string-for-export)
11989         (org-solidify-link-text): New function.
11990         (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
11991         XEmacs, just to silence the compiler.
11992         (org-export-as-ascii, org-export-as-html-and-open):
11993         Use `org-cleaned-string-for-export' and create internal links.
11994         (org-follow-mhe-link): Require mh-e, use folder.
11996 2006-02-23  Nick Roberts  <nickrob@snap.net.nz>
11998         * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
12000         * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
12001         gdb-debug-log-length.
12002         (gdb-debug-ring): Rename from gdb-debug-log-ring.  Don't make
12003         it a real ring but...
12004         (gud-gdba-marker-filter): ...make it work like mark-ring.
12005         (gdb-enable-debug): Rename from gdb-enable-debug-log.
12006         (gdb-mouse-jump): New function.  Add bindings.
12008 2006-02-23  Nick Roberts  <nickrob@snap.net.nz>
12010         * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
12011         (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
12012         (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
12013         (gdb-debug-log-length): Customize it's length.
12014         (gud-watch, gdb-var-create-handler): Display function::var format
12015         but don't use to create variable object.
12016         (gdb-var-create-handler): Use message-box in place of message.
12017         (gdb-stopped): Call gdb-exited if signalled.
12019 2006-02-22  Carsten Dominik  <dominik@science.uva.nl>
12021         * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
12023         * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
12025         * textmodes/reftex.el (reftex-locate-file): Search all extensions
12026         if `reftex-try-all-extensions' is set.
12028         * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
12029         fail silently when there is no valid argument at point.
12030         (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
12031         `fail-silently' argument.  From a patch by David Reiter.
12033         * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
12034         New commands.
12035         (org-mark-ring): New variable.
12036         (org-mark-ring-length): New option.
12037         (org-open-at-point, org-goto, org-open-file): Push old position
12038         onto the mark ring.
12039         (org-add-hook): New function.
12040         (org-export-table-remove-special-lines): New option.
12041         (org-skip-comments, org-format-org-table-html): Respect new
12042         option `org-export-table-remove-special-lines'.
12043         (org-open-file): Allow special command configuration for
12044         directory link.
12045         (org-file-apps): Fix bugs in customize type, added setting
12046         for directories.
12047         (org-activate-tags, org-format-agenda-item, org-complete)
12048         (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
12049         (org-get-tags, org-get-buffer-tags, org-open-at-point)
12050         (org-link-search, org-make-org-heading-search-string)
12051         (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
12052         (org-radio-targets, org-file-link-context-use-camel-case)
12053         (org-activate-camels): New options.
12054         (org-update-radio-target-regexp, org-all-targets)
12055         (org-make-target-link-regexp, org-activate-target-links):
12056         New functions.
12057         (org-make-org-heading-search-string): New function.
12058         (org-store-link, org-insert-link): Use new option
12059         `org-file-link-context-use-camel-case'.
12060         (org-activate-camels): Use new option `org-activate-camels'.
12061         (org-link-regexp): Add mhe prefix.
12062         (org-open-at-point, org-store-link): Support for mhe links.
12063         (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
12064         (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
12065         (org-mhe-get-header, org-follow-mhe-link): New functions.
12066         (org-remove-angle-brackets, org-add-angle-brackets):
12067         New functions.
12068         (org-bracket-link-regexp): New constant.
12069         (org-read-date): Fix bug that was rejecting all typed dates.
12070         (org-link-search): Make hierarchy above visible after a match.
12071         (org-follow-bbdb-link): Inhibit electric mode for BBDB.
12072         (org-store-link): Fix bug with link creation when cursor is in
12073         an empty line.
12074         (org-open-at-point): Fix bug with matching a link.
12075         Fixed buggy argument sequence in call to `org-view-tags'.
12076         (org-compile-prefix-format): Set `org-prefix-has-tag'.
12077         (org-prefix-has-tag): New variable.
12078         (org-format-agenda-item): Remove tags from headline
12079         if appropriate.
12080         (org-agenda-remove-tags-when-in-prefix): New option.
12082 2006-02-21  Michael Kifer  <kifer@cs.stonybrook.edu>
12084         * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
12085         Fix the regular expressions.
12087 2006-02-21  Richard M. Stallman  <rms@gnu.org>
12089         * progmodes/sh-script.el (sh-mode): Set shell type based on file name
12090         if there's no other specific basis.
12092         * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
12093         as variables at all.
12094         (unsafep-variable): Rename arg; doc fix.
12096         * abbrevlist.el (list-one-abbrev-table): Add autoload.
12098         * calendar/appt.el (diary-selective-display): Add defvar.
12100         * sort.el (sort-columns): Use Posix arg syntax for `sort'.
12102         * isearch.el (search-whitespace-regexp): Fix custom type.
12104         * help.el (describe-key-briefly): Compute interactive args
12105         in same was as before previous change.
12107         * files.el (enable-local-variables): Doc fix.
12109 2006-02-21  Kim F. Storm  <storm@cua.dk>
12111         * fringe.el: Cleanup as file is now pre-loaded.
12112         (fringe-bitmaps): Initialize unconditionally.
12113         (fringe-mode, set-fringe-style): Remove autoload cookies.
12115 2006-02-21  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
12117         * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
12118         `horizontal-bar'.
12119         (fringe-cursor-alist): Use `horizontal-bar'.
12121 2006-02-20  Kim F. Storm  <storm@cua.dk>
12123         * fringe.el (fringe-bitmaps): Update to new bitmap names.
12124         (fringe-indicator-alist, fringe-cursor-alist): Initialize.
12126         * loadup.el: Load "fringe" on window systems.
12128 2006-02-20  Nick Roberts  <nickrob@snap.net.nz>
12130         * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
12131         out of scope components.
12133         * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
12134         default.
12136 2006-02-20  Chong Yidong  <cyd@stupidchicken.com>
12138         * custom.el (customize-mark-to-save, customize-mark-as-set):
12139         Load the symbol first.
12141 2006-02-20  Juanma Barranquero  <lekktu@gmail.com>
12143         * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
12144         strech spec so it doesn't display as "^J" on the header line
12145         when `Buffer-menu-use-header-line' is t.
12147 2006-02-20  Nick Roberts  <nickrob@snap.net.nz>
12149         * speedbar.el (speedbar-make-button): Keep text properties
12150         of string arguments if desired.
12152         * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
12153         expessions.
12155         * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
12156         of speedbar.
12158 2006-02-19  Ryan Yeske  <rcyeske@gmail.com>
12160         * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
12161         to value of `read-file-name-completion-ignore-case'.
12163 2006-02-19  Chong Yidong  <cyd@stupidchicken.com>
12165         * custom.el (customize-mark-as-set): Push to `user' theme.
12167         * cus-edit.el (custom-save-variables): Allow unthemed values.
12168         (customize-set-variable): Push setting to `user' theme.
12170 2006-02-19  Nick Roberts  <nickrob@snap.net.nz>
12172         * progmodes/gud.el: Don't require font-lock as it's now
12173         automatically loaded.
12174         (gud-speedbar-buttons): Replace gdb-var-changed with
12175         gdb-force-update.
12177         * progmodes/gdb-ui.el (gdb-force-update): Rename from
12178         gdb-var-changed.
12179         (gdb-post-prompt): Use it.
12180         (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
12181         (gdb-var-update-handler, gdb-var-delete)
12182         (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
12183         (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
12184         gdb-force-update in gdb-post-prompt.
12185         (gdb-reset): Clear watch expressions from speedbar when quitting.
12187 2006-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
12189         * viper-cmd.el (viper-insert-state-post-command-sentinel)
12190         (viper-change-state-to-vi, viper-change-state-to-emacs):
12191         Make aware of cursor coloring in the Emacs state.
12192         (viper-special-read-and-insert-char): Use read-char-exclusive.
12193         (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
12195         * viper-init.el (viper-emacs-state-cursor-color): New variable.
12197         * viper-util.el (viper-save-cursor-color)
12198         (viper-get-saved-cursor-color-in-replace-mode)
12199         (viper-get-saved-cursor-color-in-insert-mode)
12200         (viper-restore-cursor-color): Make aware of the cursor color in Emacs
12201         state.
12202         (viper-get-saved-cursor-color-in-emacs-mode): New function.
12204         * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
12205         (ediff-ignore-case-option3, ediff-actual-diff-options)
12206         (ediff-actual-diff3-options): New variables to control case sensitivity.
12207         (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
12208         (ediff-setup-diff-regions3): Make aware of case-sensitivity.
12209         (ediff-toggle-ignore-case): New function.
12210         (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
12212         * ediff-help.el (ediff-long-help-message-narrow2)
12213         (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
12214         (ediff-long-help-message-word-mode): Add ignore-case command.
12215         (ediff-help-for-quick-help): Add ignore-case command.
12217         * ediff-merg.el: Move provide to the end.
12219         * ediff-ptch.el: Move provide to the end.
12221         * ediff-wind.el: Move provide to the end.
12223         * ediff-mult.el: Move provide to the end.
12224         (ediff-set-meta-overlay): Enable follow-link.
12226         * ediff.el: Move provide to the end.
12227         Break recursive load cycle in eval-when-compile.
12228         (ediff-patch-buffer): Better heuristics.
12230         * ediff-util.el: Move provide to the end.
12231         Break recursive load cycle in eval-when-compile.
12232         (ediff-setup-keymap): Add binding for #c.  Replace some defsubsts with
12233         defuns.
12234         (ediff-submit-report): Pass the values of ediff-diff3-program,
12235         ediff-diff3-options.
12237 2006-02-19  Juanma Barranquero  <lekktu@gmail.com>
12239         * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
12240         the opening bracket of the following bracketing pairs: {}, [], (), <>,
12241         `' (for example, in the docstring of `windmove-default-keybindings').
12243 2006-02-19  Nick Roberts  <nickrob@snap.net.nz>
12245         * progmodes/gud.el (gud-speedbar-buttons): Update properly for
12246         shadow face.  Don't provide binding to edit variable when it is
12247         out of scope.
12249         * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
12250         (gdb-var-update-handler): Detect out of scope variables with pre
12251         GDB 6.4 too.
12252         (gdb-post-prompt): Revert change from 2006-02-17 (force update).
12253         Reset status of variable objects to nil in update handlers.
12254         (gdb-var-update-handler-1): Detect when a variable object comes
12255         in scope.  setcar on var changes gdb-var-list directly.
12257 2006-02-17  Juri Linkov  <juri@jurta.org>
12259         * ffap.el (ffap) <defface>: Add explicit face declaration.
12260         (ffap-highlight): Use face `ffap' directly instead of checking
12261         for its existence.
12263         * icomplete.el (icomplete-get-keys): Use `t' for the second arg
12264         `visible-ok' of `other-buffer' to find the right original buffer.
12266         * info.el (Info-search): Skip `Local Variables' node.
12268 2006-02-17  Juri Linkov  <juri@jurta.org>
12270         * info.el (Info-find-file): Check for symbols `apropos', `history',
12271         `toc' in the input filename, and return these symbols as is.
12272         (Info-find-node-2): Set Info-current-file to symbols `apropos',
12273         `history', `toc' instead of strings.
12274         (Info-set-mode-line): For non-string Info-current-file use the
12275         symbol's name inside **.
12276         (Info-isearch-push-state): Add quote before Info-current-file and
12277         Info-current-node.
12278         (Info-isearch-pop-state): Use `equal' instead of `string='.
12279         (Info-extract-pointer, Info-following-node-name): Use
12280         `match-string-no-properties' instead of `match-string'.
12281         (Info-up): Check `old-file' for `stringp'.
12282         (Info-history): Use `equal' instead of `string-equal'.
12283         Check `file' for `stringp'.
12284         (Info-history): Use symbol `history' instead of string as first arg
12285         of `Info-find-node'.
12286         (Info-toc): Check `Info-current-file' for `stringp'.  Use symbol
12287         `toc' instead of string.
12288         (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
12289         instead of `buffer-substring', and `match-string-no-properties'
12290         instead of `match-string'.
12291         (Info-index-nodes): Check for symbols `apropos', `history', `toc'
12292         instead of strings.
12293         (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
12294         Use symbol `apropos' instead of string.
12295         (Info-copy-current-node-name): Check `Info-current-file' for
12296         `stringp' and construct a command with `Info-find-node' from it.
12297         (Info-fontify-node): Use `match-string-no-properties' instead of
12298         `match-string' and check file names for `stringp'.
12299         (Info-desktop-buffer-misc-data): Check for symbols `apropos',
12300         `history', `toc' instead of strings.
12302 2006-02-17  Chong Yidong  <cyd@stupidchicken.com>
12304         * files.el: Rearrange functions and variables in the file local
12305         variables section.
12307 2006-02-17  Reiner Steib  <Reiner.Steib@gmx.de>
12309         * files.el: Add truncate-lines, ispell-check-comments and
12310         ispell-local-dictionary as safe local variables.
12312 2006-02-18  Nick Roberts  <nickrob@snap.net.nz>
12314         * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
12315         out of scope variables.
12316         (gud-speedbar-buttons): Use unless.
12318         * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
12319         (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
12320         (gdb-show-changed-values): Also use for out of scope variables.
12321         (gdb-var-update-handler-1): Note if variable goes out of scope.
12323 2006-02-17  Ryan Yeske  <rcyeske@gmail.com>
12325         * net/rcirc.el (rcirc-connect): Make all arguments optional, and
12326         default to global variable values for unsupplied args.
12327         (rcirc-get-buffer-create): Fix bug with setting the target.
12328         (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
12329         test for rcirc-always-use-server-buffer-flag here.
12330         (rcirc-response-formats): Add %N, which is a facified nick.  %n
12331         uses the default face.  Change the ACTION format string.  If the
12332         "nick" is the server, don't print anything for that field.
12333         Comment fixes.
12334         (rcirc-target-buffer): Don't test
12335         rcirc-always-use-server-buffer-flag here.
12336         (rcirc-print): Squeeze extra spaces out of the text before message.
12337         (rcirc-put-nick-channel): Strip potential "@" char from nick
12338         before adding them to nick table.
12339         (rcirc-url-regexp): Improve to match address like "foo.com".
12341 2006-02-17  Eli Zaretskii  <eliz@gnu.org>
12343         * allout.el (allout-hidden-p): Move this defsubst before
12344         allout-overlay-interior-modification-handler, where it is first
12345         used.
12347 2006-02-17  Ken Manheimer  <ken.manheimer@gmail.com>
12349         * allout.el: Use allout invisible-text overlays instead of
12350         selective display for concealed text.  Also, lots of general
12351         cleanup, and improved compatibility code.
12353         (allout-version) Incremented, corrected, revised, and refined
12354         module commentary.
12356         (provide 'allout): Moved to the bottom, added a require of overlay.
12358         (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
12359         `except-current'.
12360         (allout-write-file-hook-handler): Minimize delay.
12361         (count-trailing-whitespace-region): New function so
12362         auto-encryption of current topic can resituate cursor exactly.
12363         PGP/GPG encryption trims trailing whitespace from lines, which
12364         must be accounted for across encryption then decryption.
12366         (allout-command-prefix): Now defaults to "\C-c<space>" rather than
12367         just plain "\C-c", to avoid intruding on user's keybinding space.
12369         (allout-toggle-current-subtree-encryption): Pass along fetch-pass
12370         parameter, so user request to provide a new password is done.
12372         (allout-outside-normal-auto-fill-function, allout-auto-fill):
12373         Refined mechanism for auto-filling behavior while in allout mode.
12375         (allout-mode): Explicitly specify the mode map in the docstring.
12376         Clarify provision for various write-file hook var names.
12377         Adjusted for invisible-text overlays instead of selective-display.
12379         (allout-depth): Really return 0 if not within any topic.  This
12380         rectifies `allout-beginning-of-level' and sequence numbering
12381         errors that occur when cutting and pasting numbered topics.
12382         Changed from a in-line subst to a regular function, as well.
12384         (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
12386         (allout-end-of-subtree, allout-end-of-subtree)
12387         (allout-end-of-entry, allout-end-of-current-heading)
12388         (allout-next-visible-heading, allout-open-topic, allout-show-entry)
12389         (allout-show-children, allout-show-to-offshoot)
12390         (allout-hide-current-entry, allout-show-current-entry): Rectified
12391         handling of trailing blank lines between items.
12393         (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
12394         (allout-current-depth, allout-unprotected, allout-hidden-p)
12395         (allout-on-current-heading-p, allout-listify-exposed)
12396         (allout-chart-subtree, allout-goto-prefix)
12397         (allout-back-to-current-heading, allout-get-body-text)
12398         (allout-snug-back, allout-flag-current-subtree, allout-show-all)
12399         (allout-hide-region-body, allout-toggle-subtree-encryption)
12400         (allout-encrypt-string, allout-encrypted-key-info)
12401         (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
12402         (allout-file-vars-section-data): Adjusted for use with
12403         invisible-text overlays instead of selective-display.
12405         (allout-kill-line, allout-kill-topic, allout-yank-processing):
12406         Reworked for use with invisible text overlays.
12408         (allout-current-topic-collapsed-p): New function.
12410         (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
12411         to know when to close the containing topic.
12413         (allout-pre-command-business, allout-post-command-business):
12414         Simplify undo-batching and dynamic isearch exposure.
12416         (allout-set-overlay-category): New for invisible-text overlays.
12417         Sets properties of allout-overlay-category, used by
12418         allout-flag-region to set invisible-text overlay properties.
12419         (allout-get-invisibility-overlay): Get the first qualifying
12420         invisibility overlay, so we can find the extent of it.
12421         (allout-back-to-visible-text): Get to just before the beginnining
12422         of the current invisibility overlay, if any.
12424         (allout-overlay-insert-in-front-handler)
12425         (allout-overlay-interior-modification-handler)
12426         (allout-before-change-handler, allout-isearch-end-handler): New
12427         functions to handle extraordinary actions affecting concealed
12428         text.
12430         (allout-flag-region): Use overlays instead of selective-display
12431         for invisible text - by inheritence from the properties of
12432         allout-overlay-category in mainline Emacs, and applied
12433         property-by-property in XEmacs, some recent versions of which
12434         don't inherit the properties from the category.  Provisions to
12435         respond to concealed-text edits simplified drastically.
12437         (allout-isearch-rectification, allout-isearch-was-font-lock)
12438         (allout-isearch-expose, allout-enwrap-isearch)
12439         (allout-isearch-abort, allout-pre-was-isearching)
12440         (allout-isearch-prior-pos, allout-isearch-did-quit)
12441         (allout-isearch-dynamic-expose)
12442         (allout-hide-current-entry-completely): Functions deleted.
12444         (allout-undo-aggregation): Explicit undo aggregation no longer
12445         necessary due to transition away from selective-display.
12447         (set-allout-regexp, allout-up-current-level)
12448         (allout-next-visible-heading, allout-forward-current-level)
12449         (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
12450         (allout-kill-line, allout-yank-processing, allout-show-children)
12451         (allout-expose-topic, allout-old-expose-topic)
12452         (allout-listify-exposed, allout-insert-latex-header)
12453         (allout-toggle-subtree-encryption, allout-encrypt-string)
12454         (remove-from-invisibility-spec, allout-hide-current-subtree):
12455         Ditched unused variables.
12457 2006-02-17  Agustin Martin  <agustin.martin@hispalinux.es>
12459         * textmodes/ispell.el (ispell-change-dictionary): Call
12460         ispell-buffer-local-dict instead of
12461         ispell-accept-buffer-local-defs.
12462         (ispell-local-dictionary-alist): Accept as valid any coding-system
12463         supported by Emacs.
12464         (ispell-dictionary-alist-3): Esperanto dictionary's coding system
12465         changed to iso-8859-3.
12467 2006-02-17  Nick Roberts  <nickrob@snap.net.nz>
12469         * speedbar.el (speedbar-frame-width): Make an inline function
12470         instead of a macro.  Use frame-width.
12471         (speedbar-try-completion, speedbar-update-contents)
12472         (speedbar-timer-fn): Use consp.
12473         (speedbar-update-localized-contents): Try to preserve point.
12475         * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
12476         (menu): Re-order menu items.
12477         (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
12478         field.
12479         (gdb-var-update-handler-1): Use it for GDB 6.4+.
12480         (gdb-post-prompt): Speed things by not forcing update.
12482 2006-02-16  Chong Yidong  <cyd@stupidchicken.com>
12484         * wid-edit.el (widget-button-click): For mouse-1, cancel button
12485         press and perform default action if we get a mouse movement event.
12487 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
12489         * calendar/icalendar.el (icalendar--get-event-property)
12490         (icalendar--get-event-property-attributes): Fix typos in
12491         docstrings.
12493         * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
12494         docstring.
12496 2006-02-15  Juanma Barranquero  <lekktu@gmail.com>
12498         * bs.el (bs-mode): Use `buffer-disable-undo'.
12499         (bs--get-file-name): Simplify.
12500         (bs-show-in-buffer): Mark the buffer as not modified.
12502 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
12504         * wid-edit.el (widget-keymap): Bind down-mouse-1 to
12505         widget-button-click.
12507         * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
12508         (custom-mode): Update docstring.
12510         * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
12511         binding.
12513         * files.el (hack-local-variables-confirm): Allow scrolling if the
12514         file variable list is too long.  Kill temp buffer after use.
12516 2006-02-15  Nick Roberts  <nickrob@snap.net.nz>
12518         * progmodes/gud.el (gdb): Improve doc string.
12519         (gdb-script-font-lock-keywords): Expand allowed character set.
12521         * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
12522         (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
12523         (gdb-separate-io-interrupt, gdb-separate-io-quit)
12524         (gdb-separate-io-stop, gdb-separate-io-eof):
12525         Rename from gdb-inferior-* to gdb-separate-*.
12526         (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
12528 2006-02-14  Jay Belanger  <belanger@truman.edu>
12530         * calc/calc-arith.el (math-check-known-scalarp): Make sure
12531         expression is a symbol before checking that it is bound.
12533         * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
12534         test to see if equation can be solved.
12536 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
12538         * wid-edit.el (widget-button-click): Use :pressed-face property
12539         for overlay face, if it exists.
12541         * cus-edit.el (custom-manual, custom-add-see-also)
12542         (custom-add-parent-links, custom-group-link): Add :pressed-face
12543         property to links.
12545         * files.el (hack-local-variables): Remove ignored variables before
12546         checking if any variables need setting.
12548 2006-02-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12550         * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
12552 2006-02-14  Juanma Barranquero  <lekktu@gmail.com>
12554         * help.el (where-is): Fix message for remapped commands.
12556         * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
12557         Fix typos in docstrings.
12559 2006-02-13  Chong Yidong  <cyd@stupidchicken.com>
12561         * files.el (safe-local-variable-values): New option.
12562         (hack-local-variables-prop-line): Return a list of variable-value
12563         pairs if MODE-ONLY is non-nil.
12564         (hack-local-variables): Construct list of variable-value pairs,
12565         and apply or reject them in one go.  Ask for confirmation if
12566         variables are not known safe.
12567         (hack-local-variables-confirm): Complete rewrite.  Support
12568         `safe-local-variable-values'.
12569         (enable-local-variables): Update docstring to reflect new
12570         behavior.
12571         (ignored-local-variables): Ignore ignored-local-variables and
12572         safe-local-variable-values.
12573         (safe-local-variable-p): New function.
12574         (risky-local-variable-p): `safe-local-variable' property check
12575         moved to safe-local-variable-p.
12576         (hack-one-local-variable): Checks moved to hack-local-variables.
12578         (byte-compile-dynamic, c-basic-offset, c-file-style)
12579         (c-indent-level, comment-column, fill-column, fill-prefix)
12580         (indent-tabs-mode, kept-new-versions, no-byte-compile)
12581         (no-update-autoloads, outline-regexp, page-delimiter)
12582         (paragraph-start, paragraph-separate, sentence-end)
12583         (sentence-end-double-space tab-width, version-control):
12584         Add `safe-local-variable' property.
12586         * find-lisp.el: Delete nonexistent `autocompile' file variable.
12588         * icomplete.el, play/landmark.el: Change nonexistent
12589         `outline-layout' file variable to `allout-layout'.
12591 2006-02-14  Nick Roberts  <nickrob@snap.net.nz>
12593         * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
12594         (gdb-get-changed-registers): Test value of gud-minor-mode relative
12595         to gud-comint-buffer.
12596         (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
12597         gdb-ui.el for gdb-mi.el.
12598         (gdb-post-prompt, gdb-get-changed-registers): Move test for
12599         registers buffer to gdb-get-changed-registers.
12600         (gdb-breakpoint-regexp): New regexp.  Allow toggling and
12601         deletion of catchpoints (throw and catch).
12602         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
12603         (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
12604         (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
12605         (gdb-var-list-children-1, gdb-info-breakpoints-custom)
12606         (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
12608 2006-02-13  Jay Belanger  <belanger@truman.edu>
12610         * calc/calc-arith.el (math-check-known-matrixp): Make sure
12611         expression is a symbol before checking that it is bound.
12613 2006-02-13  Richard M. Stallman  <rms@gnu.org>
12615         * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
12616         for the minibuffer too, but not if resize-mini-windows will interfere.
12618         * help.el (describe-key-briefly, describe-key): Do all arg-reading
12619         inside `interactive' spec.
12620         (describe-key-briefly-internal, describe-key-internal):
12621         Functions merged back into their callers.
12623 2006-02-13  Martin Rudalics  <rudalics@gmx.at>
12625         * info.el (info-xref-visited): Inherit from info-xref too.
12626         (Info-set-mode-line): Replace occurrences of `%' by `%%'
12627         when propertizing Info-current-file and Info-current-node.
12629 2006-02-13  Juri Linkov  <juri@jurta.org>
12631         * tumme.el (tumme-thumbnail-storage): Fix docstring.
12632         (tumme-thumb-name): Fix per-directory format.
12634 2006-02-13  Juanma Barranquero  <lekktu@gmail.com>
12636         * subr.el (substitute-key-definition): Doc fix (hide internal arg).
12638 2006-02-12  Miles Bader  <miles@gnu.org>
12640         * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
12642 2006-02-13  Mathias Dahl  <mathias.dahl@gmail.com>
12644         * tumme.el: Remove history section.  If someone needs the it, it
12645         can always be found in CVS.
12647 2006-02-12  Mathias Dahl  <mathias.dahl@gmail.com>
12649         * tumme.el (tumme-thumbnail-storage): Update docstring.  Add info
12650         about the Thumbnail Managing Standard option.
12652 2006-02-12  Richard M. Stallman  <rms@gnu.org>
12654         * subr.el (substitute-key-definition): Doc fix.
12656         * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
12658         * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
12660         * info.el (Info-mode): Doc fix.
12662         * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
12664 2006-02-12  Michael Albinus  <michael.albinus@gmx.de>
12666         * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
12667         because on Solaris a POSIX compatible "id" is needed.  Reported by
12668         Magnus Henoch <mange@freemail.hu>.
12670 2006-02-12  Juri Linkov  <juri@jurta.org>
12672         * tumme.el: Remove todo item about Thumbnail Managing Standard.
12673         (tumme) <defgroup>: Change :group to `multimedia'.
12674         (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
12675         Managing Standard.
12676         (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
12677         Fix dostring.
12678         (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
12679         and %y.  Fix docstring.
12680         (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
12681         (tumme-cmd-create-standard-thumbnail-command): New user options.
12682         (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
12683         is `standard'.  Fix docstring.
12684         (tumme-thumb-width, tumme-thumb-height): New user options.
12685         (tumme-external-viewer): Try to find various viewers.
12686         (tumme-get-thumbnail-image): Use `create-image' instead of
12687         constructing the `image' structure.
12688         (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
12689         `standard'.
12690         (tumme-thumb-name): Add file name generation for standard storage.
12691         Simplify code for other storages.
12692         (tumme-thumb-name): Use width %w and height %h instead of size %s.
12693         Add modification time %m and thumbnail-nq8 %q.
12694         Use `tumme-cmd-create-standard-thumbnail-command' if
12695         tumme-thumbnail-storage is `standard'.
12696         (tumme-dired-insert-marked-thumbs): New autoload command.
12697         (tumme-dired-after-readin-hook): New function.
12698         (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
12699         `tumme-thumb-size'.
12700         (tumme-display-image): Replace size-x %x and size-y %y with
12701         width %w and height %h.
12703         * dired.el (dired-mode-map): Bind `\C-t\C-t' to
12704         `tumme-dired-insert-marked-thumbs'.
12706 2006-02-12  Mathias Dahl  <mathias.dahl@gmail.com>
12708         * tumme.el (tumme-write-tag): Fix small bug (file name did not
12709         include path).
12710         (tumme-mark-tagged-files): Fix bug in regexp used to find rows
12711         matching tag.
12713 2006-02-12  Miles Bader  <miles@gnu.org>
12715         * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
12716         New variables.
12717         (rcirc-abbrev-nick): New function.
12718         (rcirc-format-response-string): Rewrite to use the formats in
12719         `rcirc-response-formats' and expand escape sequences therein.
12720         A text-property `rcirc-text' is added over the actual response
12721         text to make easy to find inside the returned string.
12722         (rcirc-print): When filling, just look for the `rcirc-text'
12723         text-property to find the appropriate fill prefix, instead of
12724         using hardwired patterns.
12726 2006-02-11  Mathias Dahl  <brakjoller@hotmail.com>
12728         * tumme.el: Enhance some docstrings.  Add todo item about Thumbnail
12729         Managing Standard.
12731 2006-02-11  Kim F. Storm  <storm@cua.dk>
12733         * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
12734         Don't use insert-buffer; do insert-buffer-substring directly.
12735         (ido-file-internal): Set mark for ido-insert-file.  Use insert-file-1.
12737 2006-02-11  Martin Rudalics  <rudalics@gmx.at>
12739         * files.el (revert-buffer, recover-file): Replace buffer-read-only
12740         with inhibit-read-only.  Suggested by Stefan Monnier.
12741         (revert-buffer): Let insert-file-contents discard
12742         buffer-undo-list.  Simplify code.
12743         (find-file, find-file-existing, revert-buffer): Doc-string fixes.
12745 2006-02-11  Eli Zaretskii  <eliz@gnu.org>
12747         * menu-bar.el (menu-bar-select-yank): Add a doc string.
12749         * help.el (describe-key-briefly): Now a wrapper for
12750         describe-key-briefly-internal.  Bind enable-disabled-menus-and-buttons
12751         to t.  Populate yank-menu if empty.
12752         (describe-key-briefly-internal): Renamed from describe-key-briefly.
12753         (describe-key): Now a wrapper for describe-key-internal.  Bind
12754         enable-disabled-menus-and-buttons to t.  Populate yank-menu if empty.
12755         (describe-key-internal): Renamed from describe-key.
12757 2006-02-11  Milan Zamazal  <pdm@zamazal.org>
12759         * progmodes/glasses.el (glasses-separator): Doc fix.
12760         (glasses-original-separator): New defcustom.
12761         (glasses-make-readable, glasses-convert-to-unreadable): Use it.
12763 2006-02-11  Martin Rudalics  <rudalics@gmx.at>
12765         * mwheel.el (mouse-wheel-up-event): Doc fix.
12767 2006-02-11  Mathias Dahl  <brakjoller@hotmail.com>
12769         * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
12770         (tumme-dir): New function.  Copied from thumbs.el.
12772 2006-02-10  Juanma Barranquero  <lekktu@gmail.com>
12774         * desktop.el (desktop-outvar): Fix typo.
12775         (desktop-save-buffer-p): Doc fix.
12777         * subr.el (substitute-key-definition): Fix typo.
12779 2006-02-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12781         * frame.el (select-frame-set-input-focus): Call x-focus-frame also
12782         when window-system is mac.
12784         * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
12786 2006-02-10  Kim F. Storm  <storm@cua.dk>
12788         * subr.el (substitute-key-definition-key): Pass t for NOERROR to
12789         indirect-function instead of using condition-case.
12791 2006-02-10  Mathias Dahl  <mathias.dahl@gmail.com>
12793         * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
12794         less `colloquial'...
12796 2006-02-09  Mathias Dahl  <mathias.dahl@gmail.com>
12798         * tumme.el: Add a couple of todo items.
12800 2006-02-09  Lars Hansen  <larsh@soem.dk>
12802         * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
12803         (highlight-changes-mode): Don't change desktop-locals-to-save.
12805 2006-02-09  Chong Yidong  <cyd@stupidchicken.com>
12807         * image-mode.el (image-toggle-display): Clear image cache if using
12808         filename.
12810 2006-02-09  Masatake YAMATO  <jet@gyve.org>
12812         * dired-x.el (dired-guess-shell-alist-default): Add .man as
12813         a `dired-man' target.
12815         * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
12816         boundary of symbols.
12818 2006-02-08  Peter Doornbosch  <peter.doornbosch@luminis.nl>  (tiny change)
12820         * vc-svn.el (vc-svn-print-log): Show recent commits as well.
12822 2006-02-09  Juanma Barranquero  <lekktu@gmail.com>
12824         * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
12825         `mapcar'; return nil.
12827 2006-02-08  Chong Yidong  <cyd@stupidchicken.com>
12829         * mouse.el (mouse-drag-track): Don't change window if we rebind to
12830         some other event.
12832 2006-02-08  Ryan Yeske  <rcyeske@gmail.com>
12834         * net/rcirc.el (rcirc-startup-channels-alist):
12835         Add irc.freenode.net and #emacs as defaults.
12836         (rcirc-ignore-all-activity-flag): Remove variable.
12837         (rcirc-authinfo): New variable.
12838         (rcirc-authinfo-filename): Remove variable.
12839         (rcirc-always-use-server-buffer-flag): New flag.
12840         (rcirc): M-x rcirc will automatically connect without prompting.
12841         C-u M-x rcirc will prompt.  Use rcirc-connect to create a
12842         connection in lisp.
12843         (rcirc-process-server-response-1): Remove everything but the nick
12844         portion of the sender so it doesn't need to be done everywhere
12845         else.  Update related code.
12846         (global-map): Remove global keybindings.
12847         (rcirc-get-buffer-create): Make sure rcirc-topic is set.
12848         (rcirc-send-input): Split into several functions.
12849         (rcirc-process-input-line, rcirc-process-message)
12850         (rcirc-process-command): New functions.
12851         (rcirc-target-buffer): New function to determine where to route
12852         messages.
12853         (rcirc-user-nick): Save match data.
12854         (rcirc-toggle-ignore-buffer-activity)
12855         (rcirc-update-activity-string): Remove global ignore functionality,
12856         which can be done now by toggling rcirc-track-minor-mode.
12857         (rcirc-track-minor-mode-map): New keymap.
12858         (rcirc-track-minor-mode): New minor-mode.
12859         (ignore): Make the ignore output nicer.  Always print it when
12860         adding or removing nicks.
12861         (rcirc-url-regexp): Improve.
12862         (rcirc-mangle-text): Remove properties before using text in the
12863         modeline.
12864         (rcirc-authenticate): Authentication data comes from
12865         rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
12866         (rcirc-server-prefix): Inherit from rcirc-server.
12868 2006-02-08  Mathias Megyei  <Mathias.Megyei@micronas.com>  (tiny change)
12870         * Makefile.in (compile): Append "|| true" to the end of the `find'
12871         command, like compile-always does.
12873 2006-02-08  Sam Steingold  <sds@gnu.org>
12875         * net/tramp.el (tramp-maybe-open-connection): Do not wait for
12876         output from a dead connection.
12878 2006-02-07  Mathias Dahl  <brakjoller@hotmail.com>
12880         * dired.el (dired-mode-map): Add more bindings for tumme.
12882 2006-02-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12884         * wdired.el (wdired-mode-map): Use remap.
12885         (wdired-get-filename): Massage.
12886         (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
12887         (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
12888         `keymap' property rather than `local-map'.
12890 2006-02-07  Mathias Dahl  <brakjoller@hotmail.com>
12892         * tumme.el (tumme-get-thumbnail-image): New utility function.
12893         Suggested by from Chong Yidong.
12894         (tumme-dired-with-window-configuration): Rename from
12895         `tumme-dired'.  Add code to save window configuration.
12896         (tumme-restore-window-configuration): New command to restore the
12897         window configuration that `tumme-dired-with-window-configuration'
12898         saves before it changes the window configuration.
12899         (tumme-show-all-from-dir): New command to display thumbnails for
12900         all files in a directory entered by the user, like M-x thumbs.
12901         (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
12902         have been created.
12903         (tumme-display-thumbnail-original-image): Call `display-buffer'.
12904         (obsolete-tumme-display-thumbnail-original-image-and-buffer):
12905         Remove obsolete test function.
12907 2006-02-07  Juanma Barranquero  <lekktu@gmail.com>
12909         * vc.el (small-temporary-file-directory): Remove defvar; there's
12910         a defcustom for it in files.el.
12912         * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
12913         Fix typo in message.
12914         (tumme-gallery-generate): Fix typo in `error' message.
12915         (tumme-display-window-height-correction)
12916         (tumme-display-window-width-correction, tumme-line-up-dynamic)
12917         (tumme-line-up-interactive): Dox fixes.
12918         (tumme-cmd-rotate-original-options, tumme-display-properties-format)
12919         (tumme-restore-window-configuration, tumme-format-properties-string)
12920         (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
12921         Fix typos in docstrings.
12923 2006-02-07  Chris Moore  <christopher.ian.moore@gmail.com>
12925         * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
12927 2006-02-07  Nick Roberts  <nickrob@snap.net.nz>
12929         * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
12930         User should use hook if desired.
12932         * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
12933         buffer if necessary.
12934         (gdb-delete-frame-or-window): New function.
12935         (gdb-breakpoints-mode-map): Bind "q" to it.
12937 2006-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12939         * textmodes/nroff-mode.el: Clean up name space.
12940         (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
12941         (nroff-mode): Obey the global setting of nroff-electric-mode.
12942         (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
12944         * calendar/calendar.el (calendar-increment-month): Typo in last change.
12946 2006-02-06  Thien-Thi Nguyen  <ttn@gnu.org>
12948         * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
12950 2006-02-06  Lars Hansen  <larsh@soem.dk>
12952         * generic-x.el (etc-fstab-generic-mode): Add file system types
12953         cifs and usbdevfs.  Allow special chars in file names.
12955 2006-02-05  Jay Belanger  <belanger@truman.edu>
12957         Update copyright notices of the files in lisp/calc.
12959 2006-02-05  Romain Francoise  <romain@orebokech.com>
12961         Update copyright notices of all files in the lisp/play directory.
12963 2006-02-04  Luc Teirlinck  <teirllm@auburn.edu>
12965         * ldefs-boot.el: Regenerate.
12967         * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
12969 2006-02-05  Kim F. Storm  <storm@cua.dk>
12971         * files.el (magic-mode-regexp-match-limit): New defvar.
12972         (set-auto-mode): Use it to limit magic-mode-alist matching.
12974 2006-02-04  Eli Zaretskii  <eliz@gnu.org>
12976         * info.el (Info-index, Info-mode): Improve the description of the
12977         `i' command.
12979         * ldefs-boot.el: Regenerate.
12981 2006-02-03  Werner Lemberg  <wl@gnu.org>
12983         * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
12984         greedy to find the closing bracket in \*[...] and similar
12985         expressions.  This is a first rough fix -- many additional
12986         refinements are necessary to make nroff mode really usable with groff.
12988 2006-02-03  Jens Petersen  <petersen@redhat.com>  (tiny change)
12990         * international/mule-cmds.el (set-locale-environment):
12991         Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
12992         libX11.
12994 2006-02-03  Joe Wells  <jbw@macs.hw.ac.uk>  (tiny change)
12996         * arc-mode.el (archive-maybe-copy): Fix the way directories in the
12997         archive are created in archive-tmpdir.
12999 2006-02-02  John Paul Wallington  <jpw@pobox.com>
13001         * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
13002         (ibuffer-fontification-alist): Use it.
13003         (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
13004         to "* z" and the Ibuffer Mark menu.
13006         * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
13008 2006-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13010         * textmodes/table.el (*table--cell-describe-mode)
13011         (*table--cell-describe-bindings): Undo last change since
13012         print-help-return-message is not obsoleted by anything at all.
13014 2006-02-02  Luc Teirlinck  <teirllm@auburn.edu>
13016         * emulation/cua-base.el (cua-mode): Doc fix.
13018 2006-02-02  Juanma Barranquero  <lekktu@gmail.com>
13020         * dframe.el (dframe-handle-make-frame-visible)
13021         (dframe-handle-iconify-frame, dframe-get-focus)
13022         (dframe-select-attached-frame, dframe-power-click)
13023         (dframe-frame-mode): Fix typos in docstrings.
13025         * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
13026         (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
13027         Fix typos in docstrings.
13029         * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
13030         (hi-lock-face-buffer, hi-lock-font-lock-hook)
13031         (hi-lock-archaic-interface-message-used)
13032         (hi-lock-file-patterns-range): Fix typos in docstrings.
13034         * savehist.el (savehist-loaded, savehist-load, savehist-install)
13035         (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
13037         * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
13038         Fix typo in docstring.
13040         * net/newsticker.el (newsticker--decode-iso8601-date)
13041         (newsticker--set-customvar, newsticker--buffer-insert-item)
13042         (newsticker--do-run-auto-mark-filter)
13043         (newsticker--parse-generic-feed): Doc fixes.
13044         (newsticker--retrieval-timer-list, newsticker-url-list)
13045         (newsticker-hide-immortal-items-in-echo-area)
13046         (newsticker-hide-obsolete-items-in-echo-area)
13047         (newsticker-new-item-face, newsticker--enclosure)
13048         (newsticker-buffer-update, newsticker-w3m-show-inline-images)
13049         (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
13050         (newsticker--parse-generic-feed, newsticker--cache-contains)
13051         (newsticker--stat-num-items, newsticker-download-enclosures):
13052         Fix typos in docstrings.
13054         * net/rcirc.el (rcirc-debug): Doc fix.
13055         (rcirc-fill-column, rcirc-receive-message-hooks)
13056         (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
13057         (rcirc-mode, rcirc-generate-new-buffer-name)
13058         (rcirc-startup-channels, rcirc-ignore-update-automatic)
13059         (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
13060         Fix typos in docstrings.
13061         (rcirc-print): "?\ " -> "?\s".
13062         (rcirc-cmd-join): Improve argument/docstring consistency.
13064 2006-02-01  Mark A. Hershberger  <mah@everybody.org>
13066         * xml.el (xml-parse-region): Move save-excursion and set-buffer up
13067         before narrow-to-region.
13069 2006-02-01  Richard M. Stallman  <rms@gnu.org>
13071         * simple.el (move-beginning-of-line): Scan properly for invis change.
13073         * replace.el (multi-occur-in-matching-buffers): Fix prev change.
13075 2006-02-01  Michael Albinus  <michael.albinus@gmx.de>
13077         * net/tramp.el (tramp-convert-file-attributes): Set file's gid
13078         change bit only when id-format is 'integer.  Reported by Matt
13079         Hodges <M.P.Hodges@rl.ac.uk>.
13081 2006-02-01  Juanma Barranquero  <lekktu@gmail.com>
13083         * hilit-chg.el (highlight-changes-initial-state)
13084         (highlight-changes-global-initial-state): Doc fixes.
13085         (highlight-changes-global-modes, global-highlight-changes):
13086         Fix typos in docstrings.
13088 2006-02-01  Kim F. Storm  <storm@cua.dk>
13090         * emulation/cua-base.el (cua-mode): Mention that CUA enables
13091         transient-mark-mode in doc string.
13093 2006-01-31  Richard M. Stallman  <rms@gnu.org>
13095         * replace.el (multi-occur): Doc fix.
13096         (multi-occur-in-matching-buffers): Rename from
13097         multi-occur-by-filename-regexp.  Prefix arg says match
13098         buffer names instead of file names.
13100 2006-01-31  Juanma Barranquero  <lekktu@gmail.com>
13102         * bs.el: Allow non-default values of `bs-header-lines-length'.
13103         (bs--running-in-xemacs): Remove (not needed anymore).
13104         (bs--set-window-height): Simplify by using `fit-window-to-buffer'
13105         instead of `shrink-window', thus avoiding having to compute the
13106         height of the window.
13107         (bs--up): Wrap around even when there's no header.
13108         (bs--down): Use `forward-line' instead of `next-line'.
13110 2006-01-30  Chong Yidong  <cyd@stupidchicken.com>
13112         * image-mode.el (image-toggle-display): Use file name if possible,
13113         instead of unnecessarily allocating a (possibly huge) lisp string.
13115 2006-01-30  John Paul Wallington  <jpw@pobox.com>
13117         * subr.el (toplevel): Define `cl-assertion-failed' condition here
13118         because the `assert' macro signals it at runtime.
13120         * emacs-lisp/cl.el (toplevel): Remove definition of
13121         `cl-assertion-failed' condition.
13123 2006-01-30  Nick Roberts  <nickrob@snap.net.nz>
13125         * thumbs.el (thumbs-marked-list): Make buffer-local and
13126         permanent-local.
13127         (thumbs-insert-thumb): Make help-echo non-sticky.
13128         (thumbs-file-alist): Use eolp as check for (non)-image.
13130 2006-01-30  Juanma Barranquero  <lekktu@gmail.com>
13132         * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
13133         (ediff-before-session-group-setup-hooks)
13134         (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
13135         Fix typos in docstrings.
13137         * window.el (bw-dir, bw-eqdir, balance-windows)
13138         (split-window-keep-point): Fix typos in docstrings.
13140         * textmodes/org.el (org-allow-space-in-links, org-closed-string)
13141         (org-quote-string, org-calendar-to-agenda-key)
13142         (org-agenda-sorting-strategy, org-agenda-use-time-grid)
13143         (org-show-following-heading, org-tags-column)
13144         (org-use-tag-inheritance, org, org-allow-space-in-links)
13145         (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
13146         (org-enable-table-editor, org-calc-default-modes)
13147         (org-table-allow-automatic-line-recalculation)
13148         (org-export-html-style, org-export-with-fixed-width)
13149         (org-export-with-sub-superscripts, org-special-keyword)
13150         (org-formula, org-time-grid, org-table-may-need-update)
13151         (org-mode, org-goto-ret, org-goto-left, org-goto-right)
13152         (org-goto-quit, org-get-indentation, org-end-of-item)
13153         (org-move-item-down, org-move-item-up)
13154         (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
13155         (org-remove-occur-highlights, org-read-date, org-goto-calendar)
13156         (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
13157         (org-agenda-log-mode, org-agenda-toggle-diary)
13158         (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
13159         (org-agenda-file-to-end, org-agenda-no-heading-message)
13160         (org-agenda-get-closed, org-format-agenda-item)
13161         (org-cmp-priority, org-cmp-category, org-cmp-time)
13162         (org-agenda-change-all-lines, org-agenda-diary-entry)
13163         (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
13164         (org-link-search, org-camel-to-words, org-open-file)
13165         (org-remember-handler, org-table-convert-region)
13166         (org-table-move-row-down, org-table-move-row-up)
13167         (org-table-copy-region, org-table-wrap-region)
13168         (org-table-toggle-vline-visibility)
13169         (org-table-get-vertical-vector, org-table-modify-formulas)
13170         (org-table-get-specials, org-recalc-commands)
13171         (org-table-rotate-recalc-marks, org-table-eval-formula)
13172         (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
13173         (org-level-color-stars-only, org-insert-heading):
13174         Fix typos in docstrings.
13175         (last-arg): Add defvar.
13177         * makefile.w32-in (WINS): Add erc.
13178         (MH_E_SRC): Update (copied from lisp/Makefile.in).
13180 2006-01-29  Bill Wohler  <wohler@newt.com>
13182         * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
13183         mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
13184         mh-tool-bar.el, mh-xface.el.  Remove mh-customize.el, mh-init.el.
13185         (mh-autoloads): Don't use comments on otherwise empty lines.
13187 2006-01-29  Edward O'Connor  <ted@oconnor.cx>
13189         * emulation/viper.el (viper-major-mode-modifier-list): Add
13190         insert-state and vi-state entries for erc-mode.
13191         (viper-go-away, viper-set-hooks): Add and remove
13192         viper-comint-mode-hook from erc-mode-hook as appropriate.
13194         * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
13196 2006-01-29  Juanma Barranquero  <lekktu@gmail.com>
13198         * bs.el (bs--format-aux): Implement `middle' alignment as
13199         described in the docstring for `bs-attributes-list'.
13200         (bs--get-name): Simplify.  Don't pad the buffer name.
13202 2006-01-27  Agustin Martin  <agustin.martin@hispalinux.es>
13204         * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
13205         English aspell dictionary is installed, use the first entry of
13206         ispell-dictionary-alist-1.
13208 2006-01-27  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
13210         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
13211         Doc fix.
13213 2006-01-27  Michael Albinus  <michael.albinus@gmx.de>
13215         * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
13216         for `process-file', in order to let it work for older Emacsen too.
13218 2006-01-27  Eli Zaretskii  <eliz@gnu.org>
13220         * international/latexenc.el: Add a suitable `coding:' tag.
13221         (latexenc-find-file-coding-system): Undo last change.
13223 2006-01-27  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
13225         * international/latexenc.el (latexenc-find-file-coding-system):
13226         Make sure latexenc-main-file is a regular file and is readable.
13228 2006-01-27  Andre Spiegel  <spiegel@gnu.org>
13230         * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
13231         Pass FILE to vc-user-login-name.
13233         * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
13235 2006-01-27  Nick Roberts  <nickrob@snap.net.nz>
13237         * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
13238         there are no more images to display.
13239         (thumbs-mark, thumbs-unmark): Revert change so that they move to
13240         the next image.
13242 2006-01-26  Richard M. Stallman  <rms@gnu.org>
13244         * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
13246         * wid-edit.el (advertised-widget-backward): New alias.
13247         (widget-keymap): Use advertised-widget-backward for S-TAB.
13249         * tumme.el: Correct the keywords.
13250         (tumme-dir-max-size): Use defvar.
13251         (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
13253         * simple.el (move-beginning-of-line): Take account of fields.
13254         (clone-indirect-buffer-other-window): Take args like
13255         clone-indirect-buffer, and work like it.
13257         * help-fns.el (describe-function): Don't pass `nil' as default.
13259         * files.el (risky-local-variable-p): Follow var aliases.
13261         * subr.el (lazy-completion-table): Doc fix.
13263         * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
13264         global binding of `line'.
13266 2006-01-25  Andre Spiegel  <spiegel@gnu.org>
13268         * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
13269         Tramp.
13271         * vc.el (vc-default-dired-state-info): Pass FILE to
13272         vc-user-login-name.
13273         (vc-default-update-changelog): Don't use vc-user-login-name, we
13274         don't need it here.
13276         * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
13277         no longer necessary.
13279 2006-01-25  Kenichi Handa  <handa@m17n.org>
13281         * international/mule.el (decode-char): Avoid the overhead of
13282         calling utf-lookup-subst-table-for-decode if
13283         utf-translate-cjk-mode is nil.
13284         (encode-char): Avoid the overhead of calling
13285         utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
13286         nil.
13288 2006-01-22  Kenichi Handa  <handa@m17n.org>
13290         * international/mule.el (make-subsidiary-coding-system): Reset
13291         `coding-system-define-form' property of subsidiaries to nil.
13292         Avoid duplicated entry in coding-system-alist.
13293         (make-coding-system): Avoid duplicated entry in
13294         coding-system-alist.
13295         (define-coding-system-alias): Likewise.
13297 2006-01-24  Luc Teirlinck  <teirllm@auburn.edu>
13299         * completion.el: Minor fixes in introductory comment.
13300         (completion-def-wrapper): Fix alist.
13302 2006-01-25  Nick Roberts  <nickrob@snap.net.nz>
13304         * thumbs.el (thumbs-new-image-size): New function.
13305         (thumbs-increment-image-size-element)
13306         (thumbs-decrement-image-size-element, thumbs-increment-image-size)
13307         (thumbs-decrement-image-size): Delete.
13308         (thumbs-resize-image-1): Rename from thumbs-resize-image.  Keep old
13309         temp files and use to resize.
13310         (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
13311         Use increment argument to enlarge/shrink.  Preserve point.
13312         (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
13313         (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
13314         (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
13315         (thumbs-mark, thumbs-unmark): Preserve point.
13316         (thumbs-modify-image): Keep old temp files and use to modify.
13317         Cleanup old temp files at load time.  Preserve point.
13318         (thumbs-view-image-mode-map): Use new command names.
13320 2006-01-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13322         * log-view.el (log-view-minor-wrap): First rev is the one at point.
13324         * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
13325         the nastiest part of the cyclic dependency.
13326         (cal-menu-update): Use dotimes and calendar-increment-month.
13328         * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
13329         (calendar-week-start-day): Add an :initializer.
13330         (calendar-mode-map): Use suppress-keymap, and command remapping.
13331         (describe-calendar-mode): Setup xref-stack info for the back button.
13332         (calendar-star-date): Insert before delete.
13333         (calendar-set-mode-line): Add file-modified info if applicable.
13334         (calendar-increment-month): New function.
13336 2006-01-24  Tobias C. Rittweiler  <tcr@freebits.de>  (tiny change)
13338         * font-lock.el (lisp-font-lock-keywords-2):
13339         Recognize "& keywords" only at word boundaries.
13341 2006-01-24  Nick Roberts  <nickrob@snap.net.nz>
13343         * thumbs.el (thumbs-extra-images): New variable.  Make it buffer-local
13344         and permanent-local.
13345         (thumbs-max-image-number): New variable.
13346         (thumbs-do-thumbs-insertion): Use them.
13347         (thumbs-per-line): Change default to 4.
13348         (thumbs-marked-list): Rename from thumbs-markedL.
13349         (thumbs-cleanup-thumbsdir, thumbs-delete-images)
13350         (thumbs-rename-images): Use -list instead of L for internal variables.
13351         (thumbs-call-convert): Use call-process instead of shell-command.
13352         (thumbs-insert-thumb): Add filename as help-echo to each image.
13353         (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
13354         Give dir to thumbs-show-thumbs-list.
13355         (thumbs-show-thumbs-list): Set default-directory to that of images.
13356         (thumbs-dired-show): Rename from thumbs-dired-show-all.
13357         (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
13358         (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
13359         (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
13361 2006-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13363         * ses.el (ses-read-cell): Provide a default value.
13365 2006-01-23  Juanma Barranquero  <lekktu@gmail.com>
13367         * term/w32-win.el (image-library-alist): Add additional names for
13368         GIF library.
13370 2006-01-23  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
13372         * international/latexenc.el (latexenc-find-file-coding-system):
13373         Add file-regular-p check.
13375 2006-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13377         * simple.el (clone-buffer): Don't show the new buffer in the same
13378         window.
13380 2006-01-23  Juri Linkov  <juri@jurta.org>
13382         * faces.el (link, link-visited): New faces based on default values
13383         of `info-xref' and `info-xref-visited'.
13385         * info.el (info-xref): Inherit from `link'.
13386         (info-xref-visited): Inherit from `link-visited'.
13388         * cus-edit.el (custom-buffer-create-internal): Use widget type
13389         `custom-manual' instead of `info-link' and don't set properties
13390         `button-face' and `mouse-face' explicitly.
13391         (custom-browse-group-tag, custom-browse-variable-tag)
13392         (custom-browse-face-tag): Inherit from widget class
13393         `custom-group-link' instead of `push-button'.
13394         (custom-button-unraised): Inherit from `underline' face.
13395         (custom-link): Inherit from `link' face.  Fix doc and group.
13396         (custom-add-parent-links, custom-group-value-create): Don't set
13397         properties `button-face' and `mouse-face' explicitly for
13398         `custom-group-link' widget.
13399         (custom-group-link): Add properties `button-face' and `mouse-face'
13400         to widget definition.
13401         (custom-field-keymap): New variable.  Put `custom-field-keymap' to
13402         editable-field's :keymap property.
13403         (custom-mode): Fix docstring: substitute keybindings for
13404         `widget-forward' and `widget-backward' from `widget-keymap',
13405         `widget-complete' from `custom-field-keymap', replace old
13406         `Custom-move-and-invoke' with `widget-move-and-invoke'.  Untabify.
13408         * desktop.el (desktop-load-file): Check for `fboundp' before
13409         calling `symbol-function'.
13411         * simple.el (clone-buffer, clone-indirect-buffer)
13412         (clone-indirect-buffer-other-window): Use `read-buffer' instead of
13413         `read-string'.  Fix prompts.
13415         * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
13417 2006-01-23  Nick Roberts  <nickrob@snap.net.nz>
13419         * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
13421 2006-01-22  Luc Teirlinck  <teirllm@auburn.edu>
13423         * startup.el (inhibit-splash-screen, initial-scratch-message):
13424         Doc fixes.
13426 2006-01-22  Michael Albinus  <michael.albinus@gmx.de>
13428         Sync with Tramp 2.0.52.
13430         * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
13431         * net/tramp-vc.el: Add code for unloading Tramp.  See comment before
13432         `tramp-unload-tramp' for checklist.
13434         * net/tramp.el: Require `timer-funcs' instead of `timer' if in
13435         XEmacs.  Contributed by Steve Youngs <steve@sxemacs.org>.
13436         (tramp-unload-file-name-handler-alist)
13437         (tramp-unload-tramp): New defuns.
13438         (tramp-advice-PC-expand-many-files): New defadvice.
13439         (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
13440         removed.
13441         (tramp-handle-expand-file-name): Remove double slash.
13442         (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
13443         It doesn't matter, because it will be converted later on.
13444         (tramp-handle-file-ownership-preserved-p): Rewritten.  The old
13445         implementation was just heuristic.
13446         (tramp-post-connection): Set uid and gid properties.
13447         (tramp-convert-file-attributes): Set file's gid change bit.
13448         (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
13449         (tramp-handle-expand-file-name): Use "~root" for tilde expansion
13450         in case of su(do)? methods.  The home directory of the local user
13451         will be taken else.
13452         (tramp-open-connection-telnet)
13453         (tramp-open-connection-rsh, tramp-open-connection-su)
13454         (tramp-open-connection-multi): Set PS1 to "$ ".  Otherwise, a
13455         local shell prompt could hurt.  Reported by Romain Francoise
13456         <romain@orebokech.com>.
13457         (tramp-let-maybe): Add `edebug-form-spec' property.
13458         (tramp-handle-expand-file-name): Bind `default-directory' locally
13459         to "/" in order to avoid problems with UNC shares or Cygwin
13460         mounts.
13461         (tramp-md5-function): Fix typo in error message.
13463         * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
13465         * net/tramp-util.el (top): Apply `ignore' instead of `identity'
13466         for byte-compiler pacification.
13468 2006-01-22  Andre Spiegel  <spiegel@gnu.org>
13470         * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
13471         ID-FORMAT `string'.  This allows us to get rid of
13472         `vc-user-login-name UID'.
13474         * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
13476 2006-01-22  John Paul Wallington  <jpw@pobox.com>
13478         * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
13480 2006-01-21  Martin Rudalics  <rudalics@gmx.at>
13482         * emacs-lisp/find-func.el (find-definition-noselect)
13483         (find-variable-noselect): Search variables in C source code too.
13484         (find-function-C-source, find-function-noselect, find-function)
13485         (find-function-other-frame, find-variable-noselect, find-variable)
13486         (find-variable-other-frame, find-variable-at-point):
13487         Fix docstrings.
13489 2006-01-21  Francesco Potort\e,Al\e(B  <pot@gnu.org>
13491         * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
13493 2006-01-21  Agustin Martin  <agustin.martin@hispalinux.es>
13495         * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
13496         Default to disabling the "Save affix" question.
13498 2006-01-21  Marien Zwart  <marienz@gentoo.org>  (tiny change)
13500         * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
13501         the first arg to run-python.
13503 2006-01-21  Eli Zaretskii  <eliz@gnu.org>
13505         * startup.el (command-line-1): Handle --no-desktop if desktop.el
13506         is not loaded.
13508 2006-01-20  Jay Belanger  <belanger@truman.edu>
13510         * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
13511         limit is 0.
13513         * calc/calc-arith.el (math-add-symb-fancy): Check the length of
13514         the correct variable.
13516 2006-01-20  Carsten Dominik  <dominik@science.uva.nl>
13518         * textmodes/org.el (org-open-at-point): Fixed bug with matching a
13519         link.  Fixed buggy argument sequence in call to `org-view-tags'.
13520         (org-compile-prefix-format): Set `org-prefix-has-tag'.
13521         (org-prefix-has-tag): New variable.
13522         (org-format-agenda-item): Remove tags from headline if
13523         appropriate.
13524         (org-agenda-remove-tags-when-in-prefix): New option.
13525         (org-get-tags-at): New function.
13527 2006-01-20  Nick Roberts  <nickrob@snap.net.nz>
13529         * thumbs.el (thumbs-buffer): New variable.  Make it buffer local.
13530         (thumbs-find-image): Move image name and number from buffer name
13531         to mode name.  Set thumbs-buffer.  Preserve point so that large
13532         images remain visible.
13533         (thumbs-file-alist): Construct list in thumbs-buffer and reverse
13534         order.
13535         (thumbs-show-image-num): Get image from thumbs-file-alist.  Set
13536         mode name.
13537         (thumbs-next-image, thumbs-previous-image): Make them work.
13539 2006-01-19  Luc Teirlinck  <teirllm@auburn.edu>
13541         * cus-edit.el (custom-buffer-create-internal): State in the text above
13542         the whole buffer buttons that they do not operate on hidden items.
13543         (custom-face-menu): Use `custom-face-save' instead of
13544         `custom-face-save-command'.
13545         (custom-face-save-command): Make it an alias for `custom-face-save'
13546         and declare it obsolete.
13547         (custom-face-save): Doc fix.
13549         * dired.el (dired-no-confirm): Add quote.
13550         (dired-subdir-alist-pre-R): Add quote in
13551         `make-variable-buffer-local' form and remove unbalanced parenthesis.
13553 2006-01-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13555         * textmodes/table.el (table-mode-indicator): Typo in last change.
13557 2006-01-19  Richard M. Stallman  <rms@gnu.org>
13559         * outline.el (hide-leaves): Don't call outline-end-of-heading.
13560         Fixes bug reported in Nov 2005.
13562         * isearch.el (isearch-forward): Doc fix.
13564         * dired.el (dired-move-to-filename-regexp): Define as alias.
13565         (dired-no-confirm): Use defcustom.
13566         (dired-subdir-alist-pre-R): Put defvar at top level.
13568         * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
13570         * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
13571         Mark as risky.
13573         * simple.el (set-mark-command): Doc fix.
13574         (clone-indirect-buffer-other-window):
13575         Read arg like clone-indirect-buffer.
13576         (move-beginning-of-line): Skip invisible newlines.
13578 2006-01-19  Masatake YAMATO  <jet@gyve.org>
13580         * progmodes/cpp.el (cpp-edit-load): Make the order of
13581         listed conditions in a base C code buffer and its associate
13582         CPP Edit buffer the same.
13584 2006-01-19  Kenichi Handa  <handa@m17n.org>
13586         * mail/rmail.el (rmail-enable-mime): Docstring fixed.
13587         (rmail-mime-feature): Likewise.
13588         (rmail-require-mime-maybe): Use display-warning to show a warning
13589         message.
13591         * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
13592         (find-auto-coding): Use auto-coding-regexp-alist-lookup.
13594 2006-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13596         * array.el: Move defvars out of eval-when-compile.
13597         (array-make-template): Replace undeclared global var with a local one.
13598         (array-mode): Inline initialization functions.
13599         (array-init-local-variables, array-init-max-row)
13600         (array-init-max-column, array-init-columns-per-line)
13601         (array-init-field-width, array-init-rows-numbered)
13602         (array-init-line-length, array-init-lines-per-row): Remove.
13604         * play/doctor.el: Move defvars out of eval-when-compile.  Use dolist.
13605         (doc-mode-map): Define explicitly.
13606         (doctor-txtype): Use mapc.
13608         * textmodes/table.el: Move defvars out of eval-when-compile.
13609         Remove harmful code meant to avoid byte-compiler warnings.
13610         (table-fixed-mode-indicator): Remove.  Use a more complex mode-line
13611         specification that checks table-fixed-width-mode directly.
13612         (table-recognize-region, table-recognize-cell):
13613         Use restore-buffer-modified-p.
13614         (table-fixed-width-mode): Remove code that refreshes
13615         table-fixed-mode-indicator.
13616         (*table--cell-describe-bindings, *table--cell-describe-mode):
13617         Avoid obsolete name print-help-return-message.
13618         (table--test-cell-list): Don't use replace-regexp from elisp.
13619         (table--point-entered-cell-function, table--point-left-cell-function):
13620         Don't set table-fixed-mode-indicator, use force-mode-line-update.
13622         * textmodes/org.el: Move defvars out of eval-when-compile.  Move code
13623         that was after the end of file.  Use buffer-file-name variable.
13624         (org-timestamp-change): Use with-current-buffer.
13625         (org-todo-list): Don't unnecessarily define a new buffer-local var.
13626         (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
13627         `file'.
13629         * progmodes/fortran.el: Move defvars out of eval-when-compile.
13630         (fortran-break-line): Remove unused var `opoint'.
13631         (fortran-abbrev-start): Obey help-event-list.
13633 2006-01-18  Jesper Harder  <harder@phys.au.dk>
13635         * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
13637 2006-01-18  Masatake YAMATO  <jet@gyve.org>
13639         * progmodes/make-mode.el (makefile-imake-mode): New mode
13640         derived from makefile-mode.
13641         (makefile-imake-mode-syntax-table): New syntax table
13642         derived from makefile-mode-syntax-table.
13643         (makefile-mode): Write about makefile-imake-mode in doc string.
13644         (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
13645         (makefile-imake-font-lock-keywords): New font lock keywords.
13647         * files.el (auto-mode-alist): Add Imakefile.
13649 2006-01-17  Agustin Martin  <agustin.martin@hispalinux.es>
13651         * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
13652         loading the file rather than when turning on flyspell-mode.
13654 2006-01-16  Luc Teirlinck  <teirllm@auburn.edu>
13656         * cus-edit.el (customize-rogue): Minor doc fix.
13658 2006-01-17  Juri Linkov  <juri@jurta.org>
13660         * dired-aux.el (dired-diff): Use dired-dwim-target-directory
13661         instead of the file at the mark as default if the file at the mark
13662         is the same as the file at point or if dired-dwim-target-directory
13663         is not the same as the current directory and the mark is not active.
13665         * log-view.el (log-view-minor-wrap): Use the same logic to get
13666         revisions as `log-view-diff'.
13668         * info.el (Info-revert-find-node): Check for Info-current-file
13669         before preserving new-history.
13671         * man.el (Man-heading-regexp): Add `/'.
13673         * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
13674         (html-mode): Set `sentence-end-base' instead of `sentence-end'.
13676 2006-01-16  Juri Linkov  <juri@jurta.org>
13678         * faces.el (mode-line-faces): New defgroup.
13679         (mode-line-highlight): Move definition after new defgroup.
13680         (mode-line, mode-line-inactive, mode-line-highlight):
13681         Replace :group `modeline' with `mode-line-faces'.
13682         (mode-line-buffer-id): New face.
13683         (modeline-buffer-id): New face alias.
13684         (vertical-border): Remove :group `modeline'.
13686         * bindings.el (propertized-buffer-identification): Use face
13687         `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
13688         (mode-line-next-buffer, mode-line-previous-buffer): New functions.
13689         (mode-line-buffer-identification-keymap): For mouse-1 replace
13690         `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
13691         Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
13692         mouse-3.
13694         * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
13695         Buffer-menu-buffer.  Doc fix.
13696         (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
13697         (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
13698         `Buffer-menu-buffer'.
13700         * info.el (Info-mode-line-node-keymap): New defvar.
13701         (Info-set-mode-line): Use `stringp' to check Info-current-file.
13702         Propertize Info-current-node with `mode-line-buffer-id' and
13703         `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
13705         * time.el (display-time-mail-face): Replace :group `faces' with
13706         `mode-line-faces'.
13708 2006-01-16  Kenichi Handa  <handa@m17n.org>
13710         * international/code-pages.el: Add autoload cookies for cp125[0345678].
13712         * language/european.el (cp1252): New alias for windows-1252.
13714         * international/mule.el (autoload-coding-system): Prepare for EOL
13715         variants.
13717 2006-01-15  Dan Nicolaescu  <dann@ics.uci.edu>
13719         * term.el (term-raw-map): Add mapping for insert.
13720         (term-send-insert): New.
13721         (term-mode): Make variables local here instead of doing it in
13722         `term-emulate-terminal'.
13723         (term-emulate-terminal): Delete incorrect optimization for cr+lf.
13724         Scroll reverse needs to take into account the scroll region.
13725         Saving and restoring the cursor should save the color attributes too.
13726         (term-reset-terminal): Reset the scroll region.
13727         (term-handle-ansi-escape): Cursor up and down should take into
13728         account the scroll region.
13729         (term-set-scroll-region): Rename from `term-scroll-region'.
13730         Move to 0,0 after setting the region.
13731         (term-handle-scroll): Handle scroll up.
13732         (term-down): Fix off by one error.
13733         (term-delete-lines): Do not delete outside the scroll region.
13734         (term-insert-lines): Take into account the scroll region.
13736 2006-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13738         * textmodes/ispell.el (ispell-internal-change-dictionary)
13739         (ispell-change-dictionary): Undo most of last change of 2006-01-13.
13740         (start, end): Move declaration outside of eval-when-compile.
13742         * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
13743         (flyspell-mode-on): Use it.
13745         * textmodes/ispell.el (ispell-kill-ispell): Run new hook
13746         ispell-kill-ispell-hook.
13748 2006-01-14  Luc Teirlinck  <teirllm@auburn.edu>
13750         * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
13751         (Custom-reset-saved): Do not ask for confirmation in single option
13752         buffers.
13754 2006-01-13  Richard M. Stallman  <rms@gnu.org>
13756         * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
13758 2006-01-13  Romain Francoise  <romain@orebokech.com>
13760         * add-log.el (add-change-log-entry, change-log-merge):
13761         Conditionally use `hard-newline'.
13763 2006-01-13  Martin Rudalics  <rudalics@gmx.at>
13765         * wid-edit.el (widget-field-end): If the overlay is no longer
13766         associated with a buffer, behave as if the overlay didn't exist.
13768         * cus-edit.el (custom-add-see-also, custom-add-parent-links):
13769         Make sure the links use the `custom-link' face.
13771 2006-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13773         * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
13774         (ld-script-mode): Don't set indent-line-function since we don't
13775         have one.
13777 2006-01-13  Carsten Dominik  <dominik@science.uva.nl>
13779         * textmodes/org.el (org-open-file): Use mailcap for selecting an
13780         application.
13781         (org-file-apps-defaults-gnu): Use mailcap as the default for
13782         selecting an application on a UNIX system.
13783         (org-agenda-show-tags): New command.
13784         (org-table-insert-hline): Keep cursor in current table line.
13785         (org-table-convert): Offset effect of modifying
13786         `org-table-insert-hline'.
13787         (org-format-agenda-item): New optional argument TAG.
13788         (org-compile-prefix-format): Handle %T format for the tag.
13789         (org-expand-wide-chars): New function.
13790         (org-table-insert-row, org-table-insert-hline):
13791         Use `org-expand-wide-chars'.
13792         (org-open-file): Fix bug in program launch.
13793         (org-get-time-of-day): Fix bug with times before 1am.
13794         (org-agenda-menu): Add tags commands.
13796 2006-01-13  Agustin Martin  <agustin.martin@hispalinux.es>
13798         * textmodes/ispell.el (ispell-init-process): Include the used
13799         dictionary in ispell process start message.
13800         (ispell-internal-change-dictionary): When flyspell-mode is active
13801         and dictionary is changed, make sure ispell process is restarted
13802         and flyspell word cache cleared out for the current buffer.
13803         (ispell-change-dictionary): Make sure flyspell word cache is
13804         cleared out in all buffers with active flyspell mode when
13805         dictionary is globally changed.
13806         Call ispell-internal-change-dictionary after dictionary change.
13808 2006-01-13  Eli Zaretskii  <eliz@gnu.org>
13810         * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
13812         * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
13813         (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
13814         years.  Fix small differences wrt Makefile.in.
13815         (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
13816         Makefile.in does.
13818 2006-01-12  Bill Wohler  <wohler@newt.com>
13820         * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
13821         mh-search.el.
13823 2006-01-12  Masatake YAMATO  <jet@gyve.org>
13825         * progmodes/ld-script.el: Update copyright year.
13827 2006-01-12  Chong Yidong  <cyd@stupidchicken.com>
13829         * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
13830         Don't add widget if setting undefined.
13832 2006-01-12  John Paul Wallington  <jpw@pobox.com>
13834         * help-fns.el (describe-variable): Remove newlines from void
13835         variable output.
13837 2006-01-13  Nick Roberts  <nickrob@snap.net.nz>
13839         * wdired.el (wdired-mode-map): Add help echo for
13840         wdired-abort-changes.
13842         * man.el (Man-file-name-regexp): Adjust for a list of files.
13844 2006-01-12  Masatake YAMATO  <jet@gyve.org>
13846         * progmodes/ld-script.el (auto-mode-alist): Support
13847         suffix conventions used in netbsd and eCos.
13849 2006-01-11  Luc Teirlinck  <teirllm@auburn.edu>
13851         * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
13852         (custom-variable-menu, custom-face-menu, custom-group-menu)
13853         (Custom-mode-menu): Change names of menu items.  (As discussed on
13854         emacs-devel.)
13855         (custom-face-menu): Add "Undo Edits" item.
13857         * startup.el (init-file-user): defcustom -> defvar.
13859         * tooltip.el (tooltip-mode): Doc fix.
13861 2006-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13863         * reveal.el (reveal-post-command): window-buffer signals an error on
13864         dead windows rather than returning nil.
13865         (reveal-open-new-overlays): An overlay might die while we open others.
13867 2006-01-11  Bill Wohler  <wohler@newt.com>
13869         * cus-dep.el (generated-custom-dependencies-file): Fix typo and
13870         phrasing in docstring.
13872         * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
13873         can give some systems gas.  Add new file mh-buffers.el.
13875 2006-01-06  Masatake YAMATO  <jet@gyve.org>
13877         * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
13878         C preprocessor forward ported from GNU Emacs 21.2.
13880         * progmodes/asm-mode.el (asm-font-lock-keywords):
13881         Use `cpp-font-lock-keywords'.
13883         * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
13885         * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
13886         of $ for "\\.ld[s]?".
13888 2006-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13890         * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
13891         (tcl-indent-line): Return `noindent' if inside a string.
13893         * progmodes/flymake.el (flymake-split-string): Remove more than one
13894         empty string at beg/end of the result.
13895         (flymake-find-buildfile, flymake-find-possible-master-files):
13896         Use expand-file-name.
13897         (flymake-fix-file-name): Don't replace \ with / and don't remove ./
13898         since expand-file-name does it for us.  Use directory-file-name.
13899         (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
13900         (flymake-ler-get-type, flymake-ler-get-text)
13901         (flymake-ler-make-ler): Remove.  Replace by defstruct.  Update callers.
13902         (flymake-current-line-no): Remove spurious interactive spec.
13903         (flymake-delete-temp-directory): Remove unused var `slash-pos'.
13904         (flymake-check-include): Remove arg inc-path merged into inc-name.
13905         (flymake-check-patch-master-file-buffer): Fit in 80 columns.
13906         Arg regexp-list replaced by a simple regexp.
13907         (flymake-master-make-header-init, flymake-master-tex-init):
13908         Correspondingly replace regexp-list with a regexp.  Fix regexp.
13910 2006-01-10  Simon Josefsson  <jas@extundo.com>
13912         * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
13913         describing AUTH PLAIN fix.
13915 2006-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
13917         * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
13918         (report-emacs-bug): Don't record initial prompt text.
13919         Instead, add text properties to prompting text.
13920         (report-emacs-bug-hook): Delete prompting text.
13922 2006-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13924         * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
13925         `dirs'.  Adjust callers.
13927 2006-01-09  John Paul Wallington  <jpw@gnu.org>
13929         * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
13931 2006-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13933         * reveal.el (reveal-open-new-overlays): New extracted fun.
13934         (reveal-close-old-overlays): Idem.  Check overlays's liveness before
13935         using them.  Simplify the code.
13936         (reveal-post-command): Use them.  Fix up obsolete windows in
13937         reveal-open-spots.
13939         * progmodes/flymake.el: Use `require' rather than autoload for
13940         XEmacs's overlays.
13941         (flymake-get-common-file-prefix, flymake-build-relative-filename):
13942         Delete.  Use file-relative-name instead.
13943         (flymake-get-syntax-check-program-args, flymake-perl-init):
13944         Simplify the resulting code.
13946         * log-view.el (log-view-file-re, log-view-message-re): Add support
13947         for DaRCS output.
13949 2006-01-09  Alex Schroeder  <alex@gnu.org>
13951         * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
13952         identifiers sometimes added in square brackets at the beginning of
13953         subject lines.
13955 2006-01-07  Richard M. Stallman  <rms@gnu.org>
13957         * cus-edit.el (Custom-set, Custom-save): Doc fix.
13958         (Custom-reset-current, Custom-reset-saved): Change question text.
13959         (Custom-reset-standard): Likewise.
13960         (custom-variable-reset-saved): Doc fix.
13962 2006-01-07  Eli Zaretskii  <eliz@gnu.org>
13964         * startup.el (init-file-user): Doc fix.
13966 2006-01-07  Alex Schroeder  <alex@gnu.org>
13968         * mail/rmail.el (rmail-current-subject): New function.
13969         (rmail-current-subject-regexp): New function.
13970         (rmail-next-same-subject): Use it.
13972         * mail/rmailsum.el (rmail-summary-by-topic):
13973         Use rmail-current-subject and rmail-current-subject-regexp.
13974         (rmail-summary-next-same-subject): Ditto.
13976         * net/rcirc.el (rcirc-send-input): No longer check whether the
13977         process is open, since not all commands need an open process.
13978         (rcirc-send-string): Check whether the process is open before
13979         sending anything.
13980         (rcirc-ignore-list): New option.
13981         (rcirc-ignore-list-automatic): New variable.
13982         (rcirc-print): Take rcirc-ignore-list into account.
13983         (rcirc-cmd-ignore): New command.
13984         (rcirc-ignore-update-automatic): New function.
13985         (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
13986         list if ignored nicks.
13987         (rcirc-handler-NICK): Ditto, and also ignore the new nick.
13989 2006-01-06  David Reitter  <david.reitter@gmail.com>
13991         * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
13992         reflect the address to which the report will be sent.
13994 2006-01-06  Eli Zaretskii  <eliz@gnu.org>
13996         * progmodes/ld-script.el (auto-mode-alist): Recognize linker
13997         scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
13999 2006-01-01  Michael Ernst  <mernst@alum.mit.edu>  (tiny changes)
14001         * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
14003         * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
14004         the doc string: "functoin" => "function".
14005         * ldefs-boot.el: Likewise.
14007         * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
14008         message text: "Duplicat" => "Duplicate".
14010 2006-01-06  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
14012         * files.el (basic-save-buffer-2): If backing-up failed, reset
14013         buffer-backed-up to nil.
14015 2006-01-06  Nick Roberts  <nickrob@snap.net.nz>
14017         * progmodes/gud.el (gdb-script-skip-to-head)
14018         (gdb-script-calculate-indentation): Indent for breakpoint command
14019         lists also.
14021 2006-01-05  Bill Wohler  <wohler@newt.com>
14023         * Makefile.in (compile-always): Add mh-autoloads dependency.
14024         (bootstrap): Remove mh-autoloads dependency, as compile dependency
14025         provides it.
14026         (updates): Remove mh-autoloads dependency, since it probably has
14027         already run recently (via recompile).
14029 2006-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14031         * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
14032         argument `force' to disable the flyspell-last-buffer optimization.
14033         (flyspell-mode-on): Use it.
14035         * progmodes/flymake.el (flymake-get-cleanup-function): Default to
14036         flymake-simple-cleanup.
14037         (flymake-allowed-file-name-masks): Use this new default.
14038         All the functions are now called in the right buffer rather than
14039         passing the buffer as argument.
14040         (flymake-process-sentinel): Switch to buffer before calling cleanup.
14041         (flymake-parse-err-lines): Remove redundant buffer arg.
14042         (flymake-get-program-dir): Comment out unused function.
14043         (flymake-start-syntax-check, flymake-start-syntax-check-process):
14044         Remove redundant buffer argument.
14045         (flymake-get-real-file-name, flymake-simple-java-cleanup)
14046         (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
14048 2006-01-05  Richard M. Stallman  <rms@gnu.org>
14050         * info.el (Info-find-node): Don't record previous node if have none.
14051         (info): Go to directory only if history is empty.
14053         * simple.el (mark): Doc fix.
14055 2006-01-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
14057         * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
14058         already of desired type.
14059         (mac-ae-list): Coerce parameter to "list" type.
14060         (mac-dispatch-apple-event): Replace cadr part of event with a
14061         dummy position so that event-start returns it.
14063 2006-01-05  Carsten Dominik  <dominik@science.uva.nl>
14065         * textmodes/org.el (org-end-of-subtree): New function.
14066         (org-cycle, org-subtree-end-visible-p, org-scan-tags):
14067         Use `org-end-of-subtree'.
14068         (org-agenda, org-agenda-convert-date): Protect calls to
14069         `fit-window-to-buffer'.
14070         (org-tags-view): Force matching of sublevels when doing a
14071         todo-only search.  Define the correct redo command, including the
14072         arguments.
14073         (org-agenda-redo): Display message.
14074         (org-check-for-org-mode): New function.
14075         (org-agenda-type): New variable.
14076         (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
14077         Set `org-agenda-type'.
14078         (org-agenda-check-type): New function.
14079         (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
14080         (org-agenda-week-view, org-agenda-day-view)
14081         (org-agenda-next-date-line, org-agenda-previous-date-line)
14082         (org-agenda-log-mode, org-agenda-toggle-diary)
14083         (org-agenda-toggle-time-grid, org-agenda-date-later)
14084         (org-agenda-date-prompt, org-agenda-diary-entry)
14085         (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
14086         (org-agenda-convert-date, org-agenda-menu):
14087         Use `org-agenda-check-type'.
14088         (org-make-overlay, org-delete-overlay)
14089         (org-detatch-overlay, org-move-overlay, org-overlay-put):
14090         New compatibility functions.
14091         (org-calendar-select-mouse): New command.
14093 2006-01-04  Chong Yidong  <cyd@stupidchicken.com>
14095         * cus-edit.el (Custom-reset-current, Custom-reset-saved)
14096         (Custom-reset-standard): Fix y-or-n-p messages.
14097         (custom-link): New face for links.
14098         (custom-buffer-create-internal, custom-manual): Use it.
14099         (custom-face-save): Push to theme-face before setting face spec.
14101         * wid-edit.el (widget-default-mouse-face-get): New function.
14102         (widget-specify-button): Handle mouse-face like button-face.
14104         * custom.el (load-theme): Clear old theme settings if reloading.
14106 2006-01-03  Luc Teirlinck  <teirllm@auburn.edu>
14108         * cus-edit.el (custom-buffer-create-internal): Move whole buffer
14109         "Erase Customization" button back to same position it occupies in
14110         the individual State menus.
14112 2006-01-04  Kim F. Storm  <storm@cua.dk>
14114         * wid-edit.el (key-sequence): Rework widget to read key binding
14115         using `kbd' syntax.  Use C-q to insert literal key, event, or code.
14116         (widget-key-sequence-default-value): Default value for empty sequence.
14117         (widget-key-sequence-map): New map for reading key binding.  Bind C-q.
14118         (widget-key-sequence-read-event): New command for C-q.
14119         (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
14120         (widget-key-sequence-value-to-external): New functions.
14122 2006-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14124         * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
14125         Use expand-file-name.
14126         (flymake-delete-temp-directory): Use expand-file-name,
14127         file-name-directory, and directory-file-name.
14128         (flymake-strrchr): Delete.
14129         (flymake-start-syntax-check): Don't pass the redundant buffer argument
14130         to the init-f function.
14131         (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
14132         (flymake-init-find-buildfile-dir)
14133         (flymake-init-create-temp-source-and-master-buffer-copy)
14134         (flymake-simple-make-init-impl, flymake-simple-make-init)
14135         (flymake-master-make-init, flymake-master-make-header-init)
14136         (flymake-simple-make-java-init, flymake-simple-ant-java-init)
14137         (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
14138         (flymake-xml-init): Remove corresponding redundant buffer argument.
14139         (flymake-allowed-file-name-masks): Remove last elems that are equal to
14140         the default anyway.  Clean up regexps.
14142         * progmodes/flymake.el (flymake-temp-source-file-name)
14143         (flymake-master-file-name, flymake-temp-master-file-name)
14144         (flymake-base-dir): New buffer-local vars.
14145         (flymake-buffer-data, flymake-get-buffer-value)
14146         (flymake-set-buffer-value): Replace those hash-tables by the new
14147         buffer-local vars.  Update callers.
14149         * progmodes/flymake.el (flymake-check-start-time)
14150         (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
14151         (flymake-last-change-time, flymake-new-err-info, flymake-timer):
14152         Move definition, so we can remove redundant earlier declaration.
14153         (flymake-replace-regexp-in-string, flymake-split-string)
14154         (flymake-get-temp-dir): Use defalias.
14155         (flymake-popup-menu): Remove `pos' argument.  Use posn-at-point.
14156         (flymake-xemacs-window-edges): Remove unused function.
14157         (flymake-get-point-pixel-pos): Move.
14158         (flymake-pid-to-names, flymake-reg-names)
14159         (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
14160         Replace by a simple list flymake-processes and by process-buffer.
14161         Update callers.  Other than simplify the code, it uses buffers rather
14162         than buffer-names so it doesn't get confused by uniquify.
14163         (flymake-buffer-data): The global value should just be nil.
14165         * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
14166         Optimize the body of a defalias like any other code.
14168         * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
14169         Make sure we've setup font-lock's vars.  It may influence which
14170         function we then call.
14171         (font-lock-default-fontify-buffer): Don't bother calling set-defaults
14172         here since it's too late anyway.
14174 2006-01-03  Romain Francoise  <romain@orebokech.com>
14176         * startup.el (fancy-splash-tail, normal-splash-screen):
14177         Update copyright year.
14179 2006-01-02  J.D. Smith  <jdsmith@as.arizona.edu>
14181         * mouse.el (mouse-drag-track): Rename, from
14182         `mouse-drag-region-1'.  Includes optional argument required to
14183         enable post-drag event processing (e.g. delete region keys).
14184         Can be used without this argument to track a mouse region and operate
14185         on it as soon as the drag completes.
14186         (mouse-drag-region): Use `mouse-drag-track'.
14188 2006-01-02  Chong Yidong  <cyd@stupidchicken.com>
14190         * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
14191         Move to `custom-buffer' group.
14193         * cus-theme.el: Rewrite the Custom New Theme Mode interface.
14194         (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
14195         (custom-theme-insert-face-marker, custom-theme-variable-menu)
14196         (custom-theme-face-menu): New variables.
14197         (custom-theme-add-variable, custom-theme-variable-action)
14198         (custom-variable-reset-theme, custom-theme-delete-variable)
14199         (custom-face-reset-theme, custom-theme-face-action)
14200         (custom-theme-delete-face, custom-theme-merge-theme)
14201         (custom-theme-add-face, custom-theme-visit-theme): New functions.
14203 2006-01-01  Chong Yidong  <cyd@stupidchicken.com>
14205         * custom.el: Move Custom Themes commentary to start of theme code.
14206         (custom-known-themes): Rename `standard' theme to `changed'.
14207         (custom-push-theme): Caller no longer specifies what theme to use
14208         when doing `reset'---the setting is simply removed from the theme.
14209         Delete MODE from `theme-value' and `theme-settings' properties.
14210         (custom-declare-theme): Ignore &rest args since we don't use them.
14212         (custom-loaded-themes): Delete variable.
14213         (custom-theme-load-themes, custom-theme-loaded-p)
14214         (custom-theme-value): Delete functions.
14216         (custom-declare-theme): Signal error on invalid theme names.
14217         (provide-theme): custom-loaded-themes was deleted.
14218         (load-theme): Load the file unconditionally.
14219         (enable-theme): Call `load-theme' if theme is undefined.
14220         (custom-enabled-themes): Only update value for successful loads.
14221         (disable-theme): Complete from enabled themes when interactive.
14222         (custom-variable-theme-value): Calculate theme value directly.
14224         (custom-theme-reset-variables, custom-reset-variables): Mark as
14225         XEmacs compatibility functions.  We don't actually use these.
14227         * cus-edit.el (custom-variable-state-set):
14228         Use custom-variable-theme-value instead of custom-theme-value.
14229         (custom-face-state-set): Rename `standard' theme to `changed'.
14230         (custom-save-variables, custom-save-faces): Delete unneeded
14231         references to custom-reset-variables.
14232         (custom-save-resets): Delete function.
14233         (custom-save-variables, custom-save-faces): MODE argument deleted.
14234         (custom-save-variables, custom-save-faces): Ignore theme values.
14236         * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
14237         compatibility function.
14239 2006-01-01  Richard M. Stallman  <rms@gnu.org>
14241         * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
14242         (Custom-reset-current, Custom-reset-saved): Likewise.
14243         (Custom-reset-standard): Show message if aborted.
14244         (custom-mode): Doc fix, describing those commands.
14246         * mouse.el (mouse-drag-region-1): When following link via mouse-2,
14247         put on event-kind property.
14249 2005-12-31  Chong Yidong  <cyd@stupidchicken.com>
14251         * custom.el (provide-theme): Ban `user' theme name.
14252         (custom-enabling-themes): New variable.
14253         (enable-theme): Don't enable user if custom-enabling-themes is t.
14254         (custom-enabled-themes): Make it a defcustom.
14255         (custom-theme-recalc-face): No-op if face is undefined.
14257         * cus-edit.el (custom-button-mouse): New variable.
14258         (custom-button-mouse): New face.
14259         (custom-raised-buttons, custom-mode): Use it.
14261         * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
14263 2005-12-31  Eli Zaretskii  <eliz@gnu.org>
14265         * progmodes/gud.el (gud-display-line): Support hl-line in the
14266         source buffer.
14268 2005-12-31  Lennart Borgman  <lennart.borgman.073@student.lu.se>  (tiny change)
14270         * mouse.el (mouse-drag-window-above): Verify that the found window
14271         overlaps with the given window in the horizontal dimension.
14273 2005-12-31  Eli Zaretskii  <eliz@gnu.org>
14275         * Makefile.in (cvs-update): New target.
14277         * makefile.w32-in (cvs-update): Ditto.
14279 2005-12-30  Chong Yidong  <cyd@stupidchicken.com>
14281         * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
14282         (custom-new-theme-mode-map): New variable.
14284 2005-12-30  Richard M. Stallman  <rms@gnu.org>
14286         * custom.el (custom-load-themes): Function deleted.
14288         * cus-edit.el (custom-save-loaded-themes): Function deleted.
14289         (custom-save-variables): Don't delete or add custom-load-themes call.
14291 2005-12-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14293         * cus-start.el: Add `visible-cursor'.
14295         * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
14296         (flymake-parse-output-and-residual): Remove `source-buffer' argument.
14297         (flymake-process-filter): Switch to buffer before calling it instead.
14298         (flymake-post-syntax-check, flymake-highlight-err-lines)
14299         (flymake-delete-own-overlays, flymake-parse-err-lines)
14300         (flymake-start-syntax-check, flymake-start-syntax-check-process)
14301         (flymake-count-lines, flymake-parse-residual):
14302         Remove constant buffer argument.
14303         (flymake-start-syntax-check-for-current-buffer): Remove.
14304         Update callers to use flymake-start-syntax-check instead.
14305         (flymake-display-err-menu-for-current-line):
14306         Remove unused var `mouse-pos'.
14307         (flymake-restore-formatting): Comment out unused function.
14308         (flymake-report-status, flymake-report-fatal-status): Remove buffer
14309         argument, use current-buffer instead.  Update callers.
14311 2005-12-30  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14313         * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
14314         buffer-local because choose-completion-delete-max-match requires
14315         that we set completion-ignore-case (i.e., binding via let is not
14316         sufficient).
14317         (bibtex-complete): Always set completion-ignore-case and
14318         choose-completion-string-functions.  The latter is needed because
14319         choose-completion-string-functions keeps its value if we quit the
14320         *Completions* buffer without requesting a completion.
14322 2005-12-30  Andreas Schwab  <schwab@suse.de>
14324         * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
14326 2005-12-30  Eli Zaretskii  <eliz@gnu.org>
14328         * jit-lock.el (jit-lock-chunk-size): Doc fix.
14330 2005-12-30  Juri Linkov  <juri@jurta.org>
14332         * locate.el (locate-fcodes-file, locate-header-face)
14333         * progmodes/delphi.el (delphi-other-face)
14334         * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
14336         * paren.el (show-paren-match, show-paren-mismatch): Use existing
14337         group `paren-showing-faces'.
14339         * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
14340         (goto-address): Fix docstring.
14342         * net/webjump.el (webjump-sample-sites): Update URLs.
14344         * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
14346         * subr.el (cancel-change-group): Add listp around pending-undo-list.
14348 2005-12-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14350         * font-lock.el (font-lock-compile-keywords): Signal an error when
14351         font-lock-set-defaults hasn't been called.
14353 2005-12-29  Luc Teirlinck  <teirllm@auburn.edu>
14355         * subr.el (noreturn, 1value): Doc fixes.
14357 2005-12-29  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14359         * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
14360         that assoc-string returns nil.
14362 2005-12-29  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14364         * textmodes/bibtex.el (bibtex-entry-type-whitespace)
14365         (bibtex-entry-type-str, bibtex-empty-field-re)
14366         (bibtex-search-backward-string, bibtex-preamble-prefix)
14367         (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
14368         (bibtex-any-valid-entry-type): New variable.
14369         (bibtex-parse-field-name): Simplify.
14370         (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
14371         (bibtex-preamble-prefix): Include left delimiter.
14372         (bibtex-search-forward-field, bibtex-search-backward-field):
14373         Allow unbounded search past entry boundaries (required by bibtex-pop).
14374         (bibtex-text-in-field-bounds): Use push.
14375         (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
14376         (bibtex-parse-preamble, bibtex-valid-entry)
14377         (bibtex-beginning-first-field): New functions.
14378         (bibtex-skip-to-valid-entry): Use bibtex-valid-entry.  Fix regexp.
14379         (bibtex-map-entries): Fix docstring.
14380         (bibtex-flash-head): New arg prompt.  Simplify.
14381         (bibtex-enclosing-field): Include code of bibtex-inside-field.
14382         (bibtex-insert-kill): Simplify.  Always insert text past the
14383         current field or entry.
14384         (bibtex-format-entry): Use bibtex-parse-field.
14385         (bibtex-pop): Use bibtex-beginning-of-entry and
14386         bibtex-end-of-entry to initiate the search.  Insert empty field if
14387         we found ourselves.
14388         (bibtex-print-help-message): New args field and comma.
14389         Handle entry keys.
14390         (bibtex-make-field): Use bibtex-beginning-of-entry.
14391         (bibtex-end-of-entry): Use bibtex-valid-entry.  Recognize any
14392         invalid entry.
14393         (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
14394         Handle preambles.  Simplify code for thorough test.
14395         (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
14396         New arg comma.  Handle entry heads.
14397         (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
14398         (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
14399         New arg comma.
14400         (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
14401         (bibtex-fill-field): Simplify.
14402         (bibtex-fill-entry): Use bibtex-beginning-first-field and
14403         bibtex-parse-field.
14404         (bibtex-convert-alien): Do not wait before calling bibtex-validate.
14405         (bibtex-complete): Use bibtex-parse-preamble.
14407 2005-12-29  Nick Roberts  <nickrob@snap.net.nz>
14409         * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
14410         Display name of expression instead of convenience variable.
14411         (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
14413         * progmodes/gud.el (gud-tooltip-dereference): Rename from
14414         toggle-gud-tooltip-dereference.
14415         (gud-tooltip-print-command): Move concatenation of "*" to expr to...
14416         (gud-tooltip-tips): ...here when dereferencing.
14418 2005-12-28  Bill Wohler  <wohler@newt.com>
14420         * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
14422 2005-12-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14424         * vc.el (vc-annotate-display): Replace optional arg `color-map' with
14425         compulsory arg `ratio'.  Inline body of vc-annotate-time-span.
14426         (vc-annotate-display-autoscale): Adjust call.
14427         (vc-annotate-display-default): Adjust call.  Make arg compulsory.
14428         Fix interactive spec.
14429         (vc-annotate-time-span): Remove.
14430         (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
14431         (vc-annotate-mode-menu, vc-annotate-display-autoscale)
14432         (vc-annotate-display-select): Use new name.
14434         * vc.el (vc-annotate-mode-map): Remove obsolete binding.
14435         (vc-annotate-mode-menu): Remove left-over redundant declaration.
14436         Correct the construction of span entries.  Simplify.
14437         (vc-annotate-display-select): Fix the nil case.
14438         (vc-annotate): Remove obsolete (and now broken) code.
14439         (vc-annotate-extract-revision-at-line): Remove obsolete code.
14440         (vc-annotate-time-span): Remove unused arg `quantize'.  Simplify.
14442 2005-12-28  Luc Teirlinck  <teirllm@auburn.edu>
14444         * subr.el (lazy-completion-table): Correct typo in docstring.
14446         * startup.el (command-line): Use `custom-reevaluate-setting' for
14447         `send-mail-function'.
14449         * mail/sendmail.el (send-mail-function): Autoload the standard-value.
14451 2005-12-05  Ralf Angeli  <angeli@iwi.uni-sb.de>
14453         * mail/smtpmail.el (smtpmail-try-auth-methods):
14454         Send credentials together with "AUTH PLAIN" command.
14456 2005-12-27  Richard M. Stallman  <rms@gnu.org>
14458         * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
14459         mouse-2, go back to previously selected window, so it's selected
14460         when mouse-2 command runs.
14462 2005-12-27  Juri Linkov  <juri@jurta.org>
14464         * descr-text.el (describe-text-sexp): Use square brackets for
14465         button [Show] to distinguish it from the property value `show'.
14466         (describe-property-list): Use `insert-text-button' with
14467         `help-face' type instead of putting face in quotes, because button
14468         is not created automatically for a list of faces.
14469         (describe-text-properties-1): Put button-type value in quotes to
14470         distinguish from plain text "button".
14471         (describe-char): Display code point values in hex.  Don't use
14472         `symbol-name' for `current-input-method' because it is a string.
14473         Use `insert-text-button' with `help-face' type instead of putting
14474         hardcoded face in quotes, because button is not created automatically.
14476 2005-12-27  Richard M. Stallman  <rms@gnu.org>
14478         * progmodes/glasses.el (glasses-face): More specific custom type.
14480         * files.el (set-visited-file-name): Doc fix.
14482         * textmodes/flyspell.el (flyspell-external-point-words):
14483         Use local var buffer-scan-pos to advance scan for next misspelling.
14484         Advance it only after we find the misspelling.
14486 2005-12-27  Agustin Martin  <agustin.martin@hispalinux.es>
14488         * textmodes/flyspell.el (flyspell-external-point-words):
14489         New criteria for finding the misspelling in the buffer.
14491 2005-12-27  Nick Roberts  <nickrob@snap.net.nz>
14493         * help-mode.el (help-insert-string): Set help-xref-stack-item
14494         rather than call help-setup-xref.
14496         * descr-text.el (describe-char): Revert previous changes for
14497         optional buffer argument.
14499 2005-12-27  Juri Linkov  <juri@jurta.org>
14501         * help-mode.el (help-insert-string): New function.  Save buffer
14502         contents in cases where it is impossible to recompute the old contents.
14504         * descr-text.el (describe-char): Set help-xref-stack-item
14505         explicitly after buffer has been generated.
14507 2005-12-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14509         * cus-start.el (all): Add x-gtk-show-hidden-files.
14511 2005-12-26  Richard M. Stallman  <rms@gnu.org>
14513         * replace.el (perform-replace): Calculate match-again
14514         before skipping read-only matches.
14516         * paren.el (paren-showing-faces): New group.
14517         (show-paren-match, show-paren-mismatch): Move to that group.
14519         * button.el (button): Put into group `basic-faces'.
14521         * progmodes/make-mode.el: Remove faces from group `faces'.
14523         * apropos.el (apropos, apropos-value): Doc fix.
14524         (apropos-documentation): Doc fix.
14526 2005-12-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14528         * subr.el (lazy-completion-table): Remove argument `args'.
14530         * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
14531         Don't use the `args' argument of lazy-completion-table.
14533 2005-12-26  Nick Roberts  <nickrob@snap.net.nz>
14535         * descr-text.el (describe-char): Add optional argument for buffer.
14536         Set buffer appropriately.  Call help-setup-xref.
14537         Suggested by Stefan Monnier.
14539 2005-12-26  Juri Linkov  <juri@jurta.org>
14541         * descr-text.el: Require `help-fns' at runtime.  Don't require
14542         `button' for byte compilation.
14543         (describe-text-widget): Add `help-echo' for first button.
14544         Use `help-info' for second.
14545         (describe-property-list): Use `help-argument-name' instead of `italic'.
14546         (describe-text-category): Add prompt to interactive spec.
14547         Call `help-setup-xref'.
14548         (describe-char): Use `help-character-set'.  Add `help-echo' for
14549         code point.  Use `help-input-method'.  Remove superfluous insert.
14551 2005-12-25  Richard M. Stallman  <rms@gnu.org>
14553         * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
14554         at point, in case of narrowing.
14556         * progmodes/delphi.el (delphi-other-face): Allow nil in type.
14558         * locate.el (locate-header-face): Allow nil in type.
14560         * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
14562 2005-12-25  Romain Francoise  <romain@orebokech.com>
14564         * battery.el (battery-linux-proc-acpi): Also try
14565         `/proc/acpi/thermal_zone/THM0/temperature'.
14567 2005-12-24  Chong Yidong  <cyd@stupidchicken.com>
14569         * custom.el (custom-push-theme): Fix docstring.
14571         * cus-edit.el (custom-variable-set, custom-variable-save)
14572         (custom-variable-save): Custom-quote widget values.
14573         (customize-save-variable): Fix custom-push-theme call.
14575 2005-12-24  Eli Zaretskii  <eliz@gnu.org>
14577         * w32-fns.el (w32-batch-update-autoloads): New function.
14579         * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
14580         Use w32-batch-update-autoloads, and don't setq generated-autoload-file
14581         from the command line.
14583 2005-12-23  Chong Yidong  <cyd@stupidchicken.com>
14585         * custom.el (custom-push-theme): Clarify docstring.  VALUE nil for
14586         reset means to remove setting from theme entirely.  Don't keep
14587         expanding theme-settings list; delete old entries if necessary.
14589         * cus-edit.el (custom-buffer-create-internal): Move "Erase
14590         customization" button one line up.
14591         (custom-themed): New face.
14592         (custom-magic-alist): New value, THEMED, for theme settings.
14593         (custom-variable-state-set, custom-face-state-set):
14594         Check theme-value instead of saved-value.
14595         (custom-variable-reset-standard, custom-face-reset-standard):
14596         Remove theme setting entirely.  Recalculate new values.
14597         (custom-variable-set, custom-variable-set)
14598         (custom-variable-reset-saved, custom-variable-reset-backup)
14599         (custom-face-set, custom-face-reset-saved): Update `user' theme.
14600         (custom-variable-save): Fix typos.
14602 2005-12-23  Juri Linkov  <juri@jurta.org>
14604         * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
14605         Add autoload cookies.
14606         (edebug-outside-d-c-i-n-s-w): New variable.
14607         (edebug-display, edebug-outside-excursion): Use it to save the
14608         original value of default-cursor-in-non-selected-windows.
14609         Set default-cursor-in-non-selected-windows to t while Edebug
14610         is active.
14611         (edebug-mode, edebug-eval-mode): Doc fix.
14613         * mouse.el (mouse-choose-completion): Replace `buffer-substring'
14614         with `buffer-substring-no-properties' to remove common substring
14615         highlighting.
14617         * info.el (info-other-window, info): Rename function argument
14618         `file' to `file-or-node'.
14619         (Info-complete-menu-item): Use local variable `complete-nodes' to
14620         keep the global value of `Info-complete-nodes' unchanged for
14621         subsequent completions.
14622         (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
14624         * simple.el (get-next-valid-buffer, last-buffer)
14625         (next-error-buffer-p, next-error-find-buffer)
14626         (minibuffer-history-sexp-flag): Doc fix.
14628         * savehist.el (savehist-mode-hook): Add `:group'.
14630         * log-view.el: Call autoload for vc-find-version.
14631         (log-view-current-file): Adjust subgroup numbers.
14632         (log-view-current-tag): Add `length'.
14634 2005-12-23  Richard M. Stallman  <rms@gnu.org>
14636         * vc.el (vc-annotate-car-last-cons): Defn moved up.
14638 2005-12-23  Juri Linkov  <juri@jurta.org>
14640         * hi-lock.el (hi-lock-archaic-interface-message-used)
14641         (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
14642         (hi-lock-mode): Display "Hi" in the mode line only when
14643         hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
14644         (hi-lock-write-interactive-patterns):
14645         Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
14646         (hi-lock-set-pattern, hi-lock-set-file-patterns)
14647         (hi-lock-font-lock-hook): Set 3rd arg `how' of
14648         font-lock-add-keywords to t.
14650 2005-12-23  David Koppelman  <koppel@ece.lsu.edu>
14652         * hi-lock.el (hi-lock-highlight-range): New variable.
14653         (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
14654         only if font-lock-fontified is non-nil.  Remove overlays.
14655         (hi-lock-set-pattern): Call font-lock-fontify-buffer if
14656         font-lock-fontified is non-nil, otherwise use overlays (instead of
14657         text properties).
14658         (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
14659         New variables.
14660         (hi-lock-string-serialize) New function.
14662 2005-12-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14664         * menu-bar.el (menu-find-file-existing): New function.
14665         (menu-bar-file-menu): Use menu-find-file-existing for Open.
14667         * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
14669 2005-12-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14671         * vc.el: Remove unnecessary leading * in docstrings.
14672         (vc-annotate-mode-map): Move initialization into declaration.
14673         (vc-static-header-alist): Nitpick on the regexp.
14674         (vc-default-init-version): New fun.
14675         (vc-register): Use it.
14676         (vc-insert-headers): Use dolist.
14677         (vc-annotate-get-backend): Remove unused function.
14678         (vc-annotate-add-menu): Remove.  Build the menu directly at toplevel.
14679         (vc-annotate-mode): Remove corresponding call.
14680         (vc-annotate-car-last-cons): Simplify.
14681         (vc-annotate-buffers): Remove var.
14682         (vc-annotate-backend): Make it buffer-local.
14683         (vc-annotate): Move the interaction to the interactive spec.
14684         Add a `buf' argument.
14685         (vc-annotate-warp-version): Use this new `buf' argument to avoid
14686         killing&creating a vc-annotate buffer, which is very disruptive when
14687         the buffers are shown in dedicated frames.
14689 2005-12-23  Nick Roberts  <nickrob@snap.net.nz>
14691         * descr-text.el: Add FSF as maintainer.
14692         (describe-text-mode, describe-text-mode-map)
14693         (describe-text-mode-hook, describe-text-done): Delete.  Use normal
14694         help-mode.
14695         (describe-text-widget, describe-text-sexp)
14696         (describe-property-list, describe-text-category)
14697         (describe-text-properties, describe-text-properties-1)
14698         (describe-char): Use help buttons instead of widgets.
14699         (describe-char-unicodedata-file): Make URL link in doc string.
14701 2005-12-22  Richard M. Stallman  <rms@gnu.org>
14703         * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
14704         (custom-buffer-create-internal): Reword the top-of-buffer help intro.
14705         Don't include buttons that write a file when there's no file.
14706         (custom-variable-menu, custom-face-menu, custom-group-menu):
14707         Don't include commands that write a file when there's no file.
14708         (customize-browse): Reword the top-of-buffer help intro.
14709         (custom-buffer-create-internal): Fix previous change.
14710         (customize-changed-options-previous-release): Prev release is 21.1.
14711         (customize-changed-options): Doc fix.
14712         (customize-changed): New alias.
14713         (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
14714         Say "standard values".
14715         (Custom-reset-standard): Doc fix.
14716         (custom-face-reset-standard): Doc fix.
14718 2005-12-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14720         * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
14721         even if font-lock-mode is non-nil since it may be t without having
14722         turned on font-lock-mode-internal.
14723         (font-lock-choose-keywords): Minor optimization.
14724         (font-lock-add-keywords, font-lock-remove-keywords)
14725         (font-lock-set-defaults): Don't call make-local-variable on a variable
14726         that we know to already be local.
14728 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14730         * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
14731         messages if in the minibuffer.
14733 2005-12-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14735         * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
14736         (tex-mode-flyspell-verify, flyspell-get-word)
14737         (flyspell-external-point-words): Don't use point-min/max uselessly.
14739         * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
14740         by Kevin Rodgers.  Instead, just hide the completions buffer if we
14741         don't need to show it.
14743 2005-12-21  Luc Teirlinck  <teirllm@auburn.edu>
14745         * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
14747 2005-12-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14749         * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
14750         delete-windows-on with an inexistent buffer.
14752 2005-12-22  Nick Roberts  <nickrob@snap.net.nz>
14754         * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
14755         Delete defcustom variable :tag names.
14757 2005-12-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14759         * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
14760         (log-view-font-lock-keywords): Ajust subgroup numbers.
14761         (log-view-current-tag): Don't hard code the number of subgroups.
14763 2005-12-20  Juri Linkov  <juri@jurta.org>
14765         * tooltip.el (tooltip): Move defgroup before define-minor-mode.
14766         (tooltip-x-offset, tooltip-y-offset): Doc fix.
14768         * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
14769         (menu-bar-non-minibuffer-window-p): Instead of checking
14770         display-multi-frame-p, use selected-frame when menu-updating-frame
14771         is nil.
14773 2005-12-20  Stuart Herring  <herring@lanl.gov>  (tiny change)
14775         * align.el (align-rules-list): Use [ \t] instead of \s-
14776         for column separators in text mode.
14778 2005-12-20  Nick Roberts  <nickrob@snap.net.nz>
14780         * help-mode.el (help-customize-variable, help-customize-face):
14781         Don't pop help-xref-stack as help-follow no longer pushes
14782         anything on to it.
14784 2005-12-20  Carsten Dominik  <dominik@science.uva.nl>
14786         * textmodes/org.el (org-agenda-custom-commands): New option.
14787         (org-agenda): Offer custom commands on splash screen.
14788         (org-make-tags-matcher): Parser for Boolean logic added.
14789         (org-agenda-set-tags): New command.
14790         (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
14791         (org-set-tags): Efficiency improvements.
14792         (org-auto-align-tags): New option.
14793         (org-todo, org-demote, org-promote): Realign tags.
14794         (org-tags-completion-function): Use also "&" and "|" as separators.
14795         (org-org-menu): Agenda commands simplified.
14797 2005-12-19  Luc Teirlinck  <teirllm@auburn.edu>
14799         * cus-edit.el (customize-apropos, customize-apropos-options):
14800         Docstring changes.
14802         * font-lock.el (font-lock): Add tags to the links in the defgroup.
14804 2005-12-19  Chong Yidong  <cyd@stupidchicken.com>
14806         * longlines.el (longlines-mode): Wrap while widened.
14807         (longlines-decode-region, longlines-encode-region): Compute max
14808         just once.
14810 2005-12-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
14812         * cus-edit.el (mac): New group.
14814         * cus-start.el (all): Add user options in macterm.c.  Add test for
14815         Mac-related built-ins.  Fix test for GTK-related built-ins.
14817         * term/mac-win.el (mac-handle-language-change)
14818         (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
14819         (mac-services-open-selection, mac-services-mail-selection)
14820         (mac-services-mail-to, mac-services-insert-text)
14821         (mac-dispatch-apple-event): Add docstrings.
14822         (x-get-selection, mac-select-convert-to-string): Select coding
14823         system from `utf-16be' and `utf-16le' using `byteorder'.
14825 2005-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14827         * subr.el (lazy-completion-table): Don't be fooled if the var holds
14828         a "list" (lambda ...) rather than a real completion list.
14830         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
14831         lexical-let when encountering ((lambda (...) ...) ...).
14833 2005-12-17  Chong Yidong  <cyd@stupidchicken.com>
14835         * progmodes/sh-script.el (sh-mode):
14836         * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
14837         * textmodes/picture.el (picture-mode): Update docstrings.
14839 2005-12-17  Eli Zaretskii  <eliz@gnu.org>
14841         * makefile.w32-in (autoloads, custom-deps): Warn that parts of
14842         commands enclosed in $(ARGQUOTE)s should not be split between two
14843         lines, as that will break with GNU Make >3.80, when sh.exe is used
14844         and arg quoting is with '..'.
14845         (autoloads): Don't break the quoted --eval expression between
14846         several lines.
14848 2005-12-17  Chong Yidong  <cyd@stupidchicken.com>
14850         * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
14851         Capture error from printing circular structures.
14853 2005-12-17  Martin Rudalics  <rudalics@gmx.at>
14855         * wid-edit.el (widget-checkbox-action): Clear undo info.
14857 2005-12-16  Bill Wohler  <wohler@newt.com>
14859         * menu-bar.el (kill-this-buffer): Set a good example by using menu
14860         bar, not menubar in comment.
14862 2005-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14864         * progmodes/cc-engine.el (c-after-change-check-<>-operators):
14865         After-change-functions should not clobber the match data.
14867 2005-12-16  Juri Linkov  <juri@jurta.org>
14869         * simple.el (choose-completion): Use `buffer-substring-no-properties'
14870         instead of `buffer-substring'.
14871         (completion-common-substring): Doc fix.
14872         (completion-setup-function): Use minibuffer-completion-contents
14873         instead of minibuffer-contents.  Don't set common-string-length
14874         initially.  Remove special handling of partial-completion-mode.
14875         Move computation of completion-base-size into one cond.
14876         Call completion-base-size-function in mainbuf.  In computation of
14877         completion-base-size for file name completion don't move point to
14878         the end of the minibuffer.  Move computation of common-string-length
14879         into one cond.  Start putting faces only when common-string-length>=0.
14880         Add condition to put completions-common-part when
14881         common-string-length>0.
14883         * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
14884         place point at the first different character in the minibuffer
14885         even if this position is at the beginning of the minibuffer.
14887         * info.el (Info-read-node-name-1): In completion-base-size-function's
14888         lambda return 1 if common-substring or minibuffer-completion-contents
14889         starts with (, and 0 otherwise.
14891         * emacs-lisp/crm.el (crm-minibuffer-completion-help):
14892         Use `crm-current-element' for second arg of `display-completion-list'.
14894 2005-12-16  Klaus Zeitler  <kzeitler@lucent.com>
14896         * files.el (set-auto-mode): Look for an interpreter specified on
14897         the first line also if search for mode specification succeeded,
14898         but the mode is not known.
14900 2005-12-16  Carsten Dominik  <dominik@science.uva.nl>
14902         * textmodes/org.el (org-tags-match-list-sublevels): New option.
14903         (org-open-at-point): Implement tag searches as links.
14904         (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
14905         (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
14906         (org-tags-sparse-tree, org-tags-view, org-set-tags)
14907         (org-agenda-dispatch): New commands.
14908         (org-use-tag-inheritance, org-tags-column): New options.
14909         (org-tab-follows-link, org-return-follows-link): New options.
14910         (org-tags): New customize group.
14911         (org-start-icalendar-file): Get local time zone.
14912         (org-tags-completion-function): New function.
14913         (org-set-font-lock-defaults): Make sure links will also be
14914         highlighted inside headlines.
14916 2005-12-16  Mark Plaksin  <happy@usg.edu>  (tiny change)
14918         * term.el (term-emulate-terminal):
14919         Let term-handle-ansi-terminal-messages override what Bash says about
14920         its current directory.
14922 2005-12-16  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
14924         * bindings.el (last-buffer): Move to simple.el.
14925         * simple.el (last-buffer): Move here.
14926         (get-next-valid-buffer): New function.
14927         (next-buffer): Use frame-local buffer list, maintain buried buffer list.
14928         (prev-buffer): Ditto.  Rename to `previous-buffer'.
14930         * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
14931         * bindings.el (global-map): Ditto.
14933 2005-12-15  Luc Teirlinck  <teirllm@auburn.edu>
14935         * cus-edit.el: Introductory comment change.
14936         (custom-magic-alist): Change message string for the `rogue' state.
14938 2005-12-15  Richard M. Stallman  <rms@gnu.org>
14940         * tooltip.el: Delete defcustom variable :tag names.
14942         * complete.el (partial-completion-mode): Doc fix.
14944         * textmodes/flyspell.el (flyspell-external-point-words):
14945         Use save-excursion to ensure we don't move backward in the
14946         search loop, not even one character.
14947         (flyspell-delete-all-overlays): Use remove-overlays directly.
14949         * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
14950         (ispell-start-process): Set that variable.
14951         Clear ispell-buffer-local-name.
14952         (ispell-internal-change-dictionary):
14953         Set ispell-current-dictionary after killing process.
14954         (ispell-buffer-local-dict):
14955         Don't set spell-personal-dictionary after killing process.
14956         (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
14957         (ispell-tex-skip-alists, ispell-html-skip-alists)
14958         (ispell-skip-region-alist): Mark as risky.
14960         * net/newsticker.el (newsticker--retrieval-timer-list)
14961         (newsticker--display-timer, newsticker-running-p)
14962         (newsticker-ticker-running-p): Definitions moved up.
14964 2005-12-16  Nick Roberts  <nickrob@snap.net.nz>
14966         * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
14968 2005-12-15  David Ponce  <david@dponce.com>
14970         * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
14971         (recentf-edit-list, recentf-open-files): Signal an error when
14972         there is no recent file.
14974 2005-12-14  Lennart Borgman  <lennart.borgman.073@student.lu.se>
14976         * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
14977         read-only except for texinfo-format-region evaluation.
14979 2005-12-14  Richard M. Stallman  <rms@gnu.org>
14981         * vc.el (vc-default-previous-version, vc-default-next-version)
14982         (vc-do-command): Doc fixes.
14984 2005-12-14  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14986         * textmodes/bibtex.el (bibtex-expand-strings)
14987         (bibtex-autokey-expand-string, bibtex-name-part)
14988         (bibtex-entry-type-whitespace, bibtex-entry-type-str)
14989         (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
14990         (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
14991         (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
14992         (bibtex-entry-postfix, bibtex-known-entry-type-re)
14993         (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
14994         (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
14995         (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
14996         (bibtex-beginning-of-last-entry): Remove.
14997         (bibtex-parse-field-name): Use bibtex-field-name.  Issue error
14998         message if comma is missing but buffer is read-only.
14999         (bibtex-parse-field-text): Handle whitespaces at the end of field
15000         text.  Return 3-element list with beginning and end of field text
15001         and end of field.
15002         (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
15003         (bibtex-parse-field): Remove arg name.  Use bibtex-field-name.
15004         (bibtex-search-forward-field, bibtex-search-backward-field):
15005         Search always delimited by limits of entry.  Use more efficient
15006         search algorithms.
15007         (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
15008         bibtex-end-of-name-in-field.
15009         (bibtex-text-in-field-bounds): Handle BibTeX strings when
15010         extracting the content of a field.
15011         (bibtex-text-in-field): Use search limits.
15012         (bibtex-parse-string-prefix): Handle empty string keys based on
15013         bibtex-string-empty-key.
15014         (bibtex-parse-string): Fix docstring.
15015         (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
15016         (bibtex-preamble-prefix, bibtex-strings): New functions.
15017         (bibtex-skip-to-valid-entry): Include preceding whitespace in
15018         BibTeX entries (consistent with other BibTeX functions).
15019         (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
15020         (bibtex-search-entry): Fix docstring.  Simplify.
15021         (bibtex-flash-head, bibtex-complete-string-cleanup)
15022         (bibtex-count-entries, bibtex-sort-buffer): Simplify.
15023         (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
15024         (bibtex-parse-entry): New optional arg content.
15025         (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
15026         Use bibtex-text-in-field-bounds.
15027         (bibtex-print-help-message): Handle BibTeX strings and preambles.
15028         (bibtex-end-of-entry): Use bibtex-preamble-prefix and
15029         bibtex-parse-string-postfix.
15030         (bibtex-find-text-internal): New function.
15031         (bibtex-remove-delimiters): Use it.
15032         (bibtex-find-text): Use it.  New optional arg help.
15033         (bibtex-complete): Handle BibTeX string and preamble entries.
15034         (bibtex-Preamble): Fix order of closing delimiters.
15036 2005-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15038         * vc.el (vc-default-revert): New fun.
15040         * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
15042 2005-12-14  Romain Francoise  <romain@orebokech.com>
15044         * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
15045         (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
15046         (font-lock-remove-keywords): Likewise.
15048 2005-12-14  Juri Linkov  <juri@jurta.org>
15050         * log-view.el (log-view-diff): Doc fix.
15052         * isearch.el (isearch-query-replace): Use (mark) instead of
15053         isearch-opoint if mark is active in transient-mark-mode.
15055 2005-12-14  Aaron S. Hawley  <Aaron.Hawley@uvm.edu>
15057         * isearch.el (isearch-query-replace): Check for isearch-other-end.
15059 2005-12-14  Per Abrahamsen  <abraham@dina.kvl.dk>
15061         * progmodes/cpp.el (cpp-face): New widget.
15062         (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
15064 2005-12-14  Juri Linkov  <juri@jurta.org>
15066         * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
15067         around `erase-buffer' and `insert'.
15069         * descr-text.el (describe-text-properties): Replace buffer name
15070         "*Help-2*" with "*Help*<2>".
15071         (describe-char): Add functions print-help-return-message,
15072         toggle-read-only.  Use help-setup-xref with nil to not store
15073         describe-char in help-xref-stack.  Use help-make-xrefs to
15074         make [back] button.
15076         * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
15078         * wdired.el (wdired-old-point): New internal variable.
15079         (wdired-change-to-wdired-mode): Set it buffer-locally.
15080         (wdired-abort-changes): Restore point after aborting changes.
15082 2005-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15084         * vc.el (vc-do-command): Add a new value t for okstatus.
15086         * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
15087         frame in case of errors.
15089 2005-12-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15091         * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
15092         so it comes after "On the Left" in the menu.
15094 2005-12-12  Luc Teirlinck  <teirllm@auburn.edu>
15096         * cus-edit.el (customize-apropos, customize-apropos-options)
15097         (customize-apropos-faces, customize-apropos-groups): Doc fixes.
15099 2005-12-12  Bill Wohler  <wohler@newt.com>
15101         * vc-svn.el (vc-svn-registered): Fix problem of visiting
15102         non-writable Subversion-controlled files by saving window
15103         configuration before calling vc-do-command.  vc-do-command calls
15104         pop-to-buffer on error which is unexpected during registration.
15106 2005-12-12  Jay Belanger  <belanger@truman.edu>
15108         * calc/README: Update the summary of changes.
15110 2005-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15112         * descr-text.el (describe-char): Rework last fix to solve the problem
15113         is the same way it's solved for everything else in that function
15114         (i.e. by extracting the info before setting up the *Help* buffer).
15116 2005-12-12  Kim F. Storm  <storm@cua.dk>
15118         * subr.el (version-regexp-alist): Allow space as separator before
15119         non-numeric part, e.g. "1.0 alpha".
15120         (version-to-list): Interpret .X.Y version as 0.X.Y version.
15122 2005-12-12  Carsten Dominik  <dominik@science.uva.nl>
15124         * textmodes/org.el (org-agenda, org-timeline, org-todo):
15125         Implement Logging and the keep-modes setting.
15126         (org-get-category): Make sure a string is returned.
15127         (org-log-done): New function.
15128         (org-log-done, org-closed-string): New options.
15130 2005-12-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15132         * tooltip.el (tooltip-y-offset): Change default to 20.
15134 2005-12-12  Richard M. Stallman  <rms@gnu.org>
15136         * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
15138         * frame.el (display-hourglass): Doc fix.
15140         * help.el (help-for-help-internal): Simplify entry for `a'.
15142         * info.el (Info-on-current-buffer): Doc fix.
15143         (info-insert-file-contents): Don't test (featurep 'jka-compr).
15145         * startup.el (inhibit-splash-screen): Make this the real name.
15146         (inhibit-startup-message): Make this the alias.
15147         (command-line): Find only simple.el, and use its directory
15148         to fill in other preloaded files' names.
15149         (command-line): Deactivate the mark if deactivate-mark is set.
15151         * international/mule.el (load-with-code-conversion):
15152         Bind deactivate-mark.
15154         * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
15156 2005-12-11  Luc Teirlinck  <teirllm@auburn.edu>
15158         * cus-edit.el (customize-apropos): Avoid listing an option more
15159         than once under different aliases.  No longer list user options
15160         that are not defined with defcustom (unless a prefix arg is given).
15161         Doc fix.
15162         (customize-apropos-options): Doc fix.
15164 2005-12-11  Juri Linkov  <juri@jurta.org>
15166         * frame.el (set-background-color, set-foreground-color)
15167         (set-cursor-color, set-mouse-color, set-border-color):
15168         Add explicit prompts to read colors by `facemenu-read-color'.
15169         (show-trailing-whitespace, blink-cursor-delay)
15170         (blink-cursor-interval, display-hourglass, hourglass-delay):
15171         Remove tags.
15172         (display-hourglass, hourglass-delay): Doc fix.
15173         (cursor-in-non-selected-windows): Capitalize words in tag.
15175         * faces.el (frame-background-mode): Replace `choice-item' keywords
15176         with `const' to not make [default] button.  Change default value tag
15177         from `default' to `automatic'.  Doc fix.
15178         (trailing-whitespace) <defface>: Change group `whitespace' to
15179         `whitespace-faces'.
15181 2005-12-11  Richard M. Stallman  <rms@gnu.org>
15183         * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
15185 2005-12-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15187         * term/mac-win.el: Create keymap for mac-apple-event-map.
15189 2005-12-11  Nick Roberts  <nickrob@snap.net.nz>
15191         * tooltip.el (tooltip-mode): Move to start of file so that it
15192         appears at top of customize buffer.
15194         * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
15195         Add the gud groupname.
15196         (gud-tooltip-mode): Add the tooltip groupname.
15197         (gud-tooltip-echo-area): Add the gud groupname.  Remove tag to
15198         avoid conflict with tooltip-use-echo-area.
15200 2005-12-10  Romain Francoise  <romain@orebokech.com>
15202         * help.el (help-for-help-internal): Add `r' in doc string.
15204 2005-12-10  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
15206         * align.el (align-regexp, align-highlight-rule):
15207         Use region-beginning and region-end instead of point and mark, so that
15208         repetition (with `repeat-complex-command') recomputes the region
15209         bounds.
15211 2005-12-10  Lennart Borgman  <lennart.borgman.073@student.lu.se>
15213         * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
15214         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
15215         (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
15216         (balance-windows): Rewrite using the above new functions.
15218 2005-12-10  David Koppelman  <koppel@ece.lsu.edu>
15220         * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
15221         react if global-hi-lock-mode seems intended.
15222         (global-hi-lock-mode) Renamed from hi-lock-mode.
15223         (hi-lock-archaic-interface-message-used)
15224         (hi-lock-archaic-interface-deduce): New variables.
15225         (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
15226         (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
15227         (hi-lock-find-patterns, hi-lock-font-lock-hook):
15228         Replace hi-lock-buffer-mode with hi-lock-mode.
15230 2005-12-10  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
15232         * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
15233         completion list, even after a partial completion has been
15234         inserted in the current buffer.  If there are more than 1
15235         completion, redisplay the *Completions* buffer; if the
15236         completion is unique, delete the *Completions* window.
15238 2005-12-10  Eli Zaretskii  <eliz@gnu.org>
15240         * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
15241         strings and long subject lines that were broken into multiple
15242         lines at arbitrary places.  Handle subjects that have "Re: " in
15243         the middle.
15245 2005-12-10  John W. Eaton  <jwe@octave.org>
15247         * emacs/octave-mod.el (octave-electric-space): Don't indent
15248         comments or strings if octave-auto-indent is nil.
15250 2005-12-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15252         * term/mac-win.el: Require url when compiling.
15253         Call mac-process-deferred-apple-events after loading init files.
15254         (mac-apple-event-map): New defvar.  Define event handlers in it.
15255         (core-event, internet-event): New Apple event class symbols.
15256         (open-application, reopen-application, open-documents)
15257         (print-documents, open-contents, quit-application)
15258         (application-died, show-preferences, autosave-now, get-url):
15259         New Apple event ID symbols.
15260         (about): New HICommand ID symbol.
15261         (mac-event-spec, mac-event-ae): New macros.
15262         (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
15263         (mac-ae-selection-range, mac-ae-text-for-search)
15264         (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
15265         (mac-application-menu-map): Remove keymap.  Handlers for HICommand
15266         and Services menu events are now defined in mac-apple-event-map.
15267         (mac-drag-n-drop): Remove selection range handling.
15269 2005-12-10  Kenichi Handa  <handa@m17n.org>
15271         * simple.el (zap-to-char):
15272         * isearch.el (isearch-process-search-char): Translate CHAR by
15273         translation-table-for-input.
15275 2005-12-09  Chong Yidong  <cyd@stupidchicken.com>
15277         * foldout.el (foldout-exit-fold): Properly hide subtree.
15279 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
15281         * files.el (save-buffer):
15282         * international/ucs-tables.el (ucs-set-table-for-input):
15283         * mail/mail-extr.el (mail-extract-address-components):
15284         * mail/sendmail.el (mail-mode): Reformat doc string.
15286 2005-12-09  Juri Linkov  <juri@jurta.org>
15288         * isearch.el (isearch-highlight): Change main overlay priority
15289         from 1 to 1001.  Simplify.
15290         (isearch-lazy-highlight-update): Change lazy overlay priority
15291         from 0 to 1000.
15293         * replace.el (replace-highlight): Change overlay priority from
15294         1 to 1001.
15296         * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
15297         Change overlay priority from 1 to 1001.  Reuse existing overlay.
15299         * compare-w.el (compare-windows-highlight): Change overlay
15300         priority from 1 to 1000.
15302         * menu-bar.el (menu-bar-edit-menu): Add listp around
15303         pending-undo-list to disable menu item "undo" when pending
15304         undo list is empty.
15306         * locate.el (locate): Disable undo in *Locate* buffer.
15308 2005-12-09  Kim F. Storm  <storm@cua.dk>
15310         * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
15312 2005-12-09  David Ponce  <david@dponce.com>
15314         * recentf.el: Improvement of the menu code.
15315         (recentf-enabled-p): Move before first use.  Use `kill-emacs-hook'
15316         instead of menu hook.
15317         (recentf-show-menu, recentf-hide-menu): New functions.
15318         (recentf-menu-customization-changed, recentf-mode): Use them.
15319         (recentf-menu-action, recentf-max-menu-items)
15320         (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
15321         (recentf-arrange-by-rule-others)
15322         (recentf-arrange-by-rules-min-items)
15323         (recentf-arrange-by-rule-subfilter) : Don't use
15324         `recentf-menu-customization-changed'.
15325         (recentf-arrange-rules): Likewise.  Accept functions to compute
15326         sub-menu titles.
15327         (recentf-menu-filter): Likewise.  Doc fix.
15328         (recentf-menu-value-shortcut): Doc fix.
15329         (recentf-dump-variable): Quote atom value.
15330         (recentf-make-menu-items): Update to use it as a menu filter.
15331         (recentf-match-rule): New function.
15332         (recentf-arrange-by-rule): Use it.
15333         (recentf-indirect-mode-rule): New function.
15334         (recentf-build-mode-rules): Use it.
15335         (recentf-dir-rule): New function.
15336         (recentf-arrange-by-dir): Use it.
15337         (recentf-filter-changer-current): Rename from
15338         `recentf-filter-changer-state'.  All references updated.
15339         (recentf-filter-changer-alist): Update filter names.
15340         (recentf-filter-changer-select): New function.
15341         (recentf-filter-changer): Use it.  Make a sub-menu from filters
15342         available in `recentf-filter-changer-alist'.
15343         (recentf-data-cache, recentf-clear-data)
15344         (recentf-update-menu): Remove.  All references updated.
15345         (recentf-match-rule-p, recentf-build-dir-rules)
15346         (recentf-filter-changer-goto-next)
15347         (recentf-filter-changer-get-current)
15348         (recentf-filter-changer-get-next): Remove.
15350 2005-12-08  Luc Teirlinck  <teirllm@auburn.edu>
15352         * cus-edit.el (custom-buffer-create-internal): Relabel the whole
15353         buffer "Reset" button to "Reset to Current" for consistency with
15354         the State buttons.
15356 2005-12-08  John Paul Wallington  <jpw@pobox.com>
15358         * ibuf-ext.el (define-ibuffer-filter filename):
15359         If `dired-directory' is a list then really use its car.
15361 2005-12-08  Kim F. Storm  <storm@cua.dk>
15363         * emulation/cua-rect.el (cua--rectangle-aux-replace):
15364         Fix indention of text on right side of replaced rectangle.
15366 2005-12-09  Nick Roberts  <nickrob@snap.net.nz>
15368         * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
15369         No need to check gud-comint-buffer is bound.
15370         (gdb): Prevent multiple debugging when first session uses gdba.
15372 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15374         CC Mode update to 5.31.
15376         * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
15377         Emacsen which lack `define-minor-mode'.  (Currently Emacs <21.
15378         We might do this function properly in the future).
15380         * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
15381         New macros c-sentence-end and c-default-value-sentence end, to cope
15382         with Emacs 22's new function `sentence-end'.
15384 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15386         * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
15387         compat issue using `c-put-overlay' and `c-delete-overlay'.
15389         * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
15390         New compat macros to handle overlays/extents.
15392 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15394         * progmodes/cc-fix.el: Add definitions of the macros push and pop
15395         (for GNU Emacs 20.4)
15397         * progmodes/cc-defs.el:
15398         (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
15400         * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
15401         highlighting mechanism so it will work in XEmacs too.
15403         * progmodes/cc-defs.el: Insert c-int-to-char.
15405         * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
15406         call to the new macro c-int-to-char.  This solves XEmacs's
15407         regarding characters as different from integers.
15409 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15411         * progmodes/cc-fonts.el (c-make-syntactic-matcher):
15412         New internal helper.
15414         (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
15415         construct to make the indirect face lookup work in XEmacs.
15417         (c-cpp-matchers): Append the negation char face to the existing
15418         fontification, so that the cpp face doesn't disappear.
15419         Use `c-make-syntactic-matcher' to avoid negation chars in comments
15420         and strings.
15422         * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
15423         to map to `font-lock-negation-char-face' in emacsen where it exists.
15425 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15427         * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
15429         * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
15430         Rename "c-subword-move-mode" as "c-subword-mode".
15432         * progmodes/cc-mode.el: Added tty suitable bindings for C-c
15433         <delete> and C-c C-<delete>.  (To the c-hungry- delete functions).
15435 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15437         * progmodes/cc-mode.el: Added autoload directive for
15438         `c-subword-move-mode' for use in older emacsen.
15440 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15442         * progmodes/cc-mode.el:
15443         (i) Insert a binding for C-c C-backspace into
15444         c-bind-special-erase-keys which works in TTYs.
15445         (ii) Make sure that when file styles are used, any explicitly
15446         given style variables take priority over those in the style.
15447         Do this by calling `hack-local-variables' a second time.
15449         * progmodes/cc-vars.el: Add language specific customization
15450         widgets for AWK to c-doc-comment-style, c-require-final-newline
15451         and c-default-style.  Add a defcustom for awk-mode-hook.
15452         Give c-syntactic-element and c-syntactic-context doc-strings by
15453         directly setting their `variable-documentation' propery.
15454         This allows Emacs 22.1 to read these with C-h v.
15456         * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
15458 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15460         * progmodes/cc-fonts.el, cc-vars.el
15461         (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
15462         (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
15463         Masatake YAMATO.
15465         (c-doc-comment-style): Made GtkDoc default in C mode.
15467         * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
15468         and C-c C-<delete>.
15470         (c-bind-special-erase-keys): New function for use on
15471         `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
15473         * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
15474         <delete> key behavior in XEmacs according to `delete-forward-p'.
15475         C.f. `c-electric-delete'.
15477 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15479         * progmodes/cc-mode.el: Give c-hungry-backspace and
15480         c-hungry-delete-forward permanent key bindings.
15482         * progmodes/cc-cmds.el (c-electric-semi&comma):
15483         Bind c-syntactic-context for calls to "criteria functions", for
15484         consistency with other calls to user functions.
15486         * progmodes/cc-cmds.el (c-indent-command): Expunge use of
15487         `current-prefix-arg', since this might be the prefix arg to a
15488         command which calls c-indent-command as a function.  Change the
15489         interactive spec from "p" to "P".
15491         * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
15492         reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
15493         was difficult to understand.
15495 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15497         * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
15498         first char of an identifier.
15500         * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
15501         +" syntax in C++.
15503 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15505         * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
15506         auto-fill doesn't split a c-comment's last word from a hanging
15507         "*/" when a space is typed between them after fill-column.
15509         * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
15511         * progmodes/cc-styles.el (c-set-style)
15512         (c-setup-paragraph-variables): Abort the command if we're not in a
15513         CC Mode buffer.
15515         * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
15516         with blank comment-prefix, and a blank line as the comment's
15517         second line.
15519 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15521         * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
15522         Incorporate the patterns added in the Emacs development branch
15523         for the new Emacs 22 face `font-lock-negation-char-face'.
15525         * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
15526         of "red" since it stands out better in xterms and DOS terminals.
15528         * progmodes/cc-engine.el (c-literal-faces):
15529         Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
15531 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15533         * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
15534         forcibly enable c-electric-flag.
15536         * progmodes/cc-vars.el, cc-cmds.el: New clean-up
15537         `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
15538         after the comment-prefix of a C-style comment will close that comment.
15540 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15542         * progmodes/cc-fonts.el (c-basic-matchers-before)
15543         (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
15544         in Pike.
15546         * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
15547         digraphs.
15549         * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
15550         (c-cpp-message-directives, c-cpp-include-directives)
15551         (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
15552         (c-cpp-expr-directives): Introduce new language constants to
15553         control cpp syntax in a cleaner way.
15555         (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
15557         (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
15559         * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
15560         (c-multiline-string-start-char): New language constants and
15561         variables to specify how newlines in string literals work.
15563         (c-font-lock-invalid-string): Use them.
15565         * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
15566         unbalanced close brace is entered.  Optimization by avoiding going
15567         back over arbitrarily large blocks.  Removed hints that this
15568         function only would be relevant/useful in AWK.
15570         (c-electric-brace): Indent syntactically after the cleanups since
15571         lineup functions might do it differently then.
15573         * progmodes/cc-engine.el, cc-langs.el
15574         (c-opt-op-identifier-prefix): New language constant and variable.
15576         (c-just-after-func-arglist-p, c-after-special-operator-id)
15577         (c-search-decl-header-end, c-inside-bracelist-p): Use it.
15579         * progmodes/cc-align.el, cc-engine.el
15580         (c-after-special-operator-id): New helper to handle C++ operator
15581         identifiers.
15583         (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
15584         (c-guess-basic-syntax): Handle C++ operator identifiers in
15585         declarations.
15587         * progmodes/cc-langs.el (c-assignment-operators): Add the
15588         trigraph version of ^= too.
15590         * progmodes/cc-langs.el (c-assignment-operators): Add the
15591         trigraph version of |= in C++.
15593         * progmodes/cc-fonts.el (c-font-lock-declarators):
15594         Handle `c-decl-hangon-kwds' after the identifier name.
15596         * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
15597         whether an arglist is "nonempty", ignore a comment after the open
15598         paren if it isn't followed by a non-comment token on the same line.
15600         * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
15601         Enable heuristics below the point to cope with classes inside special
15602         brace lists in Pike.
15604 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15606         * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
15608 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15610         * progmodes/cc-guess.el (cc-guess-install): New function to
15611         install an already guessed style in another buffer.
15613         * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
15614         sets `inhibit-read-only' - `c-save-buffer-state' should be used
15615         anyway if the change always is undone.
15617 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15619         Implement togglable electricity:
15621         * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
15622         saying when it should be used.
15624         * progmodes/cc-engine.el: Add the new buffer-local variable,
15625         c-electric-flag.
15627         * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
15628         c-toggle-auto-newline.
15630         * progmodes/cc-mode.el: Rename c-toggle-auto-state to
15631         c-toggle-auto-newline.  Remove the binding for
15632         c-toggle-auto-hungry-state.  Add the binding C-c C-l for the new
15633         c-toggle-electric-state.
15635         * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
15637         * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
15638         c-\(forward\|backward\)-subword.
15639         (c-update-modeline): Add the new modeline flag `l' for
15640         `c-electric-flag'.  Make the auto-newline flag `a' dependent on `l'.
15641         (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
15642         Make the old name an alias of the new name.
15643         (c-toggle-electric-state): New function.
15644         (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
15645         Adapt these functions to do electric things only when
15646         c-electric-flag is non-nil.
15647         (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
15648         new functions from c-electric-brace.
15649         (c-point-syntax): Add a check for "virtual semicolons" in AWK
15650         mode, so that the tentative extra newline doesn't change the
15651         syntax of the following brace.
15652         (c-electric-brace): Restructure by extracting the above functions.
15653         Tidy up the coding somewhat.
15654         (c-electric-semi&comma, c-electric-colon, c-electric-paren):
15655         restructure a bit.
15657 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15659         * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
15660         anchor position(s) using faces.  Thanks to Masatake YAMATO for the idea.
15662         * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
15663         (c-submode-indicators): Change name from `c-auto-hungry-string'
15664         since it's now used to track another submode.
15666         (c-update-modeline): Convert to function and extended to check
15667         `c-subword-move-mode'.
15669         (c-forward-into-nomenclature, c-backward-into-nomenclature):
15670         Convert to compat aliases for `c-forward-subword' and
15671         `c-backward-subword'.
15673         * progmodes/cc-subword.el: New functions and minor mode to handle
15674         SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
15676         (c-forward-subword, c-backward-subword, c-mark-subword)
15677         (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
15678         (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
15679         Functions corresponding to the standard word handling functions.
15681         (c-subword-move-mode): Minor mode that replaces all the standard
15682         word handling functions with their subword equivalences.
15684 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15686         * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
15687         entry for one-liner-defun.
15689         * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
15690         name in its def-edebug-spec.
15692         * progmodes/cc-cmds.el (c-electric-brace): Make the
15693         one-liner-defun clean-up work with empty-defun-braces.  o-l-d now
15694         compacts space before a comment, if this will make things fit on
15695         one line.
15697         Introduce an "awk" style, mainly for auto-newline and clean-ups.
15699         * progmodes/cc-align.el: New function c-snug-1line-defun-close
15701         * progmodes/cc-cmds.el: In c-electric-brace, add code for new
15702         clean-up one-liner-defun.
15704         * progmodes/cc-styles.el: Add the new "awk" style.
15706         * progmodes/cc-vars.el: Add description of one-liner-defun to
15707         c-cleanup-list's doc-string.  New user options,
15708         c-max-one-liner-length.  In c-default-style, set the default style
15709         for AWK to "awk".
15711 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15713         * progmodes/cc-engine.el (c-forward-label): Fix fontification of
15714         macros inside labels.
15716         * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
15717         `c-at-statement-start-p' and `c-at-expression-start-p'.
15719         * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
15720         error if the mark isn't set.
15722         * progmodes/cc-engine.el (c-guess-continued-construct)
15723         (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
15724         accurately detect functions inside functions.
15726         * progmodes/cc-engine.el (c-at-expression-start-p): New function
15727         like `c-at-statement-start-p' that additionally recognizes commas
15728         and expression parentheses as delimiters.
15730         * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
15731         to avoid heuristics that doesn't work for unclosed blocks.
15732         (c-at-statement-start-p): New function.
15734         * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
15735         Objective-C directives, e.g. directives spanning lines should work
15736         reasonably well now.
15738         (c-put-c-type-property, c-clear-c-type-property): New helpers.
15740         (c-forward-objc-directive): New function to move over any ObjC
15741         directive.
15743         (c-just-after-func-arglist-p, c-guess-basic-syntax)
15744         (c-basic-matchers-before): Use it.
15746         (c-font-lock-objc-iip-decl): Remove.
15748         * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
15749         in the template arglist recognition.
15751         * progmodes/cc-styles.el (c-style-alist): Fix several
15752         inconsistencies in the Whitesmith style.
15754         * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
15755         New lineup function to get lines after Whitesmith style blocks
15756         correctly indented.
15758         (c-lineup-whitesmith-in-block): Back out the compensation for
15759         opening parens since it's done using `add' lists in the style
15760         definition instead.  Don't use the anchor position since it varies
15761         too much between the syntactic symbols. :P
15763         * progmodes/cc-vars.el (c-valid-offset): Update.
15765         * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
15766         lists where the offsets are combined according to several
15767         different methods: `first', `min', `max', and `add'.
15768         Report offset evaluation errors with `c-benign-error' so that some kind
15769         of reindentation still is done.
15771         * progmodes/cc-engine.el (c-guess-basic-syntax):
15772         Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
15773         `arglist-close'.
15775         * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
15776         situations for `arglist-cont-nonempty' and `arglist-close'.
15778         * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
15780         * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
15781         cc-bytecomp-boundp' in a number of places.
15783         * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
15784         macro related issue.
15786 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15788         * progmodes/cc-awk.el: Change the terminology of regexps: A char
15789         list is now [asdf], a char class [:alpha:].
15790         Include code for char classes.
15791         Set c-awk-NL-prop on lines ending in open strings.  (Bug fix.)
15792         Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
15794         Remove (nearly all of) the cruft associated with AWK Mode's former
15795         concept of "virtual semicolons":
15797         Adapt c-beginning-of-statement, c-end-of-statement (together with
15798         subfunctions) to use the new notion of "virtual semicolon" in
15799         place of the old awkward special handling for AWK.  There remains
15800         much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
15801         * progmodes/cc-cmds.el:
15802         (c-ascertain-adjacent-literal): In the backwards direction, now
15803         recognises AWK regexp delimiters as string delimiters.
15804         (c-after-statement-terminator-p): Adapt for virtual semicolons;
15805         check more rigorously for "end of macro".
15806         (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
15807         virtual semicolons;
15808         (c-beginning-of-statement): Adapt for virtual semicolons; Separate
15809         out the code for forward movement into ...
15810         (c-end-of-statement): Now contains the code for forward movement,
15811         adapted for virtual semicolons.
15813         * progmodes/cc-engine.el:
15814         (c-ws*-string-limit-regexp): New regexp.
15815         (c-forward-single-comment, c-backward-single-comment): Comment out
15816         the (now redundant) "special" AWK stuff.
15818         * progmodes/cc-styles.el, cc-vars.el: Change the settings of
15819         c-string-par-start, c-string-par-separate to be more like Text
15820         Mode than Fundamental Mode.
15822 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15824         * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
15825         to the fontified region so that fontification doesn't occur
15826         outside it (could happen e.g. when fontifying a line with an
15827         unfinished declaration).
15829 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15831         * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
15832         start of the file.  ^L now separate sections of the file.
15833         (c-awk-non-eol-esc-pair-re,     c-awk-blank-or-comment-line-re)
15834         (c-awk-one-line-possibly-open-string-re)
15835         (c-awk-regexp-one-line-possibly-open-char-class-re)
15836         (c-awk-one-line-possibly-open-regexp-re)
15837         (c-awk-one-line-non-syn-ws*-re): New defonsts.
15838         (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
15840         Amend the concept of "virtual semicolons" (in the indentation
15841         engine) for languages like AWK, such that they are now
15842         conceptually attached to end of the last token of a statement, not
15843         the end of the line.  (In AWK Mode, however, the pertinent text
15844         property is still physically set on the EOL.)  Remove the specific
15845         tests for awk-mode, thus facilitating the introduction of other
15846         language modes where EOLs can end statements.
15847         (Note: The funtionality in cc-cmds.el, specifically
15848         c-beginning/end-of-statement has yet to be amended.)
15850         * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
15851         New macros.
15853         * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
15854         c-stmt-delim-chars.  New c-lang-defvars: c-at-vsemi-p-fn,
15855         c-vsemi-status-unknown-p-fn (in a new page).
15857         * progmodes/cc-engine.el: In c-beginning-of-statement-1,
15858         c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
15859         numerous awkward forms like
15860         (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
15861         with (c-at-vsemi-p).  Fix a few typos.  In c-guess-basic-syntax, new
15862         variable before-ws-ip, the place just after char-before-ip appears.
15864         * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
15865         a comment.
15867 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15869         * progmodes/cc-cmds.el (c-electric-brace): Clean up using
15870         `c-tentative-buffer-changes'.
15872         * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
15873         convert to macro to choose between Emacs and XEmacs at compile time.
15875         (c-set-region-active): New set counterpart to `c-region-is-active-p'.
15877         (c-tentative-buffer-changes): New macro to handle temporary buffer
15878         changes in a convenient way.
15880         (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
15881         for `c-tentative-buffer-changes'.
15883         * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
15884         the checks for paren sexps between the point and the keyword, to
15885         avoid some false alarms.
15887         * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
15888         Fixed a situation where an error could be thrown for unbalanced
15889         parens.  Changed to make use of c-keyword-member' to avoid some
15890         repeated regexp matches.
15892         (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
15893         These language variable are no longer necessary.
15895         (c-block-stmt-kwds): New language constant used by
15896         c-looking-at-inexpr-block'.
15898         (c-guess-basic-syntax): Remove an optional check that looked at
15899         the existence of the now removed language variables.
15901         * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
15902         (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
15903         object instantiation expressions as declarations in some contexts.
15904         This bug only affected languages where the declarator can't be
15905         enclosed in parentheses.
15907         * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
15908         insert newlines before and after substatement braces.
15910         * progmodes/cc-engine.el: Improved the heuristics for recognizing
15911         function declaration headers and the handling of C++ style member
15912         init lists.
15914         (c-just-after-func-arglist-p): Rewritten to use
15915         `c-forward-decl-or-cast-1'.  Now behaves a bit differently too.
15917         (c-beginning-of-member-init-list): Remove since it isn't used anymore.
15919         (c-guess-basic-syntax): Adapt case 5B for the new
15920         `c-just-after-func-arglist-p'.  Merge cases 5B.1 and 5B.3.
15921         Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
15922         covers all cases now).
15924         * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
15926 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15928         * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
15929         c-string-par-start/separate c-sentence-end-with-esc-eol,
15930         initialised in c-setup-paragraph-variables, used in string
15931         scanning subroutines of c-beginning-of-statement.
15933         * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
15934         which precedes the newly inserted `{'.
15936 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15938         * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
15939         function for declaration level blocks.  It should now cope with
15940         templates better and also be a lot more comprehensible.
15942         (c-looking-at-decl-block): The new function.
15944         (c-search-uplist-for-classkey): The old one.  It's now a wrapper
15945         for compatibility.
15947         (c-add-class-syntax, c-guess-continued-construct)
15948         (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
15950         (c-decl-block-key): Change to tell apart ambiguous and
15951         unambiguous keywords.  Pike specials are now handled directly in
15952         the code instead.
15954         (c-block-prefix-disallowed-chars, c-block-prefix-charset):
15955         New language constants and variables to make the backward skip in
15956         `c-looking-at-decl-block' as tight as possible.
15958         (c-nonsymbol-token-char-list): New language constant.
15960         * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
15961         find balanced template arglists backwards.
15963         * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
15964         making char classes for `c-syntactic-skip-backward'.
15966         * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
15967         16D - can't be a class-close at that point.
15969         * progmodes/cc-engine.el (c-guess-basic-syntax)
15970         (c-add-class-syntax): Don't narrow out the enclosing declaration
15971         level.  This makes everything a lot easier, and it was actually
15972         only four small places that needed it to work.  Some places that
15973         previously did `widen' are removed now, which has the effect that
15974         `c-guess-basic-syntax' never will look at things outside the
15975         current narrowment now.  The anchor position for `topmost-intro'
15976         is affected by this, but it was so bogus it was basically useless
15977         before, and now it's equally bogus but in a slightly different way.
15979         (c-narrow-out-enclosing-class): Gone.
15981         (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
15982         the narrowed region.
15984         (c-least-enclosing-brace): Remove silly optional argument.
15986         * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
15987         the point could be left directly after an open paren when finding
15988         the beginning of the first decl in the block.
15990         * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
15991         Specify which submatch to use.
15993         * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
15995         (c-decl-start-re): No longer any need for special treatment of
15996         ObjC due to the above.
15998         (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
15999         presumably follows C in that regard.
16001         * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
16002         New language constants to specify operator tokens inside
16003         identifiers in a more high level way.
16005         (c-opt-identifier-prefix-key): New internal language constant.
16007         (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
16008         (c-identifier-start, c-identifier-key): Now completely calculated
16009         from other constants.
16011         (c-identifier-last-sym-match): Decommission since it's no longer used.
16013         (c-operators): Use `c-identifier-ops'.  Document `postfix-if-paren'.
16015         * progmodes/cc-engine.el (c-forward-name): Remove the
16016         optimization when c-identifier-key is equal to c-symbol-key since
16017         it doesn't work in byte compiled files.  Don't record empty
16018         regions as identifiers.
16020         * progmodes/cc-langs.el (c-filter-ops): New helper function to
16021         simplify access to `c-operators' and its likes.
16023         (c-operator-list, c-all-op-syntax-tokens)
16024         (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
16025         (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
16026         (c-primary-expr-regexp, c-cast-parens): Use it.
16028         * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
16029         an explicit language in functions.
16031         * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
16032         variant of adornment.
16034         * progmodes/cc-langs.el (c-any-class-key): Remove unused language
16035         variable.
16037         (c-type-decl-prefix-key): Remove some now unnecessary cruft from
16038         the Pike value.
16040         * progmodes/cc-engine.el (c-on-identifier)
16041         (c-simple-skip-symbol-backward): Small fix for handling "-"
16042         correctly in `skip-chars-backward'.  Affected the operator lfun
16043         syntax in Pike.
16045         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
16046         diagnostic message about precompiled language vars not being used.
16048         * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
16049         "__attribute__" is followed by a parenthesis.
16051         (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
16052         (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
16053         language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
16055         * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
16056         Internal cleanups to properly detect the declared identifiers in
16057         various declarations.
16059         (c-decl-start-kwds): New language constant to recognize
16060         declarations that can start anywhere.  Used for class declarations
16061         in Pike.
16063         (c-specifier-key, c-not-decl-init-keywords)
16064         (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
16065         (c-find-decl-spots): Implement `c-decl-start-kwds'.
16067         (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
16068         (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
16069         handling of the compiler specific extension keywords into a new
16070         language constant `c-decl-hangon-kwds' that defines keyword
16071         clauses to be ignored in declarations.
16073         (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
16074         past unrecognized tokens when handling `c-colon-type-list-kwds'.
16075         Necessary to stop at the declared identifier in e.g. IDL valuetype
16076         declarations.
16078         (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
16079         (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
16080         (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
16081         (c-forward-decl-or-cast-1): Recognize the declared identifier in
16082         class and enum declarations as such and not as part of the type.
16084         (c-forward-decl-or-cast-1, c-forward-label): Relax the
16085         interpretation of PRECEDING-TOKEN-END when there's no preceding token.
16087         (c-forward-decl-or-cast-1): Don't disregard sure signs of
16088         declarations when there's some syntax error later on.
16090         (c-complex-decl-matchers): Did away with a reference to
16091         `c-specifier-key'.
16093         * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
16094         value - this variable is always dynamically bound.
16096         * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
16097         * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
16098         * cc-cmds.el, cc-defs.el: Change the policy for marking up
16099         functions that might do hidden buffer changes: All such internal
16100         functions are now marked instead of those that don't.
16102         (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
16103         (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
16104         (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
16105         (c-literal-type): Allow these functions to make hidden buffer changes,
16106         so that they are free to use text property caching later on.
16108         (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
16109         (c-electric-brace, c-electric-slash, c-electric-star)
16110         (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
16111         (c-electric-paren, c-electric-continued-statement, c-indent-command)
16112         (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
16113         (c-context-line-break): Add `c-save-buffer-state' calls to comply
16114         with the changed semantics of the functions above.
16116         * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
16117         when macros occur in obscure places.  Optimized the sexp movement
16118         a bit.
16120 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16122         Enhancements for c-beginning-of-statement to work in AWK Mode:
16124         * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
16125         (completed statement) with `}' (statement completed by closing
16126         brace or semicolon) and `$' (statement completed by EOL).
16128         (c-awk-virtual-semicolon-ends-prev-line-p)
16129         (c-awk-virtual-semicolon-ends-line-p)
16130         (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
16131         (c-awk-at-statement-end-p): New functions.
16133         * progmodes/cc-cmds.el: Simplify the structure of functions
16134         c-forward-over-illiterals, c-back-over-illiterals.  Enhance these
16135         two functions and c-beginning-of-statement to handle AWK Mode.
16137         * progmodes/cc-engine.el: Enhance c-forward-single-comment,
16138         c-backward-single-comment for AWK mode.  Attempt to clarify their
16139         doc-strings.
16141         * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
16143 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16145         * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
16146         label handling.  Labels are now recognized in a uniform and more
16147         robust way, regardless of context.  Text properties are put on all
16148         labels to recognize the following declarations better.
16149         Multiword labels are handled both in indentation and fontification for
16150         the benefit of language extensions like Qt.  For consistency, keywords
16151         in labels are now fontified with the label face instead.
16152         That also applies to "case" and "default".
16154         (c-beginning-of-statement-1): Fix some bugs in the label
16155         handling.  Disregard `c-nonlabel-token-key' in labels that begin
16156         with `c-label-kwds'.
16158         (c-find-decl-spots): Support that the callback adds more
16159         `c-decl-end' spots to find.
16161         (c-forward-decl-or-cast-1): Don't treat a list of plain
16162         identifiers followed by a colon as a declaration.
16164         (c-forward-label): New function to recognize labels.
16166         (c-guess-basic-syntax): Replace uses of `c-label-key' with
16167         `c-forward-label'.  Moved the label recognition cases (14 and 15)
16168         earlier since they aren't so context sensitive now.  Handle labels
16169         on the top level gracefully.  Moved access label recognition to
16170         the generic label case (CASE 15) - removed CASE 5E.
16172         (c-font-lock-declarations): Add recognition of labels in the
16173         same round since we need to handle labels in parallell with other
16174         declarations to recognize both accurately.  It should also improve
16175         speed.
16177         (c-simple-decl-matchers, c-basic-matchers-after):
16178         Move `c-font-lock-labels' so that it only is used on decoration level 2
16179         since `c-font-lock-declarations' handles it otherwise.
16181         (c-complex-decl-matchers): Remove the simplistic recognition of
16182         access labels.
16184         (c-decl-prefix-re): Remove the kludges that was necessary to cope
16185         with labels earlier.
16187         (c-decl-start-re): New language variable to make
16188         `c-font-lock-declarations' stop for the special protection labels
16189         in Objective-C that start with `@'.
16191         (c-label-key): Remove since it's no longer used.
16193         (c-recognize-colon-labels, c-label-prefix-re): New language
16194         constants to support recognition of generic colon-terminated labels.
16196         (c-type-decl-end-used): `c-decl-end' is now used whenever there
16197         are colon terminated labels.
16199         * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
16200         first argument starts with a special brace list.
16202         * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
16203         (c-font-lock-declarations): Break out the declaration and cast
16204         recognition from `c-font-lock-declarations' to a new function, so
16205         that it can be used in the indentation engine.
16207         * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
16208         up to the start of the literal.  Fixed bug with the point on the
16209         wrong side of the search limit that could happen when the start
16210         position is inside a literal.
16212         * progmodes/cc-engine.el (c-parse-state)
16213         (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
16214         so that it's kept a little bit back to increase the hit rate.
16216         (c-parse-state): Change the macro handling and fixed some
16217         glitches.  Macro context is checked more often than necessary now,
16218         but otoh less garbage conses are generated.
16220         * progmodes/cc-engine.el (c-parse-state)
16221         (c-invalidate-state-cache): Cache the last position where
16222         `c-state-cache' applies.  This can speed up refontification quite
16223         a bit in blocks where there are many non-brace parens before the point.
16225         (c-state-cache-end): New variable for this.
16227         (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
16228         cache variable.
16230         * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
16231         get close initial continue positions when the start position is
16232         inside a literal or macro.  Do not call the callback for spots
16233         before the start position (which can happen e.g. for `c-decl-end'
16234         spots inside comments).  Optimize better in special cases when the
16235         region is a single line inside a literal or macro (typically when
16236         the current line is refontified).
16238         * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
16239         to `c-add-stmt-syntax' - there's no need to explicitly whack off
16240         entries from the paren state.
16242         * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
16243         special case for "else if" clauses.
16245         * progmodes/cc-engine.el (c-looking-at-inexpr-block)
16246         (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
16248         * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
16249         New language variable to recognize the gcc extension with statement
16250         blocks inside expressions.
16252         * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
16253         it somewhat more comprehensible.  The argument AT-BLOCK-START is
16254         no longer used and hence removed.
16256         (c-guess-continued-construct, c-guess-basic-syntax): Update calls
16257         to `c-add-stmt-syntax'.
16259         * progmodes/cc-engine.el (c-backward-to-decl-anchor):
16260         Use `c-beginning-of-statement-1' instead of duplicating parts of it.
16261         This fixes bogus label recognition.
16263         * progmodes/cc-engine.el (c-add-type, c-check-type)
16264         (c-forward-name, c-forward-type): Improve storage of template
16265         types in `c-found-types' so that they can be recognized better.
16267         (c-syntactic-content): Add option to skip past nested parens.
16269         * progmodes/cc-engine.el (c-forward-name):
16270         Set `c-last-identifier-range' all the time.  It's less work that way.
16271         Handle that there might not be an identifier to store in
16272         `c-last-identifier-range'.
16274         (c-forward-type): Handle that `c-last-identifier-range' might be
16275         nil from `c-forward-name'.
16277         * progmodes/cc-defs.el (c-safe-scan-lists)
16278         (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
16280         * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
16281         to work even if the form fails.
16283         * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
16284         down in a large file in one go.
16286         (c-get-fallback-start-pos): New helper function for `c-parse-state'.
16288         * progmodes/cc-align.el (c-lineup-assignments): New lineup
16289         function which is like `c-lineup-math' but returns nil instead of
16290         `c-basic-offset' when it doesn't match.
16292         (c-lineup-math): Change to use `c-lineup-assignments'.
16294 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16296         * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
16297         c-beginning-of-statement.  New subfunctions
16298         c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
16300 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16302         * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
16303         hardcoded char classes whereever possible.  Changed a couple of
16304         places to use skip by syntax instead of skip by char class.
16306         * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
16307         Fix a bug in the regexp that caused extreme backtracking.
16309         * progmodes/cc-langs.el (c-block-comment-starter)
16310         (c-block-comment-ender): New language constants to specify in a
16311         single place how block comments look.
16313         (c-comment-start-regexp, c-block-comment-start-regexp)
16314         (comment-start, comment-end, comment-start-skip)
16315         (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
16316         (c-syntactic-ws, c-nonempty-syntactic-ws)
16317         (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
16318         `c-line-comment-starter', `c-block-comment-starter' and
16319         `c-block-comment-ender'.
16321         (c-block-comment-regexp, c-unterminated-block-comment-regexp):
16322         New language constants to break up things a bit.
16324         (c-simple-ws): New language constant for simple whitespace.
16326         * progmodes/cc-defs.el (c-concat-separated): New convenience function.
16328         * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
16329         in `regexp-opt' in Emacs 20 and XEmacs when strings contain
16330         newlines.  Allow and ignore nil elements in the list.
16332 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16334         * progmodes/cc-cmds.el: Comment out a (n almost certainly
16335         superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
16337         * progmodes/cc-cmds.el: Tidy up the comments in
16338         c-beginning-of-statement and subfunctions.
16340         * progmodes/cc-awk.el: Replace calls to put-text-property to the
16341         more flexible c-put-char-property and c-clear-char-properties.
16342         Add the author's email address.
16344         * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
16346         * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
16347         closing "*/" of a block comment.
16349         * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
16350         subfunctions) so that it works at BOB and EOB.
16352         * progmodes/cc-cmds.el, cc-vars.el: More updating of
16353         c-beginning-of-statement, including new variable
16354         c-block-comment-start-regexp.
16356 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16358         * progmodes/cc-langs.el (c-known-type-key): Optimize simple
16359         symbols from `*-font-lock-extra-types' so that there's no need to
16360         use `regexp-opt' on those lists.
16362         * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
16363         `c-type-modifier-kwds' is empty.
16365         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
16366         there are several strings on the same line.
16368         * progmodes/cc-engine.el (c-literal-limits): Remove the
16369         compatibility function for older emacsen.  `c-literal-limits-fast'
16370         has now taken the place of this function.
16372         * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
16373         with older emacsen: We now require `pps-extended-state'.
16375 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16377         * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
16378         which obviates the need to hack sentence-end.  This now handles
16379         escaped newlines in strings correctly.  Correct minor bugs in
16380         c-move-over-sentence and in c-beginning-of-statement.
16382         * progmodes/cc-cmds.el (c-beginning-of-statement (and
16383         subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
16384         that movement over macros and code are rigorously separated from
16385         eachother.  Correct a few incidental bugs.
16387         * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
16388         Improve its doc-string.  Improve the handling of certain specific cases.
16390 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16392         * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
16393         (c-guess-basic-syntax): Change the way class-level labels are
16394         recognized; they can now contain essentially any symbols.
16396         (c-opt-extra-label-key): New language variable to cope with the
16397         special protection label syntax in Objective-C.
16399         (c-opt-access-key): Remove; this is now handled better by
16400         `c-nonlabel-token-key' and `c-opt-extra-label-key'.
16402         (c-complex-decl-matchers): Update to handle that
16403         `c-opt-access-key' no longer exists.
16405         * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
16406         improved label recognition in `c-beginning-of-statement-1'.
16408         * progmodes/cc-engine.el (c-beginning-of-member-init-list):
16409         Recognize bitfields better.
16411         * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
16412         Remove some cruft and fixed a bug that could cause it to go to a
16413         position further down.
16415         * progmodes/cc-langs.el, cc-engine.el
16416         (c-beginning-of-statement-1): Improve detection of labels in
16417         declaration contexts.
16419         (c-beginning-of-decl-1): Use it.
16421         (c-nonlabel-token-key): New language constant and variable needed
16422         by `c-beginning-of-statement-1'.
16424         * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
16425         manifested itself due to the correction in `c-forward-sexp'.
16427         * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
16428         Make these behave as documented when used at the buffer limits.
16430         * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
16431         (c-type-decl-end-used): Made this a language variable.
16433         * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
16434         correctly when `combine-after-change-calls' is used together with
16435         temporary narrowings.
16437         * progmodes/cc-engine.el (c-beginning-of-statement-1):
16438         Report labels correctly when the start point is immediately after the
16439         colon.
16441         * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
16442         Remove since it isn't used anymore.
16444         * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
16445         bracket arglists such as template parens in C++.
16447         * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
16448         in the last check-in.  Some optimization.
16450         * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
16451         where it could stop at the same level in a preceding sexp when
16452         PAREN-LEVEL is set.
16454         * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
16455         text property lookup only when it's needed.
16457         * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
16458         Change the policy for paren marked angle brackets to be more
16459         persistent; once marked they remain marked even when they're found
16460         to be unbalanced in the searched region.  This should keep the
16461         paren syntax around even when individual lines are refontified in
16462         multiline template arglists.
16464         (c-parse-and-markup-<>-arglists): New dynamically bound variable
16465         to control markup so that incorrect angle bracket arglists aren't
16466         marked in contexts where the correct value for
16467         `c-disallow-comma-in-<>-arglists' isn't known.
16469         (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
16470         argument has become `c-parse-and-markup-<>-arglists'.
16472         (c-remove-<>-arglist-properties): Remove - no longer used.
16474         (c-after-change-check-<>-operators): New function used on
16475         `after-change-functions' to avoid that "<" and ">" characters that
16476         are part of longer operators have paren syntax.
16478         (c-<>-multichar-token-regexp): New language variable used by
16479         `c-after-change-check-<>-operators'.
16481         (c-after-change): Call `c-after-change-check-<>-operators'.
16483         (c-font-lock-<>-arglists): Use the context properties set by
16484         `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
16485         correctly to avoid doing invalid markup.
16487         (c-font-lock-declarations): Remove code that undoes the invalid
16488         markup done by `c-font-lock-<>-arglists'.
16490         (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
16491         after `c-font-lock-declarations'.
16493         * progmodes/cc-engine.el (c-syntactic-skip-backward):
16494         Add paren-level feature.
16496         (c-guess-basic-syntax): Improve the anchor position for
16497         `template-args-cont' in nested template arglists.  There's still
16498         much to be desired in this area, though.
16500 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16502         * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
16503         Make the "Text Filling and Line Breaking" commands work for AWK buffers.
16505 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16507         * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
16508         Removed; (c-major-mode-is 'awk-mode) can be used instead now.
16510         * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
16511         it doesn't work no longer are supported.
16513         * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
16514         * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
16515         requires support for the syntax-table' text property, which rules
16516         out Emacs 19 and XEmacs < 21.4.  Removed various compatibility
16517         cruft associated with those versions.
16519         * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
16520         for the `syntax-table' text property, which rules out Emacs 19 and
16521         XEmacs < 21.4.  Removed various compatibility cruft associated
16522         with those versions.
16524         * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
16525         support for the `syntax-table' text property.
16527         * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
16528         variable and use an extra quoted face name instead.  All the
16529         emacsen flavors handle that correctly.
16531         * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
16532         (c-font-lock-declarators, c-font-lock-declarations)
16533         (c-complex-decl-matchers, c-basic-matchers-after): Use a text
16534         property to mark the items in in declarator lists to handle
16535         refontification inside multiline declarations better.
16537         * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
16538         construct like "a * b = c;" as a declaration.
16540 2005-12-08  Kim F. Storm  <storm@cua.dk>
16542         * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
16543         (cua-rectangle-modifier-key): ... this.  New defcustom.  Can now
16544         select either meta, hyper, or super modifier for rectangle commands.
16545         (cua--rectangle-modifier-key): New defvar.
16546         (cua--M/H-key): Use it.  Remove special case for `space'.
16547         (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
16548         on X, to meta otherwise.  Always bind C-return to toggle
16549         rectangle.  Pass ?\s instead of `space' to cua--M/H-key.
16551         * emulation/cua-rect.el (cua-help-for-rectangle):
16552         Use cua--rectangle-modifier-key.  Handle super modifier too.
16553         (cua--init-rectangles): Always bind C-return to toggle rectangle.
16554         Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
16556         * ido.el: Move Acknowledgements and History after Commentary.
16557         Minor changes to Commentary.
16559         * emulation/cua-base.el (cua--select-keymaps): Enable repeat
16560         keymap if cua--prefix-override-timer is `shift'.
16561         (cua--shift-control-prefix): New function; emulate "type prefix
16562         key twice" functionality to handle shifted prefix key override.
16563         (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
16564         New commands.
16565         (cua--init-keymaps): Bind them to S-C-c and S-C-x.
16567 2005-12-08  Carsten Dominik  <dominik@science.uva.nl>
16569         * textmodes/org.el (org-insert-heading): Try to do items before
16570         headings.
16571         (org-agenda-mode): Quote `org-agenda-mode-hook'.
16572         (org-insert-item): New function.
16573         (org-renumber-ordered-list): Don't skip to higher level lists.
16575 2005-12-08  Juri Linkov  <juri@jurta.org>
16577         * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
16579         * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
16581         * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
16583         * pcvs.el (defun-cvs-mode): Put `definition-name' property on
16584         the constructed function name fun-1.
16586         * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
16587         because such links don't lead to parent documentation.
16589 2005-12-08  Kenichi Handa  <handa@m17n.org>
16591         * descr-text.el (describe-char): Use *Help-2* buffer if the
16592         current buffer is *Help*.  Call describe-text-properties while
16593         setting the original buffer.
16595 2005-12-07  Bill Wohler  <wohler@newt.com>
16597         * files.el (auto-mode-alist): Remove mh-letter-mode.  Unnecessary,
16598         and causes problems with non-MH users (such as Gnus users).
16600 2005-12-08  Nick Roberts  <nickrob@snap.net.nz>
16602         * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
16603         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
16604         (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
16605         command "info sources".  Move calls to GDB command "list".
16606         (gdb-find-file-hook): Just use gdb-source-file-list.
16607         (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
16608         (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
16609         (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
16610         (gdb-data-list-register-values-handler): Use correct trigger name.
16612 2005-12-07  Kim F. Storm  <storm@cua.dk>
16614         * ido.el (ido-completion-map): Rename from ido-mode-map.
16615         (ido-common-completion-map, ido-file-completion-map)
16616         (ido-file-dir-completion-map, ido-buffer-completion-map):
16617         Rename from ido-mode-....-map.
16618         (ido-init-completion-maps): Rename from ido-init-mode-maps.
16619         (ido-setup-completion-map): Rename from ido-define-mode-map.
16620         (ido-read-internal): Bind minibuffer-local-filename-completion-map
16621         to ido-completion-map.
16623 2005-12-07  Kenichi Handa  <handa@m17n.org>
16625         * international/mule-cmds.el
16626         (set-display-table-and-terminal-coding-system): If the coding
16627         system specified in `unibyte-display' property is different from
16628         the arg coding-system, don't setup standard-display-table.
16630 2005-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16632         * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
16633         that comments end at \n, regardless of selective-display.
16635 2005-12-07  Nick Roberts  <nickrob@snap.net.nz>
16637         * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
16638         (gdb-version): New variables.
16639         (gdb-source-file-list, gdb-register-names)
16640         (gdb-changed-registers): New variables for use with GDB 6.4+.
16641         (gdb-ann3): Replace with...
16642         (gdb-init-1, gdb-init-2): ...two new functions.
16643         (gdba, gdb-prompt): Call gdb-init-1.
16644         (gdb-get-version): New function.  Call gdb-init-2 from here.
16645         (gud-watch): Make it work with mouse events too.
16646         (gdb-post-prompt): Don't add to queue until GDB version is known.
16647         (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
16648         (gdb-locals-mode): Use gdb-version.
16649         (gdb-memory-format-map, gdb-memory-unit-map)
16650         (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
16651         (gdb-locals-font-lock-keywords-1)
16652         (gdb-locals-font-lock-keywords-2): New variables.
16653         (gdb-find-file-hook): Make it work with GDB 6.4+ too.
16654         (gdb-set-gud-minor-mode-existing-buffers-1)
16655         (gdb-var-list-children-1, gdb-var-list-children-handler-1)
16656         (gdb-var-update-1, gdb-var-update-handler-1)
16657         (gdb-data-list-register-values-handler)
16658         (gdb-data-list-register-values-custom)
16659         (gdb-get-changed-registers, gdb-get-changed-registers-handler)
16660         (gdb-stack-list-locals-handler, gdb-get-register-names):
16661         New functions for use with GDB 6.4+.
16662         (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
16663         (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
16664         (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
16665         (gdb-stack-list-locals-regexp)
16666         (gdb-data-list-register-names-regexp): New regexps for use with
16667         GDB 6.4+.
16669 2005-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16671         * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
16673 2005-12-06  Nozomu Ando  <nand@mac.com>
16675         * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
16676         prompts work for AUTH PLAIN.  Also reported by Steve Allan
16677         <seallan@verizon.net>.
16679 2005-12-06  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
16681         * frame.el (set-frame-parameter): Add doc string.
16683 2005-12-06  Carsten Dominik  <dominik@science.uva.nl>
16685         * textmodes/org.el (org-occur-highlights): New variable.
16686         (org-highlight-new-match, org-remove-occur-highlights): New functions.
16687         (org-highlight-sparse-tree-matches): New option.
16688         (org-do-occur): New function.
16689         (org-get-heading): Make it work also at beginning of line.
16690         (org-category-table): New variable.
16691         (org-get-category-table, org-get-category)
16692         (org-camel-to-words, org-link-search): New functions.
16693         (org-select-this-todo-keyword): New variable.
16694         (org-todo-list): New command.
16695         (org-shiftright, org-shiftleft): New commands.
16696         (org-agenda-todo): Add prefix argument.
16697         (org-show-hierarchy-above): New option.
16698         (org-show-todo-tree): Numerical prefix creates tree for specific
16699         TODO keyword.
16700         (org-outline-level): New function, to assign a level to plain
16701         lists items.
16702         (org-cycle-include-plain-lists): New option.
16703         (org-mode): Use `org-outline-level' as value of `outline-level'.
16704         (org-cycle): Temporarily switch `outline-regexp' if
16705         `org-cycle-include-plain-lists' is non-nil.
16706         (org-start-icalendar-file): Fix format bug.
16707         (org-agenda-get-day-entries): Create category table.
16708         (org-agenda-get-todos, org-agenda-get-timestamps)
16709         (org-agenda-get-deadlines, org-agenda-get-scheduled)
16710         (org-agenda-get-blocks): Use `org-get-category'.
16711         (org-context-in-file-links): Rename from
16712         `org-line-numbers-in-file-links'.
16714 2005-12-06  Romain Francoise  <romain@orebokech.com>
16716         * window.el (balance-windows): Delete extraneous third arg in call
16717         to `enlarge-window'.
16719 2005-12-06  Kenichi Handa  <handa@m17n.org>
16721         * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
16723 2005-12-06  Nick Roberts  <nickrob@snap.net.nz>
16725         * progmodes/gdb-ui.el (gdb-var-create-handler)
16726         (gdb-var-evaluate-expression-handler, gdb-frame-handler)
16727         (gdb-var-list-children-handler, gdb-var-update-handler):
16728         Current buffer is already gdb-partial-output-buffer, don't
16729         make it current again.
16731 2005-12-05  Luc Teirlinck  <teirllm@auburn.edu>
16733         * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
16734         (list-buffers-noselect): Use it.
16736 2005-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16738         * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
16739         (mail-yank-ignored-headers): Use regexp-opt.
16740         (mail-mode-map): Move initialization into declaration.
16741         (mail-sent-via): Remove unused shadowed var `to-line'.
16742         (mail-mailer-swallows-blank-line): Use with-temp-buffer.
16743         (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
16744         (mail-do-fcc): Use dolist and push.
16745         (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
16746         (mail-yank-ignored-headers): Don't autoload.
16748 2005-12-05  Kenichi Handa  <handa@m17n.org>
16750         * international/mule-cmds.el (set-language-info-internal): New fun.
16751         (set-language-info): Call set-language-info-internal to update
16752         language-info-alist.  If LANG-ENV is the current one, call
16753         set-language-environment to make INFO effective now.
16754         (set-language-info-alist): Likewise.
16755         (locale-language-names): With locale "en", use English
16756         lang. env. but set the default codings to iso-8859-1.
16758 2005-12-04  Nick Roberts  <nickrob@snap.net.nz>
16760         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
16761         (gdb-speedbar-auto-raise): Echo new state in minibuffer.
16762         (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
16763         for plain strings.
16764         (gdb-frames-mode): Remove redundant call to font-lock-mode.
16765         (gdb-all-registers): Rename from toggle-gdb-all-registers.
16766         Create registers buffer if necessary.  Echo new state in minibuffer.
16767         (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
16769 2005-12-03  Chong Yidong  <cyd@stupidchicken.com>
16771         * info.el (Info-fontify-node): Match external links using
16772         non-directory part of filename.
16774 2005-12-04  Juri Linkov  <juri@jurta.org>
16776         * font-core.el (global-font-lock-mode): Use define-global-minor-mode
16777         instead of easy-mmode-define-global-mode.  Add `:group font-lock'.
16778         (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
16779         because there is no customization option for it.
16781         * font-lock.el (lisp-font-lock-keywords-1):
16782         Add define-global-minor-mode.
16784         * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
16786         * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
16787         properties on the constructed variable names.
16789         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
16790         Put `definition-name' properties on the constructed function names
16791         next-sym and prev-sym.
16793         * emacs-lisp/find-func.el (find-function-regexp):
16794         Add define-global-minor-mode.  Replace `easy-mmode-define-global-mode'
16795         with `easy-mmode-define-[a-z-]+'.  Add easy-menu-define.
16796         (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
16797         and easy-menu-define.
16799         * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
16800         easy-mmode-define-global-mode and define-global-minor-mode.
16801         (lisp-imenu-generic-expression): Add define-global-minor-mode.
16803         * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
16804         instead of easy-mmode-define-global-mode.
16806         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
16807         Use define-minor-mode instead of easy-mmode-define-minor-mode.
16809         * cus-edit.el (customize-group, customize-group-other-window):
16810         Filter out autoloaded options from the group completion list by
16811         using heuristics that autoloaded groups don't have `custom-autoload'
16812         property on their symbols (they have only `custom-loads').
16814         * simple.el (completion-setup-function): Put completions-common-part
16815         face on complete completion string too (i.e. completion string
16816         without completions-first-difference face).
16818         * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
16820 2005-12-03  Eli Zaretskii  <eliz@gnu.org>
16822         * view.el (view-mode): Doc fix.
16824         * disp-table.el (standard-display-european): Add to the warning
16825         message a reference to the doc string.
16827         * play/yow.el (apropos-zippy): Call print-help-return-message,
16828         similar to other Help and Apropos commands.
16830         * help.el (print-help-return-message): If pop-up-frames is
16831         non-nil, set up help-return-method to delete the help window and,
16832         possibly, its frame as well, and don't display message about
16833         scrolling the help window.  Doc fix.
16834         (help-return-method): Doc fix.
16836 2005-12-03  Martin Rudalics  <rudalics@gmx.at>
16838         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
16839         whereby names of length one or names starting with a
16840         symbol-constituent character would not be returned.
16842 2005-12-03  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
16844         * subr.el (atomic-change-group): Add edebug and indentation spec.
16846 2005-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16848         * completion.el (save-completions-file-name): Fix typo in last change.
16850 2005-12-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
16852         * info.el: Move back/forward history to the beginning of the tool bar.
16854 2005-12-02  Ken Manheimer  <ken.manheimer@gmail.com>
16856         * allout.el (eval-when-compile): Remove unnecessary load of cl.
16857         Add fset of allout-real-isearch-abort during compile to fix
16858         byte-compilation warnings.
16859         (allout-mode-p): Move definition of this macro above all uses, or
16860         byte compilation in barren Emacs (eg, during Emacs build) will
16861         lack the definition.
16862         (allout-mode): Move this variable above any uses, or byte
16863         compilation will fail.
16864         (allout-resolve-xref): Remove use of personal file-reference function.
16865         (allout-toggle-current-subtree-encryption): Do the current (ie,
16866         visible containing) topic, rather than nearest around point.  Doc fix.
16867         (allout-toggle-subtree-encryption): New function, workhorse that
16868         works on nearest topic containing point.
16869         (allout-encrypt-string): Signal requirement for newer version of pgg.
16870         (allout-resumptions): Doc fix.
16872 2005-12-02  Eli Zaretskii  <eliz@gnu.org>
16874         * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
16876 2005-12-02  Agustin Martin  <agustin.martin@hispalinux.es>
16878         * textmodes/flyspell.el (flyspell-external-point-words):
16879         Consider a misspelling as found in the string search if: (a) misspelling
16880         and found string lengths match, or (b) misspelling is found as
16881         element in a boundary-chars separated longer string, or (c)
16882         ispell-program-name is really ispell and misspelling is found as
16883         part of a TeX string.  After successful match move beginning of
16884         search region to end of match.  Warn about not found misspellings
16885         once the process is done.
16886         (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
16888 2005-12-02  Nick Roberts  <nickrob@snap.net.nz>
16890         * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
16891         tool bar (removed inadvertently).
16893 2005-12-02  Juri Linkov  <juri@jurta.org>
16895         * log-view.el (log-view-diff): Clarify doc string.
16897 2005-12-01  Bill Wohler  <wohler@newt.com>
16899         * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
16900         triggers lm-verify errors.
16902 2005-12-01  Luc Teirlinck  <teirllm@auburn.edu>
16904         * simple.el (transient-mark-mode, line-number-mode)
16905         (column-number-mode, size-indication-mode): Remove `:require nil'.
16907 2005-12-01  Nick Roberts  <nickrob@snap.net.nz>
16909         * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
16910         in the margin also.
16911         (gdb-breakpoints-mode-map): Use D instead of d for
16912         gdb-delete-breakpoint.
16913         (gdb-get-frame-number): Require a number to match on.
16914         (gdb-threads-mode-map): Add follow-link binding.
16916 2005-11-30  Jason Rumney  <jasonr@gnu.org>
16918         * isearch.el (isearch-mode-map): Avoid exiting search on
16919         language-change event.
16921 2005-11-30  Romain Francoise  <romain@orebokech.com>
16923         * speedbar.el (speedbar-default-position): New defcustom.
16924         (speedbar-frame-reposition-smartly): Use it.
16926         * dframe.el (dframe-reposition-frame-emacs): Fix position
16927         computation for `left' location.
16928         Update copyright year.
16930 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16932         * help.el (help-map): Move initialization into declaration.
16934         * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
16936         * help-fns.el (help-argument-name): Don't autoload.
16937         It's useless and triggers a bug in cus-dep.el causing ldefs-boot
16938         to be re-loaded when customizing the `help' group.
16940 2005-11-30  John Paul Wallington  <jpw@gnu.org>
16942         * help-fns.el (describe-function-1): Fill arglist output.
16944 2005-11-30  Kim F. Storm  <storm@cua.dk>
16946         * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
16947         (cua--rectangle-post-command): Cleanup overlays and deactivate mark
16948         after revert-buffer (or anything else which kills all local variables).
16950         * apropos.el (apropos-parse-pattern): Doc fix.
16951         Set apropos-regexp directly, rather than expecting callers to do so.
16952         (apropos-command, apropos, apropos-value, apropos-documentation):
16953         Simplify calls to apropos-parse-pattern.
16955 2005-11-29  Chong Yidong  <cyd@stupidchicken.com>
16957         * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
16958         (hi-lock-face-phrase-buffer): Use hi-yellow face.
16959         (hi-lock-write-interactive-patterns): Use comment-region.
16961         * longlines.el (longlines-mode): Add mail-setup-hook.
16963         * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
16965         * simple.el (sendmail-user-agent-compose, next-line):
16966         Conditionally use hard-newline.
16968 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
16970         * international/latexenc.el (latex-inputenc-coding-alist):
16971         Reword doc string.
16973 2005-11-29  Chong Yidong  <cyd@stupidchicken.com>
16975         * help.el (describe-key-briefly, describe-key): Recognize default
16976         bindings.
16978 2005-11-29  Romain Francoise  <romain@orebokech.com>
16980         * view.el (view-inhibit-help-message): New defcustom.
16981         (view-mode-enter): Use it.
16983 2005-11-29  Michael Kifer  <kifer@cs.stonybrook.edu>
16985         * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
16986         Preserve user position.
16988 2005-11-28  Luc Teirlinck  <teirllm@auburn.edu>
16990         * font-lock.el: Throw error if facemenu is not loaded to prevent
16991         accidental change of loading order in loadup.el.  (Suggested by RMS.)
16993         * loadup.el: Add comment explaining why facemenu must be loaded
16994         before font-lock.
16996 2005-11-28  Jay Belanger  <belanger@truman.edu>
16998         * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
16999         (calc-dispatch-map): Add more keys for `calc-same-interface'.
17001         * calc/calc-misc.el (calc-dispatch-help): Update docstring.
17003         * calc/calc-embed.el (calc-do-embedded): Update help message.
17005         * calc/calc-prog.el (calc-user-define-invokation): Update help message.
17007 2005-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17009         * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
17011         * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
17012         called-interactively-p.
17013         (elp-profilable-p): Rename from elp-not-profilable-p.
17014         Invert result and take into account macros and autoloaded functions.
17015         (elp-instrument-function): Update call.
17016         (elp-instrument-package): Update call.  Add completion.
17017         (elp-pack-number): Use match-string.
17018         (elp-results-jump-to-definition-by-mouse): Merge into
17019         elp-results-jump-to-definition and then remove.
17020         (elp-output-insert-symname): Make help echo text single-line.
17022         * replace.el (query-replace-map): Move initialization into declaration.
17023         (occur-engine): Use with-current-buffer.
17024         (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
17025         (occur-mode-mouse-goto): Replace with an alias.
17027 2005-11-28  Juri Linkov  <juri@jurta.org>
17029         * simple.el (quoted-insert): Let-bind input-method-function to nil.
17031         * term/w32-win.el: Bind [S-tab] to [backtab].
17033         * info.el (Info-fontify-node): Set 2nd arg `noerror' of
17034         `Info-find-file' to t.
17036         * replace.el (occur-mode-mouse-goto): Pop, don't switch.
17037         (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
17038         and same-window-regexps.
17039         (occur-next-error): Don't move point for arg 0.
17041 2005-11-28  Chong Yidong  <cyd@stupidchicken.com>
17043         * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
17045 2005-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17047         * log-edit.el (log-edit-changelog-use-first): New var.
17048         (log-edit-changelog-ours-p): Use it.
17049         (log-edit-insert-changelog): Set it with new arg `use-first'.
17050         (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
17051         (log-edit-hook): Add them to the list of suggested options.
17053         * textmodes/flyspell.el (flyspell-last-buffer): New var.
17054         (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
17055         redundant work.
17056         (flyspell-mode-on): Use add-hook for after-change-functions.
17057         (flyspell-mode-off): Use remove-hook for after-change-functions.
17058         (flyspell-changes): Make it buffer-local.
17059         (flyspell-after-change-function): Make it non-interactive.  Use push.
17060         (flyspell-post-command-hook): Check input-pending-p while processing
17061         the potentially long list of buffer changes.
17063 2005-11-28  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
17065         * buff-menu.el (list-buffers-noselect): Display the selected
17066         frame's buffer list, not the global one.
17068 2005-11-28  Nick Roberts  <nickrob@snap.net.nz>
17070         * xt-mouse.el (xterm-mouse-event): Set last-input-event so
17071         that (list last-input-event) works as in interactive spec.
17073 2005-11-27  Luc Teirlinck  <teirllm@auburn.edu>
17075         * loadup.el ("facemenu"): Load facemenu before font-lock, because
17076         `facemenu-keymap' needs to be defined when font-lock is loaded.
17077         Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
17079 2005-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
17081         * completion.el: Remove useless leading * in defcustom docstrings.
17082         (save-completions-file-name): Use ~/.emacs.d if available.
17083         (completion-standard-syntax-table): Rename from
17084         cmpl-standard-syntax-table and fold initialization into declaration,
17085         thus removing cmpl-make-standard-completion-syntax-table.
17086         (completion-lisp-syntax-table, completion-c-syntax-table)
17087         (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
17088         (cmpl-saved-syntax, cmpl-saved-point): Remove.
17089         (symbol-under-point, symbol-before-point)
17090         (symbol-under-or-before-point, symbol-before-point-for-complete)
17091         (add-completions-from-c-buffer): Use with-syntax-table.
17092         (make-completion): Don't return a list of completion entries.
17093         Update callers.
17094         (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
17095         (completion-initialize): Rename from initialize-completions.
17096         (completion-find-file-hook): Rename from cmpl-find-file-hook.
17097         (kill-emacs-save-completions): Collect stats here.
17098         (save-completions-to-file, load-completions-from-file):
17099         Use with-current-buffer.
17100         (completion-def-wrapper): Rename from def-completion-wrapper.  Make it
17101         into a function.  Move all calls to toplevel.
17102         (completion-lisp-mode-hook): New fun.
17103         (completion-c-mode-hook, completion-setup-fortran-mode):
17104         Set the syntax-table here.  Use local-set-key.
17105         (completion-saved-bindings): New var.
17106         (dynamic-completion-mode): Make it into a proper minor mode.
17107         (load-completions-from-file): Remove unused var `num-uses'.
17109         * emacs-lisp/cl-macs.el (defstruct): Don't define the default
17110         constructor if it is explicitly overridden.
17112         * complete.el (PC-completion-as-file-name-predicate):
17113         Use minibuffer-completing-file-name.
17114         (partial-completion-mode): Use find-file-not-found-functions.
17115         (PC-lisp-complete-symbol): Use with-syntax-table.
17116         (PC-look-for-include-file): Remove dead setq.
17117         (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
17118         (PC-complete): Use with-current-buffer.
17120         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
17121         escape single quotes.
17123 2005-11-27  Luc Teirlinck  <teirllm@auburn.edu>
17125         * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
17126         of `if' whose condition always returned nil.  Doc fix.
17128         * buff-menu.el (Buffer-menu-revert-function): Make the selected
17129         window's buffer the current buffer around the call to
17130         `list-buffers-noselect'.  This is necessary to mark that buffer
17131         with a `.' in the Buffer Menu when called from Lisp, for instance
17132         by Auto Revert Mode.
17134 2005-11-28  Nick Roberts  <nickrob@snap.net.nz>
17136         * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
17137         attaching to it.
17138         (gdb-pre-prompt): Make sure gdb-error is reset.
17140         * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
17141         with a child process, detect it.
17142         (gud-speedbar-buttons): Match regexp more carefully.
17144 2005-11-27  Richard M. Stallman  <rms@gnu.org>
17146         * mouse.el (mouse-drag-move-window-bottom):
17147         Use adjust-window-trailing-edge.
17149 2005-11-27  Luc Teirlinck  <teirllm@auburn.edu>
17151         * simple.el (blink-matching-open): Ignore
17152         `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
17153         (blink-matching-paren-on-screen): Update docstring.
17155         * paren.el (show-paren-mode): No longer change
17156         `blink-matching-paren-on-screen'.
17158 2005-11-27  John Paul Wallington  <jpw@pobox.com>
17160         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
17161         (gdb-threads-select, gdb-edit-register-value):
17162         Use `posn-set-point' instead of `mouse-set-point' because the
17163         latter is not fbound when configured without X.
17165 2005-11-27  Kim F. Storm  <storm@cua.dk>
17167         * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
17168         existing face when partially highlighting a TAB in a rectangle.
17170 2005-11-26  Kim F. Storm  <storm@cua.dk>
17172         * ido.el (ido-mode-map): Doc fix.
17173         (ido-mode-common-map, ido-mode-file-map)
17174         (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
17175         (ido-define-mode-map): Rewrite.  Select one of the new maps as
17176         parent for ido-mode-map instead of building from scratch.
17177         (ido-init-mode-maps): New defun to initialize new maps.
17178         (ido-mode): Call it.
17179         (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
17180         (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
17182 2005-11-26  John Paul Wallington  <jpw@pobox.com>
17184         * arc-mode.el (archive-extract): Use `posn-set-point' instead of
17185         `mouse-set-point' because the latter is not fbound when configured
17186         without X.
17188 2005-11-26  Thien-Thi Nguyen  <ttn@gnu.org>
17190         * files.el (file-relative-name): Doc fix.
17192 2005-11-26  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>
17194         * progmodes/octave-inf.el (inferior-octave-startup): Force a
17195         non-empty string for secondary prompt PS2.
17197 2005-11-25  Chong Yidong  <cyd@stupidchicken.com>
17199         * progmodes/compile.el (compilation-setup): Fix last change.
17201 2005-11-26  Nick Roberts  <nickrob@snap.net.nz>
17203         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
17204         (gdb-mouse-toggle-breakpoint-margin)
17205         (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
17206         Add gdb-server-prefix to keep out of command history.
17207         (gdb-edit-register-value): New function.
17208         (gdb-registers-mode-map): Bind mouse-2 and RET to it.
17209         (gdb-info-registers-custom): Use above map.
17211 2005-11-25  Chong Yidong  <cyd@stupidchicken.com>
17213         * custom.el (enable-theme): Signal error if argument is not a
17214         theme.  Don't recalculate a face if it's not loaded yet.
17216         * cus-face.el (custom-theme-set-faces): Don't change saved-face if
17217         the `user' theme is in effect.
17219         * info.el (Info-on-current-buffer): Record actual filename in
17220         Info-current-file, instead of t, or a fake filename if a non-file
17221         buffer.  Make autoload.
17222         (Info-find-node, Info-revert-find-node): No need to check for
17223         Info-current-file nil.
17224         (Info-set-mode-line, Info-up, Info-copy-current-node-name):
17225         Info-current-file is now never `t'.
17226         (Info-fontify-node): Many simplifications due to Info-current-file
17227         always being valid.  Use Info-find-file to find node filename.
17229 2005-11-25  David Kastrup  <dak@gnu.org>
17231         * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
17232         new character, then delete" in order to preserve markers.
17234 2005-11-25  David Ponce  <david@dponce.com>
17236         * recentf.el (recentf-arrange-by-rule): Handle a special
17237         `auto-mode-alist'-like "strip suffix" rule.
17238         (recentf-build-mode-rules): Handle second level auto-mode entries.
17240 2005-11-25  Michael Kifer  <kifer@cs.stonybrook.edu>
17242         * viper-keym.el (viper-ESC-key): Use different values in terminal and
17243         window modes.
17245         * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
17246         jde-javadoc-checker-report-mode.
17248         * ediff-wind (ediff-make-wide-display): Slight simplification.
17250         * ediff.el (ediff-date): Change the date of last update.
17252 2005-11-24  Chong Yidong  <cyd@stupidchicken.com>
17254         * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
17255         Use define-minor-mode, and make it a local mode.  Turn on font-lock.
17256         (hi-lock-mode): New global minor mode.
17257         (turn-on-hi-lock-if-enabled): New function.
17258         (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
17259         Change arguments to regexp and face instead of a font-lock pattern.
17260         Directly set face property, instead of refontifying.
17261         (hi-lock-font-lock-hook): Check if font-lock is being turned on.
17262         (hi-lock-find-patterns): Use line-number-at-pos.
17264         (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode.  Use new
17265         arguments for hi-lock-set-pattern.
17266         (hi-lock-unface-buffer, hi-lock-set-file-patterns):
17267         Call font-lock-fontify-buffer.
17268         (hi-lock-find-file-hook, hi-lock-current-line)
17269         (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
17271         (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
17272         turned off.
17274         * progmodes/compile.el (compilation-setup): Don't fiddle with
17275         font-lock-defaults.
17277 2005-11-25  Nick Roberts  <nickrob@snap.net.nz>
17279         * progmodes/gdb-ui.el (gdb-var-create-handler)
17280         (gdb-var-list-children-handler): Find values for all variable
17281         objects.  gud-speedbar-buttons decides whether to display them.
17283 2005-11-24  Romain Francoise  <romain@orebokech.com>
17285         * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
17286         buffer name with a space.
17288 2005-11-24  Carsten Dominik  <dominik@science.uva.nl>
17290         * textmodes/org.el (org-export-plain-list-max-depth): Rename from
17291         `org-export-local-list-max-depth'.  Change default value to 3.
17292         (org-auto-renumber-ordered-lists)
17293         (org-plain-list-ordered-item-terminator): New options.
17294         (org-at-item-p, org-beginning-of-item, org-end-of-item)
17295         (org-get-indentation, org-get-string-indentation)
17296         (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
17297         New functions.
17298         (org-move-item-down, org-move-item-up): New commands.
17299         (org-export-as-html): New classes for CSS support.  Bug fix in
17300         regular expression detecting fixed-width regions.  Respect
17301         `org-local-list-ordered-item-terminator'.
17302         (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
17303         also a list item.
17304         (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
17305         New item moving functions.
17307 2005-11-24  Juri Linkov  <juri@jurta.org>
17309         * isearch.el (isearch-repeat): With empty search ring set
17310         `isearch-error' to the error string instead of signaling error
17311         with the function `error'.
17313 2005-11-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17315         * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
17317 2005-11-24  Nick Roberts  <nickrob@snap.net.nz>
17319         * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
17320         and variable.
17321         (gdb-var-create-handler, gdb-var-list-children-handler):
17322         Don't match on "char **...".
17323         (gdb-var-update-handler): Find values for all variable objects.
17324         (gdb-info-frames-custom): Identify frames by leading "#".
17326         * progmodes/gud.el (gud-speedbar-menu-items): Add
17327         gdb-speedbar-auto-raise as radio button.
17328         (gud-speedbar-buttons): Raise speedbar if requested.
17329         Don't match on "char **...".
17330         (gud-speedbar-buttons): Add (pointer) value for non-leaves.
17331         Make it editable.
17333 2005-11-23  Chong Yidong  <cyd@stupidchicken.com>
17335         * info.el (Info-fontify-node): Handle the case where
17336         Info-current-file is t.
17338 2005-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17340         * simple.el (blink-matching-open): Fix off-by-one in last change.
17342 2005-11-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17344         * term/mac-win.el: Don't change default directory.
17346 2005-11-22  Luc Teirlinck  <teirllm@auburn.edu>
17348         * cus-edit.el (Custom-reset-standard): Make it handle Custom group
17349         buffers correctly.  (It used to throw an error in such buffers.)
17350         Make it ask for confirmation in group buffers and other Custom
17351         buffers containing more than one customization item.
17353 2005-11-22  John Paul Wallington  <jpw@gnu.org>
17355         * net/goto-addr.el (goto-address-fontify): Put `follow-link'
17356         property on mail and url overlays.
17357         (goto-address-at-point): Use `posn-set-point' instead of
17358         `mouse-set-point' because the latter is not fbound when configured
17359         without X.
17361 2005-11-22  Lars Hansen  <larsh@soem.dk>
17363         * ls-lisp.el (ls-lisp-parse-symlink): Delete.
17364         (ls-lisp-classify, ls-lisp-format): Delete call to
17365         ls-lisp-parse-symlink.
17366         (ls-lisp-handle-switches): Handle symlinks to directories as
17367         directories when ls-lisp-dirs-first in non-nil.
17369 2005-11-21  Luc Teirlinck  <teirllm@auburn.edu>
17371         * startup.el (command-line): Make sure that loaddefs.el is handled
17372         correctly in load-history.
17374 2005-11-22  Nick Roberts  <nickrob@snap.net.nz>
17376         * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
17377         (gdb-struct-string, gdb-array-string): New constants.
17378         (gdb-info-locals-handler): Use them.
17379         (gdb-reset): Reset gdb-var-list to nil.
17381 2005-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17383         * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
17384         in patterns.
17386 2005-11-21  Juri Linkov  <juri@jurta.org>
17388         * custom.el (defcustom): Update link types in docstring.
17390 2005-11-20  Martin Rudalics  <rudalics@gmx.at>
17392         * custom.el (defgroup): Add doc-string-elt info.
17394         * widget.el (define-widget): Don't use declare for the doc-string-elt.
17396 2005-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17398         * newcomment.el (comment-enter-backward): Fix last fix.
17400         * simple.el (blink-matching-open):
17401         * paren.el (show-paren-function): Allow new paren-class info.
17403 2005-11-20  Chong Yidong  <cyd@stupidchicken.com>
17405         * faces.el: Revert 2005-11-17 change.  :ignore-defface is now
17406         handled automagically.
17408 2005-11-20  Andreas Schwab  <schwab@suse.de>
17410         * descr-text.el (describe-char): When copying overlays put them
17411         over the full char description instead of just the first character
17412         of it.
17414 2005-11-20  Juri Linkov  <juri@jurta.org>
17416         * simple.el (what-cursor-position):
17417         * descr-text.el (describe-char): Use Lisp-readable syntax
17418         for octal and hex.  Reorder decimal, octal and hex values.
17419         Remove excess whitespace in the output.  Use `=' in `column='
17420         like in `point=' and `Hscroll='.
17422         * international/mule-cmds.el (encoded-string-description):
17423         Use Lisp-readable syntax for hex.
17425 2005-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17427         * newcomment.el (comment-enter-backward): Handle the case where the
17428         comment is closed by EOB.
17430 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
17432         * longlines.el (longlines-before-revert-hook)
17433         (longlines-after-revert-hook): New functions.
17434         (longlines-mode): Turn off longlines temporarily when reverting.
17435         Add a message-setup-hook.
17436         (longlines-decode-buffer): New function.
17437         (longlines-wrap-line): Preserve marker positions.
17439 2005-11-19  Andreas Schwab  <schwab@suse.de>
17441         * emacs-lisp/shadow.el: Handle compressed files.
17443 2005-11-19  Romain Francoise  <romain@orebokech.com>
17445         * net/browse-url.el (browse-url-default-browser): Signal an error
17446         if no usable browser can be found, rather than try to load w3.
17448 2005-11-16  Ryan Yeske  <rcyeske@gmail.com>
17450         * net/rcirc.el (rcirc-mangle-text): Add bold face property without
17451         replacing existing properties.
17452         (rcirc-my-nick, rcirc-other-nick, rcirc-server)
17453         (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
17454         tty specs.
17455         (rcirc-server-prefix, rcirc-server): New faces.
17456         (rcirc-url-regexp): Generate with rx macro.
17457         (rcirc-last-server-message-time): New variable.
17458         (rcirc-filter): Record time of last message.
17459         (rcirc-keepalive): Kill processes that did not send a message
17460         since the last ping.
17461         (rcirc-mode): Give rcirc-topic a local binding here.
17463 2005-11-19  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
17465         * subr.el (read-passwd): Fontify the prompt as we do with other
17466         prompts.
17468 2005-11-19  Ryan Yeske  <rcyeske@gmail.com>
17470         * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
17471         binding buffer-read-only to nil.
17473 2005-11-19  Eli Zaretskii  <eliz@gnu.org>
17475         * complete.el (partial-completion-mode):
17476         Mention completion-auto-help in the doc string.
17478         * man.el (Man-highlight-references): Doc fix.  Reformat code in a
17479         more Lisp-ish way.
17481 2005-11-19  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>  (tiny change)
17483         * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
17484         digits, not 8, to avoid misalignment for files larger than 100MB.
17486 2005-11-19  Eli Zaretskii  <eliz@gnu.org>
17488         * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
17489         Mention "keyboard shortcuts" in the help text.
17491 2005-11-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17493         * startup.el (fancy-splash-default-action): Discard only
17494         mouse-down and succeeding mouse-up events in the splash screen
17495         window so that drag-n-drop event can be processed.
17497 2005-11-18  Chong Yidong  <cyd@stupidchicken.com>
17499         * longlines.el (longlines-mode): Add hacks for mail-mode and
17500         message-mode.
17502 2005-11-18  Carsten Dominik  <dominik@science.uva.nl>
17504         * textmodes/org.el (org-table-sort-lines): New command.
17505         (org-tbl-menu): Add entry for `org-table-sort-lines'.
17506         (org-add-file): Command removed, use `org-agenda-file-to-front'
17507         instead.
17508         (org-export-icalendar): Use `org-icalendar-combined-name'.
17509         (org-cycle-agenda-files, org-agenda-file-to-end)
17510         (org-agenda-file-to-front): New commands.
17511         (org-table-tab-jumps-over-hlines, org-export-html-style):
17512         New options.
17513         (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
17514         (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
17515         New functions.
17516         (org-fill-paragraph): Call `org-table-align' in tables.
17517         (org-mode): Call `org-set-autofill-regexps'.
17518         (org-export-as-html): Support for local handformatted lists.
17519         Modified to produce valid HTML 4.0.  Use `org-export-html-style'.
17520         (org-export-local-list-max-depth): New option.
17521         (org-html-expand): Use `org-html-protect'.
17523 2005-11-18  Nick Roberts  <nickrob@snap.net.nz>
17525         * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
17526         to "p".
17527         (gdb): Move definition of gud-pp to...
17529         * progmodes/gdb-ui.el (gdb-ann3): ...here.  Make it work in the
17530         speedbar.
17531         (gdb-find-watch-expression): New function.
17533 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
17535         * faces.el (face-attribute, set-face-attribute): Mention existence
17536         of `:ignore-defface' setting in docstring.
17538 2005-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17540         * simple.el (completion-setup-function): Fix last change.
17542 2005-11-17  John Paul Wallington  <jpw@pobox.com>
17544         * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
17545         Use `posn-set-point' instead of `mouse-set-point' because the
17546         latter is not fbound when configured without X.
17548         * comint.el (comint-insert-input): Likewise.
17550 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
17552         * simple.el (hard-newline): New variable.
17553         (sendmail-user-agent-compose, next-line): Use it.
17555         * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
17556         (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
17557         (mail-mail-reply-to, mail-mail-followup-to)
17558         (mail-position-on-field, mail-signature, mail-yank-original)
17559         (mail-attach-file): Likewise.
17561         * mail/mailheader.el (mail-header-format)
17562         (mail-header-format-function): Likewise.
17564         * add-log.el (add-change-log-entry, change-log-merge): Likewise.
17566 2005-11-17  Juri Linkov  <juri@jurta.org>
17568         * font-lock.el (font-lock-faces): Rename this defgroup from
17569         `font-lock-highlighting-faces'.
17570         (font-lock-comment-face, font-lock-comment-delimiter-face)
17571         (font-lock-string-face, font-lock-doc-face)
17572         (font-lock-keyword-face, font-lock-builtin-face)
17573         (font-lock-function-name-face, font-lock-variable-name-face)
17574         (font-lock-type-face, font-lock-constant-face)
17575         (font-lock-warning-face, font-lock-negation-char-face)
17576         (font-lock-preprocessor-face)
17577         (font-lock-regexp-grouping-backslash)
17578         (font-lock-regexp-grouping-construct): Rename :group from
17579         `font-lock-highlighting-faces' to `font-lock-faces'.
17581         * cus-edit.el (lisp, c, tex):
17582         * progmodes/ada-mode.el (ada):
17583         * progmodes/asm-mode.el (asm):
17584         * progmodes/cperl-mode.el (cperl-faces):
17585         * progmodes/cpp.el (cpp):
17586         * progmodes/dcl-mode.el (dcl):
17587         * progmodes/f90.el (f90):
17588         * progmodes/fortran.el (fortran):
17589         * progmodes/icon.el (icon):
17590         * progmodes/idlwave.el (idlwave-misc):
17591         * progmodes/m4-mode.el (m4):
17592         * progmodes/make-mode.el (makefile):
17593         * progmodes/meta-mode.el (meta-font):
17594         * progmodes/modula2.el (modula2):
17595         * progmodes/octave-mod.el (octave):
17596         * progmodes/pascal.el (pascal):
17597         * progmodes/perl-mode.el (perl):
17598         * progmodes/prolog.el (prolog):
17599         * progmodes/ps-mode.el (PostScript-edit):
17600         * progmodes/scheme.el (scheme):
17601         * progmodes/sh-script.el (sh-script):
17602         * progmodes/simula.el (simula):
17603         * progmodes/tcl.el (tcl):
17604         * textmodes/nroff-mode.el (nroff):
17605         * textmodes/reftex-vars.el (reftex-fontification-configurations):
17606         * textmodes/sgml-mode.el (sgml):
17607         * textmodes/texinfo.el (texinfo):
17608         Add :link (custom-group-link font-lock-faces) to defgroup.
17610         * hi-lock.el (hi-lock): Rename this defgroup from
17611         `hi-lock-interactive-text-highlighting'.  Change parent group from
17612         `faces' to `font-lock'.  Add link to the manual.
17613         (hi-lock-mode, hi-lock-file-patterns-range)
17614         (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
17615         `hi-lock-interactive-text-highlighting' to `hi-lock'.
17616         (hi-lock-faces): Add :group `faces'.
17618         * cus-edit.el (custom-variable-prompt): Clarify the code.
17620         * faces.el (face-read-string): Set the default value arg of
17621         completing-read.
17623 2005-11-16  Luc Teirlinck  <teirllm@auburn.edu>
17625         * rfn-eshadow.el (file-name-shadow-properties)
17626         (file-name-shadow-tty-properties, file-name-shadow-mode):
17627         Remove autoloads, because the file is now preloaded.
17629 2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17631         * printing.el (easy-menu-intern): Don't define.
17632         (pr-get-symbol): Use easy-menu-intern only if defined.
17634         * simple.el (blink-matching-open): Simplify a bit.
17635         (completion-setup-function): Fix the case of partial-completion-mode
17636         when the minibuffer's contents start with "-".
17637         Obey completion-base-size-function even when
17638         minibuffer-completing-file-name is non-nil.
17640 2005-11-16  Richard M. Stallman  <rms@gnu.org>
17642         * net/eudcb-ph.el (eudc-ph-open-session):
17643         Use set-process-query-on-exit-flag.
17645         * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
17647         * international/ucs-tables.el (ucs-set-table-for-input):
17648         Use make-local-variable, not make-variable-buffer-local.
17650         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
17651         Improve warning message text.
17653         * savehist.el (savehist-save-hook): Add :group.
17655         * menu-bar.el (menu-bar-help-menu):
17656         Rename Find Extra Packages to External Packages.
17658         * cus-edit.el (Custom-reset-standard): Verify that
17659         :custom-standard-value prop exists before calling it.
17661         * apropos.el (apropos-calc-scores): Use apropos-pattern.
17663 2005-11-16  Martin Rudalics  <rudalics@gmx.at>
17665         * wid-edit.el (color): Enclose %t in %{...%}.
17667         * cus-edit.el (face): Enclose %t in %{...%}.
17669 2005-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
17671         * savehist.el (savehist-mode-hook): Re-add the var.
17672         (savehist-mode): Use it.
17674 2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17676         * textmodes/flyspell.el: Fix commenting convention.
17677         Remove unnecessary leading * in custom docstrings.
17678         (flyspell-emacs): Remove unused var.
17679         (flyspell-delete-region-overlays): Use remove-overlays.
17680         (flyspell-accept-buffer-local-defs): Use save-current-buffer.
17681         (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
17682         (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
17683         (flyspell-debug-signal-word-checked): Use with-current-buffer.
17684         (make-flyspell-overlay): Don't locally reuse a global name.
17685         (flyspell-highlight-incorrect-region)
17686         (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
17687         (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
17688         (flyspell-notify-misspell): Remove unused args `start' and `end'.
17689         (flyspell-word): Adjust call accordingly.  Use ispell-send-string.
17690         Wrap calls to accept-process-output inside with-local-quit since it's
17691         often called from a post-command-hook.
17692         (flyspell-correct-word, flyspell-auto-correct-word):
17693         Use ispell-send-string.
17694         (flyspell-xemacs-popup): Remove unused arg `event'.  Update call.
17696         * calendar/diary-lib.el (diary-list-entries): Also hide the
17697         terminating newline.
17699 2005-11-16  Carsten Dominik  <dominik@science.uva.nl>
17701         * textmodes/reftex.el (reftex-use-fonts): Remove the check for
17702         window-system, to allow fonts on tty.
17704 2005-11-17  Nick Roberts  <nickrob@snap.net.nz>
17706         * progmodes/gud.el (gud-speedbar-item-info): New function.
17707         (gud-install-speedbar-variables): Use it to display data type
17708         of watch expression as a tooltip in speedbar.
17710 2005-11-15  Luc Teirlinck  <teirllm@auburn.edu>
17712         * font-core.el (global-font-lock-mode): Add :version keyword,
17713         because default was changed.
17715         * jka-cmpr-hook.el (auto-compression-mode): Ditto.
17717         * startup.el (command-line): Use `custom-reevaluate-setting' for
17718         `file-name-shadow-mode'.
17720         * loadup.el: Preload rfn-eshadow.
17722         * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
17723         Add :version keyword.
17724         (file-name-shadow-properties, file-name-shadow-tty-properties)
17725         (file-name-shadow): Add :version keyword.
17727         * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
17728         instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
17729         in the custom-group property of the symbol frames and the fringe
17730         group got no link to its parent group frames.
17731         Doc fix.
17733 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
17735         * progmodes/gud.el (gud-stop-subjob): New function.
17736         (gud-menu-map, gud-tool-bar-map): Use it.
17738 2005-11-16  Kim F. Storm  <storm@cua.dk>
17740         * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
17741         than kill it.
17742         (gud-tool-bar-map): Likewise.  Move cont/until/finish buttons
17743         to a more useful/logical place.
17745 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
17747         * progmodes/gud.el (gud-menu-map): Make visibility of stop and
17748         go buttons complementary.
17750 2005-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17752         * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
17753         (rfn-eshadow-sifn-equal): New function.
17754         (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
17756 2005-11-15  Michael Kifer  <kifer@cs.stonybrook.edu>
17758         * viper-utils.el (viper-non-word-characters-reformed-vi):
17759         Quote `-' in string.
17761         * viper.el (viper-emacs-state-mode-list): Ensure that
17762         rcirc-mode buffers come up in Emacs state.
17764         * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
17765         operation.
17767 2005-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
17769         * term.el (term-termcap-format): Fix typos.
17770         (term-down): Fix the negative argument case.
17772 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
17774         * progmodes/gdb-ui.el: Remove face-alias left over from change on
17775         2005-08-15.
17776         (gdb-ann3): New command gud-go.
17777         (menu): Accomodate gdb-mi.el.
17778         (gdb-assembler-custom): Make buffer of selected window current
17779         so that set-window-point works.
17781         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
17782         buttons and include new ones.
17784 2005-11-16  Kim F. Storm  <storm@cua.dk>
17786         * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
17787         (gud-menu-map): Use it.
17789 2005-11-14  Luc Teirlinck  <teirllm@auburn.edu>
17791         * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
17792         that works correctly for Custom and that does not override a user
17793         who disables it.
17795         * help-mode.el (help-make-xrefs, help-xref-on-pp)
17796         (help-xref-interned, help-follow): Make hyperlinks for variables
17797         that are unbound, but have a non-nil variable-documentation property.
17799         * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
17800         mode hook.  (It conflicted with defcustoms for some mode hooks.)
17801         Use the `variable-documentation' property to give the mode hook a
17802         docstring and expand that docstring.
17804 2005-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
17806         * savehist.el (savehist-mode): Don't bother with
17807         `custom-set-minor-mode'.
17808         (savehist-coding-system): Check XEmacs version.
17809         (history-length): Declare also at run time.
17810         (savehist-mode): Don't emit a message.  Don't run the minor mode hook.
17811         Don't set the customize state.
17812         (savehist-minibuffer-hook): Special case for when
17813         minibuffer-history-variable is equal to t.
17815 2005-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
17817         * files.el (write-file): Refresh VC status.
17819         * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
17820         (mark-diary-entries, make-diary-entry): Check default-major-mode rather
17821         than fundamental-mode to see if the mode was set.
17823 2005-11-14  Romain Francoise  <romain@orebokech.com>
17825         * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
17826         dummy function in `eval-when-compile' to avoid compiler warning.
17827         Require `man' at compile time.
17829 2005-11-14  Jay Belanger  <belanger@truman.edu>
17831         * calc-alg.el (calcFunc-write-out-power): Rename it to
17832         calcFunc-powerexpand.
17833         (math-write-out-power): Rename it to math-powerexpand; have it
17834         handle negative exponents.
17835         (calc-writeoutpower): Rename it to calc-powerexpand.
17837         * calc-ext.el: Change calcFunc-writeoutpower and
17838         calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
17839         autoloads.
17840         Add calcFunc-ldiv to autoloads.
17842         * calc-arith.el (calcFunc-ldiv): New function.
17844         * calc.el (calc-left-divide): New function.
17846 2005-11-14  Juri Linkov  <juri@jurta.org>
17848         * cus-edit.el (custom-variable-prompt): Set the default value arg
17849         of completing-read.
17851         * cus-dep.el (custom-make-dependencies): Reverse the list of
17852         found dependencies.
17854 2005-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
17856         * menu-bar.el (menu-bar-options-menu): Delete "Syntax
17857         Highlighting" entry, it is on by default now.
17858         (menu-bar-options-save): Do not save global-font-lock-mode.
17860 2005-11-13  Richard M. Stallman  <rms@gnu.org>
17862         * textmodes/flyspell.el (flyspell-large-region):
17863         Call flyspell-accept-buffer-local-defs.
17865 2005-11-13  Agustin Martin  <agustin.martin@hispalinux.es>
17867         * textmodes/flyspell.el (flyspell-notify-misspell):
17868         Fix misspelling of "Misspelling".
17869         (flyspell-process-localwords): New function.
17870         (flyspell-large-region): Call flyspell-process-localwords and
17871         flyspell-delete-region-overlays.
17872         (flyspell-delete-region-overlays): New function.
17873         (flyspell-delete-all-overlays): Call that.
17875 2005-11-13  Richard M. Stallman  <rms@gnu.org>
17877         * help.el (help-for-help-internal): Improve doc of C-h a.
17878         (describe-key): Improve prompt; doc fix.
17880 2005-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
17882         * vc-svn.el (vc-svn-registered): Catch all errors.
17884         * cus-dep.el (custom-make-dependencies): Typo.
17886 2005-11-13  Michael Albinus  <michael.albinus@gmx.de>
17888         * net/tramp-util.el (top): Fix compilation warning.
17890 2005-11-13  Kim F. Storm  <storm@cua.dk>
17892         * help.el (help-for-help-internal): Fix `a' entry.  Add `d' entry.
17894 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
17896         * progmodes/gud.el (gud-menu-map): Move parentheses (again).
17897         (gud-speedbar-buttons): Match on "const char *" too.
17899         * progmodes/gdb-ui.el (gdb-var-create-handler)
17900         (gdb-var-list-children-handler): Match on "const char *" too.
17901         (gdb-var-evaluate-expression-handler): Match on empty string.
17902         (gdb-var-update-handler): Only call
17903         gdb-var-evaluate-expression-handler when required.
17905 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
17907         * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
17908         selected window.  This still doesn't work for speedbar.
17909         (gud-speedbar-buttons): Handle string expressions properly.
17911         * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
17912         (gdb-var-create-handler): Handle string expressions properly.
17913         (gdb-var-list-children-regexp, gdb-var-list-children-handler):
17914         Handle string expressions properly.  Move "type" field into regexp.
17916 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
17918         * bookmark.el (bookmark-maybe-message): New function to reduce
17919         code duplication: invokes `message' iff baud-rate is high enough.
17920         (bookmark-write-file): Use above instead of an inline conditional.
17921         (bookmark-load): Same.
17923 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
17925         * bookmark.el (bookmark-write-file): Don't visit the destination
17926         file, just write the data to it using write-region.  This is
17927         similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
17928         change to avoid visiting the file in the first place.
17930 2005-11-12  Chong Yidong  <cyd@stupidchicken.com>
17932         * hi-lock.el (hi-lock-mode): Set the default value of
17933         font-lock-defaults.
17935 2005-11-11  Luc Teirlinck  <teirllm@auburn.edu>
17937         * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
17938         arg to `file-attributes'.
17939         (find-lisp-format): The UID and GID can now be strings.
17941 2005-11-12  Kim F. Storm  <storm@cua.dk>
17943         * help.el (help-map): Bind C-h d to apropos-documentation.
17945         * simple.el (what-cursor-position): Print (EOB) instead of (100%)
17946         when point is at end-of-buffer.
17948         * apropos.el (apropos-match-face): Doc fix.
17949         (apropos-sort-by-scores): Add new choice `verbose'.
17950         (apropos-documentation-sort-by-scores): New defcustom.
17951         (apropos-pattern): Now contains the pattern entered by the user.
17952         (apropos-pattern-quoted): New defvar.
17953         (apropos-regexp): New defvar, containing the regexp corresponding
17954         to apropos-pattern.
17955         (apropos-all-words-regexp): Rename from apropos-all-regexp.
17956         (apropos-read-pattern): New defun.  Use it to read pattern arg in
17957         interactive calls; returns list of words for a word list, and
17958         string for a regexp.
17959         (apropos-parse-pattern): Rename from apropos-rewrite-regexp.  Now
17960         parses a list of words or regexp as returned by apropos-read-pattern.
17961         (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
17962         (apropos-score-doc): Return a very high score if the string
17963         entered by the user matches literally.
17964         (apropos-variable): Doc fix.  Use apropos-read-pattern.
17965         (apropos-command): Doc fix.  Use apropos-read-pattern and
17966         apropos-parse-pattern.  Call apropos-print with nosubst=t.
17967         (apropos, apropos-value): Doc fix.  Use apropos-read-pattern and
17968         apropos-parse-pattern.
17969         (apropos-documentation): Doc fix.  Use apropos-read-pattern and
17970         apropos-parse-pattern.  Locally bind apropos-sort-by-scores to
17971         apropos-documentation-sort-by-scores.  Call apropos-print with
17972         nosubst=t.
17973         (apropos-documentation-internal): Pass doc string through
17974         substitute-key-definition before adding text properties.
17975         Highlight substring matching literal user input if possible.
17976         (apropos-documentation-check-doc-file): Remove locals beg and end.
17977         Fix calculation of score (as added twice).  Pass doc string through
17978         substitute-key-definition before adding text properties.
17979         (apropos-documentation-check-elc-file): Pass doc string through
17980         substitute-key-definition before adding text properties.
17981         Highlight substring matching literal user input if possible.
17982         (apropos-print): Add new arg NOSUBST; if set, command and variable
17983         doc strings have already been passed through substitute-key-definition.
17984         Add code to handle apropos-accumulator items without score element
17985         for backwards compatibility (e.g. with woman package).
17986         Only show scores if apropos-sort-by-scores is `verbose'.
17988 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
17990         * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
17991         Add jka-compr-load-suffixes to load-suffixes.
17993         * jka-compr.el: Require jka-cmpr-hook.
17994         (jka-compr-info-compress-message, jka-compr-info-compress-program)
17995         (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
17996         (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
17997         (jka-compr-info-can-append, jka-compr-info-strip-extension)
17998         (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
17999         (jka-compr-info-regexp): Remove.  Provided by jka-cmpr-hook.
18000         (jka-compr-uninstall): Remove entries from
18001         jka-compr-added-to-file-coding-system-alist after they are used.
18002         (jka-compr-error): Remove unused var `curbuf'.
18003         (jka-compr-file-local-copy): Remove unused var `notfound'.
18005 2005-11-10  Romain Francoise  <romain@orebokech.com>
18007         * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
18009 2005-11-11  Nick Roberts  <nickrob@snap.net.nz>
18011         * progmodes/gud.el (gud-menu-map): Move parentheses.
18012         (gdb): New command gud-pv.
18014 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
18016         * tar-mode.el: Remove spurious or unnecessary leading stars
18017         in docstrings.
18018         (tar-header-block-tokenize): Also obey default-file-name-coding-system.
18019         (tar-parse-octal-integer-safe): Use mapc.
18020         (tar-header-block-summarize): Remove unused var `ck'.
18021         (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
18022         cleared before.  Obey default-enable-multibyte-characters.
18023         Use mapconcat.  Simplify setting of tar-header-offset.
18024         (tar-mode-map): Move initialization inside delcaration.
18025         (tar-flag-deleted): Use `abs'.
18026         (tar-expunge-internal): Remove unused var `line'.
18027         (tar-expunge-internal): Don't hardcode point-min==1.
18028         (tar-expunge): Widen while doing set-buffer-multibyte.
18029         (tar-rename-entry): Use file-name-coding-system.
18030         (tar-alter-one-field): Don't hardcode point-min==1.
18031         (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
18032         (tar-pad-to-blocksize): Don't hardcode point-min==1.  Clarify the code.
18034 2005-11-10  Masatake YAMATO  <jet@gyve.org>
18036         * add-log.el (add-log-current-defun): Handle class::method
18037         notation of c++.  Fix incorrect comment.
18039 2005-11-10  Alan Mackenzie  <acm@muc.de>
18041         * help-fns.el (describe-variable): Make C-h v work when a variable
18042         has variable documentation yet is unbound.
18044 2005-11-10  Masatake YAMATO  <jet@gyve.org>
18046         * man.el (Man-highlight-references): Set an empty
18047         string to `Man-arguments' if it is nil.
18048         Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
18050 2005-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
18052         * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
18053         commenting conventions.
18055         * cus-dep.el (custom-make-dependencies): Simplify.
18056         Better follow the commenting conventions.
18058 2005-11-09  Richard M. Stallman  <rms@gnu.org>
18060         * apropos.el (apropos-pattern): Rename from apropos-regexp.
18061         (apropos-orig-pattern): Rename from apropos-orig-regexp.
18062         All uses changed.
18063         (apropos-rewrite-regexp): Doc fix.
18064         (apropos-variable, apropos-command, apropos, apropos-value):
18065         Change prompt; carry through the argument renaming.
18067 2005-11-09  Luc Teirlinck  <teirllm@auburn.edu>
18069         * find-lisp.el: Require dired.
18070         (find-lisp-find-dired-internal): Do not call
18071         `abbreviate-file-name' on DIR.
18073 2005-11-10  Nick Roberts  <nickrob@snap.net.nz>
18075         * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
18077 2005-11-09  Nick Roberts  <nickrob@snap.net.nz>
18079         * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
18080         when using the speedbar.
18081         (gdb): New command gud-pp.
18082         (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
18084 2005-11-09  Juri Linkov  <juri@jurta.org>
18086         * replace.el (occur-excluded-properties): New defcustom.
18087         (occur-1, occur-engine, occur-accumulate-lines): Use it.
18089 2005-11-08  Jay Belanger  <belanger@truman.edu>
18091         * calc/calc-units.el (math-convert-units): Replace any composite
18092         unit by its definition.
18094 2005-11-08  Lars Hansen  <larsh@soem.dk>
18096         * emacs-lisp/autoload.el (update-directory-autoloads):
18097         Add obsolete function alias.
18099 2005-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
18101         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
18102         comment-indent-function.
18103         (lisp-comment-indent): Replace by an alias for comment-indent-default.
18105         * reveal.el (reveal-post-command): Rework the handling of
18106         reveal-open-spots, so as to be more reliable.  There were several
18107         tricky corner cases where an open spot might be lost, or where
18108         a closed spot might end up on the list of open spots.
18109         Only reveal text that's ellipsised.
18111 2005-11-07  Carsten Dominik  <dominik@science.uva.nl>
18113         * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
18115 2005-11-07  John Paul Wallington  <jpw@gnu.org>
18117         * ibuffer.el (ibuffer): Search iconified frames too when
18118         getting Ibuffer buffer's window.
18120 2005-11-06  Richard M. Stallman  <rms@gnu.org>
18122         * progmodes/compile.el (compilation-internal-error-properties):
18123         save-excursion around the computation of MARKER.
18125 2005-11-06  Piet van Oostrum  <piet@cs.uu.nl>
18127         * textmodes/flyspell.el (flyspell-external-point-words):
18128         flyspell-get-word returns a list, not just a string.
18130 2005-11-06  John Paul Wallington  <jpw@pobox.com>
18132         * ibuffer.el (ibuffer): Search all visible frames when getting
18133         Ibuffer buffer's window.
18135 2005-11-07  Masatake YAMATO  <jet@gyve.org>
18137         * man.el (Man-reference-regexp): Accept spaces between
18138         `Man-name-regexp' and `Man-section-regexp'.
18139         (Man-apropos-regexp): New variable.
18140         (Man-abstract-xref-man-page): Use value for `Man-target-string'
18141         if available.
18142         (Man-highlight-references, Man-highlight-references0):
18143         Handle the case when `Man-arguments' includes "-k".
18144         (Man-highlight-references0): Rename the argument `TARGET-POS' to
18145         `TARGET'. `TARGET' can be a number, function or nil.
18147 2005-11-06  Nick Roberts  <nickrob@snap.net.nz>
18149         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
18150         (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
18151         (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
18152         (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
18153         (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
18154         (gdb-send-item): Use buffer-local-value and simplify.
18156 2005-11-05  Luc Teirlinck  <teirllm@auburn.edu>
18158         * startup.el (command-line): Use `custom-reevaluate-setting' for
18159         `global-font-lock-mode'.
18161         * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
18162         by default, except in batch mode or when the -D option is given.
18164         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
18165         specified keyword args on to `define-minor-mode'.  Update docstring.
18167 2005-11-05  Romain Francoise  <romain@orebokech.com>
18169         * replace.el (occur-engine): Add marker at end of line, too.
18171 2005-11-04  Ken Manheimer  <ken.manheimer@gmail.com>
18173         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
18174         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18175         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18176         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18177         argument to all these routines, so the passphrase can be managed
18178         externally and passed in to the system.
18179         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
18180         pgg-add-passphrase-to-cache function.
18182         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
18183         (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
18184         (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
18185         (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
18186         argument to all these routines, so the passphrase can be managed
18187         externally and passed in to the system.
18188         (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
18189         function.
18191 2005-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
18193         * font-lock.el: Don't deal with font-lock-face-attributes here,
18194         move the code ...
18196         * startup.el (command-line): ... here.  Use face-spec-set instead
18197         of custom-declare-face.
18199         * faces.el (face-spec-set): Reset the face if spec is not nil.
18201 2005-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18203         * newcomment.el (comment-region-internal): Box more tightly in the
18204         common case where there's no TAB in the boxed text.
18206 2005-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
18208         * info.el (info-tool-bar-map): Use images prev-node, next-node and
18209         up-node.
18211 2005-11-04  Ulf Jasper  <ulf.jasper@web.de>
18213         * newsticker.el: Commentary updated.  Code formatting changed.
18214         (newsticker-version): Change to "1.9".
18215         (newsticker, newsticker-feed): Doc fix.
18216         (newsticker-url-list): Doc fix.  Add option "Weekly".
18217         (newsticker-retrieval-interval): Add option "Weekly".
18218         (newsticker-headline-processing): Doc fix.
18219         (newsticker-auto-mark-filter): Remove.
18220         (newsticker-auto-mark-filter-list): New.
18221         (newsticker-layout, newsticker-sort-method): Doc fix.
18222         (newsticker-hide-old-items-in-newsticker-buffer)
18223         (newsticker-heading-format, newsticker-item-format)
18224         (newsticker-desc-format): Doc fix.
18225         (newsticker-show-all-rss-elements): Remove.
18226         (newsticker-show-all-news-elements): New.
18227         (newsticker-faces, newsticker-ticker): Doc fix.
18228         (remove-from-invisibility-spec): Code formatting.
18229         (newsticker--process-ids): New.
18230         (newsticker-mode): Doc fix.
18231         (newsticker-mode): Change mode-line-format.
18232         (newsticker-start): Remove debug output.
18233         (newsticker-start-ticker): Doc fix.  Add autoload cookie.
18234         (newsticker-w3m-show-inline-images): Code formatting.
18235         (newsticker-next-item): Call `force-mode-line-update'.
18236         (newsticker-previous-item): Call `force-mode-line-update'.
18237         (newsticker-next-feed): Call `force-mode-line-update'.
18238         (newsticker-previous-feed): Call `force-mode-line-update'.
18239         (newsticker-mark-all-items-at-point-as-read): Code formatting.
18240         (newsticker-show-old-items): Do not show descs.
18241         (newsticker-hide-entry): Hide too much.
18242         (newsticker-hide-entry, newsticker-show-entry)
18243         (newsticker-toggle-auto-narrow-to-feed): Code formatting.
18244         (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
18245         (newsticker-toggle-auto-narrow-to-item): Code formatting.
18246         (newsticker-set-auto-narrow-to-item): Update buffer immediately.
18247         (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
18248         (newsticker-get-news): Call `force-mode-line-update'.
18249         Collect process ids.
18250         (newsticker--sentinel): Change coding system handling.
18251         Move image retrieval to new functions newsticker--get-logo-url-*.
18252         Move feed parsing to new functions newsticker--parse-*.
18253         Update list of process ids.
18254         (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
18255         (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
18256         (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
18257         (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
18258         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
18259         (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
18260         (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
18261         (newsticker--decode-coding-string): Remove.
18262         (newsticker--decode-numeric-entities): Check input.  Format code.
18263         (newsticker--remove-whitespace): Check input.
18264         (newsticker--do-forget-preformatted): Doc fix.
18265         (newsticker--decode-rfc822-date): Allow for missing time.
18266         (newsticker--update-process-ids): New.
18267         (newsticker--image-sentinel): Change comment.
18268         (newsticker--image-read): Change error message.
18269         (newsticker--imenu-goto): Doc fix.  Show headline title.
18270         (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
18271         (newsticker--buffer-do-insert-text): Clean whitespace in
18272         html-rendered headline title.  Code formatting.
18273         Call `newsticker--buffer-print-extra-elements'.
18274         (newsticker--buffer-print-extra-element): Remove.
18275         (newsticker--buffer-print-extra-elements): New.
18276         (newsticker--buffer-do-print-extra-element): New.
18277         (newsticker--buffer-insert-enclosure): Doc fix.  Use MBytes for
18278         large sizes.
18279         (newsticker--run-auto-mark-filter)
18280         (newsticker--do-run-auto-mark-filter):
18281         Use `newsticker-auto-mark-filter-list'.
18283 2005-11-04  Ryan Yeske  <rcyeske@gmail.com>
18285         * net/rcirc.el: Use split-string OMIT-NULLS argument.
18286         (rcirc-print): Force redisplay before running hooks.  Do long
18287         buffer truncation after making new text read-only.  Deal with nil
18288         text when decoding strings.  If TARGET is nil, use either the
18289         currently selected buffer, if it is an rcirc buffer and of the
18290         same process or the process buffer.
18291         (rcirc-mode): Remove header-line.  Recompute short buffer names.
18292         Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
18293         (rcirc-short-buffer-name): Add variable.
18294         (rcirc-kill-buffer-hook): Recompute short buffer names.
18295         Remove nick from private channel.
18296         (rcirc-send-input): Send command text to current-buffer.
18297         Don't clear overlay arrow here.
18298         (rcirc-short-buffer-name): Return a short buffer name.
18299         (rcirc-update-short-buffer-names, rcirc-abbreviate)
18300         (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
18301         buffer-name abbreviations.
18302         (rcirc-kill-buffer-hook-1): Split to make debugging easier.
18303         Do not touch nick-table when killing a parted channel.
18304         (rcirc-window-configuration-change): Rename from rcirc-update-activity.
18305         Clear arrow from current buffer if it is now hidden.
18306         (rcirc-current-buffer): Add variable.
18307         (rcirc-my-nick, rcirc-other-nick, rcirc-server)
18308         (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
18309         Remove -face from names.
18310         (rcirc-update-activity-string): Print "DND" when globally ignoring
18311         activity.
18312         (rcirc-ignore-buffer-activity-flag): Rename from
18313         rcirc-ignore-channel-activity.
18314         (rcirc-ignore-all-activity-flag): Doc fix.
18315         (rcirc-channels): Remove variable.
18316         (rcirc-kill-buffer-hook):
18317         (rcirc-get-buffer-create): Add nick to private channel.
18318         (rcirc-multiline-edit-submit): Remove tabs.
18319         (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
18320         folded.
18321         (rcirc-remove-nick-channel): Bug fix.
18322         (rcirc-toggle-ignore-buffer-activity): Rename from
18323         rcirc-toggle-ignore-channel-activity.
18324         (rcirc-record-activity): Add buffers to the front of the list.
18325         (rcirc-update-activity): Remove killed buffers from list.
18326         (rcirc-process-server-response-1): Remove last argument if it is
18327         null before calling handler.
18328         (rcirc): Add "rcirc" defcustom prefix.
18329         (rcirc-prompt): Simplify default prompt.
18330         Use custom-initialize-default.
18331         (rcirc-private-chats): Remove variable.
18332         (rcirc-prompt): Change initialization.
18333         (rcirc-version): Remove function.
18334         (rcirc-id-string): Add constant.
18335         (rcirc-last-buffer): Remove variable.
18336         (rcirc-buffer-alist): Add variable.
18337         (rcirc-connect): Update variable setup.
18338         (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
18339         (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
18340         default.
18341         (rcirc-handler-generic): Trigger activity.
18342         (rcirc-send-message): Create the buffor of the target.
18343         (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
18344         (rcirc-get-buffer): Just return nil if there is no matching buffer.
18345         (rcirc-multiline-edit-cancel): Remove function.
18346         (rcirc-set-last-buffer): Remove function.
18347         (rcirc-get-any-buffer): Add function.
18348         (rcirc-join-channels): Don't print /join text.
18349         (rcirc-toggle-ignore-channel-activity): Add and update echo area
18350         messages.
18351         (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
18352         (rcirc-handler-NOTICE): Recognize CTCP responses.
18353         (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
18354         constructing TOPIC string for buffers we are not JOINed.
18355         (rcirc-handler-CTCP-response): Add handler.
18356         (rcirc-multiline-edit-submit): Restore the window-configuration
18357         before adjusting point.
18358         (rcirc): Add customization group.
18359         (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
18360         (rcirc-user-full-name, rcirc-startup-channels-alist)
18361         (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
18362         (rcirc-ignore-all-activity-flag, rcirc-time-format)
18363         (rcirc-input-ring-size, rcirc-read-only-flag)
18364         (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
18365         (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
18366         Change defvar to defcustom.
18367         (rcirc-update-prompt): Add optional ALL arg, which will update
18368         prompts in all rcirc buffers.  Regexp quote replacement text.
18369         (rcirc-fill-column): Accept frame-width as a value.
18370         (rcirc-set-changed): Add function.
18371         (rcirc-next-active-buffer): Write more meaningful messages.
18372         (rcirc-faces): Add customization group.
18373         (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
18374         (rcirc-nick-in-message-face, rcirc-prompt-face)
18375         (rcirc-mode-line-nick-face): Move into rcirc-faces group.
18376         (with-rcirc-process-buffer): Move before first usage.
18377         (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
18378         (rcirc-debug-flag): Rename from `rcirc-log-p'.
18379         (rcirc-debug): Rename from `rcirc-log'.
18380         (rcirc-format-response-string): Do not print `-' chars for a
18381         NOTICE with no sender.  Simplify output of server responses.
18383 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
18385         (rcirc-browse-url-map, rcirc-browse-url-at-point)
18386         (rcirc-browse-url-at-mouse, rcirc-mangle-text):
18387         Make urls mouse and RET clickable.
18389 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
18391         * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
18393 2005-11-04  Ken Manheimer  <ken.manheimer@gmail.com>
18395         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
18396         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18397         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18398         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18399         argument to all these routines, so the passphrase can be managed
18400         externally and passed in to the system.
18401         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
18402         pgg-add-passphrase-to-cache function.
18404         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
18405         (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
18406         (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
18407         (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
18408         argument to all these routines, so the passphrase can be managed
18409         externally and passed in to the system.
18410         (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
18411         function.
18413 2005-11-04  Edward O'Connor  <hober0@gmail.com>  (tiny change)
18415         * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
18416         from goto-address-url-regexp.
18418 2005-11-04  Carsten Dominik  <dominik@science.uva.nl>
18420         * textmodes/org.el (org-read-date, org-goto-calendar)
18421         (org-recenter-calendar, org-agenda-goto-calendar):
18422         Temporarily clear `calendar-move-hook'.
18424 2005-11-04  Michael Kifer  <kifer@cs.stonybrook.edu>
18426         * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
18427         merging.
18429         * ediff-util.el (ediff-previous-difference): Don't skip regions that
18430         have merge clashes.
18432 2005-11-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
18434         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
18435         Undo previous change.
18437         * startup.el (command-line): Use `custom-reevaluate-setting' for
18438         mouse-wheel-down-event and mouse-wheel-up-event.  Don't call
18439         tty-register-default-colors on Mac.
18441 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
18443         * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
18444         (gdb-buffer-type): Make it automatically buffer local...
18445         (gdb-get-create-buffer): ...and set it accordingly.
18446         (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
18447         actually work.
18449 2005-11-03  Dan Nicolaescu  <dann@ics.uci.edu>
18451         * font-lock.el (font-lock-warning-face): Use the more vivid red1,
18452         not red.
18454 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
18456         * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
18457         case GUD buffer is not visible.
18458         (gdb-goto-breakpoint): Try to force display in source buffer.
18459         (gdb-frame-gdb-buffer): Copy other similar functions.
18460         (gdb-restore-windows): Don't display source if not asked for.
18461         (gdb-assembler-buffer-name): Don't capitalise.
18463 2005-11-03  Richard M. Stallman  <rms@gnu.org>
18465         * wid-edit.el (key-sequence): New widget type.
18467         * simple.el (set-mark-command-repeat-pop): New variable.
18468         (set-mark-command): Only interpret plan C-@ after a pop as a pop
18469         if set-mark-command-repeat-pop is true.
18471         * info.el (Info-fontify-node): Don't display extra "see" if there
18472         already is one here.
18474         * mouse.el: Fix special handling of DEL after dragging a region:
18475         (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
18476         (mouse-region-delete-keys): Change to defcustom.  Add [backspace].
18478         * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
18480         * textmodes/ispell.el (ispell-command-loop): Change `i' description
18481         not to assume it pertains to an affix.
18483         * textmodes/flyspell.el (flyspell-post-command-hook):
18484         Bind deactivate-mark to prevent deactivation.
18486 2005-11-03  Lars Hansen  <larsh@soem.dk>
18488         * dired-x.el: Add menu bindings for dired-do-find-marked-files,
18489         dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
18490         dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
18492 2005-11-03  Romain Francoise  <romain@orebokech.com>
18494         * net/eudcb-mab.el: Now part of GNU Emacs.  Update FSF's address.
18495         Update copyright years.
18497 2005-11-03  Sam Steingold  <sds@gnu.org>
18499         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
18500         Use system-type instead of window-system because window-system is not
18501         correctly defined during loadup.
18503 2005-11-02  Mark A. Hershberger  <mah@everybody.org>
18505         * xml.el (xml-syntax-table): Allow xml.el to compile in XEmacs.
18506         (xml-parse-tag): Join strings separated by a comment properly.
18508 2005-11-02  Andreas Schwab  <schwab@suse.de>
18510         * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
18512 2005-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18514         * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
18515         (byte-optimize-pure-func): Quote the eval'd value.
18517         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
18518         Rename from perl-font-lock-syntactic-face-function.
18519         Change the calling convention so it can be used as a font-lock MATCHER.
18520         Do the parse-partial-sexp loop outselves.
18521         (perl-font-lock-syntactic-keywords): Use it.
18522         (perl-mode): Don't set font-lock-syntactic-face-function any more.
18524 2005-11-02  Nick Roberts  <nickrob@snap.net.nz>
18526         * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
18527         disassembly buffer too.
18528         (gdb-exited): Remove overlay arrows when execution has finished.
18529         (gdb-info-frames-custom, gdb-info-threads-custom)
18530         (gdb-info-registers-custom): Don't add inappropriate text
18531         properties if inferior is not active.
18533 2005-11-02  Glenn Morris  <rgm@gnu.org>
18535         * progmodes/fortran.el (fortran-blink-match):
18536         Use `blink-matching-delay'.
18538 2005-11-02  John Mongan  <jmongan@mccammon.ucsd.edu>  (tiny change)
18540         * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
18542 2005-11-02  Lars Hansen  <larsh@soem.dk>
18544         * net/tramp.el (tramp-action-out-of-band): Handle scp message
18545         "Permission denied".
18547 2005-11-01  Richard M. Stallman  <rms@gnu.org>
18549         * textmodes/flyspell.el (flyspell-external-point-words):
18550         Pass nil to flyspell-get-word.
18552 2005-11-02  Kim F. Storm  <storm@cua.dk>
18554         * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
18555         item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
18557 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18559         * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
18560         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
18561         (calendar-mouse-print-dates): Add optional `event' argument.
18562         Update interactive-spec.
18563         (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
18564         Use `calendar-event-to-date' instead of `event'.
18566 2005-11-02  Masatake YAMATO  <jet@gyve.org>
18568         * progmodes/ld-script.el (ld-script-builtins):
18569         Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
18570         "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
18571         (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
18573 2005-11-01  Romain Francoise  <romain@orebokech.com>
18575         * vc-sccs.el: Update copyright year.
18576         * ezimage.el: Likewise.
18578 2005-11-01  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>  (tiny change)
18580         * info.el (Info-fontify-node): Use `string-width' for fontifying
18581         underlined titles.
18583 2005-11-01  Juri Linkov  <juri@jurta.org>
18585         * info.el (Info-fontify-node): Downcase node header keywords Node,
18586         Prev, Next, Up before comparison.
18587         (Info-history): Insert absolute directory name, and put invisible
18588         property on it.
18590 2005-11-01  Juri Linkov  <juri@jurta.org>
18592         * info.el (Info-file-supports-index-cookies): New variable.
18593         (Info-find-node-2): Check makeinfo version for index cookie support.
18594         (Info-index-nodes): Search for nodes with index cookies only when
18595         Info-file-supports-index-cookies is t.  Otherwise, search nodes
18596         with "Index" in the node name.
18597         (Info-index-node): Search index cookie in the current node only when
18598         Info-file-supports-index-cookies is t.  Otherwise, check the word
18599         "Index" in the node name.
18600         (Info-find-emacs-command-nodes): Remove code that searches nodes
18601         with "Index" node name in the top menu.
18603 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18605         * progmodes/scheme.el (scheme-mode-variables): Use the default
18606         comment-indent-function.
18608         * faces.el (face-attribute): Handle the case where a face inherits from
18609         a non-existent face.
18611         * simple.el (eval-expression-print-format): Use lisp-readable syntax
18612         for octal and hexa output, and merge the char into the paren.
18613         (kill-new): Use push.
18614         (copy-to-buffer): Use with-current-buffer.
18615         (completion-setup-function): Move code in loop to remove redundancy.
18616         (minibuffer-local-must-match-map): Don't add bindings that duplicate
18617         those inherited from minibuffer-local-completion-map.
18619         * savehist.el (savehist-mode) <defcustom>:
18620         Use custom-set-minor-mode if available.
18621         (savehist-mode) <defun>: Run the minor mode hook, set the custom state
18622         and emit a message if applicable.
18624 2005-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
18626         * savehist.el: Sync up to version 19.
18627         (savehist-mode): New minor mode.
18628         (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
18629         (savehist-length): Remove (use history-length instead).
18630         (savehist-file-modes): Rename from savehist-modes.
18631         (savehist-save-hook, savehist-loaded): New vars.
18632         (savehist-load): Use savehist-mode.  Try to smooth up transition from
18633         old format to new format.
18634         (savehist-install): Allow savehist-autosave-interval to be nil.
18635         (savehist-save): Run the new hook.  Be more careful to only trim the
18636         history variables.
18637         (savehist-trim-history): New fun.  Replaces savehist-process-for-saving.
18638         (savehist-printable): Print into a buffer rather than char-by-char.
18640 2005-11-01  John Wiegley  <johnw@newartisans.com>
18642         * iswitchb.el (iswitchb-define-mode-map): Re-enable the
18643         toggle-ignore keybinding (C-a).  The author said it had been
18644         disabled much earlier due to a possible incompatibility, but after
18645         many months of usage I have encountered no problems (and it is a
18646         rather useful option, especially for switching to " *temp*").
18648         * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
18649         support for OS/X's AddressBook, by calling out to the open source
18650         program "contacts" (installable through Fink).
18652         * net/eudc.el (eudc-expand-inline): If the
18653         `eudc-multiple-match-handling-method' is set to `all', delete the
18654         query string before inserting the query result.
18656         * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
18657         flag, to prevent Eshell from using the system ls when
18658         `eshell-ls-insert-directory' is in used.
18659         (eshell-ls-insert-directory): Disable font-lock in directory
18660         buffer so that Eshell's own fontification is seen.  This broke
18661         recently due to changes in font-lock, so this goes back to version
18662         21 behavior.
18664 2005-11-01  Nick Roberts  <nickrob@snap.net.nz>
18666         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
18667         (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
18668         (gdb-many-windows): Doc fix.
18670 2005-10-31  Romain Francoise  <romain@orebokech.com>
18672         * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
18674 2005-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
18676         * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
18677         that global-font-lock-mode can be enabled by default.
18679         * font-lock.el (font-lock-keywords, font-lock-mode-internal)
18680         (font-lock-add-keywords, font-lock-remove-keywords)
18681         (font-lock-fontify-buffer): Remove autoload cookies.
18683         * jit-lock.el (jit-lock-register): Likewise.
18685         * emacs-lisp/syntax.el (syntax-ppss): Likewise.
18687 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
18689         * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
18690         intact if there is no gud-comint-buffer.
18692 2005-10-31  Luc Teirlinck  <teirllm@auburn.edu>
18694         * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
18695         old prompt comint-prompt-read-only is t and GDB commands are
18696         issued from tool bar etc.
18698 2005-10-31  Masatake YAMATO  <jet@gyve.org>
18700         * vc.el (vc-directory-exclusion-list): Add "{arch}".
18702 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
18704         * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
18705         (thumbs-thumbsdir): Make .emacs.d if it does not exist.
18707 2005-10-30  Michael Albinus  <michael.albinus@gmx.de>
18709         * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
18710         starting at beginning of line.  Fontification is messed up when
18711         `open-paren-in-column-0-is-defun-start' set to t.
18712         Reported by John Paul Wallington <jpw@pobox.com>.
18714 2005-10-30  Luc Teirlinck  <teirllm@auburn.edu>
18716         * comint.el (comint-send-input): Call `comint-update-fence' when
18717         `comint-process-echoes' and `comint-prompt-read-only' are both
18718         non-nil, to avoid leftover read-only newline.
18720 2005-10-30  Richard M. Stallman  <rms@gnu.org>
18722         * textmodes/flyspell.el (flyspell-external-point-words):
18723         Detect when WORD can't be checked properly because
18724         flyspell-get-word finds just part of it, and move on.
18726         * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
18727         boundarychar for Polish.
18728         (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
18729         (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
18731 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
18733         * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
18734         (gdb-registers-font-lock-keywords): Delete.
18735         (gdb-registers-mode): Don't fontify.
18736         (gdb-info-registers-custom): Use text properties instead as, in
18737         future, changed register values will use font-lock-warning-face.
18738         (gdb-local-font-lock-keywords): Rename to...
18739         (gdb-locals-font-lock-keywords): ...for consistency.
18741 2005-10-30  Andre Spiegel  <spiegel@gnu.org>
18743         * vc.el (vc-switch-backend): Better error message if the buffer is
18744         not visiting a file under version control.
18746         * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
18748 2005-10-29  Chong Yidong  <cyd@stupidchicken.com>
18750         * startup.el (command-line): Use ~/.emacs.d/init.el instead of
18751         ~/.emacs.d/.emacs.
18753 2005-10-29  Richard M. Stallman  <rms@gnu.org>
18755         * replace.el (occur-mode-mouse-goto): Always go to other window.
18756         (occur-mode-goto-occurrence): Always switch in same window.
18758         * simple.el (undo): Display message at end, not at start.
18760         * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
18761         New arg REUSE-CELL.
18762         (cancel-timer-internal): New function.
18763         (timer-event-handler): Use cancel-timer-internal,
18764         and pass the cell it returns to timer-activate...
18766         * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
18767         (jit-lock-deferred-fontify, jit-lock-context-fontify)
18768         (jit-lock-after-change): Test memory-full.
18770 2005-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
18772         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
18773         part of the decoded armor to find the key-identifier.
18774         (pgg-gpg-lookup-key-owner): New function to return the
18775         human-readable identifier of a key owner.
18776         (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
18777         key itself.
18778         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
18779         the key value) if we have a key and can match it against a secret
18780         key.  Also, added a note pointing out fact that the prompt only
18781         indicates the first matching key.
18783         * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
18784         pgg-decrypt-region.
18785         (pgg-pending-timers): A new hash for tracking the passphrase cache
18786         timers, so that new ones supercede old ones.
18787         (pgg-add-passphrase-to-cache): Rename from
18788         `pgg-add-passphrase-cache' to reduce confusion (all callers
18789         changed).  Modified to cancel old timers when new ones are added.
18790         (pgg-remove-passphrase-from-cache): Rename from
18791         `pgg-remove-passphrase-cache' to reduce confusion (all callers
18792         changed).  Modified to cancel old timers when their keys are
18793         removed from the cache.
18794         (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
18795         XEmacs, an indirection to delete-itimer.
18796         (pgg-read-passphrase-from-cache, pgg-read-passphrase):
18797         Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
18798         users can only check cache without risk of prompting.  Correct bug in
18799         notruncate behavior.
18800         (pgg-read-passphrase-from-cache, pgg-read-passphrase)
18801         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
18802         Add informative docstrings.
18803         (pgg-decrypt): Convey provided passphrase in subordinate call to
18804         pgg-decrypt-region.
18806         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
18807         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
18808         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
18809         `passphrase' argument, so the passphrase can be managed externally
18810         and then passed in to the system.
18812         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
18813         (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
18814         so the passphrase cache can be used reliably with identifiers
18815         besides a pgp packet's key id.
18817         * pgg-gpg.el (pgg-pgp-encrypt-region)
18818         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18819         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18820         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18821         argument to all these routines, so the passphrase can be managed
18822         externally and passed in to the system.
18824         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
18825         `notruncate' argument, so the passphrase cache can be used
18826         reliably with identifiers besides a pgp packet's key id.
18828 2005-10-29  Sascha Wilde  <swilde@sha-bang.de>
18830         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
18831         symmetric encryption.
18832         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
18833         encrypted session key.
18834         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
18835         message ask for the passphrase in a proper way.
18837         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
18838         New user commands for symmetric encryption.
18840 2005-10-29  Roland Winkler  <roland.winkler@physik.uni-erlangen.de>
18842         * textmodes/conf-mode.el (conf-assignment-sign)
18843         (conf-assignment-regexp): Fix docstrings.
18844         (conf-mode-initialize): New function.
18845         (conf-mode): Remove optional args.  Use delay-mode-hooks to
18846         recognize recursive calls.
18847         (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
18848         (conf-space-mode, conf-colon-mode, conf-ppd-mode)
18849         (conf-xdefaults-mode): Use define-derived-mode and
18850         conf-mode-initialize.
18852 2005-10-29  Romain Francoise  <romain@orebokech.com>
18854         * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
18856 2005-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
18858         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
18859         part of the decoded armor to find the key-identifier.
18860         (pgg-gpg-lookup-key-owner): New function to return the
18861         human-readable identifier of a key owner.
18862         (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
18863         key itself.
18864         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
18865         the key value) if we have a key and can match it against a secret
18866         key.  Also, added a note pointing out fact that the prompt only
18867         indicates the first matching key.
18869         * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
18870         pgg-decrypt-region.
18871         (pgg-pending-timers): A new hash for tracking the passphrase cache
18872         timers, so that new ones supercede old ones.
18873         (pgg-add-passphrase-to-cache): Rename from
18874         `pgg-add-passphrase-cache' to reduce confusion (all callers
18875         changed).  Modified to cancel old timers when new ones are added.
18876         (pgg-remove-passphrase-from-cache): Rename from
18877         `pgg-remove-passphrase-cache' to reduce confusion (all callers
18878         changed).  Modified to cancel old timers when their keys are
18879         removed from the cache.
18880         (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
18881         XEmacs, an indirection to delete-itimer.
18882         (pgg-read-passphrase-from-cache, pgg-read-passphrase):
18883         Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
18884         users can only check cache without risk of prompting.  Correct bug in
18885         notruncate behavior.
18886         (pgg-read-passphrase-from-cache, pgg-read-passphrase)
18887         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
18888         Add informative docstrings.
18889         (pgg-decrypt): Convey provided passphrase in subordinate call to
18890         pgg-decrypt-region.
18892 2005-10-20  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
18894         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
18895         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
18896         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
18897         `passphrase' argument, so the passphrase can be managed externally
18898         and then passed in to the system.
18900         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
18901         (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
18902         so the passphrase cache can be used reliably with identifiers
18903         besides a pgp packet's key id.
18905         * pgg-gpg.el (pgg-pgp-encrypt-region)
18906         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18907         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18908         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18909         argument to all these routines, so the passphrase can be managed
18910         externally and passed in to the system.
18912         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
18913         `notruncate' argument, so the passphrase cache can be used
18914         reliably with identifiers besides a pgp packet's key id.
18916 2005-10-29  Sascha Wilde  <swilde@sha-bang.de>
18918         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
18919         symmetric encryption.
18920         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
18921         encrypted session key.
18922         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
18923         message ask for the passphrase in a proper way.
18925         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
18926         New user commands for symmetric encryption.
18928 2005-10-28  Bill Wohler  <wohler@newt.com>
18930         * help-mode.el (help-url): New button type.  Calls browse-url.
18931         (help-xref-url-regexp): New regexp to recognize URLs in docstring.
18932         Similar to Info nodes: URL `url'.
18933         (help-make-xrefs): Create help-url buttons for
18934         help-xref-url-regexp matches.
18936 2005-10-29  Nick Roberts  <nickrob@snap.net.nz>
18938         * tool-bar.el (tool-bar-add-item-from-menu)
18939         (tool-bar-local-item-from-menu): Fix doc strings.
18941 2005-10-28  Romain Francoise  <romain@orebokech.com>
18943         * ldefs-boot.el: Update.
18945         * subr.el (locate-library): Move from help-fns.el.
18946         * help-fns.el (locate-library): Move to subr.el.
18948 2005-10-28  Richard M. Stallman  <rms@gnu.org>
18950         * net/tramp.el (tramp-completion-mode): defvar moved up.
18952         * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
18954         * tool-bar.el (tool-bar-mode): Delete autoload cookie.
18956         * files.el (find-file-noselect): Use %d to format large file size.
18958         * bindings.el (mode-line-format): Add %e.
18960         * loadup.el ("facemenu"): Load unconditionally.
18961         ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
18962         ("x-dnd"): Load, when appropriate.
18964         * startup.el (command-line): Call before-init-hook earlier.
18965         Warn about some bad characters in -u user name.
18967         * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
18968         (flyspell-external-point-words): Error if misspelled word is not found.
18969         Set flyspell-large-region-beg at end of word.
18971 2005-10-28  Andreas Schwab  <schwab@suse.de>
18973         * view.el (View-revert-buffer-scroll-page-forward):
18974         Use view-page-size-default.
18976 2005-10-28  Juri Linkov  <juri@jurta.org>
18978         * international/quail.el (quail-get-current-str): Translate last
18979         raw character for deterministic input methods.
18981 2005-10-27  Jay Belanger  <belanger@truman.edu>
18983         * calc/calc-ext.el: Add functions to autoloads.
18984         (math-identity-matrix-p, math-ident-row-p): New functions.
18986         * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
18987         multiplication by an identity matrix; don't turn multiplication by
18988         an inverse matrix into division.
18989         (math-div-symbol-fancy): Replace division by matrices with
18990         multiplication by inverse.
18992         * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
18994         * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
18995         (calc-writeoutpower): New functions.
18997 2005-10-27  Romain Francoise  <romain@orebokech.com>
18999         * replace.el (occur-engine): Include colon in mouse-face highlight.
19001         * dired-x.el: Change Maintainer field.
19003 2005-10-26  Chong Yidong  <cyd@stupidchicken.com>
19005         * longlines.el (longlines-mode): Bind after-change-functions to
19006         nil during initial decoding and final encoding.
19008 2005-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
19010         * term.el (term-emulate-terminal, term-handle-colors-array)
19011         (term-handle-ansi-escape): Specify the terminfo capabilities
19012         implemented.
19014 2005-10-26  Richard M. Stallman  <rms@gnu.org>
19016         * info.el (Info-fontify-node): Fix detection of sentence-break
19017         before *Note.
19019 2005-10-26  Romain Francoise  <romain@orebokech.com>
19021         * smerge-mode.el: Add `tools' to file keywords.
19023 2005-10-26  Nick Roberts  <nickrob@snap.net.nz>
19025         * progmodes/gud.el (gud-menu-map): Only display gud-until icon
19026         when the fringe is not available.
19028         * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
19029         (def-gdb-auto-update-trigger): Simplify construction.
19030         (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
19031         def-gdb-auto-updated-buffer as gdb-info-locals-handler is
19032         defined explicitly.
19033         (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
19034         def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
19035         defined explicitly.
19036         (gdb-info-locals-custom): Remove as it's a no-op.
19038 2005-10-25  Chong Yidong  <cyd@stupidchicken.com>
19040         * longlines.el (longlines-mode): Remove narrowing before
19041         performing the initial decoding or final encoding.
19043 2005-10-25  Romain Francoise  <romain@orebokech.com>
19045         * emacs-lisp/find-func.el (find-library-name): Also strip
19046         extension if library name ends in .el, to take advantage of
19047         `find-library-suffixes'.
19049 2005-10-25  Richard M. Stallman  <rms@gnu.org>
19051         * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
19053 2005-10-25  Juri Linkov  <juri@jurta.org>
19055         * textmodes/texinfo.el (texinfo-mode): Change charset of one
19056         quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
19058 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19060         * play/blackbox.el (blackbox-mode-map): Move init into declaration.
19061         (blackbox-redefine-key): Add argument `map'.
19063         * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
19064         regions when moving the jit-lock-context-unfontify-pos boundary.
19066 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
19068         * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
19070 2005-10-25  Masatake YAMATO  <jet@gyve.org>
19072         * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
19074 2005-10-25  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>
19076         * play/blackbox.el (blackbox-redefine-key): New function.
19077         (blackbox-mode-map): Use it to remap existing bindings for cursor
19078         motion instead of binding literal keys.
19080 2005-10-25  Glenn Morris  <rgm@gnu.org>
19082         * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
19083         diary does not end in a newline.  Do not assume a blank line at
19084         the start of the diary file.
19086 2005-10-25  Kenichi Handa  <handa@m17n.org>
19088         * international/quail.el (quail-translate-key): If the input
19089         method is deterministic and failed to handle the last key, restart
19090         the key handling loop from an appropriate key.
19092 2005-10-25  Michael Albinus  <michael.albinus@gmx.de>
19094         * vc.el (vc-dired-mode): Extend comment for binding of
19095         `directory-listing-before-filename-regexp'.
19097 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19099         * textmodes/texinfo.el (texinfo-mode):
19100         * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
19101         not to unnecessarily expose emacs-mule's internal char codes.
19103 2005-10-25  Nick Roberts  <nickrob@snap.net.nz>
19105         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
19106         Display hand pointer and help-echo on disabled icon too.
19107         (gdb-mouse-until): New function.
19108         (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
19110 2005-10-24  Chong Yidong  <cyd@stupidchicken.com>
19112         * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
19113         with 2005-10-23 change to doctor.el.
19115         * finder.el (finder-mode-map): Add follow-link binding.
19117 2005-10-25  Kim F. Storm  <storm@cua.dk>
19119         * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
19120         to gdb-mouse-toggle-breakpoint-fringe.
19121         (gdb-mouse-toggle-breakpoint-margin): Rename from
19122         gdb-mouse-toggle-breakpoint.  Fix doc.
19123         (gdb-mouse-toggle-breakpoint-fringe): New defun.
19124         (gdb-put-string): Add optional SPROPS arg.  Add props to string.
19125         (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
19126         string properties also for fringe breakpoint bitmaps.
19128 2005-10-24  Carsten Dominik  <dominik@science.uva.nl>
19130         * textmodes/org.el (org-start-icalendar-file): Fix format form.
19132 2005-10-25  Masatake YAMATO  <jet@gyve.org>
19134         * simple.el (completion-common-substring):
19135         Use `completion-common-substring' prior to `completion-base-size'.
19137 2005-10-24  Hrvoje Niksic  <hniksic@xemacs.org>
19139         * savehist.el: Require CL while compiling.
19140         (savehist-history-variables): Remove.
19141         (savehist-save-minibuffer-history, savehist-additional-variables)
19142         (savehist-minibuffer-history-variables): New vars.
19143         (savehist-save): Use them.
19144         (savehist-uninstall, savehist-minibuffer-hook): New funs.
19145         (savehist-install): New fun, extracted from savehist-load.
19146         (savehist-load): Use them.
19148 2005-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19150         * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
19151         a dummy doc-string-elt property.
19152         (defalias, defvaralias, define-category): Add a docstring property.
19154         * image.el (defimage):
19155         * widget.el (define-widget):
19156         * custom.el (defface, defcustom): Add `doc-string' declaration.
19158         * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
19159         (defadvice): Add `doc-string' declaration.
19161         * emacs-lisp/byte-run.el (macro-declaration-function):
19162         Handle `doc-string' declarations.
19163         (define-obsolete-function-alias, define-obsolete-variable-alias):
19164         Add `doc-string' declaration.
19166 2005-10-24  Kenichi Handa  <handa@m17n.org>
19168         * international/utf-7.el (utf-7): Add autoload cookie.
19170         * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
19172 2005-10-24  Eli Zaretskii  <eliz@gnu.org>
19174         * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
19175         list of directories passed to batch-update-autoloads.  Add "." to
19176         the list of the echoed directories.
19178         * pgg-def.el:
19179         * pgg-gpg.el:
19180         * pgg-parse.el:
19181         * pgg-pgp.el:
19182         * pgg-pgp5.el:
19183         * pgg.el: Moved here from the gnus subdirectory.
19185 2005-10-24  Nick Roberts  <nickrob@snap.net.nz>
19187         * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
19188         in case comint-prompt-read-only is set to t.
19190         * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
19191         in case comint-prompt-read-only is set to t.
19193 2005-10-24  Ulf Jasper  <ulf.jasper@web.de>
19195         * calendar/icalendar.el (icalendar-version): Increase to 0.13.
19196         Now a string.
19197         (icalendar-import-format): Handle CLASS, STATUS, URL.
19198         Rename `subject' to `summary'.
19199         (icalendar-import-format-summary): Rename from
19200         `icalendar-import-format-subject'.
19201         (icalendar-import-format-url, icalendar-import-format-status)
19202         (icalendar-import-format-class): New variables.
19203         (icalendar--rris): Take variable argument list.
19204         (icalendar--datestring-to-isodate): Remove unnecessary
19205         calendar-style check when converting dates with explicit month names.
19206         (icalendar-export-region): Change return type of conversion
19207         subroutines.  Bury current buffer unless error occurred.
19208         (icalendar--convert-to-ical)
19209         (icalendar--parse-summary-and-rest): New functions.
19210         (icalendar--convert-ordinary-to-ical)
19211         (icalendar--convert-weekly-to-ical)
19212         (icalendar--convert-yearly-to-ical)
19213         (icalendar--convert-block-to-ical)
19214         (icalendar--convert-cyclic-to-ical)
19215         (icalendar--convert-anniversary-to-ical): Change return type.
19216         Strip trailing blanks from subject.
19217         (icalendar--convert-sexp-to-ical): Change return type.
19218         Strip trailing blanks from subject.  Handle simple sexp
19219         entries as generated by icalendar.el.
19220         (icalendar--convert-float-to-ical)
19221         (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
19222         (icalendar-import-file): Doc fix.
19223         (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
19224         Correct call to icalendar--rris.
19225         (icalendar--convert-ical-to-diary): Doc fix.  Rename `subject' to
19226         `summary'.
19227         (icalendar--add-diary-entry): Rename `subject' to `summary'.
19229 2005-10-24  Romain Francoise  <romain@orebokech.com>
19231         * server.el (server-sentinel): Set query-on-exit flag to nil on
19232         new client processes (it isn't inherited from the server process).
19234         * replace.el (occur-engine): Rearrange text properties.
19236 2005-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19238         * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
19239         case-fold-search is nil.
19240         (debug-help-follow): Use help-xref-interned directly.
19242 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19244         * thumbs.el (thumbs-image-type): Add .pbm.
19246 2005-10-23  Richard M. Stallman  <rms@gnu.org>
19248         * faces.el (inhibit-face-set-after-frame-default): New variable.
19249         (set-face-attribute): Bind it.
19250         (face-set-after-frame-default): Test it.
19252         * help-fns.el (describe-simplify-lib-file-name): New function.
19253         (describe-function-1, describe-variable): Use it.
19255         * faces.el (describe-face): Use describe-simplify-lib-file-name.
19257         * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
19258         Eliminate nil as possible value.
19259         (tooltip-hide-delay): Reduce internal-border-width.
19261         * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
19262         (menu-bar-file-menu) <new-file>: Likewise.
19264         * simple.el (line-move-finish): Ignore fields computing LINE-END.
19266         * international/mule.el (load-with-code-conversion):
19267         Pass full file name to `eval-buffer' unless preloading.
19269         * textmodes/flyspell.el (flyspell-large-region):
19270         Call ispell-check-version.
19272         * textmodes/ispell.el (ispell-local-dictionary-overridden):
19273         Fix the make-variable-buffer-local call that was supposed
19274         to be for this variable.
19275         (ispell-aspell-supports-utf8): Doc fix.
19276         (ispell-find-aspell-dictionaries): Preserve elements of
19277         ispell-dictionary-alist for dictionaries that aspell doesn't report.
19278         (ispell-aspell-find-dictionary): Return nil on error.
19280         * play/doctor.el (doctor-doc): Don't say "psychiatrist".
19281         (doctor-symptoms): Likewise.
19283         * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
19285 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19287         * cus-edit.el (custom-button, custom-button-pressed): New vars.
19288         (custom-raised-buttons): Add :set spec.
19289         (custom-button-unraised, custom-button-pressed-unraised):
19290         New faces, so that custom-raised-buttons actually does something.
19291         (custom-mode): Use custom-button and custom-button-pressed.
19293         * wid-edit.el (widget-specify-button): Don't ignore
19294         widget-mouse-face on graphic terminals.
19295         (widget-move-and-invoke): Cleanup.
19297 2005-10-23  Thien-Thi Nguyen  <ttn@gnu.org>
19299         * whitespace.el (whitespace-cleanup): Doc fix.
19301 2005-10-23  Romain Francoise  <romain@orebokech.com>
19303         * emulation/viper.el (viper-set-hooks): Quote forms passed to
19304         `eval-after-load' to avoid evaluating their result.
19306 2005-10-23  Michael Albinus  <michael.albinus@gmx.de>
19308         * files.el (directory-listing-before-filename-regexp):
19309         New defvar.  Replaces `dired-move-to-filename-regexp' from dired.el.
19311         * dired.el (dired-move-to-filename-regexp): Remove.
19312         All occurences replaced by `directory-listing-before-filename-regexp'.
19314         * dired-x.el, locate.el, vc.el:
19315         Replace `dired-move-to-filename-regexp' by
19316         `directory-listing-before-filename-regexp'.  In vc.el it is
19317         overwritten locally; maybe this can be handled in files.el too.
19319         * net/ange-ftp.el (ange-ftp-date-regexp): Remove.  All occurences
19320         replaced by `directory-listing-before-filename-regexp'.
19322 2005-10-23  Andreas Schwab  <schwab@suse.de>
19324         * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
19325         and eval-next-after-load.
19327 2005-10-23  MIYOSHI Masanori  <miyoshi@meadowy.org>  (tiny change)
19329         * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
19330         exist, create it.
19332 2005-10-23  Ken Manheimer  <ken.manheimer@gmail.com>
19334         * allout.el: Remove autoloads for mailcrypt and crypt++.
19335         Require pgg, pgg-gpg during compilation.
19336         (allout-version): Increment version number to 2.1, and use a literal
19337         rather than RCS Id.
19338         (allout-default-encryption-scheme): Remove.
19339         (allout-passphrase-verifier-handling)
19340         (allout-passphrase-verifier-string)
19341         (allout-file-passphrase-verifier-string)
19342         (allout-passphrase-hint-string): Rename -key- to -passphrase-.
19343         (allout-passphrase-hint-handling): Rename and simplify.
19344         (allout-init): Use `find-file-hook' if available, otherwise
19345         `find-file-hooks'.
19346         (allout-mode): Use `write-file-functions' if available, otherwise
19347         `local-write-file-hooks' and, instead of making auto-save-hook
19348         buffer local, make the write-file-hook activity contingent to
19349         allout-mode.
19350         (allout-mode): Use key-binding substitution in the docstring.
19351         (allout-kill-line): Spell-out kill ring data structure mutation
19352         instead of using byte-compiler-complaint-provoking `pop'.
19353         (allout-insert-listified): Use `insert' rather than `insert-string'
19354         (allout-toggle-current-subtree-encryption): Update docstring, adjust
19355         to new gpp-based encryption, use new `allout-encrypted-topic-p'.
19356         (allout-encrypt-string): Totally revamped vis new underlying
19357         encryption facilities.
19358         (allout-mc-activate-passwd): Remove.
19359         (allout-obtain-passphrase): New, more or less replaces
19360         allout-mc-activate-passwd.
19361         (allout-encrypted-key-info): More or less replaces
19362         allout-encrypted-text-type.
19363         (outlineify-sticky, outlinify-sticky): Add autoload cookie.
19364         (my-mark-marker): Use `(featurep 'xemacs)'.
19366 2005-10-23  Lars Hansen  <larsh@soem.dk>
19368         * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
19369         (byte-compile-file-form-defmumble, byte-compile-defun)
19370         (byte-compile-defmacro): Use it.
19371         (byte-compile-form): Don't call byte-compile-set-symbol-position
19372         when a byte-compile handler is called.
19374 2005-10-22  Romain Francoise  <romain@orebokech.com>
19376         * savehist.el (savehist-history-variables): Add `grep-find-history'.
19378         * subr.el (eval-after-load): Convert library name to an absolute
19379         file name using locate-library, since load-history no longer has
19380         library names in it.
19382 2005-10-22  Richard M. Stallman  <rms@gnu.org>
19384         * files.el (make-temp-file): Move from subr.el.
19385         * subr.el (make-temp-file): Move to files.el.
19387         * window.el (get-buffer-window-list): Move from subr.el.
19388         * subr.el (get-buffer-window-list): Move to window.el.
19390         * image.el (image-load-path): Use eval-at-startup to initialize.
19392         * subr.el (eval-at-startup): New macro.
19394         * subr.el: Much rearrangement of functions and division
19395         into pages.  No code changes.
19397 2005-10-22  Kenichi Handa  <handa@m17n.org>
19399         * tar-mode.el (tar-extract): Be sure to call
19400         find-operation-coding-system if set-auto-coding doesn't find a
19401         coding system.
19403 2005-10-22  Kim F. Storm  <storm@cua.dk>
19405         * image.el (image-type-header-regexps): Rename from image-type-regexps.
19406         Change users.
19407         (image-type-file-name-regexps): New defconst.
19408         (image-type-from-data): Simplify loop.
19409         (image-type-from-buffer): New defun.
19410         (image-type-from-file-header): Use it instead of image-type-from-data.
19411         Use image-search-load-path instead of only looking in data-directory.
19412         (image-type-from-file-name): New defun.
19413         (image-search-load-path): Change `pathname' to `filename'.
19414         Make PATH arg optional, default to image-load-path.
19416 2005-10-21  Richard M. Stallman  <rms@gnu.org>
19418         * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
19420         * textmodes/paragraphs.el (sentence-end-base): New variable.
19421         (sentence-end): Use sentence-end-base.
19423 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19425         * font-lock.el (font-lock-default-fontify-region): Check the multiline
19426         property independently from the font-lock-multiline variable.
19428 2005-10-21  Richard M. Stallman  <rms@gnu.org>
19430         * emacs-lisp/find-func.el (find-library-name): Doc fix.
19432         * startup.el (command-line): Convert library names
19433         in `load-history' to absolute file names.
19435         * subr.el (symbol-file): Doc fix.
19437         * loadhist.el (file-loadhist-lookup): Call locate-library
19438         instead of find-library-name.  Don't try converting
19439         abs file names to library names, since load-history no longer
19440         has library names in it.
19441         (file-dependents, file-provides, file-requires): Doc fixes.
19443 2005-10-21  Juri Linkov  <juri@jurta.org>
19445         * progmodes/etags.el (tags-table-mode): New function.
19446         (tags-verify-table): Replace initialize-new-tags-table with
19447         tags-table-mode.
19449         * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
19450         default value.
19451         (desktop-modes-not-to-save): Add tags-table-mode to the
19452         default value.
19454         * info.el (Info-index-next): Add total number of index
19455         alternatives to the message.
19457         * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
19458         backward only space (instead of space and period) before looking
19459         at sentence end.
19461         * simple.el (set-variable): Use user-variable-p instead of symbolp.
19462         Add the old variable value as 4th default-value arg of read-string.
19464 2005-10-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19466         * cus-face.el (custom-declare-face): Make face from X resources
19467         also on Mac.
19469         * disp-table.el (standard-display-g1, standard-display-graphic):
19470         Refuse to use string glyphs also on Mac.
19471         (standard-display-european): Don't set terminal coding system also
19472         on Mac.
19474         * frame.el (display-screens): Use x-display-screens also on Mac.
19476 2005-10-21  Romain Francoise  <romain@orebokech.com>
19478         * net/rcirc.el: Now part of GNU Emacs.  Update FSF's address.
19480 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19482         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
19483         and $? into sexps.
19485         * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
19486         warning face on open-paren-in-column-0.
19488         * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
19489         boundary case.  Fix typo.
19490         Suggested by Martin Rudalics <rudalics@gmx.at>.
19492 2005-10-21  Carsten Dominik  <dominik@science.uva.nl>
19494         * textmodes/org.el (org-combined-agenda-icalendar-file)
19495         (org-icalendar-include-todo, org-icalendar-combined-name): New options.
19496         (org-export-icalendar-this-file)
19497         (org-export-icalendar-all-agenda-files)
19498         (org-export-icalendar-combine-agenda-files): New commands.
19499         (org-export-icalendar, org-print-icalendar-entries)
19500         (org-start-icalendar-file, org-finish-icalendar-file)
19501         (org-ical-ts-to-string): New functions.
19502         (org-read-date, org-goto-calendar)
19503         (org-agenda-goto-calendar): Inhibit displaying diary entries by
19504         call to `calendar'.
19505         (orgtbl-setup): Remove the :keys arguments from the menu description.
19506         (org-after-save-iCalendar-file-hook): New variable.
19508 2005-10-21  Kenichi Handa  <handa@m17n.org>
19510         * language/vietnamese.el (tcvn-5712): Make it an alias of
19511         vietnamese-tcvn coding-system.
19513 2005-10-20  Michael Albinus  <michael.albinus@gmx.de>
19515         * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
19516         group id is given.
19518 2005-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19520         * progmodes/sh-script.el (sh-escaped-line-re): New var.
19521         (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
19522         (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
19523         whose line is either continued or ends with a comment.
19525 2005-10-20  Romain Francoise  <romain@orebokech.com>
19527         * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
19529         * replace.el (occur-engine): Add follow-link property.
19531         * font-core.el (font-lock-mode): Doc fix.
19533 2005-10-20  Richard M. Stallman  <rms@gnu.org>
19535         * net/rcirc.el: New file.
19537 2005-10-20  Bryan Henderson  <bryanh@giraffe-data.com>  (tiny change)
19539         * term.el (term-term-name): Initialize to "eterm-color".
19541 2005-10-20  Ken Manheimer  <ken.manheimer@gmail.com>
19543         * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
19544         for encryption functionality.
19545         Move allout customization subgroup from `editing' to `outlines' group.
19546         Fix commentary keywords to legitimate ones.
19547         Update author info (using my current email address, obscurified).
19548         (allout-encrypt-string, allout-encryption-produce-work-buffer)
19549         (allout-encrypted-topic-p, allout-encrypted-text-type)
19550         (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
19551         (allout-situate-encryption-key-verifier)
19552         (allout-get-encryption-key-verifier, allout-verify-key)
19553         (allout-next-topic-pending-encryption)
19554         (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
19555         (outline-topic-encryption-bullet, outline-default-encryption-scheme)
19556         (outline-key-verifier-handling, outline-key-hint-handling)
19557         (outline-encrypt-unencrypted-on-saves): New defcustoms.
19558         (allout-file-key-verifier-string, allout-encryption-scheme)
19559         (allout-key-verifier-string, allout-key-hint-string)
19560         (allout-after-save-decrypt): New variables.
19561         (allout-write-file-hook-handler, allout-auto-save-hook-handler)
19562         (allout-after-saves-handler): New hook functions.
19563         (allout-post-command-business): Do allout-after-save-decrypt.
19564         (allout-enable-file-variable-adjustment): Custom var to enable
19565         mechanism for adding and adjusting settings of Emacs file variables.
19566         (allout-adjust-file-variable, allout-file-vars-section-data):
19567         New functions, implement the mechanism.
19568         (outlineify-sticky): Use the file vars mechanism.
19569         (allout-inhibit-protection, allout-during-write-cue)
19570         (allout-override-protect, allout-before-change-protect): Remove.
19571         (allout-flag-region, allout-open-topic): Adjust read-only text.
19572         (allout-open-line-not-read-only): Add to facilitate read-only
19573         text based protection.
19574         (allout-kill-line): Revise to adjust read-only text, clue the
19575         user about the inhibition.
19576         (allout-unprotected): Use unwind-protect.
19577         (allout-shift-in, allout-shift-out): Disallow manually shifting a
19578         topic deeper than the offspring depth of the previous topic -
19579         avoiding confusing "containment discontinuities".
19580         (allout-reindent-bodies): Fix retention of body relative hanging
19581         indent during promotion of collapsed bodies.
19582         (allout-open-topic): Make it easy to open new topic with same
19583         bullet as current topic - topic creation functions provided with
19584         any universal argument provokes now prompt for bullet, defaulting
19585         to the bullet of the previous topic.
19586         (allout-plain-bullets-string, allout-distinctive-bullets-string):
19587         Plain bullet alternates `.' period and `,' comma only.  All other
19588         bullets are relegated to special status (but customizable).
19589         (allout-end-of-entry): Rename from allout-end-of-current-entry
19590         since it actually operates w.r.t. most immediately containing
19591         entry, visible or not.
19592         (allout-hide-current-entry, allout-show-current-entry): Use the
19593         revised version.
19594         (allout-old-expose-topic): Solidify deprecation.
19595         (allout-end-of-subtree): Add so we can span concealed as well
19596         as visible topics.
19597         (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
19598         (allout-end-of-current-heading): Tweak to just respect the first line.
19599         (allout-get-body-text): Add.
19600         (allout-ascend-to-depth, allout-ascend): Position at end of prefix
19601         when invoked interactively.
19602         (allout-up-current-level): Use `interactive-p'.
19603         (allout-mode, allout-init): Miscellaneous docstring and
19604         operational refinements, as well as hookups of new encryption stuff.
19605         (allout-beginning-of-current-entry): Now works as advertised.
19606         (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
19607         (allout-isearch-rectification): Refine condition for isearching.
19608         (allout-isearch-abort, allout-enwrap-isearch)
19609         (allout-flag-region, my-region-active-p): Relocate some macros.
19610         (allout-title): Fallback title is (buffer-name), not
19611         non-existing (current-buffer-name).
19612         (subst-char-in-string): Define if absent (for some XEmacs versions).
19614 2005-10-20  Jari Aalto  <jari.aalto@cante.net>
19616         * mail/sendmail.el (mail-setup-hook, mail-aliases)
19617         (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
19618         (mail-citation-prefix-regexp, mail-signature-file)
19619         (mail-default-headers, mail-bury-selects-summary)
19620         (mail-send-nonascii): Add autoload cookies.
19622 2005-10-20  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
19624         * frame.el (blink-cursor-mode): Add `mac' to the list of
19625         window-system's that support blinking cursor.
19627 2005-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
19629         * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
19631 2005-10-20  Eli Zaretskii  <eliz@gnu.org>
19633         * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
19634         Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
19635         to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
19637 2005-10-20  Kim F. Storm  <storm@cua.dk>
19639         * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
19640         (ido-set-current-directory): Don't add / after final @.
19641         (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
19642         Explicitly handle ange-ftp completion oddities.
19643         (ido-make-file-list): Don't rotate list at tramp root to avoid
19644         triggering tramp file handler for expand-file-name via get-file-buffer.
19646 2005-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
19648         * savehist.el (savehist-coding-system): Revert to checking XEmacs.
19650 2005-10-19  Jay Belanger  <belanger@truman.edu>
19652         * calc/calc-units.el (math-standard-units): Add units, adjust
19653         symbols and update values.
19654         (math-unit-prefixes): Add more prefixes.
19656 2005-10-19  Romain Francoise  <romain@orebokech.com>
19658         * bookmark.el (bookmark-menu-heading): New face.
19659         (bookmark-bmenu-list): Use it.
19660         Don't fiddle with `baud-rate' at top-level.
19662 2005-10-18  Chong Yidong  <cyd@stupidchicken.com>
19664         * image.el (create-image, find-image): Mention max-image-size in
19665         docstring.
19667 2005-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
19669         * savehist.el (savehist-load): Revert to checking XEmacs.
19671         * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
19672         Various docstring and line-width fixups.
19673         (conf-mode): Use cond.
19674         Set font-lock-defaults.  Don't set comment-use-syntax.
19676 2005-10-18  David Ponce  <david@dponce.com>
19678         * tree-widget.el (tree-widget-button-click): New function.
19679         (tree-widget-button-keymap): Use it.
19681 2005-10-18  Romain Francoise  <romain@orebokech.com>
19683         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
19684         (bookmark-bmenu-hide-filenames): Add follow-link property.
19685         Improve help-echo text.
19687         * ffap.el (find-file-at-point): Doc fix.
19689 2005-10-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19691         * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
19693 2005-10-18  Masatake YAMATO  <jet@gyve.org>
19695         Install to the CVS repository what I forgot to install in my
19696         2005-10-16 changes.
19698         * progmodes/python.el (python-complete-symbol): Pass the common
19699         prefix substring of completion to `display-completion-list'.
19701         * textmodes/org.el (org-complete): Ditto.
19703 2005-10-18  Masatake YAMATO  <jet@gyve.org>
19705         Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
19707         * woman.el (WoMan-xref-man-page): New button type derived
19708         from `Man-abstract-xref-man-page'.
19709         (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
19711         * man.el (Man-abstract-xref-man-page): New button type.
19712         (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
19713         (Man-highlight-references): Add new optional argument `xref-man-type'.
19715 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
19717         * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
19719 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
19721         * cus-edit.el (Custom-move-and-invoke): Delete.
19722         (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
19724         * wid-edit.el (widget-move-and-invoke): New function, from
19725         Custom-move-and-invoke.
19727 2005-10-17  Bill Wohler  <wohler@newt.com>
19729         Move all remaining images from lisp/toolbar to etc/images, move
19730         lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar.  Place
19731         the low resolution images in their own directory (low-color).
19733         * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
19734         * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
19735         * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
19736         * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
19737         * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
19738         * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
19739         * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
19741         * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
19742         * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
19743         * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
19744         * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
19745         * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
19746         * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
19747         * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
19748         * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
19749         * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
19750         * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
19751         * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
19752         * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
19753         * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
19754         * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
19755         * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
19757         To conform with convention, replace the underscore (_) in the
19758         following image names with dash (-) or (/) as appropriate.
19760         * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
19761         * toolbar/fld_open.*: Move to etc/images/fld-open.*.
19762         * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
19763         * toolbar/jump_to.*: Move to etc/images/jump-to.*.
19764         * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
19765         * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
19766         * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
19767         * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
19768         * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
19769         * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
19770         * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
19771         * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
19772         * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
19773         * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
19774         * toolbar/mail_send.*: Move to etc/images/mail/send.*.
19776         * info.el (info-tool-bar-map): Replace underscores in image names
19777         with dashes.
19779         * makefile.w32-in (WINS): Remove toolbar.
19781         * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
19783         * tool-bar.el: Move to lisp from toolbar.  Now that
19784         toolbar is empty, it should be deleted when folks run "cvs up -P".
19786 2005-10-18  Jay Belanger  <belanger@truman.edu>
19788         * calc/calc-store.el (calc-store-into): Get the proper variable name
19789         to display in message.
19791 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
19793         * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
19794         expressions display in speedbar for all buffers when debugging.
19795         (gdb-speedbar-expand-node): Ensure node contraction is always updated.
19797         * speedbar.el (speedbar-set-mode-line-format): Indent properly.
19798         (speedbar-insert-button, speedbar-make-button):
19799         Use add-text-properties.
19800         (speedbar-update-localized-contents)
19801         (speedbar-update-directory-contents)
19802         (speedbar-update-special-contents): Use dolist.
19803         (speedbar-buffer-easymenu-definition): Add a menu separator.
19805 2005-10-17  Jason Rumney  <jasonr@gnu.org>
19807         * makefile.w32-in: Use $(lisp) consistently.
19808         (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
19809         for shell specific generation of mh-autoloads.
19811 2005-10-17  Richard M. Stallman  <rms@gnu.org>
19813         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
19815 2005-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19817         * jit-lock.el (jit-lock-fontify-now):
19818         Move jit-lock-context-unfontify-pos to avoid wasted work.
19820 2005-10-17  Michael Albinus  <michael.albinus@gmx.de>
19822         * net/tramp.el (tramp-completion-mode): New defvar.  Used in
19823         `tramp-completion-mode' for checking if we are in completion mode.
19824         (tramp-completion-handle-file-name-all-completions): Reorder code
19825         in order to complete for file names only in case there are no
19826         method/user/host completions.  This is necessary for cooperation
19827         with ido.  Reported by Kim F. Storm <storm@cua.dk>.
19829 2005-10-16  Chong Yidong  <cyd@stupidchicken.com>
19831         * longlines.el (longlines-search-forward)
19832         (longlines-search-backward): Match any number of spaces.
19834 2005-10-16  Thien-Thi Nguyen  <ttn@gnu.org>
19836         * diff-mode.el (diff-mode): Doc fix.
19838 2005-10-16  David Reitter  <david.reitter@gmail.com>
19840         * mail/sendmail.el (send-mail-function): Use mailclient-send-it
19841         as default on darwin and windows systems.
19843 2005-10-16  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
19845         * arc-mode.el (archive-zip-extract): Doc fix.
19847 2005-10-16  Romain Francoise  <romain@orebokech.com>
19849         * mouse.el (mouse-1-click-follows-link): Doc fix.
19851 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19853         * savehist.el: Don't require CL at runtime.
19854         (savehist-xemacs): Remove.
19855         (savehist-coding-system): Use utf-8 if present, regardless of religion.
19856         (savehist-no-conversion): Use (featurep 'xemacs).
19857         (savehist-load): Check existence of start-itimer rather than XEmacs.
19858         Use an idle timer.
19859         (savehist-process-for-saving): Replace use of CL funs `subseq' and
19860         `delete-if-not'.
19862 2005-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
19864         * savehist.el: Newer version.
19865         (savehist-autosave-interval, savehist-coding-system, savehist-timer)
19866         (savehist-last-checksum, savehist-no-conversion): New vars.
19867         (savehist-autosave, savehist-process-for-saving, savehist-printable):
19868         New functions.
19869         (savehist-load, savehist-save): Use them.
19870         (savehist-delimit): Remove.
19872 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19874         * progmodes/compile.el (compilation-goto-locus): Display the
19875         compilation buffer first and the source buffer second, in case they're
19876         in overlapping frames.  Don't raise the compilation frame if it was the
19877         selected window upon entry.  Pass the `other-window' arg to
19878         pop-to-buffer.
19880         * info.el (Info-fontify-node): Use dolist.
19881         Change add-text-properties to put-text-property.
19883 2005-10-16  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
19885         * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
19886         bound of search.
19888 2005-10-16  Masatake YAMATO  <jet@gyve.org>
19890         * dabbrev.el (dabbrev-completion): Pass the common
19891         prefix substring of completion to `display-completion-list'.
19893         * filecache.el (file-cache-minibuffer-complete)
19894         (file-cache-complete): Ditto.
19896         * tempo.el (tempo-display-completions): Ditto.
19898         * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
19900         * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
19902         * eshell/em-hist.el (eshell-list-history): Ditto.
19904         * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
19906         * mail/mailalias.el (mail-complete): Ditto.
19908         * progmodes/etags.el (complete-tag): Ditto.
19910         * progmodes/make-mode.el (makefile-complete): Ditto.
19912         * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
19914         * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
19916         * progmodes/pascal.el (pascal-complete-word)
19917         (pascal-show-completions): Ditto.
19919         * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
19921         * simple.el (completion-common-substring): New variable.
19922         (completion-setup-function): Use `completion-common-substring'
19923         to put faces.
19925 2005-10-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19927         * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
19928         (x-get-selection, mac-select-convert-to-string): Convert from/to
19929         UTF-16 clipboard data as in native byte order, no BOM.
19931 2005-10-16  Nick Roberts  <nickrob@snap.net.nz>
19933         * progmodes/gud.el (gud-tool-bar-map): Rename the images
19934         appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
19935         (gud-sentinel): Use speedbar-frame to check for speedbar.
19937 2005-10-15  Richard M. Stallman  <rms@gnu.org>
19939         * savehist.el: New file.
19941 2005-10-14  Karl Chen  <quarl@cs.berkeley.edu>
19943         * textmodes/tex-mode.el (tex-font-lock-keywords-2):
19944         Fix bug in \bf fontification.
19946 2005-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19948         * pcvs.el (cvs-edit-log-files): New var.
19949         (cvs-mode-edit-log): New arg `file'.
19950         (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
19951         Instead force the use of the original file and nothing else.
19952         (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
19953         the cvs-minor-wrap-function is set.
19954         (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
19956 2005-10-14  Bill Wohler  <wohler@newt.com>
19958         * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
19959         * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
19960         * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
19961         * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
19962         * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
19963         * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
19964         * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
19965         * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
19966         * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
19967         * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
19968         * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
19969         * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
19970         * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
19971         * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
19972         * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
19974         * progmodes/gud.el (gud-tool-bar-map): Rename the images
19975         appropriately (for example, gud-break to gud/break).
19977 2005-10-14  Chong Yidong  <cyd@stupidchicken.com>
19979         * longlines.el (longlinges-search-function)
19980         (longlines-search-forward, longlines-search-backward): New functions.
19981         (longlines-mode): Set isearch-search-fun-function to
19982         longlinges-search-function.
19984         * mouse.el (mouse-drag-region-1): Handle the case where a
19985         double-click event is bound to an arbitrary function.
19987 2005-10-14  David Ponce  <david@dponce.com>
19989         * recentf.el (recentf-track-opened-file)
19990         (recentf-track-closed-file, recentf-update-menu)
19991         (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
19992         (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
19993         mouse-1-click-follows-link.
19995 2005-10-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
19997         * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
19998         Gnome file-manager.png.  Suggested by
19999         Joachim Nilsson <joachim.nilsson@vmlinux.org>.
20001         * toolbar/README: Add diropen.xpm.
20003 2005-10-13  Bill Wohler  <wohler@newt.com>
20005         * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
20006         restrictions.  Suggested by David Robinow <drobinow@gmail.com>.
20008 2005-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
20010         * progmodes/mixal-mode.el (mixal-operation-codes-alist):
20011         Don't waste the byte-compiler's time on constant data.
20013 2005-10-13  Kenichi Handa  <handa@m17n.org>
20015         * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
20016         byte with `escape-glyph' face.
20018         * international/fontset.el (ccl-encode-unicode-font):
20019         Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
20020         Handle the case that ucs-mule-to-mule-unicode translates a character to
20021         ASCII (usually for IPA characters).
20023 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
20025         * info.el (Info-fontify-node): Don't be fooled by a lone "...".
20026         Don't hide the underline of titles if font-lock-mode is disabled.
20028 2005-10-12  Bill Wohler  <wohler@newt.com>
20030         * makefile.w32-in (MH-E-SRC): New.  Used by mh-autoloads.
20031         (mh-autoloads): New.  Builds mh-e/mh-loaddefs.el.  Rebuilds if any
20032         files in MH-E-SRC have been updated.
20033         (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
20035 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
20037         * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
20038         (mixal-mode-syntax-table): Add \n as end-comment.
20039         (mixal-operation-codes-alist): Immediately initialize to full value.
20040         (mixal-add-operation-code): Remove.
20041         (mixal-describe-operation-code): Make the arg non-optional.
20042         Use the interactive spec instead.
20043         Use mixal-operation-codes-alist rather than mixal-operation-codes.
20044         (mixal-font-lock-keywords): Don't highlight comments here any more.
20045         (mixal-font-lock-syntactic-keywords): New var.
20046         (mixal-mode): Use it.  Fix comment-start-skip.
20048 2005-10-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
20050         * startup.el (command-line-x-option-alist): -nb => -nbi
20052 2005-10-12  Kim F. Storm  <storm@cua.dk>
20054         * startup.el (fancy-splash-default-action): Discard mouse click in
20055         the splash screen window, as it has no sensible meaning in the
20056         next window to be selected.  Fixes error reported by Jan D.
20058 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
20060         * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
20062 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
20064         * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
20065         Try to fix up minor layout issues like indentation, line break, etc...
20066         (mixal-mode-syntax-table): Don't try to specify comment syntax,
20067         because it doesn't work.
20068         (mixal-operation-codes): Add some more codes.
20069         (mixal-font-lock-keywords): Process comments here.
20070         (mixal-mode): mixasm no longer needs -g option.
20072 2005-10-11  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
20074         * progmodes/sh-script.el (sh-tmp-file):
20075         Use mktemp -t.  Finish support for es and rc shells.
20077 2005-10-11  Jay Belanger  <belanger@truman.edu>
20079         * calc/calcalg2.el (calc-integral): With an argument, compute the
20080         definite integral.
20082 2005-10-11  Chong Yidong  <cyd@stupidchicken.com>
20084         * mouse.el (mouse-drag-region-1): Don't try to catch a
20085         double-click when doing follow-link (it's overridden anyway).
20087 2005-10-11  Juanma Barranquero  <lekktu@gmail.com>
20089         * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
20090         (autoload-print-form-outbuf): Add docstring.
20092 2005-10-11  Juri Linkov  <juri@jurta.org>
20094         * info.el (Info-mode-menu): Delete menu item "Edit".
20095         (Info-mode): Delete description of Info-edit from docstring,
20096         and rearrange descriptions of Info commands in the order
20097         they are documented in the Info manual.
20099 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
20101         * calendar/appt.el (appt-check): Use diary-selective-display var.
20103 2005-10-10  Richard M. Stallman  <rms@gnu.org>
20105         * net/newsticker.el (newsticker-start, newsticker-show-news):
20106         Add autoload cookies.
20108 2005-10-10  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>
20110         * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
20112 2005-10-10  Karl Chen  <quarl@cs.berkeley.edu>
20114         * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
20116 2005-10-10  Jay Belanger  <belanger@truman.edu>
20118         * calc/calc-arith.el (math-check-known-scalarp)
20119         (math-check-known-matrixp): Check the values of arguments that are
20120         variables.
20121         (math-check-known-square-matrixp): New function.
20122         (math-known-square-matrixp): Use math-check-known-square-matrixp.
20123         (math-super-types): Add sqmatrix type.
20125         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
20126         mode name `square' to `sqmatrix'.
20128         * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
20129         mode name `square' to `sqmatrix'.
20131 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20133         * progmodes/etags.el (select-tags-table-mode): Don't use
20134         selective-display.
20135         (tags-select-tags-table): Pass `button' to the action function.
20136         (select-tags-table): Place the side-info on button properties rather
20137         than in hidden text.  Abbreviate file names.
20138         (select-tags-table-mode-map): Inherit rather than copy buttom-map.
20139         (select-tags-table-select): Add `button' argument.
20140         Get side-info from the button property rather than from hidden text.
20142 2005-10-11  Nick Roberts  <nickrob@snap.net.nz>
20144         * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
20145         (gud-speedbar-buttons): Preserve point if possible.
20146         (gud-sentinel): Restore previous speedbar display type.
20148         * progmodes/gdb-ui.el (gdba): Improve diagram.
20149         (def-gdb-auto-update-handler, gdb-info-locals-handler)
20150         (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
20151         Call get-buffer-window once.
20153 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20155         * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
20156         (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
20157         (pascal-indent-command): Remove unused var `ind'.
20158         (pascal-indent-case): Remove unused var `oldpos'.
20159         (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
20160         since it's now used as a proper minor mode map.
20161         (pascal-outline): Rename to pascal-outline-mode.
20162         (pascal-outline-mode): Use define-minor-mode.
20163         (pascal-outline-mode, pascal-outline-change): Use overlays rather than
20164         selective-display.
20166 2005-10-10  Andreas Schwab  <schwab@suse.de>
20168         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
20169         number.  Reported by Karl Chen <quarl@cs.berkeley.edu>.
20171         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
20172         outside source directory.
20174 2005-10-10  Carsten Dominik  <dominik@science.uva.nl>
20176         * textmodes/org.el (org-mode-map): Explicit definition of `C-c
20177         C-x' as a prefix.
20178         (orgtbl-mode-map): Full keymap instead of sparse, because all
20179         `self-insert-command' keys are redefined in this map.
20180         (org-export-as-html): Specify charset for HTML file, by taking it
20181         from the coding system.
20183 2005-10-10  Kenichi Handa  <handa@m17n.org>
20185         * textmodes/flyspell.el (flyspell-check-word-p):
20186         If unread-command-events is non-empty, don't call sit-for.
20188 2005-10-09  Richard M. Stallman  <rms@gnu.org>
20190         * font-lock.el (font-lock-syntactic-keywords)
20191         (font-lock-keywords): Doc fixes.
20193         * textmodes/flyspell.el (flyspell-external-point-words):
20194         Simplify logic, and don't try to check for consecutive appearances
20195         of one incorrect word.
20197 2005-10-10  Nick Roberts  <nickrob@snap.net.nz>
20199         * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
20200         separator.
20202         * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
20203         (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
20204         (gud-expansion-speedbar-buttons): New function.
20205         (gud-speedbar-buttons): Check for gud-comint-buffer.
20207 2005-10-09  Bill Wohler  <wohler@newt.com>
20209         * Makefile.in (updates): Add mh-loaddefs dependency.
20211 2005-10-09  Chong Yidong  <cyd@stupidchicken.com>
20213         * speedbar.el (speedbar-file-key-map): Fix typo.
20215 2005-10-09  Daniel Brockman  <daniel@brockman.se>
20217         * cus-start.el (line-spacing): Add custom spec.
20219 2005-10-09  Romain Francoise  <romain@orebokech.com>
20221         * textmodes/ispell.el (ispell-check-version): Fix last change.
20223 2005-10-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
20225         * term/x-win.el: Remove -i, --icon-type from comment.
20227         * startup.el (command-line-x-option-alist): Remove options -i,
20228         -itype, --icon-type, added -nb, --no-bitmap-icon
20230 2005-10-09  Nick Roberts  <nickrob@snap.net.nz>
20232         * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
20233         instead of :active.
20235 2005-10-08  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
20237         * textmodes/ispell.el (ispell-check-version):
20238         Ignore hyphen, and all that follows, in aspell's version text.
20240 2005-10-08  Jay Belanger  <belanger@truman.edu>
20242         * calc/calc-arith.el (math-known-square-matrixp): New function.
20243         (math-pow-fancy): Check for matrices before distributing exponent
20244         across products.
20246         * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
20247         fullscreen keypad.  Suggested by Luc Teirlinck.
20248         (calc-keypad-show-input): Add space for formatting.
20250         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
20251         Add square matrix option.
20253         * calc/calc-poly.el (math-expand-term): Check for matrices instead
20254         of checking calc-matrix-mode when deciding how to expand.
20256         * calc/calc.el (calc-set-mode-line): Add square matrix option.
20258 2005-10-08  Lars Hansen  <larsh@soem.dk>
20260         * net/tramp.el (tramp-perl-directory-files-and-attributes):
20261         Add error handling.
20262         (tramp-handle-directory-files-and-attributes): Handle perl error msg.
20264 2005-10-08  Michael Albinus  <michael.albinus@gmx.de>
20266         Sync with Tramp 2.0.51.
20268         * net/tramp.el (tramp-handle-set-visited-file-modtime)
20269         (tramp-handle-insert-file-contents, tramp-handle-write-region):
20270         Insert special handling for `last-coding-system-used', again
20271         it still seems to be necessary (unlike stated before).
20272         Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
20273         (tramp-password-prompt-regexp): There might be other words before
20274         trailing ":".  Reported by Kurt Steinkraus <kurt@steinkraus.us>.
20275         (tramp-chunksize): Improve docstring.
20276         (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
20277         Emacs 20.  Use `tramp-octal-to-decimal' therefore.  Reported by
20278         Christian Joergensen <bugs@razor.dk>.
20280 2005-10-07  Glenn Morris  <rgm@gnu.org>
20282         * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
20283         (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
20284         precision'.
20286 2005-10-07  Romain Francoise  <romain@orebokech.com>
20288         * ibuf-ext.el (ibuffer-do-shell-command-pipe)
20289         (ibuffer-do-shell-command-pipe-replace)
20290         (ibuffer-do-shell-command-file, ibuffer-do-eval)
20291         (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
20292         (ibuffer-do-revert, ibuffer-do-replace-regexp)
20293         (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
20294         (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
20295         (ibuffer-filter-by-name, ibuffer-filter-by-filename)
20296         (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
20297         (ibuffer-filter-by-content, ibuffer-filter-by-predicate
20298         (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
20299         (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
20300         Autoload file sans suffix.
20302         * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
20304 2005-10-07  David Ponce  <david@dponce.com>
20306         * recentf.el (recentf-menu-open-all-flag): New option.
20307         (recentf-digit-shortcut-command-name): New function.
20308         (recentf--shortcuts-keymap): New variable.
20309         (recentf-menu-shortcuts): New variable.
20310         (recentf-make-menu-items): Initialize it.  Replace the "More..."
20311         menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
20312         (recentf-menu-value-shortcut): New function.
20313         (recentf-make-menu-item): Use it.  No more in-lined.
20314         (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
20315         (recentf-open-most-recent-file): Rename from
20316         `recentf-open-file-with-key'.  Don't depend on key binding.
20317         (recentf-mode-map): New variable.
20318         (recentf-mode): Use it.
20320 2005-10-06  Bill Wohler  <wohler@newt.com>
20322         * mh-e/mh-loaddefs.el: Remove.  Now generated automatically.
20324         * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
20325         (MH-E-SRC): New.  Used by mh-autoloads.
20326         (mh-autoloads): New.  Builds mh-e/mh-loaddefs.el.  Rebuilds if any
20327         files in MH-E-SRC have been updated.
20328         (compile, recompile, bootstrap): Depend on mh-autoloads.
20330 2005-10-07  Nick Roberts  <nickrob@snap.net.nz>
20332         * progmodes/gud.el (gud-menu-map): Only display un-intuitive
20333         gud-break and gud-remove icons when the fringe is not available.
20335         * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
20336         Typo.
20338 2005-10-06  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>
20340         * play/zone.el (zone): Wrap body with save-window-excursion.
20342 2005-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20344         * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
20345         Use the new `list-only' arg to diary-list-entries.
20347         * calendar/diary-lib.el: Use overlays rather than selective-display.
20348         (diary-selective-display): New var.
20349         (diary-header-line-format): Use it.
20350         (diary-list-entries): Add argument `list-only'.
20351         Put the buffer in diary-mode.  Don't add \^M at beg and end.
20352         Replace \^M by invisible overlays.
20353         (diary-unhide-everything): Replace \^M by invisible overlays.
20354         (print-diary-entries): Look for overlays rather than \^M.
20355         Add a space to the temp buffer name.
20356         (diary-show-all-entries, mark-diary-entries, make-diary-entry):
20357         Put the buffer in diary-mode.
20358         (list-sexp-diary-entries): Replace \^M by invisible overlays.
20359         (diary-anniversary): Make the year arg optional.
20360         (diary-time-regexp): New const.
20361         (diary-font-lock-keywords): Use it to accept a few more time formats.
20363         * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
20365 2005-10-06  Thien-Thi Nguyen  <ttn@gnu.org>
20367         * textmodes/artist.el (artist-ellipse-mirror-quadrant):
20368         Fix bug introduced 2005-07-03: Use (car (last ...))
20369         to faithfully reproduce replaced artist-last.
20370         (artist-set-arrow-points-for-poly): Likewise.
20371         Suggested by Johan Bockg\e,Ae\e(Brd.
20373 2005-10-06  Juanma Barranquero  <lekktu@gmail.com>
20375         * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
20376         * wid-edit.el (widget):
20377         * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
20378         * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
20380 2005-10-06  Kenichi Handa  <handa@m17n.org>
20382         * international/mule-cmds.el (set-language-environment):
20383         Fix setting up of case-table for unibyte mode.
20385         * simple.el (what-cursor-position): If the character is displayed
20386         by some `display' text property, show that.  Don't use
20387         single-key-description for eight-bit characters in multibyte mode.
20389 2005-10-06  Nick Roberts  <nickrob@snap.net.nz>
20391         * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
20392         (gdb-ann3): Set it.
20393         (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
20394         (gdb-info-frames-custom): Use inverse-video for first five
20395         characters of selected frame only.
20396         (gdb-get-frame-number): Select frame even when point is on frame
20397         number.
20399 2005-10-06  Masatake YAMATO  <jet@gyve.org>
20401         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
20402         Put `font-lock-function-name-face'.
20403         (gdb-info-frames-custom): Put `font-lock-function-name-face'
20404         and `font-lock-variable-name-face'
20405         (gdb-registers-font-lock-keywords): New font lock keywords definition.
20406         (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
20407         (gdb-memory-font-lock-keywords): New font lock keywords definition.
20408         (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
20409         (gdb-local-font-lock-keywords): New font lock keywords definition.
20410         (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
20411         (gdb-threads-font-lock-keywords): New font lock keywords definition.
20412         (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
20414 2005-10-05  Michael Kifer  <kifer@cs.stonybrook.edu>
20416         * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
20417         (ediff-merge-region-is-non-clash-to-skip): Previously called
20418         ediff-merge-region-is-non-clash.
20420         * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
20421         Use insert-buffer-substring.
20423         * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
20424         selecting files to patch.  Also bug fixes.
20426         * ediff-util.el (ediff-setup): Bug fix.
20427         (ediff-next-difference): Never skip clashes that differ in white
20428         space only.
20430         * ediff-wind.el (ediff-setup-control-frame)
20431         (ediff-destroy-control-frame): Check the menubar feature.
20433         * viper-cmd.el (viper-normalize-minor-mode-map-alist)
20434         (viper-refresh-mode-line): Use make-local-variable to localize
20435         some vars instead of make-variable-buffer-local.  Suggested by
20436         Stefan Monnier.
20438         * viper-init.el (viper-make-variable-buffer-local): Delete alias.
20439         (viper-restore-cursor-type, viper-set-insert-cursor-type):
20440         Use make-local-variable instead of make-variable-buffer-local.
20441         Suggested by Stefan Monnier.
20443         * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
20444         (viper-comint-mode-hook): Use make-local-variable on
20445         require-final-newline.
20446         (viper-non-hook-settings): Don't use make-variable-buffer-local.
20448 2005-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20450         * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
20451         also the second char of a comment-start sequence.
20452         (scheme-sexp-comment-syntax-table): New var.
20453         (lambda, define): Set their scheme-doc-string-elt property.
20454         (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
20455         Use lisp-font-lock-syntactic-face-function now that it properly
20456         handles |...| symbols.
20457         (scheme-mode-variables): Set lisp-doc-string-elt-property,
20458         parse-sexp-lookup-properties and font-lock-extra-managed-props.
20460         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
20461         bit from # to |.
20462         (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
20464         * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
20465         (lisp-doc-string-elt-property): New var.
20466         (lisp-font-lock-syntactic-face-function): Use it.
20467         Rewrite to recognize docstrings even for forms not at toplevel.
20469         * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
20470         annotation on the | part of #| rather than on the # part.
20471         (scheme-font-lock-syntactic-face-function): New function, to
20472         distinguish strings from |...| symbols.
20473         (scheme-mode-variables): Use it.  Also fix up the font-lock-time
20474         syntax-table so that #|...|# is properly highlighted.
20476         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
20477         Don't mark as docstring the 3rd elem of an unknown toplevel form.
20479 2005-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20481         * bindings.el (global-map): Resync [home] and [end] bindings with C-a
20482         and C-e.
20484         * emacs-lisp/eldoc.el: Move comments into docstrings.
20485         (eldoc-message-commands): Initialize in its declaration.
20486         Add move-beginning-of-line and move-end-of-line.
20487         (eldoc-add-command, eldoc-add-command-completions)
20488         (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
20490         * outline.el (outline-mark-subtree): Activate the mark.
20492         * calendar/appt.el (appt-time-regexp): New var.
20493         (appt-add, appt-make-list): Use it.
20494         (appt-convert-time): Clean up.
20496         * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
20497         Don't set any syntax-table property here.
20498         (tex-font-lock-verb): New function.  Do it here.
20499         (tex-font-lock-syntactic-keywords): Use it.
20501 2005-10-04  Richard M. Stallman  <rms@gnu.org>
20503         * wid-edit.el (widget-file-complete): Get the widget start point
20504         the right way.  Default directory to `/' if file has none.
20506         * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
20508         * textmodes/flyspell.el (flyspell-mode-on):
20509         Call ispell-maybe-find-aspell-dictionaries.
20511         * textmodes/ispell.el (ispell-word, ispell-region):
20512         Call ispell-maybe-find-aspell-dictionaries.
20513         (ispell-accept-buffer-local-defs):
20514         Don't call ispell-maybe-find-aspell-dictionaries
20516 2005-10-04  Richard M. Stallman  <rms@gnu.org>
20518         * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
20520 2005-10-04  Emilio C. Lopes  <eclig@gmx.net>
20522         * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
20523         instead of `fboundp' in order to allow for anonymous functions.
20525 2005-10-04  Chong Yidong  <cyd@stupidchicken.com>
20527         * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
20528         case the user clicks on the link while another window is selected.
20529         (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
20531         * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
20532         functionality.
20533         (dframe-help-echo): Save point in case mouse tracking is off.
20535 2005-10-04  Thien-Thi Nguyen  <ttn@gnu.org>
20537         * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
20539 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20541         * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
20542         not change the global value of those vars.
20544         * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
20545         make-local-variable which we do not need any more.
20547 2005-10-03  Chong Yidong  <cyd@stupidchicken.com>
20549         * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
20550         (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
20551         (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
20552         (speedbar-path-line): Define obsolete aliases.
20553         (speedbar-line-directory): Doc fix.
20555         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
20556         (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
20557         instead of speedbar-line-path.
20559 2005-10-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
20561         * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
20562         to nil if dropping on a window.  Handle dropping on a minibuffer window
20563         like dropping on a non-window part of Emacs.
20565 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20567         * net/ange-ftp.el: Use with-current-buffer.
20568         (ange-ftp-insert-directory): Do not follow symlinks any more.
20570         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
20571         Remove interactive spec.
20573 2005-10-03  Kim F. Storm  <storm@cua.dk>
20575         * ido.el (ido-mode): Use custom-initialize-set.
20577 2005-10-02  Richard M. Stallman  <rms@gnu.org>
20579         * progmodes/ebnf2ps.el (ebnf-eps-production-list):
20580         Use insert-buffer-substring.
20582         * net/tramp.el: Pacify byte compiler warnings in pacification code.
20583         (tramp-handle-file-local-copy): Use insert-buffer-substring.
20585 2005-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
20587         * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
20588         in last change.
20589         (ange-ftp-insert-directory): Fix up the search for the case where
20590         `file' is absolute.
20592 2005-10-02  Romain Francoise  <romain@orebokech.com>
20594         * progmodes/compile.el (compile-goto-error): Delete extra paren.
20596 2005-10-02  Andreas Schwab  <schwab@suse.de>
20598         * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
20599         directory component in the session info.
20601 2005-10-01  Richard M. Stallman  <rms@gnu.org>
20603         * comint.el (comint-redirect-subvert-readonly): Doc fix.
20605         * simple.el (next-error-internal): New function.
20607         * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
20608         (compilation-start): Pass new arg to compilation-buffer-name.
20609         (compile-goto-error): Use next-error-internal.
20611 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
20613         * speedbar.el: Remove RCS tag.
20614         (speedbar-check-read-only): Handle non-existent files.
20616         * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
20618         * info.el (Info-speedbar-hierarchy-buttons)
20619         (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
20621 2005-10-01  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
20623         * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
20624         Do not match newline.
20625         (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
20626         (bibtex-summary): Remove unnecessary save-excursion.
20627         (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
20629 2005-10-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20631         * term/mac-win.el: Add charset info for "iso10646-1".
20632         Modify default fontset to use ATSUI-compatible fonts for some charsets
20633         if available.
20635 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
20637         * speedbar.el: Re-apply arch tag.
20638         (speedbar-version): Rename to version 1.0.  Suggested by Eric
20639         M. Ludlam.
20640         Reapply two changes from Emacs CVS' version of speedbar lost
20641         during the merge:
20642         (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
20643         (speedbar-frame-parameters): Improve customize type.
20645 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
20647         * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
20648         (ange-ftp-file-directory-p): Fix the symlink case.
20649         (ange-ftp-insert-directory): When listing a single file, get a list of
20650         the parent buffer and extract the relevant line.  Inspired from a patch
20651         by Katsumi Yamaoka <yamaoka@jpl.org>.
20652         (ange-ftp-file-name-sans-versions): Simplify.
20654 2005-09-30  Bill Wohler  <wohler@newt.com>
20656         Move MH-E image files from toolbar and mail directories into
20657         etc/images.
20659         * mail/reply2.*: Move to etc/images/mail/reply*.
20661         * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
20662         * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
20663         etc/images.
20665         * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
20666         * toolbar/reply*: Move to etc/images/mail.
20668         * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
20670 2005-09-30  Eric M. Ludlam  <zappo@gnu.org>
20672         * speedbar.el: New version 1.0pre3.
20674         Frame management code (including timer, and mouse click specifics)
20675         moved to dframe.el:
20676         (speedbar-attached-frame): Removed.  Use dframe-attached-frame.
20677         (speedbar-timer): Removed.  Use dframe-timer.
20678         (speedbar-close-frame): Removed.  Use dframe-close-frame.
20679         (speedbar-activity-change-focus-flag): Removed.  Use
20680         dframe-activity-change-focus-flag.
20681         (speedbar-update-speed, speedbar-navigating-speed): Obsolete.  Use
20682         dframe-update-speed.
20684         (speedbar-current-frame): New macro.  Use this instead of the
20685         variable speedbar-frame.
20687         (speedbar-use-images, speedbar-expand-image-button-alist)
20688         (speedbar-insert-image-button-maybe): Moved to sb-image.el.
20690         (speedbar-find-image-on-load-path): Removed.  Replaced by
20691         defezimage in ezimage.el.
20692         (speedbar-expand-image-button-alist): Removed.  Replaced by
20693         ezimage-expand-image-button-alist in ezimage.el.
20695         (speedbar-ignored-directory-regexp)
20696         (speedbar-add-ignored-directory-regexp)
20697         (speedbar-ignored-directory-expressions)
20698         (speedbar-line-directory, speedbar-buffers-line-directory)
20699         (speedbar-directory-line, speedbar-buffers-line-directory):
20700         Renamed, replacing `path' with `directory'.
20702         (speedbar-create-directory, speedbar-expand-line-descendants)
20703         (speedbar-toggle-line-expansion)
20704         (speedbar-contract-line-descendants): New commands.
20706         (speedbar-query-confirmation-method, speedbar-select-frame-method)
20707         (speedbar-use-tool-tips-flag): New options.
20709         (speedbar-check-read-only, speedbar-require-version)
20710         (speedbar-insert-separator, speedbar-buffers-tail-notes)
20711         (speedbar-handle-delete-frame, speedbar-try-completion)
20712         (speedbar-update-localized-contents): New functions.
20714         (speedbar-incompatible-version, speedbar-ro-to-do-point)
20715         (speedbar-object-read-only-indicator): New variables.
20717         (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
20718         New hooks.
20720         (speedbar-separator-face): New face.
20722         (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
20723         (speedbar-ignored-modes): Add fundamental-mode.
20724         (speedbar-directory-unshown-regexp): Add . directories.
20726         (speedbar-key-map): Remove old SPC and DEL page up/down keys.
20727         (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
20728         `]' for full expand/close.
20729         (speedbar-buffers-key-map): Add SPC to toggle node expansion.
20731         (speedbar-check-vc): Support hidden files.
20732         (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
20733         (speedbar-this-file-in-vc): Use vc-state if available.  If VC
20734         state is nil, it is not checked out.
20736         (speedbar-line-text, speedbar-line-token): Support expand buttons
20737         with no text.
20738         (speedbar-refresh): Universal argument acts as power-click.
20739         (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
20740         that buffer to get variable values.
20742         And many other bugfixes.
20744         * dframe.el, ezimage.el, sb-image.el: New files.
20746         * sb-*.xpm: Remove files.  New image files installed into
20747         etc/images/ezimage.
20749 2005-09-30  Kenichi Handa  <handa@m17n.org>
20751         * ps-mule.el (ps-mule-show-warning): If a character is in
20752         ps-print-translation-table, don't treat it as non-printable.
20754 2005-09-30  David Ponce  <david@dponce.com>
20756         * tree-widget.el (tree-widget-themes-load-path): New variable.
20757         (tree-widget-themes-directory): Doc fix.
20758         (tree-widget-image-formats) [Emacs]: Doc fix.
20759         (tree-widget--locate-sub-directory): New function.
20760         (tree-widget-themes-directory): Use it.
20762         * recentf.el (recentf-filename-handlers): Rename from
20763         `recentf-filename-handler'.  Allow a list of functions.
20764         (recentf-menu-items-for-commands): Fix :help strings.
20765         (recentf-apply-filename-handlers): New function.
20766         (recentf-expand-file-name): Use it.
20767         (recentf-cleanup): Remove duplicates too.
20769 2005-09-29  Juri Linkov  <juri@jurta.org>
20771         * faces.el: Rearrange face definitions to be in the same order as
20772         their face descriptions in "(emacs)Standard Faces".
20774         * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
20776         * tooltip.el (tooltip): Add group `basic-faces'.
20778         * buff-menu.el (Buffer-menu-buffer): Remove group
20779         `font-lock-highlighting-faces'.
20781         * progmodes/compile.el (compilation-error, compilation-warning)
20782         (compilation-info, compilation-line-number, compilation-column-number):
20783         Change group from `font-lock-highlighting-faces' to `compilation'.
20785         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
20786         (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
20787         (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
20788         (vhdl-font-lock-reserved-words-face)
20789         (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
20790         `font-lock-highlighting-faces'.
20792         * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
20794 2005-09-28  Kim F. Storm  <storm@cua.dk>
20796         * emulation/cua-base.el: Set CUA move property on additional commands:
20797         up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
20798         forward-sexp, backward-sexp, forward-list, backward-list.
20800 2005-09-28  Romain Francoise  <romain@orebokech.com>
20802         * comint.el (comint-show-output): Really set point at the
20803         beginning of the output when not using `comint-use-prompt-regexp'.
20805 2005-09-27  Jay Belanger  <belanger@truman.edu>
20807         * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
20808         in TeX mode.
20810 2005-09-26  Juanma Barranquero  <lekktu@gmail.com>
20812         * textmodes/org.el (org-table-sum): Fix format string.
20814         * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
20815         Quote face names.
20817 2005-09-26  Romain Francoise  <romain@orebokech.com>
20819         * isearch.el (isearch-forward-regexp): Close doc string.
20821 2005-09-25  Richard M. Stallman  <rms@gnu.org>
20823         * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
20825         * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
20827         * progmodes/compile.el (compilation-error-properties):
20828         When getting the file from the previous error message,
20829         correctly decode the new data format.
20831         * progmodes/cc-cmds.el (c-electric-paren):
20832         Call old-blink-paren only for close-paren.
20834 2005-09-24  Andreas Schwab  <schwab@suse.de>
20836         * term/rxvt.el (rxvt-register-default-colors): Delete redundant
20837         condition.
20839 2005-09-25  Romain Francoise  <romain@orebokech.com>
20841         * dired-aux.el (dired-copy-file-recursive):
20842         * dired.el (dired-delete-file):
20843         * ediff-mult.el (ediff-dir-diff-copy-file):
20844         * ediff-util.el (ediff-test-save-region):
20845         * forms.el (forms-mode):
20846         * ido.el (ido-file-internal, ido-delete-file-at-head):
20847         * log-edit.el (log-edit-done):
20848         * ses.el (ses-yank-resize):
20849         * play/gomoku.el (gomoku-human-plays, gomoku)
20850         (gomoku-human-resigns, gomoku-prompt-for-other-game)
20851         (gomoku-offer-a-draw):
20852         * play/landmark.el (lm-human-resigns, lm):
20853         * net/eudcb-ldap.el (eudc-ldap-check-base):
20854         * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
20855         * progmodes/ebrowse.el (ebrowse-find-pattern):
20856         * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
20857         * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
20858         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
20860         * vc.el (vc-delete-file):
20861         * play/gomoku.el (gomoku-terminate-game, gomoku)
20862         (gomoku-prompt-for-move, gomoku-human-takes-back):
20863         * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
20864         (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
20866 2005-09-24  Dan Nicolaescu  <dann@ics.uci.edu>
20868         * term/rxvt.el (rxvt-register-default-colors): Add support for 255
20869         color rxvt terminals by using the code xterm.el used to use before
20870         2005-04-09 in order to match the colors used by rxvt.
20872 2005-09-24  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
20874         * term/rxvt.el (rxvt-register-default-colors): Add support for 88
20875         colors rxvt-unicode terminals by using the same code as xterm.el.
20877 2005-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20879         * textmodes/tex-mode.el (tex-font-lock-append-prop)
20880         (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
20881         new symbol used for the tex-verbatim face.
20883 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
20885         * woman.el (woman-file-name):
20886         * wid-edit.el (widget-file-prompt-value)
20887         (widget-coding-system-prompt-value):
20888         * w32-fns.el (set-w32-system-coding-system):
20889         * vc.el (vc-version-diff, vc-annotate):
20890         * textmodes/reftex-auc.el (reftex-arg-cite)
20891         (reftex-arg-index-tag):
20892         * textmodes/refer.el (refer-get-bib-files):
20893         * textmodes/artist.el (artist-figlet-choose-font):
20894         * terminal.el (terminal-emulator):
20895         * replace.el (occur-read-primary-args):
20896         * rect.el (string-rectangle, string-insert-rectangle):
20897         * ps-print.el (ps-print-preprint):
20898         * progmodes/pascal.el (pascal-goto-defun):
20899         * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
20900         * progmodes/compile.el (compilation-find-file):
20901         * printing.el (pr-interactive-n-up):
20902         * play/animate.el (animate-birthday-present):
20903         * net/rcompile.el (remote-compile):
20904         * man.el (man, Man-goto-section, Man-follow-manual-reference):
20905         * mail/rmailsum.el (rmail-summary-search-backward)
20906         (rmail-summary-search):
20907         * mail/rmailout.el (rmail-output-read-rmail-file-name)
20908         (rmail-output-read-file-name):
20909         * mail/rmail.el (rmail-search, rmail-search-backwards):
20910         * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
20911         * locate.el (locate):
20912         * international/quail.el (quail-show-keyboard-layout):
20913         * international/mule.el (set-buffer-file-coding-system)
20914         (revert-buffer-with-coding-system, set-file-name-coding-system)
20915         (set-terminal-coding-system, set-keyboard-coding-system)
20916         (set-next-selection-coding-system):
20917         * international/mule-diag.el (describe-coding-system)
20918         (describe-font, describe-fontset):
20919         * international/mule-cmds.el (universal-coding-system-argument)
20920         (search-unencodable-char, describe-input-method)
20921         (set-language-environment, describe-language-environment):
20922         * international/codepage.el (codepage-setup):
20923         * international/code-pages.el (codepage-setup):
20924         * info.el (Info-search, Info-follow-reference)
20925         (Info-search-backward):
20926         * emacs-lisp/advice.el (ad-read-advised-function)
20927         (ad-read-advice-class, ad-clear-cache, ad-activate)
20928         (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
20929         (ad-enable-advice, ad-disable-advice, ad-remove-advice)
20930         (ad-read-regexp):
20931         * ediff-util.el (ediff-toggle-regexp-match):
20932         * ediff-ptch.el (ediff-prompt-for-patch-file):
20933         * dired-aux.el (dired-diff):
20934         * diff.el (diff):
20935         * cus-edit.el (custom-variable-prompt):
20936         * calendar/timeclock.el (timeclock-ask-for-project):
20937         * calc/calcalg3.el (calc-get-fit-variables):
20938         * calc/calc-store.el (calc-edit-variable)
20939         (calc-permanent-variable):
20940         * vc-mcvs.el (vc-mcvs-register):
20941         * shadowfile.el (shadow-define-literal-group):
20942         * woman.el (woman-file-name):
20943         * vc.el (vc-version-diff, vc-merge):
20944         * textmodes/reftex-index.el (reftex-index-complete-tag):
20945         * format.el (format-decode-buffer, format-decode-region):
20946         * emulation/viper-cmd.el (viper-read-string-with-history):
20947         * emacs-lisp/debug.el (cancel-debug-on-entry):
20948         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
20949         * ediff.el (ediff-merge-revisions)
20950         (ediff-merge-revisions-with-ancestor, ediff-revision):
20951         * completion.el (interactive-completion-string-reader):
20952         * calc/calc-prog.el (calc-user-define-formula):
20953         Follow convention for reading with the minibuffer.
20955 2005-09-24  Steven Huwig  <steven_h@acm.org>  (tiny change)
20957         * progmodes/python.el (python-describe-symbol): Add globals() and
20958         locals() to the arguments of emacs.ehelp.
20960 2005-09-24  Magnus Henoch  <mange@freemail.hu>
20962         * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
20963         New function, code extracted from ispell-valid-dictionary-list.
20964         (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
20965         Call it.
20967 2005-09-24  Eli Zaretskii  <eliz@gnu.org>
20969         * subr.el (version-regexp-alist): Extend valid syntax for version
20970         strings: allow any of the characters -,_,+ to separate the
20971         alpha/beta/rc part from the version part.  Doc fix.
20972         (version-to-list): Doc fix.  Bind case-fold-search to t, as advertised.
20974 2005-09-23  David Reitter  <david.reitter@gmail.com>
20976         * mail/mailclient.el: New file.
20978 2005-09-23  Richard M. Stallman  <rms@gnu.org>
20980         * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
20981         (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
20982         Doc fixes.
20984         * progmodes/cc-mode.el (c-font-lock-init):
20985         Specify font-lock-lines-before.
20987 2005-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20989         * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
20990         whole conflict.
20992 2005-09-23  Carsten Dominik  <dominik@science.uva.nl>
20994         * textmodes/org.el (org-mode-map, orgtbl-mode-map):
20995         Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix.  Make use
20996         of `remap' feature when available.  Additional key bindings for
20997         better tty support.
20998         (org-mode-restart, org-force-self-insert): New commands.
20999         (org-time-stamp-inactive): New command.
21000         (org-remap): New function.
21001         (org-table-auto-blank-field, org-level-color-stars-only): New options.
21002         (org-enable-fixed-width-editor): Move to `org-structure'
21003         customization group.
21004         (org-self-insert-command, orgtbl-self-insert-command): Modify to
21005         blank field after field motion commands.
21007 2005-09-23  Kenichi Handa  <handa@m17n.org>
21009         * international/mule-cmds.el (set-language-environment):
21010         Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
21011         have to call utf-translate-cjk-load-tables.
21013 2005-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21015         * mouse.el (mouse-move-drag-overlay): Fix last change.
21017 2005-09-22  David Ponce  <david@dponce.com>
21019         * tree-widget.el (tree-widget-value-create): Fix previous change.
21021 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
21023         * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
21025 2005-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21027         * mouse.el (mouse-move-drag-overlay): New function.
21028         (mouse-drag-region-1): Use it.
21029         Try to simplify a bit the state handling.  Handle clicks on links
21030         inside intangible areas.
21031         (mouse-save-then-kill): Minor simplification.
21032         (mouse-secondary-overlay): Make it always non-nil instead of
21033         recreating it each time.
21034         (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
21035         (mouse-kill-secondary, mouse-secondary-save-then-kill):
21036         Simplify accordingly.
21038 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
21040         * term/rxvt.el (rxvt-standard-colors): Fix some colors.
21042 2005-09-20  Michael Kifer  <kifer@cs.stonybrook.edu>
21044         * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
21045         (ediff-file-name-sans-prefix): Treat nil as an empty string.
21046         (ediff-fixup-patch-map): Better heuristic for intuiting the file names
21047         to patch.
21049         * ediff-util.el: Use insert-buffer-substring.
21051         * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
21053         * emulation/viper-cmd.el (viper-change-state): Don't move over the
21054         field boundaries in the minibuffer.
21055         (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
21056         (viper-minibuffer-post-command-hook): New hook.
21057         (viper-line): Don't move cursor at bolp.
21059         * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
21061         * emulation/viper-init.el: Add alias to make-variable-buffer-local to
21062         avoid compiler warnings.
21064         * emulation/viper-macs.el (ex-map): Better messages.
21066         * emulation/viper-utils.el (viper-beginning-of-field): New function.
21068         * emulation/viper.el: Replace make-variable-buffer-local with
21069         viper-make-variable-buffer-local everywhere, to avoid warnings.
21071 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21073         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
21074         Delete unused var `old-selected-window'.
21075         (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
21076         (mouse-drag-secondary): Delete unused var `start-frame'.
21078 2005-09-19  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
21080         * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
21082 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21084         * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
21085         Re-indent within 80 columns.  Use inhibit-read-only.
21087 2005-09-19  Romain Francoise  <romain@orebokech.com>
21089         * calendar/diary-lib.el (mark-diary-entries): Revert last change.
21091 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21093         * font-lock.el (font-lock-default-fontify-region): Don't add a line
21094         unconditionally, since the after-change-function already did it.
21096 2005-09-19  Miles Bader  <miles@gnu.org>
21098         * net/newsticker.el: Get rid of CVS keyword.
21100 2005-09-19  Johan Bockg\e,Ae\e(Brd  <bojohan+sf@dd.chalmers.se>
21102         * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
21103         The prompt is formatted later.
21105 2005-09-19  David Ponce  <david@dponce.com>
21107         * tree-widget.el (tree-widget-value-create): Save the converted
21108         tree :node widget.
21110 2005-09-19  Juanma Barranquero  <lekktu@gmail.com>
21112         * progmodes/sh-script.el (sh-blink): Fix spurious reference to
21113         variable `message'.
21115 2005-09-18  Michael Albinus  <michael.albinus@gmx.de>
21117         * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
21118         to cover prompts like "login as:".  Reported by Slawomir Nowaczyk
21119         <slawomir.nowaczyk.847@student.lu.se>.
21121 2005-09-18  Chong Yidong  <cyd@stupidchicken.com>
21123         * image.el (image-load-path): Use symbol `data-directory' instead
21124         of its value, for backward compatibility with packages that bind
21125         it during `find-image'.  Suggested by Katsumi Yamaoka.
21126         (image-search-load-path): Handle symbols whose values are strings.
21128 2005-09-18  Romain Francoise  <romain@orebokech.com>
21130         * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
21131         with-current-buffer form in save-excursion.
21133 2005-09-18  Deepak Goel  <deego@gnufans.org>
21135         * apropos.el (apropos-command): Fix `message' call: first arg
21136         should be a format spec.  In this and all other cases that appear
21137         below and elsewhere in the source code, I made a change only when
21138         two conditions were satisfied: [1] I can think of a possibility
21139         that the arguments would cause an error, for example, the code in
21140         question relies on external variables such as filenames.  [2] I
21141         was sure that the arg to `message' could not have been nil in the code.
21143         * textmodes/tildify.el (tildify-region): Ditto.
21145         * textmodes/reftex-index.el (reftex-index-change-entry)
21146         (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
21147         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
21148         * textmodes/org.el (org-complete, org-deadline, org-schedule)
21149         (org-priority, org-table-sum):
21150         * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
21151         * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
21152         (flyspell-word, flyspell-display-next-corrections):
21153         * textmodes/bibtex.el (bibtex-print-help-message):
21154         * textmodes/artist.el (artist-key-set-point-poly):
21155         * term/mac-win.el (mac-services-insert-text):
21156         * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
21157         (vhdl-hooked-abbrev, vhdl-template-insert-fun)
21158         (vhdl-port-paste-testbench, vhdl-compose-new-component)
21159         (vhdl-compose-configuration):
21160         * progmodes/sh-script.el (sh-blink, sh-show-indent)
21161         (sh-set-indent, sh-learn-line-indent):
21162         * progmodes/ps-mode.el (ps-mode-target-column):
21163         * progmodes/idlwave.el (idlwave-make-tags)
21164         (idlwave-scan-library-catalogs):
21165         * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
21166         * progmodes/gud.el (gud-jdb-analyze-source):
21167         * progmodes/flymake.el (flymake-log):
21168         * progmodes/ebnf2ps.el (ebnf-generate-region):
21169         * progmodes/cmacexp.el (c-macro-expansion):
21170         * progmodes/ada-xref.el (ada-treat-cmd-string):
21171         * progmodes/ada-mode.el (ada-create-case-exception-substring)
21172         (ada-justified-indent-current, ada-batch-reformat):
21173         * play/zone.el (zone):
21174         * play/landmark.el (lm-move):
21175         * play/decipher.el (decipher-show-alphabet):
21176         * net/newsticker.el (newsticker--display-jump)
21177         (newsticker--display-scroll):
21178         * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
21179         (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
21180         * mail/feedmail.el (feedmail-dump-message-to-queue):
21181         * eshell/esh-proc.el (eshell-remove-process-entry):
21182         * emulation/ws-mode.el (ws-last-error):
21183         * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
21184         (viper-record-kbd-macro):
21185         * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
21186         * emacs-lisp/lisp-mnt.el (lm-report-bug):
21187         * emacs-lisp/find-func.el (find-function-noselect):
21188         * calendar/timeclock.el (timeclock-status-string)
21189         (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
21190         (timeclock-when-to-leave-string):
21191         * calendar/icalendar.el (icalendar--convert-ical-to-diary):
21192         * calc/calc-units.el (calc-enter-units-table):
21193         * calc/calc-mode.el (calc-mode-record-mode):
21194         * woman.el (woman-mini-help):
21195         * wdired.el (wdired-change-to-wdired-mode):
21196         * vc.el (vc-retrieve-snapshot):
21197         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
21198         * startup.el (display-startup-echo-area-message):
21199         * simple.el (set-goal-column):
21200         * ses.el (ses-command-hook, ses-recalculate-cell):
21201         * server.el (server-process-filter):
21202         * printing.el (pr-interface-txt-print, pr-interface-printify)
21203         (pr-interface-ps):
21204         * pcvs.el (cvs-help):
21205         * log-edit.el (log-edit, log-edit-mode-help):
21206         * iswitchb.el (iswitchb-possible-new-buffer):
21207         * isearch.el (isearch-edit-string):
21208         * image-mode.el (image-mode, image-minor-mode):
21209         * ibuf-macs.el (define-ibuffer-filter):
21210         * hi-lock.el (hi-lock-find-patterns):
21211         * files.el (toggle-read-only):
21212         * ediff-util.el (ediff-copy-diff)
21213         (ediff-write-merge-buffer-and-maybe-kill):
21214         * echistory.el (Electric-history-undefined):
21215         * dnd.el (dnd-insert-text):
21216         * dired-aux.el (dired-query):
21217         * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
21218         * bookmark.el (bookmark-bmenu-locate):
21219         * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
21220         Fix `message' calls to ensure first arg is a format string.
21221         The change was made only when these two conditions were satisfied:
21222         [1] when there is a possibility that the arguments would cause an error
21223         for example, if the code in question relies on external variables
21224         such as filenames, and
21225         [2] if the arg to `message' could not have been nil in the code.
21227         * pcomplete.el (pcomplete--help): Fix `message' format spec.
21228         Not having a %s would be weird, though not technically wrong.
21230 2005-09-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21232         * term/mac-win.el (mac-add-charset-info): Doc fix.
21234 2005-09-17  Romain Francoise  <romain@orebokech.com>
21236         * shell.el (shell-resync-dirs): Handle echoing processes more
21237         reliably.  Don't insert resync command if `comint-process-echoes'
21238         is non-nil.
21240 2005-09-17  Magnus Henoch  <mange@freemail.hu>
21242         * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
21243         (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
21244         aspell versions >= 0.60.
21245         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
21246         only if ispell-aspell-supports-utf8 is non-nil.
21248 2005-09-17  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
21250         * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
21251         buffer-local value to lisp-indent-function.
21253 2005-09-17  Milan Zamazal  <pdm@zamazal.org>
21255         * progmodes/glasses.el (glasses-make-readable): If
21256         glasses-separator differs from underscore, put appropriate
21257         overlays over underscore characters.
21258         (glasses-convert-to-unreadable): If glasses-separator differs from
21259         underscore, try to convert glasses-separator characters to
21260         underscores.
21262 2005-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
21264         * calendar/diary-lib.el (mark-diary-entries): Don't move point.
21265         Use with-syntax-table and dolist.
21267 2005-09-16  Carsten Dominik  <dominik@science.uva.nl>
21269         * textmodes/reftex-auc.el:
21270         * textmodes/reftex-cite.el:
21271         * textmodes/reftex-dcr.el:
21272         * textmodes/reftex-global.el:
21273         * textmodes/reftex-parse.el:
21274         * textmodes/reftex-ref.el:
21275         * textmodes/reftex-sel.el:
21276         * textmodes/reftex-toc.el:
21277         * textmodes/reftex-vars.el:
21278         * textmodes/reftex.el: Small changes to remove compiler warnings.
21280         * textmodes/reftex-index.el: Likewise.
21281         (reftex-query-index-phrase): More efficient use of markers.
21283 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
21285         * image.el (image-load-path): New variable.
21286         (image-search-load-path): New function.
21287         (find-image): Search for images in `image-load-path'.
21289 2005-09-15  Richard M. Stallman  <rms@gnu.org>
21291         * follow.el: Change Maintainer field.
21293 2005-09-15  David Ponce  <david@dponce.com>
21295         * recentf.el (recentf-save-file-modes): New option.
21296         (recentf-save-list): Use it.
21298 2005-09-15  Nick Roberts  <nickrob@snap.net.nz>
21300         * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
21301         (mode-line-mule-info, mode-line-modified): Move bindings from
21302         mouse-3 to mouse-1.
21304 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
21306         * simple.el (sendmail-user-agent-compose): Revert last change.
21308 2005-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21310         * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
21311         Use with-current-buffer.
21312         (ange-ftp-gwp-start): Remove unused var `gw-user'.
21313         (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
21314         (ange-ftp-insert-directory): Remove unused var `short'.
21315         (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
21317         * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
21318         (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
21320         * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
21321         (check-calendar-holidays, diary-list-entries): Autoload.
21322         Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
21323         (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
21325         * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
21326         which mistakenly removed a call to display-buffer.
21328 2005-09-14  Juanma Barranquero  <lekktu@gmail.com>
21330         * obsolete/iso-insert.el: Move to obsolete/ from international/.
21332 2005-09-14  Thien-Thi Nguyen  <ttn@gnu.org>
21334         * progmodes/hideshow.el
21335         (hs-hide-comments-when-hiding-all): Remove autoload cookie.
21336         (hs-allow-nesting): New user var.
21337         (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
21338         (hs-hide-block-at-point): When nesting allowed,
21339         if there is already an overlay in place, delete it.
21340         (hs-safety-is-job-n): Delete func; remove call sites.
21341         (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
21342         (hs-overlay-at): New func.
21343         (hs-already-hidden-p, hs-show-block): Use it.
21344         (hs-hide-all): Don't pre-clean if nesting allowed.
21345         (hs-show-all): Temporarily disallow
21346         nesting around call to `hs-discard-overlays'.
21348 2005-09-14  Chong Yidong  <cyd@stupidchicken.com>
21350         * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
21351         Delete unused local var.
21353 2005-09-13  Juanma Barranquero  <lekktu@gmail.com>
21355         * help-fns.el (describe-categories): "?\ " -> "?\s".
21356         (help-do-arg-highlight): Recognize also ARG-n, as in
21357         `move-to-left-margin' (ARG+n is already recognized).  Simplify.
21359         * international/codepage.el (dos-unsupported-char-glyph):
21360         * net/newsticker.el (tool-bar-map, w3-mode-map)
21361         (w3m-minor-mode-map):
21362         * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
21363         (ent-alist):
21364         * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
21366 2005-09-13  Chong Yidong  <cyd@stupidchicken.com>
21368         * custom.el (custom-push-theme): Handle the case where a symbol is
21369         bound but face properties have not yet been assigned.
21371         * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
21372         Fix behavior if noerase is `t' and there is no mail buffer.
21374         * simple.el (sendmail-user-agent-compose): Use a new mail buffer
21375         if `continue' is nil, rather than signal an error.
21377 2005-09-12  Richard M. Stallman  <rms@gnu.org>
21379         * font-lock.el (font-lock-keywords): Add autoload.
21381         * help-fns.el (describe-variable): Rearrange to put source link
21382         in a predictable place.
21384         * net/newsticker.el: New file.
21386 2005-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
21388         * calendar/calendar.el (calendar-for-loop): Add edebug info.
21389         (calendar-basic-setup): Use the new nil arg.
21390         (number-of-diary-entries): Move to diary-lib.el.
21392         * calendar/diary-lib.el: Use with-current-buffer, match-string.
21393         (diary-list-entries): Use with-syntax-table and dolist.
21394         Rename from list-diary-entries.
21395         Use number-of-diary-entries if `number' is nil.
21396         (diary, diary-view-entries): Use this new name and new nil arg value.
21397         (number-of-diary-entries): Move from calendar.el.
21398         (diary-unhide-everything): New function.
21399         (include-other-diary-files, fancy-diary-display)
21400         (diary-show-all-entries, make-diary-entry): Use it.
21401         (diary-mail-entries): Use buffer-string.
21402         (mark-diary-entries): Fix long standing paren typo.
21403         (diary-sexp-entry): Use count-lines.
21404         (make-diary-entry): Avoid `previous-line'.
21405         (diary-mode-map): New var.
21406         (diary-mode): Redraw cal after saving.  Setup header-line.
21407         (fancy-diary-display-mode): Use local-set-key.
21409         * startup.el (command-line): Try calling various terminal-init-foo-bar
21410         functions by stripping hyphenated suffixes from $TERM.
21412         * files.el (normal-mode): Check boundness of font-lock-keywords.
21414 2005-09-12  Richard M. Stallman  <rms@gnu.org>
21416         * progmodes/compile.el: Don't decide a file's directory
21417         until the user actually tries to go there.
21418         (compilation-next-error-function):
21419         Pass compilation-find-file the directory from the file-struct.
21420         (compilation-internal-error-properties): Separate local FILE-STRUCT
21421         from FILE.  Doc the args better.  Rename arg FMT to FMTS.
21422         (compilation-find-file): Arg DIR renamed to DIRECTORY.
21423         Expand it, and if nil, use default-directory.
21424         (compilation-get-file-structure): Don't mix specified directory
21425         with default directory.  Put specified directory into
21426         file-struct.  Don't make the file name absolute.
21428         * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
21429         (compile-command): Add autoload.
21430         (compilation-disable-input): Add autoload.
21432 2005-09-11  Stephen Gildea  <gildea@stop.mail-abuse.org>
21434         * time-stamp.el: Mention variable `time-stamp-pattern' in doc
21435         strings of the variables it can override.
21436         (time-stamp): New (as yet undocumented) time-stamp-format escapes
21437         %Q and %q, for fully-qualified domain name and unqualified host name.
21439 2005-09-11  Kim F. Storm  <storm@cua.dk>
21441         * emacs-lisp/authors.el (authors-aliases): Update list.
21442         (authors-fixed-entries): Update mldrag.el entry.
21444 2005-09-10  Alan Mackenzie  <acm@muc.de>
21446         * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
21447         from the region narrowed to.
21449 2005-09-10  Magnus Henoch  <mange@freemail.hu>
21451         * textmodes/ispell.el (ispell-check-version): Signal an error if
21452         aspell version is less than 0.60.
21454 2005-09-10  Pascal Dupuis  <Pascal.Dupuis@esat.kuleuven.be>  (tiny change)
21456         * progmodes/octave-inf.el (inferior-octave-startup):
21457         Resync current dir at the end.
21459 2005-09-10  Emilio C. Lopes  <eclig@gmx.net>
21461         * woman.el (woman-topic-at-point-default):
21462         Rename to woman-use-topic-at-point-default.
21463         (woman-topic-at-point): Rename to woman-use-topic-at-point.
21464         (woman-file-name): Reflect renames above.  Automatically use the
21465         word at point as topic if woman-use-topic-at-point is non-nil.
21466         Otherwise offer it as default but don't insert it in the
21467         minibuffer.  Also use `test-completion' instead of `assoc' as
21468         suggested by Stefan Monnier.
21470 2005-09-10  Andre Spiegel  <spiegel@gnu.org>
21472         * vc.el (vc-directory, vc-update-change-log): Throw an error on
21473         the attempt to do it over Tramp.  This is not yet supported.
21475 2005-09-10  Eli Zaretskii  <eliz@gnu.org>
21477         * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
21478         (menu-bar-non-minibuffer-window-p): New functions.
21479         ("Split Window", "Save As..."): Use them.
21480         ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
21481         ("Print Buffer", "Truncate Long Lines in this Buffer"):
21482         Use menu-bar-menu-frame-live-and-visible-p.
21483         ("Save Buffer", "Insert File", "Open Directory...")
21484         ("Open File...", "Visit New File..."):
21485         Use menu-bar-non-minibuffer-window-p.
21486         (kill-this-buffer-enabled-p, dired <menu-enable>):
21487         Use menu-bar-non-minibuffer-window-p.
21489 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
21491         * cus-start.el (all): Don't complain about fringe-related
21492         built-ins if fringes are not supported.  Ditto about
21493         selection-related built-ins.  Fix the test for GTK-related built-ins.
21495         * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
21496         ("Postscript Print Buffer", "Print Region", "Save As...")
21497         ("Save", "Insert File...", "Open Directory...")
21498         ("Open File...", "Visit New File..."")
21499         ("Truncate Long Lines in this Buffer"): Don't look at
21500         menu-updating-frame if this display does not support multiple frames.
21502 2005-09-09  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
21504         * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
21506 2005-09-09  Emilio C. Lopes  <eclig@gmx.net>
21508         * woman.el: Format- and whitespace-related changes.
21510 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
21512         * woman.el: Fix my email address.
21514 2005-09-08  Richard M. Stallman  <rms@gnu.org>
21516         * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
21517         (sh-mode): Locally set skeleton-pair-default-alist.
21519         * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
21521         * progmodes/flymake.el: Require `compile' unconditionally.
21523         * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
21525         * woman.el (woman-file-name): Provide a default, not initial input.
21527         * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
21529         * font-lock.el (font-lock-support-mode): Doc fix.
21531         * descr-text.el (describe-property-list): Handle non-symbol prop names.
21533 2005-09-08  Richard M. Stallman  <rms@gnu.org>
21535         * simple.el (blink-matching-open): Get rid of text props from
21536         the string shown in echo area.  Don't permanently set point.
21537         Some rearrangements.
21539 2005-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
21541         * recentf.el (recentf-filename-handler): Add custom choice
21542         `abbreviate-file-name'.
21544         * msb.el (msb--very-many-menus): Fix typo.
21546         * disp-table.el (standard-display-european): Don't set
21547         enable-multibyte-characters to nil.
21549 2005-09-08  David Ponce  <david@dponce.com>
21551         * recentf.el (recentf-show-file-shortcuts-flag): New option.
21552         (recentf-expand-file-name): Doc fix.
21553         (recentf-dialog-mode-map): Define digit shortcuts.
21554         (recentf--files-with-key): New variable.
21555         (recentf-show-digit-shortcut-filter): New function.
21556         (recentf-open-files-items): New function.
21557         (recentf-open-files): Use it.
21558         (recentf-open-file-with-key): New command.
21560 2005-09-08  Chong Yidong  <cyd@stupidchicken.com>
21562         * buff-menu.el (Buffer-menu-sort-by-column): New function.
21563         Suggested by Kim F. Storm.
21564         (Buffer-menu-sort-button-map): Global keymap for sort buttons.
21565         (Buffer-menu-make-sort-button): Use global keymap.
21567 2005-09-07  Michael Albinus  <michael.albinus@gmx.de>
21569         * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
21570         (Man-getpage-in-background-advice): Remove defadvice; it isn't
21571         necessary any longer with the remapped command.
21572         (Man-bgproc-sentinel-advice): Remove defadvice which counts
21573         formatting time only.
21575         * net/tramp.el (tramp-action-password)
21576         (tramp-multi-action-password): Compile the password prompt from
21577         `method', `user' and `host'.  Sometimes it isn't obvious which
21578         password to enter, for example with remote files offered by
21579         recentf.el, or with multiple steps.  Suggested by Robert Marshall
21580         <robert@chezmarshall.freeserve.co.uk>.
21582 2005-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
21584         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
21585         Fix regexp for when "s///" is at the beginning of line.
21587 2005-09-07  Jay Belanger  <belanger@truman.edu>
21589         * calc/calc-poly.el (math-expand-term): Multiply out any powers
21590         when in matrix mode.
21592 2005-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
21594         * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
21595         non-anonymous functions.
21597 2005-09-06  Chong Yidong  <cyd@stupidchicken.com>
21599         * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
21600         when using a header line.  Otherwise, use mouse-1-click-follows-link.
21602         * mouse.el (mouse-drag-header-line): Do nothing if the header-line
21603         can't be moved; don't signal an error.
21605 2005-09-05  Chong Yidong  <cyd@stupidchicken.com>
21607         * cus-theme.el (custom-theme-write-faces): Save the current face
21608         spec, not the defface spec.
21610         * custom.el (custom-known-themes): Clarify meaning of "standard".
21611         (custom-push-theme): Save old values in the standard theme.
21612         (disable-theme): Correct typo.
21613         (custom-face-theme-value) Deleted unused function.
21614         (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
21616 2005-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21618         * progmodes/compile.el (compilation-goto-locus): Take into account
21619         iconified frames when determining whether the buffer is
21620         already visible.
21621         Don't reset window height if the window already existed.
21623 2005-09-04  Chong Yidong  <cyd@stupidchicken.com>
21625         * custom.el (load-theme): Rename from require-theme.
21626         Add interactive spec.
21627         (enable-theme): Rename from custom-enable-theme.
21628         Add interactive spec.
21629         (disable-theme): Rename from custom-disable-theme.
21630         Add interactive spec.
21631         (custom-make-theme-feature): Doc fix.
21632         (custom-theme-directory): Doc fix.
21633         (provide-theme): Call enable-theme.
21635 2005-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
21637         * obsolete/lazy-lock.el (lazy-lock-mode):
21638         * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
21639         font-lock-mode if it's off.  Print a warning instead.
21641         * progmodes/compile.el (compilation-start): Ignore errors if the
21642         process died before we get to send-eof.
21644         * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
21645         Undo last change.  Enclosing the result in quotes broke things on Unix
21646         since tex-send-command passes it through shell-quote-argument.
21647         (tex-send-command): Pass `file' through convert-standard-filename
21648         when possible.
21649         (tex-uptodate-p): Handle the case where TeX hasn't put additional
21650         info in a transcript.
21652 2005-09-02  Dan Nicolaescu  <dann@ics.uci.edu>
21654         * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
21655         fix compilation warning.  Reorder the key definitions to group
21656         together keys emitted by the current version of xterm.
21658         * progmodes/vhdl-mode.el (vhdl-highlight-faces)
21659         (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
21660         Reorder predicates to correct min-color usage.
21662 2005-09-01  Chong Yidong  <cyd@stupidchicken.com>
21664         * longlines.el (longlines-mode): Inhibit read-only when encoding.
21665         Kill local variables when longlines-mode is turned off.
21667 2005-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21669         * international/mule-cmds.el (set-locale-environment): Soothe compiler.
21671         * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
21673         * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
21675         * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
21676         (font-lock-lines-before): Change default to being inactive.
21677         (font-lock-default-fontify-region): Obey font-lock-lines-before.
21678         (font-lock-after-change-function): Don't handle f-l-lines-before here.
21680 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
21682         * net/tramp.el (tramp-handle-make-auto-save-file-name):
21683         Deactivate temporarily advice if active (not needed for Emacs 22,
21684         but for backwards compatibility).
21685         (tramp-exists-file-name-handler): Rewrite.  First implementation
21686         was too simple.
21687         (tramp-advice-make-auto-save-file-name):
21688         Call `tramp-handle-make-auto-save-file-name' (again, just for
21689         backwards compatibility).
21691 2005-08-31  Reto Zimmermann  <reto@gnu.org>
21693         * progmodes/vhdl-mode.el
21694         (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
21695         (vhdl-end-p): Fix indentation bug "else" after "-- when".
21696         (vhdl-set-default-project): New function (easier setting of default).
21697         (vhdl-port-copy): Handle extended identifiers for generics.
21698         (vhdl-compiler-alist): Better description for error message regexp.
21699         (vhdl-make): Query for target, use previous as default.
21700         (vhdl-port-copy): Fix port copy for port names starting with "signal".
21701         (vhdl-font-lock-keywords-2): Fix fontification for record
21702         el. assign.
21703         (vhdl-speedbar-make-subpack-line): Add package body link.
21704         (vhdl-generate-makefile-1): Not include itself as dependency.
21705         (vhdl-font-lock-init): Highlight c-preprocessor directives.
21706         (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
21707         (vhdl-get-syntactic-context): Handle c-preprocessor directives.
21708         (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
21709         (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
21710         (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
21711         (vhdl-import-project): Add string argument for `error'.
21712         (vhdl-compose-configuration)
21713         (vhdl-compose-configuration-architecture): Add configuration
21714         declaration generation.
21715         (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
21716         (vhdl-trailer-re): Add "record" keyword (better indentation).
21717         (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
21718         "[^ \t-\"]+".
21719         (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
21720         (vhdl-testbench-entity-file-name)
21721         (vhdl-testbench-architecture-file-name): Allow separate
21722         customization of testbench file names.
21723         (vhdl-beginning-of-block): Handle optional subprogram parameter list.
21724         (vhdl-get-visible-signals): Allow newline within alias declaration.
21725         (vhdl-update-sensitivity-list): Signal read only on certain attributes.
21726         (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
21727         (member-ignore-case): Alias for missing function in XEmacs.
21728         (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
21729         (vhdl-update-sensitivity-list): Ignore case on read signals.
21730         (vhdl-replace-string): Adjust case only for file names.
21731         (vhdl-update-sensitivity-list): Fix search for read signals.
21732         (vhdl-update-sensitivity-list): Exclude formal parameters.
21733         (vhdl-get-visible-signals): Include aliases of signals.
21734         (vhdl-get-visible-signals): Fix signal name searching.
21735         (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
21736         (vhdl-fixup-whitespace-region): Fix for character
21737         literals (e.g. `:').
21739 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
21741         * ansi-color.el (comint-last-output-start):
21742         * bs.el (font-lock-verbose):
21743         * diff-mode.el (add-log-buffer-file-name-function):
21744         * dired-x.el (vm-folder-directory):
21745         * faces.el (help-xref-stack-item):
21746         * files.el (font-lock-keywords):
21747         * find-lisp.el (dired-buffers, dired-subdir-alist):
21748         * ido.el (cua-inhibit-cua-keys):
21749         * log-view.el (cvs-minor-wrap-function):
21750         * outline.el (font-lock-warning-face):
21751         * simple.el (compilation-current-error):
21752         * speedbar.el (ange-ftp-path-format, efs-path-regexp)
21753         (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
21754         * tooltip.el (comint-prompt-regexp):
21755         * w32-fns.el (explicit-shell-file-name):
21756         * term/mac-win.el (mac-charset-info-alist)
21757         (mac-services-selection, mac-system-script-code):
21758         * term/tty-colors.el (msdos-color-values):
21759         * term/w32-win.el (xlfd-regexp-registry-subnum):
21760         * term/x-win.el (x-keysym-table, x-selection-timeout)
21761         (x-session-id, x-session-previous-id):
21762         * textmodes/ispell.el (mail-yank-prefix):
21763         * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
21764         * textmodes/org.el (calc-embedded-close-formula)
21765         (calc-embedded-open-formula)
21766         (font-lock-unfontify-region-function):
21767         * textmodes/reftex-global.el (isearch-next-buffer-function)
21768         (TeX-master):
21769         * textmodes/reftex.el (font-lock-keywords):
21770         * textmodes/tex-mode.el (font-lock-comment-face)
21771         (font-lock-doc-face):
21772         * textmodes/texinfo.el (outline-heading-alist):
21773         Add defvars.
21775         * textmodes/artist.el (x-pointer-crosshair): Add defvar.
21776         (artist-spray-chars, artist-mode-init, artist-replace-string)
21777         (artist-select-erase-char, artist-vap-find-endpoints-horiz)
21778         (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
21779         (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
21781         * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
21782         (conf-align-assignments): "?\ " -> "?\s".
21784         * textmodes/reftex-index.el (TeX-master): Add defvar.
21785         (reftex-index-phrases-marker): Move up defvar.
21787         * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
21788         (reftex-toc-include-labels-indicator)
21789         (reftex-toc-include-index-indicator)
21790         (reftex-toc-max-level-indicator): Move up declarations.
21792         * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
21793         of args to `tramp-run-real-handler', even if it's empty in this case.
21795 2005-08-31  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21797         * dired.el (dired-move-to-filename-regexp): Add date format for
21798         Mac OS X 10.3 in East Asian locales.
21800 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
21802         * files.el (make-auto-save-file-name): Add file name handler call
21803         if applicable.
21805         * net/tramp.el (tramp-file-name-handler-alist)
21806         (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
21807         (tramp-handle-make-auto-save-file-name): Rename from
21808         `tramp-make-auto-save-file-name'.
21809         (tramp-exists-file-name-handler): New defun.
21810         (tramp-advice-make-auto-save-file-name): Make defadvice only when
21811         `make-auto-save-file-name' is not a magic file name operation.
21813 2005-08-30  Richard M. Stallman  <rms@gnu.org>
21815         * files.el (risky-local-variable-p):
21816         Match `-predicates' and `-commands.
21818         * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
21819         (custom-save-all): Visit the file if necessary;
21820         kill the buffer if we created it.
21821         (custom-save-delete): Don't visit file or kill buffer here.
21823 2005-08-30  Carsten Dominik  <dominik@science.uva.nl>
21825         * textmodes/org.el (org-special-keyword): New face.
21826         (org-table-copy-down, org-table-eval-formula)
21827         (org-table-recalculate, org-init-section-numbers):
21828         Use `string-to-number' instead of `string-to-int'.
21829         (org-get-location): Use `insert-buffer-substring' instead of
21830         `insert-buffer'.
21831         (org-modify-diary-entry-string): New function.
21832         (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
21833         (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
21834         (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
21835         active region.
21836         (org-export-as-html): Handle QUOTE keyword.
21837         (org-quote-string): New option.
21838         (org-bookmark-jump-unhide): New function, used for
21839         `bookmark-after-jump-hook'.
21840         (org-diary-default-entry): Apply only when not called through
21841         `org-agenda'.
21843 2005-08-30  Juanma Barranquero  <lekktu@gmail.com>
21845         * net/eudc.el (mode-popup-menu):
21846         * play/handwrite.el (ps-printer-name, ps-lpr-command):
21847         * progmodes/ada-mode.el (compile-auto-highlight)
21848         (skeleton-further-elements):
21849         * progmodes/autoconf.el (font-lock-syntactic-keywords):
21850         * progmodes/cmacexp.el (msdos-shells):
21851         * progmodes/compile.el (font-lock-extra-managed-props)
21852         (font-lock-keywords, font-lock-maximum-size)
21853         (font-lock-support-mode):
21854         * progmodes/grep.el (font-lock-lines-before):
21855         * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
21856         * progmodes/mixal-mode.el (compile-command):
21857         * progmodes/perl-mode.el (font-lock-comment-face)
21858         (font-lock-doc-face, font-lock-string-face):
21859         * progmodes/prolog.el (comint-prompt-regexp):
21860         * progmodes/sh-script.el (font-lock-comment-face)
21861         (font-lock-set-defaults, font-lock-string-face):
21862         * progmodes/sql.el (font-lock-keyword-face)
21863         (font-lock-set-defaults, font-lock-string-face):
21864         * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
21865         (itimer-version, lazy-lock-defer-contextually)
21866         (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
21867         Add defvars.
21869         * progmodes/cperl-mode.el (cperl-electric-lbrace)
21870         (cperl-electric-keyword, cperl-electric-pod)
21871         (cperl-electric-backspace, cperl-forward-re)
21872         (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
21873         (vc-rcs-header, vc-sccs-header): Add defvars.
21875         * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
21876         (font-lock-syntactic-keywords, gud-find-expr-function):
21877         Add defvars.
21879         * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
21880         (gdb-frame-parameters): Declare before use.
21882         * progmodes/gud.el (gdb-active-process, gdb-define-alist)
21883         (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
21884         (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
21885         (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
21887         * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
21888         (idlwave-help-with-source): Use `insert-buffer-substring', not
21889         `insert-buffer'.
21891 2005-08-29  Juri Linkov  <juri@jurta.org>
21893         * outline.el (hide-entry, hide-leaves, outline-toggle-children):
21894         Put outline-back-to-heading function call inside save-excursion.
21896 2005-08-29  Juanma Barranquero  <lekktu@gmail.com>
21898         * man.el (Man-init-defvars, Man-translate-references)
21899         (Man-support-local-filenames, Man-highlight-references):
21900         * progmodes/sql.el (sql-interactive-mode):
21901         * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
21903         * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
21904         (compilation-mode-font-lock-keywords): Add defvars.
21905         (checkdoc-interactive-loop): "?\ " -> "?\s".
21907         * emacs-lisp/lisp-mode.el (font-lock-comment-face)
21908         (font-lock-doc-face, font-lock-string-face)
21909         (font-lock-keywords-case-fold-search): Add defvars.
21910         (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
21912         * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
21913         Don't pass X and Y (they are ignored anyway).
21914         (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
21915         (mouse-delete-window): Make arguments optional.
21917         * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
21918         (caesar-translate-table, minor-modes, news-buffer-save)
21919         (news-group-name, news-minor-modes): Add defvars.
21921         * emacs-lisp/lselect.el (mouse-highlight-priority)
21922         (x-lost-selection-functions, zmacs-regions):
21923         * emacs-lisp/pp.el (font-lock-verbose):
21924         * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
21925         * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
21926         (ses-mode-map):
21927         * emacs-lisp/tcover-unsafep.el (safe-functions):
21928         * international/mule-cmds.el (mac-system-coding-system)
21929         (mac-system-locale):
21930         * language/ethio-util.el (rmail-current-message)
21931         (rmail-message-vector):
21932         * language/thai-util.el (thai-auto-composition-mode):
21933         * mail/metamail.el (rmail-current-message, rmail-message-vector):
21934         * mail/mspools.el (rmail-inbox-list, vm-crash-box)
21935         (vm-folder-directory, vm-init-file, vm-init-file-loaded)
21936         (vm-primary-inbox, vm-spool-files):
21937         * mail/rmail.el (deleted-head, font-lock-fontified)
21938         (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
21939         (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
21940         (total-messages):
21941         * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
21942         (rmail-summary-mode-map):
21943         * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
21944         (rmail-last-label, rmail-last-multi-labels)
21945         (rmail-summary-vector, rmail-total-messages):
21946         * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
21947         * mail/rmailsum.el (msgnum):
21948         * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
21949         (rmail-current-message):
21950         * obsolete/fast-lock.el (font-lock-face-list):
21951         * obsolete/rnewspost.el (mail-reply-buffer):
21952         * obsolete/scribe.el (compile-command):
21953         * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
21955 2005-08-28  John Paul Wallington  <jpw@gnu.org>
21957         * ibuf-ext.el (ibuffer-auto-update-changed):
21958         Use `frame-or-buffer-changed-p' to check whether we need to update.
21959         (ibuffer-auto-mode): Don't advise `get-buffer-create' and
21960         `kill-buffer'.  Initialise `ibuffer-auto-buffers-changed'
21961         as a `frame-or-buffer-changed-p' state vector instead.
21963 2005-08-27  Romain Francoise  <romain@orebokech.com>
21965         * textmodes/makeinfo.el (makeinfo-compile):
21966         Use `compilation-start'.  Set `next-error-function' according to
21967         `disable-errors'.
21968         (makeinfo-next-error): New function.
21969         (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
21970         (makeinfo-buffer): Likewise.
21972         * progmodes/compile.el (compilation-start): Add autoload cookie.
21974         * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
21975         * textmodes/sgml-mode.el: Likewise.
21976         * progmodes/python.el: Likewise.
21978 2005-08-27  Eli Zaretskii  <eliz@gnu.org>
21980         * simple.el (blink-matching-paren-distance): Document the meaning
21981         of nil value, and allow to customize to nil.
21983         * eshell/esh-ext.el (eshell-windows-shell-file): Look for
21984         command.com, not command.exe.
21986 2005-08-26  John Wiegley  <johnw@newartisans.com>
21988         * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
21989         code around a bit so that an extraneous nil argument is not added
21990         to a command when no args are given.
21992         * eshell/esh-arg.el (eshell-parse-double-quote): If a
21993         double-quoted argument resolves to nil, return it as an empty
21994         string rather than as nil.  This made it impossible to pass "" to
21995         a shell script as a null string argument.
21997 2005-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21999         * outline.el (outline-invent-heading): New fun.
22000         (outline-promote, outline-demote): Use it.
22001         (outline-move-subtree-down): Remove unused vars `re' and `txt'.
22002         (outline-end-of-subtree): Remove unused var `opoint'.
22004 2005-08-26  David Reitter  <david.reitter@gmail.com>
22006         * menu-bar.el (truncate-lines, write-file, print-buffer)
22007         (ps-print-buffer-faces, ps-print-buffer, split-window):
22008         Disable menu items when the frame they refer to is invisible, or when
22009         they refer to a buffer and the minibuffer is selected.
22011 2005-08-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
22013         * progmodes/flymake.el (flymake-highlight-err-lines):
22014         Use save-excursion around flymake-highlight-line to preserve point.
22016 2005-08-26  Eli Zaretskii  <eliz@gnu.org>
22018         * progmodes/octave-mod.el: Change Author and Maintainer address.
22019         (octave-maintainer-address): Change Kurt's email address.
22020         * progmodes/octave-inf.el: Change Author and Maintainer address.
22021         * progmodes/octave-hlp.el: Change Author and Maintainer address.
22023 2005-08-26  Kim F. Storm  <storm@cua.dk>
22025         * subr.el (version-list-<, version-list-<=, version-list-=):
22026         Rename from integer-list-*.
22027         (version-list-not-zero): Likewise.  Fix while loop.
22028         (version=): Use version-list-= instead of string-equal.
22030 2005-08-26  Richard M. Stallman  <rms@gnu.org>
22032         * outline.el (outline-promote): Try shortening the heading.
22033         As last resort, read the heading to use.
22034         (outline-demote): As last resort, read the heading to use.
22036 2005-08-26  Romain Francoise  <romain@orebokech.com>
22038         * progmodes/compile.el (compilation-start): Doc fix.
22040         * progmodes/antlr-mode.el (antlr-default): Fix defface form.
22041         (antlr-font-lock-additional-keywords): Fix reference to
22042         `antlr-font-lock-literal-regexp' erroneously changed during the
22043         mass face rename.
22044         (antlr-run-tool): Use `compilation-start'.
22046         * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
22047         instead of the obsolete `compile-internal'.
22049 2005-08-26  Juanma Barranquero  <lekktu@gmail.com>
22051         * calendar/cal-bahai.el (date, displayed-month, displayed-year)
22052         (number, original-date):
22053         * calendar/cal-china.el (date):
22054         * calendar/cal-coptic.el (date):
22055         * calendar/cal-french.el (date):
22056         * calendar/cal-hebrew.el (date, entry, number, original-date):
22057         * calendar/cal-islam.el (date, number, original-date):
22058         * calendar/cal-iso.el (date):
22059         * calendar/cal-julian.el (date):
22060         * calendar/cal-mayan.el (date):
22061         * calendar/cal-menu.el (date, event):
22062         * calendar/cal-persia.el (date):
22063         * calendar/lunar.el (date):
22064         * calendar/solar.el (date): Add defvars.
22066         * emerge.el:
22067         * ibuffer.el:
22068         * info-xref.el:
22069         * obsolete/bg-mouse.el:
22070         * obsolete/sun-curs.el:
22071         * obsolete/swedish.el: Move the `defvar's to the top level.
22073         * smerge-mode.el (smerge-refined-change): Add :group.
22075 2005-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
22077         * smerge-mode.el (smerge-remove-props): Make the args non-optional.
22078         (smerge-keep-n): Remove props.
22079         (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
22080         (smerge-keep-current, smerge-kill-current): Don't remove props anymore
22081         now that it's done in smerge-keep-n.
22082         (smerge-refined-change): New face.
22083         (smerge-refine-chopup-region, smerge-refine-highlight-change)
22084         (smerge-refine): New funs.
22085         (smerge-basic-map): Bind smerge-refine.
22087 2005-08-25  Juri Linkov  <juri@jurta.org>
22089         * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
22090         compilation-process-setup-function and compilation-disable-input
22091         in grep-mode instead of let-bindings in grep.
22093         * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
22094         Delete "Automatic File De/compression" (auto-compression-mode).
22096 2005-08-25  Juanma Barranquero  <lekktu@gmail.com>
22098         * obsolete/bg-mouse.el: Move to obsolete/ from term/.
22099         Silence warning about non-existent variable.
22101 2005-08-25  Richard M. Stallman  <rms@gnu.org>
22103         * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
22104         Rename "Describe Key" to "Describe Key or Mouse Operation".
22106         * mail/mailalias.el (build-mail-aliases): Delete comments
22107         from the contents before processing them.
22109         * isearch.el (isearch-edit-string): Erase the Search prompt
22110         if user enters an empty string and there is no default.
22112         * comint.el (comint-file-name-prefix): Add autoload.
22114 2005-08-25  Joe Corneli  <jcorneli@math.utexas.edu>
22116         * subr.el (play-sound): Rearrange to avoid warning.
22118 2005-08-25  Carsten Dominik  <dominik@science.uva.nl>
22120         * calendar/diary-lib.el (diary-modify-entry-list-string-function):
22121         New hook.
22122         (add-to-diary-list): Call `diary-modify-entry-list-string-function'
22124 2005-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
22126         * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
22128         * custom.el (custom-theme-set-variables): Sort minor modes last.
22130 2005-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
22132         * subr.el (version-separator, version-regexp-alist): New vars used by
22133         version comparison funs.
22134         (integer-list-<, integer-list-=, integer-list-<=)
22135         (integer-list-not-zero): New funs for integer list comparison.
22136         (version-to-list, version=, version<, version<=): New funs for version
22137         comparison.
22139 2005-08-24  Juanma Barranquero  <lekktu@gmail.com>
22141         * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
22142         (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
22143         time to silence the byte-compiler.
22145         * ibuffer.el (ibuffer-compile-make-eliding-form)
22146         (ibuffer-check-formats): Use `with-no-warnings' to hide references
22147         to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
22148         so it's silly to get warnings for it).
22149         (ibuffer-auto-mode, ibuffer-cached-filter-formats)
22150         (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
22151         (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
22152         (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
22153         (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
22154         (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
22155         Defvar at compile time.
22156         (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
22157         (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
22158         Declare them before use.
22160         * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
22161         (info-xref-good, info-xref-bad): Defvar at compile time.
22163         * obsolete/mlsupport.el (filter-region, execute-monitor-command):
22164         Use `let*' instead of `let'.
22166         * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
22167         (*mouse-y*, menu, char): Defvar at compile time.
22168         (sc::menu): Declare it before use.
22169         (sc::pack-one-line): Use `let', not `let*'.
22171         * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
22172         (mail-send-hook): Defvar at compile time.
22174         * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
22175         Defvar at compile time.
22177         * term/sun-mouse.el (current-global-mousemap)
22178         (current-local-mousemap): Declare them before use.
22180 2005-08-24  Carsten Dominik  <dominik@science.uva.nl>
22182         * bookmark.el (bookmark-after-jump-hook): New hook.
22183         (bookmark-jump): Run `bookmark-after-jump-hook'.
22185 2005-08-23  Juri Linkov  <juri@jurta.org>
22187         * faces.el (minibuffer-prompt): Doc fix.
22189 2005-08-23  Juanma Barranquero  <lekktu@gmail.com>
22191         * progmodes/xscheme.el: Trivial changes to silence warnings.
22192         (xscheme-previous-mode, xscheme-previous-process-state):
22193         Add defvars.
22194         (xscheme-last-input-end, xscheme-process-command-line)
22195         (xscheme-process-name, xscheme-buffer-name)
22196         (xscheme-expressions-ring-max, xscheme-expressions-ring)
22197         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
22198         (xscheme-control-g-synchronization-p)
22199         (xscheme-control-g-disabled-p, xscheme-string-receiver)
22200         (default-xscheme-runlight, xscheme-runlight)
22201         (xscheme-runlight-string, xscheme-process-filter-state)
22202         (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
22203         Move to beginning of file.
22204         (scheme-interaction-mode-commands-alist)
22205         (scheme-interaction-mode-map, scheme-debugger-mode-map):
22206         Declare them before use.  Note: the initialization code for the
22207         variables has not been moved because it uses functions that reference
22208         the variables.
22209         (xscheme-control-g-message-string, xscheme-process-filter-alist)
22210         (xscheme-prompt-for-expression-map): Declare them before use.
22211         (scheme-debugger-mode-commands): "?\ " -> "?\s".
22213 2005-08-23  Ed Swarthout  <ed.swarthout@gmail.com>  (tiny change)
22215         * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
22217 2005-08-22  Juri Linkov  <juri@jurta.org>
22219         * faces.el (set-face-underline): Delete this duplicate function
22220         and make an obsolete alias to set-face-underline-p.
22221         (set-face-underline-p): Use docstring of set-face-underline.
22222         (describe-face): Create hyperlink to parent face.
22224         * info.el (Info-insert-dir): Use save-excursion around
22225         insert-buffer-substring.
22226         (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
22227         (Info-escape-percent): Delete function.
22228         (Info-fontify-node): Replace Info-escape-percent by
22229         replace-regexp-in-string with REP arg set to lambda that
22230         duplicates `%' and preserves text properties.
22232         * progmodes/compile.el (compilation-disable-input): Doc fix.
22233         (define-compilation-mode): Doc fix and refill.
22234         (kill-compilation): Use `mode-name' in the error message.
22235         (compilation-find-file): Use `compilation-error' in the
22236         read-file-name's prompt.
22238 2005-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22240         * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
22241         (smerge-auto-leave): Make undo re-enable the mode.
22242         (debug-ignored-errors): Add the user-error of impossible resolution.
22243         (smerge-resolve): Move things around a bit, in preparation for later.
22244         (smerge-diff): Don't fail if the buffer has no associated file.
22245         (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
22246         (smerge-conflict-overlay): New function.
22247         (smerge-match-conflict): Don't add text properties here.
22248         (smerge-find-conflict): Instead, add an overlay here.
22249         Also check for the case where we're inside a conflict already, so as to
22250         obviate the need for font-lock-multiline, which is unbearably slow with
22251         large conflicts and ciomplex font-lock patterns.
22252         (smerge-remove-props): Remove overlay rather than text-properties.
22253         (smerge-mode): Don't set font-lock-multiline.
22254         Remove overlays when turned off.
22256 2005-08-21  Kim F. Storm  <storm@cua.dk>
22258         * ido.el (ido-ignore-item-p): Use save-match-data.
22259         Bind case-fold-search to ido-case-fold locally.
22261 2005-08-20  Richard M. Stallman  <rms@gnu.org>
22263         * files.el (normal-mode): If font lock is on, turn it off and on.
22265         * subr.el (replace-regexp-in-string): Doc fix.
22267         * startup.el (command-line-1): Don't suppress startup screen
22268         due to existing processes.
22270         * progmodes/grep.el (grep): Bind compilation-disable-input to t.
22272         * progmodes/compile.el (compilation-disable-input): Default to nil.
22274 2005-08-20  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
22276         * progmodes/compile.el (compilation-disable-input): New defcustom.
22277         (compilation-start): If compilation-disable-input is non-nil, send
22278         EOF to the compilation process.
22280 2005-08-20  Eli Zaretskii  <eliz@gnu.org>
22282         * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
22283         Run the argument of tex-shell-cd-command through
22284         convert-standard-filename, to get the correct style of slashes on
22285         Windows, and enclose the result in quotes, in case the file name
22286         includes whitespace or other special characters.
22288 2005-08-19  Andreas Schwab  <schwab@suse.de>
22290         * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
22291         process.
22293 2005-08-18  Luc Teirlinck  <teirllm@auburn.edu>
22295         * cus-start.el (minibuffer-prompt-properties): Correct typo.
22297 2005-08-18  Kim F. Storm  <storm@cua.dk>
22299         * scroll-lock.el: Fix errors due to incorrect line wrapping.
22301 2005-08-18  Richard M. Stallman  <rms@gnu.org>
22303         * scroll-lock.el: New file.
22305 2005-08-18  Thien-Thi Nguyen  <ttn@gnu.org>
22307         * dired.el (dired-move-to-end-of-filename):
22308         Handle fifo as rendered by "ls -lF": Don't include trailing "|".
22310 2005-08-18  Kim F. Storm  <storm@cua.dk>
22312         * ido.el (ido-everywhere): Fix defcustom :set function to disable
22313         rather than toggle mode when custom value is nil.
22314         (ido-everywhere): Fix defun doc string.
22316 2005-08-17  Richard M. Stallman  <rms@gnu.org>
22318         * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
22319         as tag instead of "Inviolable".
22321 2005-08-17  Kim F. Storm  <storm@cua.dk>
22323         * windmove.el (windmove-coordinates-of-position): Remove.
22324         (windmove-coordinates-of-window-position): Remove.
22325         (windmove-reference-loc): Use posn-at-point instead.
22327         * subr.el (insert-for-yank-1): Doc fix.
22329         * ido.el (ido-enter-matching-directory): Rename from
22330         ido-enter-single-matching-directory.  Change `slash' choice to
22331         `only'.  Add `first' choice.
22332         (ido-exhibit): Adapt to above changes.
22334 2005-08-16  Luc Teirlinck  <teirllm@auburn.edu>
22336         * Makefile.in: Expand comment about building loaddefs.el.
22338 2005-08-16  Nick Roberts  <nickrob@snap.net.nz>
22340         * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
22341         Comment use of defadvice.
22343         * progmodes/gud.el (gud-jump): Rework for gdb-ui.
22345 2005-08-15  Dan Nicolaescu  <dann@ics.uci.edu>
22347         * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
22348         * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
22349         * progmodes/gdb-ui.el, progmodes/idlw-help.el,
22350         * progmodes/idlw-shell.el, progmodes/ld-script.el,
22351         * progmodes/which-func.el, ruler-mode.el, strokes.el,
22352         * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
22353         for backward compatibility for faces that did not appear in the
22354         previous Emacs release.
22356         * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
22358 2005-08-15  Kim F. Storm  <storm@cua.dk>
22360         * emulation/cua-base.el (cua-delete-region): Return t if
22361         deleted region was non-empty.
22362         (cua-replace-region): Inhibit overwrite-mode for
22363         self-insert-command if replaced region was non-empty.
22364         (cua--explicit-region-start, cua--status-string): Make them
22365         buffer-local at top-level...
22366         (cua-mode): ...rather than when mode is enabled.
22368 2005-08-15  Thien-Thi Nguyen  <ttn@gnu.org>
22370         * progmodes/vhdl-mode.el (vhdl-emacs-21):
22371         Set t for Emacs 21, 22, and so on.
22373 2005-08-15  David Ponce  <david@dponce.com>
22375         * tree-widget.el: Update Commentary header.
22376         (tree-widget-theme): Doc fix.
22377         (tree-widget-space-width): New option.
22378         (tree-widget-image-properties): Look up in the default theme too.
22379         (tree-widget--cursors): Only for images with arrow pointer shape.
22380         (tree-widget-lookup-image): Pointer shape is hand by default.
22381         (tree-widget-icon): Rename generic icon widget from
22382         `tree-widget-control'.
22383         (tree-widget-*-icon): Rename from `tree-widget-*-control' and
22384         derive from `tree-widget-icon'.
22385         (tree-widget-handle): Improve default look and feel of the text
22386         representation.
22387         (tree-widget): Rename :*-control properties to :*-icon properties.
22388         Add :action and :help-echo properties.
22389         (tree-widget-after-toggle-functions): Move.
22390         (tree-widget-close-node, tree-widget-open-node): Remove.
22391         (tree-widget-before-create-icon-functions): New hook.
22392         (tree-widget-value-create): Update to allow customization of icons
22393         and nodes at run-time via that new hook.
22394         (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
22395         (tree-widget-icon-action, tree-widget-icon-help-echo)
22396         (tree-widget-action, tree-widget-help-echo): New functions.
22398 2005-08-15  Kim F. Storm  <storm@cua.dk>
22400         * ido.el (ido-buffer-internal): Use with-no-warnings.
22401         (ido-make-merged-file-list): Use while-no-input.
22403 2005-08-15  Richard M. Stallman  <rms@gnu.org>
22405         * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
22406         (flyspell-large-region): Fix doc and custom type.
22408 2005-08-14  Richard M. Stallman  <rms@gnu.org>
22410         * files.el (interpreter-mode-alist): Doc fix.
22412         * mail/rmail.el (rmail-nonignored-headers): New variable.
22413         (rmail-clear-headers): Use it.
22414         (rmail-reply): Better handling of mail-followup-to header.
22416         * progmodes/sh-script.el (sh-font-lock-keywords-var):
22417         Rename variable from sh-font-lock-keywords.  In the `shell' entry,
22418         don't try to refer to executable-font-lock-keywords.
22419         (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
22420         (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
22421         (sh-font-lock-keywords): Append executable-font-lock-keywords here.
22422         (sh-mode): Set comment-start-skip, local-abbrev-table,
22423         imenu-case-fold-search.
22424         (sh-set-shell): Don't set them here.
22425         (sh-feature): Simplify.  Get rid of the eval-a-variable feature.
22426         Don't cache the results in the original alist; don't ever modify
22427         that alist.
22429         * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
22431         * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
22432         empty.
22434 2005-08-15  Andreas Schwab  <schwab@suse.de>
22436         * desktop.el: Put autoload cookie at risky-local-variable declarations.
22438         * dired.el, info.el, mail/rmail.el: Revert last change.
22440 2005-08-14  Thien-Thi Nguyen  <ttn@gnu.org>
22442         * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
22443         modification in `eval-after-load' form.
22444         * info.el: Likewise.
22445         * mail/rmail.el: Likewise.
22447 2005-08-14  Juri Linkov  <juri@jurta.org>
22449         * progmodes/compile.el (compilation-mode-font-lock-keywords):
22450         Remove highlighting of "Compilation started".  Highlight only
22451         the word "finished" in "Compilation finished".  Add highlighting
22452         of "interrupt", "killed", "terminated" and the exit code.
22453         (compilation-start): Add newline after header.  Use exactly the
22454         same time stamp format as the finishing message.
22455         (compilation-mode-map): Add ellipsis to "Search Files (grep)".
22457         * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
22458         (grep-mode-font-lock-keywords): Don't highlight "Grep started".
22459         Add highlighting of "interrupt", "killed", "terminated".
22461         * delsel.el (delete-selection-pre-hook): If overwrite-mode is
22462         enabled and the current command is self-insert-command, call it
22463         explicitly with overwrite-mode bound to nil, to not allow it
22464         to delete the character after the selected region.
22466 2005-08-12  Matt Hodges  <MPHodges@member.fsf.org>
22468         * emacs-lisp/eldoc.el: Add move-beginning-of-line,
22469         move-end-of-line, end-of-line, and beginning-of-line to the list
22470         of commands after which the echo area is updated.
22472 2005-08-12  Eli Zaretskii  <eliz@gnu.org>
22474         * cus-edit.el (custom-save-all, custom-save-delete):
22475         Bind recentf-exclude to exclude custom-file.
22477 2005-08-12  Ehud Karni  <ehud@unix.mvs.co.il>
22479         * mail/rmailsum.el (rmail-summary-end-of-message): New command
22480         to go to the bottom of the mail message.  Added to
22481         `rmail-summary-mode-map' with key "/".
22482         (rmail-summary-show-message): New (internal) function for use by
22483         both `rmail-summary-beginning/end-of-message'.
22484         (rmail-summary-beginning-of-message): Change to use
22485         rmail-summary-show-message.
22487         * mail/rmail.el (rmail-end-of-message): New command to go to the
22488         end of the current message.  Added to `rmail-mode-map' with key "/".
22489         (rmail-beginning-of-message): Fix to work as documented.
22490         (rmail-mode): Change documentation.
22492         * progmodes/compile.el (compilation-start): Add the line
22493         "Compilation started" with compilation start time.
22494         (compilation-mode-font-lock-keywords): Add `started' to keywords.
22496 2005-08-11  Luc Teirlinck  <teirllm@auburn.edu>
22498         * menu-bar.el (menu-bar-options-menu): Standardize capitalization
22499         of menu items.
22501 2005-08-11  Richard M. Stallman  <rms@gnu.org>
22503         * simple.el (pop-global-mark): Reverse test of widen-automatically.
22505         * battery.el (battery-status-function): Don't use ignore-errors.
22507 2005-08-11  Lute Kamstra  <lute@gnu.org>
22509         * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
22510         define-obsolete-variable-alias.
22512 2005-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22514         * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
22515         (ange-ftp-send-cmd): Revert last change, and expand
22516         the comment explaining the problem.
22518 2005-08-10  Luc Teirlinck  <teirllm@auburn.edu>
22520         * ldefs-boot.el: Update.
22522         * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
22523         item to "Time, Load and Mail".  Change help echo text.
22525         * time.el (display-time-use-mail-icon, display-time-format)
22526         (display-time-string-forms): Shorten first line of docstrings.
22528 2005-08-10  Lars Hansen  <larsh@soem.dk>
22530         * desktop.el (desktop-buffer-mode-handlers):
22531         Make non-customizable.  Add autoload cookie.  Change initial value to
22532         nil; add elements in respective modules instead.  Fix doc string.
22533         (desktop-load-file): New function.
22534         (desktop-minor-mode-handlers): New autoloaded variable.
22535         (desktop-create-buffer): Call minor mode handlers.
22536         Use desktop-load-file to load major and minor mode modules prior to
22537         checking for a handler.
22538         (desktop-save): Don't add nil to desktop-minor-modes for minor
22539         modes with nil function in desktop-minor-mode-table.  Don't delete
22540         desktop file before rewriting it.
22541         (desktop-locals-to-save): Add autoload cookie.  Don't make
22542         automatically buffer-local.  Add variables column-number-mode,
22543         size-indication-mode, indent-tabs-mode,
22544         indicate-buffer-boundaries, indicate-empty-lines and
22545         show-trailing-whitespace.
22546         (desktop-clear): Allow desktop-clear-preserve-buffers to contain
22547         regexps.  Don't use desktop-clear-preserve-buffers-regexp.
22548         (desktop-clear-preserve-buffers-regexp): Delete.
22549         (desktop-clear-preserve-buffers): Update initial value and docstring.
22550         (desktop-save-buffer): Fix doc string.
22552         * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
22553         (hilit-chg-desktop-restore): New function.
22554         (highlight-changes-mode): Add highlight-changes-mode to
22555         desktop-locals-to-save.
22557         * dired.el: Add handler to desktop-buffer-mode-handlers.
22558         (dired-restore-desktop-buffer): Remove autoload cookie.
22559         (dired-mode): Add autoload cookie.
22561         * info.el: Add handler to desktop-buffer-mode-handlers.
22562         (Info-restore-desktop-buffer): Remove autoload cookie.
22563         (Info-mode): Add autoload cookie.
22565         * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
22566         (mh-restore-desktop-buffer): Remove autoload cookie.
22567         (mh-folder-mode): Add autoload cookie.
22569         * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
22570         (rmail-restore-desktop-buffer): Remove autoload cookie.
22572 2005-08-11  Masatake YAMATO  <jet@gyve.org>
22574         * hexl.el (hexl-address-region):
22575         (hexl-ascii-region, hexl-font-lock-keywords):
22576         (hexl-highlight-line-range): Use the term "region"
22577         instead of "area" for consistency with the other symbols
22578         defined in hexl.el.
22580 2005-08-09  Luc Teirlinck  <teirllm@auburn.edu>
22582         * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
22583         correct group: it is set with `menu-bar-make-mm-toggle' (pointed
22584         out by Juri Linkov).  Add `display-battery-mode'.
22586 2005-08-09  Juri Linkov  <juri@jurta.org>
22588         * progmodes/compile.el (compilation-mode-font-lock-keywords):
22589         Remove `-text' from face variable names.
22590         (compilation-error-file-name, compilation-warning-file-name)
22591         (compilation-info-file-name): Delete faces.
22592         (compilation-line-number, compilation-column-number):
22593         Remove face underlining.
22594         (compilation-message-face): Set to `underline' value by default.
22595         (compilation-error-face, compilation-warning-face)
22596         (compilation-info-face): Remove `-file-name' from face names.
22597         (compilation-error-text-face, compilation-warning-text-face)
22598         (compilation-info-text-face): Delete face variables.
22599         (compilation-text-face): Delete function.
22601         * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
22602         (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
22603         (grep-error-face): Set to `compilation-error' instead of
22604         `compilation-error-face' (which is redefined to `grep-hit-face' in
22605         grep buffers).
22606         (grep-mode-font-lock-keywords): Remove `-text' from face variable
22607         names.  Use `grep-error-face' instead of `compilation-error-text-face'.
22609         * dired-aux.el (dired-do-query-replace-regexp):
22610         Use `query-replace-read-args'.
22612         * replace.el (query-replace-read-from, query-replace-read-to)
22613         (query-replace-read-args): Rename arg `string' to `prompt'.
22615         * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
22617 2005-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
22619         * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
22620         uploading files.
22621         (ange-ftp-canonize-filename): Handle file names beginning with ~
22622         correctly.
22624 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
22626         * textmodes/fill.el (canonically-space-region)
22627         (fill-context-prefix, fill-french-nobreak-p)
22628         (fill-delete-newlines, fill-comment-paragraph)
22629         (justify-current-line): "?\ " -> "?\s".
22631 2005-08-09  Ben North  <ben@redfrontdoor.org>  (tiny change)
22633         * textmodes/fill.el (fill-nonuniform-paragraphs):
22634         Improve argument/docstring consistency.
22636 2005-08-09  Richard M. Stallman  <rms@gnu.org>
22638         * textmodes/ispell.el (ispell-word): More fboundp checks.
22640         * files.el (find-file-noselect): Don't call set-buffer-major-mode.
22641         (find-file-noselect-1): Call it here, only if RAWFILE.
22642         (normal-mode): Always set some major mode.
22643         (save-some-buffers-action-alist): Change some explanation strings.
22644         (file-name-non-special): In the `quote' method, use unwind-protect.
22646 2005-08-09  Magnus Henoch  <mange@freemail.hu>
22648         * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
22649         (ispell-have-aspell-dictionaries): New variable.
22650         (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
22651         (ispell-get-aspell-config-value): New function.
22652         (ispell-aspell-find-dictionary): New function.
22653         (ispell-aspell-add-aliases): New function.
22654         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
22655         appropriate.  Don't look for ispell dictionaries if we use aspell.
22656         (ispell-menu-map): Don't build a submenu of dictionaries.
22658 2005-08-09  Richard M. Stallman  <rms@gnu.org>
22660         * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
22661         (sql-read-passwd): Use read-passwd.
22663         * progmodes/idlw-toolbar.el (idlwave-toolbar)
22664         (idlwave-toolbar-is-possible): Add defvars.
22666         * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
22667         Avoid warnings.
22669         * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
22670         (idlwave-system-class-info, idlwave-executive-commands-alist):
22671         Use defvar.
22673         * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
22675         * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
22676         Avoid warnings.
22678         * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
22679         and content-type: headers.
22681         * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
22683         * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
22684         and rename some of them to be more self-explanatory.
22686         * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
22688         * startup.el (command-line-1): Implement -scriptload.
22690         * replace.el (occur-engine): Initial *Occur* output not undoable.
22692         * menu-bar.el (menu-bar-file-menu): Rename some menu items
22693         and improve help strings.
22695         * isearch.el (isearch-repeat): When changing direction,
22696         mark search successful.
22698         * ediff-init.el: Use (featurep 'xemacs).
22700         * comint.el (send-invisible): Identify buffer, if not selected.
22702         * align.el: Delete autoload for c-guess-basic-syntax.
22704 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
22706         * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
22707         Improve argument/docstring consistency.  Doc fixes.
22708         (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
22709         (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
22710         (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
22711         (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
22712         (r2bv-organization, r2bv-pages, r2bv-primary-author)
22713         (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
22714         (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
22715         Defvar at compile time.
22717 2005-08-09  Juri Linkov  <juri@jurta.org>
22719         * info.el: Replace `info' with upper-case `Info' where appropriate.
22720         (info-title-1, info-title-2, info-title-3, info-title-4)
22721         (info-menu-header): Move up face definitions.
22722         (info-menu-star): Rename from `info-menu-5'.
22723         (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
22724         (Info-fontify-visited-nodes): Fix docstring.
22725         (Info-hide-note-references): Fix docstring.
22726         (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
22727         menu items in the same way as on cross-references.
22728         (info-apropos): Fix sorting order and formatting to be like in the
22729         stand-alone Info browser.  Display error messages for 1 sec.
22730         (Info-mode-map): Move down `c' key binding.  Bind `^' to `Info-up'.
22731         (Info-mode-menu): Remove item for `Info-search-case-sensitively'
22732         from the menu bar.
22733         (Info-insert-dir): Restore point after calling
22734         `insert-buffer-substring'.
22736 2005-08-08  Richard M. Stallman  <rms@gnu.org>
22738         * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
22739         (recompute-lucid-menubar): Add defvars.
22741         * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
22743         * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
22745         * net/net-utils.el (run-dig): Rename from `dig'.
22747         * play/gametree.el (gametree-mode): Use make-local-variable,
22748         not make-variable-buffer-local.
22750         * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
22752         * ansi-color.el (ansi-color-make-extent)
22753         (ansi-color-set-extent-face): Use fboundp, not functionp.
22755         * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
22756         not make-variable-buffer-local.
22758         * bookmark.el (Info-current-file): Add defvar.
22759         (bookmark-jump-noselect): Use with-no-warnings.
22761         * completion.el (c-mode-map, fortran-mode-map): Add defvars.
22763         * ebuff-menu.el (Helper-return-blurb): Add defvar.
22765         * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
22767         * find-file.el (ada-procedure-start-regexp)
22768         (ada-package-start-regexp): Add defvars.
22770         * info.el (Info-insert-dir): Use insert-buffer-substring.
22772         * xml.el (xml-att-def-re): Add defvar.
22774         * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
22775         calling convention.
22777         * subr.el (while-no-input): Return t if there is input.
22779 2005-08-08  Luc Teirlinck  <teirllm@auburn.edu>
22781         * cus-start.el (all): Add `overflow-newline-into-fringe'.
22783 2005-08-08  Juanma Barranquero  <lekktu@gmail.com>
22785         * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
22786         (scheme-prev-l/c-dir/file): Fix typos in docstrings.
22788 2005-08-08  Emilio C. Lopes  <eclig@gmx.net>
22790         * cmuscheme.el (scheme-start-file): Replace reference to
22791         `user-emacs-directory' by "~/.emacs.d/".
22793 2005-08-08  Thien-Thi Nguyen  <ttn@gnu.org>
22795         * info.el (Info-dir-remove-duplicates): Avoid case folding
22796         in loop; instead, keep downcased strings for comparison.
22797         Suggested by Helmut Eller.
22799 2005-08-07  Michael Albinus  <michael.albinus@gmx.de>
22801         Sync with Tramp 2.0.50.
22803         * net/tramp.el: Remove defvar of `last-coding-system-used' in the
22804         XEmacs case; not necessary anymore.
22805         (tramp-user-regexp): Allow "@" as part of user name.
22806         (tramp-handle-set-visited-file-modtime)
22807         (tramp-handle-insert-file-contents)
22808         (tramp-handle-write-region): No special handling for
22809         `last-coding-system-used, because this is done in
22810         `tramp-accept-process-output' now.
22811         (tramp-accept-process-output): New defun.
22812         (tramp-process-one-action, tramp-process-one-multi-action)
22813         (tramp-wait-for-regexp, tramp-wait-for-output)
22814         (tramp-discard-garbage-erase-buffer): Call it.  Reported by David
22815         Howells <dhowells@redhat.com>.
22816         (clear-visited-file-modtime): Defadvice removed.  The check for
22817         unset buffer's modtime does not need to be based on
22818         `tramp-buffer-file-attributes'.  Suggested by RMS.
22819         (tramp-message): Insert "\n" if not being at beginning of line.
22820         (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
22821         sequence with same logic.
22822         (tramp-completion-handle-expand-file-name): Discard call of
22823         `tramp-drop-volume-letter'.  It is not necessary, and there have
22824         been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
22825         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
22826         (tramp-do-copy-or-rename-file-out-of-band): Transfer message
22827         should always be visible.
22828         (tramp-handle-insert-directory, tramp-setup-complete)
22829         (tramp-set-process-query-on-exit-flag)
22830         (tramp-append-tramp-buffers): Pacify byte-compiler.
22831         (tramp-bug): Delete non-existing variables from list.
22832         Apply `tramp-load-report-modules' as pre-hook.
22833         Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
22834         `shell-prompt-pattern' because of non-7bit characters.
22835         Reported by Sebastian Luque <sluque@mun.ca>.
22836         (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
22837         (tramp-match-string-list): Remove function.
22838         (tramp-wait-for-regexp): Remove call of that function.
22839         Suggested by Kim F. Storm <storm@cua.dk>.
22840         (tramp-set-auto-save-file-modes): Use octal integer code #o600
22841         instead of octal character code ?\600.  The latter resulted in a
22842         syntax error with XEmacs.
22844         * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
22845         XEmacs case; not necessary anymore.
22846         (tramp-smb-handle-write-region): No special handling for
22847         `last-coding-system-used, because this is done in
22848         `tramp-accept-process-output' now.
22849         (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
22851 2005-08-06  Luc Teirlinck  <teirllm@auburn.edu>
22853         * wid-edit.el (widget-choice-value-create):
22854         Unconditionally respect user choice.  Set :explicit-choice back to nil
22855         when no longer needed.
22856         (widget-choice-action): Unconditionally respect user choice.
22857         Eliminate :explicit-choice-value.
22859         * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
22861         * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
22862         with `indicate-empty-lines' and `indicate-buffer-boundaries'.
22863         (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
22864         running new function `toggle-indicate-empty-lines'.
22865         Rename "Customize" item to "Customize fringe".
22866         Rename "Indicators" item to "Buffer boundaries" and change help echo.
22867         (menu-bar-showhide-fringe-ind-menu): Change several help echos.
22868         Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
22869         Delete "Empty lines only" item.
22870         (menu-bar-showhide-fringe-ind-customize): New function.
22871         (menu-bar-showhide-fringe-ind-mixed)
22872         (menu-bar-showhide-fringe-ind-box)
22873         (menu-bar-showhide-fringe-ind-right)
22874         (menu-bar-showhide-fringe-ind-left)
22875         (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
22876         instead of `fringe-indicators'.
22878 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
22880         * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
22881         Change the date of last update.
22883 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
22885         * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
22886         (viper-exec-yank, viper-put-back): Don't display modification msg
22887         if in the minibuffer.
22889         * viper-init.el (viper-replace-overlay-cursor-color)
22890         (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
22891         Make variables frame local.
22893         * viper-util.el (viper-append-filter-alist): Use append instead of
22894         nconc.
22896         * viper.el (viper-vi-state-mode-list)
22897         (viper-emacs-state-mode-list): Move help-mode and
22898         completion-list-mode from the first list to the second.
22899         (viper-mode): Docstring.
22900         (viper-go-away, viper-non-hook-settings): Don't localize
22901         minor-mode-alist in newer Emacsen.  Add advice to
22902         set-cursor-color.  Don't bind "\C-c\\".
22904 2005-08-06  Emilio C. Lopes  <eclig@gmx.net>
22906         * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
22907         (scheme-macro-expand-command): New user options.
22908         (scheme-trace-procedure, scheme-expand-current-form): New commands.
22909         (scheme-form-at-point, scheme-start-file)
22910         (scheme-interactively-start-process): New functions.
22911         (scheme-get-process): New function, extracted from `scheme-proc'.
22912         (run-scheme): Call `scheme-start-file' to get start file, and pass
22913         it to `make-comint'.
22914         (switch-to-scheme, scheme-proc):
22915         Call `scheme-interactively-start-process' if no Scheme buffer/process
22916         is available.
22918 2005-08-06  Juri Linkov  <juri@jurta.org>
22920         * progmodes/compile.el (compilation-mode-font-lock-keywords):
22921         Use `compilation-text-face', `compilation-info-text-face' and
22922         `compilation-error-text-face' instead of `font-lock-keyword-face'.
22923         (compilation-error): New face.
22924         (compilation-error-file-name): Inherit from
22925         `compilation-error' instead of `font-lock-warning-face'.
22926         (compilation-warning-file-name): Inherit from
22927         `compilation-warning' instead of `font-lock-warning-face'.
22928         (compilation-info, compilation-error-file-name)
22929         (compilation-warning-file-name, compilation-info-file-name)
22930         (compilation-line-number, compilation-column-number): Doc fix.
22931         (compilation-error-text-face, compilation-warning-text-face)
22932         (compilation-info-text-face): New face variables.
22933         (compilation-line-face, compilation-column-face)
22934         (compilation-enter-directory-face)
22935         (compilation-leave-directory-face): Doc fix.
22936         (compilation-text-face): New function.
22938         * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
22939         instead of 1 to display binary file names as info file links.
22940         (grep-error-face): Use `compilation-error-face' instead of
22941         `font-lock-keyword-face'.
22942         (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
22943         and `compilation-warning-text-face' instead of
22944         `font-lock-keyword-face'.  Use `compilation-error-text-face'
22945         instead of `grep-error-face'.
22947 2005-08-05  Kenichi Handa  <handa@m17n.org>
22949         * international/code-pages.el: Add autoload cookies for all coding
22950         systems.
22952 2005-08-04  Luc Teirlinck  <teirllm@auburn.edu>
22954         * cus-start.el (all): Put undo.c where it alphabetically belongs.
22956 2005-08-04  Juri Linkov  <juri@jurta.org>
22958         * progmodes/compile.el (compilation-mode-map):
22959         * progmodes/grep.el (grep-mode-map):
22960         Bind TAB to `compilation-next-error' and [backtab] to
22961         `compilation-previous-error'.
22963         * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
22964         matching line numbers, column numbers and their ranges with regexp
22965         matching only line numbers.
22966         (grep-context-face): New face variable.
22967         (grep-mode-font-lock-keywords): Use it.
22969         * faces.el (read-face-name): Delete duplicate faces.
22971 2005-08-02  Juanma Barranquero  <lekktu@gmail.com>
22973         * thumbs.el (thumbs-find-image): Don't make variables
22974         automatically buffer local.
22975         (thumbs-current-tmp-filename, thumbs-current-image-filename)
22976         (thumbs-image-num): Make automatically buffer local.
22977         (thumbs-show-thumbs-list): Use `make-local-variable', not
22978         `make-variable-buffer-local'.
22979         (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
22981         * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
22982         (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
22983         (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
22984         (bother, bye, canyou, chatlst, continue, deathlst, describe)
22985         (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
22986         (feelings-about, foullst, found, hello, history, howareyoulst)
22987         (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
22988         (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
22989         (neglst, obj, object, owner, please, problems, qlist)
22990         (random-adjective, relation, remlst, repetitive-shortness)
22991         (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
22992         (shortlst, something, sportslst, stallmanlst, states, subj)
22993         (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
22994         (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
22995         Defvar at compile time.
22997         * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
22998         not `make-variable-buffer-local'.
23000 2005-08-02  Kim F. Storm  <storm@cua.dk>
23002         * emulation/cua-rect.el (cua--highlight-rectangle): Only show
23003         rectangle overlay in selected window.
23005 2005-08-01  Luc Teirlinck  <teirllm@auburn.edu>
23007         * cus-start.el (all): Put `indicate-empty-lines' in fringe group
23008         instead of display group.  Make `indicate-buffer-boundaries'
23009         customizable through Custom.
23011 2005-08-01  Juanma Barranquero  <lekktu@gmail.com>
23013         * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
23014         (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
23015         (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
23016         (gdb-put-string): Fix typos in docstrings.
23018 2005-08-01  Nick Roberts  <nickrob@snap.net.nz>
23020         Update copyright notices of files in progmodes directory for
23021         release of Emacs 22.1.
23023         * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
23025         * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
23026         Don't barf if the GUD buffer has been killed.
23028 2005-08-01  Kim F. Storm  <storm@cua.dk>
23030         * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
23032 2005-07-29  Stefan Monnier  <monnier@iro.umontreal.ca>
23034         * simple.el (next-error-follow-minor-mode):
23035         make-variable-buffer-local -> make-local-variable.
23037         * emacs-lisp/cl-extra.el: Require CL also when compiling.
23039         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
23040         (byte-compile-form-make-variable-buffer-local): New functions to warn
23041         about misuses of make-variable-buffer-local where make-local-variable
23042         was meant.
23044 2005-07-29  Juanma Barranquero  <lekktu@gmail.com>
23046         * bs.el (bs-attributes-list): Doc fix.
23047         (bs): Update url-link.
23049         * desktop.el (desktop-save-buffer): Fix typos in docstring.
23050         (desktop-load-default): Simplify.
23052         * ibuffer.el (ibuffer-columnize-and-insert-list)
23053         (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
23054         (ibuffer-unmark-all, ibuffer-toggle-marks)
23055         (ibuffer-unmark-forward, ibuffer-unmark-backward)
23056         (ibuffer-compile-make-format-form, ibuffer-format-column)
23057         (ibuffer-current-buffers-with-marks)
23058         (ibuffer-update-title-and-summary): "?\ " -> "?\s".
23059         (ibuffer): Doc fix.
23060         (ibuffer-mode): Fix typo in docstring.
23061         (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
23062         with `define-obsolete-variable-alias'.
23063         (ibuffer-elide-long-columns): Mark as obsolete.  Doc fix.
23065 2005-07-29  Kenichi Handa  <handa@m17n.org>
23067         * international/mule-cmds.el (select-message-coding-system):
23068         Be sure to use LF for end-of-line.  If no coding system is decided,
23069         return iso-8859-1-unix.
23071 2005-07-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23073         * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
23074         (ange-ftp-pending-error-line): New vars.
23075         (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
23076         to handle the non-fatal no-route-to-host messages.
23077         (internal-ange-ftp-mode): Make the no-match regexp more efficient.
23079 2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
23081         * isearch.el (isearch-mode-map, isearch-other-meta-char)
23082         (isearch-quote-char, isearch-printing-char)
23083         (isearch-text-char-description): "?\ " -> "?\s".
23084         (isearch-lazy-highlight-cleanup)
23085         (isearch-lazy-highlight-initial-delay)
23086         (isearch-lazy-highlight-interval)
23087         (isearch-lazy-highlight-max-at-a-time)
23088         (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
23089         Declare with define-obsolete-*-alias macros.
23090         (isearch-forward): Fix typo in docstring.
23091         (search-invisible, search-ring-yank-pointer)
23092         (regexp-search-ring-yank-pointer): Doc fixes.
23094         * recentf.el (recentf-menu-append-commands-p): Declare with
23095         `define-obsolete-variable-alias'.
23096         (recentf-max-saved-items, recentf-menu-filter)
23097         (recentf-arrange-by-rule-subfilter): Doc fixes.
23098         (recentf-menu-append-commands-flag)
23099         (recentf-initialize-file-name-history, recentf-expand-file-name)
23100         (recentf-clear-data): Fix typos in docstrings.
23102 2005-07-28  Nick Roberts  <nickrob@snap.net.nz>
23104         * progmodes/gdb-ui.el: Smarten comments.
23105         (gdb-info-breakpoints-custom): Use nowarn when finding file.
23107 2005-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
23109         * term/apollo.el (terminal-init-apollo): New function containing
23110         all former top level forms in the file.
23111         * term/bobcat.el (terminal-init-bobcat):
23112         * term/cygwin.el (terminal-init-cygwin):
23113         * term/iris-ansi.el (terminal-init-iris-ansi):
23114         * term/linux.el (terminal-init-linux):
23115         * term/news.el (terminal-init-news):
23116         * term/rxvt.el (terminal-init-rxvt):
23117         * term/sun.el (terminal-init-sun):
23118         * term/tvi970.el (terminal-init-tvi970):
23119         * term/vt100.el (terminal-init-vt100):
23120         * term/vt102.el (terminal-init-vt102):
23121         * term/vt125.el (terminal-init-vt125):
23122         * term/vt200.el (terminal-init-vt200):
23123         * term/vt201.el (terminal-init-vt201):
23124         * term/vt220.el (terminal-init-vt220):
23125         * term/vt240.el (terminal-init-vt240):
23126         * term/vt300.el (terminal-init-vt300):
23127         * term/vt320.el (terminal-init-vt320):
23128         * term/vt400.el (terminal-init-vt400):
23129         * term/vt420.el (terminal-init-vt420):
23130         * term/wyse50.el (terminal-init-wyse50):
23131         * term/xterm.el (terminal-init-xterm): Likewise.
23133         * term/README: Describe the terminal-init-* functionality.
23135         * startup.el (command-line): After loading the terminal initialization
23136         file call the corresponding terminal initialization function.
23138 2005-07-27  Kenichi Handa  <handa@m17n.org>
23140         * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
23141         negative.
23143         * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
23144         (ps-mule-composition-prologue): Fix for the case that
23145         RelativeCompose is false.
23147 2005-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
23149         * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
23151         * descr-text.el (describe-char): Handle the case where the list of
23152         chars is displayed in a separate frame.
23153         Be a bit more discriminating when looking for the char.
23155 2005-07-26  Juanma Barranquero  <lekktu@gmail.com>
23157         * bookmark.el (bookmark-automatically-show-annotations)
23158         (bookmark-read-annotation-text-func): Doc fixes.
23159         (bookmark-save): Improve argument/docstring consistency.
23160         (bookmark-get-bookmark, bookmark-get-bookmark-record)
23161         (bookmark-alist-from-buffer)
23162         (bookmark-upgrade-file-format-from-0)
23163         (bookmark-grok-file-format-version)
23164         (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
23165         (bookmark-read-annotation-mode)
23166         (bookmark-insert-current-bookmark, bookmark-jump)
23167         (bookmark-exit-hook): Fix typos in docstrings.
23168         (bookmark-exit-hooks): Define as obsolete alias.
23169         (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
23170         not `bookmark-exit-hooks'.  Fix docstring.
23171         (bookmark-bmenu-select): "?\ " -> "?\s".
23173 2005-07-25  Ari Roponen  <arjuropo@cc.jyu.fi>  (tiny change)
23175         * startup.el (command-line): Fix typo.
23177 2005-07-24  Richard M. Stallman  <rms@gnu.org>
23179         * tooltip.el (tooltip-mode): Test emacs-basic-display,
23180         not emacs-quick-startup.
23182 2005-07-24  Juanma Barranquero  <lekktu@gmail.com>
23184         * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
23185         (reb-next-match, reb-show-subexp): Use `with-selected-window'
23186         instead of `reb-with-current-window'.
23187         (reb-prev-match): Likewise.  Also, don't move left if the search
23188         was unsuccessful.
23189         (reb-initialize-buffer): New function.
23190         (re-builder, reb-change-syntax): Use it.
23192         * man.el (Man-goto-page): Make second argument NOERROR optional.
23194 2005-07-23  Richard M. Stallman  <rms@gnu.org>
23196         * man.el (Man-bgproc-sentinel): Check here for failure to find
23197         any man page in the output, and report the error here.
23198         (Man-arguments): Make it permanent local.
23199         (Man-goto-page): New arg NOERROR.  Never kill the current buffer.
23200         (Man-mode): Pass t for NOERROR.
23202         * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
23203         (grep-mode-font-lock-keywords):
23204         Don't use compilation-...-face for messages that are not file names.
23206         * progmodes/compile.el (compilation-mode-font-lock-keywords):
23207         Don't use compilation-...-face for messages that are not file names.
23209 2005-07-22  Juri Linkov  <juri@jurta.org>
23211         * startup.el (normal-splash-screen): Update menu name.
23213         * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
23215 2005-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
23217         * term/xterm.el: Load term/rxvt if the terminal is actually an
23218         rxvt terminal.
23219         (xterm-rxvt-set-background-mode): Remove, not used anymore.
23221         * term/rxvt.el (function-key-map): Use substitute-key-definition
23222         to bind {C,S,C-S}-{f1-f10}.  Add a few missing key bindings.
23224         * term/cygwin.el: New file.
23226 2005-07-22  Kim F. Storm  <storm@cua.dk>
23228         * image-file.el (insert-image-file, image-file-yank-handler):
23229         Fix last change to maintain a (unique) yank-handler on yanked images.
23231 2005-07-22  Eduardo Mu\e,Aq\e(Boz  <emufer@terra.es>  (tiny change)
23233         * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
23234         of the file size (as in "177B" for 177 bytes).  This happens with
23235         "ls -lh" on FreeBSD.
23237 2005-07-22  Juanma Barranquero  <lekktu@gmail.com>
23239         * hilit-chg.el (highlight-changes-global-initial-state)
23240         (highlight-compare-buffers, hilit-chg-turn-on-maybe)
23241         (hilit-chg-fixup, highlight-changes-mode):
23242         Fix typos in docstrings.
23243         (highlight-changes-global-modes, highlight-changes-rotate-faces):
23244         Doc fixes.
23246 2005-07-21  Luc Teirlinck  <teirllm@auburn.edu>
23248         * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
23249         mode function using `eval-after-load'.
23251 2005-07-21  Kim F. Storm  <storm@cua.dk>
23253         * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
23254         included when reporting an Emacs crash, and tell about the DEBUG file.
23256         * image-file.el (insert-image-file): Add yank-handler.
23257         (image-file-yank-handler): Yank handler to make unique copies of
23258         images when they are yanked into a buffer next to each other.
23260 2005-07-21  Juanma Barranquero  <lekktu@gmail.com>
23262         * comint.el (comint-use-prompt-regexp, comint-send-input)
23263         (comint-source-default, comint-extract-string)
23264         (comint-get-source, comint-word, comint-completion)
23265         (comint-source, comint-prompt-read-only, comint-update-fence):
23266         Fix typos in docstrings.
23267         (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
23268         Declare with define-obsolete-*-alias macros.
23269         (comint-previous-matching-input-from-input)
23270         (comint-next-matching-input-from-input)
23271         (comint-previous-matching-input, comint-next-matching-input)
23272         (comint-forward-matching-input):
23273         Improve argument/docstring consistency.
23275         * desktop.el (desktop-clear-preserve-buffers-regexp):
23276         Also preserve the *server* buffer.
23278         * simple.el (clone-indirect-buffer): Doc fix.
23279         (fixup-whitespace, just-one-space)
23280         (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
23281         (next-error, next-error-highlight)
23282         (next-error-highlight-no-select, next-error-last-buffer)
23283         (next-error-buffer-p, next-error-find-buffer, next-error)
23284         (previous-error, next-error-no-select, previous-error-no-select)
23285         (open-line, split-line, minibuffer-prompt-width, kill-new)
23286         (binary-overwrite-mode): Fix typos in docstrings.
23287         (set-fill-column): Fix typo in message.
23289         * skeleton.el (skeleton-proxy-new): Doc fix.
23291         * strokes.el (strokes-load-hook): Doc fix.
23292         (strokes-grid-resolution, strokes-get-grid-position)
23293         (strokes-renormalize-to-grid, strokes-read-stroke)
23294         (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
23295         (strokes-global-map): Fix typos in docstrings.
23296         (strokes-help): Doc fix.  Fix help message and pass it through
23297         `substitute-command-keys'.
23299         * tempo.el (tempo-insert-prompt, tempo-interactive)
23300         (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
23301         (tempo-insert-string-functions, tempo-local-tags)
23302         (tempo-define-template, tempo-insert-template)
23303         (tempo-insert-prompt-compat, tempo-is-user-element)
23304         (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
23305         Fix typos in docstrings.
23307         * vcursor.el (vcursor-other-window, vcursor-bind-keys)
23308         (vcursor-key-bindings, vcursor-use-vcursor-map)
23309         (vcursor-find-window, vcursor-scroll-down)
23310         (vcursor-disable, vcursor-beginning-of-buffer)
23311         (vcursor-end-of-buffer): Fix typos in docstrings.
23312         (vcursor-relative-move, vcursor-get-char-count):
23313         Improve argument/docstring consistency.
23315         * version.el: "?\ " -> "?\s".
23317         * wid-edit.el (widget-default-create, widget-after-change)
23318         (widget-default-format-handler, widget-checklist-add-item)
23319         (widget-radio-add-item, widget-choose, widget-specify-secret)
23320         (widget-field-value-create, widget-field-value-get)
23321         (widget-editable-list-format-handler)
23322         (widget-editable-list-entry-create, widget-group-value-create)
23323         (widget-documentation-link-add)
23324         (widget-documentation-string-value-create): "?\ " -> "?\s".
23325         (widget-convert-text): Doc fix.
23326         (widget-narrow-to-field, widget-field-find)
23327         (widget-url-link-action, widget-emacs-library-link-action)
23328         (widget-color-notify): Fix typos in docstrings.
23330         * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
23331         (x-select-text, set-w32-system-coding-system)
23332         (w32-add-charset-info): Fix typos in docstrings.
23334         * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
23335         (cua-enable-cua-keys, cua-use-hyper-key)
23336         (cua-virtual-rectangle-edges): Fix typos in docstrings.
23337         (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
23339         * net/tramp.el (tramp-handle-load): Fix typo in error message.
23341         * emacs-lisp/re-builder.el (regexp-builder): Declare with
23342         `defalias' instead of faking it.
23344         * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
23345         (eshell-ls-missing, eshell-ls-dired-initial-args)
23346         (eshell-ls-use-in-dired): Fix typos in docstrings.
23348 2005-07-20  Kim F. Storm  <storm@cua.dk>
23350         * emulation/cua-base.el (cua-mode): Improve doc string.
23352 2005-07-20  Juanma Barranquero  <lekktu@gmail.com>
23354         * abbrev.el (expand-region-abbrevs): Doc fix.
23355         (inverse-add-mode-abbrev, inverse-add-global-abbrev):
23356         Improve argument/docstring consistency.
23358         * arc-mode.el (archive-get-descr, archive-alternate-display):
23359         Doc fixes.
23360         (archive-l-e): Improve argument/docstring consistency.
23361         (archive-tmpdir, archive-unixdate, archive-unixtime)
23362         (archive-chmod-entry): Fix typos in docstrings.
23363         (archive-unflag, archive-unflag-backwards)
23364         (archive-unmark-all-files): "?\ " -> "?\s".
23366         * buff-menu.el (Buffer-menu-unmark): Doc fix.
23367         (Buffer-menu-not-modified, Buffer-menu-execute)
23368         (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
23369         (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
23371         * composite.el (compose-string, encode-composition-rule)
23372         (compose-last-chars): Fix typos in docstrings.
23374         * desktop.el (desktop-enable, desktop-basefilename):
23375         Declare with `define-obsolete-variable-alias'.
23376         (desktop-internal-v2s): Don't quote keywords.
23377         (desktop-clear): "?\ " -> "?\s".
23379         * dired.el (dired-align-file, dired-flag-backup-files)
23380         (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
23381         (dired-listing-switches, dired-ls-F-marks-symlinks)
23382         (dired-dwim-target, dired-load-hook, dired-mode-hook)
23383         (dired-directory, dired-faces, dired, dired-revert)
23384         (dired-mode, dired-summary, dired-view-file)
23385         (dired-copy-filename-as-kill, dired-delete-file)
23386         (dired-no-confirm, dired-unmark-all-marks)
23387         (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
23388         (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
23389         (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
23390         Fix typos in message strings.
23392         * dired-x.el (virtual-dired): Declare with `defalias'.
23393         (dired-mark-unmarked-files, dired-local-variables-file)
23394         (dired-omit-here-always): Doc fix.
23395         (dired-omit-mode, dired-find-subdir)
23396         (dired-enable-local-variables, dired-clean-up-buffers-too)
23397         (dired-extra-startup, dired-mark-extension, dired-jump)
23398         (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
23399         (dired-smart-shell-command, dired-guess-shell-alist-user)
23400         (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
23401         (dired-x-bind-find-file, dired-x-submit-report):
23402         Fix typos in docstrings.
23403         (dired-mark-unmarked-files): "?\ " -> "?\s".
23405         * dirtrack.el (dirtrack-list): Fix typos in docstring.
23407         * faces.el (describe-face): "?\ " -> "?\s".
23408         (read-all-face-attributes, read-face-font, modify-face)
23409         (face-attr-construct, italic): Fix typos in docstrings.
23410         (frame-update-face-colors): Declare with
23411         `define-obsolete-function-alias'.
23413         * files.el (find-file-noselect, recode-file-name): Doc fixes.
23414         (insert-directory, kill-some-buffers): "?\ " -> "?\s".
23415         (magic-mode-alist, buffer-file-numbers-unique)
23416         (write-file-functions, get-free-disk-space):
23417         Fix typos in docstrings.
23418         (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
23419         (write-contents-hooks, write-file-hooks):
23420         Declare with `define-obsolete-variable-alias'.
23422         * forms-d2.el (arch-rj): Fix typo in docstrings.
23423         (arch-tocol): Likewise.  "?\ " -> "?\s".
23425         * frame.el (set-frame-font, cursor-in-non-selected-windows):
23426         Fix typo in docstring.
23427         (set-screen-width, set-screen-height): Delete redundant info in
23428         doctrings.
23429         (new-frame, screen-height, screen-width): Declare with
23430         `define-obsolete-function-alias'.
23431         (delete-frame-hook, blink-cursor): Declare with
23432         `define-obsolete-variable-alias'.
23434         * paths.el (prune-directory-list): Fix typos in docstring.
23436         * pcvs-util.el (cvs-flags-query, cvs-strings->string)
23437         (cvs-prefix-get): Fix typos in docstrings.
23439         * ps-print.el (ps-extend-face-list, ps-extend-face)
23440         (ps-print-background-image): Fix typos in docstrings.
23441         (ps-default-fg, ps-default-bg): Doc fixes.
23443         * s-region.el (s-region-bind): Doc fix.
23444         (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
23446         * textmodes/org.el (org-table-formula-substitute-names)
23447         (org-table-get-vertical-vector): Doc fixes.
23448         (org-table-recalculate): Remove unused argument to `message'.
23450 2005-07-19  Carsten Dominik  <dominik@science.uva.nl>
23452         * textmodes/org.el (org-table-column-names)
23453         (org-table-column-name-regexp)
23454         (org-table-named-field-locations): New variables.
23455         (org-archive-subtree): Protect `this-command' when calling
23456         `org-copy-subtree' and `org-cut-subtree', to avoid appending to
23457         the kill buffer.
23458         (org-complete): Remove fixed-formula completion.
23459         (org-edit-formulas-map): New variable.
23460         (org-table-edit-formulas): New command.
23461         (org-finish-edit-formulas, org-abort-edit-formulas)
23462         (org-show-variable, org-table-get-vertical-vector): New functions.
23463         (org-table-maybe-eval-formula): Handle `:=' fields.
23464         (org-table-get-stored-formulas, org-table-store-formulas)
23465         (org-table-get-formula, org-table-modify-formulas)
23466         (org-table-replace-in-formulas): Handle named field formulas.
23467         (org-table-get-specials): Store locations of named fields.
23469 2005-07-19  Juri Linkov  <juri@jurta.org>
23471         * progmodes/grep.el (grep-regexp-alist)
23472         (grep-mode-font-lock-keywords, grep-process-setup):
23473         Use default GNU grep match color "01;31m" instead of "01;41m".
23474         (grep-regexp-alist, grep-mode-font-lock-keywords):
23475         Use `\\[[0-9]*m' instead of `\\[00m'.
23476         (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
23477         sgr_start where its handling is more important.  Use the real
23478         length of sgr_start instead of constant 8.
23479         (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
23480         specially.  Delete all remaining escape sequences.
23481         (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
23482         (grep-regexp-alist): Make hyperlink only for binary file name
23483         instead of the whole line.
23484         (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
23485         (grep-mode): Add autoload.
23487         * emacs-lisp/find-func.el (find-function-regexp):
23488         Add `define-compilation-mode'.
23490 2005-07-19  Juri Linkov  <juri@jurta.org>
23492         * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
23493         (compare-windows-sync-string-size, compare-windows-recenter)
23494         (compare-windows-highlight, compare-windows): Add version 22.1.
23495         (compare-windows) <defface>: Inherit from lazy-highlight instead
23496         of duplicating its default value.
23498         * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
23499         (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
23501         * descr-text.el (describe-char): Create link buttons for `charset'
23502         and `code point'.  Add the current input method name with a link
23503         button to `to input' field.  Print face names of display table
23504         characters in `The display table entry is displayed by' section
23505         instead of printing face-id in the `display' field.
23506         Guess hardcoded faces and create a link button for them.
23507         Skip empty fields when calculating max-width.
23508         Treat `widget-create' specially while inserting strings from the
23509         collected field list.
23510         (describe-char-after): Made obsolete in version 22.1, not 21.5.
23512         * diff-mode.el (diff-file-header): Change foreground color from
23513         yellow to green on light backgrounds.
23514         (diff-context): Inherit from `shadow' only for color/grayscale
23515         with more than 88 colors.
23516         (diff-indicator-removed, diff-indicator-added)
23517         (diff-indicator-changed): New faces.
23518         (diff-font-lock-keywords): Use new faces.  Regroup rules.
23519         Add "^---$" for `normal' diff format.  Fontify `#' lines with
23520         font-lock-comment-delimiter-face and font-lock-comment-face.
23521         Add `#' to ^[^...] in the rule for `diff-context-face'.
23523         * faces.el (mode-line-highlight): Replace RoyalBlue4 with
23524         a button-like box.  Inherit from `highlight' on low colors.
23525         (shadow): Use shades of gray only for color/grayscale with
23526         more than 88 colors.  Use green for light backgrounds with
23527         8 colors, and yellow for dark backgrounds with 8 colors.
23529         * font-lock.el (font-lock-regexp-grouping-backslash):
23530         Don't inherit from escape-glyph (use bold for all cases).
23532         * info.el (info-xref-visited): Use light foreground color `violet'
23533         for dark backgrounds instead of dark color `magenta3'.
23534         (info-title-1): Use `yellow' color for dark backgrounds.
23536         * isearch.el (isearch): Use not-too-dark magenta3 instead of
23537         too-light magenta2.
23539         * replace.el (match): Use slightly more light RoyalBlue3 instead
23540         of dark RoyalBlue4.
23542         * wid-edit.el (widget-inactive): Inherit from `shadow'.
23544 2005-07-19  Juanma Barranquero  <lekktu@gmail.com>
23546         * novice.el (disabled-command-hook): Declare it with
23547         `define-obsolete-variable-alias'.
23549         * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
23550         (desktop-buffer-misc-functions, desktop-buffer-handlers)
23551         (desktop-load-default): Add release to obsolescence info.
23552         (desktop-globals-to-clear, desktop-buffer-mode-handlers)
23553         (desktop-append-buffer-args, desktop-read):
23554         Fix typos in docstrings.
23555         (desktop-kill): Fix typo in message.
23556         (desktop-save): Doc fix.
23558 2005-07-19  Michael Kifer  <kifer@cs.stonybrook.edu>
23560         * viper-cmd.el (viper-escape-to-state): Bug fix.
23561         (viper-envelop-ESC-key): Change the definition of fast
23562         keysequence so it'll work with keyboard macros.
23564         * ediff.el (ediff-patch-buffer): Change the docstring.
23566 2005-07-19  Kenichi Handa  <handa@m17n.org>
23568         * international/mule-cmds.el (select-safe-coding-system): Try to
23569         use an auto-coding (if any) before anything else.  If the found
23570         auto-coding is invalid, show a warning message.
23572         * international/mule.el (find-auto-coding): New function created
23573         by modifying the body of set-auto-coding.
23574         (set-auto-coding): Use find-auto-coding to find a coding.
23576 2005-07-18  Richard M. Stallman  <rms@gnu.org>
23578         * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
23579         not isearch-mode-end-hook-error.
23580         (allout-before-change-protect): Fix error message.
23582 2005-07-18  Juri Linkov  <juri@jurta.org>
23584         * allout.el (allout-mode):
23585         * calculator.el (calculator-copy):
23586         * custom.el (custom-known-themes):
23587         * dired.el (dired-desktop-buffer-misc-data)
23588         (dired-restore-desktop-buffer):
23589         * dired-x.el (dired-omit-marker-char):
23590         * files.el (basic-save-buffer):
23591         * font-core.el (font-lock-mode):
23592         * calendar/calendar.el (calendar-goto-hebrew-date)
23593         (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
23594         (calendar-goto-persian-date):
23595         * language/ethio-util.el (ethio-sera-to-fidel-region):
23596         * textmodes/picture.el (picture-mode):
23597         Delete duplicate duplicate words.
23599 2005-07-18  Juri Linkov  <juri@jurta.org>
23601         * isearch.el (isearch-mode-map): Remove key bindings for regexp
23602         chars * ? } |.
23603         (isearch-fallback): Don't call `isearch-process-search-char'.
23604         (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
23605         (isearch-process-search-char): Call `isearch-fallback' for regexp
23606         chars * ? } |.
23607         (isearch-return-char): Make obsolete with `make-obsolete' instead
23608         of simply documenting it as obsolete in the docstring.
23609         (isearch-fallback): Refill docstring.
23611         * international/isearch-x.el
23612         (isearch-process-search-multibyte-characters): Remove unneeded
23613         `concat'.  Add intermediate values to `junk-hist' instead of
23614         `minibuffer-history'.  Test the length of `str'.
23616 2005-07-18  Juanma Barranquero  <lekktu@gmail.com>
23618         * allout.el (allout-resolve-xref): Fix typos in error strings.
23619         (allout-before-change-protect): Remove unneeded `concat'.
23621         * array.el (array-mode, array-reconfigure-rows)
23622         (untabify-backward): Fix typos in docstrings.
23623         (array-reconfigure-rows): Use `insert-buffer-substring', not
23624         `insert-buffer'.
23626         * calendar/icalendar.el (icalendar--get-unfolded-buffer):
23627         * progmodes/ada-mode.el (ada-make-body):
23628         Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
23630         * dired.el (dired-log):
23631         * tar-mode.el (tar-subfile-save-buffer):
23632         * play/zone.el (zone-pgm-stress-destress):
23633         Use `insert-buffer-substring', not `insert-buffer'.
23635 2005-07-17  Simon Josefsson  <jas@extundo.com>
23637         * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
23639 2005-07-16  Jose E. Marchesi  <jemarch@gnu.org>
23641         * lisp/mail/smtpmail.el (smtpmail-auth-supported):
23642         Add plain auth method.
23643         (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
23645 2005-07-17  Kim F. Storm  <storm@cua.dk>
23647         * ido.el (dired-other-window): Add ido property.
23649 2005-07-16  Juanma Barranquero  <lekktu@gmail.com>
23651         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
23652         Fix typo in docstring.
23653         (byte-compile-interactive-only-functions): Add `insert-buffer' and
23654         `insert-file-literally'.
23656         * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
23657         info and delete redundant message.  Doc fix.
23658         (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
23659         (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
23661 2005-07-16  Richard M. Stallman  <rms@gnu.org>
23663         * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
23664         (byte-compile-and): Use byte-compile-and-recursion.
23665         (byte-compile-or-recursion): New function.
23666         (byte-compile-or): Use that.
23667         (byte-compile-if): Guard the else-clause too.
23668         (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
23670         * isearch.el (isearch-mode-end-hook-quit): New variable.
23671         (isearch-done): Bind it.
23672         (isearch-mode-end-hook): Doc fix.
23674         * allout.el (allout-isearch-did-quit): Variable deleted.
23675         (allout-real-isearch-abort): Function name no longer used.
23676         (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
23677         (allout-isearch-rectification): isearch-mode always exists.
23678         Don't set allout-isearch-did-quit.
23679         (allout-isearch-expose): Check isearch-mode-end-hook-error, not
23680         allout-isearch-did-quit.
23681         (allout-enwrap-isearch): Just add the hook.
23682         (allout-isearch-abort): Function deleted.
23683         (allout-pre-command-business): Avoid warning.
23685         * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
23686         Correctly avoid warnings.
23687         (pascal-outline): Likewise.
23689         * progmodes/f90.el (f90-abbrev-start): Avoid warning.
23691         * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
23693         * play/tetris.el (tetris-mode): Avoid warning.
23695         * play/snake.el (snake-mode): Avoid warning.
23697         * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
23698         (gamegrid-set-display-table): Avoid warning.
23699         (gamegrid-set-timer): Likewise.
23700         (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
23701         (gamegrid-add-score-with-update-game-score-1): Take FILE
23702         as argument.
23703         (gamegrid-add-score-with-update-game-score): Pass that argument.
23704         Rename have-shared-game-dir to gamegrid-shared-game-dir.
23706         * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
23708         * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
23709         (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
23711         * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
23712         and insert-file.
23714         * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
23715         (sc-ask): Avoid warnings.
23717         * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
23718         (eshell-hist-initialize): Use that var the natural way.
23720         * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
23722         * emacs-lisp/re-builder.el (reb-cook-regexp):
23723         Avoid warning calling lre-compile-string.
23724         (reb-color-display-p): Avoid warning.
23726         * calculator.el (calculator-last-input): Guard uses
23727         of event-key and key-press-event-p.
23728         (event-key, key-press-event-p): Delete definitions.
23730         * emacs-lisp/find-gc.el (find-gc-unsafe-list)
23731         (find-gc-source-directory, find-gc-subrs-callers)
23732         (find-gc-noreturn-list, find-gc-source-files)
23733         (find-gc-subrs-called): Vars renamed and defvar'd.
23735         * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
23736         (checkdoc-overlay-put, checkdoc-delete-overlay)
23737         (checkdoc-overlay-start, checkdoc-overlay-end)
23738         (checkdoc-mode-line-update, checkdoc-char=):
23739         Define such that compiler knows they are defined.
23740         (checkdoc-call-eval-buffer): Delete.  Use eval-buffer directly.
23741         (checkdoc-read-event): Delete.  Use read-event directly.
23743         * whitespace.el (whitespace-make-overlay)
23744         (whitespace-overlay-put, whitespace-delete-overlay)
23745         (whitespace-overlay-start, whitespace-overlay-end):
23746         Define such that compiler knows they are defined.
23747         (whitespace): Move conditional inside.
23749         * tempo.el (tempo-insert-template): Suppress warning.
23751         * ediff-diff.el (longlines-mode): Add defvar.
23753 2005-07-16  Gary Howell  <g1howell-list@yahoo.com>  (tiny change)
23755         * server.el: Bind "C-x #" in a way that works even if C-x is
23756         redefined to a command key, not a prefix key.
23758 2005-07-16  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>  (tiny change)
23760         * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
23761         cl-make-type-test till execution time.
23763 2005-07-16  Markus Rost  <rost@math.uni-bielefeld.de>
23765         * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
23766         arg ARG and use it.
23768 2005-07-16  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>  (tiny change)
23770         * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
23772 2005-07-15  Luc Teirlinck  <teirllm@auburn.edu>
23774         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
23775         a defcustom with two :set or :type keywords.
23777 2005-07-15  Richard M. Stallman  <rms@gnu.org>
23779         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
23780         Don't give ^M comment-end syntax.
23782 2005-07-16  Nick Roberts  <nickrob@snap.net.nz>
23784         * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
23785         Don't consider gdbmi (gdb-mi.el has its own update functions).
23786         (gdb-var-delete): Make it work for gdbmi as well.
23787         (gdb-speedbar-expand-node): Move var-update here for gdbmi.
23789         * progmodes/gud.el (etags, sdb): Only require etags when needed.
23790         (gud-speedbar-menu-items): Correct logic for enabling items.
23792 2005-07-15  Kim F. Storm  <storm@cua.dk>
23794         * ido.el: Fix commentary.
23795         (ido-define-mode-map): Move ido-next-work-file to C-M-o.
23796         Use with-no-warnings around ffap-guesser.
23797         (ido-file-internal, ido-read-file-name, ido-read-directory-name):
23798         Let bind minibuffer-completing-file-name to t.
23800 2005-07-15  Juanma Barranquero  <lekktu@gmail.com>
23802         * startup.el (site-run-file, keyboard-type): Doc fixes.
23803         (command-line): Check for "--basic-display" argument; also for
23804         "--quick", not "--bare-bones" (which was renamed).
23805         (fancy-splash-text): Add missing item "Getting New Versions".
23806         (normal-splash-screen): Fix typos and improve consistency with
23807         `fancy-splash-text'.  Update copyright year.
23809         * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
23810         valid binding for `help-char'.
23812         * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
23814 2005-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
23816         * term.el (term-mode): Disable cua-mode for term buffers.
23818 2005-07-14  Juanma Barranquero  <lekktu@gmail.com>
23820         * add-log.el (add-log-mailing-address, change-log-merge):
23821         Doc fixes.
23822         (change-log-get-method-definition): Fix typo in docstring.
23824 2005-07-14  Kim F. Storm  <storm@cua.dk>
23826         * emulation/cua-base.el:
23827         (cua--pre-command-handler-1, cua--pre-command-handler)
23828         (cua--post-command-handler-1, cua--post-command-handler):
23829         Split in two.  Check (buffer local) value of cua-mode.
23830         (cua-selection-mode): New command.
23832 2005-07-13  Luc Teirlinck  <teirllm@auburn.edu>
23834         * custom.el (custom-initialize-safe-set)
23835         (custom-initialize-safe-default): Doc fixes.
23837         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
23838         and simplify :init-value again.
23840         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
23841         and simplify :init-value again.  Delete autoload.
23843         * startup.el (command-line): Use `custom-reevaluate-setting' again
23844         for tooltip-mode.
23846         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
23847         a defcustom with two :initialize keywords.
23849 2005-07-13  Juanma Barranquero  <lekktu@gmail.com>
23851         * allout.el (my-mark-marker, allout-isearch-prior-pos)
23852         (allout-unprotected, allout-undo-aggregation, allout-snug-back)
23853         (allout-post-command-business, allout-flag-region)
23854         (isearch-reenable-font-lock, allout-yank)
23855         (allout-insert-latex-header, allout-insert-latex-trailer)
23856         (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
23857         (allout-latex-verb-quote): Fix typos in docstrings.
23858         (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
23859         (allout-unprotected, allout-prefix-data):
23860         Improve argument/docstring consistency.
23861         (allout-chart-subtree): Fix argument spec.
23862         (allout-open-topic): Rename `use_sib_bullet' argument to
23863         `use-sib-bullet'.  Doc fix.
23865         * whitespace.el (whitespace-check-buffer-leading)
23866         (whitespace-check-buffer-trailing)
23867         (whitespace-check-buffer-indent)
23868         (whitespace-check-buffer-spacetab)
23869         (whitespace-check-buffer-ateol, whitespace-highlighted-space)
23870         (whitespace-check-leading-whitespace)
23871         (whitespace-check-trailing-whitespace)
23872         (whitespace-check-spacetab-whitespace)
23873         (whitespace-check-indent-whitespace)
23874         (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
23875         (whitespace-modes): Fix typos in docstrings.
23876         (defgroup, defcustom): Doc fixes.
23878         * winner.el (winner-mode, winner-boring-buffers)
23879         (winner-pending-undo-ring): Doc fixes.
23880         (winner-ring): Remove unneeded `progn'.
23881         (winner-equal): `defsubst' it.
23882         (winner-redo): Fix message.
23884 2005-07-13  Kim F. Storm  <storm@cua.dk>
23886         * simple.el (line-move-1): Always use vertical-motion to
23887         do the last (or only) line move to ensure some movement.
23888         Undo 2005-06-23 change--don't check for overlays.
23890 2005-07-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23892         * term/mac-win.el (ccl-encode-mac-roman-font)
23893         (ccl-encode-mac-centraleurroman-font)
23894         (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
23895         (ccl-encode-mac-dingbats-font): Remove check for ASCII.
23896         Change charset-id boundary of dimension to ?\xef.
23897         (mac-char-fontspec-list): New constant.
23898         (fontset-add-mac-fonts): Use it.  Accept non-string `base-family'
23899         argument.  Nil uses itself as family in font-spec.  Previous
23900         behavior for nil is now provided by non-nil non-string argument.
23901         All callers changed.  Add font-specs for Mac fonts to
23902         "fontset-default" unless iso8859-1 fonts are installed.
23904 2005-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23906         * progmodes/sh-script.el (sh-get-indent-info): Only indent
23907         a continuation line if the \ is preceded by SPC or TAB.
23908         (sh-get-indent-info): Simplify.
23909         (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
23910         Use with-current-buffer.
23912         * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
23913         when the matched text is empty.
23915 2005-07-12  Luc Teirlinck  <teirllm@auburn.edu>
23917         * startup.el (command-line): Revert to previous handling of
23918         tooltip-mode.  Explain in comment why the complexity is needed.
23920         * tooltip.el (tooltip-mode): Revert to previous implementation of
23921         its defcustom.
23923         * frame.el (blink-cursor-mode): Revert to previous implementation
23924         of its defcustom.  Update comment.
23926 2005-07-12  Lars Hansen  <larsh@soem.dk>
23928         * desktop.el: Update e-mail address.
23930 2005-07-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23932         * term/mac-win.el (mac-services-mail-selection)
23933         (mac-services-mail-to): New functions.
23934         (mac-application-menu-map): Bind them.
23936 2005-07-12  wulei  <milton@wulei.net>  (tiny change)
23938         * progmodes/gdb-ui.el: Add note about buffering with Windows.
23940 2005-07-11  Luc Teirlinck  <teirllm@auburn.edu>
23942         * custom.el (custom-reevaluate-setting): Doc fix.
23944 2005-07-11  Jay Belanger  <belanger@truman.edu>
23946         * calc/calc.el (calc-embedded-announce-formula-alist)
23947         (calc-embedded-open-close-plain-alist)
23948         (calc-embedded-open-close-mode-alist): Add checks for additional
23949         major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
23951 2005-07-11  Juanma Barranquero  <lekktu@gmail.com>
23953         * custom.el (custom-enable-theme): Don't add theme to
23954         `custom-enabled-themes' with `push' because there is no
23955         setf-method for `delq'.
23957 2005-07-11  Richard M. Stallman  <rms@gnu.org>
23959         * custom.el (custom-declare-variable): Doc fix.
23961         * dired-aux.el (dired-compare-directories): Remove "." and ".."
23962         from the alists.
23964         * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
23965         Do nothing if edebug-active.
23967         * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
23968         (edebug-display): Do it here instead.
23970 2005-07-10  Richard M. Stallman  <rms@gnu.org>
23972         * cus-face.el (custom-theme-set-faces): Make it work.
23973         (custom-reset-faces): Doc fix.
23974         (custom-theme-reset-internal-face, custom-theme-face-value):
23975         Functions deleted.
23977         * custom.el (custom-push-theme): Maintain list of the settings
23978         of a given theme in its theme-settings property.
23979         Maintain position of old settings in the theme-value
23980         or theme-face property.
23981         (custom-enabled-themes): New variable.
23982         (custom-theme-enabled-p): New function.
23983         (provide-theme): Update custom-enabled-themes.
23984         Disable and reenable the `user' theme.
23985         (require-theme): Doc fix.
23986         (custom-do-theme-reset, custom-remove-theme): Functions deleted.
23987         (custom-theme-value, custom-theme-variable-value): Likewise.
23988         (custom-theme-reset-internal): Likewise.
23989         (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
23990         (custom-enable-theme, custom-disable-theme): New functions.
23991         (custom-variable-theme-value, custom-face-theme-value): Likewise.
23992         (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
23993         (custom-theme-reset-variables): Simplify.
23994         (deftheme, custom-declare-theme, custom-make-theme-feature):
23995         Definitions moved.
23997 2005-07-10  Chong Yidong  <cyd@stupidchicken.com>
23999         * longlines.el (longlines-show-region)
24000         (longlines-unshow-hard-newlines): Recognize hard newlines by
24001         non-nil hard property, instead of t.
24003 2005-07-10  Michael Kifer  <kifer@cs.stonybrook.edu>
24005         * viper-cmd.el (viper--key-maps): New variable.
24006         (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
24007         emulation-mode-map-alists.
24008         (viper-envelop-ESC-key): Use viper-subseq.
24009         (viper-search-forward/backward/next): Disable debug-on-error.
24011         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
24012         (viper-ESC-key): New defcustoms.
24014         * viper-macs.el (ex-map-read-args): Use viper-subseq.
24016         * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
24017         (viper-subseq): Copy of subseq from cl.el.
24019         * viper.el (viper-go-away, viper-set-hooks): Use
24020         emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
24022         * viper-mous.el (viper-current-frame-saved): Use defvar.
24024         * viper-init.el: Get rid of -face in face names.
24026         * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
24027         Make it work with longlines mode
24029         * ediff-mult.el (ediff-meta-mode-hook): New variable.
24031         * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
24033         * ediff-init.el: Get rid of -face in face names.
24035 2005-07-10  Richard M. Stallman  <rms@gnu.org>
24037         * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
24038         and with-timeout-unsuspend.
24040         * emacs-lisp/debug.el (debug): Call with-timeout-suspend
24041         and with-timeout-unsuspend.
24043         * emacs-lisp/timer.el (with-timeout-timers): New variable.
24044         (with-timeout): Bind that variable to record timers.
24045         (with-timeout-suspend, with-timeout-unsuspend): New functions.
24047         * emacs-lisp/debug.el (debug-help-follow): New function.
24048         (debugger-mode-map): Use that instead of help-follow.
24049         (debugger-setup-buffer): Use eval-buffer-list
24050         to handle eval-buffer frames.
24052 2005-07-10  N. Raghavendra  <raghu@mri.ernet.in>  (tiny change)
24054         * timezone.el (timezone-parse-date): Change first regexp
24055         so it will not mistakenly match dates with no time zone.
24057 2005-07-10  Jeff Dwork  <jeff.dwork@amd.com>  (tiny change)
24059         * facemenu.el (facemenu-read-color): Do case-insensitive matching.
24061 2005-07-10  Luc Teirlinck  <teirllm@auburn.edu>
24063         * custom.el (custom-initialize-safe-set)
24064         (custom-initialize-safe-default): New functions.
24066         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
24067         and simplify :init-value.
24069         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
24070         and simplify :init-value.  Delete obsolete comment.
24072         * startup.el (command-line): Use `custom-reevaluate-setting' to
24073         handle `tooltip-mode'.  Delete obsolete comment.
24075         * files.el (set-visited-file-name): Avoid calling
24076         `file-name-nondirectory' with a nil argument.
24078 2005-07-09  Richard M. Stallman  <rms@gnu.org>
24080         * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
24081         was called with nil for the buffer, handle the read position right.
24082         Handle read position for eval-region, too.
24084 2005-07-09  Juri Linkov  <juri@jurta.org>
24086         * fringe.el (fringe-mode): Add period in docstring.
24087         (fringe-query-style): Build prompt depending on `all-frames' arg.
24089         * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
24090         to not create links to unrelated functions in the Help buffer.
24092         * progmodes/compile.el (compilation-mode-hook, compilation-mode):
24093         Doc fix.
24095         * simple.el (next-error-hook): New variable.
24096         (next-error): Use it.  Doc fix.
24098         * textmodes/ispell.el (ispell-command-loop): Add current
24099         dictionary name and program name to mode-line-format.
24100         (ispell-region, ispell-process-line): Add current dictionary name
24101         and program name to messages.
24103 2005-07-08  Jay Belanger  <belanger@truman.edu>
24105         * calc/calc.el (calc-embedded-announce-formula-alist)
24106         (calc-embedded-open-close-formula-alist)
24107         (calc-embedded-open-close-word-alist)
24108         (calc-embedded-open-close-plain-alist)
24109         (calc-embedded-open-close-new-formula-alist)
24110         (calc-embedded-open-close-mode-alist)
24111         (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
24112         (calc-embedded-mode-hook): New variables.
24114         * calc/calc-embed.el (calc-embedded-firsttime)
24115         (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
24116         New variables.
24117         (calc-do-embedded): Use calc-embedded-firsttime,
24118         calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
24119         determine whether or not to run hooks.
24120         (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
24121         calc-embedded-firsttime-formula appropriately.
24122         Set calc-embedded delimiter variables according to mode.
24124 2005-07-08  Richard M. Stallman  <rms@gnu.org>
24126         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
24127         Check for "emacs", etc., as entire symbol, not just as word.
24128         (checkdoc-file-comments-engine): Use regexp-quote on FN.
24130         * files.el (set-visited-file-name): Report the error
24131         for "empty filename" earlier.
24132         (kill-some-buffers): Ignore buffers already dead.
24134         * fringe.el (fringe-mode): Doc fix.
24136         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
24137         Check for (featurep 'xemacs) and turn off warnings in what it guards.
24138         Use unwind-protect to ensure byte-compile-unresolved-functions
24139         is updated.
24141         * whitespace.el (whitespace-buffer-leading-cleanup):
24142         Simplify w/ skip-chars-forward.
24143         (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
24145         * mail/rmail.el (rmail-only-expunge): Fix paren error.
24146         Unconditionally try to leave point at the same old place.
24148 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>  (tiny change)
24150         * comint.el (comint-postoutput-scroll-to-bottom)
24151         (comint-show-maximum-output): Take scroll-margin into consideration.
24153 2005-07-08  Kim F. Storm  <storm@cua.dk>
24155         * ido.el (ido-use-filename-at-point): New choice `guess'.
24156         (ido-file-internal): Try ffap-guesser if selected.
24158         * ido.el (ido-before-fallback-functions): New hook.
24159         (ido-buffer-internal, ido-file-internal, ido-read-buffer)
24160         (ido-read-file-name): Run it.
24162 2005-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
24164         * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
24165         strings rather than a list of symbols to the completion function.
24167 2005-07-07  Jay Belanger  <belanger@truman.edu>
24169         * calc/calc-units.el (math-apply-units): Change the places in
24170         which units are simplified.
24172 2005-07-07  Luc Teirlinck  <teirllm@auburn.edu>
24174         * cus-edit.el (customize-option, customize-option-other-window):
24175         Make them handle aliases.
24177         * custom.el (custom-variable-p): Make it recursively follow
24178         aliases.  Mention that in the docstring.
24180 2005-07-07  Richard M. Stallman  <rms@gnu.org>
24182         * cus-start.el (exec-path): Use `directory' instead of `file'.
24183         Fix tag for nil.
24185 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
24187         * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
24188         when called non-interactively.  Doc fix.
24190 2005-07-07  Lute Kamstra  <lute@gnu.org>
24192         * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
24193         new address as well.
24195 2005-07-07  Kenichi Handa  <handa@m17n.org>
24197         * international/mule.el (make-coding-system):
24198         Describe `ascii-incompatible' property in the docstring.
24199         (set-file-name-coding-system): Signal an error if coding-system is
24200         ascii-incompatible.
24201         (set-keyboard-coding-system): Likewise.
24203         * international/mule-cmds.el (set-default-coding-systems):
24204         Don't set default-file-name-coding-system and
24205         default-keyboard-coding-system if coding-system is ASCII-incompatible.
24207         * international/utf-16.el: Declare that all UTF-16-based coding
24208         systems are ASCII-incompatible.
24210 2005-07-07  Nick Roberts  <nickrob@snap.net.nz>
24212         * progmodes/gud.el: Require font-lock for displaying errors.
24213         Used by gdb-ui.el.
24215 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
24217         * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
24218         values for the pattern lists which are `read'able but not
24219         `append'able (like symbols).
24221 2005-07-06  Richard M. Stallman  <rms@gnu.org>
24223         * progmodes/flymake.el (flymake-float-time): Instead of
24224         with-no-warnings, test for XEmacs.
24225         (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
24226         to avoid warning.
24228 2005-07-06  Juanma Barranquero  <lekktu@gmail.com>
24230         * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
24232 2005-07-05  Lute Kamstra  <lute@gnu.org>
24234         * battery.el: Add support for Darwin (with much debugging help
24235         from Samuel Lauber <sam124@operamail.com>).
24236         (battery-status-function, battery-echo-area-format)
24237         (battery-mode-line-format): Add support for pmset on Darwin.
24238         (battery-load-low, battery-load-critical): New user options.
24239         (battery-pmset): New function.
24241 2005-07-05  Lute Kamstra  <lute@gnu.org>
24243         Update FSF's address in GPL notices.
24245         * textmodes/page-ext.el: Update FSF's address.
24247 2005-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
24249         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
24250         filling from using prefix when filling a single-line docstring.
24252         * progmodes/flymake.el: Remove useless eval-when-compile.
24254         * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
24256 2005-07-04  Richard M. Stallman  <rms@gnu.org>
24258         * textmodes/org.el (org-file-apps-defaults-gnu):
24259         Rename from org-file-apps-defaults-linux.
24260         (org-default-apps): Don't test system-type for `linux'.
24261         (org-file-apps): Doc fix.
24263 2005-07-04  David Ponce  <david@dponce.com>
24265         * tree-widget.el: Improve header Commentary section.
24266         (tree-widget) [defgroup]
24267         (tree-widget-image-enable, tree-widget-themes-directory)
24268         (tree-widget-theme, tree-widget-image-properties-emacs)
24269         (tree-widget-image-properties-xemacs, tree-widget-create-image)
24270         (tree-widget-image-formats, tree-widget-control)
24271         (tree-widget-empty-control, tree-widget-leaf-control
24272         (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
24273         (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
24274         (tree-widget-keep, tree-widget-after-toggle-functions)
24275         (tree-widget-open-node, tree-widget-close-node): Doc fix.
24276         (tree-widget-open-control, tree-widget-close-control): Fix doc and
24277         :help-echo message.
24278         (tree-widget-set-theme): Doc fix.  Use `string-equal'.
24279         (tree-widget-image-properties): Doc fix.  Clearer implementation.
24280         (tree-widget--cursors): New constant.
24281         (tree-widget-lookup-image): New function split from
24282         `tree-widget-find-image'.  Clearer implementation.
24283         (tree-widget-find-image): Use it.
24284         (tree-widget-button-keymap): Use `set-keymap-parent'.
24285         (tree-widget) [define-widget]: Use `widget-children-value-delete'.
24286         Define the sub-widgets here.
24287         (tree-widget-node): Check that :node is not a tree-widget.
24288         (tree-widget-get-super, tree-widget-open-control)
24289         (tree-widget-close-control, tree-widget-empty-control)
24290         (tree-widget-leaf-control, tree-widget-guide)
24291         (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
24292         (tree-widget-no-handle, tree-widget-value-delete)
24293         (tree-widget-map): Remove.
24294         (tree-widget-children-value-save): Doc fix.  Simplified.
24295         (tree-widget-value-create): Update according to previous changes.
24297 2005-07-04  Carsten Dominik  <dominik@science.uva.nl>
24299         * textmodes/org.el: Leading space replaced by TABS.
24300         (org-recalc-marks, org-table-rotate-recalc-marks)
24301         (org-table-get-specials): Treat "^" and "_" marks.
24302         (org-table-justify-field-maybe): Optional argument NEW.
24303         (org-table-eval-formula): Parsing of the format simplified.
24304         New modes C,I.  Honor the %= parameter in the current table.
24305         Avoid unnecessary re-align by using the NEW argument to
24306         `org-table-justify-field-maybe'.
24307         (org-calc-default-modes): Default for date-format mimicks org-mode.
24308         (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
24310 2005-07-03  Luc Teirlinck  <teirllm@auburn.edu>
24312         * cus-face.el (custom-theme-set-faces): Make it handle face
24313         aliases whose alias declarations are pre- or autoloaded.
24315 2005-07-04  Juri Linkov  <juri@jurta.org>
24317         * faces.el (read-face-name): Put the code for getting a face name
24318         from the buffer before adding the faces from the `face' property.
24319         Use `completing-read-multiple' instead of `completing-read'.
24320         Require `crm'.  Add default value and post-process the returned
24321         list of faces.
24323         * emacs-lisp/crm.el (crm-find-current-element)
24324         (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
24326         * emacs-lisp/lisp-mode.el (eval-defun-1):
24327         * emacs-lisp/edebug.el (edebug-eval-defun):
24328         Remove unnecessary quotes.
24330 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
24332         * progmodes/prolog.el (prolog-eof-string): Doc fixes.
24333         (prolog-indent-level): Fix typo in docstring.
24335         * info.el (Info-history, Info-history-forward)
24336         (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
24338         * add-log.el (add-change-log-entry):
24339         * comint.el (comint-dynamic-list-input-ring)
24340         (comint-dynamic-list-completions):
24341         * dabbrev.el (dabbrev-expand):
24342         * delim-col.el (delimit-columns-rectangle-line):
24343         * diff-mode.el (diff-context->unified, diff-reverse-direction)
24344         (diff-unified->context):
24345         * ediff-init.el (ediff-abbrev-jobname):
24346         * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
24347         (ediff-replace-session-activity-marker-in-meta-buffer):
24348         * info.el (Info-summary):
24349         * lpr.el (printify-region):
24350         * printing.el (pr-create-interface):
24351         * ps-print.el (ps-print-quote):
24352         * ses.el (ses-column-widths, ses-print-cell)
24353         (ses-adjust-print-width, ses-center):
24354         * shell.el (shell-file-name-quote-list):
24355         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
24356         (strokes-fill-current-buffer-with-whitespace)
24357         (strokes-xpm-for-stroke, strokes-list-strokes)
24358         (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
24359         * term.el (term-dynamic-list-input-ring)
24360         (term-dynamic-list-completions):
24361         * calc/calc.el (math-format-stack-value):
24362         * emacs-lisp/edebug.el (edebug-display-freq-count):
24363         * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
24364         (delphi-new-comment-line):
24365         * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
24366         * progmodes/executable.el (executable-set-magic):
24367         * progmodes/python.el (inferior-python-mode):
24368         * progmodes/scheme.el (scheme-mode-syntax-table):
24369         * progmodes/sh-script.el (sh-maybe-here-document):
24370         * progmodes/sql.el (sql-copy-column):
24371         * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
24372         * textmodes/bibtex.el (bibtex-mode):
24373         * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
24374         (sgml-auto-attributes):
24375         * textmodes/table.el (table-insert, table-shorten-cell)
24376         (table--generate-source-scan-lines, table-delete-row)
24377         (*table--cell-delete-char, table--spacify-frame)
24378         (table--horizontally-shift-above-and-below)
24379         (table--cell-insert-char, table--cell-blank-str)
24380         (table--fill-region-strictly):
24381         * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
24382         * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
24384         * add-log.el (change-log):
24385         * apropos.el (apropos):
24386         * comint.el (comint-completion, comint-source):
24387         * dabbrev.el (dabbrev):
24388         * delim-col.el (columns):
24389         * diff-mode.el (diff-mode):
24390         * ediff.el (ediff):
24391         * ediff-diff.el (ediff-diff):
24392         * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
24393         * ediff-mult.el (ediff-mult):
24394         * ediff-ptch.el (ediff-ptch):
24395         * ediff-wind.el (ediff-window):
24396         * facemenu.el (facemenu):
24397         * indent.el (indent):
24398         * info.el (info):
24399         * jka-cmpr-hook.el (compression, jka-compr):
24400         * lpr.el (lpr):
24401         * outline.el (outlines):
24402         * pcmpl-cvs.el (pcmpl-cvs):
24403         * pcmpl-rpm.el (pcmpl-rpm):
24404         * printing.el (printing):
24405         * ps-print.el (postscript, ps-print, ps-print-horizontal)
24406         (ps-print-vertical, ps-print-headers, ps-print-font)
24407         (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
24408         (ps-print-background, ps-print-printer, ps-print-page)
24409         (ps-print-miscellany):
24410         * ses.el (ses):
24411         * shell.el (shell, shell-directories, shell-faces):
24412         * startup.el (initialization):
24413         * strokes.el (strokes):
24414         * term.el (term):
24415         * uniquify.el (uniquify):
24416         * w32-vars.el (w32):
24417         * calc/calc.el (calc):
24418         * emacs-lisp/bytecomp.el (bytecomp):
24419         * emacs-lisp/cl-indent.el (lisp-indent):
24420         * emacs-lisp/edebug.el (edebug):
24421         * emacs-lisp/elp.el (elp):
24422         * emacs-lisp/testcover.el (testcover):
24423         * emacs-lisp/trace.el (trace):
24424         * emulation/viper-ex.el (viper-ex):
24425         * emulation/viper-mous.el (viper-mouse):
24426         * mail/mailalias.el (mailalias):
24427         * mail/supercite.el (supercite, supercite-frames)
24428         (supercite-attr, supercite-cite, supercite-hooks):
24429         * net/rcompile.el (remote-compile):
24430         * net/rlogin.el (rlogin):
24431         * obsolete/ooutline.el (outlines):
24432         * progmodes/delphi.el (delphi):
24433         * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
24434         (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
24435         (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
24436         (ebnf-optimization):
24437         * progmodes/etags.el (etags):
24438         * progmodes/executable.el (executable):
24439         * progmodes/idlwave.el (idlwave):
24440         * progmodes/pascal.el (pascal):
24441         * progmodes/prolog.el (prolog):
24442         * progmodes/python.el (python):
24443         * progmodes/scheme.el (scheme):
24444         * progmodes/sh-script.el (sh, sh-script):
24445         * progmodes/sql.el (SQL):
24446         * progmodes/tcl.el (tcl):
24447         * textmodes/bibtex.el (bibtex, bibtex-autokey):
24448         * textmodes/enriched.el (enriched):
24449         * textmodes/makeinfo.el (makeinfo):
24450         * textmodes/sgml-mode.el (sgml):
24451         * textmodes/table.el (table-hooks):
24452         * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
24453         * textmodes/texinfo.el (texinfo):
24454         * textmodes/two-column.el (two-column):
24455         Finish `defgroup' description with period.
24457         * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
24458         * eshell/esh-var.el (eshell-var):
24459         * progmodes/vhdl-mode.el (vhdl-testbench):
24460         * textmodes/org.el (org): Fix typos in docstrings.
24462         * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
24463         consistency.
24465         * progmodes/flymake.el (flymake-find-file): Remove.
24466         (flymake-float-time): Use `with-no-warnings'.
24467         (flymake-check-start-time, flymake-check-was-interrupted)
24468         (flymake-err-info, flymake-is-running, flymake-last-change-time)
24469         (flymake-new-err-info): `defvar' at compile time.
24471 2005-07-03  Juanma Barranquero  <lekktu@gmail.com>
24473         * replace.el (occur-hook): Doc fix.
24474         (occur-1): Don't call `occur-hook' if there are no matches.
24476 2005-07-03  Richard M. Stallman  <rms@gnu.org>
24478         * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
24479         global-map, save the same map.
24480         (global-map): Don't alter it at top level.
24481         (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
24482         Then alter it here instead.
24483         (tpu-edt-off): Set global-map to the saved one.
24485         * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
24486         All references simplified.
24487         (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p.  Uses changed.
24488         (zmacs-regions): Add defvar.
24489         (repeat-complex-command-map): Everything about that deleted.
24491         * textmodes/artist.el (artist-key-is-drawing)
24492         (artist-key-endpoint1, artist-key-poly-point-list)
24493         (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
24494         (artist-key-compl-table, artist-rb-save-data)
24495         (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
24496         Don't put them in eval-when-compile.
24497         (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
24499         * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
24500         Use with-no-warnings.
24502         * net/browse-url.el (dos-windows-version): Add defvar.
24504         * mail/supercite.el (filladapt-prefix-table): Add defvar.
24506         * mail/rmailsum.el (rmail-summary-redo): Add defvar.
24507         (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
24508         (rmail-new-summary-line-count): Rename from new-summary-line-count.
24509         Add defvar.
24510         (rmail-summary-beginning-of-message): Use with-no-warnings.
24511         (rmail-summary-first-message, rmail-summary-last-message): Likewise.
24513         * emulation/vip.el (vip-replace-string, ex-map, ex-read):
24514         Use with-no-warnings.
24516         * emulation/vi.el (vi-mark-region): Use c-mark-function.
24517         (c-mark-function): Add point-moving-unit property.
24518         (vi-goto-line): Use with-no-warnings.
24520         * emulation/edt.el (edt-last-copied-word): Add defvar.
24521         (zmacs-region-stays): Likewise.
24522         (edt-mark-section-wisely): Use c-mark-function for C.
24523         Use makr-defun for Fortran.
24524         (time-string): defvar deleted.
24525         (edt-display-the-time): Don't set time-string.
24527         * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
24529         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
24530         Don't warn when name is not constant
24531         or for defining the group `emacs'.
24533         * tooltip.el (gud-tooltip-mode): Add defvar.
24535         * startup.el (default-frame-background-mode): Add defvar.
24537         * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
24539         * info.el (tool-bar-map): Add defvar.
24541         * dired.el (dnd-protocol-alist): Add defvar.
24543         * dired-aux.el (dired-query): Display question with answer, when
24544         the user answers.
24546         * custom.el (custom-add-option): Doc fix.
24548         * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
24550 2005-07-03  Eli Zaretskii  <eliz@gnu.org>
24552         * font-lock.el (font-lock-regexp-grouping-construct): Fix the
24553         bogus name from the last change.
24555 2005-07-02  Luc Teirlinck  <teirllm@auburn.edu>
24557         * custom.el (custom-declare-variable): Fix typos in comment.
24558         (custom-known-themes): Doc fix.
24559         (custom-theme-directory): New defcustom.
24560         (require-theme): Make it check `custom-theme-directory'.
24562         * cus-theme.el (custom-new-theme-mode): New function.
24563         (custom-theme-name, custom-theme-variables, custom-theme-faces)
24564         (custom-theme-description): Add compiler defvars.
24565         (customize-create-theme): Add doc to the "*New Custom Theme*"
24566         buffer.  Use `custom-new-theme-mode'.
24567         (custom-theme-write): Put the created buffer in emacs-lisp-mode
24568         and save it to the `custom-theme-directory'.  Make this the
24569         default directory of the buffer.
24571 2005-07-02  David Hunter  <hunterd_42@comcast.net>  (tiny change)
24573         * progmodes/flymake.el (flymake-mode, flymake-mode-off):
24574         Fix unbalanced parentheses.
24576 2005-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
24578         * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
24579         into flymake-mode and delegate to flymake-mode.
24581         * find-file.el (ff-which-function-are-we-in): Clean up.
24583 2005-07-02  Juanma Barranquero  <lekktu@gmail.com>
24585         * replace.el (occur-rename-buffer): Fix docstring.
24587         * emulation/edt.el (*EDT-keys*, edt-default-global-map)
24588         (edt-last-copied-word, edt-learn-macro-count)
24589         (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
24590         (edt-rect-start-point, edt-user-global-map, rect-start-point)
24591         (time-string, zmacs-region-stays):
24592         * emulation/edt-mapper.el (edt-save-function-key-map)
24593         (EDT-key-name): `defvar' to silence the byte-compiler.
24595 2005-07-02  Martin Rudalics  <rudalics@gmx.at>
24597         * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
24598         font-lock-regexp-backslash.  Doc fix.
24599         (font-lock-regexp-backslash-grouping-construct): Rename from
24600         font-lock-regexp-backslash-construct.  Doc fix.
24601         (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
24602         grouping constructs.
24604 2005-07-02  Eli Zaretskii  <eliz@gnu.org>
24606         * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
24607         updating all the prerequisites.
24609 2005-07-01  Juanma Barranquero  <lekktu@gmail.com>
24611         * textmodes/org.el (org-agenda-start-on-weekday)
24612         (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
24613         (org-agenda-use-time-grid, org-archive-location)
24614         (org-allow-space-in-links, org-usenet-links-prefer-google)
24615         (org-enable-table-editor, org-export-default-language)
24616         (org-export-html-show-new-buffer, org-fill-paragraph)
24617         (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
24618         (org-goto-quit, org-occur, org-eval-in-calendar)
24619         (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
24620         (org-agenda-diary-entry, org-remember-help)
24621         (org-table-convert-region, org-at-table-p)
24622         (org-table-move-row-down, org-table-move-row-up)
24623         (org-table-copy-region, org-table-toggle-vline-visibility)
24624         (org-table-get-stored-formulas, org-table-get-specials)
24625         (org-recalc-commands, org-table-eval-formula)
24626         (org-table-formula-substitute-names, orgtbl-make-binding)
24627         (org-format-org-table-html, org-format-table-table-html)
24628         (org-format-table-table-html-using-table-generate-source)
24629         (org-customize): Fix typos in docstrings.
24630         (org-level-2, org-at-timestamp-p, org-agenda-day-view)
24631         (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
24632         (org-back-to-heading): Doc fixes.
24633         (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
24634         (org-agenda-change-all-lines, org-get-header):
24635         Improve argument/docstring consistency.
24636         (orgtbl-error): Fix error message.
24638         * progmodes/flymake.el (flymake-find-possible-master-files)
24639         (flymake-master-file-compare, flymake-get-line-err-count)
24640         (flymake-highlight-line, flymake-gui-warnings-enabled):
24641         Fix typos in docstrings.
24642         (flymake-parse-line, flymake-get-project-include-dirs-function)
24643         (flymake-get-prev-err-line-no, flymake-goto-prev-error):
24644         Doc fixes.
24645         (flymake-get-project-include-dirs-function)
24646         (flymake-make-err-menu-data):
24647         Improve argument/docstring consistency.
24649 2005-07-01  Lute Kamstra  <lute@gnu.org>
24651         * battery.el (battery-linux-proc-apm): Fix typo in docstring.
24652         Catch errors with ignore-errors.  Use temporary buffer.
24653         (battery-linux-proc-acpi): Fix typo in docstring.  Document `%r'.
24655         * facemenu.el (facemenu-unlisted-faces): Delete foreground and
24656         background color faces.
24657         (facemenu-set-foreground, facemenu-set-background):
24658         Use facemenu-set-face-from-menu.
24659         (facemenu-set-face-from-menu): Treat face names that start with
24660         "fg:" or "bg:" as special.
24661         (facemenu-add-new-color): Don't create faces.  Simplify.
24663 2005-06-30  Richard M. Stallman  <rms@gnu.org>
24665         * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
24666         (crm-find-current-element): Likewise.
24668 2005-06-30  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
24670         * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
24672 2005-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
24674         * arc-mode.el (archive-extract): Make it work as a mouse binding.
24675         (archive-mouse-extract): Make it an obsolete alias.
24676         (archive-mode-map): Don't use archive-mouse-extract any more.
24677         (archive-mode, archive-extract): write-contents-hooks ->
24678         write-contents-functions.
24679         (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
24680         first arg.
24681         (archive-rename-entry): Update the call.
24682         (archive-zip-summarize): Remove unused var `method'.
24683         (archive-lzh-summarize): Remove unused var `creator'.
24685         * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
24686         dedicated frame upon exit.
24688         * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
24689         (archive-zip-extract, archive-zip-expunge)
24690         (archive-zip-update, archive-zip-update-case): Use executable-find.
24691         (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
24692         Use restore-buffer-modified-p.
24693         (archive-extract, archive-add-new-member, archive-write-file-member):
24694         Use with-current-buffer.
24695         (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
24697 2005-06-30  Andreas Schwab  <schwab@suse.de>
24699         * progmodes/gud.el (gud-filter): Remove unneeded progn.
24701 2005-06-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
24703         * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
24705 2005-06-30  Juri Linkov  <juri@jurta.org>
24707         * faces.el (vertical-border): Inherit from mode-line-inactive
24708         only on tty.
24710 2005-06-30  Juanma Barranquero  <lekktu@gmail.com>
24712         * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
24713         example, -NLINES in the `occur' docstring).
24715         * replace.el (occur-1): When no matches are found, do not set the
24716         `buffer-read-only' and modified flags for the occur buffer,
24717         because it is deleted.
24719         * emulation/cua-base.el (cua-check-pending-input)
24720         (cua-repeat-replace-region, cua-mode, cua-debug)
24721         (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
24722         Fix typos in docstrings.
24724         * emulation/cua-gmrk.el (cua-toggle-global-mark)
24725         (cua-cut-region-to-global-mark)
24726         (cua--cut-rectangle-to-global-mark):
24727         Remove period from end of messages.
24729         * emulation/cua-rect.el (cua-do-rectangle-padding):
24730         Remove period from end of messages.
24731         (cua--rectangle-seq-format): Fix typo in docstring.
24732         (cua-sequence-rectangle, cua-fill-char-rectangle):
24733         Improve argument/docstring consistency.
24735 2005-06-29  Juri Linkov  <juri@jurta.org>
24737         * faces.el (default-frame-background-mode): New internal variable.
24738         (frame-set-background-mode): Use it.
24740         * startup.el (normal-top-level): Set default-frame-background-mode
24741         instead of frame-background-mode.  Before setting it, test for its
24742         nil value.  Remove tests for frame-background-mode and frame
24743         parameter `reverse'.  Add test for "unspecified-fg".
24745         * term/xterm.el (xterm-rxvt-set-background-mode):
24746         * term/rxvt.el (rxvt-set-background-mode):
24747         Set default-frame-background-mode instead of frame-background-mode.
24749 2005-06-29  Juanma Barranquero  <lekktu@gmail.com>
24751         * simple.el (set-variable): Warn about obsolete user variables.
24753         * imenu.el (imenu--completion-buffer):
24754         * mouse.el (mouse-buffer-menu-alist):
24755         * msb.el (msb-invisible-buffer-p):
24756         * calendar/diary-lib.el (diary-header-line-format):
24757         * emacs-lisp/pp.el (pp-buffer):
24758         * progmodes/cperl-mode.el (cperl-do-auto-fill):
24759         * textmodes/picture.el (picture-replace-match):
24760         Change space constants followed by a sexp to "?\s ".
24762         * play/decipher.el (decipher-loop-with-breaks):
24763         * textmodes/texinfo.el (texinfo-insert-@item): Change space
24764         constants "protected" from end of line by a comment to "?\s".
24766 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
24768         * font-lock.el (save-buffer-state): Use `declare'.
24770         * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
24771         reset the syntax-table to cperl-mode-syntax-table.
24772         (cperl-mode): Make _ into word-syntax during font-locking so "print" in
24773         "foo_print_bar" is not matched as a reserved keyword.
24775 2005-06-29  Carsten Dominik  <dominik@science.uva.nl>
24777         * textmodes/org.el (orgtbl-setup): New function, for delayed
24778         setup for the orgtbl commands.
24779         (org-calc-default-modes): New option.
24780         (orgtbl-make-binding): Use `defun' to get better help display.
24781         (org-diary): Call `org-compile-prefix-format'.
24782         (org-table-formula-substitute-names): New function.
24783         (org-agenda-day-view, org-agenda-week-view): New commands.
24784         (org-agenda-toggle-week-view): Command removed.
24785         (org-tbl-menu): Split off from org-org-menu.
24786         (org-mode): Move removal of outline-mode menus to here.
24787         (org-table-formula-debug): New option.
24788         (org-table-insert-row): Keep first field if just "#" or "*".
24789         (org-mode): Paragraph regexps fixed.
24790         (org-table-recalculate-regexp): New constant.
24791         (org-table-justify-field-maybe): Avoid replace if not necessary.
24792         (org-copy-special, org-cut-special): Use `call-interactively'.
24793         (org-table-copy-region): Take region from `interactive' call.
24794         (org-trim): Return string even if no match.
24795         (org-formula): New face.
24796         (org-set-font-lock-defaults): No longer highlight "FIXME".
24797         But highlight formula-related fields in table.
24798         (org-table-p): Use regexp, not fontification.
24799         (org-table-align): Handle white space at end of line.
24800         (org-table-formula-evaluate-inline): New option.
24801         (org-mode): Auto-wrapping in comment lines turned off.
24802         (org-table-copy-down): Evaluate only in copied field, not in
24803         destination.
24804         (org-table-current-formula): Variable removed.
24805         (org-table-store-formulas, org-table-get-stored-formulas)
24806         (org-table-modify-formulas, org-table-replace-in-formulas)
24807         (org-table-maybe-eval-formula): New functions.
24808         (org-table-get-formula): Modify to use stored formulas.
24809         (org-table-insert-column, org-table-delete-column)
24810         (org-table-move-column): Call `org-table-modify-formulas'.
24811         (org-complete): Add completion for keyword formulas.
24812         (orgtbl-mode): Pull orgtbl-mode-map to start of
24813         minor-mode-map-alist.
24815 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
24817         * progmodes/python.el (python-check): Require `compile' before
24818         modifying its variables.
24820         * newcomment.el (comment-indent-default): Don't get fooled by an early
24821         end of buffer.
24823 2005-06-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24825         * ps-print.el (ps-print-version): Fix version number.
24827 2005-06-28  Luc Teirlinck  <teirllm@auburn.edu>
24829         * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
24831 2005-06-28  Richard M. Stallman  <rms@gnu.org>
24833         * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
24834         (flyspell-local-mouse-map): Declaration deleted.
24835         (flyspell-mouse-map): Bind only mouse-2.
24836         (flyspell-mode-map): Don't test flyspell-use-local-map.
24837         (flyspell-overlay-keymap-property-name): Var deleted.
24838         (flyspell-mode-on): Don't make local bindings for
24839         flyspell-mouse-map and flyspell-mode-map.
24840         (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
24842         * textmodes/ispell.el (ispell-word): Do not ignore short words.
24844         * progmodes/compile.el (compilation-next-error-function):
24845         Don't switch buffers; operate on the current buffer.
24847         * progmodes/compile.el (compilation-error-file-name)
24848         (compilation-warning-file-name, compilation-info-file-name)
24849         (compilation-line-number, compilation-column-number): New faces.
24850         (compilation-error-face, compilation-warning-face)
24851         (compilation-info-face, compilation-line-face)
24852         (compilation-column-face): Use them.
24854         * facemenu.el (facemenu-add-face): Warn when font-lock is active.
24856         * comint.el (comint-password-prompt-regexp): Accept ", try again".
24858         * bindings.el (global-map): Bind insertchar and its variants.
24860 2005-06-27  Richard M. Stallman  <rms@gnu.org>
24862         * textmodes/artist.el (artist-text-overwrite)
24863         (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
24865 2005-06-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24867         * ps-print.el: It was not working the page selection for printing.
24868         Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
24869         (ps-print-version): New version 6.6.7.
24870         (ps-end-sheet): New fun.
24871         (ps-header-sheet, ps-end-job): Call it.
24873 2005-06-27  Luc Teirlinck  <teirllm@auburn.edu>
24875         * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
24877 2005-06-27  Lute Kamstra  <lute@gnu.org>
24879         * facemenu.el (facemenu-unlisted-faces): Add foreground and
24880         background color faces.
24881         (facemenu-get-face): Delete function.
24882         (facemenu-set-face-from-menu): Don't call facemenu-get-face.
24883         (facemenu-add-new-color): Make second argument mandatory.
24884         Create the appropriate face and return it.  Simplify.
24885         (facemenu-set-foreground, facemenu-set-background): Don't check if
24886         color is defined.  Use return value of facemenu-add-new-color.
24888 2005-06-26  Nick Roberts  <nickrob@snap.net.nz>
24890         * progmodes/gud.el (gud-filter): Add missing argument to
24891         with-selected-window.
24893 2005-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
24895         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
24896         a :require to the defcustom.
24898         * emacs-lisp/autoload.el (make-autoload): Add the :setter for
24899         defcustoms corresponding to minor modes.
24901 2005-06-26  David Ponce  <david@dponce.com>
24903         * recentf.el: Require tree-widget instead of wid-edit.
24904         (recentf-filename-handler): Fix widget :type.
24905         (recentf-cancel-dialog, recentf-open-more-files)
24906         (recentf-open-files-action): Doc fix.
24907         (recentf-dialog-goto-first): New function.
24908         (recentf-dialog-mode-map): Set parent keymap first.
24909         (recentf-dialog-mode): Define with define-derived-mode.
24910         Don't display continuation lines in dialogs.
24911         (recentf-edit-list): Rename from recentf-edit-selected-items.
24912         (recentf-edit-list-select): Rename from recentf-edit-list-action.
24913         Simplify.
24914         (recentf-edit-list-validate): New function.
24915         (recentf-edit-list): Update accordingly.
24916         (recentf-open-files-item-shift): Remove.
24917         (recentf-open-files-item): Convert menu elements into tree and
24918         link widgets.  Don't create the widgets.
24919         (recentf-open-files): Update accordingly.
24920         (recentf-save-list): Untabify.
24922 2005-06-25  Luc Teirlinck  <teirllm@auburn.edu>
24924         * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
24925         (keep-lines): Add INTERACTIVE arg.  Never delete lines only
24926         partially contained in the active region.  Do not take active
24927         region into account when called from Lisp, unless INTERACTIVE arg
24928         is non-nil.  Use `forward-line' instead of `beginning-of-line' to
24929         avoid trouble with fields.  Make marker point nowhere when no
24930         longer used.  Always return nil.  Doc fix.
24931         (flush-lines): Add INTERACTIVE arg.  Do not take active region
24932         into account when called from Lisp, unless INTERACTIVE arg is
24933         non-nil.  Use `forward-line' instead of `beginning-of-line' to
24934         avoid trouble with fields.  Make marker point nowhere when no
24935         longer used.  Always return nil.  Doc fix.
24936         (how-many): Add INTERACTIVE arg.  Make RSTART and REND args
24937         interchangeable.  Do not take active region into account when
24938         called from Lisp, unless INTERACTIVE arg is non-nil.  Do not print
24939         message in echo area when called from Lisp, unless INTERACTIVE arg
24940         is non-nil.  Avoid saying "1 occurrences".  Do not use markers.
24941         Return the number of matches.  Doc fix.
24942         (occur): Doc fix.
24943         (perform-replace): Make comment follow double space convention for
24944         the sake of `outline-minor-mode'.
24946         * faces.el (facep): Doc fix.
24948 2005-06-25  Richard M. Stallman  <rms@gnu.org>
24950         * facemenu.el (facemenu-enable-faces-p): New function.
24951         (facemenu-background-menu, facemenu-foreground-menu)
24952         (facemenu-face-menu): Add menu-enable property.
24954         * jka-compr.el (jka-compr-insert-file-contents):
24955         Special handling if cannot find the uncompression program.
24957         * cus-face.el (custom-face-attributes): Add autoload.
24959         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
24960         Bind comment-indent-function locally.
24962         * window.el (save-selected-window): Use save-current-buffer.
24964         * subr.el (with-selected-window): Use save-current-buffer.
24966         * progmodes/gud.el (gud-filter): Simplify using with-selected-window
24967         and with-current-buffer.
24969 2005-06-24  Richard M. Stallman  <rms@gnu.org>
24971         * simple.el (line-move-1): Fix previous change.
24973 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
24975         * replace.el (occur-1): Set `buffer-read-only' and the
24976         buffer-modified flag before running `occur-hook' to protect
24977         against unintentional buffer switches that can lead to data loss.
24979 2005-06-24  Nick Roberts  <nickrob@snap.net.nz>
24981         * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
24982         (gud-gdb-marker-filter): Use font-lock-warning-face for any
24983         initial error.
24985         * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
24986         after fresh input.
24987         (gdb-var-create-handler): Put name of expression in quotes.
24989 2005-06-23  Luc Teirlinck  <teirllm@auburn.edu>
24991         * emacs-lisp/ring.el (ring-elements): Make it return a list of the
24992         elements of RING in order, and without bogus nil elements.
24994 2005-06-23  Richard M. Stallman  <rms@gnu.org>
24996         * simple.el (set-variable): Args renamed; doc fix.
24997         (line-move-1): When there are overlays around, use vertical-motion.
24999         * faces.el (escape-glyph): Use brown against light background.
25000         (nobreak-space): Rename from no-break-space.
25001         Fix previous change.
25003         * dired-aux.el (dired-do-copy): Fix arg prompt.
25005         * mail/sendmail.el (mail-setup-with-from): Fix custom type.
25007 2005-06-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
25009         * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
25010         rather than "Distributor".
25012 2005-06-23  Lute Kamstra  <lute@gnu.org>
25014         * emacs-lisp/debug.el (debugger-special-form-p): New defun.
25015         (debug-on-entry): Use it.  New interactive declaration that uses
25016         function-called-at-point.
25018 2005-06-23  Kim F. Storm  <storm@cua.dk>
25020         * subr.el (save-match-data): Add comment about using evaporate arg
25021         to set-match-data.
25023 2005-06-22  Glenn Morris  <gmorris@ast.cam.ac.uk>
25025         * cus-edit.el (customize-face)
25026         (customize-face-other-window): Handle face aliases.
25028         * faces.el (face-documentation, set-face-attribute)
25029         (face-spec-set): Handle face aliases.
25031 2005-06-22  Juanma Barranquero  <lekktu@gmail.com>
25033         * help-mode.el (help-make-xrefs): If a symbol representing a face
25034         name is not followed by the word "face", it could still be a
25035         function or variable name, so don't bypass other checks.
25037 2005-06-22  Juri Linkov  <juri@jurta.org>
25039         * ps-print.el (ps-face-foreground-name, ps-face-background-name):
25040         Replace aliased functions with calls where second arg `inherit' is t.
25042 2005-06-22  Nick Roberts  <nickrob@snap.net.nz>
25044         * progmodes/gdb-ui.el (gdb-error): New variable.
25045         (gdb-error): New function.
25046         (gdb-annotation-rules): Act on error-begin and error annotations.
25047         (gdb-concat-output): Use font-lock-warning-face for errors.
25049 2005-06-22  Miles Bader  <miles@gnu.org>
25051         * bindings.el (propertized-buffer-identification): Use renamed
25052         `Buffer-menu-buffer' face.
25054         * faces.el (vertical-border): Rename from `vertical-divider'.
25055         (escape-glyph): Change dark-background color back to `cyan'.
25057 2005-06-21  Juri Linkov  <juri@jurta.org>
25059         * faces.el (face-user-default-spec): Try getting `customized-face'
25060         prior to `saved-face'.
25061         (frame-background-mode): Refill docstring.
25063         * emacs-lisp/lisp-mode.el (eval-defun-1):
25064         * emacs-lisp/edebug.el (edebug-eval-defun):
25065         Set `saved-face' temporarily to nil before calling form.
25066         Set `customized-face' to the new spec after that.
25068 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
25070         * subr.el (1value, lambda, key-substitution-in-progress):
25071         Doc fixes.
25073         * autoinsert.el (auto-insert-alist):
25074         * ses.el (ses-call-printer):
25075         * subr.el (noreturn):
25076         * emacs-lisp/lisp.el (check-parens):
25077         * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
25078         * net/browse-url.el (browse-url-mosaic):
25079         * progmodes/cc-defs.el (c-safe-scan-lists):
25080         * progmodes/ebnf-abn.el (ebnf-abn-lex):
25081         * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
25082         * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
25083         * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
25084         * progmodes/ebnf-iso.el (ebnf-iso-lex):
25085         * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
25087 2005-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
25089         * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
25091 2005-06-21  Glenn Morris  <gmorris@ast.cam.ac.uk>
25093         * calendar/appt.el (appt-make-list): Activate the package, if
25094         not already active (for backwards compatibility).
25096 2005-06-20  Kim F. Storm  <storm@cua.dk>
25098         * subr.el (add-to-ordered-list): Test membership with eq.  Simplify.
25100 2005-06-20  Miles Bader  <miles@gnu.org>
25102         * faces.el (vertical-divider): New face.
25104 2005-06-20  Juanma Barranquero  <lekktu@gmail.com>
25106         * simple.el (kill-whole-line): Doc fix.
25107         (next-error-buffer-p, next-error-find-buffer)
25108         (clone-indirect-buffer): Fix typos in docstrings.
25109         (comment-line-break-function): Doc fix: don't say variable
25110         is automatically buffer-local (it isn't).
25112 2005-06-19  Michael Albinus  <michael.albinus@gmx.de>
25114         * net/tramp-ftp.el (top):
25115         * net/tramp-smb.el (top):
25116         * net/tramp-util.el (top):
25117         * net/tramp-uu.el (top):
25118         * net/tramp-vc.el (top):
25119         * net/tramp.el (top): Revert copyright years back to original
25120         ones.  Tramp has a life outside GNU Emacs.
25122 2005-06-19  Nick Roberts  <nickrob@snap.net.nz>
25124         * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
25126 2005-06-18  Juri Linkov  <juri@jurta.org>
25128         * progmodes/grep.el (grep-regexp-alist): Use backreference at the
25129         end of first regexp to limit the match to the position between
25130         line number and source line with same separator character as used
25131         between file name and line number.  In the second regexp limit
25132         mouse-face area to file name and line number by adding new group
25133         for them and referring it in HYPERLINK arg.
25134         (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
25135         (grep-mode): Set font-lock-lines-before to 0 to not refontify the
25136         previous line where grep markers may be already removed.
25138 2005-06-18  Peter Kleiweg  <p.c.j.kleiweg@rug.nl>
25140         * progmodes/ps-mode.el: Update version and maintainer's email address.
25142 2005-06-18  Steve Youngs  <steve@xemacs.org>
25144         * net/browse-url.el (browse-url-browser-function)
25145         (browse-url-default-browser): Add firefox.
25146         (browse-url-firefox-program, browse-url-firefox-arguments)
25147         (browse-url-firefox-startup-arguments)
25148         (browse-url-firefox-new-window-is-tab): New defcustoms.
25149         (browse-url-firefox, browse-url-firefox-sentinel): New functions.
25151 2005-06-17  Richard M. Stallman  <rms@gnu.org>
25153         * startup.el (command-line): Warn if specified user name has
25154         no home directory.
25156         * term.el (term-get-old-input, term-input-filter, term-input-sender)
25157         (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
25159         * longlines.el (longlines-mode, longlines-show-hard-newlines):
25160         Doc fixes.
25162         * faces.el (underline): Try bold if terminal doesn't support underline.
25164         * mail/sendmail.el (mail-setup-with-from): New variable.
25165         (mail-insert-from-field): New function.
25166         (sendmail-send-it): Call it.
25167         (mail-setup): Optionally call it here.
25169         * term/linux.el: Call tty-no-underline.
25171 2005-06-17  Luc Teirlinck  <teirllm@auburn.edu>
25173         * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
25175 2005-06-17  Miles Bader  <miles@gnu.org>
25177         * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
25178         (ediff-current-diff-C, ediff-current-diff-Ancestor)
25179         (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
25180         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
25181         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
25182         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
25183         Remove "-face" suffix from face names.
25184         (ediff-current-diff-face-A, ediff-current-diff-face-B)
25185         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
25186         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
25187         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
25188         (ediff-even-diff-face-A, ediff-even-diff-face-B)
25189         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
25190         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
25191         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
25192         New backward-compatibility aliases for renamed faces.
25193         (ediff-current-diff-face-A, ediff-current-diff-face-B)
25194         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
25195         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
25196         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
25197         (ediff-even-diff-face-A, ediff-even-diff-face-B)
25198         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
25199         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
25200         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
25201         Use renamed ediff faces.
25203         * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
25204         Remove "-face" suffix from face names.
25205         (eshell-test-ok-face, eshell-test-failed-face):
25206         New backward-compatibility aliases for renamed faces.
25207         (eshell-run-test): Use renamed eshell-test faces.
25209         * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
25210         face name.
25211         (eshell-prompt-face): New backward-compatibility alias for renamed
25212         face.
25213         (eshell-emit-prompt): Use renamed eshell-prompt face.
25215         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
25216         (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
25217         (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
25218         (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
25219         Remove "-face" suffix from face names.
25220         (eshell-ls-directory-face, eshell-ls-symlink-face)
25221         (eshell-ls-executable-face, eshell-ls-readonly-face)
25222         (eshell-ls-unreadable-face, eshell-ls-special-face)
25223         (eshell-ls-missing-face, eshell-ls-archive-face)
25224         (eshell-ls-backup-face, eshell-ls-product-face)
25225         (eshell-ls-clutter-face):
25226         New backward-compatibility aliases for renamed faces.
25227         (eshell-ls-decorated-name): Use renamed eshell-ls faces.
25229         * progmodes/cc-fonts.el (c-nonbreakable-space-face):
25230         Remove "-face" suffix from face name.
25231         (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
25232         instead of literal face.
25234 2005-06-17  Juanma Barranquero  <lekktu@gmail.com>
25236         * emacs-lisp/warnings.el (display-warning, lwarn)
25237         (warning-minimum-log-level): Doc fixes.
25238         (warning-minimum-level, warning-minimum-log-level):
25239         Add :debug to :type choices.
25241         * progmodes/ada-mode.el (ada-format-paramlist)
25242         (ada-get-indent-case, ada-check-matching-start)
25243         (ada-check-defun-name, ada-goto-matching-decl-start)
25244         (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
25245         (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
25246         (ada-make-subprogram-body): Follow error conventions.
25247         (ada-case-exception-file, ada-indent-comment-as-code)
25248         (ada-indent-handle-comment-special, ada-indent-renames)
25249         (ada-indent-return, ada-search-directories-internal)
25250         (ada-tab-policy, ada-case-exception-substring)
25251         (ada-other-file-alist, ada-matching-start-re)
25252         (ada-matching-decl-start-re, ada-contextual-menu-last-point)
25253         (ada-imenu-generic-expression, ada-compile-goto-error)
25254         (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
25255         (ada-popup-menu, ada-add-extensions, ada-mode)
25256         (ada-region-selected, ada-create-case-exception)
25257         (ada-create-case-exception-substring, ada-after-keyword-p)
25258         (ada-activate-keys-for-case, ada-adjust-case-region)
25259         (ada-adjust-case-buffer, ada-format-paramlist)
25260         (ada-scan-paramlist, ada-insert-paramlist)
25261         (ada-indent-newline-indent)
25262         (ada-indent-newline-indent-conditional)
25263         (ada-justified-indent-current, ada-goto-previous-word)
25264         (ada-indent-current, ada-get-indent-open-paren)
25265         (ada-get-indent-paramlist, ada-get-indent-end)
25266         (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
25267         (ada-get-indent-block-start, ada-get-indent-subprog)
25268         (ada-get-indent-noindent, ada-get-indent-label)
25269         (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
25270         (ada-search-prev-end-stmt, ada-goto-next-non-ws)
25271         (ada-goto-stmt-end, ada-goto-next-word)
25272         (ada-check-matching-start, ada-check-defun-name)
25273         (ada-goto-matching-decl-start, ada-goto-matching-start)
25274         (ada-goto-matching-end, ada-search-ignore-string-comment)
25275         (ada-in-decl-p, ada-looking-at-semi-or)
25276         (ada-looking-at-semi-private, ada-in-paramlist-p)
25277         (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
25278         (ada-untab-hard, ada-move-to-start, ada-move-to-end)
25279         (ada-next-procedure, ada-previous-procedure, ada-next-package)
25280         (ada-previous-package, ada-create-menu)
25281         (ada-fill-comment-paragraph-justify)
25282         (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
25283         (ada-other-file-name, ada-last-which-function-line)
25284         (ada-last-which-function-subprog, ada-which-function)
25285         (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
25286         (ada-gen-treat-proc, ada-check-emacs-version)
25287         (ada-continuation-indent, ada-align-region-separate):
25288         Fix typos in docstrings.
25289         (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
25291 2005-06-16  Lute Kamstra  <lute@gnu.org>
25293         * simple.el (fundamental-mode): Run after-change-major-mode-hook
25294         conditionally.
25296 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
25298         * comint.el (comint-replace-by-expanded-filename)
25299         (comint-prompt-regexp, comint-delimiter-argument-list)
25300         (comint-preinput-scroll-to-bottom):
25301         * info.el (Info-hide-cookies-node):
25302         * ls-lisp.el (ls-lisp-classify):
25303         * find-file.el (ff-search-directories, ff-special-constructs)
25304         (ff-find-other-file):
25305         * font-lock.el (font-lock-keywords):
25306         * shell.el (shell-prompt-pattern)
25307         (shell-dynamic-complete-functions, shell-mode)
25308         (shell-delimiter-argument-list):
25309         * term.el (term-replace-by-expanded-filename)
25310         (term-prompt-regexp, term-delimiter-argument-list):
25311         * woman.el (woman-ignore, woman0-if):
25312         * emacs-lisp/derived.el (derived-mode-init-mode-variables):
25313         * emacs-lisp/elint.el (elint-init-env):
25314         * emacs-lisp/regexp-opt.el (regexp-opt-depth):
25315         * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
25316         * language/ethio-util.el (ethio-tilde-escape)
25317         (ethio-use-three-dot-question):
25318         * net/zone-mode.el (zone-mode-load-time-setup):
25319         * progmodes/cc-align.el (c-lineup-argcont):
25320         * progmodes/cc-awk.el (c-awk-beginning-of-defun):
25321         * progmodes/cperl-mode.el (cperl-set-style-back):
25322         * progmodes/inf-lisp.el (inferior-lisp-prompt):
25323         * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
25324         Fix spellings in docstrings.
25326         * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
25327         * progmodes/modula2.el (m2-for): Fix spellings.
25329         * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
25331         * simple.el (undo-more): Don't use `format' on `error' arguments.
25332         Improve argument/docstring consistency.
25333         (pending-undo-list): Doc fix.
25335         * smerge-mode.el (smerge-ensure-match):
25336         * emulation/vip.el (vip-ex):
25337         * net/zone-mode.el (zone-mode-update-serial):
25338         * progmodes/idlwave.el (idlwave-complete):
25339         * progmodes/vhdl-mode.el (vhdl-visit-file)
25340         (vhdl-compose-wire-components):
25341         Don't use `format' on `error' arguments.
25343         * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
25344         (tooltip-use-echo-area, tooltip-process-prompt-regexp)
25345         (tooltip-help-tips): Fix typos in docstrings.
25347 2005-06-16  David Ponce  <david@dponce.com>
25349         * tree-widget.el (tree-widget-value-create): Simplify last change.
25351 2005-06-15  Matt Hodges  <MPHodges@member.fsf.org>
25353         * ido.el (ido-incomplete-regexp): New variable.
25354         (ido-set-matches-1): Handle invalid-regexp error and set
25355         ido-incomplete-regexp.
25356         (ido-incomplete-regexp): New face.
25357         (ido-completions): Use it.
25358         (ido-complete, ido-exit-minibuffer, ido-completions):
25359         Handle incomplete regexps.
25360         (ido-completions): Add check for complete match when entering a regexp.
25362 2005-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25364         * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
25366 2005-06-15  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
25368         * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
25369         by field delimiters.
25371 2005-06-15  David Ponce  <david@dponce.com>
25373         * tree-widget.el: eval-and-compile inlined functions so they will
25374         be available at run-time too.
25375         (tree-widget-super-format-handler)
25376         (tree-widget-format-handler): Remove.
25377         (tree-widget-value-create): Handle the :indent property.
25379 2005-06-15  Miles Bader  <miles@gnu.org>
25381         * progmodes/which-func.el (which-func): Only inherit
25382         `font-lock-function-name-face' when that makes sense against the
25383         default mode-line face, otherwise set the face color explicitly.
25385         * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
25386         faces instead of (non-existent) variables.
25388 2005-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
25390         * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
25391         (iswitchb-get-matched-buffers): Likewise.  Simplify.
25393 2005-06-14  Miles Bader  <miles@gnu.org>
25395         * progmodes/ld-script.el (ld-script-location-counter):
25396         Remove "-face" suffix from face name.
25397         (ld-script-location-counter-face):
25398         New backward-compatibility alias for renamed face.
25399         (ld-script-location-counter-face): Use renamed face.
25401         * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
25402         (cperl-hash): Remove "-face" suffix from face names.
25403         (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
25404         New backward-compatibility aliases for renamed faces.
25405         (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
25406         (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
25408         * progmodes/which-func.el (which-func): Remove "-face" suffix from face
25409         name.
25410         (which-func-face): New backward-compatibility alias for renamed face.
25411         (which-func-format): Use renamed which-func face.
25413         * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
25414         (vhdl-function, vhdl-directive, vhdl-reserved-word)
25415         (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
25416         names.
25417         (vhdl-speedbar-entity, vhdl-speedbar-architecture)
25418         (vhdl-speedbar-configuration, vhdl-speedbar-package)
25419         (vhdl-speedbar-library, vhdl-speedbar-instantiation)
25420         (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
25421         (vhdl-speedbar-architecture-selected)
25422         (vhdl-speedbar-configuration-selected)
25423         (vhdl-speedbar-package-selected)
25424         (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
25425         names.
25426         (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
25427         Use renamed faces.
25428         (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
25429         (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
25430         (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
25431         Use renamed faces.
25432         (syntax-alist): Don't use "font-lock-" or "-face" in generated face
25433         names.
25434         (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
25435         (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
25436         (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
25437         (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
25438         (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
25439         (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
25441         * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
25442         face name.
25443         (sh-heredoc-face): New backward-compatibility alias for renamed face.
25444         (sh-heredoc-face): Use renamed sh-heredoc face.
25446         * progmodes/idlw-help.el (idlwave-help-link):
25447         Remove "-face" suffix from face name.
25448         (idlwave-help-link-face):
25449         New backward-compatibility alias for renamed face.
25450         (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
25452         * progmodes/idlw-shell.el (idlwave-shell-bp-face)
25453         (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
25454         (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
25455         New backward-compatibility aliases for renamed faces.
25456         (idlwave-shell-disabled-breakpoint-face)
25457         (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
25459         * progmodes/flymake.el (flymake-errline, flymake-warnline):
25460         Remove "-face" suffix from face names.
25461         (flymake-errline-face, flymake-warnline-face):
25462         New backward-compatibility aliases for renamed faces.
25463         (flymake-highlight-line): Use renamed flymake faces.
25465         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
25466         (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
25467         (ebrowse-member-class, ebrowse-progress):
25468         Remove "-face" suffix from face names.
25469         (ebrowse-tree-mark-face, ebrowse-root-class-face)
25470         (ebrowse-file-name-face, ebrowse-default-face)
25471         (ebrowse-member-attribute-face, ebrowse-member-class-face)
25472         (ebrowse-progress-face):
25473         New backward-compatibility aliases for renamed faces.
25474         (ebrowse-show-progress, ebrowse-show-file-name-at-point)
25475         (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
25476         (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
25477         (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
25479         * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
25480         antlr-syntax)
25481         (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
25482         (antlr-literal): Remove "-face" suffix and "font-lock-" from face
25483         names.
25484         (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
25485         (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
25486         (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
25487         (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
25488         backward-compatibility aliases for renamed faces.
25489         (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
25490         (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
25491         (antlr-tokenref-face, antlr-literal-face): Variables renamed to
25492         remove "font-lock-".  Use renamed antlr-mode faces.
25493         (antlr-font-lock-additional-keywords): Use renamed faces.  Replace
25494         literal face-names with face variable references.
25496         * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
25497         face name.
25498         (Buffer-menu-buffer-face): New backward-compatibility alias for
25499         renamed face.
25500         (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
25502 2005-06-15  Daniel Pfeiffer  <occitan@esperanto.org>
25504         * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
25505         Eliminate "-face" suffix.
25506         (makefile-targets): Inherit from font-lock-function-name-face and
25507         eliminate "-face" suffix.
25508         (makefile-shell): Remove attributes and eliminate "-face" suffix.
25509         (makefile-*-font-lock-keywords): Append makefile-targets in rule
25510         actions, instead of prepending, to make it less visible.
25511         (makefile-previous-dependency, makefile-match-dependency):
25512         Don't match a target on a continuation line.
25514         * files.el (auto-mode-alist): Put Makefile in gmake mode.
25516 2005-06-15  Nick Roberts  <nickrob@snap.net.nz>
25518         * progmodes/gdb-ui.el (menu): Re-order menu items.
25519         (gdb-tooltip-print): Respect tooltip-use-echo-area.
25521         * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
25522         Define in tooltip.el.
25523         (gud-tooltip-process-output): Respect tooltip-use-echo-area.
25524         (gud-tooltip-tips): Respect tooltip-use-echo-area and
25525         gud-tooltip-echo-area.
25527         * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
25528         backward compatibility and make obsolete.
25529         (tooltip-help-tips): Use tooltip-use-echo-area.
25530         (tooltip-show-help-function): Rename to...
25531         (tooltip-show-help): ...this, because it is a function.
25532         (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
25534 2005-06-14  Luc Teirlinck  <teirllm@auburn.edu>
25536         * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
25537         (edebug-print-length, edebug-print-level, edebug-print-circle)
25538         (edebug-modify-breakpoint, edebug-eval-last-sexp)
25539         (edebug-eval-print-last-sexp): Doc fixes.
25541 2005-06-14  Kim F. Storm  <storm@cua.dk>
25543         * ido.el (ido-mode): Make a new keymap every time we enable ido,
25544         as the coverage buffer/file/both may change.
25546 2005-06-14  Lute Kamstra  <lute@gnu.org>
25548         * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
25549         and run-mode-hooks.  Simplify.
25551         * mail/rmailedit.el (rmail-edit-mode):
25552         * progmodes/octave-inf.el (inferior-octave-mode):
25553         * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
25555         * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
25556         and run-mode-hooks.
25557         (recentf-edit-list, recentf-open-files): Don't call
25558         kill-all-local-variables directly.
25560         * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
25562 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
25564         * emacs-lisp/byte-run.el (make-obsolete)
25565         (define-obsolete-function-alias): Rename arguments FUNCTION and
25566         NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
25567         (make-obsolete-variable, define-obsolete-variable-alias):
25568         Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
25569         respectively.
25571         * isearchb.el (isearchb-activate):
25572         * pcvs.el (cvs-mode):
25573         * ses.el (ses-load):
25574         * vc-arch.el (vc-arch-checkin, vc-arch-diff):
25575         * net/tramp.el (tramp-find-file-exists-command)
25576         (tramp-find-shell):
25577         * progmodes/ada-mode.el (ada-create-case-exception)
25578         (ada-create-case-exception-substring, ada-make-subprogram-body):
25579         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
25580         * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
25581         * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
25582         * textmodes/org.el (org-promote, org-evaluate-time-range)
25583         (org-agenda-next-date-line, org-agenda-previous-date-line)
25584         (org-agenda-error, org-open-at-point, org-table-move-row)
25585         (org-format-table-table-html-using-table-generate-source)
25586         (org-shiftcursor-error, org-ctrl-c-ctrl-c):
25587         * textmodes/reftex.el (reftex-access-scan-info):
25588         * textmodes/reftex-toc.el (reftex-toc-dframe-p)
25589         (reftex-toc-promote-prepare): Follow error conventions.
25591         * diff-mode.el (diff-mode): Fix typo in docstring.
25593         * forms.el (forms--intuit-from-file): Fix reference to
25594         `forms-number-of-fields' in error message.
25595         (forms-print): Fix quoting in error message.
25597         * forms.el (forms-mode):
25598         * emulation/vi.el (vi-goto-insert-state):
25599         * progmodes/flymake.el (flymake-new-err-info)
25600         (flymake-start-syntax-check-for-current-buffer)
25601         (flymake-simple-cleanup):
25602         * eshell/esh-var.el (eshell/export):
25603         * progmodes/gud.el (xdb):
25604         * textmodes/flyspell.el (flyspell-incorrect-hook)
25605         (flyspell-maybe-correct-transposition)
25606         (flyspell-maybe-correct-doubling): Fix quoting in docstring.
25608 2005-06-13  Luc Teirlinck  <teirllm@auburn.edu>
25610         * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
25611         minibuffer prompt.
25613 2005-06-13  Kim F. Storm  <storm@cua.dk>
25615         * subr.el (add-to-ordered-list): New defun.
25617         * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
25618         add cua--keymap-alist to emulation-mode-map-alists.
25620 2005-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
25622         * subr.el (complete-in-turn): New macro.
25623         (dynamic-completion-table, lazy-completion-table): Add debug info.
25625         * faces.el (read-face-name): Use complete-in-turn complete non-aliases
25626         in preference to face aliases.
25628         * textmodes/fill.el (fill-match-adaptive-prefix): New function.
25629         (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
25630         Remove unused vars `start' and `firstline'.
25631         (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
25632         (justify-current-line, fill-individual-paragraphs): Remove unused vars.
25634 2005-06-13  Eli Zaretskii  <eliz@gnu.org>
25636         * cus-start.el (all): Don't complain about missing GTK-related
25637         variables, unless either `gtk' is boundp or this isn't a
25638         `windows-nt' build.
25640 2005-06-13  Lute Kamstra  <lute@gnu.org>
25642         * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
25643         run-mode-hooks.
25645         * ediff-mult.el (ediff-meta-mode):
25646         * ediff-util.el (ediff-mode): Use run-mode-hooks.
25648         * ledit.el (ledit-mode): Use delay-mode-hooks.
25650         * woman.el (woman-mode-line-format): Delete constant.
25651         (woman-mode-map): Initialize it properly.
25652         (woman-mode): Set mode-class property to special.
25653         Use delay-mode-hooks and run-mode-hooks.  Use the right keymap.
25654         Set major-mode and mode-name.  Don't set mode-line-format directly.
25655         (Man-getpage-in-background): Don't reference woman-mode-line-format.
25657         * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
25658         string argument obsolete.
25660 2005-06-13  Carsten Dominik  <dominik@science.uva.nl>
25662         * textmodes/org.el (org-CUA-compatible): New option.
25663         (org-disputed-keys): New variable.
25664         (org-key): New function.
25665         (orgtbl-make-binding): Add docstring to the created function.
25666         (org-mode): Set paragraph start/separate regexps.
25667         (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
25668         (org-archive-location, org-archive-mark-done)
25669         (org-archive-stamp-time): New options.
25670         (org-archive-subtree): New command.
25671         (org-fill-paragraph): New function.
25672         (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
25673         (org-fake-empty-table-line): Function removed.
25674         (org-format-org-table-html): Do not create empty table lines at
25675         separator lines.  Improved table header treatment.
25676         (org-link-format): New option.
25677         (org-make-link): New function.
25678         (org-insert-link, org-store-link): Use org-make-link.
25679         (org-open-file): Quote file name for shell command, to allow
25680         spaces in file names.
25681         (org-link-regexp): Fix bug with mailto link.
25682         (org-link-maybe-angles-regexp, org-protected-link-regexp):
25683         New constants.
25684         (org-export-as-html): Deal with the optional angles around a link.
25685         Better treatment of file: links.
25686         (org-open-at-point): Replace @{ and @} with < and >.
25687         (org-run-mode-hooks): Function removed.
25688         (org-agenda-mode): No longer use `org-run-mode-hooks'.
25690 2005-06-13  Nick Roberts  <nickrob@snap.net.nz>
25692         * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
25693         MI command -data-list-register-values.
25694         (gdb-post-prompt): Indent properly.
25696 2005-06-13  Juanma Barranquero  <lekktu@gmail.com>
25698         * hilit-chg.el (highlight-changes-colors): Rename from
25699         `highlight-changes-colours'.
25700         (highlight-changes-colours): Keep as obsolete alias.
25701         (highlight-changes-face-list): Doc fix.
25702         (hilit-chg-make-list): Use `highlight-changes-colors'.
25704 2005-06-12  Mark A. Hershberger  <mah@everybody.org>
25706         * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
25707         defun-prompt-regexp.
25709 2005-06-12  Eli Zaretskii  <eliz@gnu.org>
25711         * loadup.el: Don't say we are dumping under 2 names on windows-nt
25712         and cygwin.
25714         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
25715         Don't use an old loaddefs.el, as in Makefile.in.
25717 2005-06-12  Lute Kamstra  <lute@gnu.org>
25719         * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
25721         * man.el (Man-mode-map): Initialize it properly.
25722         (Man-mode): Set mode-class property to special.
25724         * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
25726 2005-06-11  Luc Teirlinck  <teirllm@auburn.edu>
25728         * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
25729         A newline is needed in the docstring there.
25731         * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
25732         Doc fixes.
25734 2005-06-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
25736         * printing.el: Doc fix.  The menubar is no more changed when printing
25737         is loaded, it only changes when pr-menu-bind or pr-update-menus is
25738         called.  Now, the menubar changing will work in Emacs 20, 21 and 22.
25739         (pr-version): New version number (6.8.4).
25740         (pr-menu-bind): New command.
25741         (pr-update-menus): Docstring and code fix.
25742         (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
25743         Docstring fix.
25744         (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
25745         (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
25747 2005-06-11  Thien-Thi Nguyen  <ttn@gnu.org>
25749         * emacs-lisp/ewoc.el: Doc fixes for public funcs:
25750         "Returns" to "return", document useful return values, etc.
25752 2005-06-11  Alan Mackenzie  <acm@muc.de>
25754         * fill.el (fill-context-prefix): Try `adaptive-fill-function'
25755         BEFORE `adaptive-fill-regexp' when determining a fill prefix.
25756         (adaptive-file-function): Minor amendment to doc-string.
25758 2005-06-11  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
25760         * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
25761         (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
25762         Fix :type--it is `integer', not `string'.
25764         * faces.el (modeline-highlight): Rename from (the erroneous)
25765         `modeline-higilight'.
25767 2005-06-11  Lute Kamstra  <lute@gnu.org>
25769         * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
25770         lisp-interaction-mode-map but make it the parent.
25771         (edebug-eval-mode): Use define-derived-mode.
25773 2005-06-11  Andreas Schwab  <schwab@suse.de>
25775         * bindings.el: Add binding of `ESC functionkey' for every
25776         `M-functionkey'.
25777         * hexl.el (hexl-mode-map): Likewise.
25779 2005-06-10  Michael Hotchin  <michael@hotchin.net>  (tiny change)
25781         * progmodes/compile.el (compilation-error-regexp-alist-alist)
25782         [msft]: update regexp for newer msft compilers.
25784 2005-06-10  Mark A. Hershberger  <mah@everybody.org>
25786         * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
25787         ATTLIST portions of included DTDs.
25788         (xml-parse-dtd): Eliminate use of inefficient match-data.
25790 2005-06-10  Miles Bader  <miles@gnu.org>
25792         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
25793         (mpuz-text): Remove "-face" suffix from face names.
25794         (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
25795         (mpuz-text-face): New backward-compatibility aliases for renamed faces.
25796         (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
25798         * play/gomoku.el (gomoku-O, gomoku-X):
25799         Remove "-face" suffix from face names.
25800         (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
25801         New backward-compatibility aliases for renamed faces.
25802         (gomoku-font-lock-keywords): Use renamed gomoku faces.
25804 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
25806         * thumbs.el: Fixes for changes of 2005-06-09.
25807         (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
25808         as a directory.
25809         (thumbs-thumbname): Remove directory separator from format string;
25810         `thumbs-thumbsdir' now returns a valid directory name.
25811         (thumbs-temp-dir): New defsubst.
25812         (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
25813         Use it.
25815         * cus-edit.el (minibuffer):
25816         * files.el (make-backup-file-name-function):
25817         * filesets.el (filesets-external-viewers):
25818         * hilit-chg.el (highlight-changes-colours)
25819         (highlight-changes-face-list, highlight-changes-rotate-faces):
25820         * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
25821         * kmacro.el (kmacro-call-macro):
25822         * log-edit.el (log-edit-changelog-full-paragraphs):
25823         * mouse.el (mouse-1-click-follows-link):
25824         * skeleton.el (skeleton-autowrap):
25825         * subr.el (insert-for-yank-1):
25826         * tempo.el (tempo-insert-region):
25827         * terminal.el (terminal-emulator):
25828         * time.el (display-time-mail-face):
25829         * vc.el (vc-annotate):
25830         * vcursor.el (vcursor-copy-line):
25831         * woman.el (woman-bold-headings, woman-ignore)
25832         (woman-default-faces, woman-monochrome-faces):
25833         * calendar/todo-mode.el (todo-insert-threshold):
25834         * emulation/pc-select.el (pc-select-selection-keys-only)
25835         (pc-selection-mode):
25836         * emulation/vip.el (vip-find-char-forward):
25837         * emulation/viper-cmd.el (viper-find-char-forward):
25838         * international/mule-cmds.el
25839         (select-safe-coding-system-accept-default-p)
25840         (input-method-exit-on-invalid-key):
25841         * international/mule-diag.el (describe-coding-system):
25842         * international/ucs-tables.el (unify-8859-on-encoding-mode):
25843         * net/browse-url.el (browse-url-xterm-program):
25844         * obsolete/lazy-lock.el (lazy-lock-mode):
25845         * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
25846         (cperl-mode):
25847         * progmodes/cpp.el (cpp-face-light-name-list)
25848         (cpp-face-dark-name-list):
25849         * progmodes/delphi.el (delphi-newline-always-indents):
25850         Fix spellings in docstrings.
25852         * ido.el (ido-mode, ido-file-extensions-order)
25853         (ido-default-file-method, ido-default-buffer-method)
25854         (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
25855         (ido-decorations, ido-read-file-name-as-directory-commands)
25856         (ido-read-file-name-non-ido, ido-work-directory-list)
25857         (ido-ignore-item-temp-list, ido-current-directory)
25858         (ido-magic-forward-char, ido-enter-find-file)
25859         (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
25860         (ido-find-file, ido-read-buffer): Fix typos in docstrings.
25862 2005-06-10  Lute Kamstra  <lute@gnu.org>
25864         * play/dunnet.el (dun-mode): Use define-derived-mode.
25865         (dungeon-mode-map): Rename to dun-mode-map.  Keep old name as an
25866         obsolete alias.
25868         * play/doctor.el (doctor-mode-map): Remove defvar.
25869         (doctor-mode): Use define-derived-mode.
25871         * mail/mspools.el (mspools-mode):
25872         * net/eudc-hotlist.el (eudc-hotlist-mode):
25873         * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
25875 2005-06-10  Miles Bader  <miles@gnu.org>
25877         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
25878         Remove "-face" suffix from face names.
25879         (flyspell-incorrect-face, flyspell-duplicate-face):
25880         New backward-compatibility aliases for renamed faces.
25881         (flyspell-mode-on, make-flyspell-overlay)
25882         (flyspell-highlight-incorrect-region)
25883         (flyspell-highlight-duplicate-region)
25884         (flyspell-display-next-corrections)
25885         (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
25887         * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
25888         from face name.
25889         (texinfo-heading-face): New backward-compatibility alias for
25890         renamed face.
25891         (texinfo-heading-face): Use renamed texinfo-heading face.
25893         * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
25894         suffix from face names.
25895         (tex-math-face, tex-verbatim-face):
25896         New backward-compatibility aliases for renamed faces.
25897         (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
25898         (tex-insert-quote): Use `tex-verbatim-face' variable instead of
25899         literal face name.
25901         * textmodes/table.el (table-cell): Remove "-face" suffix from face
25902         name.
25903         (table-cell-face): New backward-compatibility alias for renamed face.
25904         (table--put-cell-face-property, table--update-cell-face):
25905         Use renamed table-cell face.
25907         * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
25908         from face name.
25909         (sgml-namespace-face): New backward-compatibility alias for
25910         renamed face.
25911         (sgml-namespace-face): Use renamed sgml-namespace face.
25913         * textmodes/org.el (org-level-1, org-level-2, org-level-3)
25914         (org-level-4, org-level-5, org-level-6, org-level-7)
25915         (org-level-8, org-warning, org-headline-done)
25916         (org-deadline-announce, org-scheduled-today)
25917         (org-scheduled-previously, org-link, org-done, org-table)
25918         (org-time-grid): Remove "-face" suffix from face names.
25919         (org-level-1-face, org-level-2-face, org-level-3-face)
25920         (org-level-4-face, org-level-5-face, org-level-6-face)
25921         (org-level-7-face, org-level-8-face, org-warning-face)
25922         (org-headline-done-face, org-deadline-announce-face)
25923         (org-scheduled-today-face, org-scheduled-previously-face)
25924         (org-link-face, org-done-face, org-table-face)
25925         (org-time-grid-face):
25926         New backward-compatibility aliases for renamed faces.
25927         (org-level-faces, org-set-font-lock-defaults, org-timeline)
25928         (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
25929         (org-agenda-get-timestamps, org-agenda-get-scheduled)
25930         (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
25932         * emulation/viper-init.el (viper-search, viper-replace-overlay)
25933         (viper-minibuffer-emacs, viper-minibuffer-insert)
25934         (viper-minibuffer-vi): Remove "-face" suffix from face names.
25935         (viper-search-face, viper-replace-overlay-face)
25936         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
25937         (viper-minibuffer-vi-face):
25938         New backward-compatibility aliases for renamed faces.
25939         (viper-search-face, viper-replace-overlay-face)
25940         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
25941         (viper-minibuffer-vi-face): Use renamed viper faces.
25943         * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
25944         Remove "-face" suffix from face names.
25945         (testcover-nohits-face, testcover-1value-face):
25946         New backward-compatibility aliases for renamed faces.
25947         (testcover-mark): Use renamed testcover faces.
25949         * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
25950         face name.
25951         (diary-button-face): New backward-compatibility alias for renamed face.
25952         (diary-entry): Use renamed diary-button face.
25954         * calendar/calendar.el (diary, calendar-today, holiday)
25955         (mark-visible-calendar-date): Remove "-face" suffix from face names.
25956         (diary-face, calendar-today-face, holiday-face):
25957         New backward-compatibility aliases for renamed faces.
25958         (eval-after-load "facemenu", diary-entry-marker)
25959         (calendar-today-marker, calendar-holiday-marker, diary-face):
25960         Use renamed calendar faces.
25962         * compare-w.el (compare-windows): Remove "-face" suffix from face name.
25963         (compare-windows-face): New backward-compatibility alias for
25964         renamed face.
25965         (compare-windows-highlight): Use renamed compare-windows face.
25967         * strokes.el (strokes-char): Remove "-face" suffix from face name.
25968         (strokes-char-face): New backward-compatibility alias for renamed face.
25969         (strokes-encode-buffer): Use renamed strokes-char face.
25971         * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
25972         (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
25973         Remove "-face" suffix from face names.
25974         (cvs-header-face, cvs-filename-face, cvs-unknown-face)
25975         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
25976         (cvs-msg-face): New backward-compatibility aliases for renamed faces.
25977         (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
25978         Use renamed pcvs faces.
25979         * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
25980         * pcvs-defs.el (cvs-mode-map): Likewise.
25981         * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
25983         * info.el (info-title-1, info-title-2, info-title-3)
25984         (info-title-4): Remove "-face" suffix from and downcase face names.
25985         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
25986         (Info-title-4-face):
25987         New backward-compatibility aliases for renamed faces.
25988         (Info-fontify-node): Use renamed info faces.
25990         * hilit-chg.el (highlight-changes, highlight-changes-delete):
25991         Remove "-face" suffix from face names.
25992         (highlight-changes-face, highlight-changes-delete-face):
25993         New backward-compatibility aliases for renamed faces.
25994         (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
25995         (hilit-chg-make-list): Use renamed highlight-changes faces.
25997         * generic-x.el (show-tabs-tab, show-tabs-space):
25998         Remove "-face" suffix from face names.
25999         (show-tabs-tab-face, show-tabs-space-face):
26000         New backward-compatibility aliases for renamed faces.
26001         (show-tabs-generic-mode-font-lock-defaults-1)
26002         (show-tabs-generic-mode-font-lock-defaults-2):
26003         Use renamed show-tabs faces.
26005         * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
26006         (smerge-markers): Remove "-face" suffix from face names.
26007         (smerge-mine-face, smerge-other-face, smerge-base-face)
26008         (smerge-markers-face):
26009         New backward-compatibility aliases for renamed faces.
26010         (smerge-mine-face, smerge-other-face, smerge-base-face)
26011         (smerge-markers-face): Use renamed smerge faces.
26013         * log-view.el (log-view-file, log-view-message): Remove "-face"
26014         suffix from face names.
26015         (log-view-file-face, log-view-message-face):
26016         New backward-compatibility aliases for renamed faces.
26017         (log-view-file-face, log-view-message-face): Use renamed log-view
26018         faces.
26020         * paren.el (show-paren-match, show-paren-mismatch):
26021         Remove "-face" suffix from face names.
26022         (show-paren-match-face, show-paren-mismatch-face):
26023         New backward-compatibility aliases for renamed faces.
26024         (show-paren-function): Use renamed show-paren faces.
26026         * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
26027         (ruler-mode-margins, ruler-mode-fringes)
26028         (ruler-mode-column-number, ruler-mode-fill-column)
26029         (ruler-mode-comment-column, ruler-mode-goal-column)
26030         (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
26031         suffix from face names.
26032         (ruler-mode-default-face, ruler-mode-pad-face)
26033         (ruler-mode-margins-face, ruler-mode-fringes-face)
26034         (ruler-mode-column-number-face, ruler-mode-fill-column-face)
26035         (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
26036         (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
26037         New backward-compatibility aliases for renamed faces.
26038         (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
26039         (ruler-mode-column-number, ruler-mode-fill-column)
26040         (ruler-mode-comment-column, ruler-mode-goal-column)
26041         (ruler-mode-tab-stop, ruler-mode-current-column)
26042         (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
26043         faces.
26045         * whitespace.el (whitespace-highlight): Remove "-face" suffix from
26046         face name.
26047         (whitespace-highlight-the-space): Use renamed face.
26048         (whitespace-highlight-face): New backward-compatibility alias for
26049         renamed face.
26051         * woman.el (woman-italic, woman-bold, woman-unknown)
26052         (woman-addition, woman-symbol-face):
26053         Remove "-face" suffix from face names.
26054         (woman-italic-face, woman-bold-face, woman-unknown-face)
26055         (woman-addition-face):
26056         New backward-compatibility aliases for renamed faces.
26057         (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
26058         (woman-decode-region, woman-replace-match)
26059         (woman-display-extended-fonts, woman-special-characters)
26060         (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
26061         Use renamed woman faces.
26063         * longlines.el (longlines-visible-face): Face removed.
26065         * diff-mode.el (diff-header, diff-file-header, diff-index)
26066         (diff-hunk-header, diff-removed, diff-added, diff-changed)
26067         (diff-function, diff-context, diff-nonexistent): Remove "-face"
26068         suffix from face names.
26069         (diff-header-face, diff-file-header-face, diff-index-face)
26070         (diff-hunk-header-face, diff-removed-face, diff-added-face)
26071         (diff-changed-face, diff-function-face, diff-context-face)
26072         (diff-nonexistent-face): New backward-compatibility aliases for
26073         renamed faces.
26074         (diff-header-face, diff-file-header-face)
26075         (diff-index, diff-index-face, diff-hunk-header)
26076         (diff-hunk-header-face, diff-removed, diff-removed-face)
26077         (diff-added, diff-added-face, diff-changed-face, diff-function)
26078         (diff-function-face, diff-context-face, diff-nonexistent)
26079         (diff-nonexistent-face): Use renamed diff-mode faces.
26081         * progmodes/compile.el (compilation-warning-face)
26082         (compilation-info-face): Remove "-face" suffix from face names.
26083         (compilation-warning-face, compilation-info-face):
26084         New backward-compatibility aliases for renamed faces.
26085         (compilation-warning-face, compilation-info-face):
26086         Use renamed compilation faces.
26088         * add-log.el (change-log-date, change-log-name)
26089         (change-log-email, change-log-file, change-log-list)
26090         (change-log-conditionals, change-log-function)
26091         (change-log-acknowledgement): Remove "-face" suffix from face names.
26092         (change-log-date-face, change-log-name-face)
26093         (change-log-email-face, change-log-file-face)
26094         (change-log-list-face, change-log-conditionals-face)
26095         (change-log-function-face, change-log-acknowledgement-face):
26096         New backward-compatibility aliases for renamed faces.
26097         (change-log-font-lock-keywords): Use renamed change-log faces.
26099         * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
26100         (custom-set, custom-changed, custom-saved, custom-button)
26101         (custom-button-pressed, custom-documentation, custom-state)
26102         (custom-comment, custom-comment-tag, custom-variable-tag)
26103         (custom-variable-button, custom-face-tag, custom-group-tag-1)
26104         (custom-group-tag): Remove "-face" suffix from face names.
26105         (custom-magic-alist, custom-magic-value-create)
26106         (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
26107         (custom-invalid-face, custom-rogue-face, custom-modified-face)
26108         (custom-set-face, custom-changed-face, custom-saved-face)
26109         (custom-button-face, custom-button-pressed-face)
26110         (custom-documentation-face, custom-state-face)
26111         (custom-comment-face, custom-comment-tag-face)
26112         (custom-variable-tag-face, custom-variable-button-face)
26113         (custom-face-tag-face, custom-group-tag-face-1)
26114         (custom-group-tag-face):
26115         New backward-compatibility aliases for renamed faces.
26117         * wid-edit.el (widget-documentation, widget-button)
26118         (widget-field, widget-single-line-field, widget-inactive)
26119         (widget-button-pressed): "-face" suffix removed from face names.
26120         (widget-documentation-face, widget-button-face)
26121         (widget-field-face, widget-single-line-field-face)
26122         (widget-inactive-face, widget-button-pressed-face):
26123         New backward-compatibility aliases for renamed faces.
26124         (widget-documentation-face, widget-button-face)
26125         (widget-button-pressed-face, widget-specify-field)
26126         (widget-specify-inactive): Use renamed widget faces.
26128 2005-06-10  Kenichi Handa  <handa@m17n.org>
26130         * term/x-win.el (x-clipboard-yank): Remove condition-case
26131         wrapping.
26133 2005-06-11  Kenichi Handa  <handa@m17n.org>
26135         * add-log.el (change-log-font-lock-keywords): Make the regexp for
26136         date lines stricter.
26138 2005-06-10  Zhang Wei  <id.brep@gmail.com>
26140         * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
26141         of x-get-selection.
26143 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
26145         * comint.el (comint-mode, comint-snapshot-last-prompt):
26146         * frame.el (frame-current-scroll-bars):
26147         * term.el (term-mode, term-check-proc, term-input-sender)
26148         (term-simple-send, term-extract-string, term-word)
26149         (term-match-partial-filename):
26150         * window.el (window-current-scroll-bars):
26151         * emulation/cua-base.el (cua-normal-cursor-color)
26152         (cua-read-only-cursor-color, cua-overwrite-cursor-color)
26153         (cua-global-mark-cursor-color):
26154         * mail/undigest.el (rmail-forward-separator-regex):
26155         Fix typos in docstrings.
26157         * comint.el (comint-check-proc, make-comint-in-buffer)
26158         (comint-source-default): Doc fixes.
26160         * term.el (term-send-string): Improve argument/docstring consistency.
26162 2005-06-09  Luc Teirlinck  <teirllm@auburn.edu>
26164         * comint.el (comint-send-input): Bind `inhibit-read-only' around
26165         call to `delete-region'.
26166         (comint-mode-hook): Do not enable Font Lock by default.
26168 2005-06-09  Lute Kamstra  <lute@gnu.org>
26170         * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
26171         could be void.
26173 2005-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
26175         * emacs-lisp/debug.el (debugger-will-be-back): New var.
26176         (debug): Use it.
26177         (debugger-step-through, debugger-continue, debugger-jump)
26178         (debugger-return-value): Set it when needed.
26179         (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
26180         Use inhibit-read-only.
26182 2005-06-09  Juanma Barranquero  <lekktu@gmail.com>
26184         * window.el (shrink-window-if-larger-than-buffer)
26185         (window-size-fixed): Fix typo in docstring.
26187         * thumbs.el: Don't set `auto-image-file-mode'.  Do not create the
26188         thumbnails directory on loading.
26189         (thumbs-conversion-program): Use `eq' to check the system type,
26190         not `equal'.
26191         (thumbs-temp-dir): Initialize to `temporary-file-directory',
26192         not "/tmp".  Fix docstring.
26193         (thumbs-thumbsdir): New function to return the thumbnails
26194         directory, creating it if needed.
26195         (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
26196         (thumbs-temp-file): Delete variable and make it into a function.
26197         (thumbs-resize-image, thumbs-modify-image): Use it.
26198         (thumbs-kill-buffer): Simplify.
26199         (thumbs-gensym): Defalias or duplicate CL `gensym'.
26200         (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
26201         docstrings.
26203 2005-06-09  Kim F. Storm  <storm@cua.dk>
26205         * subr.el (save-match-data): Add RESEAT arg `evaporate' to
26206         set-match-data to free markers in match-data.
26208         * replace.el (replace-match-data): Pass RESEAT arg `t' to
26209         match-data to unchain markers in match-data.
26211 2005-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
26213         * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
26214         the debugger immediately anyway.  Undo the 2005-06-06 change, rendered
26215         unnecessary now.
26217 2005-06-08  Richard M. Stallman  <rms@gnu.org>
26219         * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
26220         give the variable a doc string that doesn't say don't set it directly.
26222         * textmodes/ispell.el (ispell-check-version):
26223         Use match-string-no-properties.
26224         (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
26225         (ispell-buffer-local-words): Likewise.
26227         * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
26228         except on terminals with enough colors to really display it.
26229         (makefile-dependency-regex): Delete spurious `bb'.
26231         * faces.el (escape-glyph): Use blue once again in last case.
26232         (no-break-space): Redefine so that it isn't invisible on a tty.
26234 2005-06-08  Kim F. Storm  <storm@cua.dk>
26236         * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
26237         also when reading directory name.
26239 2005-06-08  Lute Kamstra  <lute@gnu.org>
26241         * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
26242         (flyspell-mode-line-string): Remove autoload cookie.
26243         (flyspell-mode): Remove defvar.
26245 2005-06-07  Lute Kamstra  <lute@gnu.org>
26247         * textmodes/org.el (org-run-mode-hooks): New function.
26248         (org-agenda-mode): Use it.
26250 2005-06-07  David McCabe  <davemccabe@gmail.com>  (tiny change)
26252         * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
26254 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
26256         * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
26258 2005-06-06  Luc Teirlinck  <teirllm@auburn.edu>
26260         * font-lock.el (font-lock-add-keywords): Doc fix.
26262 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
26264         * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
26265         (tex-compile-default): In the absence of any history, use the order in
26266         tex-compile-alist to choose the preferred command.
26267         (tex-compile-commands): Reorder a bit.
26269         * textmodes/flyspell.el (flyspell-auto-correct-binding)
26270         (flyspell-incorrect-face, flyspell-duplicate-face):
26271         Use (X)Emacs-agnostic code.
26272         (flyspell-mode-map): Don't overwrite at each load.  Remove code
26273         redundant with the subsequent add-minor-mode.  Merge Emacs and
26274         XEmacs code.
26275         (flyspell-word): Minor simplification.
26276         (flyspell-math-tex-command-p): Quieten the byte-compiler.
26277         (flyspell-external-point-words): Remove unused vars `size' and `start'.
26278         (flyspell-do-correct): Rename from flyspell-xemacs-correct.
26279         Merge the corresponding Emacs code.
26280         (flyspell-correct-word, flyspell-xemacs-popup):
26281         Use flyspell-do-correct.
26283         * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
26284         a dedicated window.
26286         * international/latexenc.el (latexenc-find-file-coding-system):
26287         Undo part of last patch, to turn off a compiler warning.
26289 2005-06-06  Juri Linkov  <juri@jurta.org>
26291         * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
26292         Rename `tmm-inactive-face' to `tmm-inactive'.
26294 2005-06-06  Matt Hodges  <MPHodges@member.fsf.org>
26296         * iswitchb.el: Rename faces.
26298 2005-06-06  Kim F. Storm  <storm@cua.dk>
26300         * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
26301         (cua-global-mark): Remove -face suffix from face names.
26303         * emulation/cua-gmrk.el (cua--init-global-mark):
26304         Remove cua-global-mark face setup.
26306 2005-06-06  Richard M. Stallman  <rms@gnu.org>
26308         * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
26309         just like other allowed characters.
26310         (makefile-match-dependency): Exclude leading and training whitespace
26311         from the range of regexp subexp 1.
26312         (makefile-macroassign-regex): Don't try to match the body,
26313         just the name of the macro being defined.
26315         * info.el (Info-read-node-name-2): New function.
26316         (Info-read-node-name-1): Use that.
26317         Add a completion-base-size-function property.
26319         * simple.el (completion-setup-function): Look for
26320         completion-base-size-function property of minibuffer-completion-table.
26322         * files.el (locate-file-completion): Doc fix.
26324         * printing.el: Don't call pr-update-menus; user must do that.
26326         * emacs-lisp/debug.el (debugger-window): New variable.
26327         (debug): Use debugger-window if it is set and still alive.
26328         Record debugger-window for next entry.
26330         * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
26332 2005-06-06  Matthias F\e,Av\e(Brste  <slashdevslashnull@gmx.net>
26334         * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
26335         (hack-one-local-variable, hack-local-variables)
26336         (hack-local-variables-prop-line): Pass that arg.
26338 2005-06-06  Kim F. Storm  <storm@cua.dk>
26340         * ido.el (ido-first-match, ido-only-match, ido-subdir)
26341         (ido-indicator): Remove -face suffix from face names.
26343 2005-06-06  Juri Linkov  <juri@jurta.org>
26345         * font-lock.el (font-lock-regexp-backslash)
26346         (font-lock-regexp-backslash-construct): New faces.
26347         (lisp-font-lock-keywords-2): Use new faces.  Match `?:' only
26348         after `('.  Add `while-no-input' to control structures.
26350         * faces.el (no-break-space, shadow): New faces.
26351         (escape-glyph): Use less loud colors pink2 and red4.
26353         * diff-mode.el (diff-context-face)
26354         * dired.el (dired-ignored)
26355         * rfn-eshadow.el (file-name-shadow)
26356         * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
26358         * info.el (Info-title-1-face): Use green instead of yellow because
26359         bold yellow is not readable on light backgrounds.
26361         * progmodes/compile.el (compilation-start): Move `erase-buffer' up
26362         before selecting the desired mode to not spend time fontifying
26363         old contents.
26365 2005-06-06  Juanma Barranquero  <lekktu@gmail.com>
26367         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
26368         (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
26370         * ps-print.el (ps-default-fg, ps-default-bg):
26371         Fix typos in docstrings.
26373         * isearchb.el (isearchb): Don't pass a spurious second argument to
26374         `iswitchb-completions'.
26376 2005-06-05  Nick Roberts  <nickrob@snap.net.nz>
26378         * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
26379         to preserve point.
26380         (gdb-find-file-hook): Add doc string.
26382         * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
26383         C dereferenced pointer expression.
26384         (gud-tool-bar-map): Put it on the tool bar.  Re-order icons.
26386         * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
26388         * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
26389         * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
26390         * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
26391         * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
26392         * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
26393         Make background transparent.
26395 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
26397         * font-lock.el (font-lock-add-keywords): Doc fix.  Comment change.
26398         (font-lock-remove-keywords): Doc fix.
26399         (font-lock-mode-major-mode): Compiler defvar.
26400         (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
26402         * font-core.el (font-lock-mode-major-mode): Compiler defvar.
26403         (font-lock-mode): Update `font-lock-mode-major-mode'.
26404         (font-lock-set-defaults): Compiler defvar.
26405         (font-lock-default-function): Take `font-lock-mode-major-mode'
26406         into account.
26408         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
26409         keep track of which major mode it enabled the minor mode for.
26410         Use find-file-hook again.  Update docstring.
26412         * simple.el (eval-expression-print-level)
26413         (eval-expression-print-length, eval-expression-debug-on-error):
26414         Doc fixes.
26416 2005-06-04  Matt Hodges  <MPHodges@member.fsf.org>
26418         * iswitchb.el (iswitchb-single-match-face)
26419         (iswitchb-current-match-face, iswitchb-virtual-matches-face)
26420         (iswitchb-invalid-regexp-face): New faces.
26421         (iswitchb-completions): Use them.
26422         (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
26423         now marked as an obsolete alias.
26424         (iswitchb-read-buffer): Remove check for bound font variables.
26425         (iswitchb-invalid-regexp): New free variable.
26426         (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
26427         set iswitchb-invalid-regexp.
26428         (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
26429         invalid regexps.
26430         (iswitchb-completions): Add check for complete match when entering
26431         a regexp.
26432         (iswitchb-completions): Remove require-match argument.
26433         (iswitchb-exhibit): Fix caller.
26434         (iswitchb-common-match-inserted): New variable.
26435         (iswitchb-complete, iswitchb-completion-help): Use it.
26437 2005-06-04  David Reitter  <david.reitter@gmail.com>  (tiny change)
26439         * url-http.el (url-http-chunked-encoding-after-change-function):
26440         Use `url-http-debug' instead of `message'.
26442 2005-06-04  Thierry Emery  <thierry.emery@free.fr>  (tiny change)
26444         * url-http.el (url-http-parse-headers): Pass redirected URL as a
26445         callback argument.
26447 2005-06-04  Kim F. Storm  <storm@cua.dk>
26449         * simple.el (line-move): Only call sit-for when moving backwards.
26451         * ido.el (ido-make-merged-file-list-1): New defun split from
26452         ido-make-merged-file-list.
26453         (ido-make-merged-file-list): Bind throw-on-input around call to
26454         ido-make-merged-file-list-1.  Return input-pending-p if
26455         interrupted by more input available.
26456         (ido-read-internal): Handle input-pending-p return value from
26457         ido-make-merged-file-list.
26459 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
26461         * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
26462         compatibility code.
26464         * international/latexenc.el (latexenc-find-file-coding-system):
26465         Don't inherit the EOL part of the coding-system from the
26466         tex-main buffer.  Fit within 80 columns.
26468 2005-06-03  Matt Hodges  <MPHodges@member.fsf.org>
26470         * tmm.el (tmm-inactive-face): New face.
26471         (tmm-remove-inactive-mouse-face): New function.
26472         (tmm-prompt, tmm-add-one-shortcut)
26473         (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
26474         but not selectable.
26476 2005-06-03  Juanma Barranquero  <lekktu@gmail.com>
26478         * faces.el (face-equal): Improve argument/docstring consistency.
26480 2005-06-03  Daniel Pfeiffer  <occitan@esperanto.org>
26482         * progmodes/make-mode.el (makefile-targets-face)
26483         (makefile-shell-face, makefile-makepp-perl-face): Add :version.
26484         (makefile-bsdmake-dependency-regex)
26485         (makefile-makepp-rule-action-regex)
26486         (makefile-bsdmake-rule-action-regex): New constants.
26487         (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
26489         * progmodes/compile.el (compilation-error-regexp-alist-alist):
26490         Allow (...) within `...' for makepp messages.
26492 2005-06-03  Michael Kifer  <kifer@cs.stonybrook.edu>
26494         * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
26496         * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
26497         "." files are deleted from all file lists before comparison.
26499         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
26500         (viper-ESC-key): Made them customizable.
26502         * viper.el (viper-non-hook-settings): Fix the names of defadvices.
26504 2005-06-01  Luc Teirlinck  <teirllm@auburn.edu>
26506         * autorevert.el (auto-revert-buffers): Use save-match-data.
26508 2005-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
26510         * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
26511         menu items with a nil command binding.
26513 2005-06-01  Juanma Barranquero  <lekktu@gmail.com>
26515         * emacs-lisp/cl-macs.el (defsetf):
26516         Improve argument/docstring consistency.
26518         * faces.el (list-faces-display): Improve the formatting by
26519         computing the maximum length required for any face-name (reworked
26520         patch of 1999-01-11, accidentally deleted on 1999-07-21).
26521         (internal-find-face): Remove redundant info in docstring.
26523 2005-06-01  Nick Roberts  <nickrob@snap.net.nz>
26525         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
26526         (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
26527         (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
26528         (gdb-assembler-custom): Improve regexps.
26529         (def-gdb-auto-update-handler): Use window point to preserve point.
26531 2005-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
26533         * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
26535 2005-05-31  Jay Belanger  <belanger@truman.edu>
26537         * calc/calc-embed.el (calc-embedded-word): Change argument passed
26538         to calc-embedded.
26539         (calc-embedded-make-info): Have plain prefix argument select
26540         entire line.
26542 2005-05-31  Juanma Barranquero  <lekktu@gmail.com>
26544         * faces.el (list-faces-display): Signal error if passed a regexp
26545         that matches no face name.
26547         * simple.el (filter-buffer-substring): Fix typo in docstring.
26549 2005-05-31  Richard M. Stallman  <rms@gnu.org>
26551         * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
26552         (vhdl-emacs-21): Doc fix.
26553         (vhdl-mode): Unconditionally set comment-padding.
26554         (vhdl-fixup-whitespace-region): Insert spaces only where
26555         there are none.
26556         (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
26558 2005-05-30  John Wiegley  <johnw@newartisans.com>
26560         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
26561         * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
26562         * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
26563         `directory-sep-char' to ?/, and all uses of `string-to-int' to
26564         `string-to-number'.
26566 2005-05-30  Jay Belanger  <belanger@truman.edu>
26568         * calc/calc.el (calc-bug-address): Fix docstring.
26569         (calc-window-hook, calc-trail-window-hook): New variables.
26570         (calc-trail-display): Restore use of calc-trail-window-hook.
26571         (calc): Restore use of calc-window-hook.
26573 2005-05-31  Masatake YAMATO  <jet@gyve.org>
26575         * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
26577         * help-fns.el (help-C-file-name): Add autoload mark for
26578         `find-function-noselect'.
26580 2005-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
26582         * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
26583         (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
26585 2005-05-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
26587         * calendar/diary-lib.el (mark-included-diary-files): Only kill
26588         included diary buffer if it was not already being visited.
26589         Reported by Stephen Berman <Stephen.Berman@gmx.net>.
26591         * calendar/icalendar.el (top-level): Do not require appt.
26593         * mail/supercite.el (sc-select-attribution): Only use a list
26594         element from sc-attrib-selection-list if it returns a string.
26595         Reported by Davide G. M. Salvetti <salve@debian.org>.
26597 2005-05-30  Juanma Barranquero  <lekktu@gmail.com>
26599         * thumbs.el (thumbs-thumbname): The resulting thumbname now
26600         includes a hash value to improve its uniqueness, and has a ".jpg"
26601         extension.  Also, it is now a valid filename on all systems.
26602         (thumbs-make-thumb): Use `let', not `let*'.
26603         (thumbs-show-thumbs-list): Check for JPEG availability.
26605 2005-05-30  Richard M. Stallman  <rms@gnu.org>
26607         * filesets.el (filesets-menu-ensure-use-cached):
26608         Prevent warning when emacs-version>= is undefined.
26610         * printing.el (pr-interactive-n-up): Use string-to-number.
26612         * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
26614         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
26615         Warn only when name to be defined is quoted.
26617 2005-05-30  Nick Roberts  <nickrob@snap.net.nz>
26619         * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
26620         Make regexp more robust.
26621         (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
26622         Force regeneration of disassembly.
26624 2005-05-29  Jay Belanger  <belanger@truman.edu>
26626         * calc/calc.el (calc-user-invocation): Check if
26627         calc-invocation-macro is non-nil.
26629 2005-05-29  Juri Linkov  <juri@jurta.org>
26631         * add-log.el (change-log-font-lock-keywords):
26632         Add `+' to e-mail regexp to accept mail address with keywords.
26634         * man.el (Man-name-regexp): Add `:' to accept qualified names.
26636 2005-05-29  Luc Teirlinck  <teirllm@auburn.edu>
26638         * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
26640         * ielm.el (inferior-emacs-lisp-mode): Ditto.
26642 2005-05-29  Richard M. Stallman  <rms@gnu.org>
26644         * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
26645         Undo the change that moves to end of the current word.
26647 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
26649         * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
26650         Throw error when count <= 0 to ensure input is a number.
26651         (gdb-read-memory-custom): Pick up address from buffer.
26652         (gdb-memory-mode): Allow user to increment and decrement
26653         memory address from header line.
26655 2005-05-29  Richard M. Stallman  <rms@gnu.org>
26657         * flyspell.el (flyspell-version): Function deleted.
26658         (flyspell-auto-correct-previous-hook): Doc fix.
26660         * jit-lock.el (jit-lock-function, jit-lock-after-change):
26661         Do nothing if memory is full.
26663         * font-lock.el (font-lock-fontify-syntactically-region):
26664         Pass t for GREEDY to looking-back.
26666         * saveplace.el (save-place-alist-to-file): Write the file
26667         using write-region.
26669         * subr.el (looking-back): New argument GREEDY.
26671         * progmodes/compile.el (compilation-start): Set the mode
26672         before inserting the initial text.
26674         * progmodes/which-func.el (which-func-update-1): Turn the mode
26675         off in case of error by setting which-func-mode.
26677 2005-05-29  Peter Heslin  <p.j.heslin@durham.ac.uk>  (tiny change)
26679         * flyspell.el (flyspell-auto-correct-previous-word):
26680         Narrow down to what's on the screen, and recenter overlays
26681         at the end of the next word.
26683 2005-05-29  Manuel Serrano  <Manuel.Serrano@sophia.inria.fr>
26685         * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
26686         (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
26687         (flyspell-abbrev-p): Default to nil.
26688         (flyspell-use-global-abbrev-table-p): Doc fix.
26689         (flyspell-large-region): Allow nil as value.
26690         (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
26692         (mail-mode-flyspell-verify): More robust handling
26693         of `mail-header-separator'.  More efficient signature detection.
26694         Allow for regexp metacharacters in message-header-separator.
26695         Adding `To' not to be checked in mail-mode-flyspell-verify.
26697         (flyspell-prog-mode): Run flyspell-prog-mode-hook.
26698         (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
26699         Bind flyspell-auto-correct-binding.
26700         Bind C-. and C-, .
26701         (flyspell-mode-map): Likewise.
26702         (flyspell-mode): Doc fix.
26703         (flyspell-accept-buffer-local-defs): Preserve current buffer.
26704         (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
26705         (flyspell-word-cache-result): New var, always local.
26706         (flyspell-check-pre-word-p): Doc fix.
26707         (flyspell-check-changed-word-p): Handle spc like newline.
26708         (flyspell-post-command-hook): Set flyspell-word-cache-result.
26709         (flyspell-word-search-backward, flyspell-word-search-forward):
26710         New functions.
26711         (flyspell-word): Return t if nothing to check.
26712         When parsing TeX code, check for after } or \.
26713         Use flyspell-word-search-backward to find previous word.
26714         Return nil if duplicated word.
26715         For word already checked, return same value as last time.
26716         Set flyspell-word-cache-result after checking.
26717         Don't clobber the return value.
26718         (flyspell-get-word): Major rewrite.
26719         (flyspell-external-point-words): New locals pword, pcount.
26720         Fix size used in progress message.
26721         Find the proper corresponding word in flyspell-large-region-buffer.
26722         (flyspell-region): Check for flyspell-large-region = nil.
26723         (flyspell-highlight-incorrect-region): Clean up overlays in region.
26724         (flyspell-auto-correct-word): Check that WORD is a cons.
26725         (flyspell-correct-word): Likewise.
26727 2005-05-29  Daniel Pfeiffer  <occitan@esperanto.org>
26729         * progmodes/make-mode.el (makefile-rule-action-regex)
26730         (makefile-macroassign-regex, makefile-makepp-mode)
26731         (makefile-bsdmake-mode): Continuation lines may be empty.
26732         Reported by Joshua Varner.
26733         (makefile-makepp-font-lock-keywords): Add $(stem).
26735 2005-05-28  Karl Berry  <karl@gnu.org>
26737         * textmodes/tex-mode.el: Now that tex-send-command calls
26738         shell-quote-argument (2005-03-31 change), remove all calls to
26739         shell-quote-argument; they all end up invoking tex-send-command.
26740         The double quoting loses on filenames with non-safe characters,
26741         such as "@".  Reported by Frederik Fouvry.
26743 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
26745         * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
26746         about preserving point.
26748 2005-05-27  Jay Belanger  <belanger@truman.edu>
26750         * calc/calc-misc.el (calc-info-goto-node): Use info instead of
26751         Info-goto-node.
26753         * calc/calc-embed.el (calc-embed-arg): New variable.
26754         (calc-do-embedded-activate, calc-embedded-activate-formula)
26755         (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
26756         variable by new variable.
26757         (calc-embedded-make-info): Replace undeclared variable by new
26758         variable.  When selecting region with positive prefix
26759         argument, use end of previous line instead of beginning of line.
26761         * calc/calc-aent.el (calc-arg-values): Declare it.
26763         * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
26764         Declare them.
26766         * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
26768         * calc/calc.el (calc-alg-map): Declare it.
26770         * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
26772 2005-05-28  Nick Roberts  <nickrob@snap.net.nz>
26774         * progmodes/gdb-ui.el (gdb-all-registers): New variable.
26775         (gdb-registers-buffer, toggle-gdb-all-registers):
26776         Toggle display of floating point registers.
26777         (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
26779         * progmodes/gud.el (gud-goto-info): Use info.  Don't use require.
26780         (toggle-gud-tooltip-dereference):
26781         Rename from gud-toggle-tooltip-dereference.
26783 2005-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
26785         * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
26787 2005-05-27  Jay Belanger  <belanger@truman.edu>
26789         * calc/calc-prog.el (calc-kbd-report): Remove.
26790         (calc-kbd-query): Rewrite.
26792 2005-05-27  Juanma Barranquero  <lekktu@gmail.com>
26794         * image.el (image-library-alist): Move to image.c.
26795         (image-type-available-p): Doc fix.
26797 2005-05-27  Lute Kamstra  <lute@gnu.org>
26799         * calc/calc.el (calc):
26800         * outline.el (outline-1, outline-2, outline-3, outline-4)
26801         (outline-5, outline-6, outline-7, outline-8):
26802         * textmodes/dns-mode.el (dns-mode):
26803         * textmodes/sgml-mode.el (sgml-namespace-face):
26804         * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
26805         (tex-verbatim-face, tex-use-reftex):
26806         * textmodes/texinfo.el (texinfo-heading-face):
26807         Specify customization group.
26809         * longlines.el: Don't require easy-mmode.
26810         (longlines-visible-face): Specify customization group.
26812 2005-05-27  Kenichi Handa  <handa@m17n.org>
26814         * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
26815         encoding table of windows-1251.
26817         * international/ucs-tables.el (ucs-set-table-for-input):
26818         If translation-table-for-input of a coding system is a symbol, get
26819         its translation-table property.
26821         * international/code-pages.el: Don't register a coding system into
26822         non-iso-charset-alist more than once.
26823         (cp-make-coding-system): Likewise.
26825 2005-05-26  John Wiegley  <johnw@newartisans.com>
26827         * eshell/esh-cmd.el (eshell-eval-command): If the return value of
26828         `eshell-resume-eval' is wrapped in a list, it indicates that the
26829         command was run asynchronously.  In that case, unwrap the value
26830         before checking the delimiter value.
26832         * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
26833         character before a space at the end of a line is \, assume the space
26834         is part of the last argument rather than a final argument separator.
26836         * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
26837         is in use, and the target is `t' or `nil' (which are the most common
26838         values), don't assume that the symbol target is a buffer.
26840 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
26842         * calendar/calendar.el (calendar-mode-line-format):
26843         Use mode-line-highlight as mouse-face.
26845         * time.el (display-time-string-forms, display-time-update):
26846         Use mode-line-highlight as mouse-face.
26848 2005-05-26  Jay Belanger  <belanger@truman.edu>
26850         * calc/calc.el (calc-language-alist): Remove extra defvar.
26852 2005-05-26  Lute Kamstra  <lute@gnu.org>
26854         * arc-mode.el (archive-mode):
26855         * bookmark.el (bookmark-read-annotation-mode)
26856         (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
26857         * bs.el (bs-mode):
26858         * calc/calc-yank.el (calc-edit-mode):
26859         * calc/calc.el (calc-mode, calc-trail-mode):
26860         * calculator.el (calculator-mode):
26861         * chistory.el (command-history-mode):
26862         * comint.el:
26863         * cus-edit.el (custom-mode):
26864         * descr-text.el (describe-text-mode):
26865         * ebuff-menu.el (Electric-buffer-menu-mode):
26866         * ediff-util.el (ediff-mode):
26867         * emacs-lisp/re-builder.el (reb-mode):
26868         * emulation/vi.el (vi-mode-setup):
26869         * emulation/ws-mode.el (wordstar-mode):
26870         * eshell/esh-mode.el (eshell-mode):
26871         * forms.el (forms-mode):
26872         * help-mode.el (help-mode):
26873         * hexl.el (hexl-mode):
26874         * ibuffer.el (ibuffer-mode):
26875         * ielm.el (inferior-emacs-lisp-mode):
26876         * info.el (Info-mode, Info-edit-mode):
26877         * international/swedish.el:
26878         * ledit.el (ledit-from-lisp-mode):
26879         * locate.el (locate-mode):
26880         * mail/rmail.el (rmail-mode):
26881         * mail/rmailedit.el (rmail-edit-mode):
26882         * mail/rmailsum.el (rmail-summary-mode):
26883         * mail/supercite.el (sc-electric-mode):
26884         * net/eudc.el (eudc-mode):
26885         * net/quickurl.el (quickurl-list-mode):
26886         * net/snmp-mode.el (snmp-mode, snmpv2-mode):
26887         * obsolete/ooutline.el (outline-mode):
26888         * obsolete/options.el (Edit-options-mode):
26889         * obsolete/rnews.el (news-mode):
26890         * obsolete/rnewspost.el (news-reply-mode):
26891         * play/5x5.el (5x5-mode):
26892         * play/decipher.el (decipher-mode, decipher-stats-mode):
26893         * play/gomoku.el (gomoku-mode):
26894         * play/snake.el (snake-mode):
26895         * play/solitaire.el (solitaire-mode):
26896         * play/tetris.el (tetris-mode):
26897         * progmodes/ada-mode.el (ada-mode):
26898         * progmodes/antlr-mode.el (antlr-mode):
26899         * progmodes/autoconf.el (autoconf-mode):
26900         * progmodes/dcl-mode.el (dcl-mode):
26901         * progmodes/delphi.el (delphi-mode):
26902         * progmodes/ebrowse.el (ebrowse-tree-mode)
26903         (ebrowse-electric-list-mode, ebrowse-member-mode)
26904         (ebrowse-electric-position-mode):
26905         * progmodes/f90.el (f90-mode):
26906         * progmodes/fortran.el (fortran-mode):
26907         * progmodes/icon.el (icon-mode):
26908         * progmodes/idlw-help.el (idlwave-help-mode):
26909         * progmodes/idlw-shell.el (idlwave-shell-mode):
26910         * progmodes/idlwave.el (idlwave-mode):
26911         * progmodes/inf-lisp.el (inferior-lisp-mode):
26912         * progmodes/m4-mode.el (m4-mode):
26913         * progmodes/meta-mode.el (metafont-mode, metapost-mode):
26914         * progmodes/modula2.el (modula-2-mode):
26915         * progmodes/octave-inf.el (inferior-octave-mode):
26916         * progmodes/octave-mod.el (octave-mode):
26917         * progmodes/pascal.el (pascal-mode):
26918         * progmodes/sh-script.el (sh-mode):
26919         * progmodes/sql.el (sql-mode, sql-interactive-mode):
26920         * progmodes/vhdl-mode.el (vhdl-mode):
26921         * progmodes/xscheme.el (scheme-interaction-mode):
26922         * replace.el (occur-mode):
26923         * ses.el (ses-mode):
26924         * simple.el (completion-list-mode):
26925         * skeleton.el:
26926         * speedbar.el (speedbar-mode):
26927         * term.el (term-mode):
26928         * terminal.el (terminal-edit-mode):
26929         * textmodes/reftex-index.el (reftex-index-mode)
26930         (reftex-index-phrases-mode):
26931         * textmodes/reftex-sel.el (reftex-select-label-mode)
26932         (reftex-select-bib-mode):
26933         * textmodes/reftex-toc.el (reftex-toc-mode):
26934         * wdired.el (wdired-change-to-wdired-mode):
26935         * wid-browse.el (widget-browse-mode):
26936         Use run-mode-hooks.
26938         * array.el (array-mode):
26939         * calendar/todo-mode.el (todo-mode):
26940         * man.el (Man-mode):
26941         * play/landmark.el (lm-mode):
26942         * play/mpuz.el (mpuz-mode):
26943         Use kill-all-local-variables and run-mode-hooks.
26945         * subr.el (delay-mode-hooks): Specify indentation.
26947 2005-05-26  Mark A. Hershberger  <mah@everybody.org>
26949         * xml.el (xml-substitute-special): Don't die for undefined xml
26950         entities.
26952 2005-05-26  Jay Belanger  <belanger@truman.edu>
26954         * calc/calc-prog.el (calc-user-define-edit): Don't find substring
26955         of nil.
26957 2005-05-27  Nick Roberts  <nickrob@snap.net.nz>
26959         * progmodes/gdb-ui.el (gdb-frame-address):
26960         Rename from gdb-current-address.
26961         (gdb-previous-frame-address): Rename from gdb-previous-address.
26962         (gdb-selected-frame): Rename from gdb-current-frame.
26963         (gdb-get-selected-frame): Rename from gdb-get-current-frame.
26964         (gdb-frame-number): Rename from gdb-current-stack-level.
26965         (gdb-ann3): Match new mode-name for disassembly buffer.
26966         Extend initialization of variables.
26967         (gdb-post-prompt): Update disassembly from gdb-frame-handler.
26968         (gdb-memory-mode): Use mouse-face in header line.
26969         (gdb-assembler-buffer-name): Call it disassembly and give frame
26970         in mode line.
26971         (gdb-source-spec-regexp, gdb-assembler-custom)
26972         (gdb-invalidate-assembler, gdb-frame-handler):
26973         Make robust to leading zeroes in address format.
26975 2005-05-26  Carsten Dominik  <dominik@science.uva.nl>
26977         * textmodes/org.el (org-mode): Use `define-derived-mode' to
26978         define `org-mode'.
26979         (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
26981 2005-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
26983         * log-edit.el (log-edit-changelog-entries): Distinguish between
26984         filenames like xfns.c and fns.c.
26986 2005-05-25  Luc Teirlinck  <teirllm@auburn.edu>
26988         * buff-menu.el (Buffer-menu-revert-function): Improve handling of
26989         point after reverting.
26990         (Buffer-menu-make-sort-button): Handle the case where
26991         `Buffer-menu-use-header-line' is nil.
26993 2005-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
26995         * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
26996         New funcs.  In minibuffer-local-completion-map bind `]', `/'
26997         and `:' to them.
26999 2005-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
27001         * startup.el (normal-top-level): Allow modification of load-path while
27002         we're iterating over it.
27004 2005-05-25  Juanma Barranquero  <lekktu@gmail.com>
27006         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
27007         (thumbs-cleanup-thumbsdir, thumbs-call-convert)
27008         (thumbs-resize-interactive, thumbs-insert-image)
27009         (thumbs-insert-thumb, thumbs-dired-show-marked)
27010         (thumbs-find-image-at-point, thumbs-delete-images)
27011         (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
27012         (thumbs-increment-image-size, thumbs-decrement-image-size):
27013         Fix typos in docstrings.
27015 2005-05-24  Andre Spiegel  <spiegel@gnu.org>
27017         * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
27018         (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
27019         (cperl-mode): Use them.
27021 2005-05-24  Juanma Barranquero  <lekktu@gmail.com>
27023         * window.el (quit-window, shrink-window-if-larger-than-buffer):
27024         Doc fixes.
27026 2005-05-24  Nick Roberts  <nickrob@snap.net.nz>
27028         * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
27029         Bind C-d to gdb-inferior-io-eof.
27031         * dired.el (dired-dnd-popup-notice): Use message-box.
27033 2005-05-23  Masatake YAMATO  <jet@gyve.org>
27035         * bindings.el (mode-line-major-mode-keymap):
27036         Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
27038         * faces.el (mode-line-highlight): New face.
27040         * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
27041         as mouse-face.
27043         * bindings.el (top-level, help-echo, mode-line-modified)
27044         (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
27045         as mouse-face.
27047 2005-05-23  Juanma Barranquero  <lekktu@gmail.com>
27049         * progmodes/cc-engine.el (c-guess-basic-syntax):
27050         Remove spurious call to `zerop'.
27052         * emacs-lisp/cl.el (acons, pairlis): Add docstring.
27054 2005-05-23  Martin Stjernholm  <bug-cc-mode@gnu.org>
27056         CC Mode update to 5.30.10:
27058         * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
27059         could go past the limit in decoration level 2, thereby causing
27060         errors during interactive fontification.
27062         * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
27063         the file is evaluated interactively.
27065         * cc-engine.el (c-guess-basic-syntax): Handle operator
27066         declarations somewhat better in C++.
27068         * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
27069         make use of `run-mode-hooks' which has been added in Emacs 21.1.
27070         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
27071         (awk-mode): Use it.
27072         (make-local-hook): Suppress warning about obsoleteness.
27074         * cc-engine.el, cc-align.el, cc-cmds.el
27075         (c-append-backslashes-forward, c-delete-backslashes-forward)
27076         (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
27077         Compensate for return value from `forward-line' when it has moved
27078         but not to a different line due to eob.
27080         * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
27081         `objc-method-intro' and `objc-method-args-cont'.
27083 2005-05-23  Alan Mackenzie  <bug-cc-mode@gnu.org>
27085         CC Mode update to 5.30.10:
27087         * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
27088         in the copyright statement.  Incidentally, change "along with GNU
27089         Emacs" to "along with this program" where it occurs.
27091         * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
27092         so that it is interactive, hence can be found by M-x awk-mode
27093         whilst cc-mode is yet to be loaded.  Reported by Glenn Morris
27094         <gmorris+emacs@ast.cam.ac.uk>.
27096         * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
27097         Mode's regexps.
27099 2005-05-23  Kevin Ryde  <user42@zip.com.au>
27101         * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
27102         c-parse-state, to avoid a lisp error (on bad code).
27104 2005-05-23  Lute Kamstra  <lute@gnu.org>
27106         * subr.el (font-lock-defaults): Remove defvar as it's already
27107         defined in font-core.el.
27109         * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
27111 2005-05-23  Nick Roberts  <nickrob@snap.net.nz>
27113         * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
27114         more general and work when GDB variable "print pretty" is on,
27115         as with Emacs, for example.
27117 2005-05-22  Luc Teirlinck  <teirllm@auburn.edu>
27119         * font-core.el: Update comment.
27121         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
27122         Use `after-change-major-mode-hook' instead of `find-file-hook'.
27124         * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
27126 2005-05-22  Eli Zaretskii  <eliz@gnu.org>
27128         * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
27129         and `yank-handler' in the doc strings.
27131 2005-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
27133         * emacs-lisp/cl.el (eql): Remove.  It's a builtin already.
27135 2005-05-22  Richard M. Stallman  <rms@gnu.org>
27137         * help.el (describe-key): Move print-help-return-message call
27138         out of conditional.
27140         * progmodes/etags.el (list-tags): Use with-no-warnings.
27142         * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
27143         (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
27144         (starttls-extra-args, starttls-extra-arguments): Add defvars.
27146         * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
27148         * language/viet-util.el (viet-viscii-nonascii-translation-table):
27149         Add defvar.
27151         * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
27152         Use defvar, not defconst.
27154         * hexl.el (hexl-follow-line): Use with-no-warnings.
27156         * emulation/tpu-extras.el: Use write-file-functions instead of
27157         write-file-hooks.
27159         * dired.el (dired-font-lock-keywords): Fontify files with junk
27160         extensions even if marked by -F.
27162 2005-05-22  Juanma Barranquero  <lekktu@gmail.com>
27164         * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
27165         (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
27166         * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
27167         (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
27168         (concatenate, list-length, get*, getf, cl-remprop):
27169         * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
27170         (etypecase, progv, lexical-let, lexical-let*)
27171         (multiple-value-bind, multiple-value-setq, shiftf):
27172         Improve argument/docstring consistency.
27174         * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
27176 2005-05-22  Andre Spiegel  <spiegel@gnu.org>
27178         * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
27179         doesn't exist.
27181         * vc.el (vc-trunk-p): Add autoload cookie.  The function is used in
27182         vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
27184 2005-05-22  Nick Roberts  <nickrob@snap.net.nz>
27186         * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
27187         already deleted variables: auto-fill-hook, blink-paren-hook,
27188         lisp-indent-hook, inhibit-local-variables, unread-command-event,
27189         suspend-hooks, comment-indent-hook, meta-flag,
27190         before-change-function, after-change-function,
27191         font-lock-doc-string-face.
27193 2005-05-21  Luc Teirlinck  <teirllm@auburn.edu>
27195         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
27197 2005-05-21  Eli Zaretskii  <eliz@gnu.org>
27199         * mail/rmail.el (rmail-reply): Filter the list in reply-to through
27200         rmail-dont-reply-to.
27202 2005-05-21  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
27204         * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
27205         literal blank when splitting new-header-values.
27207 2005-05-21  Matt Hodges  <MPHodges@member.fsf.org>
27209         * calendar/cal-menu.el (cal-menu-update): Add separator as a
27210         string so that tmm doesn't create a completion entry for it.
27212         * textmodes/table.el (table-disable-menu): Ditto.
27214 2005-05-21  Richard M. Stallman  <rms@gnu.org>
27216         * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
27218         * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
27220         * net/rcompile.el (remote-compile): Use compilation-start.
27222         * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
27224 2005-05-21  Daniel Pfeiffer  <occitan@esperanto.org>
27226         * files.el (auto-mode-alist): Check GNUmakefile before makefile.
27227         Default to makefile-bsdmake-mode on BSD systems.
27229         * imenu.el (imenu-generic-expression, imenu--generic-function'):
27230         REGEXP may also be a search function now.  The part of doc-string
27231         for describing the structure was 95% identical to that of
27232         `imenu--generic-function'.  Unify it there.
27234         * progmodes/make-mode.el (makefile-imenu-generic-expression):
27235         Use function to find dependencies, because regexp alone is so complex,
27236         it easily goes into an endless loop.
27237         (makefile-makepp-mode): Also add submenu for Perl functions
27238         defined in the makefile.
27239         (makefile-bsdmake-mode): Special imenu-generic-expression no
27240         longer needed, due to function call.
27241         (makefile-match-dependency): Take BOUND into account when checking
27242         if we're through.
27244 2005-05-20  Jay Belanger  <belanger@truman.edu>
27246         * calc/calc-units.el (calc-invalidate-units-table):
27247         Use inhibit-read-only.
27248         (math-build-units-table-buffer): Use view-mode.
27250 2005-05-20  David Kastrup  <dak@gnu.org>
27252         * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
27253         easy-menu-add is not a nop on Emacs; and clarify when to call it.
27255 2005-05-20  Lute Kamstra  <lute@gnu.org>
27257         * diff-mode.el (diff-header-face, diff-file-header-face)
27258         (diff-index-face, diff-hunk-header-face, diff-removed-face)
27259         (diff-added-face, diff-changed-face, diff-function-face)
27260         (diff-context-face, diff-nonexistent-face): Put them in the
27261         diff-mode customization group.
27263 2005-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
27265         * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
27267         * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
27269         * font-lock.el (lisp-font-lock-keywords-2): Don't error.
27270         Minor regexp-optimization.
27272 2005-05-20  Carsten Dominik  <dominik@science.uva.nl>
27274         * textmodes/org.el (org-agenda-toggle-time-grid): New command.
27275         (org-agenda-use-time-grid, org-agenda-time-grid): New options.
27276         (org-agenda-add-time-grid-maybe): New function.
27277         (org-agenda): Call `org-agenda-add-time-grid-maybe'.
27278         (org-table-create): `dotimes' instead of `mapcar'.
27279         (org-xor): Simplify implementation.
27280         (org-agenda): `inhibit-redisplay' turned on.
27281         (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
27282         a consistent line after a state change.
27283         (org-agenda-remove-times-when-in-prefix): New option.
27284         (org-prefix-has-time): New variable.
27285         (org-parse-time-string): Optional argument NODEFAULT.
27286         (org-format-agenda-item): Parse items for time-of-day
27287         specifications and move these into the prefix if possible.
27288         (org-agenda-priority): Get current heading, not previous heading
27289         during agenda remote editing.
27291 2005-05-20  Juanma Barranquero  <lekktu@gmail.com>
27293         * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
27294         (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
27295         (remove-duplicates, delete-duplicates, substitute)
27296         (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
27297         (nsubstitute-if-not, find, find-if, find-if-not, position)
27298         (position-if, position-if-not, count, count-if, count-if-not)
27299         (mismatch, search, sort*, stable-sort, merge, member*)
27300         (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
27301         (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
27302         (intersection, nintersection, set-difference, nset-difference)
27303         (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
27304         (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
27305         (nsublis, tree-equal): Improve argument/docstring consistency.
27307         * subr.el (send-string, send-region): Remove obsolescence declaration.
27308         (window-dot, set-window-dot, read-input, show-buffer)
27309         (eval-current-buffer, string-to-int):
27310         Add release number to obsolescence declarations.
27312 2005-05-19  Kim F. Storm  <storm@cua.dk>
27314         * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
27315         (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
27317 2005-05-20  Matt Hodges  <MPHodges@member.fsf.org>
27319         * faces.el (list-faces-display): Make back button respect optional
27320         regexp arg.
27322 2005-05-19  Juanma Barranquero  <lekktu@gmail.com>
27324         * calculator.el (calculator-radix-grouping-mode)
27325         (calculator-radix-grouping-digits, calculator-displayer)
27326         (calculator-radix-grouping-separator, calculator-copy-displayer):
27327         * dabbrev.el (dabbrev-search-these-buffers-only):
27328         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
27329         (diff-advance-after-apply-hunk, diff-mode-hook)
27330         (diff-minor-mode-prefix):
27331         * imenu.el (imenu-use-popup-menu):
27332         * jit-lock.el (jit-lock-context-time):
27333         * newcomment.el (comment-fill-column, comment-column)
27334         (comment-style, comment-padding, comment-multi-line)
27335         (comment-empty-lines, comment-auto-fill-only-comments):
27336         * reveal.el (reveal-around-mark):
27337         * uniquify.el (uniquify-buffer-name-style)
27338         (uniquify-after-kill-buffer-p)
27339         (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
27340         (uniquify-min-dir-content, uniquify-separator)
27341         (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
27342         * w32-vars.el (w32-fixed-font-alist):
27343         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
27344         * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
27345         * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
27346         * progmodes/perl-mode.el (perl-indent-level)
27347         (perl-continued-statement-offset, perl-continued-brace-offset)
27348         (perl-brace-offset, perl-brace-imaginary-offset)
27349         (perl-label-offset, perl-indent-continued-arguments)
27350         (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
27351         * progmodes/tcl.el (tcl-indent-level)
27352         (tcl-continued-indent-level, tcl-auto-newline)
27353         (tcl-tab-always-indent, tcl-electric-hash-style)
27354         (tcl-help-directory-list, tcl-use-smart-word-finder)
27355         (tcl-application, tcl-command-switches, tcl-prompt-regexp)
27356         (inferior-tcl-source-command):
27357         * textmodes/fill.el (enable-kinsoku):
27358         * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
27359         * textmodes/table.el (table-yank-handler):
27360         Specify missing group (and type, if simple) in defcustom.
27362 2005-05-19  Luc Teirlinck  <teirllm@auburn.edu>
27364         * progmodes/compile.el (compilation-finish-function): Fix defvar.
27366 2005-05-19  Richard M. Stallman  <rms@gnu.org>
27368         * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
27370         * subr.el (event-basic-type): Don't get an error.
27371         (left-fringe-p): Function deleted.
27373         * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
27374         (list-buffers-noselect): Set `font-lock-face' property, not `face'.
27376         * dired-aux.el (dired-copy-file-recursive): Handle symlinks
27377         in recursive copy.
27379         * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
27381         * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
27383         * emacs-lisp/bytecomp.el
27384         (byte-compile-file-form-custom-declare-variable):
27385         Call byte-compile-nogroup-warn if appropriate.
27387         * progmodes/compile.el (compilation-finish-function): Mark obsolete.
27388         (compilation-set-window): Don't call left-fringe-p; do it directly.
27390 2005-05-19  Jay Belanger  <belanger@truman.edu>
27392         * calc/calc-graph.el (calc-graph-format-data): Make sure
27393         var-PlotRejects is bound before trying to check its value.
27395 2005-05-19  Carsten Dominik  <dominik@science.uva.nl>
27397         * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
27398         definition of this variable from reftex-global.el to reftex.el,
27399         because it is needed in the menu.
27401 2005-05-19  Lute Kamstra  <lute@gnu.org>
27403         * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
27404         years are fixed.  Don't insert a space after a dash.
27406 2005-05-19  Kim F. Storm  <storm@cua.dk>
27408         * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
27410 2005-05-19  Daniel Pfeiffer  <occitan@esperanto.org>
27412         * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
27413         strings, because (eq ... ?\\) is fairly frequent.
27415         * progmodes/make-mode.el (makefile-add-this-line-targets):
27416         Simplify and integrate into `makefile-pickup-targets'.
27417         (makefile-add-this-line-macro): Simplify and integrate into
27418         `makefile-pickup-macros.
27419         (makefile-pickup-filenames-as-targets): Simplify.
27420         (makefile-previous-dependency, makefile-match-dependency):
27421         Don't stumble over `::'.
27423 2005-05-19  Nick Roberts  <nickrob@snap.net.nz>
27425         * subr.el (post-command-idle-hook, post-command-idle-delay):
27426         Remove obsoletion of post-command-idle-hook and
27427         post-command-idle-delay.
27429         * faces.el (list-faces-display): Provide button when describe-face
27430         is called to take user back to the list of faces.
27432         * help-fns.el (describe-variable): Remove hyperlinks in a
27433         variable's value as these are quite frequently inappropriate.
27435         * follow.el (follow-submit-feedback, follow-mode):
27436         Remove references to post-command-idle-hook.
27438 2005-05-18  Daniel Pfeiffer  <occitan@esperanto.org>
27440         * progmodes/make-mode.el (makefile-previous-dependency)
27441         (makefile-match-dependency): Check for := (and in bsd mode also
27442         !=) to give a better result, even when font-lock is not on.
27444 2005-05-18  Jay Belanger  <belanger@truman.edu>
27446         * calc/calc-help.el (calc-s-prefix-help):
27447         Add `calc-copy-special-constant' to help string.
27449 2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>
27451         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
27453 2005-05-18  Jay Belanger  <belanger@truman.edu>
27455         * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
27456         in linear factors are in proper order.
27458 2005-05-18  Carsten Dominik  <dominik@science.uva.nl>
27460         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
27461         Support for jurabib.
27463         * textmodes/reftex.el (featurep): Define aliases for overlay
27464         commands, for XEmacs compatibility, and use these aliases in
27465         overlay initializations.
27466         (reftex-highlight): Use `reftex-move-overlay'.
27467         (reftex-unhighlight): Use `reftex-delete-overlay'.
27468         (reftex-uniq): Function removed.  Use `reftex-uniquify' instead.
27469         (reftex-access-search-path): Use `reftex-uniquify' instead of
27470         `reftex-uniq'
27472         * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
27473         `before-string' property modification enables for Emacs as well.
27474         (reftex-select-item): Use `reftex-delete-overlay'.
27475         (reftex-select-mark): Use `reftex-make-overlay' and
27476         `reftex-overlay-put'.
27477         (reftex-select-unmark): Use `reftex-delete-overlay' and
27478         `reftex-overlay-put'.
27480 2005-05-18  Lute Kamstra  <lute@gnu.org>
27482         * emacs-lisp/lisp.el (check-parens): Fix docstring.
27484 2005-05-18  Juanma Barranquero  <lekktu@gmail.com>
27486         * add-log.el (add-change-log-entry):
27487         * array.el (array-make-template, array-reconfigure-rows)
27488         (array-init-max-row, array-init-max-column)
27489         (array-init-columns-per-line, array-init-field-width):
27490         * replace.el (replace-match-maybe-edit, perform-replace):
27491         * textmodes/spell.el (spell-region):
27492         Replace `read-input' by `read-string'.
27494         * forms.el (forms-mode):
27495         * finder.el (finder-compile-keywords):
27496         * shadowfile.el (shadow-read-files):
27497         Replace `eval-current-buffer' by `eval-buffer'.
27499         * terminal.el (te-pass-through):
27500         * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
27501         (ange-ftp-raw-send-cmd):
27502         * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
27503         (send-process-next-char, telnet-initial-filter, telnet):
27504         Replace `send-string' by `process-send-string'.
27506         * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
27507         (prolog-consult-region): Replace `send-string' by
27508         `process-send-string'; replace `send-region' by `process-send-region'.
27510         * progmodes/delphi.el (delphi-log-msg):
27511         Replace `set-window-dot' by `set-window-point'.
27513         * subr.el (window-dot, set-window-dot, read-input, send-string)
27514         (send-region, show-buffer, eval-current-buffer):
27515         Make really obsolete, as the comment says.
27517 2005-05-17  Kim F. Storm  <storm@cua.dk>
27519         * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
27520         (cua--init-keymaps): Bind C-return instead of S-return to set
27521         rectangle mark.
27523         * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
27524         instead of S-return to toggle/clear rectangle mark.
27526 2005-05-17  Daniel Pfeiffer  <occitan@esperanto.org>
27528         * progmodes/make-mode.el (makefile-dependency-skip): New variable.
27529         (makefile-macroassign-regex, makefile-make-font-lock-keywords):
27530         Also fontify plain strings assigned to variables, mostly so that a
27531         colon has a face and is thus not taken as a dependency separator.
27532         (makefile-previous-dependency): Inline the new matcher, because it
27533         is too complex to work in both directions.
27534         (makefile-match-dependency): Eliminate `backward' arg (see above).
27535         Completely reimplemented so as to not sometimes go into an endless
27536         loop.  It should also be more efficient, because first it only
27537         searches for `:', instead of applying the very complex regexp.
27538         (makefile-mode): Cancel `font-lock-support-mode', because blocks
27539         to be fontified in one piece can be too long for JIT.
27540         Makefiles are never *that* big.
27542 2005-05-17  Reiner Steib  <Reiner.Steib@gmx.de>
27544         * dired.el (dired-mode): Simplify.
27546 2005-05-17  Lute Kamstra  <lute@gnu.org>
27548         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
27549         defcustom for the mode hook variable.
27551         * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
27552         Emacs Lisp Reference Manual.
27554 2005-05-17  Juanma Barranquero  <lekktu@gmail.com>
27556         * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
27557         (evenp, list*):
27558         * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
27559         * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
27561         * net/tramp-smb.el (tramp-smb-open-connection):
27562         Pass `tramp-chunksize' as fifth (required) argument.
27564 2005-05-16  Daniel Pfeiffer  <occitan@esperanto.org>
27566         * font-lock.el (lisp-font-lock-keywords-1):
27567         Set `font-lock-negation-char-face' for [^...] char group.
27568         (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
27570         * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
27571         a var, and refine it to mask one more level of nested vars.
27572         (makefile-rule-action-regex): Turn it into a var, and refine it so
27573         it recognizes backslashed continuation lines as belonging to the
27574         same command.
27575         (makefile-macroassign-regex): Refine it so it recognizes
27576         backslashed continuation lines as belonging to the same command.
27577         (makefile-var-use-regex): Don't look at the next char, because it
27578         might be the same one to be skipped by the initial [^$], leading
27579         to an overlooked variable use.
27580         (makefile-make-font-lock-keywords): Remove two parameters, which
27581         are now variables that some of the modes set locally.
27582         Handle dependency and rule action matching through functions, because
27583         regexps alone match too often.  Dependency matching now comes
27584         last, so it can check, whether a colon already matched something else.
27585         (makefile-mode): Inform that font-lock improves makefile parsing
27586         capabilities.
27587         (makefile-match-dependency, makefile-match-action): New functions.
27589 2005-05-16  Juanma Barranquero  <lekktu@gmail.com>
27591         * emacs-lisp/cl-extra.el (equalp): Doc fix.
27593         * align.el (align-regexp):
27594         * ansi-color.el (ansi-color-get-face):
27595         * array.el (array-reconfigure-rows, array-init-max-row)
27596         (array-init-max-column, array-init-columns-per-line)
27597         (array-init-field-width):
27598         * dired-aux.el (dired-trample-file-versions):
27599         * dired-x.el (dired-mark-sexp):
27600         * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
27601         * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
27602         * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
27603         * faces.el (face-read-integer):
27604         * files.el (backup-extract-version, insert-directory):
27605         * hexl.el (hexl-insert-decimal-char):
27606         * server.el (server-process-filter):
27607         * shell.el (shell-extract-num):
27608         * startup.el (command-line-1):
27609         * term.el (term-command-hook):
27610         * time-stamp.el (time-stamp, time-stamp-string-preprocess)
27611         (time-stamp-do-number):
27612         * time.el (display-time-update):
27613         * timezone.el (timezone-parse-date, timezone-zone-to-minute)
27614         (timezone-fix-time):
27615         * vms-patch.el (vms-suspend-resume-hook):
27616         * calendar/appt.el (appt-convert-time):
27617         * calendar/cal-bahai.el (mark-bahai-diary-entries):
27618         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
27619         * calendar/cal-islam.el (mark-islamic-diary-entries):
27620         * calendar/calendar.el (calendar-cursor-to-date)
27621         (calendar-star-date):
27622         * calendar/diary-lib.el (diary-attrtype-convert)
27623         (mark-diary-entries, diary-entry-time):
27624         * calendar/solar.el (solar-get-number):
27625         * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
27626         * emacs-lisp/re-builder.el (reb-display-subexp):
27627         * emulation/edt.el (edt-set-scroll-margins):
27628         * emulation/tpu-extras.el (tpu-set-scroll-margins):
27629         * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
27630         (vip-get-ex-count):
27631         * emulation/viper-ex.el (viper-get-ex-token)
27632         (viper-get-ex-buffer, viper-get-ex-count, ex-next):
27633         * international/fontset.el (fontset-plain-name):
27634         * mail/feedmail.el (feedmail-look-at-queue-directory):
27635         * mail/mailalias.el (mail-get-names):
27636         * mail/rmail.el (rmail-convert-to-babyl-format):
27637         * mail/rmailsum.el (rmail-make-basic-summary-line)
27638         (rmail-summary-next-same-subject, rmail-summary-rmail-update)
27639         (rmail-summary-goto-msg):
27640         * mail/smtpmail.el (smtpmail-read-response):
27641         * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
27642         (ange-ftp-vms-add-file-entry):
27643         * play/gametree.el (gametree-looking-at-ply)
27644         (gametree-current-branch-score):
27645         * progmodes/ada-xref.el (ada-prj-find-prj-file)
27646         (ada-xref-find-in-modified-ali, ada-find-in-src-path):
27647         * progmodes/cperl-mode.el (condition-case):
27648         * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
27649         (ebrowse-set-member-buffer-column-width)
27650         (ebrowse-select-1st-to-9nth):
27651         * progmodes/etags.el (etags-snarf-tag):
27652         * progmodes/flymake.el (flymake-parse-line):
27653         * progmodes/idlw-shell.el (idlwave-shell-parse-line)
27654         (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
27655         (idlwave-shell-menu-def):
27656         * progmodes/ps-mode.el (ps-run-goto-error):
27657         * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
27658         (vhdl-speedbar-contract-level):
27659         * term/mac-win.el (x-handle-numeric-switch):
27660         * term/sun-mouse.el (sun-get-frame-data):
27661         * term/w32-win.el (x-handle-numeric-switch):
27662         * term/x-win.el (x-handle-numeric-switch):
27663         * textmodes/ispell.el (ispell-parse-output):
27664         * textmodes/nroff-mode.el (nroff-outline-level):
27665         * textmodes/reftex-cite.el (reftex-bib-sort-year)
27666         (reftex-bib-sort-year-reverse, reftex-format-citation):
27667         * textmodes/reftex-parse.el (reftex-init-section-numbers)
27668         (reftex-section-number):
27669         * textmodes/texinfmt.el (texinfo-paragraphindent):
27670         Replace `string-to-int' by `string-to-number'.
27672         * international/latexenc.el: Add page marker to force the "Local
27673         Variables:" string out of the last page.
27675 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
27677         * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
27678         tooltip-change-major-mode.
27679         (gud-tooltip-print-command): Remove case where gud-minor-mode
27680         is gdb ("--fullname").
27681         (gud-tooltip-tips): Turn GUD tooltips off for this case and
27682         explain to user.
27684 2005-05-16  Jay Belanger  <belanger@truman.edu>
27686         * calc/calc-store.el (calc-copy-special-constant): New function.
27688         * calc/calc-ext.el (calc-init-extensions): Add binding for
27689         `calc-copy-special-constant'.
27691         * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
27692         for the `calc-copy-special-constant' command.
27694 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
27696         * subr.el (left-fringe-p): New function.
27698         * progmodes/compile.el (compilation-setup): Set local value of
27699         overlay-arrow-string to "" always.
27700         (compilation-set-window): Left fringe then don't scroll.
27701         No left fringe then no arrow and scroll message to top.
27702         (compilation-context-lines): Adjust doc string accordingly.
27704 2005-05-16  Kim F. Storm  <storm@cua.dk>
27706         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
27707         (ido-magic-delete-char): New commands for C-f, C-b, C-d.
27708         (ido-wide-find-dir-or-delete-dir): New command for M-d.
27709         (ido-define-mode-map): Bind them.  Add C-x prefix to fallback commands.
27710         (ido-read-file-name): Handle commands with ido property value
27711         equal to find-file as reading a file name, to allow C-d to enter dired.
27712         (ibuffer-find-file): Add ido property with value find-file.
27714 2005-05-15  Kim F. Storm  <storm@cua.dk>
27716         * subr.el (open-network-stream-nowait): Remove.
27717         (open-network-stream-server): Remove.
27719 2005-05-15  Richard M. Stallman  <rms@gnu.org>
27721         * faces.el (describe-face): Output a definition link button.
27723         * help-mode.el (help-face-def): New button type.
27725         * emacs-lisp/copyright.el (copyright-fix-years):
27726         Match properly if the first year is 2-digit.
27727         Don't mess up the whitespace after the years by filling.
27729         * dired-aux.el (dired-mark-confirm):
27730         Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
27732         * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
27733         (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
27734         (dired-mark-pop-up): Handle FILES = (t FILE) specially.
27736         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
27737         Set font-lock-comment-start-skip.
27739         * font-lock.el (font-lock-comment-start-skip): New variable.
27740         (font-lock-comment-end-skip): New variable.
27741         (font-lock-fontify-syntactically-region): Use them if non-nil.
27743 2005-05-15  Jay Belanger  <belanger@truman.edu>
27745         * calc/calc-store.el (calc-store-value): Return a string rather
27746         than display it as a message.
27747         Use calc-var-name for variable name.
27748         (calc-store-into): Add the result of calc-store-value to message.
27749         (calc-copy-variable): Add a message.
27750         (calc-store-exchange): Improve error messages.
27751         (calc-store-binary, calc-store-map): Don't reset the values of
27752         special constants.
27754 2005-05-14  Luc Teirlinck  <teirllm@auburn.edu>
27756         * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
27757         manual to docstring.
27759         * files.el (hack-local-variables-confirm): Add STRING argument.
27760         Make the function handle non file visiting buffers correctly.
27761         (hack-local-variables-prop-line, hack-local-variables)
27762         (hack-one-local-variable): Use STRING arg of
27763         `hack-local-variables-confirm'.
27765 2005-05-14  Michael Albinus  <michael.albinus@gmx.de>
27767         Sync with Tramp 2.0.49.
27769         * net/tramp.el (tramp-handle-dired-call-process)
27770         (tramp-handle-insert-directory):`insert-buffer' cannot be used
27771         because the contents of the Tramp buffer is changed before
27772         insertion (`expand-file' and alike).
27773         (tramp-handle-insert-directory): If `localname' has an empty
27774         nondirectory name, it must not be quoted.
27775         (tramp-pre-connection): Add parameter CHUNKSIZE.  Make local
27776         variable `tramp-chunksize'.  Change callees.
27777         (tramp-open-connection-setup-interactive-shell): Check remote host
27778         for buggy `send-process-string' implementation.
27779         Set `tramp-chunksize' if found.  Reported by Michael Kifer
27780         <kifer@cs.sunysb.edu> (and a lot of other people all the years).
27781         (tramp-handle-shell-command): `insert-buffer' cannot be used
27782         because the contents of the Tramp buffer is changed before
27783         insertion (`expand-file' and alike).  Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
27784         <frederic.bothamy@free.fr>.
27785         (tramp-set-auto-save): Actions should be done for Tramp file name
27786         handler only.  Ange-FTP has its own auto-save mechanism.
27787         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
27788         (tramp-set-auto-save-file-modes): Set file modes of
27789         `buffer-auto-save-file-name' to ?\600 as fallback solution.
27790         Reported by Ferenc Wagner <wferi@tba.elte.hu>.
27791         (tramp-bug): Remove obsolete variable.
27792         (tramp-append-tramp-buffers): Rewrite partly.  More suitable check
27793         for presence of `mml-mode'.  Make it running for older Emacsen as well.
27795 2005-05-14  John Paul Wallington  <jpw@pobox.com>
27797         * ibuf-ext.el (define-ibuffer-filter filename):
27798         If `dired-directory' is a list, use its car.
27800 2005-05-14  Daniel Brockman  <daniel@brockman.se>  (tiny change)
27802         * ibuffer.el (define-ibuffer-column filename):
27803         If `dired-directory' is a list, use its car.
27805 2005-05-14  Richard M. Stallman  <rms@gnu.org>
27807         * subr.el (symbol-file): Doc fix.
27809         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
27810         (byte-compile-form): Call byte-compile-nogroup-warn.
27811         (byte-compile-warning-types): Doc fix.
27813         * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
27815         * progmodes/cc-engine.el (c-literal-faces):
27816         Add font-lock-comment-delimiter-face.
27818         * net/net-utils.el (dig): Use with-no-warnings.
27820         * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
27821         (sc-recite-frame-alist, sc-default-cite-frame)
27822         (sc-default-uncite-frame, sc-default-recite-frame)
27823         (sc-attrib-selection-list, sc-rewrite-header-list):
27824         Mark as risky-local-variable.
27826         * international/ogonek.el (ogonek-jak, ogonek-how):
27827         Don't use beginning-of-buffer.
27829         * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
27831         * calendar/solar.el (solar-data-list): Move definition up.
27833         * dnd.el (dnd-protocol-alist): Add autoload.
27835         * progmodes/sh-script.el: Many doc usage fixes.
27836         (sh-indent-after-do): Change default to match common styles.
27838 2005-05-13  Luc Teirlinck  <teirllm@auburn.edu>
27840         * files.el (interpreter-mode-alist)
27841         (auto-mode-interpreter-regexp): Doc fixes.
27843 2005-05-13  Matt Hodges  <MPHodges@member.fsf.org>
27845         * tmm.el (tmm-get-keymap): Include only active menus and menu items.
27847         * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
27849 2005-05-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
27851         * dired.el (dired-mode): make-variable-buffer-local =>
27852         make-local-variable.
27854 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
27856         * term/mac-win.el (mac-select-convert-to-string): Try coding
27857         systems in mac-script-code-coding-systems if specified one cannot
27858         encode string for `com.apple.traditional-mac-plain-text'.
27860 2005-05-13  Daniel Pfeiffer  <occitan@esperanto.org>
27862         * progmodes/make-mode.el (makefile-targets-face)
27863         (makefile-shell-face, makefile-makepp-perl-face): New faces.
27864         (makefile-dependency-regex): Fix it to not make the colon in
27865         $(var:a=b) special.
27866         (makefile-rule-action-regex): New regexp for highlighting embedded
27867         Shell strings.
27868         (makefile-macroassign-regex): Handle != for highlighting as
27869         embedded Shell strings.
27870         (makefile-var-use-regex): New const.
27871         (makefile-statements, makefile-automake-statements)
27872         (makefile-gmake-statements, makefile-makepp-statements)
27873         (makefile-bsdmake-statements): New consts.
27874         (makefile-make-font-lock-keywords): New function.
27875         (makefile-automake-font-lock-keywords)
27876         (makefile-gmake-font-lock-keywords)
27877         (makefile-makepp-font-lock-keywords)
27878         (makefile-bsdmake-font-lock-keywords): New consts.
27879         (makefile-mode-map): Add switchers between the various submodes.
27880         (makefile-mode): Document the availability of the variants.
27881         (makefile-automake-mode, makefile-gmake-mode)
27882         (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
27884         * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
27885         new variants of makefile-mode.
27887 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
27889         * font-lock.el (font-lock-comment-delimiter-face): Fix up
27890         the inheritance.
27892 2005-05-12  Luc Teirlinck  <teirllm@auburn.edu>
27894         * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
27895         (inferior-lisp-load-hook): Convert defcustoms back to defvars.
27897         * files.el (normal-mode): Extend the scope of the
27898         `enable-local-variables' binding to include the `set-auto-mode' call.
27899         (magic-mode-alist): Doc fix.
27901 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
27903         * font-lock.el (font-lock-comment-delimiter-face): Inherit from
27904         font-lock-comment-face rather than copying its setting.
27906 2005-05-12  Andreas Schwab  <schwab@suse.de>
27908         * eshell/esh-mode.el (eshell-send-input): Doc fix.
27910 2005-05-12  Lute Kamstra  <lute@gnu.org>
27912         * emacs-lisp/generic.el (define-generic-mode): Don't generate a
27913         defcustom for the mode hook variable.  Delete the last argument.
27914         * generic-x.el: Fix callers of define-generic-mode.
27915         (generic-x-modes): Delete group.
27916         (show-tabs-tab-face, show-tabs-space-face): Put them in the
27917         generic-x customization group.
27919 2005-05-12  Kim F. Storm  <storm@cua.dk>
27921         * font-lock.el (font-lock-negation-char-face): Default to "off".
27923         * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
27924         font-lock-negation-char-face to ! in !=.
27926 2005-05-12  Masatake YAMATO  <jet@gyve.org>
27928         * add-log.el (find-change-log): Fix typos in the docstring
27929         of function.
27931 2005-05-11  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
27933         * international/latexenc.el (latexenc-find-file-coding-system):
27934         Avoid `re-search-forward' when looking for input encoding because
27935         of speed and safety.  Better regular expressions for recognizing
27936         input encoding.  Limit a search for TeX-master/tex-main-file to
27937         the local variable section.
27939 2005-05-11  Dan Nicolaescu  <dann@ics.uci.edu>
27941         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
27942         syntax of $ to "'" (quote).
27944 2005-05-11  Reiner Steib  <Reiner.Steib@gmx.de>
27946         * dnd.el (dnd-protocol-alist): Improve custom type.
27948         * dired.el (dired-dnd-protocol-alist): New variable.
27949         (dired-mode): Use `dired-dnd-protocol-alist'.  Move call of
27950         `dired-mode-hook' to the end.
27952 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
27954         * font-lock.el (font-lock-fontify-syntactically-region): Don't use
27955         comment-end if comment-start-skip is not set.
27956         Obey the font-lock-comment-delimiter-face variables.
27958 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
27960         * files.el (executable-find): Move from executable.el.  Use
27961         locate-file.
27962         * progmodes/executable.el (executable-find): Move to files.el.
27964         * font-lock.el (font-lock-fontify-keywords-region): Use a marker
27965         when trying to ensure forward progress.
27967 2005-05-11  Chong Yidong  <cyd@stupidchicken.com>
27969         * mouse-sel.el (mouse-sel-follow-link-p): New function.
27970         (mouse-select, mouse-select-internal, mouse-extend-internal):
27971         Use it to implement mouse-1-click-follows-link functionality.
27973 2005-05-11  Richard M. Stallman  <rms@gnu.org>
27975         * font-lock.el (font-lock-fontify-syntactically-region):
27976         Use font-lock-comment-delimiter-face for comment delimiters.
27978 2005-05-10  Jay Belanger  <belanger@truman.edu>
27980         * calc/calc-help.el (calc-m-prefix-help): Add mention of
27981         preserving embedded modes.
27983 2005-05-10  Richard M. Stallman  <rms@gnu.org>
27985         * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
27987         * progmodes/ada-mode.el (ada-adjust-case-skeleton):
27988         Move from ada-stmt.el.
27989         (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
27991         * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
27992         Move to ada-mode.el.
27993         (ada-stmt-mode-hook): Delete; do the work in ada-mode.
27995         * cus-edit.el (custom-file): Call file-chase-links.
27997         * files.el (read-directory-name): Fix previous change.
27998         (hack-local-variables-confirm): New function.
27999         (hack-local-variables-prop-line, hack-local-variables)
28000         (hack-one-local-variable): Use it.
28002 2005-05-10  Lute Kamstra  <lute@gnu.org>
28004         * font-lock.el (font-lock-keywords-alist)
28005         (font-lock-removed-keywords-alist): Clarify docstrings.
28007 2005-05-10  Nick Roberts  <nickrob@snap.net.nz>
28009         * progmodes/gdb-ui.el (gdb-macro-info): New variable.
28010         (gdb-source-info): Check for preprocessor info.
28011         (gdb-tooltip-print-1): New function.  Don't print tooltip if it is
28012         a macro for a function.
28013         (gdb-info-breakpoints-custom): Try to find file again if not already
28014         found (user might have used GDB dir command).
28015         (gdb-get-location): Update gdb-location-alist correctly for change
28016         to gdb-info-breakpoints-custom.
28018         * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
28019         (gud-tooltip-print-command): Add gdbmi case.
28020         (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
28021         preprocessor info.
28023 2005-05-09  Reiner Steib  <Reiner.Steib@gmx.de>
28025         * startup.el (fancy-splash-insert): Fix typo in doc string.
28027 2005-05-09  Juanma Barranquero  <lekktu@gmail.com>
28029         * obsolete/float.el (string-to-float):
28030         * obsolete/hilit19.el (hilit-add-pattern):
28031         * obsolete/rnews.el (news-parse-range, news-select-message)
28032         (news-get-pruned-list-of-files): Replace `string-to-int' by
28033         `string-to-number'.
28035         * obsolete/uncompress.el: Set `find-file-not-found-functions', not
28036         `find-file-not-found-hooks'; use `add-hook'.
28037         (uncompress-while-visiting): Set `write-file-functions', not
28038         `write-file-hooks'; use `add-hook'.
28040 2005-05-09  Kim F. Storm  <storm@cua.dk>
28042         * emulation/cua-base.el (cua-copy-region, cua-cut-region)
28043         (cua-paste): Handle clipboard action.
28044         (cua--init-keymaps): Remap clipboard-kill-region and
28045         clipboard-kill-ring-save.
28047 2005-05-08  Eli Zaretskii  <eliz@gnu.org>
28049         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
28050         Improve commentary.
28052         * simple.el (next-error-overlay-arrow-position): Revert the change
28053         made on 2005-04-30.
28055 2005-05-07  Jay Belanger  <belanger@truman.edu>
28057         * calc/calcsel2.el (calc-commute-left, calc-commute-right)
28058         (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
28059         `calc-sel-reselect'.
28061         * calc/calc-mode.el (calc-save-modes): Reset the modes list if
28062         Calc is in embedded mode.
28064 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
28066         * progmodes/compile.el (compilation-setup):
28067         Set overlay-arrow-string to an empty string on text terminals.
28069         * textmodes/ispell.el (ispell-program-name): Try looking for
28070         "aspell" along exec-path, and if found, use it as the default
28071         speller program.
28073 2005-05-07  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
28075         * international/mule.el (sgml-xml-auto-coding-function):
28076         Recognize encoding='FOO' in single quotes as well as in double quotes.
28078 2005-05-07  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
28080         * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
28081         as well as `interactive', so that defmacro* would recognize
28082         `declare' forms.
28084 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
28086         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
28087         Explain more about the LIGHTER arg's usage in the doc string.
28088         Add commentary to clarify what the code does.  Fix the regexp that
28089         strips whitespace from LIGHTER.  Quote LIGHTER before using it,
28090         since it could have characters special to regular expressions.
28092 2005-05-07  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
28094         * replace.el (occur-1): Bind inhibit-read-only so that
28095         erase-buffer doesn't barf on read-only text properties (likewise
28096         for add-text-properties in occur-engine).  Mark buffer as unmodified.
28097         (occur-engine): Don't set buffer-read-only here.
28099 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
28101         * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
28102         list-buffers-directory.  This caused the *cvs-commit* buffer to be
28103         sometimes mistakenly reused as a *cvs* buffer.
28105 2005-05-07  Nick Roberts  <nickrob@snap.net.nz>
28107         * tooltip.el: Move code for GUD tooltips into gud.el.
28108         (require): CL no longer needed to compile case.
28109         (tooltip-mode): Do not toggle functions for GUD tooltips.
28110         (tooltip-gud-tips-p): Remove.  Replace with minor mode
28111         gud-tooltip-mode in gud.el.
28112         (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
28113         (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
28114         tooltip-gud prefix with gud-tooltip and obsolete.
28115         (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
28116         (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
28117         (tooltip-mouse-motion): Mouse movement functions/variable.
28118         Rename in gud.el by adding gud prefix.
28119         (tooltip-gud-original-filter, tooltip-gud-dereference)
28120         (tooltip-gud-event, tooltip-toggle-gud-tips)
28121         (tooltip-gud-process-output, tooltip-gud-print-command)
28122         (tooltip-gud-tips): GUD tooltip functions/variables.  Rename in
28123         gud.el by replacing tooltip-gud prefix with gud-tooltip.
28124         (gdb-tooltip-print): Move to gdb-ui.el.
28126         * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
28127         (require): CL needed to compile case.
28128         (gud-tooltip-mode): Use to toggle GUD tooltips instead of
28129         tooltip-gud-tips-p.  Make it a minor-mode.
28130         (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
28131         (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
28132         (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
28133         (gud-tooltip-change-major-mode)
28134         (gud-tooltip-activate-mouse-motions-if-enabled)
28135         (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
28136         (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
28137         (gud-tooltip-original-filter, gud-tooltip-dereference)
28138         (gud-tooltip-event, tooltip-toggle-gud-tips)
28139         (gud-tooltip-process-output, gud-tooltip-print-command)
28140         (gud-tooltip-tips): Move from tooltip.el.
28142         * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
28143         (gdb-cpp-define-alist-flags): Doc fix.
28144         (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
28145         gud-tooltip-mode is t.
28147 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
28149         * net/goto-addr.el (goto-address-fontify): Make sure the overlays
28150         evaporate if their text is deleted.
28151         (goto-address-at-point): Make it work as a mouse binding as well.
28152         (goto-address-at-mouse): Obsolete it.  Update users.
28154 2005-05-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
28156         * calendar/appt.el (top-level): No longer activate on load.
28158 2005-05-06  Juanma Barranquero  <lekktu@gmail.com>
28160         * calendar/cal-bahai.el (mark-bahai-diary-entries):
28161         * net/webjump.el (webjump):
28162         * progmodes/idlw-help.el (idlwave-do-context-help1)
28163         (idlwave-highlight-linked-completions):
28164         * textmodes/po.el (po-find-file-coding-system-guts):
28165         Replace `assoc-ignore-case' by `assoc-string'.
28167 2005-05-06  Eli Zaretskii  <eliz@gnu.org>
28169         * files.el (locate-file): Doc fix.
28171         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
28172         Remove the redundant test for ms-dos.
28174         * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
28175         look for the preprocessor with exec-suffixes.  If not found in
28176         standard places, look in exec-path.  Remove most of the tests that
28177         used system-type.
28179         * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
28181         * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
28183         * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
28184         file-name clash with jka-compr.el on 8+3 filesystems.
28186 2005-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28188         * term/mac-win.el: Don't define or bind scroll bar functions if
28189         x-toolkit-scroll-bars is t.
28190         (x-select-text, x-get-selection-value): Clear
28191         x-last-selected-text-clipboard if x-select-enable-clipboard is
28192         nil.
28193         (PRIMARY): Put mac-scrap-name property.
28194         (mac-select-convert-to-file-url): New function.
28195         (public.file-url): New selection target type.  Add to
28196         selection-converter-alist.
28197         (x-get-selection, x-selection-value): Handle it.
28198         (x-cut-buffer-or-selection-value): New alias.
28200 2005-05-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
28202         * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
28203         entry to avoid calling bibtex-find-entry with arg global
28204         being t.  Remove arg key.
28205         (bibtex-summary-function, bibtex-complete-crossref-cleanup)
28206         (bibtex-copy-summary-as-kill): Change accordingly.
28208 2005-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
28210         * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
28211         (org-agenda-date-later): Use with-current-buffer.
28213 2005-05-05  Luc Teirlinck  <teirllm@auburn.edu>
28215         * emacs-lisp/byte-run.el (define-obsolete-function-alias)
28216         (define-obsolete-variable-alias): Doc Fixes.
28218 2005-05-06  Kim F. Storm  <storm@cua.dk>
28220         * simple.el (line-move-1): Fix 2005-04-26 change.  Must still use
28221         vertical-motion when selective-display is active.
28223         * ido.el (ido-setup-hook): New hook.
28224         (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
28225         (ido-input-stack): New var.
28226         (ido-define-mode-map): Bind M-b to ido-push-dir.  Move old
28227         ido-next-work-file binding to M-O.
28228         Bind M-f to ido-wide-find-file-or-pop-dir.
28229         (ido-define-mode-map): Don't run ido-define-mode-map-hook.
28230         (ido-read-internal): Run ido-setup-hook.
28231         Catch quit in read-file-name and read-string to cancel edit.
28232         Handle new push, pop, and pop-all exit codes (for M-b/M-f).
28233         Automatically pop-all when completing a directory name (RET).
28234         (ido-file-internal): Add with-no-warnings around ffap and dired code.
28235         (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
28236         (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
28237         (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
28238         New functions for M-b/M-f to move among the directory components.
28239         (ido-make-merged-file-list): Catch quit to cancel merge.
28240         (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
28241         (ido-completion-help): No warnings for ido-completion-buffer-full.
28243 2005-05-05  Daniel Pfeiffer  <occitan@esperanto.org>
28245         * font-lock.el (font-lock-negation-char-face): New face and variable.
28246         * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
28247         * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
28248         * progmodes/cperl-mode.el (cperl-init-faces): Use it.
28249         * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
28251 2005-05-05  Juanma Barranquero  <lekktu@gmail.com>
28253         * emacs-lisp/byte-run.el (define-obsolete-function-alias):
28254         Fix typo in docstring.
28256         * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
28257         (ebrowse-print-statistics-line)
28258         (ebrowse-electric-position-mode-hook): Fix typo in docstring.
28260         * term/w32-win.el (image-library-alist): Add additional name for
28261         Xpm library.
28263 2005-05-05  Nick Roberts  <nickrob@snap.net.nz>
28265         * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
28266         use gcc instead of cpp.
28268         * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
28269         (gdb-create-define-alist): Use it.
28270         (gdb-cpp-define-alist-program): Update for MS-DOS.
28272 2005-05-04  Nick Roberts  <nickrob@snap.net.nz>
28274         * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
28276 2005-05-04  Richard M. Stallman  <rms@gnu.org>
28278         * help.el (describe-key): No error when UNTRANSLATED is nil.
28280         * simple.el (line-move-1): Fix previous change to signal errors
28281         appropriately.
28283 2005-05-03  Ulf Jasper  <ulf.jasper@web.de>
28285         * calendar/icalendar.el (icalendar-version): Now at 0.12.
28286         (icalendar-duration-correction): Remove.
28287         (icalendar--get-event-properties): Split result at commas.
28288         (icalendar--decode-isoduration): New optional argument
28289         DURATION-CORRECTION.
28290         (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
28291         (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
28292         (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
28293         (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
28294         (icalendar--convert-anniversary-to-ical): New functions, extracted
28295         from icalendar-export-region, with bug fixes.
28296         (icalendar-export-region): Use the above functions.
28297         (icalendar-import-buffer): Check before saving diary file.
28298         (icalendar--convert-recurring-to-diary)
28299         (icalendar--convert-non-recurring-all-day-to-diary)
28300         (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
28301         extracted from icalendar--convert-ical-to-diary, with bug fixes.
28302         (icalendar--convert-ical-to-diary): Use the above functions.
28304 2005-05-03  Nick Roberts  <nickrob@snap.net.nz>
28306         * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
28307         Remove these recent additions.
28308         (c-mode): Restore to before 2005-04-28.
28310         * progmodes/cc-vars.el (cc-define-list-program): Remove this
28311         recent addition.
28313         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
28314         (gdb-define-alist): New variables.
28315         (gdb-create-define-alist): New function.
28316         (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
28317         (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
28318         with string-to-number.
28319         (gdb-reset): Kill gdb-define-alist.  Move assignments outside loop.
28321         * progmodes/gud.el: Replace string-to-int with string-to-number.
28322         (gud-find-file): Handle gdb-define-alist.
28324         * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
28326 2005-05-02  Jay Belanger  <belanger@truman.edu>
28328         * calc/calc-aent.el (math-read-token):
28329         * calc/calc-bin.el (calc-word-size):
28330         * calc/calc-ext.el (calc-read-number-fancy):
28331         * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
28332         (math-parse-date, math-parse-standard-date, calcFunc-tzone):
28333         * calc/calc-frac.el (calc-over-notation):
28334         * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
28335         (calc-graph-num-points, calc-graph-init):
28336         * calc/calc-prog.el (calc-read-parse-table-part)
28337         (calc-edit-macro-repeats):
28338         * calc/calc-yank.el (calc-do-grab-rectangle):
28339         * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
28340         Replace `string-to-int' by `string-to-number'.
28342 2005-05-02  Kim F. Storm  <storm@cua.dk>
28344         * kmacro.el: Use executing-kbd-macro-index variable.
28346 2005-05-02  Thien-Thi Nguyen  <ttn@gnu.org>
28348         * net/rlogin.el (rlogin-parse-words): Delete func.
28349         (rlogin): Use split-string, not rlogin-parse-words.
28350         Also, if there are option-like elements in the parsed args,
28351         take the host to be the first arg immediately following them.
28352         Suggested by Michael Mauger.
28354 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
28356         * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
28358 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
28360         * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
28361         (cc-mode-cpp-program): Rename to cc-define-list-program and
28362         move to cc-vars.el.
28364         * progmodes/cc-vars.el (cc-define-list-program):
28365         Change to "gcc -E -dM -".  Make customizable.
28367 2005-05-02  Kim F. Storm  <storm@cua.dk>
28369         * emulation/cua-base.el: Fix check for CUA-mode if no init file.
28371 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
28373         * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
28375         * international/mule-util.el (truncate-string): Remove alias and
28376         obsolete declaration.
28378         * international/mule-cmds.el (update-iso-coding-systems):
28379         Remove alias and obsolete declaration.
28381         * international/mule.el (coding-system-parent): Remove alias and
28382         obsolete declaration.
28384         * subr.el (define-function, sref): Remove aliases and obsolete
28385         declarations.
28386         (chars-in-region): Remove obsolete declaration.
28388 2005-05-01  Richard M. Stallman  <rms@gnu.org>
28390         * info.el (Info-mode): Set widen-automatically to nil, locally.
28392         * simple.el (widen-automatically): New variable.
28393         (pop-global-mark): Obey widen-automatically.
28395 2005-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
28397         * term/xterm.el (function-key-map): Call substitute-key-definition
28398         before the keymap size is increased by a lot of define-key calls.
28400 2005-05-01  Richard M. Stallman  <rms@gnu.org>
28402         * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
28403         Rename ARG to ELEMENT.  Doc fix.
28405 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
28407         * allout.el (allout-exposure): Remove macro and obsolete declaration.
28408         Remove references to allout-exposure/change to allout-new-exposure.
28410         * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
28411         bytecode symbols.
28413         * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
28414         (compiled-function-p, focus-frame, unfocus-frame):
28415         Remove aliases and obsolete declarations.
28416         Back out inadvertent changes from previous commit.
28418 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
28420         * files.el (require-final-newline): Make Custom tags consistent
28421         with mode-require-final-newline.
28422         (mode-require-final-newline): Doc fix.
28424 2005-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
28426         * international/latexenc.el (latexenc-find-file-coding-system):
28427         Fix regular expressions.
28429 2005-05-01  David Kastrup  <dak@gnu.org>
28431         * international/latexenc.el (latexenc-find-file-coding-system):
28432         Fix regular expressions.
28434 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
28436         * subr.el (string-to-int): Make obsolete.
28438 2005-04-30  Richard M. Stallman  <rms@gnu.org>
28440         * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
28442         * loadup.el: load jka-comp-hook.
28444         * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
28445         (jka-compr-handler): Add autoload.  `put' calls moved
28446         to jka-comp-hook.el.
28447         (compression, jka-compr): defgroups moved to jka-comp-hook.el.
28448         (jka-compr-inhibit): Autoload.
28450         * jka-comp-hook.el: New file.
28451         Enable the mode by default.
28453         * files.el (backup-buffer-copy): Use copy-file instead
28454         of write-region, and put back the 'excl.
28456 2005-04-30  Chong Yidong  <cyd@stupidchicken.com>
28458         * progmodes/flymake.el (flymake-split-string)
28459         (flymake-split-string, flymake-log, flymake-pid-to-names)
28460         (flymake-reg-names, flymake-get-source-buffer-name)
28461         (flymake-unreg-names, flymake-add-line-err-info)
28462         (flymake-add-err-info): Clarify docstrings.
28463         (flymake-popup-menu, flymake-make-emacs-menu)
28464         (flymake-make-xemacs-menu): Add docstrings.
28465         (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
28466         Set variables directly throughout.
28468 2005-04-30  Nick Roberts  <nickrob@snap.net.nz>
28470         * progmodes/cc-mode.el (cc-create-define-alist): Check that file
28471         exists.  Initialize cc-define-alist.
28472         (c-mode): Add cc-create-define-alist locally to after-save-hook.
28473         If there is no file (Macroexpansion) don't create an alist.
28475 2005-04-29  Sam Steingold  <sds@gnu.org>
28477         * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
28478         (cc-create-define-alist): Use it instead of the hard-coded string.
28480 2005-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
28482         * international/mule-conf.el (file-coding-system-alist): Fix regexp
28483         for latexenc.
28485 2005-04-29  Lute Kamstra  <lute@gnu.org>
28487         * emacs-lisp/generic.el: Improve commentary section.
28488         (define-generic-mode): Improve docstring.
28490 2005-04-29  Carsten Dominik  <dominik@science.uva.nl>
28492         * textmodes/org.el (many places): Change to quiet the byte compiler.
28493         (org-prefix-format-compiled): New variable.
28494         (org-compile-prefix-format): New function.
28495         (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
28496         (org-agenda-prefix-format, org-timeline-prefix-format): New options.
28497         (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
28498         (org-get-entries-from-diary): Use `org-get-time-of-day' for
28499         consistency with entries from `org-mode' files.
28500         (org-get-time-of-day): Fix bug with partial matches early in a line.
28501         (org-non-link-chars): New constant.
28502         (org-link-regexp): Respect `org-non-link-chars'.
28503         (org-agenda-day-view): Remove command.
28504         (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
28505         (org-follow-bbdb-link, org-store-link): Search also company field.
28506         (org-highlight-overlay): New variable.
28507         (org-highlight, org-unhighlight): New functions.
28508         (org-agenda-mode): Add pre-command-hook to remove highlight.
28509         (org-evaluate-time-range): Behavior depends upon whether time stamp
28510         contains a time or not.
28511         (org-show-subtree, org-show-entry): New functions.
28512         (org-agenda-cleanup-fancy-diary): Remove empty lines.
28514 2005-04-28  Luc Teirlinck  <teirllm@auburn.edu>
28516         * comint.el (comint-output-filter-functions): Add autoload cookie.
28518 2005-04-28  Kim F. Storm  <storm@cua.dk>
28520         * ido.el (ido-everywhere): Fix last change.
28522 2005-04-28  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
28524         * international/latexenc.el: New file.
28525         * international/mule-conf.el (file-coding-system-alist): For .tex,
28526         .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
28528 2005-04-28  Lute Kamstra  <lute@gnu.org>
28530         * font-lock.el (font-lock-add-keywords)
28531         (font-lock-remove-keywords): Clarify docstring.
28532         (font-lock-keywords-alist, font-lock-removed-keywords-alist):
28533         Don't start docstrings with a `*'.
28534         (font-lock-update-removed-keyword-alist): Give it a docstring.
28536         * generic-x.el: Update commentary section.
28537         Only require font-lock when compiling.
28538         Define all modes conditionally.
28539         Place all generic modes in the generic-x-modes customization group.
28540         (generic-x-modes): New customization group.
28541         (generic-default-modes, generic-mswindows-modes)
28542         (generic-unix-modes, generic-other-modes): New constants.
28543         (generic-define-mswindows-modes, generic-define-unix-modes):
28544         Update docstrings.  Make them obsolete.
28545         (generic-extras-enable-list): New default value.  Update docstring.
28546         Improve :type.  Change :set function.
28547         (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
28548         Fix docstring.
28550         * emacs-lisp/generic.el (generic-mode-internal):
28551         Simplify font-lock-defaults.
28552         (define-generic-mode): Fix docstring.
28554 2005-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
28556         * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
28557         font-lock-face property to highlight matches.
28559 2005-04-28  Nick Roberts  <nickrob@snap.net.nz>
28561         * progmodes/cc-mode.el (cc-create-define-alist): New function.
28562         (cc-define-alist): New variable.
28563         (c-mode): Make it local and initialize it.
28565         * progmodes/gdb-ui.el (gdb-active-process): New variable.
28566         (gdb-exited): New function.
28567         (gdb-annotation-rules): Use it.
28568         (gdb-starting): Set gdb-active-process to t.
28569         (gdb-stopping): Amend doc string.
28570         (gdb-reset): Set gdb-active-process to nil.
28572         * tooltip.el (tooltip-gud-tips): Show the associated #define
28573         directives when a C program under GDB is not executing.
28575 2005-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
28577         * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
28578         font-lock-fontify-syntactic-keywords.
28580         * font-lock.el (font-lock-default-fontify-region): Don't force
28581         parse-sexp-lookup-properties to nil.
28583 2005-04-27  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
28585         * man.el (man-mode-syntax-table): Set up `:' to have
28586         word-constituent syntax.
28588 2005-04-27  Lute Kamstra  <lute@gnu.org>
28590         * novice.el (disable-command): Don't add spurious newlines to the
28591         init file.  Reported by Dan Jacobson <jidanni@jidanni.org>.
28593 2005-04-26  Jay Belanger  <belanger@truman.edu>
28595         * calc/calc-yank.el (calc-edit-finish): Make sure there is more
28596         than one window before deleting window.
28598 2005-04-26  Luc Teirlinck  <teirllm@auburn.edu>
28600         * shell.el (shell-prompt-pattern): Doc fix.
28601         (shell-mode): Set paragraph-separate buffer locally to "\\'".
28603         * comint.el (comint-prompt-regexp, comint-get-old-input)
28604         (comint-use-prompt-regexp)
28605         (comint-use-prompt-regexp-instead-of-fields)
28606         (comint-replace-by-expanded-history, comint-send-input)
28607         (comint-output-filter, comint-get-old-input-default)
28608         (comint-line-beginning-position, comint-bol, comint-show-output)
28609         (comint-backward-matching-input, comint-forward-matching-input)
28610         (comint-next-prompt, comint-previous-prompt):
28611         Rename `comint-use-prompt-regexp-instead-of-fields' to
28612         `comint-use-prompt-regexp'.  Keep old name as alias and declare
28613         obsolete.
28614         (comint-use-prompt-regexp): Shorten first line of doc string.
28616         * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
28617         Set paragraph-separate buffer locally to "\\'".
28619         * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
28620         Adapt to above name change.
28622         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
28623         (smbclient-prompt-regexp): Ditto.
28625         * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
28627 2005-04-27  Nick Roberts  <nickrob@snap.net.nz>
28629         * progmodes/gdb-ui.el (gdb-location-alist): Rename from
28630         gdb-location-list.
28631         Break lines that are over 80 characters wide.
28633 2005-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
28635         * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
28636         New fun and var, to preserve compatibility.
28638         * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
28640 2005-04-26  Dominique de Waleffe  <ddw@missioncriticalit.com>  (tiny change)
28642         * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
28643         name to file-newer-than-file-p.
28645 2005-04-26  Richard M. Stallman  <rms@gnu.org>
28647         * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
28649         * progmodes/python.el (python-mode):
28650         Use new name eldoc-documentation-function.
28652         * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
28654         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
28655         (eldoc-documentation-function):
28656         Rename from eldoc-print-current-symbol-info-function.  Calls changed.
28658 2005-04-26  Nick Roberts  <nickrob@snap.net.nz>
28660         * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
28662 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
28664         * term/xterm.el (function-key-map): Fix strings for
28665         {C,S,A,C-S}-f[1-4].  Use substitute-key-definition to bind
28666         {C,S,A,C-S}-{f1-f12}.
28668 2005-04-26  Kenichi Handa  <handa@m17n.org>
28670         * international/mule-cmds.el (select-safe-coding-system):
28671         Fix previous change.
28673 2005-04-26  Lute Kamstra  <lute@gnu.org>
28675         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
28677         * font-lock.el (font-lock-fontify-region-function): Fix docstring.
28678         (font-lock-comment-delimiter-face): Ditto.
28680         * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
28682 2005-04-25  Jay Belanger  <belanger@truman.edu>
28684         * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
28685         to t while inserting information; use help-mode.
28687 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
28689         * term.el (ansi-term-color-vector): Use the xterm colors.
28690         (term-raw-map): Don't add mappings for \eO and \e[.  Map deletechar.
28692 2005-04-25  Lute Kamstra  <lute@gnu.org>
28694         * font-core.el (font-lock-defaults): Fix docstring.
28696         * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
28698 2005-04-25  Kenichi Handa  <handa@m17n.org>
28700         * international/mule-cmds.el (select-safe-coding-system):
28701         Don't check consistency with coding: spec, etc if raw-text or
28702         no-conversion was found to be safe.
28704 2005-04-24  Richard M. Stallman  <rms@gnu.org>
28706         * mail/sendmail.el (mail-font-lock-keywords): Match any number of
28707         citation markers at start of each line.
28709         * mail/rmail.el (rmail-font-lock-keywords): Match any number of
28710         citation markers at start of each line.
28712         * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
28714         * files.el (mode-require-final-newline): Fix previous change.
28715         (require-final-newline): Fix type label.
28717 2005-04-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
28719         * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
28720         statement in buffer (broken by 2004-11-24 change).
28722 2005-04-24  Kim F. Storm  <storm@cua.dk>
28724         * ido.el (ido-everywhere): Save and restore old read-buffer-function
28725         and read-file-name-function values.  Don't overwrite existing
28726         non-nil values if ido-mode is enabled without ido-everywhere.
28728 2005-04-24  Luc Teirlinck  <teirllm@auburn.edu>
28730         * files.el (mode-require-final-newline): Minor doc fix.
28732 2005-04-24  Eli Zaretskii  <eliz@gnu.org>
28734         * subr.el (syntax-after): Doc fix.
28735         (syntax-class): If argument is nil, return nil.  Mask off upper 16
28736         bits, not 8 bits.
28738         * files.el (mode-require-final-newline): Doc fix.
28739         (backup-buffer-copy): Fix last change.
28741 2005-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28743         * term/mac-win.el: Require select.  Set selection-coding-system to
28744         mac-system-coding-system.  Call menu-bar-enable-clipboard.
28745         (x-last-selected-text-clipboard, x-last-selected-text-primary)
28746         (x-select-enable-clipboard): New variables.
28747         (x-select-text, x-get-selection, x-selection-value)
28748         (x-get-selection-value, mac-select-convert-to-string)
28749         (mac-services-open-file, mac-services-open-selection)
28750         (mac-services-insert-text): New functions.
28751         (CLIPBOARD, FIND): Put mac-scrap-name property.
28752         (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
28753         (public.tiff): Put mac-ostype property.
28754         (selection-converter-alist): Add entries for them.
28755         (mac-application-menu-map): New keymap.
28756         (interprogram-cut-function, interprogram-paste-function): Set to
28757         x-select-text and x-get-selection-value, respectively.
28758         (split-window-keep-point): Set to t.
28760 2005-04-23  Richard M. Stallman  <rms@gnu.org>
28762         * files.el (read-directory-name): Always pass non-nil
28763         DEFAULT-FILENAME arg to read-file-name.
28764         (backup-buffer-copy, basic-save-buffer-2): Take care against
28765         writing thru an unexpected existing symlink.
28766         (revert-buffer): In indirect buffer, revert the base buffer.
28767         (magic-mode-alist): Doc fix.
28768         (buffer-stale-function): Doc fix.
28769         (minibuffer-with-setup-hook): Avoid warning.
28770         (mode-require-final-newline): Doc and custom fix.
28772         * follow.el (follow-end-of-buffer): Use with-no-warnings.
28774         * font-lock.el (font-lock-comment-face): On terminals with few colors,
28775         use the default appearance.
28776         (font-lock-comment-delimiter-face): New face, new variable.
28778         * imenu.el (imenu--generic-function): The official position of a
28779         definition is the start of the line that BEG is in.
28781         * midnight.el (midnight-timer): Move defvar up.
28783         * mouse.el (mouse-drag-region-1): Delete some debugging code.
28785         * saveplace.el (save-place-to-alist): Use with-no-warnings.
28787         * startup.el (command-line): Use with-no-warnings.
28789         * window.el (window-size-fixed): New defvar.
28791         * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
28793         * mail/rmail.el (rmail-font-lock-keywords):
28794         Use font-lock-comment-delimiter-face.
28796         * mail/sendmail.el (mail-font-lock-keywords):
28797         Use font-lock-comment-delimiter-face.
28799         * progmodes/compile.el (next-error-highlight-timer): New defvar.
28801 2005-04-23  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
28803         * progmodes/compile.el (compilation-mode-font-lock-keywords):
28804         Specify t for LAXMATCH when matching directories.
28805         Save match data around compilation-compat-error-properties form.
28807 2005-04-23  David Kastrup  <dak@gnu.org>
28809         * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
28810         Mention that the autoloaded aliases should be kept for AUCTeX.
28812 2005-04-23  Andreas Schwab  <schwab@suse.de>
28814         * isearch.el (isearch-forward): Doc fix.
28816 2005-04-23  Eli Zaretskii  <eliz@gnu.org>
28818         * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
28819         (jit-lock-stealth-nice): Change default value to 0.5.
28821 2005-04-23  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
28823         * abbrev.el (write-abbrev-file): Write table entries in
28824         alphabetical order by table name.
28826 2005-04-22  Kim F. Storm  <storm@cua.dk>
28828         * ido.el (ido-read-internal): Fix `list' completion.
28830 2005-04-22  Kenichi Handa  <handa@m17n.org>
28832         * recentf.el (recentf-save-file-coding-system): New variable.
28833         (recentf-save-list): Encode the file by
28834         recentf-save-file-coding-system and add coding: tag.
28836 2005-04-22  Nick Roberts  <nickrob@snap.net.nz>
28838         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
28840 2005-04-21  Lute Kamstra  <lute@gnu.org>
28842         * loadhist.el (unload-feature): Don't remove a function from hooks
28843         if it is about to be restored to an autoload .  Remove functions
28844         that will become unbound from auto-mode-alist.  Simplify the code.
28846         * subr.el (assq-delete-all): New implementation that is linear,
28847         not quadratic.  Suggested by David Kastrup <dak@gnu.org>.
28848         (rassq-delete-all): New function.
28850         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
28851         Add size-indication-mode.
28853 2005-04-21  Kenichi Handa  <handa@m17n.org>
28855         * international/mule-cmds.el: Add autoload for widget-value in
28856         eval-when-compile.
28858 2005-04-21  Nick Roberts  <nickrob@snap.net.nz>
28860         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
28861         Add tooltip-mode.
28863         * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
28865 2005-04-20  Luc Teirlinck  <teirllm@auburn.edu>
28867         * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
28868         (inferior-lisp-filter-regexp, inferior-lisp-program)
28869         (inferior-lisp-load-command, inferior-lisp-prompt)
28870         (inferior-lisp-mode-hook, lisp-source-modes)
28871         (inferior-lisp-load-hook): defvar->defcustom.
28872         (inferior-lisp-program, inferior-lisp-prompt)
28873         (inferior-lisp-load-hook): Doc fixes.
28874         (inferior-lisp-install-letter-bindings): Small change in
28875         introductory comment.
28877 2005-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
28879         * vc.el (vc-annotate-color-map): Change some colors so that text
28880         using them as foreground is readable on both white and black
28881         backgrounds.
28883 2005-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
28885         * international/mule-conf.el (translation-table-for-input):
28886         Remove redundant declaration.
28888 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
28890         * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
28892         * tooltip.el (tooltip-gud-tips-p): Expand documentation.
28893         (tooltip-toggle-gud-tips): New function.
28895 2005-04-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28897         * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
28898         right angle brackets.
28900 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
28902         * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
28904 2005-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
28906         * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
28907         Remove.  Update callers to use expand-file-name instead.
28909         * subr.el (syntax-class): New function.
28911         * simple.el (blink-matching-open): Use it.
28913         * paren.el (show-paren-function): Use it to recognize parens that are
28914         also used in 2-char comment markers.
28916 2005-04-19  Lute Kamstra  <lute@gnu.org>
28918         * loadhist.el (unload-feature): Update for new format of
28919         load-history.  Simplify the code.
28921 2005-04-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28923         * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
28924         (mac-add-charset-info): New function.  Initialize variable
28925         mac-charset-info-alist using it.
28926         (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
28927         for translation.
28928         (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
28929         (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
28930         (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
28931         New CCL programs.
28933 2005-04-19  Kim F. Storm  <storm@cua.dk>
28935         * simple.el (next-buffer, prev-buffer, next-error)
28936         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
28937         (clone-indirect-buffer-other-window): Move bindings to bindings.el.
28939         * bindings.el (next-buffer, prev-buffer, next-error)
28940         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
28941         (clone-indirect-buffer-other-window): Move bindings from simple.el.
28942         (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
28943         (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
28945 2005-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
28947         * isearch.el (isearch-edit-string): Make the search-ring available for
28948         minibuffer history commands.
28949         (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
28950         the default history commands now work just as well.
28951         (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
28953 2005-04-18  Kim F. Storm  <storm@cua.dk>
28955         * emulation/cua-base.el (cua--pre-command-handler): Add more
28956         elaborate check for shift modifier on non-window systems.
28958 2005-04-18  Lars Hansen  <larsh@math.ku.dk>
28960         * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
28962 2005-04-18  Kim F. Storm  <storm@cua.dk>
28964         * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
28965         and make it optional.  Don't test tooltip-gud-echo-area here.
28966         (tooltip-gud-process-output, gdb-tooltip-print):
28967         Pass tooltip-gud-echo-area to tooltip-show.
28968         (tooltip-help-tips): Remove second optional arg to tooltip-show.
28970 2005-04-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28972         * tooltip.el (tooltip-mode): `emacs-quick-startup' and
28973         `display-graphic-p' may not be bound yet.
28975 2005-04-17  Luc Teirlinck  <teirllm@auburn.edu>
28977         * startup.el (command-line): No longer enable Xterm Mouse mode by
28978         default in terminals compatible with xterm.
28980         * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
28982 2005-04-18  Nick Roberts  <nickrob@snap.net.nz>
28984         * tooltip.el (tooltip-gud-echo-area): Rename from
28985         tooltip-use-echo-area.
28986         (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
28987         (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
28988         area independently of where help tooltips are displayed.
28990 2005-04-17  David Kastrup  <dak@gnu.org>
28992         * cus-theme.el (custom-theme-write-variables): Quote variables
28993         where necessary.
28995 2005-04-17  Richard M. Stallman  <rms@gnu.org>
28997         * simple.el (yank-excluded-properties): Add follow-link to value.
28999         * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
29001         * startup.el (fancy-splash-max-time): Just 30 seconds.
29002         (fancy-splash-delay): Just 7.
29003         (fancy-splash-screens): No time limit other than fancy-splash-max-time.
29005         * loadhist.el (unload-feature): Update for new format of load-history.
29006         Simplify the code.
29008         * mail/rmail.el (rmail-ignored-headers): Ignore more headers
29009         (rmail-font-lock-keywords): Don't fontify the text of a citation.
29011         * mail/sendmail.el (mail-font-lock-keywords):
29012         Don't fontify subject text.
29013         Don't fontify the text of a citation.
29015 2005-04-17  Mark H. Weaver  <mhw@netris.org>  (tiny change)
29017         * comint.el (comint-output-filter): Run comint-output-filter-functions
29018         with point where the user had it.
29020 2005-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
29022         * international/ucs-tables.el (ucs-set-table-for-input):
29023         Disable when using unify-on-decoding.
29025 2005-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
29027         * emulation/cua-base.el (cua-global-mark-face): Add special case
29028         for displays supporting a high number of colors.
29030 2005-04-16  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
29032         * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
29034 2005-04-16  Chong Yidong  <cyd@stupidchicken.com>
29036         * filesets.el (filesets-add-buffer): If user supplies a name of a
29037         non-existing fileset, create a new fileset.
29039 2005-04-16  Carsten Dominik  <dominik@science.uva.nl>
29041         * textmodes/org.el (org-up-heading-all): Fix bug with
29042         `outline-up-heading-all'.
29044 2005-04-16  Andreas Schwab  <schwab@suse.de>
29046         * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
29047         /etc/permissions.d/* and /etc/aliases.d/*.
29049 2005-04-16  Kenichi Handa  <handa@m17n.org>
29051         * international/code-pages.el (cp-make-coding-system):
29052         Set `translation-table-for-input' property value to the symbol
29053         ucs-mule-to-mule-unicode, not to that value.
29054         (pt154): Escape guillemet by `\'.
29056 2005-04-15  Luc Teirlinck  <teirllm@auburn.edu>
29058         * loadup.el: Load tooltip if x-show-tip is fboundp.
29060         * startup.el (command-line): Add comment.
29062         * tooltip.el (tooltip-mode): Specify correct standard value for
29063         Custom in init-value.
29065 2005-04-15  Nick Roberts  <nickrob@snap.net.nz>
29067         * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
29068         possible.
29070 2005-04-15  Carsten Dominik  <dominik@science.uva.nl>
29072         * textmodes/org.el (org-agenda-date-prompt): Rename from
29073         `org-agenda-date-today'.
29074         (org-evaluate-time-range): Insert at point instead of directly
29075         after time range.
29076         (org-first-headline-recenter, org-subtree-end-visible-p)
29077         (org-optimize-window-after-visibility-change): New functions
29078         (org-agenda-post-command-hook): Don't allow point at end of line,
29079         to make sure it always hits the text properties.
29080         (org-agenda-next-date-line, org-agenda-previous-date-line):
29081         New commands.
29082         (org-set-regexps-and-options): Category may contain white space.
29083         (org-agenda-get-deadlines, org-agenda-get-scheduled):
29084         Improve marker positions.
29085         (org-agenda-new-marker): Argument POS made optional.
29086         (org-agenda-get-timestamps): Deadlines which are done are listed
29087         in org-done-face now.
29088         (org-agenda-get-todos, org-agenda-get-timestamps)
29089         (org-agenda-get-deadlines, org-agenda-get-scheduled):
29090         Set `undone-face' and `done-face' properties.
29091         (org-last-todo-state-is-todo): New variable.
29092         (org-todo): Set `org-last-todo-state-is-todo'.
29093         (org-agenda-todo): Change face according to
29094         `org-last-todo-state-is-todo'.  And change other lines referring to
29095         the same entry.
29096         (org-calendar-goto-agenda): New command.
29097         (org-calendar-to-agenda-key): New option.
29098         (org-startup-folded): New allowed value `content'.
29099         (org-set-regexps-and-options): Accept new value `content' for
29100         `org-startup-folded'.
29101         (org-get-current-options): Handle new value `content' for
29102         `org-startup-folded'.
29103         (org-insert-todo-heading): New command.
29104         (org-mode): Insert first line "*-* mode: org-mode -*-" when called
29105         interactively in empty file and option
29106         `org-insert-mode-line-in-empty-file' has been set.
29107         (org-agenda-todo, org-agenda-priority): Modify to use
29108         `org-agenda-change-all-lines'.
29109         (org-warning-face): Change color on dark background
29111 2005-04-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
29113         * international/mule-cmds.el (set-locale-environment): On Mac OS,
29114         use preferences AppleLocale and AppleLanguages, and variable
29115         mac-system-locale for default locale.  On Mac OS Classic, use
29116         mac-system-coding-system for default coding systems.
29118         * term/mac-win.el: Don't set file-name-coding-system.
29119         Decode variables system-name, emacs-build-system, user-login-name, and
29120         user-full-name by mac-system-coding-system on Mac OS Classic.
29121         (mac-system-coding-system): New variable.
29123 2005-04-13  Luc Teirlinck  <teirllm@auburn.edu>
29125         * startup.el (command-line): Handle `xterm-mouse-mode' before
29126         reading init file.
29128         * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
29130 2005-04-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
29132         * progmodes/sh-script.el (sh-here-document-word): Make it a
29133         defcustom.  Doc fix.
29134         (sh-add): Bash uses $(( )) for arithmetic.
29135         (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
29136         (sh-maybe-here-document): Remove quotes and leading whitespace
29137         from heredoc word when closing.  Indent heredoc with tabs if word
29138         starts with "-".
29140 2005-04-13  Richard M. Stallman  <rms@gnu.org>
29142         * simple.el (undo): Fix previous change.
29144         * custom.el (defface): Doc fix.
29146 2005-04-13  Lute Kamstra  <lute@gnu.org>
29148         * Makefile.in (DONTCOMPILE): Remove list.
29149         (compile, compile-always): Don't use DONTCOMPILE.
29150         (update-authors): Load the library in which batch-update-authors
29151         is defined.
29152         * makefile.w32-in (DONTCOMPILE): Remove list.
29153         (compile, compile-always): Fix comments.
29154         (update-authors): Load the library in which batch-update-authors
29155         is defined.
29157         * generic-x.el (generic-mode-ini-file-find-file-hook):
29158         Rename to ini-generic-mode-find-file-hook.
29159         Keep generic-mode-ini-file-find-file-hook as an alias.
29160         (ini-generic-mode-find-file-hook): Rename from
29161         generic-mode-ini-file-find-file-hook.  Fix docstring.
29162         (ini-generic-mode): Docstring change.
29163         (bat-generic-mode-run-as-comint): Silence the byte compiler.
29165         * help.el (describe-key-briefly): UNTRANSLATED can be nil when
29166         called from lisp.
29168         * generic.el: Move to the emacs-lisp subdir.
29170 2005-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
29172         * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
29173         and C-S- function and cursor motion keys.
29175 2005-04-12  Luc Teirlinck  <teirllm@auburn.edu>
29177         * startup.el (command-line): Enable Xterm Mouse mode by default.
29178         * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
29179         for Custom.  No longer show "Mouse" in mode line when enabled.
29180         Doc fix.
29182 2005-04-12  Kim F. Storm  <storm@cua.dk>
29184         * emulation/cua-base.el (cua-rectangle-face)
29185         (cua-rectangle-noselect-face): Define face attributes here.
29187         * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
29189 2005-04-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
29191         * startup.el (command-line): Turn off blinking cursor if
29192         cursorBlink in resources is off or false.
29194 2005-04-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
29196         * term/mac-win.el (dnd): Require dnd.
29197         (mac-drag-n-drop): Call dnd-handle-one-url.
29198         (kTextEncodingMacRoman, kTextEncodingISOLatin1)
29199         (kTextEncodingISOLatin2): Remove constants.
29200         (mac-script-code-coding-systems): New constant.
29201         (mac-handle-language-change): New function.
29202         (special-event-map): Bind it to `language-change' event.
29203         (mac-centraleurroman, mac-cyrillic): New coding systems.
29204         (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
29205         (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
29206         and mac-cyrillic-encoder to encode-mac-centraleurroman and
29207         encode-mac-cyrillic, respectively.
29209 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
29211         * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
29212         Don't set overlay-arrow-string to "=>" as this is done
29213         globally in C now.
29215 2005-04-12  Lute Kamstra  <lute@gnu.org>
29217         * generic-x.el (rc-generic-mode, rul-generic-mode):
29218         Fix auto-mode-alist entries.
29219         (etc-fstab-generic-mode): Tweak fontification.
29221         * generic.el (generic-make-keywords-list): Fix docstring.
29222         (generic-mode-internal): Simplify generic-font-lock-keywords.
29224 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
29226         * whitespace.el (whitespace-buffer-leading)
29227         (whitespace-buffer-trailing): Revert the incorrect test inversion.
29228         However, fix the highlight area for the leading and
29229         trailing whitespaces to show space.
29231 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
29233         * whitespace.el (whitespace-version): Bump to 3.5
29235         (whitespace-buffer-leading, whitespace-buffer-trailing):
29236         Invert sense of the test to highlight the whitespace.
29238 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
29240         * progmodes/gud.el (gud-display-line): GUD uses its own
29241         overlay arrow now so don't set overlay-arrow-string.
29242         (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
29244 2005-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
29246         * term.el (term-ansi-current-bold, term-ansi-current-underline)
29247         (term-ansi-current-reverse, term-ansi-current-invisible)
29248         (term-ansi-face-already-done): Change to boolean.
29249         (term-reset-terminal, term-handle-colors-array): Handle the above
29250         vars accordingly.
29251         (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
29252         (term-emulate-terminal): Use the new name.
29254         * faces.el (secondary-selection): Use yellow1, not yellow.
29255         (trailing-whitespace): Use red1, not red.
29257 2005-04-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
29259         * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
29260         (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
29261         (dired-dnd-handle-file): Call dnd-get-local-file-uri
29263         * cus-edit.el (dnd): New group.
29265         * term/w32-win.el (dnd): Require dnd
29266         (w32-drag-n-drop): Call dnd-handle-one-url.
29268         * x-dnd.el: Require dnd.
29269         (x-dnd-handle-uri-list, x-dnd-handle-file-name):
29270         Call dnd-handle-one-url.
29271         (x-dnd-types-alist, x-dnd-insert-utf8-text)
29272         (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
29273         to dnd-insert-text.
29274         (x-dnd-protocol-alist, x-dnd-open-file-other-window)
29275         (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
29276         (x-dnd-get-local-file-name, x-dnd-open-local-file)
29277         (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
29279         * dnd.el (dnd-protocol-alist): New file with generic DND functions.
29281 2005-04-11  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
29283         * wdired.el: Doc fixes.
29284         (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
29285         (wdired-use-dired-vertical-movement): Rename from
29286         wdired-always-move-to-filename-beginning.
29287         (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
29288         (wdired-change-to-wdired-mode): Change mode name.
29289         (wdired-newline): Delete.
29291 2005-04-11  Richard M. Stallman  <rms@gnu.org>
29293         * whitespace.el (whitespace-highlight-the-space):
29294         Don't call whitespace-unhighlight-the-space here.
29296         * simple.el (undo): Record t in undo-equiv-table
29297         for the redo record made by an undo-in-region.
29299 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
29301         * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
29302         (gdb-frame-inferior-io-buffer): New Functions to control
29303         display of separate IO buffer.
29304         (menu): Add them to menu-bar.
29305         (gdb-display-buffer): Check for buffer another frame.
29306         Protect GUD buffer.
29307         (gdb-setup-windows): Create IO buffer if not already there.
29308         (gdb-memory-mode): Remove purecopy noops.
29310 2005-04-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
29312         * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
29313         and pass to self-insert-command.
29315 2005-04-11  Lute Kamstra  <lute@gnu.org>
29317         * generic.el: Commentary section cleanup.
29318         (generic): Delete.
29319         (generic-use-find-file-hook, generic-lines-to-scan)
29320         (generic-find-file-regexp, generic-ignore-files-regexp)
29321         (default-generic-mode, generic-mode-find-file-hook)
29322         (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
29323         * generic-x.el (generic-x): Docstring fix.  Put it in the data group.
29324         (generic-use-find-file-hook, generic-lines-to-scan)
29325         (generic-find-file-regexp, generic-ignore-files-regexp)
29326         (default-generic-mode, generic-mode-find-file-hook)
29327         (generic-mode-ini-file-find-file-hook): Move from generic.el.
29329 2005-04-10  Karl Fogel  <kfogel@red-bean.com>
29331         * bookmark.el (bookmark-write-file): Catch errors writing file.
29332         This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
29334 2005-04-10  Richard M. Stallman  <rms@gnu.org>
29336         * startup.el (fancy-splash-tail): Update copyright year.
29337         (command-line): Split part of -Q into -D.
29338         (emacs-basic-display): New defvar.
29339         (fancy-splash-text): Correct name of menu item.
29341         * saveplace.el (save-place-alist-to-file): Catch errors writing file.
29343         * info.el (Info-fontify-node): Handle fontification of multiple * Menu
29344         lines in one node.
29346         * comint.el (comint-send-input): New arg ARTIFICIAL.
29347         Callers in this file changed.
29349         * abbrev.el (define-abbrevs): Read system abbrevs properly.
29351         * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
29353 2005-04-10  Chong Yidong  <cyd@stupidchicken.com>
29355         * url/url-ldap.el (url-ldap): Add docstring.  Fix call to
29356         `ldap-search-internal'.
29358 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
29360         * files.el (set-auto-mode-1): Use line-end-position.
29362         * international/latin-1.el:
29363         * international/latin-2.el:
29364         * international/latin-3.el:
29365         * international/latin-4.el:
29366         * international/latin-5.el:
29367         * international/latin-8.el:
29368         * international/latin-9.el: Give punctuation syntax to NBSP.
29370         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
29371         (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
29372         Use char-classes to accept non-ascii letters, accepted in some recent
29373         bibtex implementations.
29375 2005-04-10  Luc Teirlinck  <teirllm@auburn.edu>
29377         * custom.el (custom-set-minor-mode): Any non-nil value for the
29378         variable should enable the mode when set through Custom.
29380 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
29382         * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
29383         TAB binding so tab-always-indent is obeyed.
29384         (vhdl-minibuffer-local-map): Move initialization into declaration.
29385         (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
29386         (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
29387         (vhdl-hooked-abbrev): Avoid test for XEmacs.
29388         (vhdl-current-line): Use line-beginning-position.
29389         (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
29390         with-output-to-temp-buffer, so the current position can be recorded.
29392 2005-04-10  Masatake YAMATO  <jet@gyve.org>
29394         * progmodes/compile.el (compilation-error-regexp-alist-alist):
29395         Add regexp for gcov.
29397 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
29399         * calendar/time-date.el (time-to-seconds, seconds-to-time)
29400         (days-to-time, time-subtract, time-add): Don't use the #xhhhh
29401         syntax which Emacs 20 doesn't support.
29403 2005-04-09  Richard M. Stallman  <rms@gnu.org>
29405         * help.el (describe-key-briefly, describe-key):
29406         Replace strings as event types with "(any string)".
29408 2005-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
29410         * arc-mode.el (archive-mode-map): Move initialization into
29411         the declaration.  Override *all* bindings of `undo'.
29412         (archive-lemacs): Remove, use (featurep 'xemacs) instead.
29414 2005-04-09  Jay Belanger  <belanger@truman.edu>
29416         * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
29418 2005-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
29420         * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
29421         (xterm-register-default-colors): Update color values computation
29422         to match xterm-200.
29424 2005-04-09  Kenichi Handa  <handa@m17n.org>
29426         * international/code-pages.el (iso-latin-7): Fix the map.
29428 2005-04-08  Luc Teirlinck  <teirllm@auburn.edu>
29430         * emacs-lisp/lisp.el (defun-prompt-regexp)
29431         (parens-require-spaces, buffer-end, end-of-defun)
29432         (insert-parentheses): Doc fixes.
29434 2005-04-08  Kim F. Storm  <storm@cua.dk>
29436         * comint.el (comint-highlight-prompt): Fix face spec.
29437         * hi-lock.el (hi-green): Likewise.
29439 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
29441         * cus-edit.el (custom-modified-face):
29442         * comint.el (comint-highlight-input): Fix previous changes.
29443         * term.el (term-handle-ansi-escape): Add a comment.
29445 2005-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
29447         * whitespace.el (whitespace-highlight-the-space): Put the same overlay
29448         in the buffer and in whitespace-highlighted-space.
29449         (whitespace-unhighlight-the-space): Simplify.
29450         (whitespace-buffer): Simplify.
29452 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
29454         * textmodes/table.el (table-cell-face): Add special case for
29455         displays supporting a high number of colors.
29456         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
29457         (vhdl-font-lock-reserved-words-face)
29458         (vhdl-speedbar-architecture-face)
29459         (vhdl-speedbar-instantiation-face)
29460         (vhdl-speedbar-architecture-selected-face)
29461         (vhdl-speedbar-instantiation-selected-face): Likewise.
29462         * progmodes/sh-script.el (sh-heredoc-face): Likewise.
29463         * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
29464         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
29465         (ebrowse-root-class-face, ebrowse-member-attribute-face)
29466         (ebrowse-progress-face): Likewise.
29467         * progmodes/compile.el (compilation-info-face): Likewise.
29468         * progmodes/cc-fonts.el (c-invalid-face): Likewise.
29469         * emacs-lisp/re-builder.el (reb-match-3): Likewise.
29470         * calendar/calendar.el (diary-face): Likewise.
29471         * woman.el (woman-italic-face, woman-bold-face)
29472         (woman-unknown-face): Likewise.
29473         * wid-edit.el (widget-button-pressed-face): Likewise.
29474         * whitespace.el (whitespace-highlight-face): Likewise.
29475         * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
29476         * pcvs-info.el (cvs-marked-face): Likewise.
29477         * info.el (info-xref): Likewise.
29478         * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
29479         * hilit-chg.el (highlight-changes-face)
29480         (highlight-changes-delete-face): Likewise.
29481         * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
29482         (hi-red-b): Likewise.
29483         * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
29484         * font-lock.el (font-lock-keyword-face)
29485         (font-lock-function-name-face, font-lock-warning-face): Likewise.
29486         * cus-edit.el (custom-invalid-face, custom-modified-face)
29487         (custom-set-face, custom-changed-face, custom-variable-tag-face)
29488         (custom-group-tag-face-1, custom-group-tag-face): Likewise.
29489         * comint.el (comint-highlight-prompt): Likewise.
29491 2005-04-08  Lute Kamstra  <lute@gnu.org>
29493         * font-lock.el (font-lock-keywords): Docstring fixes.
29495 2005-04-08  Kenichi Handa  <handa@m17n.org>
29497         * ps-mule.el (ps-mule-show-warning): If the number of unprintable
29498         chars are more than a limit, print " and more..." at the tail.
29500 2005-04-08  Kim F. Storm  <storm@cua.dk>
29502         * emacs-lisp/authors.el (authors-aliases): Update list.
29503         (authors-ignored-files): New list.
29504         (authors-fixed-entries): Fix typo.
29505         (authors-renamed-files-alist): Update list.
29506         (authors-add): Check authors-ignored-files.
29508 2005-04-08  Carsten Dominik  <dominik@science.uva.nl>
29510         * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
29511         optional, to ensure backward compatibility.
29513 2005-04-08  Stephen Eglen  <stephen@gnu.org>
29515         * textmodes/flyspell.el (flyspell-large-region): Doc fix.
29517 2005-04-08  Kim F. Storm  <storm@cua.dk>
29519         * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
29521         * mouse.el (mouse-on-link-p): Doc fix.
29523 2005-04-07  Luc Teirlinck  <teirllm@auburn.edu>
29525         * ielm.el (ielm-prompt-read-only): Doc fix.
29527         * comint.el (comint-prompt-read-only): Doc fix.
29529 2005-04-07  Benjamin Rutt  <brutt@bloomington.in.us>
29531         * ffap.el (ffap-pass-wildcards-to-dired): New user option to
29532         ensure dired always handles wildcards passed to ffap.
29533         (find-file-at-point): Use it.
29534         (ffap-dired-wildcards): Doc fix.
29536 2005-04-07  Juri Linkov  <juri@jurta.org>
29538         * simple.el (next-error-overlay-arrow-position): New defvar.
29539         Put "=>" on its property `overlay-arrow-string'.  Add it to
29540         `overlay-arrow-variable-list'.
29542         * progmodes/compile.el (compilation-setup):
29543         Set `next-error-overlay-arrow-position' to nil.  Also set it to
29544         nil in the local hook `kill-buffer-hook'.  Make local variable
29545         `overlay-arrow-string' and set it to "=>".
29546         (compilation-goto-locus): Set BOL position to
29547         `next-error-overlay-arrow-position' instead of
29548         `overlay-arrow-position'.
29550         * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
29551         locally instead of adding it to the global hook.
29552         (Info-kill-buffer): Move up.
29554 2005-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
29556         * term/xterm.el (xterm-standard-colors): Update color values from
29557         xterm-200.
29559 2005-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
29561         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
29563         * fast-lock.el:
29564         * lazy-lock.el: Move them to the obsolete subdir.
29566 2005-04-06  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
29568         * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
29569         (wdired-add-replace-advice): Remove.
29570         (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
29572 2005-04-06  Kim F. Storm  <storm@cua.dk>
29574         * startup.el (command-line): Add --bare-bones alias for -Q.
29576 2005-04-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
29578         * term/mac-win.el: Use create-fontset-from-mac-roman-font to
29579         create the startup fontset if a font specification ends with
29580         `mac-roman'.
29582 2005-04-06  Lute Kamstra  <lute@gnu.org>
29584         * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
29585         change.
29587         * emacs-lisp/copyright.el (copyright-update-year): Replace the
29588         right subexpression.  Suggested by Jay Bingham <jay.bingham@hp.com>.
29590 2005-04-05  Lute Kamstra  <lute@gnu.org>
29592         * generic.el (generic-mode-internal): Fix 2005-03-31 change.
29593         (define-generic-mode): Ditto.  Fix debug declaration.
29595         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
29596         Put them in the generic-x group.
29598         * calendar/timeclock.el (timeclock): Doc fix.
29600         * generic.el (define-generic-mode): Don't use custom-current-group.
29601         Document default :group value.
29602         * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
29603         (define-global-minor-mode): Don't use custom-current-group.
29605 2005-04-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
29607         * startup.el (command-line-1): Display startup-echo-area-message
29608         when fancy splash screen is in use.
29610         * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
29611         (sh-escaped-newline): New face.
29612         (sh-font-lock-keywords) <shell>: Improve regexp for escaped
29613         newline, and use sh-escaped-newline face.
29615         * progmodes/tcl.el (tcl-escaped-newline): New face.
29616         (tcl-builtin-list): New variable.
29617         (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
29618         newlines.  Fix keywords subexpression number.
29620 2005-04-05  Carsten Dominik  <dominik@science.uva.nl>
29622         * textmodes/org.el (org-diary-default-entry): Fix call to
29623         `add-to-diary-entry'.
29625 2005-04-05  Kim F. Storm  <storm@cua.dk>
29627         * ediff-init.el: Use (featurep 'xemacs).
29629 2005-04-05  David Ponce  <david@dponce.com>
29631         * cus-edit.el (face): Derive from symbol widget.  Display sample
29632         of the current face on the fly.
29633         (widget-face-sample-face-get, widget-face-notify): New functions.
29634         (widget-face-value-create): Remove.
29636         * wid-edit.el (widget-field-end): Temporarily remove field
29637         narrowing before to call `get-char-property'.
29639 2005-04-04  Jay Belanger  <belanger@truman.edu>
29641         * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
29642         (math-read-subscripts): New variable.
29643         (math-read-preprocess-string): Process subscripts.
29645 2005-04-04  Luc Teirlinck  <teirllm@auburn.edu>
29647         * comint.el (comint-prompt-read-only): Doc fix.
29649         * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
29650         `-1'.  Doc fix.
29652 2005-04-04  Carsten Dominik  <dominik@science.uva.nl>
29654         * textmodes/org.el (org-insert-mode-line-in-empty-file):
29655         Change default value to nil.
29657 2005-04-04  Lute Kamstra  <lute@gnu.org>
29659         * autorevert.el (auto-revert-mode): Specify :group.
29660         * battery.el (display-battery-mode): Specify :group.
29661         * diff-mode.el (diff-minor-mode): Specify :group.
29662         * font-core.el (font-lock-mode): Specify :group.
29663         * hl-line.el (hl-line-mode): Specify :group.
29664         * iimage.el (iimage): New customization group.
29665         (iimage-mode): Specify :group.
29666         * longlines.el (longlines-mode): Specify :group.
29667         * master.el: Don't require easy-mmode.
29668         (master): New customization group.
29669         (master-mode): Specify :group.
29670         * msb.el (msb-mode): Specify :group.
29671         * reveal.el (reveal-mode): Specify :group.
29672         * simple.el (next-error-follow-minor-mode): Specify :group.
29673         * smerge-mode.el (smerge-mode): Specify :group.
29674         * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
29675         * emulation/cua-base.el (cua-mode): Specify :group.
29676         * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
29677         * language/thai-util.el (thai-auto-composition-mode)
29678         (thai-word-mode): Specify :group.
29679         * mail/supercite.el (sc-minor-mode): Specify :group.
29680         * progmodes/cwarn.el (cwarn-mode): Specify :group.
29681         * progmodes/flymake.el (flymake-mode): Specify :group.
29682         * progmodes/glasses.el (glasses-mode): Specify :group.
29683         * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
29684         * textmodes/enriched.el (enriched-mode): Specify :group.
29685         * textmodes/refill.el (refill-mode): Specify :group.
29687         * add-log.el (change-log-font-lock-keywords): Names in
29688         parenthesized lists can contain spaces.
29690 2005-04-04  Thien-Thi Nguyen  <ttn@gnu.org>
29692         * startup.el (fancy-splash-text): Shorten default text of
29693         "Emacs Tutorial" line.  Also, if the current language env
29694         indicates an available tutorial file other than TUTORIAL,
29695         extract its title and append it to the line in parentheses.
29696         (fancy-splash-insert): If arg is a thunk, funcall it.
29698 2005-04-04  Jay Belanger  <belanger@truman.edu>
29700         * calc.el (calc-language-alist): Add tags to customization type.
29702 2005-04-03  Luc Teirlinck  <teirllm@auburn.edu>
29704         * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
29705         Doc fix.
29707 2005-04-03  Marcelo Toledo  <marcelo@gnu.org>
29709         * add-log.el (change-log-font-lock-keywords): The manual
29710         describing a Change Log entry, says: (...) "Aside from these
29711         header lines, every line in the change log starts with a space or
29712         a tab.".  The font-lock was not highlighting lines started with
29713         spaces, added support for it.
29715 2005-04-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
29717         * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
29718         (bibtex-generate-url-list): Update docstring accordingly.  Put the
29719         complex example in the docstring.
29720         (bibtex-font-lock-url): Use pop.
29722 2005-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
29724         * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
29726         * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
29728 2005-04-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
29730         * filesets.el (filesets-set-default): Doc fix.
29732 2005-04-03  Lute Kamstra  <lute@gnu.org>
29734         * generic.el (define-generic-mode): Add argument to specify
29735         keywords for defcustom.
29736         (default-generic-mode): Specify :group.
29738         * generic-x.el: Specify :group for all generic modes.
29740         * desktop.el (desktop-no-desktop-file-hook)
29741         (desktop-after-read-hook): Doc fix.
29743 2005-04-02  Luc Teirlinck  <teirllm@auburn.edu>
29745         * simple.el (visible-mode): Use explicit :group keyword.
29746         This changes the group of `visible-mode-hook' from paren-blinking
29747         to editing-basics.
29749 2005-04-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)
29751         * mail/rmail.el (rmail-parse-url): Bugfix.  Parse traditional
29752         mailbox specifications as well as URLs.
29753         (rmail-insert-inbox-text): Remove unused conditional branches.
29755 2005-04-01  Jay Belanger  <belanger@truman.edu>
29757         * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
29758         (calc-gnuplot-print-command): Move definitions to calc.el.
29760         * calc/calc-embed.el (calc-embedded-announce-formula)
29761         (calc-embedded-open-formula, calc-embedded-close-formula)
29762         (calc-embedded-open-word, calc-embedded-close-word)
29763         (calc-embedded-open-plain, calc-embedded-close-plain)
29764         (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
29765         (calc-embedded-open-mode, calc-embedded-close-mode):
29766         Move definitions to calc.el.
29768         * calc/calc.el (calc-settings-file, calc-language-alist):
29769         Make customizable.
29770         (calc-embedded-announce-formula, calc-embedded-open-formula)
29771         (calc-embedded-close-formula, calc-embedded-open-word)
29772         (calc-embedded-close-word, calc-embedded-open-plain)
29773         (calc-embedded-close-plain, calc-embedded-open-new-formula)
29774         (calc-embedded-close-new-formula, calc-embedded-open-mode)
29775         (calc-embedded-close-mode, calc-gnuplot-name)
29776         (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
29777         from other files and make customizable.
29779 2005-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
29781         * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
29782         Use buffer-live-p.
29783         (cvs-mode-run): Don't call cvs-update-header here.
29784         (cvs-run-process): Call cvs-update-header.
29785         Use process properties for cvs-postprocess and cvs-buffer so that
29786         the sentinel can behave better if the temp buffer is killed.
29787         Use a pipe rather than a tty, to better handle unexpected prompts.
29788         (cvs-sentinel): Rewrite.  Call cvs-update-header.
29790 2005-04-01  Andre Spiegel  <spiegel@gnu.org>
29792         * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
29793         we go via Tramp or Ange-FTP.  Suggested by Kai Grossjohann.
29795 2005-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
29797         * generic.el (define-generic-mode): Add indentation rule.
29799 2005-03-31  Luc Teirlinck  <teirllm@auburn.edu>
29801         * files.el (mode-require-final-newline): Make Custom correctly
29802         report a nil value and allow to set it to nil via Custom.
29803         Doc fix.
29805 2005-04-01  Kenichi Handa  <handa@m17n.org>
29807         * international/characters.el: Enable the correct case setting for
29808         dotless-i and dotted-I.
29810 2005-04-01  Kim F. Storm  <storm@cua.dk>
29812         * ido.el (ido-file-internal): Fall back to non-ido command if
29813         initial directory is on slow ftp (or tramp) host.
29815 2005-03-31  Richard M. Stallman  <rms@gnu.org>
29817         * emacs-lisp/autoload.el (make-autoload):
29818         Handle define-global-minor-mode.
29820         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
29821         Rename from easy-mmode-define-global-mode.
29822         (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
29824         * progmodes/scheme.el (scheme-mode-syntax-table):
29825         Update syntax of | and # for two-character comment syntax.
29827 2005-03-31  Lute Kamstra  <lute@gnu.org>
29829         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
29830         (define-minor-mode): Call custom-current-group at load-time.
29832         * generic.el (define-generic-mode): Add debug declaration.
29833         Add defcustom for the mode hook.
29834         (generic-mode-internal): Use run-mode-hooks.
29836 2005-03-31  Kim F. Storm  <storm@cua.dk>
29838         * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
29839         (mouse-fixup-help-message): New defun called by show_help_echo
29840         to fixup mouse-2 prefix in help messages when applicable.
29842         * tooltip.el (tooltip-show-help-function): Don't fixup message here.
29844 2005-03-31  Kenichi Handa  <handa@m17n.org>
29846         * language/thai-word.el (thai-find-word-ends): Pay attention to
29847         the case that we reach the end of buffer.
29849         * textmodes/fill.el (fill-text-properties-at): New function.
29850         (fill-newline): Use fill-text-properties-at instead of
29851         text-properties-at.
29853 2005-03-31  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
29855         * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
29856         not comint-quote-filename.
29858 2005-03-31  Thien-Thi Nguyen  <ttn@gnu.org>
29860         * help-fns.el (help-with-tutorial): Revert last change.
29862 2005-03-31  Kim F. Storm  <storm@cua.dk>
29864         * emulation/cua-base.el (cua-scroll-down): Add CUA property.
29866 2005-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29868         * calendar/cal-china.el: Update reference to "Calendrical
29869         Calculations" book; there's a new edition.
29870         * calendar/cal-coptic.el: Likewise.
29871         * calendar/cal-french.el: Likewise.
29872         * calendar/cal-hebrew.el: Likewise.
29873         * calendar/cal-islam.el: Likewise.
29874         * calendar/cal-iso.el: Likewise.
29875         * calendar/cal-julian.el: Likewise.
29876         * calendar/cal-mayan.el: Likewise.
29877         * calendar/cal-persia.el: Likewise.
29878         * calendar/calendar.el: Likewise.
29879         * calendar/holidays.el: Likewise.
29880         * calendar/lunar.el: Likewise.
29881         * calendar/solar.el: Likewise.
29883         * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
29884         white space from doc string.
29886 2005-03-30  Jay Belanger  <belanger@truman.edu>
29888         * calc/calc-help.el (calc-full-help): Remove email address.
29890 2005-03-30  Thien-Thi Nguyen  <ttn@gnu.org>
29892         * help-fns.el (help-with-tutorial): Delete title line.
29894 2005-03-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
29896         * calendar/cal-x.el (calendar-one-frame-setup)
29897         (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
29898         rather than `symbol' for set-window-dedicated-p.
29900         * calendar/appt.el (appt-buffer-name): Make it a constant.
29901         (appt-add): Doc fix.
29903         * filesets.el (filesets-menu-path, filesets-menu-before)
29904         (filesets-menu-in-menu): Doc fix.  Now valid in GNU Emacs.
29905         (filesets-menu-cache-file): Use directory ~/.emacs.d.
29906         (filesets-add-submenu): Delete and use add-submenu instead.
29908 2005-03-30  Carsten Dominik  <dominik@science.uva.nl>
29910         * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
29911         (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
29912         (org-diary-default-entry): New function.
29913         (org-get-entries-from-diary): Better parsing of diary entries.
29914         (org-agenda-check-no-diary): New function.
29915         ("diary-lib"): Advice to function `add-to-diary-list', to allow
29916         linking to diary entries.
29917         (org-agenda-execute-calendar-command): New function.
29918         (org-agenda): Improve visible section in window.
29919         Use `org-fit-agenda-window'.
29920         (org-fit-agenda-window): New option.
29921         (org-move-subtree-down): Better handling of empty lines
29922         at end of subtree.
29923         (org-cycle): Numeric prefix is interpreted now as show-subtree N
29924         levels up.
29925         (org-fontify-done-headline): New option.
29926         (org-headline-done-face): New face.
29927         (org-set-font-lock-defaults): Use `org-headline-done-face'.
29928         (org-table-copy-down): Rename from `org-table-copy-from-above'.
29929         When current field is non-empty, it is copied to next row.
29930         (org-table-copy-from-above): Fix bug which made it
29931         impossible to copy fields containing only a single non-white character.
29933 2005-03-30  Kim F. Storm  <storm@cua.dk>
29935         * kmacro.el (kmacro-end-macro): Isearch may store this command
29936         into the macro -- so ignore it when executing keyboard macro.
29938 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
29940         * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
29942 2005-03-29  Kenichi Handa  <handa@m17n.org>
29944         * language/thai.el ("Thai"): Set setup-function and exit-function
29945         for Thai language environment.
29947         * language/thai-util.el: Require thai-word.
29948         (thai-word-mode-map): New variable.
29949         (thai-word-mode): New minor mode.
29950         (setup-thai-language-environment-internal): New function.
29951         (exit-thai-language-environment-internal): New function.
29953         * language/thai-word.el (thai-word-table): Declare it by defvar,
29954         use dolist to initialize it.
29955         (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
29956         (thai-fill-find-break-point): New functions.
29958 2005-03-29  Richard M. Stallman  <rms@gnu.org>
29960         * simple.el (idle-update-delay): Move definition up.
29961         (set-mark): Doc fix.
29963 2005-03-29  Chong Yidong  <cyd@stupidchicken.com>
29965         * longlines.el: New file.
29967         * simple.el (buffer-substring-filters): New variable.
29968         (filter-buffer-substring): New function.
29969         (kill-region, copy-region-as-kill): Use it.
29971         * register.el (copy-to-register, append-to-register)
29972         (prepend-to-register): Use filter-buffer-substring.
29974 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
29976         * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
29977         (gud-filter-pending-text): Move in front of gdb.
29978         (gud-overlay-arrow-position): New variable.
29979         (gud-sentinel, gud-display-line): Use it in place of
29980         overlay-arrow-position.
29982 2005-03-29  Glenn Morris  <gmorris@ast.cam.ac.uk>
29984         * progmodes/fortran.el (fortran-if-indent): Doc fix.
29985         (fortran-font-lock-keywords-2): Add "where", "elsewhere".
29986         (fortran-font-lock-keywords-4): New variable.
29987         (fortran-blocks-re, fortran-end-block-re)
29988         (fortran-start-block-re): New constants, for hideshow.
29989         (hs-special-modes-alist): Add a Fortran entry.
29990         (fortran-mode-map): Bind fortran-end-of-block,
29991         fortran-beginning-of-block to \M-\C-n, \M-\C-p.
29992         (fortran-mode): Doc fix.  Add fortran-font-lock-keywords-4.
29993         (fortran-looking-at-if-then, fortran-end-of-block)
29994         (fortran-beginning-of-block): New functions, for hideshow.
29996         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
29997         Doc fix.  Tweak regexp.
29998         (f90-beginning-of-block): Push mark first.
30000 2005-03-29  Jay Belanger  <belanger@truman.edu>
30002         * calc/calc.el: Update copyright date.
30003         (calc-version): Increase to 2.1.
30004         (calc-version-date): Remove.
30006         * calc/calc-help.el: Update copyright date.
30007         (calc-full-help): Remove reference to calc-version-date.
30008         Update copyright date.
30010 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
30012         * vc.el (vc-do-command): Use a pipe for async processes, so password
30013         prompts don't show up at places where the user can't reply.
30015 2005-03-29  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
30017         * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
30018         on the file name we pass to the inferior shell.
30020 2005-03-29  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
30022         * progmodes/which-func.el (which-function): Be robust in the face of an
30023         imenu--make-index-alist failure.
30025 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
30027         * reveal.el (reveal-mode-map): Don't override C-a and C-e.
30029         * progmodes/python.el (python-preoutput-filter): Fix last change.
30031 2005-03-29  Lute Kamstra  <lute@gnu.org>
30033         * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
30034         functions and compiled macros.
30035         (debug-convert-byte-code): Handle macros too.
30036         (debug-on-entry-1): Don't signal an error when trying to clear a
30037         function that is not set to debug on entry.
30039 2005-03-29  Jay Belanger  <belanger@truman.edu>
30041         * calc/calc-lang.el: Add functions to math-function-table
30042         properties of tex and math.
30044 2005-03-29  Kenichi Handa  <handa@m17n.org>
30046         * ps-mule.el (ps-mule-plot-string): Translate characters by
30047         ps-print-translation-table.
30048         (ps-mule-begin-job): Call find-charset-region/string with
30049         ps-print-translation-table.
30050         (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
30052         * ps-print.el (ps-print-translation-table): New variable.
30053         (ps-plot-region): Translate characters by ps-print-translation-table.
30055 2005-03-29  Juri Linkov  <juri@jurta.org>
30057         * simple.el (next-error-highlight-timer): New variable.
30059         * progmodes/compile.el (compilation-goto-locus):
30060         Use `next-error-highlight-timer' instead of `sit-for'.
30062 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
30064         * mail/supercite.el (sc-mail-field): Use assoc-string.
30065         (sc-get-address): Simplify regexps.
30067         * files.el (minibuffer-with-setup-hook): New macro.
30068         (find-file-read-args): Use it to avoid let-binding
30069         minibuffer-with-setup-hook (which breaks turning on/off
30070         file-name-shadow-mode while in the prompt).
30072         * complete.el (PC-read-include-file-name-internal):
30073         Use test-completion.
30075 2005-03-28  Luc Teirlinck  <teirllm@auburn.edu>
30077         * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
30079 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
30081         * window.el (window-buffer-height): Use count-screen-lines.
30083         * progmodes/python.el (python-preoutput-leftover): New var.
30084         (python-preoutput-filter): Use it.
30085         (python-send-receive): Loop until all the result has been received.
30087 2005-03-28  Juri Linkov  <juri@jurta.org>
30089         * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
30091         * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
30092         "Recover Crashed Session".
30093         (menu-bar-search-menu): Add ellipsis to "Search tagged files".
30094         (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
30095         (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
30096         (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
30097         (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
30098         (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
30099         (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
30100         (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
30102         * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
30103         Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
30104         Ediff Sessions", "Toggle use of separate control buffer frame",
30105         "Use separate frame for Ediff control buffer".
30107         * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
30108         Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
30109         "Rename Bookmark", "Delete Bookmark".
30111         * info.el (Info-mode-menu): Remove ellipsis from "Index".
30112         Add ellipsis to "Lookup a String", "Lookup a string in all indices".
30113         Add `:active Info-index-alternatives' to "Next Matching Item".
30115         * wdired.el (wdired-change-to-wdired-mode):
30116         Mention `wdired-abort-changes' key in the initial message.
30118         * international/mule.el (auto-coding-alist): Associate non-ascii
30119         image filename extensions with `no-conversion'.
30121 2005-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
30123         * international/iso-acc.el:
30124         * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
30126 2005-03-26  Luc Teirlinck  <teirllm@auburn.edu>
30128         * textmodes/sgml-mode.el (html-mode): Doc update.
30130         * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
30132 2005-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
30134         * term.el (term-move-columns): Fix face after extending a line.
30135         (term-insert-spaces): Likewise.
30136         (term-reset-terminal): Fix off by one error.
30138 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
30140         * international/mule.el (auto-coding-alist): Add .xpi files.
30142         * files.el (auto-mode-alist): Add .xpi files.
30144 2005-03-26  Jure Cuhalev  <gandalf@owca.info>  (tiny change)
30146         * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
30148 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
30150         * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
30152 2005-03-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
30154         * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
30155         binding.  Suggested by Stephan Stahl <stahl@eos.franken.de>.
30157         * calendar/cal-move.el (calendar-beginning-of-year): Move the
30158         cursor to Jan 1 when needed.
30159         (calendar-end-of-year): Fix -/+ typo.
30160         Reported by Chong Yidong <cyd@stupidchicken.com>.
30162 2005-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
30164         * progmodes/flymake.el (flymake-mode): Add autoload cookie.
30166         * emacs-lisp/debug.el (debugger-record-expression): Add a missing
30167         format to `message'.  Inspired by Deepak Goel <deego@gnufans.org>.
30169 2005-03-25  Richard M. Stallman  <rms@gnu.org>
30171         * filesets.el (filesets-init): Add autoload.
30173         * mail/mailalias.el (mail-directory): Doc fix.
30175 2005-03-25  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
30177         * mail/mailalias.el (mail-directory-process): Do nothing if
30178         mail-directory-process is an atom.
30179         (mail-get-names): Ignore mail-directory-names if it is an atom.
30180         (mail-directory-process defvar): Doc fix.
30181         (mail-names): Doc fix.
30183 2005-03-25  Johan Bockg\e,Ae\e(Brd  <bojohan+mail@dd.chalmers.se>  (tiny change)
30185         * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
30187 2005-03-26  Kenichi Handa  <handa@m17n.org>
30189         * international/mule-util.el (detect-coding-with-priority):
30190         Call update-coding-systems-internal before detect-coding-region.
30192 2005-03-26  Nick Roberts  <nickrob@snap.net.nz>
30194         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
30195         (gdb-frames-mode-map): Add follow-link property.
30197 2005-03-25  Jay Belanger  <belanger@truman.edu>
30199         * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
30200         for variables.
30202 2005-03-25  Juri Linkov  <juri@jurta.org>
30204         * image-mode.el: Optimize image filename extension regexps in
30205         autoload cookies.  Associate .x[bp]m with `image-mode-maybe'
30206         in `auto-mode-alist'.
30207         (image-mode): Add `image-toggle-display-text' to local hook
30208         `change-major-mode-hook'.  Display the image as an image by
30209         default.  Set `cursor-type' and `truncate-lines' if the image
30210         is already displayed.  Take into account the current mode (image
30211         or text) in message.
30212         (image-minor-mode): New minor mode.
30213         (image-mode-maybe, image-toggle-display-text): New functions.
30214         (image-toggle-display): Use called-interactively-p.
30215         Let-bind `inhibit-read-only' to t.
30217         * image-mode.el (image-minor-mode): Set `cursor-type' and
30218         `truncate-lines' if the image is already displayed.  Add turning
30219         image-minor-mode off to `change-major-mode-hook'.  Add message.
30220         Call `image-toggle-display-text' after turning image-minor-mode off.
30222 2005-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
30224         * international/mule-cmds.el (set-locale-environment): For Mac OS X's
30225         Terminal.app, use utf-8.
30226         (set-display-table-and-terminal-coding-system): Add coding-system arg.
30227         (set-locale-environment): Use it.
30229         * term/xterm.el: Undo last change, better done in mule-cmds.el.
30231         * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
30233         * progmodes/python.el (python-close-block-statement-p)
30234         (python-outdent-p, python-current-defun): Use symbol-end.
30236 2005-03-25  Karl Chen  <quarl@cs.berkeley.edu>
30238         * files.el (save-some-buffers): Doc fix.
30240 2005-03-25  Werner Lemberg  <wl@gnu.org>
30242         * complete.el, thumbs.el: Replace `legal' with `valid'.
30243         * calendar/calendar.el: Replace `legal' with `valid'.
30244         * emacs-lisp/advice.el: Replace `legal' with `valid'.
30245         * mail/supercite.el: Replace `legal' with `valid'.
30246         * progmodes/cperl-mode.el, progmodes/idlw-shell.el
30247         * progmodes/idlwave.el, progmodes/vhdl-mode.el:
30248         Replace `legal' with `valid'.
30249         * textmodes/reftex-vars.el, textmodes/reftex.el:
30250         Replace `legal' with `valid'.
30252 2005-03-25  Werner Lemberg  <wl@gnu.org>
30254         * calc/calc-forms.el, calc/calc-sel.el
30255         * midnight.el, vc-cvs.el
30256         * emacs-lisp/cl-macs.el
30257         * emulation/vip.el
30258         * eshell/esh-io.el, eshell/esh-var.el
30259         * mail/supercite.el
30260         * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
30261         * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
30262         * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
30263         * progmodes/sh-script.el, progmodes/xscheme.el
30264         * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
30265         * textmodes/reftex-index.el, textmodes/reftex-parse.el
30266         * textmodes/reftex-ref.el, textmodes/reftex-vars.el
30267         * textmodes/reftex.el, textmodes/org.el:
30268         Replace `illegal' with `invalid'.
30270 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
30272         * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
30273         (flymake-find-buildfile, flymake-find-possible-master-files)
30274         (flymake-check-include, flymake-parse-line): Replace loops over the
30275         length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
30277         * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
30278         Substitute file-name-as-directory in the rest of the file.
30279         (flymake-get-common-file-prefix): Rewrite, using compare-strings.
30280         (flymake-replace-region): Remove unused arg `buffer'.
30281         (flymake-check-patch-master-file-buffer): Update calls to it.
30282         (flymake-add-err-info): Remove unused var `count'.
30283         (flymake-mode): Use define-minor-mode.
30285         * progmodes/flymake.el: Use with-current-buffer.
30286         (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
30287         flymake-replace-regexp-in-string, flymake-line-beginning-position)
30288         (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
30289         Avoid testing for `xemacs'.
30290         (flymake-nop): Move.
30291         (flymake-region-has-flymake-overlays): Return the computed value.
30292         (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
30293         Remove unused var `endline'.
30294         (flymake-get-line-count): Remove unused function.
30295         (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
30297         * emulation/vi.el:
30298         * generic.el:
30299         * hilit-chg.el (global-highlight-changes):
30300         * hi-lock.el (hi-lock-mode):
30301         * follow.el: find-file-hooks -> find-file-hook.
30303         * comint.el (comint-insert-input): Obey mouse-yank-at-point.
30305 2005-03-24  Juri Linkov  <juri@jurta.org>
30307         * dired.el (dired-mode-map): Add menu item "Compare directories"
30308         for dired-compare-directories.
30310         * dired-aux.el (dired-compare-directories): Add autoload cookie.
30311         Doc fix.  Replace `read-file-name' with `read-directory-name'.
30313 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
30315         * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
30317 2005-03-24  Jay Belanger  <belanger@truman.edu>
30319         * calc/calc-embed.el (calc-embedded-mode-change): Save all
30320         relevant mode settings in calc-embedded-original-modes when modes
30321         are permanently changed.
30323 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
30325         * autoinsert.el: find-file-hooks -> find-file-hook.
30327 2005-03-24  Lute Kamstra  <lute@gnu.org>
30329         * generic.el (generic-font-lock-defaults): Make it obsolete.
30330         (generic-font-lock-keywords): New variable to replace
30331         generic-font-lock-defaults.
30332         (generic-mode-set-font-lock): Delete it.
30333         (generic-mode-internal): Don't call generic-mode-set-font-lock.
30334         (generic-bracket-support): Add docstring.
30336         * generic-x.el: Rename generic-font-lock-defaults to
30337         generic-font-lock-keywords throughout.
30338         (mailagent-rules-setup-function): Delete it.
30339         (mailagent-rules-generic-mode): Use anonymous function instead.
30340         (show-tabs-generic-mode-font-lock-defaults-1)
30341         (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
30342         Quote faces.
30343         (show-tabs-tab-face, show-tabs-space-face): Specify background,
30344         not foreground.
30346         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
30347         Recognize define-generic-mode.
30349 2005-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
30351         * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
30352         if there's no completion table.
30354 2005-03-23  Miles Bader  <miles@gnu.org>
30356         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
30357         Remove tty-specific variants, as they're no longer needed.
30359 2005-03-23  Lute Kamstra  <lute@gnu.org>
30361         * generic-x.el: Code cleanup: make args constant whenever possible.
30362         (installshield-statement-keyword-list)
30363         (installshield-system-functions-list)
30364         (installshield-system-variables-list, installshield-types-list)
30365         (installshield-funarg-constants-list): Make them constants.
30367         * generic.el (generic-make-keywords-list): Add autoload cookie.
30369         * calendar/time-date.el: Add comment on time value formats.
30370         Don't require parse-time.
30371         (with-decoded-time-value): New macro.
30372         (encode-time-value): New function.
30373         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
30374         (days-to-time): Return a valid time value when arg is huge.
30375         (time-since): Use time-subtract.
30376         (time-to-number-of-days): Use time-to-seconds.
30378 2005-03-23  David Ponce  <david@dponce.com>
30380         * recentf.el (recentf-keep): New option.
30381         (recentf-menu-action): Default to `find-file'.
30382         (recentf-keep-non-readable-files-flag)
30383         (recentf-keep-non-readable-files-p)
30384         (recentf-file-readable-p, recentf-find-file)
30385         (recentf-cleanup-remote): Remove.
30386         (recentf-include-p): More robust.
30387         (recentf-keep-p): New function.
30388         (recentf-remove-if-non-kept): Rename from
30389         `recentf-remove-if-non-readable'.  Use `recentf-keep-p'.
30390         All callers updated.
30391         (recentf-menu-items-for-commands): Fix help string.
30392         (recentf-track-closed-file): Update.  Doc fix.
30393         (recentf-cleanup): Update.  Count removed files.  Doc fix.
30395 2005-03-23  Kim F. Storm  <storm@cua.dk>
30397         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
30398         Don't inherit from fringe face (now happens automatically).
30400 2005-03-22  Kim F. Storm  <storm@cua.dk>
30402         * tooltip.el (tooltip-show-help-function): Ignore negative mouse
30403         position values.
30405 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
30407         * menu-bar.el (showhide-date-time): Remove.
30408         (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
30409         (menu-bar-make-mm-toggle): Simplify.
30411 2005-03-22  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
30413         * progmodes/perl-mode.el (perl-font-lock-keywords-2):
30414         Accept qualified variable and function names.
30416 2005-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
30418         * bindings.el (completion-ignored-extensions):
30419         Remove ".lis" for `vax-vms'.
30421 2005-03-22  Andreas Schwab  <schwab@suse.de>
30423         * generic-x.el: Revert last change.
30424         * ldefs-boot.el: Update.
30426 2005-03-22  Jay Belanger  <belanger@truman.edu>
30428         * calc/calc-embed.el (calc-embedded-original-modes): New variable.
30429         (calc-embedded-save-original-modes)
30430         (calc-embedded-restore-original-modes): New functions.
30431         (calc-do-embedded): Save original modes when entering embedded mode
30432         and restore when leaving embedded mode.
30433         (calc-embedded-modes-change): Change the value of
30434         calc-embedded-original-modes to reflect permanent changes.
30436 2005-03-22  Lute Kamstra  <lute@gnu.org>
30438         * generic-x.el: Require generic again.
30440 2005-03-22  Miles Bader  <miles@gnu.org>
30442         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
30443         Tweak details to look good on both ttys and bitmap displays, light
30444         or dark background, etc.
30446 2005-03-21  Kim F. Storm  <storm@cua.dk>
30448         * tooltip.el (tooltip-show-help-function): Check car and cdr of
30449         mouse position.
30451 2005-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
30453         * icomplete.el: Don't forcibly turn on the mode upon load.
30454         (icomplete-mode): Use define-minor-mode.
30455         (icomplete-eoinput): Default to nil.
30456         (icomplete-minibuffer-setup): Remove autoload.
30457         (icomplete-tidy): Simplify.
30458         (icomplete-exhibit): Use buffer-undo-list to determine if we're still
30459         in the initial state or if the user has modified the field.
30460         Fix handling of icomplete-max-delay-chars.
30461         Remove code that handles the oddball case where
30462         minibuffer-completion-table is an integer.
30463         Wrap icomplete-completions in while-no-input in case building
30464         completions takes more time than expected.
30465         (icomplete-completions): Simplify.
30467 2005-03-21  Richard M. Stallman  <rms@gnu.org>
30469         * jka-compr.el (jka-compr-really-do-compress):
30470         Make variable buffer-local.
30472         * image-mode.el: Handle .xpm files too.
30473         (image-toggle-display): Preserve modification flag.
30475         * help.el (where-is): Don't mention aliases with no key bindings.
30477 2005-03-21  Lute Kamstra  <lute@gnu.org>
30479         * generic.el: Fix commentary section.  Don't require cl for
30480         compilation.
30481         (generic-mode-list): Add autoload cookie.
30482         (generic-use-find-file-hook, generic-lines-to-scan)
30483         (generic-find-file-regexp, generic-ignore-files-regexp)
30484         (generic-mode, generic-mode-find-file-hook)
30485         (generic-mode-ini-file-find-file-hook): Fix docstrings.
30486         (define-generic-mode): Make it a defmacro.  Fix docstring.
30487         (generic-mode-internal): Code cleanup.  Add autoload cookie.
30488         (generic-mode-set-comments): Code cleanup.
30489         * generic-x.el: Don't prevent compilation.  Don't require generic.
30490         Follow coding conventions.  Minor code cleanup.
30491         (etc-fstab-generic-mode): Add some keywords.
30492         * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
30493         define-generic-mode like a function declaration.
30495 2005-03-21  Jay Belanger  <belanger@truman.edu>
30497         * calc/calc-embed.el (calc-do-embedded): Put data on stack before
30498         changing modes.
30500 2005-03-21  Sam Steingold  <sds@gnu.org>
30502         * add-log.el (add-log-current-defun): Support more C DEFUN forms.
30504 2005-03-21  Thien-Thi Nguyen  <ttn@gnu.org>
30506         * progmodes/dcl-mode.el (dcl-font-lock-keywords):
30507         Add underscore to "f$ lexicals" regexp.
30509 2005-03-20  Juri Linkov  <juri@jurta.org>
30511         * subr.el (progress-reporter-do-update): When `min-value' is equal
30512         to `max-value', set `percentage' to 0 and prevent division by zero.
30514 2005-03-20  Michael Albinus  <michael.albinus@gmx.de>
30516         Sync with Tramp 2.0.48.
30518         * net/tramp.el (all): Change all addresses to .gnu.org.
30519         (tramp-append-tramp-buffers): New defun.
30520         (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
30521         Catch `dont-send' signal.
30522         (tramp-set-auto-save-file-modes): Set always permissions, because
30523         there might be an old auto-saved file belonging to another
30524         original file.  This could be a security threat.  Reported by
30525         Kjetil Kjernsmo <kjetil@kjernsmo.net>.
30526         Check for Emacs 21.3.50 removed.
30528         * net/tramp-smb.el (all): Remove debug construct for
30529         `with-parsed-tramp-file-name'.
30530         (tramp-smb-prompt): Prompt can contain spaces inside directory names.
30531         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
30532         No error message if DIRECTORY or FILENAME doesn't exist.
30533         (tramp-smb-open-connection): Check existence of
30534         `tramp-smb-program'.
30536 2005-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
30538         * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
30539         Properly handle the case where the `m' or `s' command's argument is not
30540         yet terminated.
30541         (perl-indent-new-calculate): New function.
30542         (perl-indent-line): Use it.
30544 2005-03-20  Miles Bader  <miles@gnu.org>
30546         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
30547         in text-mode too.  Change to new face names.
30548         (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
30549         Add `:weight bold' attribute.
30550         (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
30552 2005-03-19  Juri Linkov  <juri@jurta.org>
30554         * files.el (auto-mode-alist): Add comment.  Optimize jar/ear/war.
30556         * international/mule.el (auto-coding-alist): Sync with
30557         `auto-mode-alist' by adding upper case archive file extensions
30558         and adding ear/war to jar extension.
30560 2005-03-19  David Casperson  <casper@unbc.ca>  (tiny change)
30562         * textmodes/tex-mode.el (tex-view): If tex-shell process is not
30563         running, restart it.
30565 2005-03-19  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny changes)
30567         * finder.el (finder-current-item): Throw an error on an empty line.
30569         * man.el (Man-follow-manual-reference): If current-word returns
30570         nil, use "".
30572 2005-03-19  Matt Hodges  <MPHodges@member.fsf.org>
30574         * simple.el (goto-line): Doc fix.
30576 2005-03-19  Aaron S. Hawley  <Aaron.Hawley@uvm.edu>
30578         * files.el (save-buffer): Doc fix.
30580 2005-03-19  Michael R. Mauger  <mmaug@yahoo.com>
30582         * recentf.el (recentf-cleanup-remote): New variable.
30583         (recentf-cleanup): Use it to conditionally check availability of
30584         remote files.
30586 2005-03-19  Joe Edmonds  <joe-bugs-debian-org@elem.com>  (tiny change)
30588         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
30589         function names.
30591 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
30593         * language/thai-word.el: New file.
30595 2005-03-19  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
30597         * files.el (backup-buffer): If the file's directory is not
30598         writable, use copy instead of move to backup the file.
30600 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
30602         * obsolete/keyswap.el: Moved to obsolete/ from term/.
30604 2005-03-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
30606         * ps-print.el (ps-generate-string-list, ps-generate-header-line):
30607         Use functionp instead of symbolp and fboundp.  Reported by Drkm
30608         <darkman_spam@yahoo.fr>.
30609         (ps-print-version): New version 6.6.6.
30611 2005-03-18  Tak Ota  <Takaaki.Ota@am.sony.com>
30613         * textmodes/table.el (table--line-column-position): New idiom.
30614         (table--row-column-insertion-point-p): New function to test
30615         validity of row and column insertion operation at a location.
30616         (table-global-menu, table-cell-menu): Use above functions for
30617         deterministic test operation.
30618         (table--editable-cell-p): Behave in deterministic fashion.
30620 2005-03-18  Juri Linkov  <juri@jurta.org>
30622         * isearch.el (isearch-lazy-highlight-new-loop):
30623         Make arguments beg and end optional.
30624         (isearch-update): Remove optional arguments nil from
30625         isearch-lazy-highlight-new-loop.
30626         (isearch-lazy-highlight-search): Let-bind case-fold-search to
30627         isearch-lazy-highlight-case-fold-search instead of
30628         isearch-case-fold-search, and let-bind isearch-regexp to
30629         isearch-lazy-highlight-regexp.
30630         Use isearch-lazy-highlight-last-string instead of isearch-string.
30632         * replace.el (perform-replace): Remove bindings of global
30633         variables isearch-string, isearch-regexp, isearch-case-fold-search.
30634         Add three new arguments to `replace-highlight'.
30635         (replace-highlight): Add arguments string, regexp, case-fold.
30636         Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
30637         to allow isearch-lazy-highlight-new-loop to use these values
30638         to set corresponding isearch-lazy-highlight-* internal
30639         variables whose values lazy highlighting will use regardless of
30640         changes to global variables isearch-string, isearch-regexp,
30641         isearch-case-fold-search during lazy highlighting loop.
30642         (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
30643         to `lazy-highlight-cleanup'.
30645         * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
30646         (ispell-highlight-face): Set default face to `isearch' when
30647         lazy highlighting is enabled.
30648         (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
30649         priority to 1.  Add lazy highlighting.
30650         (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
30651         from `isearch-dehighlight'.
30653 2005-03-18  David Ponce  <david@dponce.com>
30655         * files.el (hack-local-variables): Do a case-insensitive search
30656         for End.
30658 2005-03-18  Juri Linkov  <juri@jurta.org>
30660         * isearch.el (lazy-highlight-cleanup) <command>: Rename from
30661         `isearch-lazy-highlight-cleanup', add alias to old name and
30662         declare obsolete.  Add release numbers to other obsolete vars.
30663         (isearch-done, isearch-lazy-highlight-new-loop):
30664         Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
30665         (lazy-highlight-cleanup) <variable>: Doc fix.
30666         (isearch-lazy-highlight-update): Rename obsolete
30667         `isearch-lazy-highlight-face' to `lazy-highlight-face'.
30669 2005-03-18  Kenichi Handa  <handa@m17n.org>
30671         * language/thai-util.el: Fix categorization of Thai characters in
30672         thai-category-table.
30673         (thai-composition-pattern): Adjust it for the above change.
30674         (thai-self-insert-command, thai-compose-syllable): New functions.
30675         (thai-compose-region): Use thai-compose-syllable.
30676         (thai-compose-string): Likewise.
30677         (thai-composition-function): Likewise.
30678         (thai-auto-composition): New function.
30679         (thai-auto-composition-mode): New minor mode.
30681         * language/thai.el: Fix patterns to be registered in
30682         composition-function-table.
30684         * international/quail.el (quail-input-method): Locally bind
30685         inhibit-modification-hooks to t.
30687 2005-03-17  Richard M. Stallman  <rms@gnu.org>
30689         * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
30690         (perl-mode): Use run-mode-hooks.
30692         * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
30693         (rmail-pop-password-required, rmail-remote-password): Doc fixes.
30694         (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
30696         * mail/sendmail.el (sendmail-send-it): Reenable the code
30697         to compute resend-to-address and use it.
30699         * tar-mode.el (tar-mode): Turn off undo unconditionally.
30701         * image-mode.el: New file.
30703         * image.el (insert-sliced-image): Add autoload cookie.
30705         * font-lock.el (font-lock-lines-before): New user option.
30706         (font-lock-after-change-function): Obey it.
30708         * bindings.el (esc-map): Make M-g a prefix.
30709         Bind M-g g and M-g M-g to goto-line.
30711         * faces.el (face-id): Doc fix.
30713 2005-03-17  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
30715         * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
30716         (rmail-show-message): Use rmail-unknown-mail-followup-to.
30717         (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
30719         * mail/sendmail.el (mail-yank-ignored-headers)
30720         (mail-font-lock-keywords, mail-mode-fill-paragraph):
30721         Add Mail-Followup-To and Mail-Reply-To headers.
30722         (mail-citation-hook): Add autoload cookie.
30723         (mail-mode): Doc fix.
30724         (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
30725         (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
30726         (mail-mode-fill-paragraph): Handle those headers.
30727         (mail-mailing-lists): New variable.
30728         (mail-mail-reply-to, mail-mail-followup-to): New functions.
30730 2005-03-17  Juri Linkov  <juri@jurta.org>
30732         * isearch.el (isearch-fallback): Check for `(car previous)'
30733         before calling `isearch-other-end-state'.
30735 2005-03-17  Kim F. Storm  <storm@cua.dk>
30737         * simple.el (move-beginning-of-line): Move to beginning of buffer
30738         line, as well as beginning of screen line.
30740 2005-03-16  Glenn Morris  <gmorris@ast.cam.ac.uk>
30742         * calendar/diary-lib.el (mark-diary-entries): Use new optional
30743         argument REDRAW rather than calendar-redrawing variable.
30744         * calendar/calendar.el (calendar-redrawing): Delete.
30745         (redraw-calendar): Do not bind calendar-redrawing.
30747 2005-03-16  Matt Hodges  <MPHodges@member.fsf.org>
30749         * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
30750         diary-file buffer.
30752 2005-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
30754         * help.el (describe-mode): Allow a :minor-mode-function property to
30755         specify a different minor mode toggle function than the variable.
30756         * simple.el (auto-fill-function):
30757         * subr.el (add-minor-mode): Use it.
30759 2005-03-16  Kenichi Handa  <handa@m17n.org>
30761         * language/ethio-util.el (sera-being-called-by-w3): New variable.
30762         (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
30763         (ethio-fidel-to-sera-buffer): Likewise.
30765 2005-03-16  Juri Linkov  <juri@jurta.org>
30767         * emacs-lisp/find-func.el (find-function-regexp):
30768         Add defun-emitting macro `menu-bar-make-toggle'.
30770         * isearch.el: Put `isearch-scroll' property to
30771         `split-window-horizontally'.
30773         * info.el: Update error messages for `debug-ignored-errors'.
30774         (Info-isearch-search): Doc fix.
30775         (Info-find-node): Move up code to go into info buffer before
30776         recording the node to the history.
30777         (Info-fontify-node): Fontify titles only if the next line
30778         has two or more `*', `=', `-', `.'.
30779         Display "go to this node" for empty (match-string 3).
30781 2005-03-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
30783         * term/mac-win.el: Add mouse pointer shape constants.
30785 2005-03-15  Kim F. Storm  <storm@cua.dk>
30787         * simple.el (move-beginning-of-line): Use vertical-motion.
30789 2005-03-15  Juri Linkov  <juri@jurta.org>
30791         * isearch.el (isearch-error): New variable.
30792         (isearch-invalid-regexp, isearch-within-brackets): Remove.
30793         (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
30794         (isearch-within-brackets-state): Remove.
30795         (isearch-case-fold-search-state, isearch-pop-fun-state):
30796         Decrease frame index.
30797         (isearch-mode, isearch-top-state, isearch-push-state)
30798         (isearch-edit-string, isearch-abort, isearch-search-and-update)
30799         (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
30800         (isearch-search, isearch-lazy-highlight-new-loop):
30801         Replace `isearch-invalid-regexp' with `isearch-error'.
30802         Remove `isearch-within-brackets'.
30803         (isearch-search): Add `search-failed' handler to `condition-case'.
30804         (isearch-lazy-highlight-search): Add `condition-case' to catch
30805         errors and allow `isearch-lazy-highlight-update' to try
30806         highlighting from the beginning of the window.
30807         (isearch-repeat): Move up code to set isearch-wrapped to t
30808         before calling isearch-wrap-function.
30810         * info.el (Info-isearch-initial-node): New internal variable.
30811         (Info-search): Signal an error in isearch mode when search leaves
30812         the initial node.  Signal an error when `bound' is non-nil and
30813         nothing was found in the current subfile.
30814         (Info-isearch-search): Remove `condition-case'.
30815         (Info-isearch-wrap): Don't wrap when search failed during leaving
30816         the initial node.  If `Info-isearch-search' is nil, wrap around
30817         the current node.
30818         (Info-isearch-start): New fun.
30819         (Info-mode): Add buffer-local hook `Info-isearch-start' to
30820         `isearch-mode-hook'.
30822 2005-03-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
30824         * simple.el (normal-erase-is-backspace): Set default to t if
30825         running on Mac.
30827         * term/mac-win.el (function-key-map): Sync with x-win.el.
30829 2005-03-15  Kenichi Handa  <handa@m17n.org>
30831         * international/mule-cmds.el (locale-language-names): Modify the
30832         format of elements and add more entries.
30833         (locale-preferred-coding-systems): Add more entries.
30834         (set-locale-environment): Adjust for the change of
30835         locale-language-names.
30837 2005-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
30839         * pcvs.el (smerge-ediff): Remove bogus autoload.
30841 2005-03-14  Lute Kamstra  <lute@gnu.org>
30843         * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
30844         Ignore a `*' at the beginning of a line.
30846         * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
30847         * emacs-lisp/byte-run.el (macro-declaration-function): Move from
30848         subr.el.
30849         (dont-compile, eval-when-compile, eval-and-compile): Use declare
30850         to specify indentation.
30852         * generic.el (define-generic-mode): Let generic-mode-list be a
30853         list of strings; test membership with equal.
30855 2005-03-14  Kim F. Storm  <storm@cua.dk>
30857         * simple.el (next-line, previous-line): Add optional try-vscroll
30858         arg to recognize interactive use.  Pass it on to line-move.
30859         (line-move): Don't perform auto-window-vscroll when defining or
30860         executing keyboard macro to ensure consistent behavior.
30862 2005-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
30864         * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
30866 2005-03-13  Lute Kamstra  <lute@gnu.org>
30868         * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
30869         debugger-setup-buffer so that backtrace marks the frames set to
30870         debug-on-exit and we don't have to do it manually.  Set an extra
30871         debug-on-exit for macro's.
30872         (debugger-setup-buffer): Don't mark the top frame manually.
30874 2005-03-12  Lute Kamstra  <lute@gnu.org>
30876         * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
30877         lisp-indent-function throughout.
30878         (with-no-warnings): Set lisp-indent-function property.
30880 2005-03-12  Thien-Thi Nguyen  <ttn@gnu.org>
30882         * progmodes/dcl-mode.el (dcl-mode-syntax-table):
30883         Add entry for backslash.
30885 2005-03-12  Juri Linkov  <juri@jurta.org>
30887         * info.el (Info-search): Four fixes for backward search.
30889 2005-03-11  Jay Belanger  <belanger@truman.edu>
30891         * calc/calc.el (calc-language-alist): New variable.
30892         * calc/calc-embed.el (calc-embedded-language-alist): Remove.
30893         (calc-embedded-find-modes): Use calc-language-alist instead of
30894         calc-embedded-language-alist.
30896 2005-03-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
30898         * calendar/calendar.el (calendar-redrawing): New internal
30899         variable.
30900         (redraw-calendar): Remove bogus save-excursion from previous
30901         change.  Bind calendar-redrawing to t for mark-diary-entries.
30902         * calendar/diary-lib.el (mark-diary-entries): No need to redraw
30903         calendar if that is why we were called.
30905 2005-03-11  Kenichi Handa  <handa@m17n.org>
30907         * international/mule.el (make-coding-system): Set property
30908         coding-system-define-form to nil.
30909         (define-coding-system-alias): Likewise.
30911 2005-03-11  Kenichi Handa  <handa@m17n.org>
30913         These changes are suggested by Dave Love <fx@gnu.org>.
30915         * textmodes/fill.el: Change encoding to iso-2022-7bit and add
30916         coding: tag.
30917         (adaptive-fill-regexp): Add more bullets.
30918         (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
30919         regexps.
30921 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
30923         * help.el (describe-mode): Properly handle non-trivial lighters.
30924         Don't ignore minor modes that are not listed in minor-mode-list.
30926         * tooltip.el (tooltip-mode): Don't complain that you can't turn the
30927         feature ON when the user requests to turn it OFF.
30929 2005-03-10  Lute Kamstra  <lute@gnu.org>
30931         * emacs-lisp/debug.el (debug-entry-code): Delete it.
30932         (implement-debug-on-entry): New function to replace debug-entry-code.
30933         (debug-on-entry-1): Use implement-debug-on-entry.  Delete the
30934         second argument as the 2005-03-07 change makes it obsolete.
30935         (debug-on-entry, cancel-debug-on-entry): Update call to
30936         debug-on-entry-1.
30937         (debug, debugger-setup-buffer): Comment update.
30938         (debugger-frame-number): Update to work with implement-debug-on-entry.
30940 2005-03-10  Jay Belanger  <belanger@truman.edu>
30942         * calc/calc-embed.el (math-ms-args): Declare it.
30943         (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
30944         math-ms-args.
30945         (calc-embedded-subst): Use math-multi-subst-rec to substitute
30946         variables.
30948 2005-03-10  Nick Roberts  <nickrob@snap.net.nz>
30950         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
30951         Use message-box.
30953         * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
30954         (tooltip-activate-mouse-motions-if-enabled): Use dolist.
30955         (tooltip-gud-tips): Simplify.
30956         (tooltip-gud-tips-p): Remove superfluous :set.
30957         (tooltip-gud-modes): Add fortran-mode.
30958         (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
30960         * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
30962 2005-03-09  Kim F. Storm  <storm@cua.dk>
30964         * play/animate.el (animate-place-char): Use forward-line instead
30965         of next-line to improve performance.
30967 2005-03-09  Simon Josefsson  <jas@extundo.com>
30969         * net/browse-url.el (browse-url-default-browser): Doc fix.
30971 2005-03-09  Miles Bader  <miles@gnu.org>
30973         * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
30974         (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
30976 2005-03-09  Kenichi Handa  <handa@m17n.org>
30978         * international/latin-1.el: Set case and syntax for 255 only if
30979         set-case-syntax-set-multibyte is nil.
30981         * textmodes/ispell.el (ispell-insert-word): New function.
30982         (ispell-word): Use ispell-insert-word to insert a new word.
30983         (ispell-process-line): Likewise.
30984         (ispell-complete-word): Likewise.
30986 2005-03-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
30988         * calendar/calendar.el (redraw-calendar): Preserve point.
30989         Reported by Matt Hodges <MPHodges@member.fsf.org>.
30990         (calendar-week-start-day): Move after definition of
30991         redraw-calendar.  Delete buffer test, since redraw-calendar has
30992         that now.
30994         * calendar/diary-lib.el (mark-diary-entries): Only call
30995         redraw-calendar in the first of any recursive calls.
30996         Reported by Alan Shutko <ats@acm.org>.
30998 2005-03-08  Juri Linkov  <juri@jurta.org>
31000         * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
31001         (html-horizontal-rule, html-line, html-image, html-checkboxes)
31002         (html-radio-buttons): Add a space before the trailing `/>' where
31003         sgml-xml-mode is non-nil.
31004         (sgml-delete-tag): Check if the tag ends with `/>' to not delete
31005         the subsequent tag of the empty XML tag.
31006         (html-href-anchor): Don't set initial input to "http:".
31007         (html-image): Ask for the image URL and set point inside alt="".
31008         (html-name-anchor): Duplicate the name in the `id' attribute when
31009         sgml-xml-mode is non-nil.
31010         (html-paragraph): Remove \n before <p>.
31011         (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
31012         instead of `checked' when sgml-xml-mode is non-nil.
31014         * facemenu.el (list-colors-print): Print #RRGGBB in default face.
31015         Remove 1 space before #RRGGBB to not truncate it on terminal
31016         windows w/o fringes.  Remove 1 space between bg and fg examples
31017         to get more space.
31018         (list-colors-duplicates): Replace `and' with `if' for `boundp' to
31019         avoid byte-compile warnings.
31021         * image-file.el (image-file-handler): Put `safe-magic' property to
31022         `image-file-handler'.
31024         * info.el (Info-isearch-search): Emulate word search in
31025         isearching through multiple Info nodes with Info-search.
31026         (Info-isearch-wrap): Allow isearch-word.
31028 2005-03-08  Lute Kamstra  <lute@gnu.org>
31030         * emacs-lisp/debug.el (debugger-step-through): Make sure that
31031         stepping into the debugger's code is not possible.
31032         (debugger-jumping-flag): Docstring update.
31034 2005-03-08  Jay Belanger  <belanger@truman.edu>
31036         * calc/calc-embed.el (calc-do-embedded): Reset mode line when
31037         embedded mode begins.
31038         (calc-embedded-language-alist): New variable.
31039         (calc-embedded-find-modes): Use calc-embedded-language-alist to
31040         set default language mode.
31042 2005-03-08  Kenichi Handa  <handa@m17n.org>
31044         * international/ccl.el (define-ccl-program): Fix docstring about
31045         extra 256 bytes assured for the output buffer.
31047         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
31048         Fix BUFFER_MAGNIFICATION to 2.
31049         (ccl-encode-mule-utf-16be-with-signature): Likewise.
31051 2005-03-07  Karl Chen  <quarl@cs.berkeley.edu>
31053         * align.el (align-rules-list): Added an alignment rule for CSS
31054         declarations (applies to css-mode and html-mode buffers).
31056 2005-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
31058         * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
31060 2005-03-07  Kim F. Storm  <storm@cua.dk>
31062         * simple.el (move-beginning-of-line): New command.
31064         * bindings.el (global-map): Bind C-a to move-beginning-of-line.
31066         * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
31068         * emulation/cua-base.el: Put CUA move property on move-end-of-line
31069         and move-beginning-of-line.
31071         * apropos.el (apropos-print): Omit command from M-x ... RET.
31073 2005-03-07  Nick Roberts  <nickrob@snap.net.nz>
31075         * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
31076         (gdb-send, gdb-send-item): Log items sent from gdb-send too.
31078 2005-03-06  Richard M. Stallman  <rms@gnu.org>
31080         * bindings.el (esc-map): Bind M-g to goto-line.
31082         * facemenu.el (global-map): Bind M-o, not M-g.
31084 2005-03-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
31086         * menu-bar.el (menu-bar-file-menu): Add the same :enable to
31087         "Open Directory" as for "Open File".
31089 2005-03-06  Chong Yidong  <cyd@stupidchicken.com>
31091         * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
31092         (push-mark-command): Run activate-mark-hook.
31094 2005-03-06  Richard M. Stallman  <rms@gnu.org>
31096         * help-mode.el (help-mode-finish): Don't alter the element
31097         in view-return-to-alist if there already is one.
31099         * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
31100         make sure the current buffer is the expected one.
31102         * novice.el (disabled-command-function): Output in *Disabled Command*.
31103         Explicitly ignore non-keyboard events, and explicitly handle C-g.
31105         * textmodes/flyspell.el (flyspell-large-region):
31106         Pass args differently for aspell.
31108         * files.el (mode-require-final-newline): Doc fix.
31110 2005-03-03  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
31112         * progmodes/which-func.el (which-function):
31113         Specify NOERROR when calling imenu--make-index-alist.
31115 2005-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
31117         * simple.el (normal-erase-is-backspace): Define default value.
31119         * custom.el (custom-theme-set-variables): Remove unused var
31120         `immediate'.
31121         (custom-reevaluate-setting): Simple function to handle variables
31122         that are defined before their default value can really be
31123         computed.
31125         * startup.el (command-line): Use it for temporary-file-directory,
31126         small-emporary-file-directory, auto-save-file-name-transforms,
31127         blink-cursor-mode, and normal-erase-is-backspace.
31129         * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
31130         progress, even with buggy anchored keywords.
31132 2005-03-05  Luc Teirlinck  <teirllm@auburn.edu>
31134         * simple.el (goto-line): Remove unbalanced final parenthesis.
31136 2005-03-05  Richard M. Stallman  <rms@gnu.org>
31138         * simple.el (goto-line): Use a number at point as the default.
31139         With C-u as arg, switch buffers.
31141 2005-03-05  Juri Linkov  <juri@jurta.org>
31143         * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
31144         with `no-blinking-cursor'.
31146         * startup.el (no-blinking-cursor): New defvar.
31147         (command-line): Add `--no-blinking-cursor' to longopts.
31148         Set `no-blinking-cursor' to t for command line arguments
31149         -Q, -nbc, --no-blinking-cursor.  Replace `emacs-quick-startup'
31150         with `no-blinking-cursor' in the condition for calling
31151         `blink-cursor-mode'.
31153 2005-03-04  Luc Teirlinck  <teirllm@auburn.edu>
31155         * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
31156         (menu-bar-options-save): Add blink-cursor-mode.
31157         (menu-bar-options-menu): Add blink-cursor-mode.
31159 2005-03-04  Ulf Jasper  <ulf.jasper@web.de>
31161         * calendar/icalendar.el (icalendar-version): Increase to 0.11.
31162         (icalendar-export-file, icalendar-export-region)
31163         (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
31164         (icalendar--convert-ical-to-diary): Fix problem with DURATION.
31166 2005-03-04  Lute Kamstra  <lute@gnu.org>
31168         * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
31169         (debug-function-list): Ditto.
31171 2005-03-04  Robert J. Chassell  <bob@rattlesnake.com>
31173         * textmodes/texinfmt.el (texinfo-append-refill):
31174         Redefine the types of line to which @refill
31175         is not appended by replacing a search for `@refill\\|@bye' with
31176         `@refill\\|^[ \t]*@'.  The intent is to solve both the `@end
31177         itemize@refill' bug and the unfilled long lines bug.
31178         (texinfmt-version): Update number and date.
31180 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
31182         * international/code-pages.el (windows-1250, windows-125[2-8])
31183         (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
31185 2005-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
31187         * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
31188         bound yet.
31190 2005-03-02  Romain Francoise  <romain@orebokech.com>
31192         * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
31193         buffer after removing limits.
31194         (ibuffer-pop-filter): Ditto.
31195         Update copyright.
31197 2005-03-02  Miles Bader  <miles@gnu.org>
31199         * button.el (make-text-button): If the user doesn't specify a
31200         type, use the default.  Rewrite to use `add-text-properties' and
31201         plist functions.
31203 2005-03-01  Lute Kamstra  <lute@gnu.org>
31205         * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
31206         (debugger-jumping-flag): New var.
31207         (debug-entry-code): Use it.
31208         (debugger-jump): Use debugger-jumping-flag and add
31209         debugger-reenable to post-command-hook.
31210         (debugger-reenable): Use debugger-jumping-flag and remove itself
31211         from post-command-hook.
31212         (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
31213         debugger-reenable.
31215 2005-03-01  Robert J. Chassell  <bob@rattlesnake.com>
31217         * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
31218         inclusion of "itemize\\|", which may be unnecessary, is certainly
31219         inelegant, and stops refilling in itemize lists when formatting
31220         Japanese Texinfo files to Info.
31221         Update copyright to 2005.
31223 2005-03-01  Nick Roberts  <nickrob@snap.net.nz>
31225         * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
31226         of an error if GDB can't find the source file.
31228 2005-03-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
31230         * calendar/calendar.el (redraw-calendar): Work from any buffer,
31231         not just the calendar.
31233         * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
31234         first.
31235         (diary-redraw-calendar): New function.
31236         (make-diary-entry): Add diary-redraw-calendar to local
31237         write-contents-functions.  Turn off selective display before
31238         inserting in diary.
31240 2005-03-01  Kim F. Storm  <storm@cua.dk>
31242         * emacs-lisp/copyright.el (copyright-fix-years): New command.
31244 2005-03-01  Lute Kamstra  <lute@gnu.org>
31246         * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
31247         that debug-entry-code can be safely removed from a function while
31248         this code is being evaluated.  Revert the 2005-02-27 change as the
31249         new implementation no longer requires it.  Make sure that a
31250         function body containing just a string is not mistaken for a docstring.
31251         (debug): Skip one more frame in case of debug on entry.
31252         (debugger-setup-buffer): Delete one more frame line in case of
31253         debug on entry.
31254         (debugger-frame-number): Update to use the new text introduced by
31255         the 1999-11-03 change.  Skip one more frame in case of debug on entry.
31257 2005-02-28  Kim F. Storm  <storm@cua.dk>
31259         * double.el (double-translate-key): Call force-window-update after
31260         read-event to avoid crash in redisplay.
31262 2005-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
31264         * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
31265         (debug): Use it.  Move the inhibit-trace earlier.
31266         (debug-entry-code): New const.
31267         (debug-on-entry-1): Use it.
31269 2005-02-28  Chong Yidong  <cyd@stupidchicken.com>
31271         * international/utf-16.el (ccl-encode-mule-utf-16le):
31272         Fix BUFFER_MAGNIFICATION to 2.
31273         (ccl-encode-mule-utf-16be): Likewise.
31275 2005-02-28  Kenichi Handa  <handa@m17n.org>
31277         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
31278         Fix BUFFER_MAGNIFICATION to 4.
31279         (ccl-encode-mule-utf-16be-with-signature): Likewise.
31281 2005-02-28  Nick Roberts  <nickrob@snap.net.nz>
31283         * speedbar.el (speedbar-update-flag): Doc fix.
31284         (speedbar-show-info-under-mouse): Give set-mouse-position the right
31285         argument.
31287 2005-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
31289         * reveal.el (reveal-post-command): Don't try to reveal overlays which
31290         have a non-nil `invisible' property but are actually visible.
31292         * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
31293         for perldoc sections.
31294         (perl-outline-regexp, perl-outline-level): New var and function.
31295         (perl-mode): Use them.
31297 2005-02-27  Glenn Morris  <gmorris@ast.cam.ac.uk>
31299         * calendar/diary-lib.el (diary-remind): Discard any mark portion
31300         from diary-entry.  Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
31302 2005-02-27  Luc Teirlinck  <teirllm@auburn.edu>
31304         * cus-edit.el: Comment change.
31305         (custom-buffer-create-internal): Slightly reword text at top of
31306         Custom buffers.  Mention there that saving an option edits the
31307         init file.  Add link to Emacs manual node on `custom-file'.
31308         (custom-magic-alist): Rewrite individual State messages to use
31309         capitalized keywords.  Doc fix.
31311 2005-02-27  Matt Hodges  <MPHodges@member.fsf.org>
31313         * calendar/calendar.el (calendar-buffer): Move above
31314         calendar-week-start-day.
31315         (calendar-week-start-day): Doc fix.  Add :set function.
31316         (calendar-minimum-window-height): New variable.
31317         (generate-calendar-window): Only resize window if selected-window
31318         is displaying the calendar buffer.  Use new variable
31319         calendar-minimum-window-height.
31320         (generate-calendar): Reword error message.
31321         (calendar-mode-map): Bind DEL to scroll-other-window-down.
31323 2005-02-27  Andreas Schwab  <schwab@suse.de>
31325         * vc.el (vc-do-command): Don't run command asynchronously when
31326         operating in a remote directory.
31328         * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
31329         change from sync with Tramp 2.0.47.
31331 2005-02-27  Richard M. Stallman  <rms@gnu.org>
31333         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
31335         * textmodes/flyspell.el (flyspell-mode-on):
31336         Call ispell-change-dictionary only if necessary.
31338         * emacs-lisp/re-builder.el (regexp-builder): New function.
31340         * register.el (describe-register-1): Explicitly handle
31341         yank-excluded-properties = t.
31343         * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
31344         (custom-magic-alist): Change the status descriptions again.
31345         (face widget-type): Total rewrite based on `restricted-sexp'
31346         to eliminate the confusing double hiding levels.
31348         * emacs-lisp/debug.el (debug-on-entry-1):
31349         If function body is empty, add nil as body form.
31351 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
31353         * emacs-lisp/trace.el (inhibit-trace): New var.
31354         (trace-make-advice): Use it.
31356         * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
31358 2005-02-26  Kim F. Storm  <storm@cua.dk>
31360         * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
31361         (mouse-on-link-p, mouse-drag-region-1): Use it.
31363 2005-02-25  Lute Kamstra  <lute@gnu.org>
31365         * replace.el (query-replace-read-from): Fix 2005-02-19 change.
31367 2005-02-24  Luc Teirlinck  <teirllm@auburn.edu>
31369         * frame.el (blink-cursor-mode): Add :group keyword.
31371 2005-02-24  Ulf Jasper  <ulf.jasper@web.de>
31373         * calendar/icalendar.el (icalendar--decode-isodatetime):
31374         New optional argument DAY-SHIFT.
31375         (icalendar-export-region): Fix coding-system-for-write.
31376         (icalendar--convert-ical-to-diary): Shift end-day of all-day
31377         events by one.
31379 2005-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
31381         * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
31383 2005-02-24  Kim F. Storm  <storm@cua.dk>
31385         * international/iso-acc.el (iso-accents-compose): Fix crash
31386         during redisplay.  Call force-window-update after read-event
31387         and delete-region to signal that window is not accurate.
31389 2005-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
31391         * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
31392         Remove unused and inexistent var `inhibit-trace'.
31393         (debugger-mode): Use run-mode-hooks.
31394         (debugger-list-functions): Add buttons; setup xref stack.
31396 2005-02-23  Richard M. Stallman  <rms@gnu.org>
31398         * calendar/appt.el (appt-time-msg-list): 3rd elt of each
31399         appointment says it was explicitly made.
31400         (appt-add): Set the 3rd element.
31401         (appt-make-list): Preserve explicit appointments.
31403         * subr.el (find-tag-default): Catch errors in forward-sexp.
31405 2005-02-23  Juri Linkov  <juri@jurta.org>
31407         * info.el (Info-isearch-search): New defcustom.
31408         (Info-isearch-search): Call the default isearch function
31409         when Info-isearch-search is nil.
31410         (Info-isearch-wrap): Use variable Info-isearch-search.
31412 2005-02-22  Luc Teirlinck  <teirllm@auburn.edu>
31414         * cus-edit.el: Comment change.
31416 2005-02-22  Kim F. Storm  <storm@cua.dk>
31418         * progmodes/hideif.el (hide-ifdef-use-define-alist):
31419         Use completing-read.  Suggested by Juan-Leon Lahoz Garcia.
31421 2005-02-22  Simon Josefsson  <jas@extundo.com>
31423         * net/browse-url.el (browse-url-netscape-new-window-is-tab):
31424         New variable.
31425         (browse-url-netscape): Use it.  Suggested by "Johann 'Myrkraverk'
31426         Oskarsson" <myrkraverk@users.sourceforget.net>.
31428 2005-02-22  Kim F. Storm  <storm@cua.dk>
31430         * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
31431         check that window of that event is the selected window.
31432         (mouse-drag-region-1): Compare mouse event window to selected
31433         window before setting point.
31435         * tooltip.el (tooltip-show-help-function): Pass event to
31436         mouse-on-link-p so it can check selected window.
31438 2005-02-22  Kenichi Handa  <handa@m17n.org>
31440         * ps-mule.el (ps-mule-header-string-charsets): Delete it.
31441         (ps-mule-show-warning): New function.
31442         (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
31443         characters are found.
31445         * ps-print.el (ps-header-footer-string): Return a list of header
31446         and footer strings.
31448 2005-02-21  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
31450         * pcvs.el (cvs-retrieve-revision): Fix thinko.
31452 2005-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
31454         * frame.el (blink-cursor-mode): Use define-minor-mode.
31456         * term/mac-win.el (function-key-map): Use char-names more consistently.
31457         (file-name-coding-system): Only set it for MacOS-9.  The other case is
31458         already handled in mule-cmds.el (where it also works when mac-win.el
31459         is not used).
31461 2005-02-21  Kenichi Handa  <handa@m17n.org>
31463         * international/mule.el (ctext-pre-write-conversion): Always use
31464         " *code-converting-work*" buffer for work.
31466         * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
31468 2005-02-20  Thien-Thi Nguyen  <ttn@gnu.org>
31470         * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
31472 2005-02-20  Jonathan Yavner  <jyavner@member.fsf.org>
31474         * ses.el (undo-more): Restore defadvice, but only the part that
31475         allows changes outside the restricted area of the buffer.
31477 2005-02-20  Kim F. Storm  <storm@cua.dk>
31479         * simple.el (line-move): Add fourth optional arg try-vscroll which
31480         must be set to perform auto-window-vscroll.
31481         When moving backwards and doing auto-window-vscroll, automatically
31482         vscroll to the last part of lines which are taller than the window.
31483         (next-line, previous-line): Set try-vscroll arg on line-move.
31485 2005-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
31487         * replace.el (query-replace, query-replace-regexp)
31488         (replace-string, replace-regexp): When operating on region, make
31489         the minibuffer prompt say so.
31491         * isearch.el (isearch-forward): Document isearch-query-replace and
31492         isearch-query-replace-regexp keybindings.
31494 2005-02-19  Jay Belanger  <belanger@truman.edu>
31496         * calc/calc-aent.el (math-read-token): Add local variable.
31498         * calc/calc-prog.el (calc-user-define-edit): Add local variable.
31499         (calc-edit-top): Move declaration to earlier in file.
31500         (calc-edit-macro-repeats): Add local variables.
31502         * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
31503         Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
31504         calcFunc-tanh.
31505         Adjust integration rule for calcFunc-tan.
31507 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
31509         * viper-cmd.el (viper-prefix-commands): Make into a defconst.
31510         (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
31511         (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
31512         (viper-skip-separators): Bug fix.
31513         (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
31514         particular major mode.
31515         (viper-del-backward-char-in-replace): Don't put deleted char on the
31516         kill ring.
31518         * viper-ex.el (viper-color-display-p): New function.
31519         (viper-has-face-support-p): Use viper-color-display-p.
31521         * viper-keym.el (viper-gnus-modifier-map): New keymap.
31523         * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
31525         * viper-util.el (viper-glob-unix-files): Fix shell status check.
31526         (viper-file-remote-p): Make equivalent to file-remote-p.
31528         * viper.el (viper-major-mode-modifier-list):
31529         Use viper-gnus-modifier-map.
31531 2005-02-19  David Kastrup  <dak@gnu.org>
31533         * subr.el (subregexp-context-p): Fix garbled doc string by adding
31534         quoting.
31536 2005-02-19  Jay Belanger  <belanger@truman.edu>
31538         * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
31539         Remove extra definitions.
31540         (calc-coth): New function.
31541         (calcFunc-cot): Fix `let'.
31543 2005-02-19  Eli Zaretskii  <eliz@gnu.org>
31545         * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
31546         the reasons we use "type pc" in these faces.
31548         * button.el (button): Ditto.
31550 2005-02-19  Michael Mauger  <mmaug@yahoo.com>
31552         * replace.el (query-replace-read-from): Set the value of
31553         query-replace-from-history-variable to handle the case of an empty
31554         string entered to accept the suggested default.
31556         * net/tramp.el (tramp-file-name-for-operation):
31557         Use dired-call-process instead of dired-call-process-command.
31559 2005-02-19  Jay Belanger  <belanger@truman.edu>
31561         * calc/calc-arith.el (math-trig-inverses, math-div-trig)
31562         (math-div-non-trig): New variables.
31563         (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
31564         (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
31565         (math-combine-prod, math-div-symb-fancy): Add simplifications for
31566         trig expressions.
31568 2005-02-19  Nick Roberts  <nickrob@snap.net.nz>
31570         * progmodes/gdb-ui.el (gdb-var-update-handler)
31571         (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
31572         for watch expressions,
31573         (gdb-var-create-handler): Don't set speedbar-update-flag.
31574         (gdb-post-prompt): Simplify test for speedbar.
31576 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
31578         * ediff.el (ediff-set-diff-overlays-in-one-buffer)
31579         (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
31580         we use the syntax table of the correct buffer.
31581         (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
31582         Felix Gatzemeier.
31584         * ediff-init.el (ediff-hide-face): Check for definedness of functions.
31585         (ediff-file-remote-p): Make synonymous with file-remote-p.
31586         In all deffaces ediff-*-face-*, use min-colors.
31588         * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
31589         ediff-recurse-to-subdirectories.
31590         (ediff-mark-if-equal): Check that the arguments are strings, use
31591         ediff-same-contents (after to Felix Gatzemeier).
31593         * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
31594         nil.
31596 2005-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
31598         * log-view.el (log-view-message-re): Fix up Subversion regexp.
31600 2005-02-18  David Kastrup  <dak@gnu.org>
31602         * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
31603         use `mark-active' when defined.
31605 2005-02-18  Kenichi Handa  <handa@m17n.org>
31607         * ps-print.el (ps-font-info-database): New entry
31608         ZapfChancery-MediumItalic with correct font name.  Fix font name
31609         of the entry Zapf-Chancery-MediumItalic.
31611 2005-02-16  Luc Teirlinck  <teirllm@auburn.edu>
31613         * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
31615 2005-02-16  Kim F. Storm  <storm@cua.dk>
31617         * ido.el (ido-fallback-command): Pass user input to fallback command.
31619 2005-02-16  Nick Roberts  <nickrob@snap.net.nz>
31621         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
31622         (gdb-find-file-hook): Add server prefix.
31624 2005-02-16  Richard M. Stallman  <rms@gnu.org>
31626         * replace.el (perform-replace): Pass new args to replace-highlight.
31627         (replace-highlight): Take region args,
31628         and pass them to isearch-lazy-highlight-new-loop.
31630         * novice.el (disabled-command-hook): Autoload the defalias
31631         and the make-obsolete-variable call.
31633         * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
31635         * isearch.el (isearch-lazy-highlight-start-limit)
31636         (isearch-lazy-highlight-end-limit): New variables limit
31637         the region for highlighting.
31638         (isearch-lazy-highlight-new-loop): New args BEG and END.
31639         (isearch-lazy-highlight-search): Use the new vars.
31640         (isearch-lazy-highlight-update): Likewise.
31642         * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
31644         * cus-start.el (all): Use default-boundp.
31646 2005-02-15  David Casperson  <casper@unbc.ca>  (tiny change)
31648         * menu-bar.el (menu-bar-select-frame): Handle current frame.
31650 2005-02-15  Luc Teirlinck  <teirllm@auburn.edu>
31652         * autorevert.el (auto-revert-stop-on-user-input)
31653         (auto-revert-verbose): Doc fixes.
31655 2005-02-15  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
31657         * international/mule-cmds.el (set-locale-environment): Remove call
31658         to set-selection-coding-system on Windows.
31660 2005-02-15  Jay Belanger  <belanger@truman.edu>
31662         * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
31663         calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
31664         calcFunc-coth.
31665         (math-simplify-sqrt): Add simplifications.
31667         * calc/calc-arith.el (math-real-if-arg-functions): Add functions
31668         to list.
31670         * calc/calc-ext.el: Add functions to autoloads.
31672         * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
31673         (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
31674         (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
31675         (math-csc-raw, math-cot-raw): New functions.
31677         * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
31679         * calc/calc-undo.el (calc-handle-undo): Remove prefix from
31680         the variable name in a message.
31682         * calc/calc-units.el: Add simplification rules for calcFunc-sec,
31683         calcFunc-csc, calcFunc-cot.
31685         * calc/calcalg2.el: Add derivative and integration rules for
31686         calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
31687         calcFunc-csch, calcFunc-coth.
31688         (math-do-integral-methods): Add to checks for when to use
31689         substitutions.
31691         * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
31693 2005-02-15  Lute Kamstra  <lute@gnu.org>
31695         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
31696         Add ;;;###autoload to `outline-regexp'.  Suggested by Stefan Monnier
31697         <monnier@iro.umontreal.ca>.
31698         (lisp-outline-level): Improve efficiency.  Suggested by David
31699         Kastrup <dak@gnu.org>.
31701 2005-02-15  Nick Roberts  <nickrob@snap.net.nz>
31703         * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
31704         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
31705         (gdb-set-gud-minor-mode-existing-buffers): New functions.
31706         (gdb-find-file-hook): New hook.  Add it to find-file-hook.
31707         (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
31709 2005-02-14  Luc Teirlinck  <teirllm@auburn.edu>
31711         * cus-start.el (all): Comment change.
31713 2005-02-14  Lute Kamstra  <lute@gnu.org>
31715         * cus-start.el (all): Check if symbol is void.
31717 2005-02-14  Carsten Dominik  <dominik@science.uva.nl>
31719         * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
31720         optional argument to \cite.
31722 2005-02-14  Richard M. Stallman  <rms@gnu.org>
31724         * cus-edit.el (custom-buffer-create-internal): Update help message.
31725         (custom-magic-alist): Update help messages.
31727         * cus-start.el (all): Allow a var to specify a standard value.
31729 2005-02-12  Luc Teirlinck  <teirllm@auburn.edu>
31731         * custom.el (custom-theme-set-variables): Handle variable aliases.
31733         * frame.el (blink-cursor-timer): Doc fix.
31734         (blink-cursor): Make it an alias for `blink-cursor-mode' and
31735         declare obsolete.
31736         (blink-cursor-mode): Define with defcustom and use correct
31737         standard expression in that defcustom.
31738         * startup.el (command-line): Adapt to above changes in frame.el.
31740 2005-02-11  Lute Kamstra  <lute@gnu.org>
31742         * apropos.el (apropos-score-doc): Prevent division by zero.
31744 2005-02-11  Ulf Jasper  <ulf.jasper@web.de>
31746         * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
31747         (icalendar--get-event-property-attributes)
31748         (icalendar--get-event-properties)
31749         (icalendar--datetime-to-diary-date): New functions.
31750         (icalendar--split-value): Doc fix.
31751         (icalendar--datetime-to-noneuropean-date)
31752         (icalendar--datetime-to-european-date): New optional argument
31753         SEPARATOR.  Return result as a string instead of a list.
31754         (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
31755         (icalendar--convert-string-for-export): Rename arg S to STRING.
31756         (icalendar-export-region): Doc fix.  Change name of error buffer.
31757         Save output buffer.
31758         (icalendar-import-file): Add blank at end of prompt.
31759         (icalendar-import-buffer): Doc fix.  Do not switch to error
31760         buffer.  Indicate status in return value.
31761         (icalendar--convert-ical-to-diary): Doc fix.  Change name of error
31762         buffer.  Save output buffer.  Handle exception from recurrence
31763         rules (EXDATE, EXRULE).  Handle start- and end-date of recurring
31764         events.  Fix problems with weekly all-day events.
31766 2005-02-10  Richard M. Stallman  <rms@gnu.org>
31768         * simple.el (eval-expression-print-format):
31769         Avoid warning about edebug-active.
31771         * help.el (help-for-help-internal): Rename from help-for-help.
31772         (help-for-help): Define with defalias.
31774         * font-core.el (font-lock-default-function): Use with-no-warnings.
31776         * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
31778         * custom.el (defface): Doc fix.
31780 2005-02-10  Nick Roberts  <nickrob@snap.net.nz>
31782         * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
31783         width 0" to prevent word wrapping problems.
31785 2005-02-09  Kim F. Storm  <storm@cua.dk>
31787         * ido.el (ido-file-extensions-order): New defcustom.
31788         (ido-file-extension-lessp, ido-file-extension-aux)
31789         (ido-file-extension-order): New advanced file ordering.
31790         (ido-file-lessp): New simple file ordering.
31791         (ido-sort-list): Remove.
31792         (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
31793         (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
31795 2005-02-08  Dan Nicolaescu  <dann@ics.uci.edu>
31797         * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
31798         that some versions of grep produce.
31799         (grep-mode-font-lock-keywords): Likewise.
31801 2005-02-09  Nick Roberts  <nickrob@snap.net.nz>
31803         * progmodes/gdb-ui.el (gdb-location-list): New variable.
31804         (gdb-cdir): Delete.
31805         (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
31806         (gdb-source-info): Treat case when source file is in another
31807         directory properly.
31808         (gdb-get-location): New function.
31810 2005-02-07  Jay Belanger  <belanger@truman.edu>
31812         * calc/calc-prog.el (calc-write-parse-table-part)
31813         (calc-fix-token-name): Fix a check for language type.
31815         * calc/calccomp.el (math-compose-expr): Fix a check for language type.
31817 2005-02-07  Andre Spiegel  <spiegel@gnu.org>
31819         * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
31820         as directory not writable.
31822 2005-02-07  Kim F. Storm  <storm@cua.dk>
31824         * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
31825         (cua--standard-movement-commands): Remove list.
31826         Instead, set CUA property value to move for movement commands.
31827         (cua-movement-commands): Remove.  Users must set CUA prop instead.
31828         (cua--pre-command-handler): Check CUA property.
31829         (cua--init-keymaps): Don't remap undo commands.
31830         (cua-mode): Don't call cua--rectangle-on-off.
31832         * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
31833         (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
31834         (cua--rect-undo-set-point): New var.
31835         (cua--rectangle-undo-boundary): Setup undo apply entry.
31836         (cua--rect-undo-handler): New function for rectangle undo.
31837         (cua--rect-start-position, cua--rect-end-position): Add.
31838         (cua--rectangle-post-command): Call cua--rectangle-set-corners
31839         for restored rectangle.  Set point if cua--rect-undo-set-point.
31841 2005-02-06  Jay Belanger  <belanger@truman.edu>
31843         * calc/calc-lang.el (calc-tex-language): Display more information
31844         in messages.
31846         * calc/calccomp.el (math-compose-expr): Allow multiline matrices
31847         in TeX mode.
31849 2005-02-06  Richard M. Stallman  <rms@gnu.org>
31851         * emacs-lisp/lisp.el (buffer-end): Doc fix.
31853 2005-02-05  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
31855         * net/ldap.el (ldap-search-internal): Support attributes with
31856         optional descriptions separated by a semi-colon, as in
31857         "userCertificate;binary".
31859 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
31861         * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
31862         isn't a cons (i.e. the version is 0).
31864 2005-02-05  Eli Zaretskii  <eliz@gnu.org>
31866         * help.el (help-for-help): Doc fix.
31868 2005-02-05  Nick Roberts  <nickrob@snap.net.nz>
31870         * progmodes/gdb-ui.el: Update copyright.  Put GDB-Frames before
31871         GDB-Windows on the menu-bar as this works better.
31873 2005-02-04  Jay Belanger  <belanger@truman.edu>
31875         * calc/calc-embed.el (calc-embedded-update): Don't put in
31876         unnecessary newlines.  Adjust the end of formula marker.
31878         * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
31879         (math-latex-parse-two-args): New function.
31881 2005-02-03  Lute Kamstra  <lute@gnu.org>
31883         * help-fns.el (help-with-tutorial): Make sure that users cannot
31884         remove the entire text of the tutorial by means of `undo'.
31886 2005-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
31888         * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
31889         in recent changes, where the ispell process was repeatedly
31890         killed & restarted.
31892         * international/mule-cmds.el (set-locale-environment): Set file-name
31893         coding system to utf-8 on Darwin systems.
31894         (set-default-coding-systems): Don't set default-file-name-coding-system
31895         on Darwin systems.
31897 2005-02-03  Richard M. Stallman  <rms@gnu.org>
31899         * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
31901 2005-02-03  Matt Hodges  <MPHodges@member.fsf.org>
31903         * faces.el (list-faces-display): Add optional argument.
31905 2005-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
31907         * font-core.el (font-lock-default-function): Handle the rare case where
31908         only font-lock-keywords is set.
31910 2005-02-02  Kenichi Handa  <handa@m17n.org>
31912         * international/characters.el: Cancel previous change for
31913         I-WITH-DOT-ABOVE and DOTLESS-i.
31915         * international/latin-5.el: Cancel previous change.
31917 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
31919         * progmodes/gud.el: Correction to syntax in gud-menu-map.
31921 2005-02-02  Kenichi Handa  <handa@m17n.org>
31923         * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
31924         DOTLESS-i.
31926         * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
31927         Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
31929         * case-table.el (get-upcase-table): New function.
31930         (copy-case-table): Copy upcaes table too if non-nil.
31931         (set-case-syntax-delims): Maintain upcase table too.
31932         (set-case-syntax-pair): Likewise.
31933         (set-upcase-syntax, set-downcase-syntax): New functions.
31934         (set-case-syntax): Maintain upcase table too.
31936 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
31938         * progmodes/gdb-ui.el (gdb-goto-info): Delete.
31940         * progmodes/gud.el (gud-goto-info): New function.
31941         (gud-tool-bar-map): Use correct icon.
31943 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
31945         * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
31946         When delegating, order args in the funcall correctly.
31948 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
31950         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
31952 2005-02-01  Carsten Dominik  <dominik@science.uva.nl>
31954         * textmodes/reftex.el (reftex-access-scan-info): Error out in a
31955         buffer not visiting a file.
31957 2005-01-31  Jay Belanger  <belanger@truman.edu>
31959         * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
31960         bound on the line with the formula.
31962 2005-01-31  Kim F. Storm  <storm@cua.dk>
31964         * ses.el (ses-create-cell-variable-range)
31965         (ses-destroy-cell-variable-range, ses-reset-header-string)
31966         (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
31967         (ses-insert-row): Fix format of apply undo entries.
31969 2005-01-31  Jay Belanger  <belanger@truman.edu>
31971         * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
31972         parts.
31974         * calc/calc-embed.el (calc-embedded-open-formula)
31975         (calc-embedded-close-formula): Ignore matrix environments.
31977         * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
31978         TeX mode.
31980         * calc/calc-lang.el (math-function-table, math-oper-table)
31981         (math-variable-table): Adjust the LaTeX portions.
31983         * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
31984         (math-latex-ignore-words): New constant.
31986 2005-01-31  Richard M. Stallman  <rms@gnu.org>
31988         * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
31989         (ispell-local-dictionary): Doc fix.
31990         (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
31991         Don't reinitialize at run time.  Don't defcustom.
31992         All uses changed to append ispell-local-dictionary-alist,
31993         or check it first.
31994         (ispell-current-dictionary): New variable for dictionary in use.
31995         (ispell-dictionary): Now used only for global default.
31996         (ispell-start-process): Set ispell-current-dictionary,
31997         not ispell-dictionary.
31998         (ispell-change-dictionary): Use this only for setting
31999         user preferences.
32000         (ispell-internal-change-dictionary): New function
32001         to change the current dictionary in use.
32002         (ispell-region, ispell-process-line, ispell-buffer-local-dict):
32003         Use ispell-current-dictionary.
32004         Handle ispell-local-dictionary-overridden.
32005         (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
32007 2005-01-31  Jay Belanger  <belanger@truman.edu>
32009         * calc/calc-aent.el (math-read-token): Add support for LaTeX.
32011         * calc/calc-ext.el: Add calc-latex-language to autoloads.
32012         (calc-mode-map): Add calc-latex-language.
32014         * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
32015         (math-latex-print-frac): New functions.
32016         (math-oper-table, math-function-table, math-variable-table)
32017         (math-complex-format, math-input-filter): Add latex properties.
32018         (calc-set-language): Set math-expr-special-function-mapping.
32020         * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
32021         (calc-write-parse-table-part): Add LaTeX support.
32023         * calc/calc.el (calc-language): Adjust docstring.
32024         (calc-set-mode-line): Add LaTeX support.
32025         (math-expr-special-function-mapping): New variable.
32026         (math-tex-ignore-words): Add to list.
32028         * calc/calccomp.el (math-compose-expr, math-compose-rows):
32029         Add LaTeX support.
32030         (math-compose-expr): Add support for special functions.
32032         * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
32034 2005-01-31  Nick Roberts  <nickrob@snap.net.nz>
32036         * progmodes/gdb-ui.el (gdb-memory-address)
32037         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
32038         (gdb-memory-mode-map, gdb-memory-format-keymap)
32039         (gdb-memory-format-menu, gdb-memory-unit-keymap)
32040         (gdb-memory-unit-menu): New variables for a buffer
32041         that lets the user examine program memory.
32042         (gdb-memory-set-address, gdb-memory-set-repeat-count)
32043         (gdb-memory-format-binary, gdb-memory-format-octal)
32044         (gdb-memory-format-unsigned, gdb-memory-format-signed)
32045         (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
32046         (gdb-memory-format-menu-1, gdb-memory-unit-giant)
32047         (gdb-memory-unit-word, gdb-memory-unit-halfword)
32048         (gdb-memory-unit-byte, gdb-memory-unit-menu)
32049         (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
32050         (gdb-memory-mode, gdb-memory-buffer-name)
32051         (gdb-display-memory-buffer, gdb-frame-memory-buffer):
32052         New functions for above buffer.
32054 2005-01-30  Richard M. Stallman  <rms@gnu.org>
32056         * cus-edit.el (custom-bury-buffer): Function deleted.
32057         (custom-buffer-done-function): Option deleted.
32058         (custom-buffer-done-kill): New replacement option.
32059         (Custom-buffer-done): Call quit-window.
32060         (custom-buffer-create-internal): Update for above changes.
32062 2005-01-29  Luc Teirlinck  <teirllm@auburn.edu>
32064         * simple.el (undo-ask-before-discard): New var.
32065         (undo-outer-limit-truncate): Implement it.
32066         (undo-extra-outer-limit): Doc update.
32068 2005-01-29  Richard M. Stallman  <rms@gnu.org>
32070         * ses.el (undo-more): Delete defadvice.
32071         (ses-begin-change): Doc fix.
32073         * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
32074         instead of rebinding C-x u and C-_.
32076         * files.el (normal-backup-enable-predicate): Return nil for files
32077         in /tmp, regardless of temporary-file-directory.
32079         * man.el (Man-getpage-in-background): Disable undo in Man buffer.
32081         * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
32082         (open-rectangle, delete-whitespace-rectangle-line)
32083         (clear-rectangle-line): If FILL, pass t instead of FILL
32084         for move-to-column's 2nd arg.
32086         * simple.el (undo): Fix the test for continuing a series of undos.
32087         (undo-more): Set pending-undo-list to t when we reach end.
32088         (pending-undo-list): Move up defvar.
32090         * wid-edit.el (widget-button-click):
32091         Shorten the range of the track-mouse binding.
32093         * comint.el (comint-insert-input): Undo previous changes;
32094         use last-input-event in interactive spec.
32096 2005-01-29  Eli Zaretskii  <eliz@gnu.org>
32098         * progmodes/compile.el (compilation-start): Bind buffer-read-only
32099         to nil before invoking call-process.  Reset buffer's modified flag
32100         after fontifying it in the no-async branch.
32102         * wid-edit.el (widget-specify-button): If mouse pointer shape
32103         cannot be changed, use mouse face instead.
32105 2005-01-29  Nick Roberts  <nickrob@snap.net.nz>
32107         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
32108         (gdb-goto-breakpoint): Make breakpoint handling work on template
32109         functions in C++.  Reported by Martin Reed <mjreed@essex.ac.uk>.
32110         (gdb-assembler-custom): Update to recognize breakpoint information
32111         added on 2005-01-19.
32113 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
32115         * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
32116         (dsssl-mode): Use define-derived-mode.
32117         (scheme-mode-initialize): Remove.
32118         (scheme-mode): Use run-mode-hooks.
32120         * cus-edit.el (customize-group-other-window)
32121         (custom-buffer-create-other-window): Don't override special-display-*.
32122         (custom-mode-map): Make it dense.
32124         * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
32125         sets the default value.
32127 2005-01-28  Eli Zaretskii  <eliz@gnu.org>
32129         * descr-text.el: Add more keywords.
32131 2005-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
32133         * speedbar.el: Avoid unnecessary use of locate-library.
32135         * international/mule-cmds.el (standard-display-european-internal):
32136         Don't fiddle with latin-1 non-break space any more since it's now
32137         special cased in the C code.
32138         Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
32140 2005-01-26  Luc Teirlinck  <teirllm@auburn.edu>
32142         * cus-start.el (all): Add `undo-outer-limit'.
32144 2005-01-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
32146         * textmodes/bibtex.el (bibtex-format-entry):
32147         Use `bibtex-empty-field-re' only on the text of fields, not on entire
32148         field lines.
32149         (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
32150         not on part of a buffer.
32152 2005-01-25  Lute Kamstra  <lute@gnu.org>
32154         * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
32155         nonempty field text strings like "{letters\\macro{}more letters}".
32156         Clarify docstring.
32157         (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
32158         (bibtex-entry-offset, bibtex-parse-association)
32159         (bibtex-parse-field-name): Fix typos in docstrings.
32160         (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
32162 2005-01-24  Carsten Dominik  <dominik@science.uva.nl>
32164         * textmodes/reftex-global.el (reftex-isearch-push-state-function)
32165         (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
32166         (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
32167         (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
32169         * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
32170         isearch minor mode.
32172 2005-01-24  Luc Teirlinck  <teirllm@auburn.edu>
32174         * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
32176 2005-01-24  Lute Kamstra  <lute@gnu.org>
32178         * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
32179         CASECHARS and NOT-CASECHARS regular expressions of the
32180         "nederlands" and "nederlands8" dictionaries to prevent a "Range
32181         striding over charsets" error.
32183 2005-01-24  Jay Belanger  <belanger@truman.edu>
32185         * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
32186         display variable name.
32188 2005-01-24  Kenichi Handa  <handa@m17n.org>
32190         * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
32191         Fix setting of the element of encoded-kbd-iso2022-invocations.
32193 2005-01-24  Nick Roberts  <nickrob@snap.net.nz>
32195         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
32196         (gdb-threads-select): Change to also accept mouse events.
32197         (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
32198         (gdb-threads-mouse-select): Delete.
32200 2005-01-23  Luc Teirlinck  <teirllm@auburn.edu>
32202         * files.el (insert-directory): Take care of empty directory,
32203         listed without -a switch.
32205 2005-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
32207         * textmodes/refill.el (refill-post-command-function):
32208         Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
32209         to the list of functions that we should be careful not to undo.
32210         (refill-late-fill-paragraph-function): Remove.
32211         (refill-saved-state): New var.
32212         (refill-mode): Use it to save fill-paragraph-function.
32213         Save also the value of auto-fill-function.
32215         * term/w32-win.el: Simplify code.
32217 2005-01-23  Kim F. Storm  <storm@cua.dk>
32219         * simple.el (line-move): Adapt to new return value from
32220         pos-visible-in-window-p.
32222         * simple.el (line-move): Fix last change.  Check partial
32223         visibility at point rather than at window-start.
32225 2005-01-22  Jason Rumney  <jasonr@gnu.org>
32227         * term/w32-win.el (xw-defined-colors): Remove debug-message.
32229 2005-01-22  David Kastrup  <dak@gnu.org>
32231         * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
32233 2005-01-22  Eli Zaretskii  <eliz@gnu.org>
32235         * type-break.el (type-break-mode): Add a test for
32236         type-break-file-name being non-nil.
32238 2005-01-22  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
32240         * net/eudc.el (top level): Call (message "") via progn, so that
32241         eudc-options-file is loaded.
32243 2005-01-22  Kim F. Storm  <storm@cua.dk>
32245         * simple.el (line-move-1): Rename from line-move.
32246         (line-move): New function that adjusts vscroll for partially
32247         visible rows, and calls line-move-1 otherwise.
32249 2005-01-21  Ren\e,Ai\e(B Kyllingstad  <listmailxemacs@kyllingstad.com>
32251         * pcomplete.el: Define pcomplete-read-event instead of read-event,
32252         since it's not a complete read-event implementation
32254 2005-01-20  Jay Belanger  <belanger@truman.edu>
32256         * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
32257         for called function.
32259 2005-01-20  Steven Tamm  <steventamm@mac.com>
32261         * term/mac-win.el (process-connection-type): Remove.
32262         Controlled now by s/darwin.h:PTY_ITERATION.
32264 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
32266         * window.el (handle-select-window): Don't switch window when we're
32267         in the minibuffer.
32269 2005-01-10  Paul Pogonyshev  <pogonyshev@gmx.net>
32271         * subr.el (dotimes-with-progress-reporter): New macro.
32273         * ses.el (ses-dotimes-msg): Remove macro.
32274         Use `dotimes-with-progress-reporter' instead.
32276 2005-01-19  Steven Tamm  <steventamm@mac.com>
32278         * term/mac-win.el (process-connection-type): Use new
32279         operating-system-release variable to use ptys on Darwin 7 (OS X
32280         10.3) when using carbon build.
32282 2005-01-19  Jay Belanger  <belanger@truman.edu>
32284         * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
32285         flags if the last command was a tab or M-tab.
32287         * calc/calc-prog.el (calc-user-define-edit): Put original formula
32288         in formula editing buffer.
32290 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
32292         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
32293         breakpoint image symbol in margin.
32295 2005-01-19  Jay Belanger  <belanger@truman.edu>
32297         * calc/calc-prog.el (calc-execute-kbd-macro):
32298         Ignore calc-keep-arg-flag.
32300 2005-01-19  Kenichi Handa  <handa@m17n.org>
32302         * textmodes/ispell.el (ispell-looking-at): New function.
32303         (ispell-process-line): Use ispell-looking-at to compare the ispell
32304         output and the buffer contents.
32306 2005-01-18  Jay Belanger  <belanger@truman.edu>
32308         * calc/calc.el (calc-display-raw): Fix docstring.
32310 2005-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
32312         * simple.el (blink-matching-open): Strip extra info from syntax.
32314         * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
32315         funny chars in the end-of-here-doc marker.
32317 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
32319         * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
32320         that enable/disabled state of breakpoints is shown correctly in
32321         fringe and on ttys.
32322         (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
32323         Add breakpoint information as text properties.
32324         (gdb-mouse-toggle-breakpoint):
32325         Rename to gdb-mouse-set-clear-breakpoint.
32326         (gdb-mouse-toggle-breakpoint): New function.  Enable/disable
32327         breakpoints in the margin.
32328         (gdb-remove-strings): Simplify.
32330 2005-01-17  Jay Belanger  <belanger@truman.edu>
32332         * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
32333         erasing buffer.
32335 2005-01-17  Richard M. Stallman  <rms@gnu.org>
32337         * progmodes/grep.el (grep-find): Copy from `grep' the condition
32338         for calling grep-compute-defaults.
32340         * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
32341         if buffer is empty.
32343         * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
32345 2005-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
32347         * hilit-chg.el (highlight-changes-mode): Don't autoload.
32349         * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
32350         non-preloaded variables.
32352 2005-01-17  Steven Tamm  <steventamm@mac.com>
32354         * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
32355         tex-shell cause to force interactivity when using pipes.
32357 2005-01-17  Kim F. Storm  <storm@cua.dk>
32359         * simple.el (just-one-space): Make arg optional.
32361 2005-01-17  Nick Roberts  <nickrob@snap.net.nz>
32363         * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
32364         posn-at-x-y to t to access left-margin.
32366 2005-01-16  Michael Albinus  <michael.albinus@gmx.de>
32368         Sync with Tramp 2.0.47.
32370         * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
32371         catching keep-date problems in cp/scp operations.
32372         (tramp-handle-copy-file): Don't call `set-file-modes'
32373         unconditionally.  Specialized functions should know better what is
32374         necessary.  This improves performance a little bit, and the
32375         functions could catch errors with `cp -p' and `scp -p'.
32376         (tramp-do-copy-or-rename-file-via-buffer)
32377         (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
32378         when appropriate.
32379         (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
32380         Call `set-file-modes' when appropriate.
32381         (tramp-action-out-of-band): Mask `scp -p' error.  Reported by Isak
32382         Johnsson <isak@hypergene.com>.
32383         (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
32384         of both Tramp buffer and debug buffer.  Reported by Joakim Verona
32385         <joakim@verona.se>.
32386         (tramp-file-name-for-operation): Mark `shell-command' as magic for
32387         Emacs only.
32389         * net/tramp-util.el (tramp-minor-mode): New minor mode.  Add it to
32390         `find-file-hooks' and `dired-mode-hook'.
32391         (tramp-minor-mode-map): Respective map.  Add remapping for
32392         `compile' and `recompile'.
32393         (tramp-remap-command, tramp-recompile): New defuns.
32394         (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
32395         in buffer "*Compilation*".  Call the commands asynchronously.
32397         * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
32398         (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
32399         `shell-command', because it isn't magic in XEmacs.  Reported by
32400         Adrian Aichner <adrian@xemacs.org>.
32402         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
32403         `substitute-in-file-name.
32404         (tramp-smb-handle-substitute-in-file-name): New defun.
32405         (tramp-smb-advice-PC-do-completion): Delete advice.
32407 2005-01-16  Kai Grossjohann  <kgrossjo@eu.uu.net>
32409         * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
32410         Fix error in deleting region.
32412 2005-01-15  Richard M. Stallman  <rms@gnu.org>
32414         * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
32415         In non-temp buffer, switch syntax table temporarily.
32417         * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
32419         * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
32421         * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
32423         * imenu.el (imenu--split-menu): Copy menulist before sorting.
32424         (imenu--generic-function): Use START, not BEG, as pos of definition.
32426         * simple.el (just-one-space): Argument specifies number of spaces.
32428         * simple.el (eval-expression-print-format): Avoid warning
32429         about edebug-active.
32431 2005-01-15  James R. Van Zandt  <jrvz@comcast.net>  (tiny change)
32433         * progmodes/sh-script.el: Code copied from make-mode.el
32434         with small changes,
32435         (sh-mode-map): Bind C-c C-\.
32436         (sh-backslash-column, sh-backslash-align): New variables.
32437         (sh-backslash-region, sh-append-backslash): New functions.
32439 2005-01-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32441         * mail/rmail.el: Updated to work with movemail from GNU Mailutils
32442         (rmail-pop-password, rmail-pop-password-required): Move to
32443         rmail-obsolete group.
32444         (rmail-set-pop-password): Rename to rmail-set-remote-password.
32445         All callers updated.
32446         (rmail-get-pop-password): Rename to rmail-get-remote-password.
32447         Take an argument specifying whether it is POP or IMAP mailbox we
32448         are using.  All callers updated.
32449         (rmail-pop-password-error): Rename to
32450         rmail-remote-password-error.  Added mailutils-specific error message.
32451         (rmail-movemail-search-path)
32452         (rmail-movemail-variant-in-use): New variables.
32453         (rmail-remote-password, rmail-remote-password-required):
32454         New customization variables.
32455         (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
32456         (rmail-parse-url): New function.
32457         (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
32458         with GNU mailutils movemail.
32460 2005-01-15  Kevin Ryde  <user42@zip.com.au>
32462         * info-look.el (c-mode/symbol): Add ^` to prefix, and change
32463         suffix to space, $ or '$, to correctly position point when going
32464         to @table style constants like DBL_MAX.
32466 2005-01-15  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
32468         * type-break.el (type-break-mode, type-break-file-time)
32469         (type-break-file-keystroke-count, type-break-choose-file):
32470         Don't store data in or load data from the file if type-break-file-name
32471         is nil.
32472         (type-break-file-name): Doc update as per the above.
32474 2005-01-15  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
32476         * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
32477         lookup-key might return nil; handle that.
32479 2005-01-15  Alan Mackenzie  <acm@muc.de>
32481         * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
32482         rather than the element found, thus enabling the tree to be setcar'd.
32484 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
32486         * textmodes/org.el (org-show-following-heading): New option.
32487         (org-show-hierarchy-above): Use `org-show-following-heading'.
32488         (org-cycle): Documentation fix.
32490         * textmodes/org.el (orgtbl-optimized): New option
32491         (orgtbl-mode): New command, a minor mode.
32492         (orgtbl-mode-map): New variable.
32493         (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
32494         (orgtbl-error, orgtbl-self-insert-command)
32495         (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
32497         * textmodes/org.el (org-mode): `org-table-may-need-update' is now
32498         a local variable in each org-mode buffer.
32500         * textmodes/org.el (org-set-regexps-and-options): Rename from
32501         `org-set-regexps'.  Added checking for STARTUP keyword.
32502         (org-get-current-options): Add STARTUP options.
32503         (org-table-insert-row): Make mode intelligent about when
32504         realignment is needed.
32505         (org-self-insert-command, org-delete-backward-char, org-delete-char):
32506         New commands.
32507         (org-enable-table-editor): New default value `optimized'.
32508         (org-table-blank-field): Support blanking regions if active.
32510 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
32512         * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
32513         if the year is not given.
32515         * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
32516         Add new escapes %m and %M, fixed bug with %F by adding
32517         save-match-data.
32518         (reftex-reference): Remove ?. from list of spaces.
32519         (reftex-label-info): Add automatic label prefix recognition.
32521         * textmodes/reftex-index.el (reftex-index-next-phrase):
32522         Add slave parameter to call of `reftex-index-this-phrase'.
32523         (reftex-index-this-phrase): New optional argument.
32524         (reftex-index-region-phrases): Add slave parameter to call of
32525         `reftex-index-this-phrase'.
32526         (reftex-display-index): New argument redo.
32527         (reftex-index-rescan): Add `redo' to arguments of
32528         `reftex-display-index'.
32529         (reftex-index-Rescan, reftex-index-revert)
32530         (reftex-index-switch-index-tag): Add `redo' to arguments of
32531         `reftex-display-index'.
32532         (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
32533         indexing.  Fix bug with matching is there is a quote before or
32534         after the word.
32536         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
32537         Fix bug when collecting citation keys in lines with comments.
32538         (reftex-citation): Prefix argument no longer rescans the document,
32539         but forces prompting for optional arguments of cite macros.
32540         (reftex-do-citation): Prompting for optional arguments implemented.
32542         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
32543         Add optional arguments to most cite commands.
32544         (reftex-cite-cleanup-optional-args): New option
32545         (reftex-cite-prompt-optional-args): New option.
32546         (reftex-trust-label-prefix): New option.
32548         * textmodes/reftex-toc.el (reftex-toc-find-section):
32549         Add push-mark before changing the position in the buffer.
32551         * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
32552         (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
32554 2005-01-14  Nick Roberts  <nickrob@snap.net.nz>
32556         * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
32557         more carefully.
32559 2005-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
32561         * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
32562         (sgml-mode): Use it.
32563         (sgml-get-context): Better keep track of implicitly closed tags.
32565 2005-01-13  Kenichi Handa  <handa@m17n.org>
32567         * textmodes/ispell.el: These changes are to fix misalignment error
32568         caused by equivalent characters of different Emacs charsets.
32569         (ispell-unified-chars-table): New variable.
32570         (ispell-get-decoded-string): New function.
32571         (ispell-get-casechars, ispell-get-not-casechars)
32572         (ispell-get-otherchars): Call ispell-get-decoded-string.
32574 2005-01-12  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
32576         * custom.el (custom-declare-variable): Just put symbol instead
32577         of (defvar . symbol) in `current-load-list'.
32579 2005-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
32581         * emacs-lisp/elint.el: Fixed typo in Commentary section.
32583 2005-01-12  Jay Belanger  <belanger@truman.edu>
32585         * calc/calc-help.el (calc-describe-key): Use temporary info buffer
32586         to create a Calc summary.
32588 2005-01-12  Kim F. Storm  <storm@cua.dk>
32590         * mouse.el (mouse-on-link-p): Change functionality and doc
32591         string to comply with latest description in lisp ref.
32593 2005-01-12  Nick Roberts  <nickrob@snap.net.nz>
32595         * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
32596         Enable mouse clicks on mode-line, header-line and margin.
32597         (event-type): Give mouse event symbols an `event-kind' property
32598         with value `mouse-click'.
32600 2005-01-12  Juri Linkov  <juri@jurta.org>
32602         * facemenu.el (list-colors-display): Add new arg buffer-name.
32603         Use it.  Fix docstring.  Replace code for identifying duplicate
32604         colors by the name with call to `list-colors-duplicates' which
32605         identifies duplicate colors by the value unless the color
32606         is one of special Windows colors.  Set truncate-lines to t.
32607         Print sorted duplicate color names on each line.  Indent to 22
32608         \(the longest color name in rgb.txt) instead of 20.  Optimize.
32609         (list-colors-duplicates): New function.
32610         (facemenu-color-name-equal): Delete function.
32612         * facemenu.el (list-colors-print): New function created from code
32613         in list-colors-display.  Print #RRGGBB at the window right edge.
32614         (list-colors-display): When temp-buffer-show-function is not
32615         defined, call list-colors-print from temp-buffer-show-hook
32616         to get the right value of window-width in list-colors-print
32617         after the buffer is displayed.
32619         * simple.el (pop-mark): Move deactivate-mark out of conditional
32620         part to deactivate the active mark regardless of the state of the
32621         mark ring.
32623         * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
32624         variables line in desktop files.
32626 2005-01-12  Juri Linkov  <juri@jurta.org>
32628         * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
32629         Bring together isearch highlight related options.
32630         (lazy-highlight): Replace group `replace' by `matching'.
32631         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
32632         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
32633         (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
32634         and declare them obsolete.
32635         (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
32636         (isearch-faces): Remove defgroup.
32637         (isearch-overlay, isearch-highlight, isearch-dehighlight):
32638         Move isearch highlighting code closer to lazy highlighting code.
32640         * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
32641         (query-replace-highlight, query-replace-lazy-highlight)
32642         (query-replace): Move definitions to the beginning of the file.
32644 2005-01-11  Juri Linkov  <juri@jurta.org>
32646         * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
32647         * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
32648         * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
32650         * info.el (Info-history-forward): New variable.
32651         (Info-select-node): Reset Info-history-forward to nil.
32652         (Info-last): Turn into defalias.
32653         (Info-history-back): Rename from Info-last.
32654         Add current node to Info-history-forward.
32655         (Info-history-forward): New fun.
32656         (Info-mode-map): Replace Info-last by Info-history-back.
32657         Bind Info-history-forward to "r".
32658         (Info-mode-menu): Replace Info-last by Info-history-back.
32659         Fix menu item text.  Add menu item for Info-history-forward.
32660         (info-tool-bar-map): Replace Info-last by Info-history-back.
32661         Replace its icon "undo" by "back_arrow".  Add icon "fwd_arrow"
32662         for Info-history-forward.
32663         (Info-mode): Replace Info-last by Info-history-back in docstring.
32664         Add local variable Info-history-forward.
32665         (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
32667 2005-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
32669         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
32670         (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
32671         Ignore select-window events rather than fiddle with
32672         mouse-autoselect-window.
32674 2005-01-11  Matthew Mundell  <matt@mundell.ukfsn.org>
32676         * type-break.el (type-break-mode): Fix previous change.
32678 2005-01-10  Jay Belanger  <belanger@truman.edu>
32680         * calc/calc-ext.el (calc-reset): Reset when inside embedded
32681         calculator; only reset when point is inside a calculator.
32682         Don't adjust the window height if the window takes up the whole height
32683         of the frame.
32685 2005-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
32687         * ebuff-menu.el (Electric-buffer-menu-mode):
32688         Preserve value of buffer-local var header-line-format.
32690 2005-01-09  Jay Belanger  <belanger@truman.edu>
32692         * calc/calc.el (calc-mode-var-list-restore-saved-values):
32693         Make sure settings file exists before accessing it.
32695         * calc/calc-embed.el (calc-embedded-subst):
32696         Replace math-multi-subst-rec, which is only supposed to be called
32697         by math-multi-subst, by math-multi-subst.
32699 2005-01-09  Andre Spiegel  <spiegel@gnu.org>
32701         * vc.el (vc-allow-async-revert): New user option.
32702         (vc-disable-async-diff): New internal variable.
32703         (vc-revert-buffer): Use them to disable asynchronous diff.
32705         * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
32706         (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
32707         asynchronously if vc-disable-async-diff is t.
32709 2005-01-09  Jay Belanger  <belanger@truman.edu>
32711         * calc/calc.el (defcalcmodevar): New macro.
32712         (calc-mode-var-list-restore-default-values)
32713         (calc-mode-var-list-restore-saved-values): New functions.
32714         (calc-mode-var-list): Use defcalcmodevar to define it.
32715         (calc-always-load-extensions, calc-line-numbering)
32716         (calc-line-breaking, calc-display-just, calc-display-origin)
32717         (calc-number-radix, calc-leading-zeros, calc-group-digits)
32718         (calc-group-char, calc-point-char, calc-frac-format)
32719         (calc-prefer-frac, calc-hms-format, calc-date-format)
32720         (calc-float-format, calc-full-float-format, calc-complex-format)
32721         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
32722         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
32723         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
32724         (calc-matrix-brackets, calc-language, calc-language-option)
32725         (calc-left-label, calc-right-label, calc-word-size)
32726         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
32727         (calc-display-raw, calc-internal-prec, calc-angle-mode)
32728         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
32729         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
32730         (calc-window-height, calc-display-trail, calc-show-selections)
32731         (calc-use-selections, calc-assoc-selections)
32732         (calc-display-working-message, calc-auto-why, calc-timing)
32733         (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
32734         (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
32735         (calc-gnuplot-default-device, calc-gnuplot-default-output)
32736         (calc-gnuplot-print-device, calc-gnuplot-print-output)
32737         (calc-gnuplot-geometry, calc-graph-default-resolution)
32738         (calc-graph-default-resolution-3d, calc-invocation-macro)
32739         (calc-show-banner): Use defcalcmodevar to declare them and set
32740         their default values.
32742         * calc/calc-ext.el (calc-reset): Restore saved values of variables
32743         instead of default values (but restore default values if there is
32744         an argument of 0).
32746 2005-01-09  David Kastrup  <dak@gnu.org>
32748         * desktop.el (desktop-restore-eager): Fix typo in type.
32750 2005-01-08  Richard M. Stallman  <rms@gnu.org>
32752         * cus-edit.el (customize): Delete :link.
32754 2005-01-08  Jay Belanger  <belanger@truman.edu>
32756         * calc/calc.el (calc-mode): Remove the extension from the
32757         `calc-settings-file' file name when loading it.
32759 2005-01-08  Kim F. Storm  <storm@cua.dk>
32761         * info.el (Info-mode-map, Info-next-link-keymap)
32762         (Info-prev-link-keymap, Info-up-link-keymap):
32763         Map follow-link to mouse-face.
32764         (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
32766 2005-01-08  Jay Belanger  <belanger@truman.edu>
32768         * calc/calc.el (calc-settings-file): Change default value.
32769         Suggested by cgw in a comment in calc-mode.el.
32771         * calc/calc-mode.el (calc-settings-file-name):
32772         Compare calc-settings-file to user-init-file instead of ~/.emacs.
32773         Replace ~/.emacs in a prompt by calc-settings-file.
32775 2005-01-07  Lars Hansen  <larsh@math.ku.dk>
32777         * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
32778         (desktop-lazy-idle-delay): New customizable variables.
32779         (desktop-buffer-args-list): New variable.
32780         (desktop-append-buffer-args): New function.
32781         (desktop-save): Call desktop-append-buffer-args for some buffers.
32782         (desktop-lazy-create-buffer): New function.
32783         (desktop-idle-create-buffers): New function.
32784         (desktop-read): Add message about buffers to restore lazily.
32785         (desktop-lazy-abort): New command.
32786         (desktop-clear): Call desktop-lazy-abort.
32787         (desktop-lazy-complete): New command.
32789 2005-01-06  Richard M. Stallman  <rms@gnu.org>
32791         * emacs-lisp/find-func.el (find-face-definition):
32792         Rename from find-face.
32794 2005-01-06  Kim F. Storm  <storm@cua.dk>
32796         * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
32798         * man.el (Man-xref-man-page, Man-xref-header-file)
32799         (Man-xref-normal-file): Add follow-link property.
32801 2005-01-06  Jay Belanger  <belanger@truman.edu>
32803         * calc/calc-units.el: Make sure the proper macro definitions are
32804         available when compiling.
32806 2005-01-06  Juri Linkov  <juri@jurta.org>
32808         * isearch.el (isearch-lazy-highlight-update):
32809         Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
32811 2005-01-06  Miles Bader  <miles@gnu.org>
32813         * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
32814         (isearch-lazy-highlight-face): Use new name.
32816 2005-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
32818         * uniquify.el (uniquify-rationalize-file-buffer-names):
32819         Re-add an interactive spec.
32820         (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
32821         to the same name.
32823         * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
32824         (isearch-update, isearch-done): Adjust calls accordingly.
32826 2005-01-05  Richard M. Stallman  <rms@gnu.org>
32828         * custom.el (custom-set-variables, custom-theme-set-variables):
32829         Clarify documentation.
32831         * emacs-lisp/find-func.el (find-variable)
32832         (find-variable-other-window, find-variable-other-frame):
32833         Fix the TYPE args to find-function-read and find-function-do-it.
32834         (find-function): Doc fix.
32835         (find-function-at-point): Replace function-at-point alias.
32837 2005-01-04  Richard M. Stallman  <rms@gnu.org>
32839         * cus-face.el (custom-declare-face):
32840         Record defface in current-load-list.
32842         * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
32844         * emacs-lisp/find-func.el: Doc fixes.
32845         (find-face-regexp): New variable.
32846         (find-function-regexp-alist): New variable.
32847         (find-function-C-source): Third arg is now TYPE.
32848         (find-function-search-for-symbol): Handle general TYPE.
32849         (find-function-read, find-function-do-it): Handle general TYPE.
32850         (find-definition-noselect, find-face): New functions.
32851         (function-at-point): Alias deleted.
32853 2005-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
32855         * battery.el (display-battery-mode): Rename from display-battery.
32856         Handle the case where it gets turned off.
32858 2005-01-04  Richard M. Stallman  <rms@gnu.org>
32860         * cus-edit.el (customize): Make :link point to user doc.
32862         * man.el (Man-fontify-manpage): Turn off undo generation.
32864         * add-log.el (change-log-font-lock-keywords): Don't match just "From".
32866 2005-01-04  Andreas Schwab  <schwab@suse.de>
32868         * files.el (insert-directory): Only look for error lines in
32869         inserted text.  Don't move too far after processing --dired markers.
32871 2005-01-04  Richard M. Stallman  <rms@gnu.org>
32873         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
32874         Don't expand if the character is @, period, dash, etc.
32875         (define-mail-abbrev): Quote names that contain problem characters.
32877 2005-01-04  Thien-Thi Nguyen  <ttn@gnu.org>
32879         * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
32881 2005-01-03  Richard M. Stallman  <rms@gnu.org>
32883         * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
32884         (query-replace-highlight, query-replace-lazy-highlight)
32885         (query-replace): Definitions moved up.  Doc fix.
32887 2005-01-03  Richard M. Stallman  <rms@gnu.org>
32889         * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
32890         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
32891         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
32892         (lazy-highlight-face): Rename from isearch-lazy-...
32893         Change all references to them.
32895 2005-01-03  Luc Teirlinck  <teirllm@auburn.edu>
32897         * cus-edit.el (custom-file): Doc fix for defcustom.
32898         (custom-file): The function no longer sets the variable
32899         `custom-file' to its return value.
32901         * startup.el (command-line): No longer load `custom-file'.
32903 2005-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
32905         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
32907         * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
32908         Don't confuse module-prefixed identifiers for labels.
32909         Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
32911 2005-01-02  Richard M. Stallman  <rms@gnu.org>
32913         * files.el (basic-save-buffer-1): Fix previous change.
32915         * loadhist.el (file-loadhist-lookup): New function.
32916         (file-provides, file-requires): Use it.
32918         * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
32919         instead of calculating the right size.
32921 2005-01-02  Karl Chen  <quarl@cs.berkeley.edu>
32923         * vc-svn.el (vc-svn-diff): Stay local if possible.
32925 2005-01-02  Stefan Monnier  <monnier@iro.umontreal.ca>
32927         * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
32929         * files.el (hack-local-variables): Fix last change.
32931 2005-01-02  Jay Belanger  <belanger@truman.edu>
32933         * calc/calc-yank.el (calc-edit-top): New variable.
32934         (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
32935         object.  Change header properties.
32936         (calc-edit-finish, calc-edit-finish-stack-object)
32937         (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
32938         edited object.
32939         * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
32940         for the beginning of the edited object.
32941         * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
32942         for the beginning of the edited object.
32943         * calc/calc-prog.el (calc-edit-macro-finish-edit)
32944         (calc-finish-formula-edit, calc-macro-repeats)
32945         (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
32946         (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
32947         beginning of the edited object.
32948         (calc-user-define-edit): Change the header for editing macros.
32949         Remove unnecessary variable.
32951 2005-01-01  Jay Belanger  <belanger@truman.edu>
32953         * calc/calc-yank.el (calc-edit-mode): Change default header.
32954         (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
32955         * calc/calc-store.el (calc-edit-variable): Change title to match new
32956         header.
32957         * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
32958         mode to match new header.
32959         (calc-user-define-edit): Change titles to include names of commands.
32960         (calc-finish-formula-edit): Adjust to handle new header.
32961         (calc-finish-macro-edit): Remove.
32962         (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
32963         (calc-edit-macro-command, calc-edit-macro-command-type)
32964         (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
32965         (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
32966         (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
32967         (calc-edit-macro-finish-edit): New functions.
32968         (calc-user-define-edit): Use new functions to edit named calc macros.
32970 2005-01-01  Stefan Monnier  <monnier@iro.umontreal.ca>
32972         * files.el (hack-local-variables): Cleanup prefix/suffix matching.
32974         * ses.el (copy-region-as-kill): Deactivate mark.
32976 2005-01-01  Richard M. Stallman  <rms@gnu.org>
32978         * replace.el (occur-1): If the output buffer is also an input,
32979         don't kill it, rename it.
32981         * faces.el (set-face-background, set-face-foreground): Doc fix.
32983         * cus-face.el (custom-face-attributes): Fix :help-echo strings
32984         for :foreground and :background.
32986         * dired.el (dired-view-command-alist): Variable deleted.
32987         (dired-view-file, dired-mouse-find-file-other-window):
32988         Delete the code to use it.
32990 2005-01-01  Kim F. Storm  <storm@cua.dk>
32992         * image.el (insert-sliced-image): Use t for line-height property.
32994 See ChangeLog.11 for earlier changes.
32996 ;; Local Variables:
32997 ;; coding: iso-2022-7bit
32998 ;; add-log-time-zone-rule: t
32999 ;; End:
33001     Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
33003   This file is part of GNU Emacs.
33005   GNU Emacs is free software; you can redistribute it and/or modify
33006   it under the terms of the GNU General Public License as published by
33007   the Free Software Foundation; either version 2, or (at your option)
33008   any later version.
33010   GNU Emacs is distributed in the hope that it will be useful,
33011   but WITHOUT ANY WARRANTY; without even the implied warranty of
33012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33013   GNU General Public License for more details.
33015   You should have received a copy of the GNU General Public License
33016   along with GNU Emacs; see the file COPYING.  If not, write to the
33017   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
33018   Boston, MA 02110-1301, USA.
33020 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1